diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/.DS_Store differ diff --git a/.github/workflows/render-specs.yml b/.github/workflows/render-specs.yml new file mode 100644 index 0000000..938d5d0 --- /dev/null +++ b/.github/workflows/render-specs.yml @@ -0,0 +1,35 @@ + +name: spec-up-render + +on: + push: + branches: + - master + +jobs: + build-and-deploy-spec: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. + with: + persist-credentials: false + + - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. + run: | + npm install + node -e "require('./index')({ nowatch: true })" + rm -rf node_modules + + - name: Deploy + uses: peaceiris/actions-gh-pages@v3.7.3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./ + allow_empty_commit: true + force_orphan: true + + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3546bd5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,107 @@ +fonts + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.vscode/* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# Next.js build output +.next + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and *not* Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e8783bf --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5505 +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..261eeb9 --- /dev/null +++ b/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/assets/compiled/body.js b/assets/compiled/body.js new file mode 100644 index 0000000..fcdda91 --- /dev/null +++ b/assets/compiled/body.js @@ -0,0 +1,46 @@ +/*! markdown-it 13.0.1 https://github.com/markdown-it/markdown-it @license MIT */ +!function(e,r){"object"==typeof exports&&"undefined"!=typeof module?module.exports=r():"function"==typeof define&&define.amd?define(r):(e="undefined"!=typeof globalThis?globalThis:e||self).markdownit=r()}(this,(function(){"use strict";var e={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"⁡",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"⁣",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"​",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"‍",zwnj:"‌"},r=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,t={};function n(e,r,s){var o,i,a,c,l,u="";for("string"!=typeof r&&(s=r,r=n.defaultChars),void 0===s&&(s=!0),l=function(e){var r,n,s=t[e];if(s)return s;for(s=t[e]=[],r=0;r<128;r++)n=String.fromCharCode(r),/^[0-9a-z]$/i.test(n)?s.push(n):s.push("%"+("0"+r.toString(16).toUpperCase()).slice(-2));for(r=0;r=55296&&a<=57343){if(a>=55296&&a<=56319&&o+1=56320&&c<=57343){u+=encodeURIComponent(e[o]+e[o+1]),o++;continue}u+="%EF%BF%BD"}else u+=encodeURIComponent(e[o]);return u}n.defaultChars=";/?:@&=+$,-_.!~*'()#",n.componentChars="-_.!~*'()";var s=n,o={};function i(e,r){var t;return"string"!=typeof r&&(r=i.defaultChars),t=function(e){var r,t,n=o[e];if(n)return n;for(n=o[e]=[],r=0;r<128;r++)t=String.fromCharCode(r),n.push(t);for(r=0;r=55296&&c<=57343?"���":String.fromCharCode(c),r+=6):240==(248&s)&&r+91114111?l+="����":(c-=65536,l+=String.fromCharCode(55296+(c>>10),56320+(1023&c))),r+=9):l+="�";return l}))}i.defaultChars=";/?:@&=+$,#",i.componentChars="";var a=i;function c(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var l=/^([a-z0-9.+-]+:)/i,u=/:[0-9]*$/,p=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,h=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),f=["'"].concat(h),d=["%","/","?",";","#"].concat(f),m=["/","?","#"],g=/^[+a-z0-9A-Z_-]{0,63}$/,_=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,k={javascript:!0,"javascript:":!0},b={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};c.prototype.parse=function(e,r){var t,n,s,o,i,a=e;if(a=a.trim(),!r&&1===e.split("#").length){var c=p.exec(a);if(c)return this.pathname=c[1],c[2]&&(this.search=c[2]),this}var u=l.exec(a);if(u&&(s=(u=u[0]).toLowerCase(),this.protocol=u,a=a.substr(u.length)),(r||u||a.match(/^\/\/[^@\/]+@[^@\/]+/))&&(!(i="//"===a.substr(0,2))||u&&k[u]||(a=a.substr(2),this.slashes=!0)),!k[u]&&(i||u&&!b[u])){var h,f,v=-1;for(t=0;t127?D+="x":D+=x[w];if(!D.match(g)){var q=A.slice(0,t),S=A.slice(t+1),F=x.match(_);F&&(q.push(F[1]),S.unshift(F[2])),S.length&&(a=S.join(".")+a),this.hostname=q.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),y&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var L=a.indexOf("#");-1!==L&&(this.hash=a.substr(L),a=a.slice(0,L));var z=a.indexOf("?");return-1!==z&&(this.search=a.substr(z),a=a.slice(0,z)),a&&(this.pathname=a),b[s]&&this.hostname&&!this.pathname&&(this.pathname=""),this},c.prototype.parseHost=function(e){var r=u.exec(e);r&&(":"!==(r=r[0])&&(this.port=r.substr(1)),e=e.substr(0,e.length-r.length)),e&&(this.hostname=e)};var v={encode:s,decode:a,format:function(e){var r="";return r+=e.protocol||"",r+=e.slashes?"//":"",r+=e.auth?e.auth+"@":"",e.hostname&&-1!==e.hostname.indexOf(":")?r+="["+e.hostname+"]":r+=e.hostname||"",r+=e.port?":"+e.port:"",r+=e.pathname||"",(r+=e.search||"")+(e.hash||"")},parse:function(e,r){if(e&&e instanceof c)return e;var t=new c;return t.parse(e,r),t}},C=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,y=/[\0-\x1F\x7F-\x9F]/,A=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/,x={Any:C,Cc:y,Cf:/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/,P:r,Z:A},D=function(e,r,t){return e(t={path:void 0,exports:{},require:function(e,r){return function(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}(null==r&&t.path)}},t.exports),t.exports}((function(t,n){var s=Object.prototype.hasOwnProperty;function o(e,r){return s.call(e,r)}function i(e){return!(e>=55296&&e<=57343||e>=64976&&e<=65007||65535==(65535&e)||65534==(65535&e)||e>=0&&e<=8||11===e||e>=14&&e<=31||e>=127&&e<=159||e>1114111)}function a(e){if(e>65535){var r=55296+((e-=65536)>>10),t=56320+(1023&e);return String.fromCharCode(r,t)}return String.fromCharCode(e)}var c=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,l=new RegExp(c.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),u=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,p=/[&<>"]/,h=/[&<>"]/g,f={"&":"&","<":"<",">":">",'"':"""};function d(e){return f[e]}var m=/[.?*+^$[\]\\(){}|-]/g;n.lib={},n.lib.mdurl=v,n.lib.ucmicro=x,n.assign=function(e){var r=Array.prototype.slice.call(arguments,1);return r.forEach((function(r){if(r){if("object"!=typeof r)throw new TypeError(r+"must be object");Object.keys(r).forEach((function(t){e[t]=r[t]}))}})),e},n.isString=function(e){return"[object String]"===function(e){return Object.prototype.toString.call(e)}(e)},n.has=o,n.unescapeMd=function(e){return e.indexOf("\\")<0?e:e.replace(c,"$1")},n.unescapeAll=function(r){return r.indexOf("\\")<0&&r.indexOf("&")<0?r:r.replace(l,(function(r,t,n){return t||function(r,t){var n=0;return o(e,t)?e[t]:35===t.charCodeAt(0)&&u.test(t)&&i(n="x"===t[1].toLowerCase()?parseInt(t.slice(2),16):parseInt(t.slice(1),10))?a(n):r}(r,n)}))},n.isValidEntityCode=i,n.fromCodePoint=a,n.escapeHtml=function(e){return p.test(e)?e.replace(h,d):e},n.arrayReplaceAt=function(e,r,t){return[].concat(e.slice(0,r),t,e.slice(r+1))},n.isSpace=function(e){switch(e){case 9:case 32:return!0}return!1},n.isWhiteSpace=function(e){if(e>=8192&&e<=8202)return!0;switch(e){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},n.isMdAsciiPunct=function(e){switch(e){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},n.isPunctChar=function(e){return r.test(e)},n.escapeRE=function(e){return e.replace(m,"\\$&")},n.normalizeReference=function(e){return e=e.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(e=e.replace(/\u1e9e/g,"ß")),e.toLowerCase().toUpperCase()}})),w=D.unescapeAll,E=D.unescapeAll,q={parseLinkLabel:function(e,r,t){var n,s,o,i,a=-1,c=e.posMax,l=e.pos;for(e.pos=r+1,n=1;e.pos32)return i;if(41===n){if(0===s)break;s--}r++}return o===r||0!==s||(i.str=w(e.slice(o,r)),i.lines=0,i.pos=r,i.ok=!0),i},parseLinkTitle:function(e,r,t){var n,s,o=0,i=r,a={ok:!1,pos:0,lines:0,str:""};if(r>=t)return a;if(34!==(s=e.charCodeAt(r))&&39!==s&&40!==s)return a;for(r++,40===s&&(s=41);r"+L(e[r].content)+""},z.code_block=function(e,r,t,n,s){var o=e[r];return""+L(e[r].content)+"\n"},z.fence=function(e,r,t,n,s){var o,i,a,c,l,u=e[r],p=u.info?F(u.info).trim():"",h="",f="";return p&&(h=(a=p.split(/(\s+)/g))[0],f=a.slice(2).join("")),0===(o=t.highlight&&t.highlight(u.content,h,f)||L(u.content)).indexOf(""+o+"\n"):"
"+o+"
\n"},z.image=function(e,r,t,n,s){var o=e[r];return o.attrs[o.attrIndex("alt")][1]=s.renderInlineAsText(o.children,t,n),s.renderToken(e,r,t)},z.hardbreak=function(e,r,t){return t.xhtmlOut?"
\n":"
\n"},z.softbreak=function(e,r,t){return t.breaks?t.xhtmlOut?"
\n":"
\n":"\n"},z.text=function(e,r){return L(e[r].content)},z.html_block=function(e,r){return e[r].content},z.html_inline=function(e,r){return e[r].content},T.prototype.renderAttrs=function(e){var r,t,n;if(!e.attrs)return"";for(n="",r=0,t=e.attrs.length;r\n":">")},T.prototype.renderInline=function(e,r,t){for(var n,s="",o=this.rules,i=0,a=e.length;i/i.test(e)}var j=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,U=/\((c|tm|r)\)/i,V=/\((c|tm|r)\)/gi,Z={c:"©",r:"®",tm:"™"};function $(e,r){return Z[r.toLowerCase()]}function G(e){var r,t,n=0;for(r=e.length-1;r>=0;r--)"text"!==(t=e[r]).type||n||(t.content=t.content.replace(V,$)),"link_open"===t.type&&"auto"===t.info&&n--,"link_close"===t.type&&"auto"===t.info&&n++}function H(e){var r,t,n=0;for(r=e.length-1;r>=0;r--)"text"!==(t=e[r]).type||n||j.test(t.content)&&(t.content=t.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])\u2026/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===t.type&&"auto"===t.info&&n--,"link_close"===t.type&&"auto"===t.info&&n++}var J=D.isWhiteSpace,W=D.isPunctChar,Y=D.isMdAsciiPunct,K=/['"]/,Q=/['"]/g;function X(e,r,t){return e.slice(0,r)+t+e.slice(r+1)}function ee(e,r){var t,n,s,o,i,a,c,l,u,p,h,f,d,m,g,_,k,b,v,C,y;for(v=[],t=0;t=0&&!(v[k].level<=c);k--);if(v.length=k+1,"text"===n.type){i=0,a=(s=n.content).length;e:for(;i=0)u=s.charCodeAt(o.index-1);else for(k=t-1;k>=0&&"softbreak"!==e[k].type&&"hardbreak"!==e[k].type;k--)if(e[k].content){u=e[k].content.charCodeAt(e[k].content.length-1);break}if(p=32,i=48&&u<=57&&(_=g=!1),g&&_&&(g=h,_=f),g||_){if(_)for(k=v.length-1;k>=0&&(l=v[k],!(v[k].level=0&&(t=this.attrs[r][1]),t},re.prototype.attrJoin=function(e,r){var t=this.attrIndex(e);t<0?this.attrPush([e,r]):this.attrs[t][1]=this.attrs[t][1]+" "+r};var te=re;function ne(e,r,t){this.src=e,this.env=t,this.tokens=[],this.inlineMode=!1,this.md=r}ne.prototype.Token=te;var se=ne,oe=[["normalize",function(e){var r;r=(r=e.src.replace(B,"\n")).replace(N,"�"),e.src=r}],["block",function(e){var r;e.inlineMode?((r=new e.Token("inline","",0)).content=e.src,r.map=[0,1],r.children=[],e.tokens.push(r)):e.md.block.parse(e.src,e.md,e.env,e.tokens)}],["inline",function(e){var r,t,n,s=e.tokens;for(t=0,n=s.length;t=0;r--)if("link_close"!==(i=s[r]).type){if("html_inline"===i.type&&(k=i.content,/^\s]/i.test(k)&&f>0&&f--,P(i.content)&&f++),!(f>0)&&"text"===i.type&&e.md.linkify.test(i.content)){for(l=i.content,_=e.md.linkify.match(l),a=[],h=i.level,p=0,_.length>0&&0===_[0].index&&r>0&&"text_special"===s[r-1].type&&(_=_.slice(1)),c=0;c<_.length;c++)d=_[c].url,m=e.md.normalizeLink(d),e.md.validateLink(m)&&(g=_[c].text,g=_[c].schema?"mailto:"!==_[c].schema||/^mailto:/i.test(g)?e.md.normalizeLinkText(g):e.md.normalizeLinkText("mailto:"+g).replace(/^mailto:/,""):e.md.normalizeLinkText("http://"+g).replace(/^http:\/\//,""),(u=_[c].index)>p&&((o=new e.Token("text","",0)).content=l.slice(p,u),o.level=h,a.push(o)),(o=new e.Token("link_open","a",1)).attrs=[["href",m]],o.level=h++,o.markup="linkify",o.info="auto",a.push(o),(o=new e.Token("text","",0)).content=g,o.level=h,a.push(o),(o=new e.Token("link_close","a",-1)).level=--h,o.markup="linkify",o.info="auto",a.push(o),p=_[c].lastIndex);p=0;r--)"inline"===e.tokens[r].type&&(U.test(e.tokens[r].content)&&G(e.tokens[r].children),j.test(e.tokens[r].content)&&H(e.tokens[r].children))}],["smartquotes",function(e){var r;if(e.md.options.typographer)for(r=e.tokens.length-1;r>=0;r--)"inline"===e.tokens[r].type&&K.test(e.tokens[r].content)&&ee(e.tokens[r].children,e)}],["text_join",function(e){var r,t,n,s,o,i,a=e.tokens;for(r=0,t=a.length;r=o)return-1;if((t=e.src.charCodeAt(s++))<48||t>57)return-1;for(;;){if(s>=o)return-1;if(!((t=e.src.charCodeAt(s++))>=48&&t<=57)){if(41===t||46===t)break;return-1}if(s-n>=10)return-1}return s`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",be="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",ve={HTML_TAG_RE:new RegExp("^(?:"+ke+"|"+be+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|]*>|)"),HTML_OPEN_CLOSE_TAG_RE:new RegExp("^(?:"+ke+"|"+be+")")},Ce=ve.HTML_OPEN_CLOSE_TAG_RE,ye=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^/,!0],[/^<\?/,/\?>/,!0],[/^/,!0],[/^/,!0],[new RegExp("^|$))","i"),/^$/,!0],[new RegExp(Ce.source+"\\s*$"),/^$/,!1]],Ae=D.isSpace,xe=D.isSpace;function De(e,r,t,n){var s,o,i,a,c,l,u,p;for(this.src=e,this.md=r,this.env=t,this.tokens=n,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",p=!1,i=a=l=u=0,c=(o=this.src).length;a0&&this.level++,this.tokens.push(n),n},De.prototype.isEmpty=function(e){return this.bMarks[e]+this.tShift[e]>=this.eMarks[e]},De.prototype.skipEmptyLines=function(e){for(var r=this.lineMax;er;)if(!xe(this.src.charCodeAt(--e)))return e+1;return e},De.prototype.skipChars=function(e,r){for(var t=this.src.length;et;)if(r!==this.src.charCodeAt(--e))return e+1;return e},De.prototype.getLines=function(e,r,t,n){var s,o,i,a,c,l,u,p=e;if(e>=r)return"";for(l=new Array(r-e),s=0;pt?new Array(o-t+1).join(" ")+this.src.slice(a,c):this.src.slice(a,c)}return l.join("")},De.prototype.Token=te;var we=De,Ee=[["table",function(e,r,t,n){var s,o,i,a,c,l,u,p,h,f,d,m,g,_,k,b,v,C;if(r+2>t)return!1;if(l=r+1,e.sCount[l]=4)return!1;if((i=e.bMarks[l]+e.tShift[l])>=e.eMarks[l])return!1;if(124!==(v=e.src.charCodeAt(i++))&&45!==v&&58!==v)return!1;if(i>=e.eMarks[l])return!1;if(124!==(C=e.src.charCodeAt(i++))&&45!==C&&58!==C&&!ce(C))return!1;if(45===v&&ce(C))return!1;for(;i=4)return!1;if((u=ue(o)).length&&""===u[0]&&u.shift(),u.length&&""===u[u.length-1]&&u.pop(),0===(p=u.length)||p!==f.length)return!1;if(n)return!0;for(_=e.parentType,e.parentType="table",b=e.md.block.ruler.getRules("blockquote"),(h=e.push("table_open","table",1)).map=m=[r,0],(h=e.push("thead_open","thead",1)).map=[r,r+1],(h=e.push("tr_open","tr",1)).map=[r,r+1],a=0;a=4)break;for((u=ue(o)).length&&""===u[0]&&u.shift(),u.length&&""===u[u.length-1]&&u.pop(),l===r+2&&((h=e.push("tbody_open","tbody",1)).map=g=[r+2,0]),(h=e.push("tr_open","tr",1)).map=[l,l+1],a=0;a=4))break;s=++n}return e.line=s,(o=e.push("code_block","code",0)).content=e.getLines(r,s,4+e.blkIndent,!1)+"\n",o.map=[r,e.line],!0}],["fence",function(e,r,t,n){var s,o,i,a,c,l,u,p=!1,h=e.bMarks[r]+e.tShift[r],f=e.eMarks[r];if(e.sCount[r]-e.blkIndent>=4)return!1;if(h+3>f)return!1;if(126!==(s=e.src.charCodeAt(h))&&96!==s)return!1;if(c=h,(o=(h=e.skipChars(h,s))-c)<3)return!1;if(u=e.src.slice(c,h),i=e.src.slice(h,f),96===s&&i.indexOf(String.fromCharCode(s))>=0)return!1;if(n)return!0;for(a=r;!(++a>=t||(h=c=e.bMarks[a]+e.tShift[a])<(f=e.eMarks[a])&&e.sCount[a]=4||(h=e.skipChars(h,s))-c=4)return!1;if(62!==e.src.charCodeAt(D++))return!1;if(n)return!0;for(a=h=e.sCount[r]+1,32===e.src.charCodeAt(D)?(D++,a++,h++,s=!1,b=!0):9===e.src.charCodeAt(D)?(b=!0,(e.bsCount[r]+h)%4==3?(D++,a++,h++,s=!1):s=!0):b=!1,f=[e.bMarks[r]],e.bMarks[r]=D;D=w,_=[e.sCount[r]],e.sCount[r]=h-a,k=[e.tShift[r]],e.tShift[r]=D-e.bMarks[r],C=e.md.block.ruler.getRules("blockquote"),g=e.parentType,e.parentType="blockquote",p=r+1;p=(w=e.eMarks[p])));p++)if(62!==e.src.charCodeAt(D++)||A){if(l)break;for(v=!1,i=0,c=C.length;i=w,d.push(e.bsCount[p]),e.bsCount[p]=e.sCount[p]+1+(b?1:0),_.push(e.sCount[p]),e.sCount[p]=h-a,k.push(e.tShift[p]),e.tShift[p]=D-e.bMarks[p]}for(m=e.blkIndent,e.blkIndent=0,(y=e.push("blockquote_open","blockquote",1)).markup=">",y.map=u=[r,0],e.md.block.tokenize(e,r,p),(y=e.push("blockquote_close","blockquote",-1)).markup=">",e.lineMax=x,e.parentType=g,u[1]=e.line,i=0;i=4)return!1;if(42!==(s=e.src.charCodeAt(c++))&&45!==s&&95!==s)return!1;for(o=1;c=4)return!1;if(e.listIndent>=0&&e.sCount[r]-e.listIndent>=4&&e.sCount[r]=e.blkIndent&&(z=!0),(w=me(e,r))>=0){if(u=!0,q=e.bMarks[r]+e.tShift[r],g=Number(e.src.slice(q,w-1)),z&&1!==g)return!1}else{if(!((w=de(e,r))>=0))return!1;u=!1}if(z&&e.skipSpaces(w)>=e.eMarks[r])return!1;if(m=e.src.charCodeAt(w-1),n)return!0;for(d=e.tokens.length,u?(L=e.push("ordered_list_open","ol",1),1!==g&&(L.attrs=[["start",g]])):L=e.push("bullet_list_open","ul",1),L.map=f=[r,0],L.markup=String.fromCharCode(m),k=r,E=!1,F=e.md.block.ruler.getRules("list"),C=e.parentType,e.parentType="list";k=_?1:b-l)>4&&(c=1),a=l+c,(L=e.push("list_item_open","li",1)).markup=String.fromCharCode(m),L.map=p=[r,0],u&&(L.info=e.src.slice(q,w-1)),x=e.tight,A=e.tShift[r],y=e.sCount[r],v=e.listIndent,e.listIndent=e.blkIndent,e.blkIndent=a,e.tight=!0,e.tShift[r]=o-e.bMarks[r],e.sCount[r]=b,o>=_&&e.isEmpty(r+1)?e.line=Math.min(e.line+2,t):e.md.block.tokenize(e,r,t,!0),e.tight&&!E||(T=!1),E=e.line-r>1&&e.isEmpty(e.line-1),e.blkIndent=e.listIndent,e.listIndent=v,e.tShift[r]=A,e.sCount[r]=y,e.tight=x,(L=e.push("list_item_close","li",-1)).markup=String.fromCharCode(m),k=r=e.line,p[1]=k,o=e.bMarks[r],k>=t)break;if(e.sCount[k]=4)break;for(S=!1,i=0,h=F.length;i=4)return!1;if(91!==e.src.charCodeAt(C))return!1;for(;++C3||e.sCount[A]<0)){for(_=!1,l=0,u=k.length;l=4)return!1;if(!e.md.options.html)return!1;if(60!==e.src.charCodeAt(c))return!1;for(a=e.src.slice(c,l),s=0;s=4)return!1;if(35!==(s=e.src.charCodeAt(c))||c>=l)return!1;for(o=1,s=e.src.charCodeAt(++c);35===s&&c6||cc&&Ae(e.src.charCodeAt(i-1))&&(l=i),e.line=r+1,(a=e.push("heading_open","h"+String(o),1)).markup="########".slice(0,o),a.map=[r,e.line],(a=e.push("inline","",0)).content=e.src.slice(c,l).trim(),a.map=[r,e.line],a.children=[],(a=e.push("heading_close","h"+String(o),-1)).markup="########".slice(0,o)),0))},["paragraph","reference","blockquote"]],["lheading",function(e,r,t){var n,s,o,i,a,c,l,u,p,h,f=r+1,d=e.md.block.ruler.getRules("paragraph");if(e.sCount[r]-e.blkIndent>=4)return!1;for(h=e.parentType,e.parentType="paragraph";f3)){if(e.sCount[f]>=e.blkIndent&&(c=e.bMarks[f]+e.tShift[f])<(l=e.eMarks[f])&&(45===(p=e.src.charCodeAt(c))||61===p)&&(c=e.skipChars(c,p),(c=e.skipSpaces(c))>=l)){u=61===p?1:2;break}if(!(e.sCount[f]<0)){for(s=!1,o=0,i=d.length;o3||e.sCount[c]<0)){for(n=!1,s=0,o=l.length;s=t))&&!(e.sCount[i]=c){e.line=t;break}for(n=0;n?@[]^_`{|}~-".split("").forEach((function(e){Ie[e.charCodeAt(0)]=1}));var Be={tokenize:function(e,r){var t,n,s,o,i=e.pos,a=e.src.charCodeAt(i);if(r)return!1;if(126!==a)return!1;if(s=(n=e.scanDelims(e.pos,!0)).length,o=String.fromCharCode(a),s<2)return!1;for(s%2&&(e.push("text","",0).content=o,s--),t=0;t=0;t--)95!==(n=r[t]).marker&&42!==n.marker||-1!==n.end&&(s=r[n.end],a=t>0&&r[t-1].end===n.end+1&&r[t-1].marker===n.marker&&r[t-1].token===n.token-1&&r[n.end+1].token===s.token+1,i=String.fromCharCode(n.marker),(o=e.tokens[n.token]).type=a?"strong_open":"em_open",o.tag=a?"strong":"em",o.nesting=1,o.markup=a?i+i:i,o.content="",(o=e.tokens[s.token]).type=a?"strong_close":"em_close",o.tag=a?"strong":"em",o.nesting=-1,o.markup=a?i+i:i,o.content="",a&&(e.tokens[r[t-1].token].content="",e.tokens[r[n.end+1].token].content="",t--))}var Oe={tokenize:function(e,r){var t,n,s=e.pos,o=e.src.charCodeAt(s);if(r)return!1;if(95!==o&&42!==o)return!1;for(n=e.scanDelims(e.pos,42===o),t=0;t\x00-\x20]*)$/,Ge=ve.HTML_TAG_RE,He=D.has,Je=D.isValidEntityCode,We=D.fromCodePoint,Ye=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,Ke=/^&([a-z][a-z0-9]{1,31});/i;function Qe(e,r){var t,n,s,o,i,a,c,l,u={},p=r.length;if(p){var h=0,f=-2,d=[];for(t=0;ti;n-=d[n]+1)if((o=r[n]).marker===s.marker&&o.open&&o.end<0&&(c=!1,(o.close||s.open)&&(o.length+s.length)%3==0&&(o.length%3==0&&s.length%3==0||(c=!0)),!c)){l=n>0&&!r[n-1].open?d[n-1]+1:0,d[t]=t-n+l,d[n]=l,s.open=!1,o.end=t,o.close=!1,a=-1,f=-2;break}-1!==a&&(u[s.marker][(s.open?3:0)+(s.length||0)%3]=a)}}}var Xe=D.isWhiteSpace,er=D.isPunctChar,rr=D.isMdAsciiPunct;function tr(e,r,t,n){this.src=e,this.env=t,this.md=r,this.tokens=n,this.tokens_meta=Array(n.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}tr.prototype.pushPending=function(){var e=new te("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},tr.prototype.push=function(e,r,t){this.pending&&this.pushPending();var n=new te(e,r,t),s=null;return t<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),n.level=this.level,t>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],s={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(n),this.tokens_meta.push(s),n},tr.prototype.scanDelims=function(e,r){var t,n,s,o,i,a,c,l,u,p=e,h=!0,f=!0,d=this.posMax,m=this.src.charCodeAt(e);for(t=e>0?this.src.charCodeAt(e-1):32;p0||(t=e.pos)+3>e.posMax||58!==e.src.charCodeAt(t)||47!==e.src.charCodeAt(t+1)||47!==e.src.charCodeAt(t+2)||!(n=e.pending.match(Le))||(s=n[1],!(o=e.md.linkify.matchAtStart(e.src.slice(t-s.length)))||(i=(i=o.url).replace(/\*+$/,""),a=e.md.normalizeLink(i),!e.md.validateLink(a)||(r||(e.pending=e.pending.slice(0,-s.length),(c=e.push("link_open","a",1)).attrs=[["href",a]],c.markup="linkify",c.info="auto",(c=e.push("text","",0)).content=e.md.normalizeLinkText(i),(c=e.push("link_close","a",-1)).markup="linkify",c.info="auto"),e.pos+=i.length-s.length,0))))}],["newline",function(e,r){var t,n,s,o=e.pos;if(10!==e.src.charCodeAt(o))return!1;if(t=e.pending.length-1,n=e.posMax,!r)if(t>=0&&32===e.pending.charCodeAt(t))if(t>=1&&32===e.pending.charCodeAt(t-1)){for(s=t-1;s>=1&&32===e.pending.charCodeAt(s-1);)s--;e.pending=e.pending.slice(0,s),e.push("hardbreak","br",0)}else e.pending=e.pending.slice(0,-1),e.push("softbreak","br",0);else e.push("softbreak","br",0);for(o++;o=c)return!1;if(10===(t=e.src.charCodeAt(a))){for(r||e.push("hardbreak","br",0),a++;a=55296&&t<=56319&&a+1=56320&&n<=57343&&(o+=e.src[a+1],a++),s="\\"+o,r||(i=e.push("text_special","",0),t<256&&0!==Ie[t]?i.content=o:i.content=s,i.markup=s,i.info="escape"),e.pos=a+1,!0}],["backticks",function(e,r){var t,n,s,o,i,a,c,l,u=e.pos;if(96!==e.src.charCodeAt(u))return!1;for(t=u,u++,n=e.posMax;u=f)return!1;if(d=a,(c=e.md.helpers.parseLinkDestination(e.src,a,e.posMax)).ok){for(u=e.md.normalizeLink(c.str),e.md.validateLink(u)?a=c.pos:u="",d=a;a=f||41!==e.src.charCodeAt(a))&&(m=!0),a++}if(m){if(void 0===e.env.references)return!1;if(a=0?s=e.src.slice(d,a++):a=o+1):a=o+1,s||(s=e.src.slice(i,o)),!(l=e.env.references[Pe(s)]))return e.pos=h,!1;u=l.href,p=l.title}return r||(e.pos=i,e.posMax=o,e.push("link_open","a",1).attrs=t=[["href",u]],p&&t.push(["title",p]),e.linkLevel++,e.md.inline.tokenize(e),e.linkLevel--,e.push("link_close","a",-1)),e.pos=a,e.posMax=f,!0}],["image",function(e,r){var t,n,s,o,i,a,c,l,u,p,h,f,d,m="",g=e.pos,_=e.posMax;if(33!==e.src.charCodeAt(e.pos))return!1;if(91!==e.src.charCodeAt(e.pos+1))return!1;if(a=e.pos+2,(i=e.md.helpers.parseLinkLabel(e,e.pos+1,!1))<0)return!1;if((c=i+1)<_&&40===e.src.charCodeAt(c)){for(c++;c<_&&(n=e.src.charCodeAt(c),Ve(n)||10===n);c++);if(c>=_)return!1;for(d=c,(u=e.md.helpers.parseLinkDestination(e.src,c,e.posMax)).ok&&(m=e.md.normalizeLink(u.str),e.md.validateLink(m)?c=u.pos:m=""),d=c;c<_&&(n=e.src.charCodeAt(c),Ve(n)||10===n);c++);if(u=e.md.helpers.parseLinkTitle(e.src,c,e.posMax),c<_&&d!==c&&u.ok)for(p=u.str,c=u.pos;c<_&&(n=e.src.charCodeAt(c),Ve(n)||10===n);c++);else p="";if(c>=_||41!==e.src.charCodeAt(c))return e.pos=g,!1;c++}else{if(void 0===e.env.references)return!1;if(c<_&&91===e.src.charCodeAt(c)?(d=c+1,(c=e.md.helpers.parseLinkLabel(e,c))>=0?o=e.src.slice(d,c++):c=i+1):c=i+1,o||(o=e.src.slice(a,i)),!(l=e.env.references[Ue(o)]))return e.pos=g,!1;m=l.href,p=l.title}return r||(s=e.src.slice(a,i),e.md.inline.parse(s,e.md,e.env,f=[]),(h=e.push("image","img",0)).attrs=t=[["src",m],["alt",""]],h.children=f,h.content=s,p&&t.push(["title",p])),e.pos=c,e.posMax=_,!0}],["autolink",function(e,r){var t,n,s,o,i,a,c=e.pos;if(60!==e.src.charCodeAt(c))return!1;for(i=e.pos,a=e.posMax;;){if(++c>=a)return!1;if(60===(o=e.src.charCodeAt(c)))return!1;if(62===o)break}return t=e.src.slice(i+1,c),$e.test(t)?(n=e.md.normalizeLink(t),!!e.md.validateLink(n)&&(r||((s=e.push("link_open","a",1)).attrs=[["href",n]],s.markup="autolink",s.info="auto",(s=e.push("text","",0)).content=e.md.normalizeLinkText(t),(s=e.push("link_close","a",-1)).markup="autolink",s.info="auto"),e.pos+=t.length+2,!0)):!!Ze.test(t)&&(n=e.md.normalizeLink("mailto:"+t),!!e.md.validateLink(n)&&(r||((s=e.push("link_open","a",1)).attrs=[["href",n]],s.markup="autolink",s.info="auto",(s=e.push("text","",0)).content=e.md.normalizeLinkText(t),(s=e.push("link_close","a",-1)).markup="autolink",s.info="auto"),e.pos+=t.length+2,!0))}],["html_inline",function(e,r){var t,n,s,o,i,a=e.pos;return!(!e.md.options.html||(s=e.posMax,60!==e.src.charCodeAt(a)||a+2>=s||33!==(t=e.src.charCodeAt(a+1))&&63!==t&&47!==t&&!function(e){var r=32|e;return r>=97&&r<=122}(t)||!(n=e.src.slice(a).match(Ge))||(r||((o=e.push("html_inline","",0)).content=e.src.slice(a,a+n[0].length),i=o.content,/^\s]/i.test(i)&&e.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(o.content)&&e.linkLevel--),e.pos+=n[0].length,0)))}],["entity",function(r,t){var n,s,o,i=r.pos,a=r.posMax;if(38!==r.src.charCodeAt(i))return!1;if(i+1>=a)return!1;if(35===r.src.charCodeAt(i+1)){if(s=r.src.slice(i).match(Ye))return t||(n="x"===s[1][0].toLowerCase()?parseInt(s[1].slice(1),16):parseInt(s[1],10),(o=r.push("text_special","",0)).content=Je(n)?We(n):We(65533),o.markup=s[0],o.info="entity"),r.pos+=s[0].length,!0}else if((s=r.src.slice(i).match(Ke))&&He(e,s[1]))return t||((o=r.push("text_special","",0)).content=e[s[1]],o.markup=s[0],o.info="entity"),r.pos+=s[0].length,!0;return!1}]],or=[["balance_pairs",function(e){var r,t=e.tokens_meta,n=e.tokens_meta.length;for(Qe(0,e.delimiters),r=0;r0&&n++,"text"===s[r].type&&r+1=o)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},ir.prototype.parse=function(e,r,t,n){var s,o,i,a=new this.State(e,r,t,n);for(this.tokenize(a),i=(o=this.ruler2.getRules("")).length,s=0;s=3&&":"===e[r-3]||r>=3&&"/"===e[r-3]?0:n.match(t.re.no_http)[0].length:0}},"mailto:":{validate:function(e,r,t){var n=e.slice(r);return t.re.mailto||(t.re.mailto=new RegExp("^"+t.re.src_email_name+"@"+t.re.src_host_strict,"i")),t.re.mailto.test(n)?n.match(t.re.mailto)[0].length:0}}},dr="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function mr(e){var t=e.re=function(e){var t={};return e=e||{},t.src_Any=C.source,t.src_Cc=y.source,t.src_Z=A.source,t.src_P=r.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|"),t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|[><|]|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}(e.__opts__),n=e.__tlds__.slice();function s(e){return e.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||n.push("a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]"),n.push(t.src_xn),t.src_tlds=n.join("|"),t.email_fuzzy=RegExp(s(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(s(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(s(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(s(t.tpl_host_fuzzy_test),"i");var o=[];function i(e,r){throw new Error('(LinkifyIt) Invalid schema "'+e+'": '+r)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(r){var t=e.__schemas__[r];if(null!==t){var n={validate:null,link:null};if(e.__compiled__[r]=n,"[object Object]"===lr(t))return function(e){return"[object RegExp]"===lr(e)}(t.validate)?n.validate=function(e){return function(r,t){var n=r.slice(t);return e.test(n)?n.match(e)[0].length:0}}(t.validate):ur(t.validate)?n.validate=t.validate:i(r,t),void(ur(t.normalize)?n.normalize=t.normalize:t.normalize?i(r,t):n.normalize=function(e,r){r.normalize(e)});!function(e){return"[object String]"===lr(e)}(t)?i(r,t):o.push(r)}})),o.forEach((function(r){e.__compiled__[e.__schemas__[r]]&&(e.__compiled__[r].validate=e.__compiled__[e.__schemas__[r]].validate,e.__compiled__[r].normalize=e.__compiled__[e.__schemas__[r]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,r){r.normalize(e)}};var a=Object.keys(e.__compiled__).filter((function(r){return r.length>0&&e.__compiled__[r]})).map(pr).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+a+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+a+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function gr(e,r){var t=e.__index__,n=e.__last_index__,s=e.__text_cache__.slice(t,n);this.schema=e.__schema__.toLowerCase(),this.index=t+r,this.lastIndex=n+r,this.raw=s,this.text=s,this.url=s}function _r(e,r){var t=new gr(e,r);return e.__compiled__[t.schema].normalize(t,e),t}function kr(e,r){if(!(this instanceof kr))return new kr(e,r);var t;r||(t=e,Object.keys(t||{}).reduce((function(e,r){return e||hr.hasOwnProperty(r)}),!1)&&(r=e,e={})),this.__opts__=cr({},hr,r),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=cr({},fr,e),this.__compiled__={},this.__tlds__=dr,this.__tlds_replaced__=!1,this.re={},mr(this)}kr.prototype.add=function(e,r){return this.__schemas__[e]=r,mr(this),this},kr.prototype.set=function(e){return this.__opts__=cr(this.__opts__,e),this},kr.prototype.test=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return!1;var r,t,n,s,o,i,a,c;if(this.re.schema_test.test(e))for((a=this.re.schema_search).lastIndex=0;null!==(r=a.exec(e));)if(s=this.testSchemaAt(e,r[2],a.lastIndex)){this.__schema__=r[2],this.__index__=r.index+r[1].length,this.__last_index__=r.index+r[0].length+s;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&(c=e.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||c=0&&null!==(n=e.match(this.re.email_fuzzy))&&(o=n.index+n[1].length,i=n.index+n[0].length,(this.__index__<0||othis.__last_index__)&&(this.__schema__="mailto:",this.__index__=o,this.__last_index__=i)),this.__index__>=0},kr.prototype.pretest=function(e){return this.re.pretest.test(e)},kr.prototype.testSchemaAt=function(e,r,t){return this.__compiled__[r.toLowerCase()]?this.__compiled__[r.toLowerCase()].validate(e,t,this):0},kr.prototype.match=function(e){var r=0,t=[];this.__index__>=0&&this.__text_cache__===e&&(t.push(_r(this,r)),r=this.__last_index__);for(var n=r?e.slice(r):e;this.test(n);)t.push(_r(this,r)),n=n.slice(this.__last_index__),r+=this.__last_index__;return t.length?t:null},kr.prototype.matchAtStart=function(e){if(this.__text_cache__=e,this.__index__=-1,!e.length)return null;var r=this.re.schema_at_start.exec(e);if(!r)return null;var t=this.testSchemaAt(e,r[2],r[0].length);return t?(this.__schema__=r[2],this.__index__=r.index+r[1].length,this.__last_index__=r.index+r[0].length+t,_r(this,0)):null},kr.prototype.tlds=function(e,r){return e=Array.isArray(e)?e:[e],r?(this.__tlds__=this.__tlds__.concat(e).sort().filter((function(e,r,t){return e!==t[r-1]})).reverse(),mr(this),this):(this.__tlds__=e.slice(),this.__tlds_replaced__=!0,mr(this),this)},kr.prototype.normalize=function(e){e.schema||(e.url="http://"+e.url),"mailto:"!==e.schema||/^mailto:/i.test(e.url)||(e.url="mailto:"+e.url)},kr.prototype.onCompile=function(){};var br=kr,vr=2147483647,Cr=/^xn--/,yr=/[^\x20-\x7E]/,Ar=/[\x2E\u3002\uFF0E\uFF61]/g,xr={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},Dr=Math.floor,wr=String.fromCharCode; +/*! https://mths.be/punycode v1.4.1 by @mathias */function Er(e){throw new RangeError(xr[e])}function qr(e,r){for(var t=e.length,n=[];t--;)n[t]=r(e[t]);return n}function Sr(e,r){var t=e.split("@"),n="";return t.length>1&&(n=t[0]+"@",e=t[1]),n+qr((e=e.replace(Ar,".")).split("."),r).join(".")}function Fr(e){for(var r,t,n=[],s=0,o=e.length;s=55296&&r<=56319&&s65535&&(r+=wr((e-=65536)>>>10&1023|55296),e=56320|1023&e),r+wr(e)})).join("")}function zr(e,r){return e+22+75*(e<26)-((0!=r)<<5)}function Tr(e,r,t){var n=0;for(e=t?Dr(e/700):e>>1,e+=Dr(e/r);e>455;n+=36)e=Dr(e/35);return Dr(n+36*e/(e+38))}function Ir(e){var r,t,n,s,o,i,a,c,l,u,p,h=[],f=e.length,d=0,m=128,g=72;for((t=e.lastIndexOf("-"))<0&&(t=0),n=0;n=128&&Er("not-basic"),h.push(e.charCodeAt(n));for(s=t>0?t+1:0;s=f&&Er("invalid-input"),((c=(p=e.charCodeAt(s++))-48<10?p-22:p-65<26?p-65:p-97<26?p-97:36)>=36||c>Dr((vr-d)/i))&&Er("overflow"),d+=c*i,!(c<(l=a<=g?1:a>=g+26?26:a-g));a+=36)i>Dr(vr/(u=36-l))&&Er("overflow"),i*=u;g=Tr(d-o,r=h.length+1,0==o),Dr(d/r)>vr-m&&Er("overflow"),m+=Dr(d/r),d%=r,h.splice(d++,0,m)}return Lr(h)}function Mr(e){var r,t,n,s,o,i,a,c,l,u,p,h,f,d,m,g=[];for(h=(e=Fr(e)).length,r=128,t=0,o=72,i=0;i=r&&pDr((vr-t)/(f=n+1))&&Er("overflow"),t+=(a-r)*f,r=a,i=0;ivr&&Er("overflow"),p==r){for(c=t,l=36;!(c<(u=l<=o?1:l>=o+26?26:l-o));l+=36)m=c-u,d=36-u,g.push(wr(zr(u+m%d,0))),c=Dr(m/d);g.push(wr(zr(c,0))),o=Tr(t,f,n==s),t=0,++n}++t,++r}return g.join("")}function Rr(e){return Sr(e,(function(e){return Cr.test(e)?Ir(e.slice(4).toLowerCase()):e}))}function Br(e){return Sr(e,(function(e){return yr.test(e)?"xn--"+Mr(e):e}))}var Nr={decode:Fr,encode:Lr},Or={version:"1.4.1",ucs2:Nr,toASCII:Br,toUnicode:Rr,encode:Mr,decode:Ir},Pr=function(e){if(e.__esModule)return e;var r=Object.defineProperty({},"__esModule",{value:!0});return Object.keys(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(r,t,n.get?n:{enumerable:!0,get:function(){return e[t]}})})),r}(Object.freeze({__proto__:null,decode:Ir,encode:Mr,toUnicode:Rr,toASCII:Br,version:"1.4.1",ucs2:Nr,default:Or})),jr={default:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},zero:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},commonmark:{options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}}},Ur=/^(vbscript|javascript|file|data):/,Vr=/^data:image\/(gif|png|jpeg|webp);/;function Zr(e){var r=e.trim().toLowerCase();return!Ur.test(r)||!!Vr.test(r)}var $r=["http:","https:","mailto:"];function Gr(e){var r=v.parse(e,!0);if(r.hostname&&(!r.protocol||$r.indexOf(r.protocol)>=0))try{r.hostname=Pr.toASCII(r.hostname)}catch(e){}return v.encode(v.format(r))}function Hr(e){var r=v.parse(e,!0);if(r.hostname&&(!r.protocol||$r.indexOf(r.protocol)>=0))try{r.hostname=Pr.toUnicode(r.hostname)}catch(e){}return v.decode(v.format(r),v.decode.defaultChars+"%")}function Jr(e,r){if(!(this instanceof Jr))return new Jr(e,r);r||D.isString(e)||(r=e||{},e="default"),this.inline=new ar,this.block=new Se,this.core=new ae,this.renderer=new I,this.linkify=new br,this.validateLink=Zr,this.normalizeLink=Gr,this.normalizeLinkText=Hr,this.utils=D,this.helpers=D.assign({},q),this.options={},this.configure(e),r&&this.set(r)}return Jr.prototype.set=function(e){return D.assign(this.options,e),this},Jr.prototype.configure=function(e){var r,t=this;if(D.isString(e)&&!(e=jr[r=e]))throw new Error('Wrong `markdown-it` preset "'+r+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach((function(r){e.components[r].rules&&t[r].ruler.enableOnly(e.components[r].rules),e.components[r].rules2&&t[r].ruler2.enableOnly(e.components[r].rules2)})),this},Jr.prototype.enable=function(e,r){var t=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(r){t=t.concat(this[r].ruler.enable(e,!0))}),this),t=t.concat(this.inline.ruler2.enable(e,!0));var n=e.filter((function(e){return t.indexOf(e)<0}));if(n.length&&!r)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+n);return this},Jr.prototype.disable=function(e,r){var t=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(r){t=t.concat(this[r].ruler.disable(e,!0))}),this),t=t.concat(this.inline.ruler2.disable(e,!0));var n=e.filter((function(e){return t.indexOf(e)<0}));if(n.length&&!r)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+n);return this},Jr.prototype.use=function(e){var r=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,r),this},Jr.prototype.parse=function(e,r){if("string"!=typeof e)throw new Error("Input data should be a String");var t=new this.core.State(e,this,r);return this.core.process(t),t.tokens},Jr.prototype.render=function(e,r){return r=r||{},this.renderer.render(this.parse(e,r),this.options,r)},Jr.prototype.parseInline=function(e,r){var t=new this.core.State(e,this,r);return t.inlineMode=!0,this.core.process(t),t.tokens},Jr.prototype.renderInline=function(e,r){return r=r||{},this.renderer.render(this.parseInline(e,r),this.options,r)},Jr})); +var _self="undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{},Prism=function(e){var n=/\blang(?:uage)?-([\w-]+)\b/i,t=0,a={},r={manual:e.Prism&&e.Prism.manual,disableWorkerMessageHandler:e.Prism&&e.Prism.disableWorkerMessageHandler,util:{encode:function e(n){return n instanceof i?new i(n.type,e(n.content),n.alias):Array.isArray(n)?n.map(e):n.replace(/&/g,"&").replace(/=p.reach);x+=F.value.length,F=F.next){var A=F.value;if(t.length>n.length)return;if(!(A instanceof i)){var P,$=1;if(v){if(!(P=s(w,x,n,b)))break;var S=P.index,j=P.index+P[0].length,E=x;for(E+=F.value.length;E<=S;)E+=(F=F.next).value.length;if(x=E-=F.value.length,F.value instanceof i)continue;for(var T=F;T!==t.tail&&(Ep.reach&&(p.reach=O);var R=F.prev;if(z&&(R=l(t,R,z),x+=z.length),u(t,R,$),F=l(t,R,new i(g,h?r.tokenize(_,h):_,y,_)),C&&l(t,F,C),1<$){var I={cause:g+","+m,reach:O};e(n,t,a,F.prev,x,I),p&&I.reach>p.reach&&(p.reach=I.reach)}}}}}}(e,c,n,c.head,0),function(e){for(var n=[],t=e.head.next;t!==e.tail;)n.push(t.value),t=t.next;return n}(c)},hooks:{all:{},add:function(e,n){var t=r.hooks.all;t[e]=t[e]||[],t[e].push(n)},run:function(e,n){var t=r.hooks.all[e];if(t&&t.length)for(var a,i=0;a=t[i++];)a(n)}},Token:i};function i(e,n,t,a){this.type=e,this.content=n,this.alias=t,this.length=0|(a||"").length}function s(e,n,t,a){e.lastIndex=n;var r=e.exec(t);if(r&&a&&r[1]){var i=r[1].length;r.index+=i,r[0]=r[0].slice(i)}return r}function o(){var e={value:null,prev:null,next:null},n={value:null,prev:e,next:null};e.next=n,this.head=e,this.tail=n,this.length=0}function l(e,n,t){var a=n.next,r={value:t,prev:n,next:a};return n.next=r,a.prev=r,e.length++,r}function u(e,n,t){for(var a=n.next,r=0;r"+i.content+""},!e.document)return e.addEventListener&&(r.disableWorkerMessageHandler||e.addEventListener("message",(function(n){var t=JSON.parse(n.data),a=t.language,i=t.code,s=t.immediateClose;e.postMessage(r.highlight(i,r.languages[a],a)),s&&e.close()}),!1)),r;var c=r.util.currentScript();function p(){r.manual||r.highlightAll()}if(c&&(r.filename=c.src,c.hasAttribute("data-manual")&&(r.manual=!0)),!r.manual){var g=document.readyState;"loading"===g||"interactive"===g&&c&&c.defer?document.addEventListener("DOMContentLoaded",p):window.requestAnimationFrame?window.requestAnimationFrame(p):window.setTimeout(p,16)}return r}(_self);"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism),Prism.languages.markup={comment://,prolog:/<\?[\s\S]+?\?>/,doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^$|[[\]]/,"doctype-tag":/^DOCTYPE/,name:/[^\s<>'"]+/}},cdata://i,tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.languages.markup.doctype.inside["internal-subset"].inside=Prism.languages.markup,Prism.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))})),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(e,n){var t={};t["language-"+n]={pattern:/(^$)/i,lookbehind:!0,inside:Prism.languages[n]},t.cdata=/^$/i;var a={"included-cdata":{pattern://i,inside:t}};a["language-"+n]={pattern:/[\s\S]+/,inside:Prism.languages[n]};var r={};r[e]={pattern:RegExp("(<__[^>]*>)(?:))*\\]\\]>|(?!)".replace(/__/g,(function(){return e})),"i"),lookbehind:!0,greedy:!0,inside:a},Prism.languages.insertBefore("markup","cdata",r)}}),Object.defineProperty(Prism.languages.markup.tag,"addAttribute",{value:function(e,n){Prism.languages.markup.tag.inside["special-attr"].push({pattern:RegExp("(^|[\"'\\s])(?:"+e+")\\s*=\\s*(?:\"[^\"]*\"|'[^']*'|[^\\s'\">=]+(?=[\\s>]))","i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[n,"language-"+n],inside:Prism.languages[n]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.ssml=Prism.languages.xml,Prism.languages.atom=Prism.languages.xml,Prism.languages.rss=Prism.languages.xml,function(e){var n=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+n.source+"|(?:[^\\\\\r\n()\"']|\\\\[^])*)\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+n.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+n.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:n,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var t=e.languages.markup;t&&(t.tag.addInlined("style","css"),t.tag.addAttribute("style","css"))}(Prism),Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|interface|extends|implements|trait|instanceof|new)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:if|else|while|do|for|return|in|instanceof|function|new|try|throw|catch|finally|null|break|continue)\b/,boolean:/\b(?:true|false)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:prototype|constructor))/,lookbehind:!0}],keyword:[{pattern:/((?:^|})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:/\b(?:(?:0[xX](?:[\dA-Fa-f](?:_[\dA-Fa-f])?)+|0[bB](?:[01](?:_[01])?)+|0[oO](?:[0-7](?:_[0-7])?)+)n?|(?:\d(?:_\d)?)+n|NaN|Infinity)\b|(?:\b(?:\d(?:_\d)?)+\.?(?:\d(?:_\d)?)*|\B\.(?:\d(?:_\d)?)+)(?:[Ee][+-]?(?:\d(?:_\d)?)+)?/,operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|interface|extends|implements|instanceof|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:Prism.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}|(?!\${)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\${(?:[^{}]|{(?:[^{}]|{[^}]*})*})+}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\${|}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}}}),Prism.languages.markup&&(Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.markup.tag.addAttribute("on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)","javascript")),Prism.languages.js=Prism.languages.javascript,function(e){var n="(?:ALPHA|BIT|CHAR|CR|CRLF|CTL|DIGIT|DQUOTE|HEXDIG|HTAB|LF|LWSP|OCTET|SP|VCHAR|WSP)";Prism.languages.abnf={comment:/;.*/,string:{pattern:/(?:%[is])?"[^"\n\r]*"/,greedy:!0,inside:{punctuation:/^%[is]/}},range:{pattern:/%(?:b[01]+-[01]+|d\d+-\d+|x[A-F\d]+-[A-F\d]+)/i,alias:"number"},terminal:{pattern:/%(?:b[01]+(?:\.[01]+)*|d\d+(?:\.\d+)*|x[A-F\d]+(?:\.[A-F\d]+)*)/i,alias:"number"},repetition:{pattern:/(^|[^\w-])(?:\d*\*\d*|\d+)/,lookbehind:!0,alias:"operator"},definition:{pattern:/(^[ \t]*)(?:[a-z][\w-]*|<[^<>\r\n]*>)(?=\s*=)/m,lookbehind:!0,alias:"keyword",inside:{punctuation:/<|>/}},"core-rule":{pattern:RegExp("(?:(^|[^<\\w-])"+n+"|<"+n+">)(?![\\w-])","i"),lookbehind:!0,alias:["rule","constant"],inside:{punctuation:/<|>/}},rule:{pattern:/(^|[^<\w-])[a-z][\w-]*|<[^<>\r\n]*>/i,lookbehind:!0,inside:{punctuation:/<|>/}},operator:/=\/?|\//,punctuation:/[()\[\]]/}}(),function(e){e.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d.*$/m]};var n={"deleted-sign":"-","deleted-arrow":"<","inserted-sign":"+","inserted-arrow":">",unchanged:" ",diff:"!"};Object.keys(n).forEach((function(t){var a=n[t],r=[];/^\w+$/.test(t)||r.push(/\w+/.exec(t)[0]),"diff"===t&&r.push("bold"),e.languages.diff[t]={pattern:RegExp("^(?:["+a+"].*(?:\r\n?|\n|(?![\\s\\S])))+","m"),alias:r,inside:{line:{pattern:/(.)(?=[\s\S]).*(?:\r\n?|\n)?/,lookbehind:!0},prefix:{pattern:/[\s\S]/,alias:/\w+/.exec(t)[0]}}}})),Object.defineProperty(e.languages.diff,"PREFIXES",{value:n})}(Prism),Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s--?\w+/m}},coord:/^@@.*@@$/m,"commit-sha1":/^commit \w{40}$/m},function(e){e.languages.http={"request-line":{pattern:/^(?:GET|HEAD|POST|PUT|DELETE|CONNECT|OPTIONS|TRACE|PATCH|PRI|SEARCH)\s(?:https?:\/\/|\/)\S*\sHTTP\/[0-9.]+/m,inside:{method:{pattern:/^[A-Z]+\b/,alias:"property"},"request-target":{pattern:/^(\s)(?:https?:\/\/|\/)\S*(?=\s)/,lookbehind:!0,alias:"url",inside:e.languages.uri},"http-version":{pattern:/^(\s)HTTP\/[0-9.]+/,lookbehind:!0,alias:"property"}}},"response-status":{pattern:/^HTTP\/[0-9.]+ \d+ .+/m,inside:{"http-version":{pattern:/^HTTP\/[0-9.]+/,alias:"property"},"status-code":{pattern:/^(\s)\d+(?=\s)/,lookbehind:!0,alias:"number"},"reason-phrase":{pattern:/^(\s).+/,lookbehind:!0,alias:"string"}}},"header-name":{pattern:/^[\w-]+:(?=.)/m,alias:"keyword"}};var n,t,a,r=e.languages,i={"application/javascript":r.javascript,"application/json":r.json||r.javascript,"application/xml":r.xml,"text/xml":r.xml,"text/html":r.html,"text/css":r.css},s={"application/json":!0,"application/xml":!0};for(var o in i)if(i[o]){n=n||{};var l=s[o]?(a=(t=o).replace(/^[a-z]+\//,""),"(?:"+t+"|\\w+/(?:[\\w.-]+\\+)+"+a+"(?![+\\w.-]))"):o;n[o.replace(/\//g,"-")]={pattern:RegExp("(content-type:\\s*"+l+"(?:(?:\\r\\n?|\\n).+)*)(?:\\r?\\n|\\r){2}[\\s\\S]*","i"),lookbehind:!0,inside:i[o]}}n&&e.languages.insertBefore("http","header-name",n)}(Prism),function(e){function n(e,n){return RegExp(e.replace(//g,(function(){return"(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*"})),n)}e.languages.insertBefore("javascript","function-variable",{"method-variable":{pattern:RegExp("(\\.\\s*)"+e.languages.javascript["function-variable"].pattern.source),lookbehind:!0,alias:["function-variable","method","function","property-access"]}}),e.languages.insertBefore("javascript","function",{method:{pattern:RegExp("(\\.\\s*)"+e.languages.javascript.function.source),lookbehind:!0,alias:["function","property-access"]}}),e.languages.insertBefore("javascript","constant",{"known-class-name":[{pattern:/\b(?:(?:(?:Uint|Int)(?:8|16|32)|Uint8Clamped|Float(?:32|64))?Array|ArrayBuffer|BigInt|Boolean|DataView|Date|Error|Function|Intl|JSON|Math|Number|Object|Promise|Proxy|Reflect|RegExp|String|Symbol|(?:Weak)?(?:Set|Map)|WebAssembly)\b/,alias:"class-name"},{pattern:/\b(?:[A-Z]\w*)Error\b/,alias:"class-name"}]}),e.languages.insertBefore("javascript","keyword",{imports:{pattern:n("(\\bimport\\b\\s*)(?:(?:\\s*,\\s*(?:\\*\\s*as\\s+|\\{[^{}]*\\}))?|\\*\\s*as\\s+|\\{[^{}]*\\})(?=\\s*\\bfrom\\b)"),lookbehind:!0,inside:e.languages.javascript},exports:{pattern:n("(\\bexport\\b\\s*)(?:\\*(?:\\s*as\\s+)?(?=\\s*\\bfrom\\b)|\\{[^{}]*\\})"),lookbehind:!0,inside:e.languages.javascript}}),e.languages.javascript.keyword.unshift({pattern:/\b(?:as|default|export|from|import)\b/,alias:"module"},{pattern:/\b(?:await|break|catch|continue|do|else|for|finally|if|return|switch|throw|try|while|yield)\b/,alias:"control-flow"},{pattern:/\bnull\b/,alias:["null","nil"]},{pattern:/\bundefined\b/,alias:"nil"}),e.languages.insertBefore("javascript","operator",{spread:{pattern:/\.{3}/,alias:"operator"},arrow:{pattern:/=>/,alias:"operator"}}),e.languages.insertBefore("javascript","punctuation",{"property-access":{pattern:n("(\\.\\s*)#?"),lookbehind:!0},"maybe-class-name":{pattern:/(^|[^$\w\xA0-\uFFFF])[A-Z][$\w\xA0-\uFFFF]+/,lookbehind:!0},dom:{pattern:/\b(?:document|location|navigator|performance|(?:local|session)Storage|window)\b/,alias:"variable"},console:{pattern:/\bconsole(?=\s*\.)/,alias:"class-name"}});for(var t=["function","function-variable","method","method-variable","property-access"],a=0;a=p.length)return;var a=n[t];if("string"==typeof a||"string"==typeof a.content){var r=p[s],i="string"==typeof a?a:a.content,o=i.indexOf(r);if(-1!==o){++s;var c=i.substring(0,o),g=l(u[r]),d=i.substring(o+r.length),m=[];if(c&&m.push(c),m.push(g),d){var f=[d];e(f),m.push.apply(m,f)}"string"==typeof a?(n.splice.apply(n,[t,1].concat(m)),t+=m.length-1):a.content=m}}else{var h=a.content;Array.isArray(h)?e(h):e([h])}}}(c),new e.Token(a,c,"language-"+a,n)}e.languages.javascript["template-string"]=[s("css","\\b(?:styled(?:\\([^)]*\\))?(?:\\s*\\.\\s*\\w+(?:\\([^)]*\\))*)*|css(?:\\s*\\.\\s*(?:global|resolve))?|createGlobalStyle|keyframes)"),s("html","\\bhtml|\\.\\s*(?:inner|outer)HTML\\s*\\+?="),s("svg","\\bsvg"),s("markdown","\\b(?:md|markdown)"),s("graphql","\\b(?:gql|graphql(?:\\s*\\.\\s*experimental)?)"),s("sql","\\bsql"),n].filter(Boolean);var c={javascript:!0,js:!0,typescript:!0,ts:!0,jsx:!0,tsx:!0};function p(e){return"string"==typeof e?e:Array.isArray(e)?e.map(p).join(""):p(e.content)}e.hooks.add("after-tokenize",(function(n){n.language in c&&function n(t){for(var a=0,r=t.length;a']+(?=[>']$)/,lookbehind:!0,alias:"variable"};e.languages.regex={charset:{pattern:/((?:^|[^\\])(?:\\\\)*)\[(?:[^\\\]]|\\[\s\S])*\]/,lookbehind:!0,inside:{"charset-negation":{pattern:/(^\[)\^/,lookbehind:!0,alias:"operator"},"charset-punctuation":{pattern:/^\[|\]$/,alias:"punctuation"},range:{pattern:r,inside:{escape:t,"range-punctuation":{pattern:/-/,alias:"operator"}}},"special-escape":n,charclass:{pattern:/\\[wsd]|\\p{[^{}]+}/i,alias:"class-name"},escape:t}},"special-escape":n,charclass:{pattern:/\.|\\[wsd]|\\p{[^{}]+}/i,alias:"class-name"},backreference:[{pattern:/\\(?![123][0-7]{2})[1-9]/,alias:"keyword"},{pattern:/\\k<[^<>']+>/,alias:"keyword",inside:{"group-name":i}}],anchor:{pattern:/[$^]|\\[ABbGZz]/,alias:"function"},escape:t,group:[{pattern:/\((?:\?(?:<[^<>']+>|'[^<>']+'|[>:]|");(s=document.createElement("span")).setAttribute("aria-hidden","true"),s.className="line-numbers-rows",s.innerHTML=u,i.hasAttribute("data-start")&&(i.style.counterReset="linenumber "+(parseInt(i.getAttribute("data-start"),10)-1)),t.element.appendChild(s),r([i]),Prism.hooks.run("line-numbers",t)}}})),Prism.hooks.add("line-numbers",(function(e){e.plugins=e.plugins||{},e.plugins.lineNumbers=!0}))}function r(e){if(0!=(e=e.filter((function(e){var n=function(e){return e?window.getComputedStyle?getComputedStyle(e):e.currentStyle||null:null}(e)["white-space"];return"pre-wrap"===n||"pre-line"===n}))).length){var t=e.map((function(e){var t=e.querySelector("code"),a=e.querySelector(".line-numbers-rows");if(t&&a){var r=e.querySelector(".line-numbers-sizer"),i=t.textContent.split(n);r||((r=document.createElement("span")).className="line-numbers-sizer",t.appendChild(r)),r.innerHTML="0",r.style.display="block";var s=r.getBoundingClientRect().height;return r.innerHTML="",{element:e,lines:i,lineHeights:[],oneLinerHeight:s,sizer:r}}})).filter(Boolean);t.forEach((function(e){var n=e.sizer,t=e.lines,a=e.lineHeights,r=e.oneLinerHeight;a[t.length-1]=void 0,t.forEach((function(e,t){if(e&&1e?1:t>=e?0:NaN},i=function(t){var e;return 1===t.length&&(e=t,t=function(t,n){return r(e(t),n)}),{left:function(e,n,r,i){for(null==r&&(r=0),null==i&&(i=e.length);r>>1;t(e[a],n)<0?r=a+1:i=a}return r},right:function(e,n,r,i){for(null==r&&(r=0),null==i&&(i=e.length);r>>1;t(e[a],n)>0?i=a:r=a+1}return r}}},a=i(r),o=a.right,s=a.left,c=o,u=function(t,e){null==e&&(e=l);for(var n=0,r=t.length-1,i=t[0],a=new Array(r<0?0:r);nt?1:e>=t?0:NaN},d=function(t){return null===t?NaN:+t},p=function(t,e){var n,r,i=t.length,a=0,o=-1,s=0,c=0;if(null==e)for(;++o1)return c/(a-1)},g=function(t,e){var n=p(t,e);return n?Math.sqrt(n):n},y=function(t,e){var n,r,i,a=t.length,o=-1;if(null==e){for(;++o=n)for(r=i=n;++on&&(r=n),i=n)for(r=i=n;++on&&(r=n),i0)return[t];if((r=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),a=new Array(i=Math.ceil(e-t+1));++s=0?(a>=w?10:a>=E?5:a>=T?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(a>=w?10:a>=E?5:a>=T?2:1)}function S(t,e,n){var r=Math.abs(e-t)/Math.max(0,n),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),a=r/i;return a>=w?i*=10:a>=E?i*=5:a>=T&&(i*=2),eh;)f.pop(),--d;var p,g=new Array(d+1);for(i=0;i<=d;++i)(p=g[i]=[]).x0=i>0?f[i-1]:l,p.x1=i=1)return+n(t[r-1],r-1,t);var r,i=(r-1)*e,a=Math.floor(i),o=+n(t[a],a,t);return o+(+n(t[a+1],a+1,t)-o)*(i-a)}},N=function(t,e,n){return t=b.call(t,d).sort(r),Math.ceil((n-e)/(2*(D(t,.75)-D(t,.25))*Math.pow(t.length,-1/3)))},B=function(t,e,n){return Math.ceil((n-e)/(3.5*g(t)*Math.pow(t.length,-1/3)))},L=function(t,e){var n,r,i=t.length,a=-1;if(null==e){for(;++a=n)for(r=n;++ar&&(r=n)}else for(;++a=n)for(r=n;++ar&&(r=n);return r},F=function(t,e){var n,r=t.length,i=r,a=-1,o=0;if(null==e)for(;++a=0;)for(e=(r=t[i]).length;--e>=0;)n[--o]=r[e];return n},j=function(t,e){var n,r,i=t.length,a=-1;if(null==e){for(;++a=n)for(r=n;++an&&(r=n)}else for(;++a=n)for(r=n;++an&&(r=n);return r},R=function(t,e){for(var n=e.length,r=new Array(n);n--;)r[n]=t[e[n]];return r},Y=function(t,e){if(n=t.length){var n,i,a=0,o=0,s=t[o];for(null==e&&(e=r);++a=0&&(n=t.slice(r+1),t=t.slice(0,r)),t&&!e.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:n}}))}function ct(t,e){for(var n,r=0,i=t.length;r0)for(var n,r,i=new Array(n),a=0;ae?1:t>=e?0:NaN}vt.prototype={constructor:vt,appendChild:function(t){return this._parent.insertBefore(t,this._next)},insertBefore:function(t,e){return this._parent.insertBefore(t,e)},querySelector:function(t){return this._parent.querySelector(t)},querySelectorAll:function(t){return this._parent.querySelectorAll(t)}};var _t="http://www.w3.org/1999/xhtml",kt={svg:"http://www.w3.org/2000/svg",xhtml:_t,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},wt=function(t){var e=t+="",n=e.indexOf(":");return n>=0&&"xmlns"!==(e=t.slice(0,n))&&(t=t.slice(n+1)),kt.hasOwnProperty(e)?{space:kt[e],local:t}:t};function Et(t){return function(){this.removeAttribute(t)}}function Tt(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Ct(t,e){return function(){this.setAttribute(t,e)}}function At(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function St(t,e){return function(){var n=e.apply(this,arguments);null==n?this.removeAttribute(t):this.setAttribute(t,n)}}function Mt(t,e){return function(){var n=e.apply(this,arguments);null==n?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,n)}}var Ot=function(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView};function Dt(t){return function(){this.style.removeProperty(t)}}function Nt(t,e,n){return function(){this.style.setProperty(t,e,n)}}function Bt(t,e,n){return function(){var r=e.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function Lt(t,e){return t.style.getPropertyValue(e)||Ot(t).getComputedStyle(t,null).getPropertyValue(e)}function Ft(t){return function(){delete this[t]}}function Pt(t,e){return function(){this[t]=e}}function It(t,e){return function(){var n=e.apply(this,arguments);null==n?delete this[t]:this[t]=n}}function jt(t){return t.trim().split(/^|\s+/)}function Rt(t){return t.classList||new Yt(t)}function Yt(t){this._node=t,this._names=jt(t.getAttribute("class")||"")}function zt(t,e){for(var n=Rt(t),r=-1,i=e.length;++r=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};var ne=function(t){var e=wt(t);return(e.local?ee:te)(e)};function re(){return null}function ie(){var t=this.parentNode;t&&t.removeChild(this)}function ae(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function oe(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}var se={},ce=null;function ue(t,e,n){return t=le(t,e,n),function(e){var n=e.relatedTarget;n&&(n===this||8&n.compareDocumentPosition(this))||t.call(this,e)}}function le(t,e,n){return function(r){var i=ce;ce=r;try{t.call(this,this.__data__,e,n)}finally{ce=i}}}function he(t){return t.trim().split(/^|\s+/).map((function(t){var e="",n=t.indexOf(".");return n>=0&&(e=t.slice(n+1),t=t.slice(0,n)),{type:t,name:e}}))}function fe(t){return function(){var e=this.__on;if(e){for(var n,r=0,i=-1,a=e.length;r=_&&(_=x+1);!(b=v[_])&&++_=0;)(r=i[a])&&(o&&4^r.compareDocumentPosition(o)&&o.parentNode.insertBefore(r,o),o=r);return this},sort:function(t){function e(e,n){return e&&n?t(e.__data__,n.__data__):!e-!n}t||(t=xt);for(var n=this._groups,r=n.length,i=new Array(r),a=0;a1?this.each((null==e?Dt:"function"==typeof e?Bt:Nt)(t,e,null==n?"":n)):Lt(this.node(),t)},property:function(t,e){return arguments.length>1?this.each((null==e?Ft:"function"==typeof e?It:Pt)(t,e)):this.node()[t]},classed:function(t,e){var n=jt(t+"");if(arguments.length<2){for(var r=Rt(this.node()),i=-1,a=n.length;++i>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===n?new qe(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===n?new qe(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=Le.exec(t))?new qe(e[1],e[2],e[3],1):(e=Fe.exec(t))?new qe(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=Pe.exec(t))?Ve(e[1],e[2],e[3],e[4]):(e=Ie.exec(t))?Ve(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=je.exec(t))?Qe(e[1],e[2]/100,e[3]/100,1):(e=Re.exec(t))?Qe(e[1],e[2]/100,e[3]/100,e[4]):Ye.hasOwnProperty(t)?We(Ye[t]):"transparent"===t?new qe(NaN,NaN,NaN,0):null}function We(t){return new qe(t>>16&255,t>>8&255,255&t,1)}function Ve(t,e,n,r){return r<=0&&(t=e=n=NaN),new qe(t,e,n,r)}function He(t){return t instanceof Me||(t=$e(t)),t?new qe((t=t.rgb()).r,t.g,t.b,t.opacity):new qe}function Ge(t,e,n,r){return 1===arguments.length?He(t):new qe(t,e,n,null==r?1:r)}function qe(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}function Xe(){return"#"+Je(this.r)+Je(this.g)+Je(this.b)}function Ze(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function Je(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Qe(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new en(t,e,n,r)}function Ke(t){if(t instanceof en)return new en(t.h,t.s,t.l,t.opacity);if(t instanceof Me||(t=$e(t)),!t)return new en;if(t instanceof en)return t;var e=(t=t.rgb()).r/255,n=t.g/255,r=t.b/255,i=Math.min(e,n,r),a=Math.max(e,n,r),o=NaN,s=a-i,c=(a+i)/2;return s?(o=e===a?(n-r)/s+6*(n0&&c<1?0:o,new en(o,s,c,t.opacity)}function tn(t,e,n,r){return 1===arguments.length?Ke(t):new en(t,e,n,null==r?1:r)}function en(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function nn(t,e,n){return 255*(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)}function rn(t,e,n,r,i){var a=t*t,o=a*t;return((1-3*t+3*a-o)*e+(4-6*a+3*o)*n+(1+3*t+3*a-3*o)*r+o*i)/6}Ae(Me,$e,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:ze,formatHex:ze,formatHsl:function(){return Ke(this).formatHsl()},formatRgb:Ue,toString:Ue}),Ae(qe,Ge,Se(Me,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new qe(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new qe(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Xe,formatHex:Xe,formatRgb:Ze,toString:Ze})),Ae(en,tn,Se(Me,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new en(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new en(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,i=2*n-r;return new qe(nn(t>=240?t-240:t+120,i,r),nn(t,i,r),nn(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var an=function(t){var e=t.length-1;return function(n){var r=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[r],a=t[r+1],o=r>0?t[r-1]:2*i-a,s=r180||n<-180?n-360*Math.round(n/360):n):sn(isNaN(t)?e:t)}function ln(t,e){var n=e-t;return n?cn(t,n):sn(isNaN(t)?e:t)}var hn=function t(e){var n=function(t){return 1==(t=+t)?ln:function(e,n){return n-e?function(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(r){return Math.pow(t+r*e,n)}}(e,n,t):sn(isNaN(e)?n:e)}}(e);function r(t,e){var r=n((t=Ge(t)).r,(e=Ge(e)).r),i=n(t.g,e.g),a=n(t.b,e.b),o=ln(t.opacity,e.opacity);return function(e){return t.r=r(e),t.g=i(e),t.b=a(e),t.opacity=o(e),t+""}}return r.gamma=t,r}(1);function fn(t){return function(e){var n,r,i=e.length,a=new Array(i),o=new Array(i),s=new Array(i);for(n=0;na&&(i=e.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(n=n[0])===(r=r[0])?s[o]?s[o]+=r:s[++o]=r:(s[++o]=null,c.push({i:o,x:kn(n,r)})),a=Tn.lastIndex;return a=0&&e._call.call(null,t),e=e._next;--Nn}function Vn(){Pn=(Fn=jn.now())+In,Nn=Bn=0;try{Wn()}finally{Nn=0,function(){for(var t,e,n=bn,r=1/0;n;)n._call?(r>n._time&&(r=n._time),t=n,n=n._next):(e=n._next,n._next=null,n=t?t._next=e:bn=e);xn=t,Gn(r)}(),Pn=0}}function Hn(){var t=jn.now(),e=t-Fn;e>1e3&&(In-=e,Fn=t)}function Gn(t){Nn||(Bn&&(Bn=clearTimeout(Bn)),t-Pn>24?(t<1/0&&(Bn=setTimeout(Vn,t-jn.now()-In)),Ln&&(Ln=clearInterval(Ln))):(Ln||(Fn=jn.now(),Ln=setInterval(Hn,1e3)),Nn=1,Rn(Vn)))}Un.prototype=$n.prototype={constructor:Un,restart:function(t,e,n){if("function"!=typeof t)throw new TypeError("callback is not a function");n=(null==n?Yn():+n)+(null==e?0:+e),this._next||xn===this||(xn?xn._next=this:bn=this,xn=this),this._call=t,this._time=n,Gn()},stop:function(){this._call&&(this._call=null,this._time=1/0,Gn())}};var qn=function(t,e,n){var r=new Un;return e=null==e?0:+e,r.restart((function(n){r.stop(),t(n+e)}),e,n),r},Xn=lt("start","end","cancel","interrupt"),Zn=[],Jn=function(t,e,n,r,i,a){var o=t.__transition;if(o){if(n in o)return}else t.__transition={};!function(t,e,n){var r,i=t.__transition;function a(c){var u,l,h,f;if(1!==n.state)return s();for(u in i)if((f=i[u]).name===n.name){if(3===f.state)return qn(a);4===f.state?(f.state=6,f.timer.stop(),f.on.call("interrupt",t,t.__data__,f.index,f.group),delete i[u]):+u0)throw new Error("too late; already scheduled");return n}function Kn(t,e){var n=tr(t,e);if(n.state>3)throw new Error("too late; already running");return n}function tr(t,e){var n=t.__transition;if(!n||!(n=n[e]))throw new Error("transition not found");return n}var er,nr,rr,ir,ar=function(t,e){var n,r,i,a=t.__transition,o=!0;if(a){for(i in e=null==e?null:e+"",a)(n=a[i]).name===e?(r=n.state>2&&n.state<5,n.state=6,n.timer.stop(),n.on.call(r?"interrupt":"cancel",t,t.__data__,n.index,n.group),delete a[i]):o=!1;o&&delete t.__transition}},or=180/Math.PI,sr={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},cr=function(t,e,n,r,i,a){var o,s,c;return(o=Math.sqrt(t*t+e*e))&&(t/=o,e/=o),(c=t*n+e*r)&&(n-=t*c,r-=e*c),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,c/=s),t*r180?e+=360:e-t>180&&(t+=360),a.push({i:n.push(i(n)+"rotate(",null,r)-2,x:kn(t,e)})):e&&n.push(i(n)+"rotate("+e+r)}(a.rotate,o.rotate,s,c),function(t,e,n,a){t!==e?a.push({i:n.push(i(n)+"skewX(",null,r)-2,x:kn(t,e)}):e&&n.push(i(n)+"skewX("+e+r)}(a.skewX,o.skewX,s,c),function(t,e,n,r,a,o){if(t!==n||e!==r){var s=a.push(i(a)+"scale(",null,",",null,")");o.push({i:s-4,x:kn(t,n)},{i:s-2,x:kn(e,r)})}else 1===n&&1===r||a.push(i(a)+"scale("+n+","+r+")")}(a.scaleX,a.scaleY,o.scaleX,o.scaleY,s,c),a=o=null,function(t){for(var e,n=-1,r=c.length;++n=0&&(t=t.slice(0,e)),!t||"start"===t}))}(e)?Qn:Kn;return function(){var o=a(this,t),s=o.on;s!==r&&(i=(r=s).copy()).on(e,n),o.on=i}}var Nr=_e.prototype.constructor;function Br(t){return function(){this.style.removeProperty(t)}}function Lr(t,e,n){return function(r){this.style.setProperty(t,e.call(this,r),n)}}function Fr(t,e,n){var r,i;function a(){var a=e.apply(this,arguments);return a!==i&&(r=(i=a)&&Lr(t,a,n)),r}return a._value=e,a}function Pr(t){return function(e){this.textContent=t.call(this,e)}}function Ir(t){var e,n;function r(){var r=t.apply(this,arguments);return r!==n&&(e=(n=r)&&Pr(r)),e}return r._value=t,r}var jr=0;function Rr(t,e,n,r){this._groups=t,this._parents=e,this._name=n,this._id=r}function Yr(t){return _e().transition(t)}function zr(){return++jr}var Ur=_e.prototype;function $r(t){return t*t*t}function Wr(t){return--t*t*t+1}function Vr(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}Rr.prototype=Yr.prototype={constructor:Rr,select:function(t){var e=this._name,n=this._id;"function"!=typeof t&&(t=ft(t));for(var r=this._groups,i=r.length,a=new Array(i),o=0;o1&&n.name===e)return new Rr([[t]],qr,e,+r);return null},Zr=function(t){return function(){return t}},Jr=function(t,e,n){this.target=t,this.type=e,this.selection=n};function Qr(){ce.stopImmediatePropagation()}var Kr=function(){ce.preventDefault(),ce.stopImmediatePropagation()},ti={name:"drag"},ei={name:"space"},ni={name:"handle"},ri={name:"center"};function ii(t){return[+t[0],+t[1]]}function ai(t){return[ii(t[0]),ii(t[1])]}function oi(t){return function(e){return On(e,ce.touches,t)}}var si={name:"x",handles:["w","e"].map(gi),input:function(t,e){return null==t?null:[[+t[0],e[0][1]],[+t[1],e[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},ci={name:"y",handles:["n","s"].map(gi),input:function(t,e){return null==t?null:[[e[0][0],+t[0]],[e[1][0],+t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},ui={name:"xy",handles:["n","w","e","s","nw","ne","sw","se"].map(gi),input:function(t){return null==t?null:ai(t)},output:function(t){return t}},li={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},hi={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},fi={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},di={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},pi={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1};function gi(t){return{type:t}}function yi(){return!ce.ctrlKey&&!ce.button}function vi(){var t=this.ownerSVGElement||this;return t.hasAttribute("viewBox")?[[(t=t.viewBox.baseVal).x,t.y],[t.x+t.width,t.y+t.height]]:[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function mi(){return navigator.maxTouchPoints||"ontouchstart"in this}function bi(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function xi(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function _i(t){var e=t.__brush;return e?e.dim.output(e.selection):null}function ki(){return Ti(si)}function wi(){return Ti(ci)}var Ei=function(){return Ti(ui)};function Ti(t){var e,n=vi,r=yi,i=mi,a=!0,o=lt("start","brush","end"),s=6;function c(e){var n=e.property("__brush",g).selectAll(".overlay").data([gi("overlay")]);n.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",li.overlay).merge(n).each((function(){var t=bi(this).extent;ke(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])})),e.selectAll(".selection").data([gi("selection")]).enter().append("rect").attr("class","selection").attr("cursor",li.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var r=e.selectAll(".handle").data(t.handles,(function(t){return t.type}));r.exit().remove(),r.enter().append("rect").attr("class",(function(t){return"handle handle--"+t.type})).attr("cursor",(function(t){return li[t.type]})),e.each(u).attr("fill","none").attr("pointer-events","all").on("mousedown.brush",f).filter(i).on("touchstart.brush",f).on("touchmove.brush",d).on("touchend.brush touchcancel.brush",p).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function u(){var t=ke(this),e=bi(this).selection;e?(t.selectAll(".selection").style("display",null).attr("x",e[0][0]).attr("y",e[0][1]).attr("width",e[1][0]-e[0][0]).attr("height",e[1][1]-e[0][1]),t.selectAll(".handle").style("display",null).attr("x",(function(t){return"e"===t.type[t.type.length-1]?e[1][0]-s/2:e[0][0]-s/2})).attr("y",(function(t){return"s"===t.type[0]?e[1][1]-s/2:e[0][1]-s/2})).attr("width",(function(t){return"n"===t.type||"s"===t.type?e[1][0]-e[0][0]+s:s})).attr("height",(function(t){return"e"===t.type||"w"===t.type?e[1][1]-e[0][1]+s:s}))):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function l(t,e,n){return!n&&t.__brush.emitter||new h(t,e)}function h(t,e){this.that=t,this.args=e,this.state=t.__brush,this.active=0}function f(){if((!e||ce.touches)&&r.apply(this,arguments)){var n,i,o,s,c,h,f,d,p,g,y,v=this,m=ce.target.__data__.type,b="selection"===(a&&ce.metaKey?m="overlay":m)?ti:a&&ce.altKey?ri:ni,x=t===ci?null:di[m],_=t===si?null:pi[m],k=bi(v),w=k.extent,E=k.selection,T=w[0][0],C=w[0][1],A=w[1][0],S=w[1][1],M=0,O=0,D=x&&_&&a&&ce.shiftKey,N=ce.touches?oi(ce.changedTouches[0].identifier):Dn,B=N(v),L=B,F=l(v,arguments,!0).beforestart();"overlay"===m?(E&&(p=!0),k.selection=E=[[n=t===ci?T:B[0],o=t===si?C:B[1]],[c=t===ci?A:n,f=t===si?S:o]]):(n=E[0][0],o=E[0][1],c=E[1][0],f=E[1][1]),i=n,s=o,h=c,d=f;var P=ke(v).attr("pointer-events","none"),I=P.selectAll(".overlay").attr("cursor",li[m]);if(ce.touches)F.moved=R,F.ended=z;else{var j=ke(ce.view).on("mousemove.brush",R,!0).on("mouseup.brush",z,!0);a&&j.on("keydown.brush",U,!0).on("keyup.brush",$,!0),Te(ce.view)}Qr(),ar(v),u.call(v),F.start()}function R(){var t=N(v);!D||g||y||(Math.abs(t[0]-L[0])>Math.abs(t[1]-L[1])?y=!0:g=!0),L=t,p=!0,Kr(),Y()}function Y(){var t;switch(M=L[0]-B[0],O=L[1]-B[1],b){case ei:case ti:x&&(M=Math.max(T-n,Math.min(A-c,M)),i=n+M,h=c+M),_&&(O=Math.max(C-o,Math.min(S-f,O)),s=o+O,d=f+O);break;case ni:x<0?(M=Math.max(T-n,Math.min(A-n,M)),i=n+M,h=c):x>0&&(M=Math.max(T-c,Math.min(A-c,M)),i=n,h=c+M),_<0?(O=Math.max(C-o,Math.min(S-o,O)),s=o+O,d=f):_>0&&(O=Math.max(C-f,Math.min(S-f,O)),s=o,d=f+O);break;case ri:x&&(i=Math.max(T,Math.min(A,n-M*x)),h=Math.max(T,Math.min(A,c+M*x))),_&&(s=Math.max(C,Math.min(S,o-O*_)),d=Math.max(C,Math.min(S,f+O*_)))}h0&&(n=i-M),_<0?f=d-O:_>0&&(o=s-O),b=ei,I.attr("cursor",li.selection),Y());break;default:return}Kr()}function $(){switch(ce.keyCode){case 16:D&&(g=y=D=!1,Y());break;case 18:b===ri&&(x<0?c=h:x>0&&(n=i),_<0?f=d:_>0&&(o=s),b=ni,Y());break;case 32:b===ei&&(ce.altKey?(x&&(c=h-M*x,n=i+M*x),_&&(f=d-O*_,o=s+O*_),b=ri):(x<0?c=h:x>0&&(n=i),_<0?f=d:_>0&&(o=s),b=ni),I.attr("cursor",li[m]),Y());break;default:return}Kr()}}function d(){l(this,arguments).moved()}function p(){l(this,arguments).ended()}function g(){var e=this.__brush||{selection:null};return e.extent=ai(n.apply(this,arguments)),e.dim=t,e}return c.move=function(e,n){e.selection?e.on("start.brush",(function(){l(this,arguments).beforestart().start()})).on("interrupt.brush end.brush",(function(){l(this,arguments).end()})).tween("brush",(function(){var e=this,r=e.__brush,i=l(e,arguments),a=r.selection,o=t.input("function"==typeof n?n.apply(this,arguments):n,r.extent),s=An(a,o);function c(t){r.selection=1===t&&null===o?null:s(t),u.call(e),i.brush()}return null!==a&&null!==o?c:c(1)})):e.each((function(){var e=this,r=arguments,i=e.__brush,a=t.input("function"==typeof n?n.apply(e,r):n,i.extent),o=l(e,r).beforestart();ar(e),i.selection=null===a?null:a,u.call(e),o.start().brush().end()}))},c.clear=function(t){c.move(t,null)},h.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting?(this.starting=!1,this.emit("start")):this.emit("brush"),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(e){pe(new Jr(c,e,t.output(this.state.selection)),o.apply,o,[e,this.that,this.args])}},c.extent=function(t){return arguments.length?(n="function"==typeof t?t:Zr(ai(t)),c):n},c.filter=function(t){return arguments.length?(r="function"==typeof t?t:Zr(!!t),c):r},c.touchable=function(t){return arguments.length?(i="function"==typeof t?t:Zr(!!t),c):i},c.handleSize=function(t){return arguments.length?(s=+t,c):s},c.keyModifiers=function(t){return arguments.length?(a=!!t,c):a},c.on=function(){var t=o.on.apply(o,arguments);return t===o?c:t},c}var Ci=Math.cos,Ai=Math.sin,Si=Math.PI,Mi=Si/2,Oi=2*Si,Di=Math.max;function Ni(t){return function(e,n){return t(e.source.value+e.target.value,n.source.value+n.target.value)}}var Bi=function(){var t=0,e=null,n=null,r=null;function i(i){var a,o,s,c,u,l,h=i.length,f=[],d=k(h),p=[],g=[],y=g.groups=new Array(h),v=new Array(h*h);for(a=0,u=-1;++u1e-6)if(Math.abs(l*s-c*u)>1e-6&&i){var f=n-a,d=r-o,p=s*s+c*c,g=f*f+d*d,y=Math.sqrt(p),v=Math.sqrt(h),m=i*Math.tan((Pi-Math.acos((p+h-g)/(2*y*v)))/2),b=m/v,x=m/y;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(e+b*l)),this._+="A"+i+","+i+",0,0,"+ +(l*f>u*d)+","+(this._x1=t+x*s)+","+(this._y1=e+x*c)}else this._+="L"+(this._x1=t)+","+(this._y1=e)},arc:function(t,e,n,r,i,a){t=+t,e=+e,a=!!a;var o=(n=+n)*Math.cos(r),s=n*Math.sin(r),c=t+o,u=e+s,l=1^a,h=a?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+c+","+u:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-u)>1e-6)&&(this._+="L"+c+","+u),n&&(h<0&&(h=h%Ii+Ii),h>ji?this._+="A"+n+","+n+",0,1,"+l+","+(t-o)+","+(e-s)+"A"+n+","+n+",0,1,"+l+","+(this._x1=c)+","+(this._y1=u):h>1e-6&&(this._+="A"+n+","+n+",0,"+ +(h>=Pi)+","+l+","+(this._x1=t+n*Math.cos(i))+","+(this._y1=e+n*Math.sin(i))))},rect:function(t,e,n,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var zi=Yi;function Ui(t){return t.source}function $i(t){return t.target}function Wi(t){return t.radius}function Vi(t){return t.startAngle}function Hi(t){return t.endAngle}var Gi=function(){var t=Ui,e=$i,n=Wi,r=Vi,i=Hi,a=null;function o(){var o,s=Li.call(arguments),c=t.apply(this,s),u=e.apply(this,s),l=+n.apply(this,(s[0]=c,s)),h=r.apply(this,s)-Mi,f=i.apply(this,s)-Mi,d=l*Ci(h),p=l*Ai(h),g=+n.apply(this,(s[0]=u,s)),y=r.apply(this,s)-Mi,v=i.apply(this,s)-Mi;if(a||(a=o=zi()),a.moveTo(d,p),a.arc(0,0,l,h,f),h===y&&f===v||(a.quadraticCurveTo(0,0,g*Ci(y),g*Ai(y)),a.arc(0,0,g,y,v)),a.quadraticCurveTo(0,0,d,p),a.closePath(),o)return a=null,o+""||null}return o.radius=function(t){return arguments.length?(n="function"==typeof t?t:Fi(+t),o):n},o.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:Fi(+t),o):r},o.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:Fi(+t),o):i},o.source=function(e){return arguments.length?(t=e,o):t},o.target=function(t){return arguments.length?(e=t,o):e},o.context=function(t){return arguments.length?(a=null==t?null:t,o):a},o};function qi(){}function Xi(t,e){var n=new qi;if(t instanceof qi)t.each((function(t,e){n.set(e,t)}));else if(Array.isArray(t)){var r,i=-1,a=t.length;if(null==e)for(;++i=r.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var c,u,l,h=-1,f=n.length,d=r[i++],p=Zi(),g=o();++hr.length)return n;var o,s=i[a-1];return null!=e&&a>=r.length?o=n.entries():(o=[],n.each((function(e,n){o.push({key:n,values:t(e,a)})}))),null!=s?o.sort((function(t,e){return s(t.key,e.key)})):o}(a(t,0,ta,ea),0)},key:function(t){return r.push(t),n},sortKeys:function(t){return i[r.length-1]=t,n},sortValues:function(e){return t=e,n},rollup:function(t){return e=t,n}}};function Qi(){return{}}function Ki(t,e,n){t[e]=n}function ta(){return Zi()}function ea(t,e,n){t.set(e,n)}function na(){}var ra=Zi.prototype;function ia(t,e){var n=new na;if(t instanceof na)t.each((function(t){n.add(t)}));else if(t){var r=-1,i=t.length;if(null==e)for(;++r6/29*(6/29)*(6/29)?Math.pow(t,1/3):t/(6/29*3*(6/29))+4/29}function ya(t){return t>6/29?t*t*t:6/29*3*(6/29)*(t-4/29)}function va(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function ma(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function ba(t){if(t instanceof ka)return new ka(t.h,t.c,t.l,t.opacity);if(t instanceof pa||(t=ha(t)),0===t.a&&0===t.b)return new ka(NaN,0r!=d>r&&n<(f-u)*(r-l)/(d-l)+u&&(i=-i)}return i}function Fa(t,e,n){var r,i,a,o;return function(t,e,n){return(e[0]-t[0])*(n[1]-t[1])==(n[0]-t[0])*(e[1]-t[1])}(t,e,n)&&(i=t[r=+(t[0]===e[0])],a=n[r],o=e[r],i<=a&&a<=o||o<=a&&a<=i)}var Pa=function(){},Ia=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]],ja=function(){var t=1,e=1,n=M,r=s;function i(t){var e=n(t);if(Array.isArray(e))e=e.slice().sort(Da);else{var r=y(t),i=r[0],o=r[1];e=S(i,o,e),e=k(Math.floor(i/e)*e,Math.floor(o/e)*e,e)}return e.map((function(e){return a(t,e)}))}function a(n,i){var a=[],s=[];return function(n,r,i){var a,s,c,u,l,h,f=new Array,d=new Array;for(a=s=-1,u=n[0]>=r,Ia[u<<1].forEach(p);++a=r,Ia[c|u<<1].forEach(p);for(Ia[u<<0].forEach(p);++s=r,l=n[s*t]>=r,Ia[u<<1|l<<2].forEach(p);++a=r,h=l,l=n[s*t+a+1]>=r,Ia[c|u<<1|l<<2|h<<3].forEach(p);Ia[u|l<<3].forEach(p)}for(a=-1,l=n[s*t]>=r,Ia[l<<2].forEach(p);++a=r,Ia[l<<2|h<<3].forEach(p);function p(t){var e,n,r=[t[0][0]+a,t[0][1]+s],c=[t[1][0]+a,t[1][1]+s],u=o(r),l=o(c);(e=d[u])?(n=f[l])?(delete d[e.end],delete f[n.start],e===n?(e.ring.push(c),i(e.ring)):f[e.start]=d[n.end]={start:e.start,end:n.end,ring:e.ring.concat(n.ring)}):(delete d[e.end],e.ring.push(c),d[e.end=l]=e):(e=f[l])?(n=d[u])?(delete f[e.start],delete d[n.end],e===n?(e.ring.push(c),i(e.ring)):f[n.start]=d[e.end]={start:n.start,end:e.end,ring:n.ring.concat(e.ring)}):(delete f[e.start],e.ring.unshift(r),f[e.start=u]=e):f[u]=d[l]={start:u,end:l,ring:[r,c]}}Ia[l<<3].forEach(p)}(n,i,(function(t){r(t,n,i),function(t){for(var e=0,n=t.length,r=t[n-1][1]*t[0][0]-t[n-1][0]*t[0][1];++e0?a.push([t]):s.push(t)})),s.forEach((function(t){for(var e,n=0,r=a.length;n0&&o0&&s0&&a>0))throw new Error("invalid size");return t=r,e=a,i},i.thresholds=function(t){return arguments.length?(n="function"==typeof t?t:Array.isArray(t)?Na(Oa.call(t)):Na(t),i):n},i.smooth=function(t){return arguments.length?(r=t?s:Pa,i):r===s},i};function Ra(t,e,n){for(var r=t.width,i=t.height,a=1+(n<<1),o=0;o=n&&(s>=a&&(c-=t.data[s-a+o*r]),e.data[s-n+o*r]=c/Math.min(s+1,r-1+a-s,a))}function Ya(t,e,n){for(var r=t.width,i=t.height,a=1+(n<<1),o=0;o=n&&(s>=a&&(c-=t.data[o+(s-a)*r]),e.data[o+(s-n)*r]=c/Math.min(s+1,i-1+a-s,a))}function za(t){return t[0]}function Ua(t){return t[1]}function $a(){return 1}var Wa=function(){var t=za,e=Ua,n=$a,r=960,i=500,a=20,o=2,s=3*a,c=r+2*s>>o,u=i+2*s>>o,l=Na(20);function h(r){var i=new Float32Array(c*u),h=new Float32Array(c*u);r.forEach((function(r,a,l){var h=+t(r,a,l)+s>>o,f=+e(r,a,l)+s>>o,d=+n(r,a,l);h>=0&&h=0&&f>o),Ya({width:c,height:u,data:h},{width:c,height:u,data:i},a>>o),Ra({width:c,height:u,data:i},{width:c,height:u,data:h},a>>o),Ya({width:c,height:u,data:h},{width:c,height:u,data:i},a>>o),Ra({width:c,height:u,data:i},{width:c,height:u,data:h},a>>o),Ya({width:c,height:u,data:h},{width:c,height:u,data:i},a>>o);var d=l(i);if(!Array.isArray(d)){var p=L(i);d=S(0,p,d),(d=k(0,Math.floor(p/d)*d,d)).shift()}return ja().thresholds(d).size([c,u])(i).map(f)}function f(t){return t.value*=Math.pow(2,-2*o),t.coordinates.forEach(d),t}function d(t){t.forEach(p)}function p(t){t.forEach(g)}function g(t){t[0]=t[0]*Math.pow(2,o)-s,t[1]=t[1]*Math.pow(2,o)-s}function y(){return c=r+2*(s=3*a)>>o,u=i+2*s>>o,h}return h.x=function(e){return arguments.length?(t="function"==typeof e?e:Na(+e),h):t},h.y=function(t){return arguments.length?(e="function"==typeof t?t:Na(+t),h):e},h.weight=function(t){return arguments.length?(n="function"==typeof t?t:Na(+t),h):n},h.size=function(t){if(!arguments.length)return[r,i];var e=Math.ceil(t[0]),n=Math.ceil(t[1]);if(!(e>=0||e>=0))throw new Error("invalid size");return r=e,i=n,y()},h.cellSize=function(t){if(!arguments.length)return 1<=1))throw new Error("invalid cell size");return o=Math.floor(Math.log(t)/Math.LN2),y()},h.thresholds=function(t){return arguments.length?(l="function"==typeof t?t:Array.isArray(t)?Na(Oa.call(t)):Na(t),h):l},h.bandwidth=function(t){if(!arguments.length)return Math.sqrt(a*(a+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return a=Math.round((Math.sqrt(4*t*t+1)-1)/2),y()},h},Va=function(t){return function(){return t}};function Ha(t,e,n,r,i,a,o,s,c,u){this.target=t,this.type=e,this.subject=n,this.identifier=r,this.active=i,this.x=a,this.y=o,this.dx=s,this.dy=c,this._=u}function Ga(){return!ce.ctrlKey&&!ce.button}function qa(){return this.parentNode}function Xa(t){return null==t?{x:ce.x,y:ce.y}:t}function Za(){return navigator.maxTouchPoints||"ontouchstart"in this}Ha.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var Ja=function(){var t,e,n,r,i=Ga,a=qa,o=Xa,s=Za,c={},u=lt("start","drag","end"),l=0,h=0;function f(t){t.on("mousedown.drag",d).filter(s).on("touchstart.drag",y).on("touchmove.drag",v).on("touchend.drag touchcancel.drag",m).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function d(){if(!r&&i.apply(this,arguments)){var o=b("mouse",a.apply(this,arguments),Dn,this,arguments);o&&(ke(ce.view).on("mousemove.drag",p,!0).on("mouseup.drag",g,!0),Te(ce.view),we(),n=!1,t=ce.clientX,e=ce.clientY,o("start"))}}function p(){if(Ee(),!n){var r=ce.clientX-t,i=ce.clientY-e;n=r*r+i*i>h}c.mouse("drag")}function g(){ke(ce.view).on("mousemove.drag mouseup.drag",null),Ce(ce.view,n),Ee(),c.mouse("end")}function y(){if(i.apply(this,arguments)){var t,e,n=ce.changedTouches,r=a.apply(this,arguments),o=n.length;for(t=0;t=a?c=!0:10===(r=t.charCodeAt(o++))?u=!0:13===r&&(u=!0,10===t.charCodeAt(o)&&++o),t.slice(i+1,e-1).replace(/""/g,'"')}for(;o9999?"+"+no(e,6):no(e,4))+"-"+no(t.getUTCMonth()+1,2)+"-"+no(t.getUTCDate(),2)+(a?"T"+no(n,2)+":"+no(r,2)+":"+no(i,2)+"."+no(a,3)+"Z":i?"T"+no(n,2)+":"+no(r,2)+":"+no(i,2)+"Z":r||n?"T"+no(n,2)+":"+no(r,2)+"Z":"")}(t):e.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}return{parse:function(t,e){var n,i,a=r(t,(function(t,r){if(n)return n(t,r-1);i=t,n=e?function(t,e){var n=to(t);return function(r,i){return e(n(r),i,t)}}(t,e):to(t)}));return a.columns=i||[],a},parseRows:r,format:function(e,n){return null==n&&(n=eo(e)),[n.map(o).join(t)].concat(i(e,n)).join("\n")},formatBody:function(t,e){return null==e&&(e=eo(t)),i(t,e).join("\n")},formatRows:function(t){return t.map(a).join("\n")},formatRow:a,formatValue:o}},io=ro(","),ao=io.parse,oo=io.parseRows,so=io.format,co=io.formatBody,uo=io.formatRows,lo=io.formatRow,ho=io.formatValue,fo=ro("\t"),po=fo.parse,go=fo.parseRows,yo=fo.format,vo=fo.formatBody,mo=fo.formatRows,bo=fo.formatRow,xo=fo.formatValue;function _o(t){for(var e in t){var n,r,i=t[e].trim();if(i)if("true"===i)i=!0;else if("false"===i)i=!1;else if("NaN"===i)i=NaN;else if(isNaN(n=+i)){if(!(r=i.match(/^([-+]\d{2})?\d{4}(-\d{2}(-\d{2})?)?(T\d{2}:\d{2}(:\d{2}(\.\d{3})?)?(Z|[-+]\d{2}:\d{2})?)?$/)))continue;ko&&r[4]&&!r[7]&&(i=i.replace(/-/g,"/").replace(/T/," ")),i=new Date(i)}else i=n;else i=null;t[e]=i}return t}var ko=new Date("2019-01-01T00:00").getHours()||new Date("2019-07-01T00:00").getHours();function wo(t){return+t}function Eo(t){return t*t}function To(t){return t*(2-t)}function Co(t){return((t*=2)<=1?t*t:--t*(2-t)+1)/2}var Ao=function t(e){function n(t){return Math.pow(t,e)}return e=+e,n.exponent=t,n}(3),So=function t(e){function n(t){return 1-Math.pow(1-t,e)}return e=+e,n.exponent=t,n}(3),Mo=function t(e){function n(t){return((t*=2)<=1?Math.pow(t,e):2-Math.pow(2-t,e))/2}return e=+e,n.exponent=t,n}(3),Oo=Math.PI,Do=Oo/2;function No(t){return 1-Math.cos(t*Do)}function Bo(t){return Math.sin(t*Do)}function Lo(t){return(1-Math.cos(Oo*t))/2}function Fo(t){return Math.pow(2,10*t-10)}function Po(t){return 1-Math.pow(2,-10*t)}function Io(t){return((t*=2)<=1?Math.pow(2,10*t-10):2-Math.pow(2,10-10*t))/2}function jo(t){return 1-Math.sqrt(1-t*t)}function Ro(t){return Math.sqrt(1- --t*t)}function Yo(t){return((t*=2)<=1?1-Math.sqrt(1-t*t):Math.sqrt(1-(t-=2)*t)+1)/2}function zo(t){return 1-Uo(1-t)}function Uo(t){return(t=+t)<4/11?7.5625*t*t:t<8/11?7.5625*(t-=6/11)*t+.75:t<10/11?7.5625*(t-=9/11)*t+.9375:7.5625*(t-=21/22)*t+63/64}function $o(t){return((t*=2)<=1?1-Uo(1-t):Uo(t-1)+1)/2}var Wo=function t(e){function n(t){return t*t*((e+1)*t-e)}return e=+e,n.overshoot=t,n}(1.70158),Vo=function t(e){function n(t){return--t*t*((e+1)*t+e)+1}return e=+e,n.overshoot=t,n}(1.70158),Ho=function t(e){function n(t){return((t*=2)<1?t*t*((e+1)*t-e):(t-=2)*t*((e+1)*t+e)+2)/2}return e=+e,n.overshoot=t,n}(1.70158),Go=2*Math.PI,qo=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Go);function i(t){return e*Math.pow(2,10*--t)*Math.sin((r-t)/n)}return i.amplitude=function(e){return t(e,n*Go)},i.period=function(n){return t(e,n)},i}(1,.3),Xo=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Go);function i(t){return 1-e*Math.pow(2,-10*(t=+t))*Math.sin((t+r)/n)}return i.amplitude=function(e){return t(e,n*Go)},i.period=function(n){return t(e,n)},i}(1,.3),Zo=function t(e,n){var r=Math.asin(1/(e=Math.max(1,e)))*(n/=Go);function i(t){return((t=2*t-1)<0?e*Math.pow(2,10*t)*Math.sin((r-t)/n):2-e*Math.pow(2,-10*t)*Math.sin((r+t)/n))/2}return i.amplitude=function(e){return t(e,n*Go)},i.period=function(n){return t(e,n)},i}(1,.3);function Jo(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.blob()}var Qo=function(t,e){return fetch(t,e).then(Jo)};function Ko(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.arrayBuffer()}var ts=function(t,e){return fetch(t,e).then(Ko)};function es(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.text()}var ns=function(t,e){return fetch(t,e).then(es)};function rs(t){return function(e,n,r){return 2===arguments.length&&"function"==typeof n&&(r=n,n=void 0),ns(e,n).then((function(e){return t(e,r)}))}}function is(t,e,n,r){3===arguments.length&&"function"==typeof n&&(r=n,n=void 0);var i=ro(t);return ns(e,n).then((function(t){return i.parse(t,r)}))}var as=rs(ao),os=rs(po),ss=function(t,e){return new Promise((function(n,r){var i=new Image;for(var a in e)i[a]=e[a];i.onerror=r,i.onload=function(){n(i)},i.src=t}))};function cs(t){if(!t.ok)throw new Error(t.status+" "+t.statusText);return t.json()}var us=function(t,e){return fetch(t,e).then(cs)};function ls(t){return function(e,n){return ns(e,n).then((function(e){return(new DOMParser).parseFromString(e,t)}))}}var hs=ls("application/xml"),fs=ls("text/html"),ds=ls("image/svg+xml"),ps=function(t,e){var n;function r(){var r,i,a=n.length,o=0,s=0;for(r=0;r=(a=(g+v)/2))?g=a:v=a,(l=n>=(o=(y+m)/2))?y=o:m=o,i=d,!(d=d[h=l<<1|u]))return i[h]=p,t;if(s=+t._x.call(null,d.data),c=+t._y.call(null,d.data),e===s&&n===c)return p.next=d,i?i[h]=p:t._root=p,t;do{i=i?i[h]=new Array(4):t._root=new Array(4),(u=e>=(a=(g+v)/2))?g=a:v=a,(l=n>=(o=(y+m)/2))?y=o:m=o}while((h=l<<1|u)==(f=(c>=o)<<1|s>=a));return i[f]=d,i[h]=p,t}var ms=function(t,e,n,r,i){this.node=t,this.x0=e,this.y0=n,this.x1=r,this.y1=i};function bs(t){return t[0]}function xs(t){return t[1]}function _s(t,e,n){var r=new ks(null==e?bs:e,null==n?xs:n,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function ks(t,e,n,r,i,a){this._x=t,this._y=e,this._x0=n,this._y0=r,this._x1=i,this._y1=a,this._root=void 0}function ws(t){for(var e={data:t.data},n=e;t=t.next;)n=n.next={data:t.data};return e}var Es=_s.prototype=ks.prototype;function Ts(t){return t.x+t.vx}function Cs(t){return t.y+t.vy}Es.copy=function(){var t,e,n=new ks(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return n;if(!r.length)return n._root=ws(r),n;for(t=[{source:r,target:n._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(e=r.source[i])&&(e.length?t.push({source:e,target:r.target[i]=new Array(4)}):r.target[i]=ws(e));return n},Es.add=function(t){var e=+this._x.call(null,t),n=+this._y.call(null,t);return vs(this.cover(e,n),e,n,t)},Es.addAll=function(t){var e,n,r,i,a=t.length,o=new Array(a),s=new Array(a),c=1/0,u=1/0,l=-1/0,h=-1/0;for(n=0;nl&&(l=r),ih&&(h=i));if(c>l||u>h)return this;for(this.cover(c,u).cover(l,h),n=0;nt||t>=i||r>e||e>=a;)switch(s=(ef||(a=c.y0)>d||(o=c.x1)=v)<<1|t>=y)&&(c=p[p.length-1],p[p.length-1]=p[p.length-1-u],p[p.length-1-u]=c)}else{var m=t-+this._x.call(null,g.data),b=e-+this._y.call(null,g.data),x=m*m+b*b;if(x=(s=(p+y)/2))?p=s:y=s,(l=o>=(c=(g+v)/2))?g=c:v=c,e=d,!(d=d[h=l<<1|u]))return this;if(!d.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(n=e,f=h)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):e?(i?e[h]=i:delete e[h],(d=e[0]||e[1]||e[2]||e[3])&&d===(e[3]||e[2]||e[1]||e[0])&&!d.length&&(n?n[f]=d:this._root=d),this):(this._root=i,this)},Es.removeAll=function(t){for(var e=0,n=t.length;ec+d||iu+d||as.index){var p=c-o.x-o.vx,g=u-o.y-o.vy,y=p*p+g*g;yt.r&&(t.r=t[e].r)}function s(){if(e){var r,i,a=e.length;for(n=new Array(a),r=0;r1?(null==n?s.remove(t):s.set(t,d(n)),e):s.get(t)},find:function(e,n,r){var i,a,o,s,c,u=0,l=t.length;for(null==r?r=1/0:r*=r,u=0;u1?(u.on(t,n),e):u.on(t)}}},Fs=function(){var t,e,n,r,i=gs(-30),a=1,o=1/0,s=.81;function c(r){var i,a=t.length,o=_s(t,Ds,Ns).visitAfter(l);for(n=r,i=0;i=o)){(t.data!==e||t.next)&&(0===l&&(d+=(l=ys())*l),0===h&&(d+=(h=ys())*h),d1?r[0]+r.slice(2):r,+t.slice(n+1)]},Ys=function(t){return(t=Rs(Math.abs(t)))?t[1]:NaN},zs=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Us(t){if(!(e=zs.exec(t)))throw new Error("invalid format: "+t);var e;return new $s({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function $s(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}Us.prototype=$s.prototype,$s.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var Ws,Vs,Hs,Gs,qs=function(t,e){var n=Rs(t,e);if(!n)return t+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")},Xs={"%":function(t,e){return(100*t).toFixed(e)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},g:function(t,e){return t.toPrecision(e)},o:function(t){return Math.round(t).toString(8)},p:function(t,e){return qs(100*t,e)},r:qs,s:function(t,e){var n=Rs(t,e);if(!n)return t+"";var r=n[0],i=n[1],a=i-(Ws=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,o=r.length;return a===o?r:a>o?r+new Array(a-o+1).join("0"):a>0?r.slice(0,a)+"."+r.slice(a):"0."+new Array(1-a).join("0")+Rs(t,Math.max(0,e+a-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},Zs=function(t){return t},Js=Array.prototype.map,Qs=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"],Ks=function(t){var e,n,r=void 0===t.grouping||void 0===t.thousands?Zs:(e=Js.call(t.grouping,Number),n=t.thousands+"",function(t,r){for(var i=t.length,a=[],o=0,s=e[0],c=0;i>0&&s>0&&(c+s+1>r&&(s=Math.max(1,r-c)),a.push(t.substring(i-=s,i+s)),!((c+=s+1)>r));)s=e[o=(o+1)%e.length];return a.reverse().join(n)}),i=void 0===t.currency?"":t.currency[0]+"",a=void 0===t.currency?"":t.currency[1]+"",o=void 0===t.decimal?".":t.decimal+"",s=void 0===t.numerals?Zs:function(t){return function(e){return e.replace(/[0-9]/g,(function(e){return t[+e]}))}}(Js.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",u=void 0===t.minus?"-":t.minus+"",l=void 0===t.nan?"NaN":t.nan+"";function h(t){var e=(t=Us(t)).fill,n=t.align,h=t.sign,f=t.symbol,d=t.zero,p=t.width,g=t.comma,y=t.precision,v=t.trim,m=t.type;"n"===m?(g=!0,m="g"):Xs[m]||(void 0===y&&(y=12),v=!0,m="g"),(d||"0"===e&&"="===n)&&(d=!0,e="0",n="=");var b="$"===f?i:"#"===f&&/[boxX]/.test(m)?"0"+m.toLowerCase():"",x="$"===f?a:/[%p]/.test(m)?c:"",_=Xs[m],k=/[defgprs%]/.test(m);function w(t){var i,a,c,f=b,w=x;if("c"===m)w=_(t)+w,t="";else{var E=(t=+t)<0;if(t=isNaN(t)?l:_(Math.abs(t),y),v&&(t=function(t){t:for(var e,n=t.length,r=1,i=-1;r0&&(i=0)}return i>0?t.slice(0,i)+t.slice(e+1):t}(t)),E&&0==+t&&(E=!1),f=(E?"("===h?h:u:"-"===h||"("===h?"":h)+f,w=("s"===m?Qs[8+Ws/3]:"")+w+(E&&"("===h?")":""),k)for(i=-1,a=t.length;++i(c=t.charCodeAt(i))||c>57){w=(46===c?o+t.slice(i+1):t.slice(i))+w,t=t.slice(0,i);break}}g&&!d&&(t=r(t,1/0));var T=f.length+t.length+w.length,C=T>1)+f+t+w+C.slice(T);break;default:t=C+f+t+w}return s(t)}return y=void 0===y?6:/[gprs]/.test(m)?Math.max(1,Math.min(21,y)):Math.max(0,Math.min(20,y)),w.toString=function(){return t+""},w}return{format:h,formatPrefix:function(t,e){var n=h(((t=Us(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor(Ys(e)/3))),i=Math.pow(10,-r),a=Qs[8+r/3];return function(t){return n(i*t)+a}}}};function tc(t){return Vs=Ks(t),Hs=Vs.format,Gs=Vs.formatPrefix,Vs}tc({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"});var ec=function(t){return Math.max(0,-Ys(Math.abs(t)))},nc=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Ys(e)/3)))-Ys(Math.abs(t)))},rc=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,Ys(e)-Ys(t))+1},ic=function(){return new ac};function ac(){this.reset()}ac.prototype={constructor:ac,reset:function(){this.s=this.t=0},add:function(t){sc(oc,t,this.t),sc(this,oc.s,this.s),this.s?this.t+=oc.t:this.s=oc.t},valueOf:function(){return this.s}};var oc=new ac;function sc(t,e,n){var r=t.s=e+n,i=r-e,a=r-i;t.t=e-a+(n-i)}var cc=Math.PI,uc=cc/2,lc=cc/4,hc=2*cc,fc=180/cc,dc=cc/180,pc=Math.abs,gc=Math.atan,yc=Math.atan2,vc=Math.cos,mc=Math.ceil,bc=Math.exp,xc=(Math.floor,Math.log),_c=Math.pow,kc=Math.sin,wc=Math.sign||function(t){return t>0?1:t<0?-1:0},Ec=Math.sqrt,Tc=Math.tan;function Cc(t){return t>1?0:t<-1?cc:Math.acos(t)}function Ac(t){return t>1?uc:t<-1?-uc:Math.asin(t)}function Sc(t){return(t=kc(t/2))*t}function Mc(){}function Oc(t,e){t&&Nc.hasOwnProperty(t.type)&&Nc[t.type](t,e)}var Dc={Feature:function(t,e){Oc(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r=0?1:-1,i=r*n,a=vc(e=(e*=dc)/2+lc),o=kc(e),s=Rc*o,c=jc*a+s*vc(i),u=s*r*kc(i);zc.add(yc(u,c)),Ic=t,jc=a,Rc=o}var qc=function(t){return Uc.reset(),Yc(t,$c),2*Uc};function Xc(t){return[yc(t[1],t[0]),Ac(t[2])]}function Zc(t){var e=t[0],n=t[1],r=vc(n);return[r*vc(e),r*kc(e),kc(n)]}function Jc(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function Qc(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function Kc(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function tu(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function eu(t){var e=Ec(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}var nu,ru,iu,au,ou,su,cu,uu,lu,hu,fu=ic(),du={point:pu,lineStart:yu,lineEnd:vu,polygonStart:function(){du.point=mu,du.lineStart=bu,du.lineEnd=xu,fu.reset(),$c.polygonStart()},polygonEnd:function(){$c.polygonEnd(),du.point=pu,du.lineStart=yu,du.lineEnd=vu,zc<0?(nu=-(iu=180),ru=-(au=90)):fu>1e-6?au=90:fu<-1e-6&&(ru=-90),hu[0]=nu,hu[1]=iu},sphere:function(){nu=-(iu=180),ru=-(au=90)}};function pu(t,e){lu.push(hu=[nu=t,iu=t]),eau&&(au=e)}function gu(t,e){var n=Zc([t*dc,e*dc]);if(uu){var r=Qc(uu,n),i=Qc([r[1],-r[0],0],r);eu(i),i=Xc(i);var a,o=t-ou,s=o>0?1:-1,c=i[0]*fc*s,u=pc(o)>180;u^(s*ouau&&(au=a):u^(s*ou<(c=(c+360)%360-180)&&cau&&(au=e)),u?t_u(nu,iu)&&(iu=t):_u(t,iu)>_u(nu,iu)&&(nu=t):iu>=nu?(tiu&&(iu=t)):t>ou?_u(nu,t)>_u(nu,iu)&&(iu=t):_u(t,iu)>_u(nu,iu)&&(nu=t)}else lu.push(hu=[nu=t,iu=t]);eau&&(au=e),uu=n,ou=t}function yu(){du.point=gu}function vu(){hu[0]=nu,hu[1]=iu,du.point=pu,uu=null}function mu(t,e){if(uu){var n=t-ou;fu.add(pc(n)>180?n+(n>0?360:-360):n)}else su=t,cu=e;$c.point(t,e),gu(t,e)}function bu(){$c.lineStart()}function xu(){mu(su,cu),$c.lineEnd(),pc(fu)>1e-6&&(nu=-(iu=180)),hu[0]=nu,hu[1]=iu,uu=null}function _u(t,e){return(e-=t)<0?e+360:e}function ku(t,e){return t[0]-e[0]}function wu(t,e){return t[0]<=t[1]?t[0]<=e&&e<=t[1]:e_u(r[0],r[1])&&(r[1]=i[1]),_u(i[0],r[1])>_u(r[0],r[1])&&(r[0]=i[0])):a.push(r=i);for(o=-1/0,e=0,r=a[n=a.length-1];e<=n;r=i,++e)i=a[e],(s=_u(r[1],i[0]))>o&&(o=s,nu=i[0],iu=r[1])}return lu=hu=null,nu===1/0||ru===1/0?[[NaN,NaN],[NaN,NaN]]:[[nu,ru],[iu,au]]},zu={sphere:Mc,point:Uu,lineStart:Wu,lineEnd:Gu,polygonStart:function(){zu.lineStart=qu,zu.lineEnd=Xu},polygonEnd:function(){zu.lineStart=Wu,zu.lineEnd=Gu}};function Uu(t,e){t*=dc;var n=vc(e*=dc);$u(n*vc(t),n*kc(t),kc(e))}function $u(t,e,n){++Eu,Cu+=(t-Cu)/Eu,Au+=(e-Au)/Eu,Su+=(n-Su)/Eu}function Wu(){zu.point=Vu}function Vu(t,e){t*=dc;var n=vc(e*=dc);Iu=n*vc(t),ju=n*kc(t),Ru=kc(e),zu.point=Hu,$u(Iu,ju,Ru)}function Hu(t,e){t*=dc;var n=vc(e*=dc),r=n*vc(t),i=n*kc(t),a=kc(e),o=yc(Ec((o=ju*a-Ru*i)*o+(o=Ru*r-Iu*a)*o+(o=Iu*i-ju*r)*o),Iu*r+ju*i+Ru*a);Tu+=o,Mu+=o*(Iu+(Iu=r)),Ou+=o*(ju+(ju=i)),Du+=o*(Ru+(Ru=a)),$u(Iu,ju,Ru)}function Gu(){zu.point=Uu}function qu(){zu.point=Zu}function Xu(){Ju(Fu,Pu),zu.point=Uu}function Zu(t,e){Fu=t,Pu=e,t*=dc,e*=dc,zu.point=Ju;var n=vc(e);Iu=n*vc(t),ju=n*kc(t),Ru=kc(e),$u(Iu,ju,Ru)}function Ju(t,e){t*=dc;var n=vc(e*=dc),r=n*vc(t),i=n*kc(t),a=kc(e),o=ju*a-Ru*i,s=Ru*r-Iu*a,c=Iu*i-ju*r,u=Ec(o*o+s*s+c*c),l=Ac(u),h=u&&-l/u;Nu+=h*o,Bu+=h*s,Lu+=h*c,Tu+=l,Mu+=l*(Iu+(Iu=r)),Ou+=l*(ju+(ju=i)),Du+=l*(Ru+(Ru=a)),$u(Iu,ju,Ru)}var Qu=function(t){Eu=Tu=Cu=Au=Su=Mu=Ou=Du=Nu=Bu=Lu=0,Yc(t,zu);var e=Nu,n=Bu,r=Lu,i=e*e+n*n+r*r;return i<1e-12&&(e=Mu,n=Ou,r=Du,Tu<1e-6&&(e=Cu,n=Au,r=Su),(i=e*e+n*n+r*r)<1e-12)?[NaN,NaN]:[yc(n,e)*fc,Ac(r/Ec(i))*fc]},Ku=function(t){return function(){return t}},tl=function(t,e){function n(n,r){return n=t(n,r),e(n[0],n[1])}return t.invert&&e.invert&&(n.invert=function(n,r){return(n=e.invert(n,r))&&t.invert(n[0],n[1])}),n};function el(t,e){return[pc(t)>cc?t+Math.round(-t/hc)*hc:t,e]}function nl(t,e,n){return(t%=hc)?e||n?tl(il(t),al(e,n)):il(t):e||n?al(e,n):el}function rl(t){return function(e,n){return[(e+=t)>cc?e-hc:e<-cc?e+hc:e,n]}}function il(t){var e=rl(t);return e.invert=rl(-t),e}function al(t,e){var n=vc(t),r=kc(t),i=vc(e),a=kc(e);function o(t,e){var o=vc(e),s=vc(t)*o,c=kc(t)*o,u=kc(e),l=u*n+s*r;return[yc(c*i-l*a,s*n-u*r),Ac(l*i+c*a)]}return o.invert=function(t,e){var o=vc(e),s=vc(t)*o,c=kc(t)*o,u=kc(e),l=u*i-c*a;return[yc(c*i+u*a,s*n+l*r),Ac(l*n-s*r)]},o}el.invert=el;var ol=function(t){function e(e){return(e=t(e[0]*dc,e[1]*dc))[0]*=fc,e[1]*=fc,e}return t=nl(t[0]*dc,t[1]*dc,t.length>2?t[2]*dc:0),e.invert=function(e){return(e=t.invert(e[0]*dc,e[1]*dc))[0]*=fc,e[1]*=fc,e},e};function sl(t,e,n,r,i,a){if(n){var o=vc(e),s=kc(e),c=r*n;null==i?(i=e+r*hc,a=e-c/2):(i=cl(o,i),a=cl(o,a),(r>0?ia)&&(i+=r*hc));for(var u,l=i;r>0?l>a:l1&&e.push(e.pop().concat(e.shift()))},result:function(){var n=e;return e=[],t=null,n}}},hl=function(t,e){return pc(t[0]-e[0])<1e-6&&pc(t[1]-e[1])<1e-6};function fl(t,e,n,r){this.x=t,this.z=e,this.o=n,this.e=r,this.v=!1,this.n=this.p=null}var dl=function(t,e,n,r,i){var a,o,s=[],c=[];if(t.forEach((function(t){if(!((e=t.length-1)<=0)){var e,n,r=t[0],o=t[e];if(hl(r,o)){for(i.lineStart(),a=0;a=0;--a)i.point((l=u[a])[0],l[1]);else r(f.x,f.p.x,-1,i);f=f.p}u=(f=f.o).z,d=!d}while(!f.v);i.lineEnd()}}};function pl(t){if(e=t.length){for(var e,n,r=0,i=t[0];++r=0?1:-1,T=E*w,C=T>cc,A=g*_;if(gl.add(yc(A*E*kc(T),y*k+A*vc(T))),o+=C?w+E*hc:w,C^d>=n^b>=n){var S=Qc(Zc(f),Zc(m));eu(S);var M=Qc(a,S);eu(M);var O=(C^w>=0?-1:1)*Ac(M[2]);(r>O||r===O&&(S[0]||S[1]))&&(s+=C^w>=0?1:-1)}}return(o<-1e-6||o<1e-6&&gl<-1e-6)^1&s},ml=function(t,e,n,r){return function(i){var a,o,s,c=e(i),u=ll(),l=e(u),h=!1,f={point:d,lineStart:g,lineEnd:y,polygonStart:function(){f.point=v,f.lineStart=m,f.lineEnd=b,o=[],a=[]},polygonEnd:function(){f.point=d,f.lineStart=g,f.lineEnd=y,o=I(o);var t=vl(a,r);o.length?(h||(i.polygonStart(),h=!0),dl(o,xl,t,n,i)):t&&(h||(i.polygonStart(),h=!0),i.lineStart(),n(null,null,1,i),i.lineEnd()),h&&(i.polygonEnd(),h=!1),o=a=null},sphere:function(){i.polygonStart(),i.lineStart(),n(null,null,1,i),i.lineEnd(),i.polygonEnd()}};function d(e,n){t(e,n)&&i.point(e,n)}function p(t,e){c.point(t,e)}function g(){f.point=p,c.lineStart()}function y(){f.point=d,c.lineEnd()}function v(t,e){s.push([t,e]),l.point(t,e)}function m(){l.lineStart(),s=[]}function b(){v(s[0][0],s[0][1]),l.lineEnd();var t,e,n,r,c=l.clean(),f=u.result(),d=f.length;if(s.pop(),a.push(s),s=null,d)if(1&c){if((e=(n=f[0]).length-1)>0){for(h||(i.polygonStart(),h=!0),i.lineStart(),t=0;t1&&2&c&&f.push(f.pop().concat(f.shift())),o.push(f.filter(bl))}return f}};function bl(t){return t.length>1}function xl(t,e){return((t=t.x)[0]<0?t[1]-uc-1e-6:uc-t[1])-((e=e.x)[0]<0?e[1]-uc-1e-6:uc-e[1])}var _l=ml((function(){return!0}),(function(t){var e,n=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(a,o){var s=a>0?cc:-cc,c=pc(a-n);pc(c-cc)<1e-6?(t.point(n,r=(r+o)/2>0?uc:-uc),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(s,r),t.point(a,r),e=0):i!==s&&c>=cc&&(pc(n-i)<1e-6&&(n-=1e-6*i),pc(a-s)<1e-6&&(a-=1e-6*s),r=function(t,e,n,r){var i,a,o=kc(t-n);return pc(o)>1e-6?gc((kc(e)*(a=vc(r))*kc(n)-kc(r)*(i=vc(e))*kc(t))/(i*a*o)):(e+r)/2}(n,r,a,o),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(s,r),e=0),t.point(n=a,r=o),i=s},lineEnd:function(){t.lineEnd(),n=r=NaN},clean:function(){return 2-e}}}),(function(t,e,n,r){var i;if(null==t)i=n*uc,r.point(-cc,i),r.point(0,i),r.point(cc,i),r.point(cc,0),r.point(cc,-i),r.point(0,-i),r.point(-cc,-i),r.point(-cc,0),r.point(-cc,i);else if(pc(t[0]-e[0])>1e-6){var a=t[0]0,i=pc(e)>1e-6;function a(t,n){return vc(t)*vc(n)>e}function o(t,n,r){var i=[1,0,0],a=Qc(Zc(t),Zc(n)),o=Jc(a,a),s=a[0],c=o-s*s;if(!c)return!r&&t;var u=e*o/c,l=-e*s/c,h=Qc(i,a),f=tu(i,u);Kc(f,tu(a,l));var d=h,p=Jc(f,d),g=Jc(d,d),y=p*p-g*(Jc(f,f)-1);if(!(y<0)){var v=Ec(y),m=tu(d,(-p-v)/g);if(Kc(m,f),m=Xc(m),!r)return m;var b,x=t[0],_=n[0],k=t[1],w=n[1];_0^m[1]<(pc(m[0]-x)<1e-6?k:w):k<=m[1]&&m[1]<=w:E>cc^(x<=m[0]&&m[0]<=_)){var C=tu(d,(-p+v)/g);return Kc(C,f),[m,Xc(C)]}}}function s(e,n){var i=r?t:cc-t,a=0;return e<-i?a|=1:e>i&&(a|=2),n<-i?a|=4:n>i&&(a|=8),a}return ml(a,(function(t){var e,n,c,u,l;return{lineStart:function(){u=c=!1,l=1},point:function(h,f){var d,p=[h,f],g=a(h,f),y=r?g?0:s(h,f):g?s(h+(h<0?cc:-cc),f):0;if(!e&&(u=c=g)&&t.lineStart(),g!==c&&(!(d=o(e,p))||hl(e,d)||hl(p,d))&&(p[0]+=1e-6,p[1]+=1e-6,g=a(p[0],p[1])),g!==c)l=0,g?(t.lineStart(),d=o(p,e),t.point(d[0],d[1])):(d=o(e,p),t.point(d[0],d[1]),t.lineEnd()),e=d;else if(i&&e&&r^g){var v;y&n||!(v=o(p,e,!0))||(l=0,r?(t.lineStart(),t.point(v[0][0],v[0][1]),t.point(v[1][0],v[1][1]),t.lineEnd()):(t.point(v[1][0],v[1][1]),t.lineEnd(),t.lineStart(),t.point(v[0][0],v[0][1])))}!g||e&&hl(e,p)||t.point(p[0],p[1]),e=p,c=g,n=y},lineEnd:function(){c&&t.lineEnd(),e=null},clean:function(){return l|(u&&c)<<1}}}),(function(e,r,i,a){sl(a,t,n,i,e,r)}),r?[0,-t]:[-cc,t-cc])};function wl(t,e,n,r){function i(i,a){return t<=i&&i<=n&&e<=a&&a<=r}function a(i,a,s,u){var l=0,h=0;if(null==i||(l=o(i,s))!==(h=o(a,s))||c(i,a)<0^s>0)do{u.point(0===l||3===l?t:n,l>1?r:e)}while((l=(l+s+4)%4)!==h);else u.point(a[0],a[1])}function o(r,i){return pc(r[0]-t)<1e-6?i>0?0:3:pc(r[0]-n)<1e-6?i>0?2:1:pc(r[1]-e)<1e-6?i>0?1:0:i>0?3:2}function s(t,e){return c(t.x,e.x)}function c(t,e){var n=o(t,1),r=o(e,1);return n!==r?n-r:0===n?e[1]-t[1]:1===n?t[0]-e[0]:2===n?t[1]-e[1]:e[0]-t[0]}return function(o){var c,u,l,h,f,d,p,g,y,v,m,b=o,x=ll(),_={point:k,lineStart:function(){_.point=w,u&&u.push(l=[]),v=!0,y=!1,p=g=NaN},lineEnd:function(){c&&(w(h,f),d&&y&&x.rejoin(),c.push(x.result())),_.point=k,y&&b.lineEnd()},polygonStart:function(){b=x,c=[],u=[],m=!0},polygonEnd:function(){var e=function(){for(var e=0,n=0,i=u.length;nr&&(f-a)*(r-o)>(d-o)*(t-a)&&++e:d<=r&&(f-a)*(r-o)<(d-o)*(t-a)&&--e;return e}(),n=m&&e,i=(c=I(c)).length;(n||i)&&(o.polygonStart(),n&&(o.lineStart(),a(null,null,1,o),o.lineEnd()),i&&dl(c,s,e,a,o),o.polygonEnd()),b=o,c=u=l=null}};function k(t,e){i(t,e)&&b.point(t,e)}function w(a,o){var s=i(a,o);if(u&&l.push([a,o]),v)h=a,f=o,d=s,v=!1,s&&(b.lineStart(),b.point(a,o));else if(s&&y)b.point(a,o);else{var c=[p=Math.max(-1e9,Math.min(1e9,p)),g=Math.max(-1e9,Math.min(1e9,g))],x=[a=Math.max(-1e9,Math.min(1e9,a)),o=Math.max(-1e9,Math.min(1e9,o))];!function(t,e,n,r,i,a){var o,s=t[0],c=t[1],u=0,l=1,h=e[0]-s,f=e[1]-c;if(o=n-s,h||!(o>0)){if(o/=h,h<0){if(o0){if(o>l)return;o>u&&(u=o)}if(o=i-s,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>u&&(u=o)}else if(h>0){if(o0)){if(o/=f,f<0){if(o0){if(o>l)return;o>u&&(u=o)}if(o=a-c,f||!(o<0)){if(o/=f,f<0){if(o>l)return;o>u&&(u=o)}else if(f>0){if(o0&&(t[0]=s+u*h,t[1]=c+u*f),l<1&&(e[0]=s+l*h,e[1]=c+l*f),!0}}}}}(c,x,t,e,n,r)?s&&(b.lineStart(),b.point(a,o),m=!1):(y||(b.lineStart(),b.point(c[0],c[1])),b.point(x[0],x[1]),s||b.lineEnd(),m=!1)}p=a,g=o,y=s}return _}}var El,Tl,Cl,Al=function(){var t,e,n,r=0,i=0,a=960,o=500;return n={stream:function(n){return t&&e===n?t:t=wl(r,i,a,o)(e=n)},extent:function(s){return arguments.length?(r=+s[0][0],i=+s[0][1],a=+s[1][0],o=+s[1][1],t=e=null,n):[[r,i],[a,o]]}}},Sl=ic(),Ml={sphere:Mc,point:Mc,lineStart:function(){Ml.point=Dl,Ml.lineEnd=Ol},lineEnd:Mc,polygonStart:Mc,polygonEnd:Mc};function Ol(){Ml.point=Ml.lineEnd=Mc}function Dl(t,e){El=t*=dc,Tl=kc(e*=dc),Cl=vc(e),Ml.point=Nl}function Nl(t,e){t*=dc;var n=kc(e*=dc),r=vc(e),i=pc(t-El),a=vc(i),o=r*kc(i),s=Cl*n-Tl*r*a,c=Tl*n+Cl*r*a;Sl.add(yc(Ec(o*o+s*s),c)),El=t,Tl=n,Cl=r}var Bl=function(t){return Sl.reset(),Yc(t,Ml),+Sl},Ll=[null,null],Fl={type:"LineString",coordinates:Ll},Pl=function(t,e){return Ll[0]=t,Ll[1]=e,Bl(Fl)},Il={Feature:function(t,e){return Rl(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r0&&(i=Pl(t[a],t[a-1]))>0&&n<=i&&r<=i&&(n+r-i)*(1-Math.pow((n-r)/i,2))<1e-12*i)return!0;n=r}return!1}function Ul(t,e){return!!vl(t.map($l),Wl(e))}function $l(t){return(t=t.map(Wl)).pop(),t}function Wl(t){return[t[0]*dc,t[1]*dc]}var Vl=function(t,e){return(t&&Il.hasOwnProperty(t.type)?Il[t.type]:Rl)(t,e)};function Hl(t,e,n){var r=k(t,e-1e-6,n).concat(e);return function(t){return r.map((function(e){return[t,e]}))}}function Gl(t,e,n){var r=k(t,e-1e-6,n).concat(e);return function(t){return r.map((function(e){return[e,t]}))}}function ql(){var t,e,n,r,i,a,o,s,c,u,l,h,f=10,d=f,p=90,g=360,y=2.5;function v(){return{type:"MultiLineString",coordinates:m()}}function m(){return k(mc(r/p)*p,n,p).map(l).concat(k(mc(s/g)*g,o,g).map(h)).concat(k(mc(e/f)*f,t,f).filter((function(t){return pc(t%p)>1e-6})).map(c)).concat(k(mc(a/d)*d,i,d).filter((function(t){return pc(t%g)>1e-6})).map(u))}return v.lines=function(){return m().map((function(t){return{type:"LineString",coordinates:t}}))},v.outline=function(){return{type:"Polygon",coordinates:[l(r).concat(h(o).slice(1),l(n).reverse().slice(1),h(s).reverse().slice(1))]}},v.extent=function(t){return arguments.length?v.extentMajor(t).extentMinor(t):v.extentMinor()},v.extentMajor=function(t){return arguments.length?(r=+t[0][0],n=+t[1][0],s=+t[0][1],o=+t[1][1],r>n&&(t=r,r=n,n=t),s>o&&(t=s,s=o,o=t),v.precision(y)):[[r,s],[n,o]]},v.extentMinor=function(n){return arguments.length?(e=+n[0][0],t=+n[1][0],a=+n[0][1],i=+n[1][1],e>t&&(n=e,e=t,t=n),a>i&&(n=a,a=i,i=n),v.precision(y)):[[e,a],[t,i]]},v.step=function(t){return arguments.length?v.stepMajor(t).stepMinor(t):v.stepMinor()},v.stepMajor=function(t){return arguments.length?(p=+t[0],g=+t[1],v):[p,g]},v.stepMinor=function(t){return arguments.length?(f=+t[0],d=+t[1],v):[f,d]},v.precision=function(f){return arguments.length?(y=+f,c=Hl(a,i,90),u=Gl(e,t,y),l=Hl(s,o,90),h=Gl(r,n,y),v):y},v.extentMajor([[-180,-89.999999],[180,89.999999]]).extentMinor([[-180,-80.000001],[180,80.000001]])}function Xl(){return ql()()}var Zl,Jl,Ql,Kl,th=function(t,e){var n=t[0]*dc,r=t[1]*dc,i=e[0]*dc,a=e[1]*dc,o=vc(r),s=kc(r),c=vc(a),u=kc(a),l=o*vc(n),h=o*kc(n),f=c*vc(i),d=c*kc(i),p=2*Ac(Ec(Sc(a-r)+o*c*Sc(i-n))),g=kc(p),y=p?function(t){var e=kc(t*=p)/g,n=kc(p-t)/g,r=n*l+e*f,i=n*h+e*d,a=n*s+e*u;return[yc(i,r)*fc,yc(a,Ec(r*r+i*i))*fc]}:function(){return[n*fc,r*fc]};return y.distance=p,y},eh=function(t){return t},nh=ic(),rh=ic(),ih={point:Mc,lineStart:Mc,lineEnd:Mc,polygonStart:function(){ih.lineStart=ah,ih.lineEnd=ch},polygonEnd:function(){ih.lineStart=ih.lineEnd=ih.point=Mc,nh.add(pc(rh)),rh.reset()},result:function(){var t=nh/2;return nh.reset(),t}};function ah(){ih.point=oh}function oh(t,e){ih.point=sh,Zl=Ql=t,Jl=Kl=e}function sh(t,e){rh.add(Kl*t-Ql*e),Ql=t,Kl=e}function ch(){sh(Zl,Jl)}var uh,lh,hh,fh,dh=ih,ph=1/0,gh=ph,yh=-ph,vh=yh,mh={point:function(t,e){tyh&&(yh=t),evh&&(vh=e)},lineStart:Mc,lineEnd:Mc,polygonStart:Mc,polygonEnd:Mc,result:function(){var t=[[ph,gh],[yh,vh]];return yh=vh=-(gh=ph=1/0),t}},bh=0,xh=0,_h=0,kh=0,wh=0,Eh=0,Th=0,Ch=0,Ah=0,Sh={point:Mh,lineStart:Oh,lineEnd:Bh,polygonStart:function(){Sh.lineStart=Lh,Sh.lineEnd=Fh},polygonEnd:function(){Sh.point=Mh,Sh.lineStart=Oh,Sh.lineEnd=Bh},result:function(){var t=Ah?[Th/Ah,Ch/Ah]:Eh?[kh/Eh,wh/Eh]:_h?[bh/_h,xh/_h]:[NaN,NaN];return bh=xh=_h=kh=wh=Eh=Th=Ch=Ah=0,t}};function Mh(t,e){bh+=t,xh+=e,++_h}function Oh(){Sh.point=Dh}function Dh(t,e){Sh.point=Nh,Mh(hh=t,fh=e)}function Nh(t,e){var n=t-hh,r=e-fh,i=Ec(n*n+r*r);kh+=i*(hh+t)/2,wh+=i*(fh+e)/2,Eh+=i,Mh(hh=t,fh=e)}function Bh(){Sh.point=Mh}function Lh(){Sh.point=Ph}function Fh(){Ih(uh,lh)}function Ph(t,e){Sh.point=Ih,Mh(uh=hh=t,lh=fh=e)}function Ih(t,e){var n=t-hh,r=e-fh,i=Ec(n*n+r*r);kh+=i*(hh+t)/2,wh+=i*(fh+e)/2,Eh+=i,Th+=(i=fh*t-hh*e)*(hh+t),Ch+=i*(fh+e),Ah+=3*i,Mh(hh=t,fh=e)}var jh=Sh;function Rh(t){this._context=t}Rh.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._context.moveTo(t,e),this._point=1;break;case 1:this._context.lineTo(t,e);break;default:this._context.moveTo(t+this._radius,e),this._context.arc(t,e,this._radius,0,hc)}},result:Mc};var Yh,zh,Uh,$h,Wh,Vh=ic(),Hh={point:Mc,lineStart:function(){Hh.point=Gh},lineEnd:function(){Yh&&qh(zh,Uh),Hh.point=Mc},polygonStart:function(){Yh=!0},polygonEnd:function(){Yh=null},result:function(){var t=+Vh;return Vh.reset(),t}};function Gh(t,e){Hh.point=qh,zh=$h=t,Uh=Wh=e}function qh(t,e){$h-=t,Wh-=e,Vh.add(Ec($h*$h+Wh*Wh)),$h=t,Wh=e}var Xh=Hh;function Zh(){this._string=[]}function Jh(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}Zh.prototype={_radius:4.5,_circle:Jh(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._string.push("M",t,",",e),this._point=1;break;case 1:this._string.push("L",t,",",e);break;default:null==this._circle&&(this._circle=Jh(this._radius)),this._string.push("M",t,",",e,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}};var Qh=function(t,e){var n,r,i=4.5;function a(t){return t&&("function"==typeof i&&r.pointRadius(+i.apply(this,arguments)),Yc(t,n(r))),r.result()}return a.area=function(t){return Yc(t,n(dh)),dh.result()},a.measure=function(t){return Yc(t,n(Xh)),Xh.result()},a.bounds=function(t){return Yc(t,n(mh)),mh.result()},a.centroid=function(t){return Yc(t,n(jh)),jh.result()},a.projection=function(e){return arguments.length?(n=null==e?(t=null,eh):(t=e).stream,a):t},a.context=function(t){return arguments.length?(r=null==t?(e=null,new Zh):new Rh(e=t),"function"!=typeof i&&r.pointRadius(i),a):e},a.pointRadius=function(t){return arguments.length?(i="function"==typeof t?t:(r.pointRadius(+t),+t),a):i},a.projection(t).context(e)},Kh=function(t){return{stream:tf(t)}};function tf(t){return function(e){var n=new ef;for(var r in t)n[r]=t[r];return n.stream=e,n}}function ef(){}function nf(t,e,n){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),Yc(n,t.stream(mh)),e(mh.result()),null!=r&&t.clipExtent(r),t}function rf(t,e,n){return nf(t,(function(n){var r=e[1][0]-e[0][0],i=e[1][1]-e[0][1],a=Math.min(r/(n[1][0]-n[0][0]),i/(n[1][1]-n[0][1])),o=+e[0][0]+(r-a*(n[1][0]+n[0][0]))/2,s=+e[0][1]+(i-a*(n[1][1]+n[0][1]))/2;t.scale(150*a).translate([o,s])}),n)}function af(t,e,n){return rf(t,[[0,0],e],n)}function of(t,e,n){return nf(t,(function(n){var r=+e,i=r/(n[1][0]-n[0][0]),a=(r-i*(n[1][0]+n[0][0]))/2,o=-i*n[0][1];t.scale(150*i).translate([a,o])}),n)}function sf(t,e,n){return nf(t,(function(n){var r=+e,i=r/(n[1][1]-n[0][1]),a=-i*n[0][0],o=(r-i*(n[1][1]+n[0][1]))/2;t.scale(150*i).translate([a,o])}),n)}ef.prototype={constructor:ef,point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var cf=vc(30*dc),uf=function(t,e){return+e?function(t,e){function n(r,i,a,o,s,c,u,l,h,f,d,p,g,y){var v=u-r,m=l-i,b=v*v+m*m;if(b>4*e&&g--){var x=o+f,_=s+d,k=c+p,w=Ec(x*x+_*_+k*k),E=Ac(k/=w),T=pc(pc(k)-1)<1e-6||pc(a-h)<1e-6?(a+h)/2:yc(_,x),C=t(T,E),A=C[0],S=C[1],M=A-r,O=S-i,D=m*M-v*O;(D*D/b>e||pc((v*M+m*O)/b-.5)>.3||o*f+s*d+c*p2?t[2]%360*dc:0,A()):[y*fc,v*fc,m*fc]},T.angle=function(t){return arguments.length?(b=t%360*dc,A()):b*fc},T.precision=function(t){return arguments.length?(o=uf(s,E=t*t),S()):Ec(E)},T.fitExtent=function(t,e){return rf(T,t,e)},T.fitSize=function(t,e){return af(T,t,e)},T.fitWidth=function(t,e){return of(T,t,e)},T.fitHeight=function(t,e){return sf(T,t,e)},function(){return e=t.apply(this,arguments),T.invert=e.invert&&C,A()}}function gf(t){var e=0,n=cc/3,r=pf(t),i=r(e,n);return i.parallels=function(t){return arguments.length?r(e=t[0]*dc,n=t[1]*dc):[e*fc,n*fc]},i}function yf(t,e){var n=kc(t),r=(n+kc(e))/2;if(pc(r)<1e-6)return function(t){var e=vc(t);function n(t,n){return[t*e,kc(n)/e]}return n.invert=function(t,n){return[t/e,Ac(n*e)]},n}(t);var i=1+n*(2*r-n),a=Ec(i)/r;function o(t,e){var n=Ec(i-2*r*kc(e))/r;return[n*kc(t*=r),a-n*vc(t)]}return o.invert=function(t,e){var n=a-e;return[yc(t,pc(n))/r*wc(n),Ac((i-(t*t+n*n)*r*r)/(2*r))]},o}var vf=function(){return gf(yf).scale(155.424).center([0,33.6442])},mf=function(){return vf().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])},bf=function(){var t,e,n,r,i,a,o=mf(),s=vf().rotate([154,0]).center([-2,58.5]).parallels([55,65]),c=vf().rotate([157,0]).center([-3,19.9]).parallels([8,18]),u={point:function(t,e){a=[t,e]}};function l(t){var e=t[0],o=t[1];return a=null,n.point(e,o),a||(r.point(e,o),a)||(i.point(e,o),a)}function h(){return t=e=null,l}return l.invert=function(t){var e=o.scale(),n=o.translate(),r=(t[0]-n[0])/e,i=(t[1]-n[1])/e;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?s:i>=.166&&i<.234&&r>=-.214&&r<-.115?c:o).invert(t)},l.stream=function(n){return t&&e===n?t:(r=[o.stream(e=n),s.stream(n),c.stream(n)],i=r.length,t={point:function(t,e){for(var n=-1;++n0?e<1e-6-uc&&(e=1e-6-uc):e>uc-1e-6&&(e=uc-1e-6);var n=i/_c(Mf(e),r);return[n*kc(r*t),i-n*vc(r*t)]}return a.invert=function(t,e){var n=i-e,a=wc(r)*Ec(t*t+n*n);return[yc(t,pc(n))/r*wc(n),2*gc(_c(i/a,1/r))-uc]},a}var Df=function(){return gf(Of).scale(109.5).parallels([30,30])};function Nf(t,e){return[t,e]}Nf.invert=Nf;var Bf=function(){return df(Nf).scale(152.63)};function Lf(t,e){var n=vc(t),r=t===e?kc(t):(n-vc(e))/(e-t),i=n/r+t;if(pc(r)<1e-6)return Nf;function a(t,e){var n=i-e,a=r*t;return[n*kc(a),i-n*vc(a)]}return a.invert=function(t,e){var n=i-e;return[yc(t,pc(n))/r*wc(n),i-wc(r)*Ec(t*t+n*n)]},a}var Ff=function(){return gf(Lf).scale(131.154).center([0,13.9389])},Pf=1.340264,If=-.081106,jf=893e-6,Rf=.003796,Yf=Ec(3)/2;function zf(t,e){var n=Ac(Yf*kc(e)),r=n*n,i=r*r*r;return[t*vc(n)/(Yf*(Pf+3*If*r+i*(7*jf+9*Rf*r))),n*(Pf+If*r+i*(jf+Rf*r))]}zf.invert=function(t,e){for(var n,r=e,i=r*r,a=i*i*i,o=0;o<12&&(a=(i=(r-=n=(r*(Pf+If*i+a*(jf+Rf*i))-e)/(Pf+3*If*i+a*(7*jf+9*Rf*i)))*r)*i*i,!(pc(n)<1e-12));++o);return[Yf*t*(Pf+3*If*i+a*(7*jf+9*Rf*i))/vc(r),Ac(kc(r)/Yf)]};var Uf=function(){return df(zf).scale(177.158)};function $f(t,e){var n=vc(e),r=vc(t)*n;return[n*kc(t)/r,kc(e)/r]}$f.invert=_f(gc);var Wf=function(){return df($f).scale(144.049).clipAngle(60)};function Vf(t,e,n,r){return 1===t&&1===e&&0===n&&0===r?eh:tf({point:function(i,a){this.stream.point(i*t+n,a*e+r)}})}var Hf=function(){var t,e,n,r,i,a,o=1,s=0,c=0,u=1,l=1,h=eh,f=null,d=eh;function p(){return r=i=null,a}return a={stream:function(t){return r&&i===t?r:r=h(d(i=t))},postclip:function(r){return arguments.length?(d=r,f=t=e=n=null,p()):d},clipExtent:function(r){return arguments.length?(d=null==r?(f=t=e=n=null,eh):wl(f=+r[0][0],t=+r[0][1],e=+r[1][0],n=+r[1][1]),p()):null==f?null:[[f,t],[e,n]]},scale:function(t){return arguments.length?(h=Vf((o=+t)*u,o*l,s,c),p()):o},translate:function(t){return arguments.length?(h=Vf(o*u,o*l,s=+t[0],c=+t[1]),p()):[s,c]},reflectX:function(t){return arguments.length?(h=Vf(o*(u=t?-1:1),o*l,s,c),p()):u<0},reflectY:function(t){return arguments.length?(h=Vf(o*u,o*(l=t?-1:1),s,c),p()):l<0},fitExtent:function(t,e){return rf(a,t,e)},fitSize:function(t,e){return af(a,t,e)},fitWidth:function(t,e){return of(a,t,e)},fitHeight:function(t,e){return sf(a,t,e)}}};function Gf(t,e){var n=e*e,r=n*n;return[t*(.8707-.131979*n+r*(r*(.003971*n-.001529*r)-.013791)),e*(1.007226+n*(.015085+r*(.028874*n-.044475-.005916*r)))]}Gf.invert=function(t,e){var n,r=e,i=25;do{var a=r*r,o=a*a;r-=n=(r*(1.007226+a*(.015085+o*(.028874*a-.044475-.005916*o)))-e)/(1.007226+a*(.045255+o*(.259866*a-.311325-.005916*11*o)))}while(pc(n)>1e-6&&--i>0);return[t/(.8707+(a=r*r)*(a*(a*a*a*(.003971-.001529*a)-.013791)-.131979)),r]};var qf=function(){return df(Gf).scale(175.295)};function Xf(t,e){return[vc(e)*kc(t),kc(e)]}Xf.invert=_f(Ac);var Zf=function(){return df(Xf).scale(249.5).clipAngle(90.000001)};function Jf(t,e){var n=vc(e),r=1+vc(t)*n;return[n*kc(t)/r,kc(e)/r]}Jf.invert=_f((function(t){return 2*gc(t)}));var Qf=function(){return df(Jf).scale(250).clipAngle(142)};function Kf(t,e){return[xc(Tc((uc+e)/2)),-t]}Kf.invert=function(t,e){return[-e,2*gc(bc(t))-uc]};var td=function(){var t=Sf(Kf),e=t.center,n=t.rotate;return t.center=function(t){return arguments.length?e([-t[1],t[0]]):[(t=e())[1],-t[0]]},t.rotate=function(t){return arguments.length?n([t[0],t[1],t.length>2?t[2]+90:90]):[(t=n())[0],t[1],t[2]-90]},n([0,0,90]).scale(159.155)};function ed(t,e){return t.parent===e.parent?1:2}function nd(t,e){return t+e.x}function rd(t,e){return Math.max(t,e.y)}var id=function(){var t=ed,e=1,n=1,r=!1;function i(i){var a,o=0;i.eachAfter((function(e){var n=e.children;n?(e.x=function(t){return t.reduce(nd,0)/t.length}(n),e.y=function(t){return 1+t.reduce(rd,0)}(n)):(e.x=a?o+=t(e,a):0,e.y=0,a=e)}));var s=function(t){for(var e;e=t.children;)t=e[0];return t}(i),c=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(i),u=s.x-t(s,c)/2,l=c.x+t(c,s)/2;return i.eachAfter(r?function(t){t.x=(t.x-i.x)*e,t.y=(i.y-t.y)*n}:function(t){t.x=(t.x-u)/(l-u)*e,t.y=(1-(i.y?t.y/i.y:1))*n})}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(r=!1,e=+t[0],n=+t[1],i):r?null:[e,n]},i.nodeSize=function(t){return arguments.length?(r=!0,e=+t[0],n=+t[1],i):r?[e,n]:null},i};function ad(t){var e=0,n=t.children,r=n&&n.length;if(r)for(;--r>=0;)e+=n[r].value;else e=1;t.value=e}function od(t,e){var n,r,i,a,o,s=new ld(t),c=+t.value&&(s.value=t.value),u=[s];for(null==e&&(e=sd);n=u.pop();)if(c&&(n.value=+n.data.value),(i=e(n.data))&&(o=i.length))for(n.children=new Array(o),a=o-1;a>=0;--a)u.push(r=n.children[a]=new ld(i[a])),r.parent=n,r.depth=n.depth+1;return s.eachBefore(ud)}function sd(t){return t.children}function cd(t){t.data=t.data.data}function ud(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function ld(t){this.data=t,this.depth=this.height=0,this.parent=null}ld.prototype=od.prototype={constructor:ld,count:function(){return this.eachAfter(ad)},each:function(t){var e,n,r,i,a=this,o=[a];do{for(e=o.reverse(),o=[];a=e.pop();)if(t(a),n=a.children)for(r=0,i=n.length;r=0;--n)i.push(e[n]);return this},sum:function(t){return this.eachAfter((function(e){for(var n=+t(e.data)||0,r=e.children,i=r&&r.length;--i>=0;)n+=r[i].value;e.value=n}))},sort:function(t){return this.eachBefore((function(e){e.children&&e.children.sort(t)}))},path:function(t){for(var e=this,n=function(t,e){if(t===e)return t;var n=t.ancestors(),r=e.ancestors(),i=null;for(t=n.pop(),e=r.pop();t===e;)i=t,t=n.pop(),e=r.pop();return i}(e,t),r=[e];e!==n;)e=e.parent,r.push(e);for(var i=r.length;t!==n;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each((function(e){t.push(e)})),t},leaves:function(){var t=[];return this.eachBefore((function(e){e.children||t.push(e)})),t},links:function(){var t=this,e=[];return t.each((function(n){n!==t&&e.push({source:n.parent,target:n})})),e},copy:function(){return od(this).eachBefore(cd)}};var hd=Array.prototype.slice,fd=function(t){for(var e,n,r=0,i=(t=function(t){for(var e,n,r=t.length;r;)n=Math.random()*r--|0,e=t[r],t[r]=t[n],t[n]=e;return t}(hd.call(t))).length,a=[];r0&&n*n>r*r+i*i}function yd(t,e){for(var n=0;n(o*=o)?(r=(u+o-i)/(2*u),a=Math.sqrt(Math.max(0,o/u-r*r)),n.x=t.x-r*s-a*c,n.y=t.y-r*c+a*s):(r=(u+i-o)/(2*u),a=Math.sqrt(Math.max(0,i/u-r*r)),n.x=e.x+r*s-a*c,n.y=e.y+r*c+a*s)):(n.x=e.x+n.r,n.y=e.y)}function _d(t,e){var n=t.r+e.r-1e-6,r=e.x-t.x,i=e.y-t.y;return n>0&&n*n>r*r+i*i}function kd(t){var e=t._,n=t.next._,r=e.r+n.r,i=(e.x*n.r+n.x*e.r)/r,a=(e.y*n.r+n.y*e.r)/r;return i*i+a*a}function wd(t){this._=t,this.next=null,this.previous=null}function Ed(t){if(!(i=t.length))return 0;var e,n,r,i,a,o,s,c,u,l,h;if((e=t[0]).x=0,e.y=0,!(i>1))return e.r;if(n=t[1],e.x=-n.r,n.x=e.r,n.y=0,!(i>2))return e.r+n.r;xd(n,e,r=t[2]),e=new wd(e),n=new wd(n),r=new wd(r),e.next=r.previous=n,n.next=e.previous=r,r.next=n.previous=e;t:for(s=3;s0)throw new Error("cycle");return a}return n.id=function(e){return arguments.length?(t=Ad(e),n):t},n.parentId=function(t){return arguments.length?(e=Ad(t),n):e},n};function $d(t,e){return t.parent===e.parent?1:2}function Wd(t){var e=t.children;return e?e[0]:t.t}function Vd(t){var e=t.children;return e?e[e.length-1]:t.t}function Hd(t,e,n){var r=n/(e.i-t.i);e.c-=r,e.s+=n,t.c+=r,e.z+=n,e.m+=n}function Gd(t,e,n){return t.a.parent===e.parent?t.a:n}function qd(t,e){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=e}qd.prototype=Object.create(ld.prototype);var Xd=function(){var t=$d,e=1,n=1,r=null;function i(i){var c=function(t){for(var e,n,r,i,a,o=new qd(t,0),s=[o];e=s.pop();)if(r=e._.children)for(e.children=new Array(a=r.length),i=a-1;i>=0;--i)s.push(n=e.children[i]=new qd(r[i],i)),n.parent=e;return(o.parent=new qd(null,0)).children=[o],o}(i);if(c.eachAfter(a),c.parent.m=-c.z,c.eachBefore(o),r)i.eachBefore(s);else{var u=i,l=i,h=i;i.eachBefore((function(t){t.xl.x&&(l=t),t.depth>h.depth&&(h=t)}));var f=u===l?1:t(u,l)/2,d=f-u.x,p=e/(l.x+f+d),g=n/(h.depth||1);i.eachBefore((function(t){t.x=(t.x+d)*p,t.y=t.depth*g}))}return i}function a(e){var n=e.children,r=e.parent.children,i=e.i?r[e.i-1]:null;if(n){!function(t){for(var e,n=0,r=0,i=t.children,a=i.length;--a>=0;)(e=i[a]).z+=n,e.m+=n,n+=e.s+(r+=e.c)}(e);var a=(n[0].z+n[n.length-1].z)/2;i?(e.z=i.z+t(e._,i._),e.m=e.z-a):e.z=a}else i&&(e.z=i.z+t(e._,i._));e.parent.A=function(e,n,r){if(n){for(var i,a=e,o=e,s=n,c=a.parent.children[0],u=a.m,l=o.m,h=s.m,f=c.m;s=Vd(s),a=Wd(a),s&&a;)c=Wd(c),(o=Vd(o)).a=e,(i=s.z+h-a.z-u+t(s._,a._))>0&&(Hd(Gd(s,e,r),e,i),u+=i,l+=i),h+=s.m,u+=a.m,f+=c.m,l+=o.m;s&&!Vd(o)&&(o.t=s,o.m+=h-l),a&&!Wd(c)&&(c.t=a,c.m+=u-f,r=e)}return r}(e,i,e.parent.A||r[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*n}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(r=!1,e=+t[0],n=+t[1],i):r?null:[e,n]},i.nodeSize=function(t){return arguments.length?(r=!0,e=+t[0],n=+t[1],i):r?[e,n]:null},i},Zd=function(t,e,n,r,i){for(var a,o=t.children,s=-1,c=o.length,u=t.value&&(i-n)/t.value;++sf&&(f=s),y=l*l*g,(d=Math.max(f/y,y/h))>p){l-=s;break}p=d}v.push(o={value:l,dice:c1?e:1)},n}(Jd),tp=function(){var t=Kd,e=!1,n=1,r=1,i=[0],a=Sd,o=Sd,s=Sd,c=Sd,u=Sd;function l(t){return t.x0=t.y0=0,t.x1=n,t.y1=r,t.eachBefore(h),i=[0],e&&t.eachBefore(Fd),t}function h(e){var n=i[e.depth],r=e.x0+n,l=e.y0+n,h=e.x1-n,f=e.y1-n;h=n-1){var l=s[e];return l.x0=i,l.y0=a,l.x1=o,void(l.y1=c)}for(var h=u[e],f=r/2+h,d=e+1,p=n-1;d>>1;u[g]c-a){var m=(i*v+o*y)/r;t(e,d,y,i,a,m,c),t(d,n,v,m,a,o,c)}else{var b=(a*v+c*y)/r;t(e,d,y,i,a,o,b),t(d,n,v,i,b,o,c)}}(0,c,t.value,e,n,r,i)},np=function(t,e,n,r,i){(1&t.depth?Zd:Pd)(t,e,n,r,i)},rp=function t(e){function n(t,n,r,i,a){if((o=t._squarify)&&o.ratio===e)for(var o,s,c,u,l,h=-1,f=o.length,d=t.value;++h1?e:1)},n}(Jd),ip=function(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}},ap=function(t,e){var n=un(+t,+e);return function(t){var e=n(t);return e-360*Math.floor(e/360)}},op=function(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}},sp=Math.SQRT2;function cp(t){return((t=Math.exp(t))+1/t)/2}var up=function(t,e){var n,r,i=t[0],a=t[1],o=t[2],s=e[0],c=e[1],u=e[2],l=s-i,h=c-a,f=l*l+h*h;if(f<1e-12)r=Math.log(u/o)/sp,n=function(t){return[i+t*l,a+t*h,o*Math.exp(sp*t*r)]};else{var d=Math.sqrt(f),p=(u*u-o*o+4*f)/(2*o*2*d),g=(u*u-o*o-4*f)/(2*u*2*d),y=Math.log(Math.sqrt(p*p+1)-p),v=Math.log(Math.sqrt(g*g+1)-g);r=(v-y)/sp,n=function(t){var e,n=t*r,s=cp(y),c=o/(2*d)*(s*(e=sp*n+y,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(y));return[i+c*l,a+c*h,o*s/cp(sp*n+y)]}}return n.duration=1e3*r,n};function lp(t){return function(e,n){var r=t((e=tn(e)).h,(n=tn(n)).h),i=ln(e.s,n.s),a=ln(e.l,n.l),o=ln(e.opacity,n.opacity);return function(t){return e.h=r(t),e.s=i(t),e.l=a(t),e.opacity=o(t),e+""}}}var hp=lp(un),fp=lp(ln);function dp(t,e){var n=ln((t=da(t)).l,(e=da(e)).l),r=ln(t.a,e.a),i=ln(t.b,e.b),a=ln(t.opacity,e.opacity);return function(e){return t.l=n(e),t.a=r(e),t.b=i(e),t.opacity=a(e),t+""}}function pp(t){return function(e,n){var r=t((e=_a(e)).h,(n=_a(n)).h),i=ln(e.c,n.c),a=ln(e.l,n.l),o=ln(e.opacity,n.opacity);return function(t){return e.h=r(t),e.c=i(t),e.l=a(t),e.opacity=o(t),e+""}}}var gp=pp(un),yp=pp(ln);function vp(t){return function e(n){function r(e,r){var i=t((e=Sa(e)).h,(r=Sa(r)).h),a=ln(e.s,r.s),o=ln(e.l,r.l),s=ln(e.opacity,r.opacity);return function(t){return e.h=i(t),e.s=a(t),e.l=o(Math.pow(t,n)),e.opacity=s(t),e+""}}return n=+n,r.gamma=e,r}(1)}var mp=vp(un),bp=vp(ln);function xp(t,e){for(var n=0,r=e.length-1,i=e[0],a=new Array(r<0?0:r);n1&&(e=t[a[o-2]],n=t[a[o-1]],r=t[s],(n[0]-e[0])*(r[1]-e[1])-(n[1]-e[1])*(r[0]-e[0])<=0);)--o;a[o++]=s}return a.slice(0,o)}var Cp=function(t){if((n=t.length)<3)return null;var e,n,r=new Array(n),i=new Array(n);for(e=0;e=0;--e)u.push(t[r[a[e]][2]]);for(e=+s;es!=u>s&&o<(c-n)*(s-r)/(u-r)+n&&(l=!l),c=n,u=r;return l},Sp=function(t){for(var e,n,r=-1,i=t.length,a=t[i-1],o=a[0],s=a[1],c=0;++r1);return t+n*a*Math.sqrt(-2*Math.log(i)/i)}}return n.source=t,n}(Mp),Np=function t(e){function n(){var t=Dp.source(e).apply(this,arguments);return function(){return Math.exp(t())}}return n.source=t,n}(Mp),Bp=function t(e){function n(t){return function(){for(var n=0,r=0;rr&&(e=n,n=r,r=e),function(t){return Math.max(n,Math.min(r,t))}}function Jp(t,e,n){var r=t[0],i=t[1],a=e[0],o=e[1];return i2?Qp:Jp,i=a=null,h}function h(e){return isNaN(e=+e)?n:(i||(i=r(o.map(t),s,c)))(t(u(e)))}return h.invert=function(n){return u(e((a||(a=r(s,o.map(t),kn)))(n)))},h.domain=function(t){return arguments.length?(o=Rp.call(t,Hp),u===qp||(u=Zp(o)),l()):o.slice()},h.range=function(t){return arguments.length?(s=Yp.call(t),l()):s.slice()},h.rangeRound=function(t){return s=Yp.call(t),c=op,l()},h.clamp=function(t){return arguments.length?(u=t?Zp(o):qp,h):u!==qp},h.interpolate=function(t){return arguments.length?(c=t,l()):c},h.unknown=function(t){return arguments.length?(n=t,h):n},function(n,r){return t=n,e=r,l()}}function eg(t,e){return tg()(t,e)}var ng=function(t,e,n,r){var i,a=S(t,e,n);switch((r=Us(null==r?",f":r)).type){case"s":var o=Math.max(Math.abs(t),Math.abs(e));return null!=r.precision||isNaN(i=nc(a,o))||(r.precision=i),Gs(r,o);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=rc(a,Math.max(Math.abs(t),Math.abs(e))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=ec(a))||(r.precision=i-2*("%"===r.type))}return Hs(r)};function rg(t){var e=t.domain;return t.ticks=function(t){var n=e();return C(n[0],n[n.length-1],null==t?10:t)},t.tickFormat=function(t,n){var r=e();return ng(r[0],r[r.length-1],null==t?10:t,n)},t.nice=function(n){null==n&&(n=10);var r,i=e(),a=0,o=i.length-1,s=i[a],c=i[o];return c0?r=A(s=Math.floor(s/r)*r,c=Math.ceil(c/r)*r,n):r<0&&(r=A(s=Math.ceil(s*r)/r,c=Math.floor(c*r)/r,n)),r>0?(i[a]=Math.floor(s/r)*r,i[o]=Math.ceil(c/r)*r,e(i)):r<0&&(i[a]=Math.ceil(s*r)/r,i[o]=Math.floor(c*r)/r,e(i)),t},t}function ig(){var t=eg(qp,qp);return t.copy=function(){return Kp(t,ig())},Pp.apply(t,arguments),rg(t)}function ag(t){var e;function n(t){return isNaN(t=+t)?e:t}return n.invert=n,n.domain=n.range=function(e){return arguments.length?(t=Rp.call(e,Hp),n):t.slice()},n.unknown=function(t){return arguments.length?(e=t,n):e},n.copy=function(){return ag(t).unknown(e)},t=arguments.length?Rp.call(t,Hp):[0,1],rg(n)}var og=function(t,e){var n,r=0,i=(t=t.slice()).length-1,a=t[r],o=t[i];return o0){for(;fc)break;g.push(h)}}else for(;f=1;--l)if(!((h=u*l)c)break;g.push(h)}}else g=C(f,d,Math.min(d-f,p)).map(n);return r?g.reverse():g},r.tickFormat=function(t,i){if(null==i&&(i=10===a?".0e":","),"function"!=typeof i&&(i=Hs(i)),t===1/0)return i;null==t&&(t=10);var o=Math.max(1,a*t/r.ticks().length);return function(t){var r=t/n(Math.round(e(t)));return r*a0?i[r-1]:e[0],r=r?[i[r-1],n]:[i[o-1],i[o]]},o.unknown=function(e){return arguments.length?(t=e,o):o},o.thresholds=function(){return i.slice()},o.copy=function(){return Cg().domain([e,n]).range(a).unknown(t)},Pp.apply(rg(o),arguments)}function Ag(){var t,e=[.5],n=[0,1],r=1;function i(i){return i<=i?n[c(e,i,0,r)]:t}return i.domain=function(t){return arguments.length?(e=Yp.call(t),r=Math.min(e.length,n.length-1),i):e.slice()},i.range=function(t){return arguments.length?(n=Yp.call(t),r=Math.min(e.length,n.length-1),i):n.slice()},i.invertExtent=function(t){var r=n.indexOf(t);return[e[r-1],e[r]]},i.unknown=function(e){return arguments.length?(t=e,i):t},i.copy=function(){return Ag().domain(e).range(n).unknown(t)},Pp.apply(i,arguments)}var Sg=new Date,Mg=new Date;function Og(t,e,n,r){function i(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return i.floor=function(e){return t(e=new Date(+e)),e},i.ceil=function(n){return t(n=new Date(n-1)),e(n,1),t(n),n},i.round=function(t){var e=i(t),n=i.ceil(t);return t-e0))return s;do{s.push(o=new Date(+n)),e(n,a),t(n)}while(o=e)for(;t(e),!n(e);)e.setTime(e-1)}),(function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;e(t,-1),!n(t););else for(;--r>=0;)for(;e(t,1),!n(t););}))},n&&(i.count=function(e,r){return Sg.setTime(+e),Mg.setTime(+r),t(Sg),t(Mg),Math.floor(n(Sg,Mg))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(e){return r(e)%t==0}:function(e){return i.count(0,e)%t==0}):i:null}),i}var Dg=Og((function(t){t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,e){t.setFullYear(t.getFullYear()+e)}),(function(t,e){return e.getFullYear()-t.getFullYear()}),(function(t){return t.getFullYear()}));Dg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Og((function(e){e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,n){e.setFullYear(e.getFullYear()+n*t)})):null};var Ng=Dg,Bg=Dg.range,Lg=Og((function(t){t.setDate(1),t.setHours(0,0,0,0)}),(function(t,e){t.setMonth(t.getMonth()+e)}),(function(t,e){return e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())}),(function(t){return t.getMonth()})),Fg=Lg,Pg=Lg.range;function Ig(t){return Og((function(e){e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+7*e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/6048e5}))}var jg=Ig(0),Rg=Ig(1),Yg=Ig(2),zg=Ig(3),Ug=Ig(4),$g=Ig(5),Wg=Ig(6),Vg=jg.range,Hg=Rg.range,Gg=Yg.range,qg=zg.range,Xg=Ug.range,Zg=$g.range,Jg=Wg.range,Qg=Og((function(t){t.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/864e5}),(function(t){return t.getDate()-1})),Kg=Qg,ty=Qg.range,ey=Og((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds()-6e4*t.getMinutes())}),(function(t,e){t.setTime(+t+36e5*e)}),(function(t,e){return(e-t)/36e5}),(function(t){return t.getHours()})),ny=ey,ry=ey.range,iy=Og((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds())}),(function(t,e){t.setTime(+t+6e4*e)}),(function(t,e){return(e-t)/6e4}),(function(t){return t.getMinutes()})),ay=iy,oy=iy.range,sy=Og((function(t){t.setTime(t-t.getMilliseconds())}),(function(t,e){t.setTime(+t+1e3*e)}),(function(t,e){return(e-t)/1e3}),(function(t){return t.getUTCSeconds()})),cy=sy,uy=sy.range,ly=Og((function(){}),(function(t,e){t.setTime(+t+e)}),(function(t,e){return e-t}));ly.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Og((function(e){e.setTime(Math.floor(e/t)*t)}),(function(e,n){e.setTime(+e+n*t)}),(function(e,n){return(n-e)/t})):ly:null};var hy=ly,fy=ly.range;function dy(t){return Og((function(e){e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+7*e)}),(function(t,e){return(e-t)/6048e5}))}var py=dy(0),gy=dy(1),yy=dy(2),vy=dy(3),my=dy(4),by=dy(5),xy=dy(6),_y=py.range,ky=gy.range,wy=yy.range,Ey=vy.range,Ty=my.range,Cy=by.range,Ay=xy.range,Sy=Og((function(t){t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+e)}),(function(t,e){return(e-t)/864e5}),(function(t){return t.getUTCDate()-1})),My=Sy,Oy=Sy.range,Dy=Og((function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCFullYear(t.getUTCFullYear()+e)}),(function(t,e){return e.getUTCFullYear()-t.getUTCFullYear()}),(function(t){return t.getUTCFullYear()}));Dy.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Og((function(e){e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,n){e.setUTCFullYear(e.getUTCFullYear()+n*t)})):null};var Ny=Dy,By=Dy.range;function Ly(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function Fy(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Py(t,e,n){return{y:t,m:e,d:n,H:0,M:0,S:0,L:0}}function Iy(t){var e=t.dateTime,n=t.date,r=t.time,i=t.periods,a=t.days,o=t.shortDays,s=t.months,c=t.shortMonths,u=Xy(i),l=Zy(i),h=Xy(a),f=Zy(a),d=Xy(o),p=Zy(o),g=Xy(s),y=Zy(s),v=Xy(c),m=Zy(c),b={a:function(t){return o[t.getDay()]},A:function(t){return a[t.getDay()]},b:function(t){return c[t.getMonth()]},B:function(t){return s[t.getMonth()]},c:null,d:vv,e:vv,f:kv,H:mv,I:bv,j:xv,L:_v,m:wv,M:Ev,p:function(t){return i[+(t.getHours()>=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:Qv,s:Kv,S:Tv,u:Cv,U:Av,V:Sv,w:Mv,W:Ov,x:null,X:null,y:Dv,Y:Nv,Z:Bv,"%":Jv},x={a:function(t){return o[t.getUTCDay()]},A:function(t){return a[t.getUTCDay()]},b:function(t){return c[t.getUTCMonth()]},B:function(t){return s[t.getUTCMonth()]},c:null,d:Lv,e:Lv,f:Rv,H:Fv,I:Pv,j:Iv,L:jv,m:Yv,M:zv,p:function(t){return i[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:Qv,s:Kv,S:Uv,u:$v,U:Wv,V:Vv,w:Hv,W:Gv,x:null,X:null,y:qv,Y:Xv,Z:Zv,"%":Jv},_={a:function(t,e,n){var r=d.exec(e.slice(n));return r?(t.w=p[r[0].toLowerCase()],n+r[0].length):-1},A:function(t,e,n){var r=h.exec(e.slice(n));return r?(t.w=f[r[0].toLowerCase()],n+r[0].length):-1},b:function(t,e,n){var r=v.exec(e.slice(n));return r?(t.m=m[r[0].toLowerCase()],n+r[0].length):-1},B:function(t,e,n){var r=g.exec(e.slice(n));return r?(t.m=y[r[0].toLowerCase()],n+r[0].length):-1},c:function(t,n,r){return E(t,e,n,r)},d:sv,e:sv,f:dv,H:uv,I:uv,j:cv,L:fv,m:ov,M:lv,p:function(t,e,n){var r=u.exec(e.slice(n));return r?(t.p=l[r[0].toLowerCase()],n+r[0].length):-1},q:av,Q:gv,s:yv,S:hv,u:Qy,U:Ky,V:tv,w:Jy,W:ev,x:function(t,e,r){return E(t,n,e,r)},X:function(t,e,n){return E(t,r,e,n)},y:rv,Y:nv,Z:iv,"%":pv};function k(t,e){return function(n){var r,i,a,o=[],s=-1,c=0,u=t.length;for(n instanceof Date||(n=new Date(+n));++s53)return null;"w"in a||(a.w=1),"Z"in a?(i=(r=Fy(Py(a.y,0,1))).getUTCDay(),r=i>4||0===i?gy.ceil(r):gy(r),r=My.offset(r,7*(a.V-1)),a.y=r.getUTCFullYear(),a.m=r.getUTCMonth(),a.d=r.getUTCDate()+(a.w+6)%7):(i=(r=Ly(Py(a.y,0,1))).getDay(),r=i>4||0===i?Rg.ceil(r):Rg(r),r=Kg.offset(r,7*(a.V-1)),a.y=r.getFullYear(),a.m=r.getMonth(),a.d=r.getDate()+(a.w+6)%7)}else("W"in a||"U"in a)&&("w"in a||(a.w="u"in a?a.u%7:"W"in a?1:0),i="Z"in a?Fy(Py(a.y,0,1)).getUTCDay():Ly(Py(a.y,0,1)).getDay(),a.m=0,a.d="W"in a?(a.w+6)%7+7*a.W-(i+5)%7:a.w+7*a.U-(i+6)%7);return"Z"in a?(a.H+=a.Z/100|0,a.M+=a.Z%100,Fy(a)):Ly(a)}}function E(t,e,n,r){for(var i,a,o=0,s=e.length,c=n.length;o=c)return-1;if(37===(i=e.charCodeAt(o++))){if(i=e.charAt(o++),!(a=_[i in $y?e.charAt(o++):i])||(r=a(t,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}return b.x=k(n,b),b.X=k(r,b),b.c=k(e,b),x.x=k(n,x),x.X=k(r,x),x.c=k(e,x),{format:function(t){var e=k(t+="",b);return e.toString=function(){return t},e},parse:function(t){var e=w(t+="",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=k(t+="",x);return e.toString=function(){return t},e},utcParse:function(t){var e=w(t+="",!0);return e.toString=function(){return t},e}}}var jy,Ry,Yy,zy,Uy,$y={"-":"",_:" ",0:"0"},Wy=/^\s*\d+/,Vy=/^%/,Hy=/[\\^$*+?|[\]().{}]/g;function Gy(t,e,n){var r=t<0?"-":"",i=(r?-t:t)+"",a=i.length;return r+(a68?1900:2e3),n+r[0].length):-1}function iv(t,e,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function av(t,e,n){var r=Wy.exec(e.slice(n,n+1));return r?(t.q=3*r[0]-3,n+r[0].length):-1}function ov(t,e,n){var r=Wy.exec(e.slice(n,n+2));return r?(t.m=r[0]-1,n+r[0].length):-1}function sv(t,e,n){var r=Wy.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function cv(t,e,n){var r=Wy.exec(e.slice(n,n+3));return r?(t.m=0,t.d=+r[0],n+r[0].length):-1}function uv(t,e,n){var r=Wy.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function lv(t,e,n){var r=Wy.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function hv(t,e,n){var r=Wy.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function fv(t,e,n){var r=Wy.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function dv(t,e,n){var r=Wy.exec(e.slice(n,n+6));return r?(t.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function pv(t,e,n){var r=Vy.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function gv(t,e,n){var r=Wy.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function yv(t,e,n){var r=Wy.exec(e.slice(n));return r?(t.s=+r[0],n+r[0].length):-1}function vv(t,e){return Gy(t.getDate(),e,2)}function mv(t,e){return Gy(t.getHours(),e,2)}function bv(t,e){return Gy(t.getHours()%12||12,e,2)}function xv(t,e){return Gy(1+Kg.count(Ng(t),t),e,3)}function _v(t,e){return Gy(t.getMilliseconds(),e,3)}function kv(t,e){return _v(t,e)+"000"}function wv(t,e){return Gy(t.getMonth()+1,e,2)}function Ev(t,e){return Gy(t.getMinutes(),e,2)}function Tv(t,e){return Gy(t.getSeconds(),e,2)}function Cv(t){var e=t.getDay();return 0===e?7:e}function Av(t,e){return Gy(jg.count(Ng(t)-1,t),e,2)}function Sv(t,e){var n=t.getDay();return t=n>=4||0===n?Ug(t):Ug.ceil(t),Gy(Ug.count(Ng(t),t)+(4===Ng(t).getDay()),e,2)}function Mv(t){return t.getDay()}function Ov(t,e){return Gy(Rg.count(Ng(t)-1,t),e,2)}function Dv(t,e){return Gy(t.getFullYear()%100,e,2)}function Nv(t,e){return Gy(t.getFullYear()%1e4,e,4)}function Bv(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+Gy(e/60|0,"0",2)+Gy(e%60,"0",2)}function Lv(t,e){return Gy(t.getUTCDate(),e,2)}function Fv(t,e){return Gy(t.getUTCHours(),e,2)}function Pv(t,e){return Gy(t.getUTCHours()%12||12,e,2)}function Iv(t,e){return Gy(1+My.count(Ny(t),t),e,3)}function jv(t,e){return Gy(t.getUTCMilliseconds(),e,3)}function Rv(t,e){return jv(t,e)+"000"}function Yv(t,e){return Gy(t.getUTCMonth()+1,e,2)}function zv(t,e){return Gy(t.getUTCMinutes(),e,2)}function Uv(t,e){return Gy(t.getUTCSeconds(),e,2)}function $v(t){var e=t.getUTCDay();return 0===e?7:e}function Wv(t,e){return Gy(py.count(Ny(t)-1,t),e,2)}function Vv(t,e){var n=t.getUTCDay();return t=n>=4||0===n?my(t):my.ceil(t),Gy(my.count(Ny(t),t)+(4===Ny(t).getUTCDay()),e,2)}function Hv(t){return t.getUTCDay()}function Gv(t,e){return Gy(gy.count(Ny(t)-1,t),e,2)}function qv(t,e){return Gy(t.getUTCFullYear()%100,e,2)}function Xv(t,e){return Gy(t.getUTCFullYear()%1e4,e,4)}function Zv(){return"+0000"}function Jv(){return"%"}function Qv(t){return+t}function Kv(t){return Math.floor(+t/1e3)}function tm(t){return jy=Iy(t),Ry=jy.format,Yy=jy.parse,zy=jy.utcFormat,Uy=jy.utcParse,jy}function em(t){return new Date(t)}function nm(t){return t instanceof Date?+t:+new Date(+t)}function rm(t,e,n,r,a,o,s,c,u){var l=eg(qp,qp),h=l.invert,f=l.domain,d=u(".%L"),p=u(":%S"),g=u("%I:%M"),y=u("%I %p"),v=u("%a %d"),m=u("%b %d"),b=u("%B"),x=u("%Y"),_=[[s,1,1e3],[s,5,5e3],[s,15,15e3],[s,30,3e4],[o,1,6e4],[o,5,3e5],[o,15,9e5],[o,30,18e5],[a,1,36e5],[a,3,108e5],[a,6,216e5],[a,12,432e5],[r,1,864e5],[r,2,1728e5],[n,1,6048e5],[e,1,2592e6],[e,3,7776e6],[t,1,31536e6]];function k(i){return(s(i)1)&&(t-=Math.floor(t));var e=Math.abs(t-.5);return Vb.h=360*t-100,Vb.s=1.5-1.5*e,Vb.l=.8-.9*e,Vb+""},Gb=Ge(),qb=Math.PI/3,Xb=2*Math.PI/3,Zb=function(t){var e;return t=(.5-t)*Math.PI,Gb.r=255*(e=Math.sin(t))*e,Gb.g=255*(e=Math.sin(t+qb))*e,Gb.b=255*(e=Math.sin(t+Xb))*e,Gb+""},Jb=function(t){return t=Math.max(0,Math.min(1,t)),"rgb("+Math.max(0,Math.min(255,Math.round(34.61+t*(1172.33-t*(10793.56-t*(33300.12-t*(38394.49-14825.05*t)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+t*(557.33+t*(1225.33-t*(3574.96-t*(1073.77+707.56*t)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+t*(3211.1-t*(15327.97-t*(27814-t*(22569.18-6838.66*t)))))))+")"};function Qb(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}var Kb=Qb(Mm("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),tx=Qb(Mm("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),ex=Qb(Mm("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),nx=Qb(Mm("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),rx=function(t){return ke(ne(t).call(document.documentElement))},ix=0;function ax(){return new ox}function ox(){this._="@"+(++ix).toString(36)}ox.prototype=ax.prototype={constructor:ox,get:function(t){for(var e=this._;!(e in t);)if(!(t=t.parentNode))return;return t[e]},set:function(t,e){return t[this._]=e},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}};var sx=function(t){return"string"==typeof t?new be([document.querySelectorAll(t)],[document.documentElement]):new be([null==t?[]:t],me)},cx=function(t,e){null==e&&(e=Sn().touches);for(var n=0,r=e?e.length:0,i=new Array(r);n1?0:t<-1?vx:Math.acos(t)}function _x(t){return t>=1?mx:t<=-1?-mx:Math.asin(t)}function kx(t){return t.innerRadius}function wx(t){return t.outerRadius}function Ex(t){return t.startAngle}function Tx(t){return t.endAngle}function Cx(t){return t&&t.padAngle}function Ax(t,e,n,r,i,a,o,s){var c=n-t,u=r-e,l=o-i,h=s-a,f=h*c-l*u;if(!(f*f<1e-12))return[t+(f=(l*(e-a)-h*(t-i))/f)*c,e+f*u]}function Sx(t,e,n,r,i,a,o){var s=t-n,c=e-r,u=(o?a:-a)/yx(s*s+c*c),l=u*c,h=-u*s,f=t+l,d=e+h,p=n+l,g=r+h,y=(f+p)/2,v=(d+g)/2,m=p-f,b=g-d,x=m*m+b*b,_=i-a,k=f*g-p*d,w=(b<0?-1:1)*yx(dx(0,_*_*x-k*k)),E=(k*b-m*w)/x,T=(-k*m-b*w)/x,C=(k*b+m*w)/x,A=(-k*m+b*w)/x,S=E-y,M=T-v,O=C-y,D=A-v;return S*S+M*M>O*O+D*D&&(E=C,T=A),{cx:E,cy:T,x01:-l,y01:-h,x11:E*(i/_-1),y11:T*(i/_-1)}}var Mx=function(){var t=kx,e=wx,n=ux(0),r=null,i=Ex,a=Tx,o=Cx,s=null;function c(){var c,u,l=+t.apply(this,arguments),h=+e.apply(this,arguments),f=i.apply(this,arguments)-mx,d=a.apply(this,arguments)-mx,p=lx(d-f),g=d>f;if(s||(s=c=zi()),h1e-12)if(p>bx-1e-12)s.moveTo(h*fx(f),h*gx(f)),s.arc(0,0,h,f,d,!g),l>1e-12&&(s.moveTo(l*fx(d),l*gx(d)),s.arc(0,0,l,d,f,g));else{var y,v,m=f,b=d,x=f,_=d,k=p,w=p,E=o.apply(this,arguments)/2,T=E>1e-12&&(r?+r.apply(this,arguments):yx(l*l+h*h)),C=px(lx(h-l)/2,+n.apply(this,arguments)),A=C,S=C;if(T>1e-12){var M=_x(T/l*gx(E)),O=_x(T/h*gx(E));(k-=2*M)>1e-12?(x+=M*=g?1:-1,_-=M):(k=0,x=_=(f+d)/2),(w-=2*O)>1e-12?(m+=O*=g?1:-1,b-=O):(w=0,m=b=(f+d)/2)}var D=h*fx(m),N=h*gx(m),B=l*fx(_),L=l*gx(_);if(C>1e-12){var F,P=h*fx(b),I=h*gx(b),j=l*fx(x),R=l*gx(x);if(p1e-12?S>1e-12?(y=Sx(j,R,D,N,h,S,g),v=Sx(P,I,B,L,h,S,g),s.moveTo(y.cx+y.x01,y.cy+y.y01),S1e-12&&k>1e-12?A>1e-12?(y=Sx(B,L,P,I,l,-A,g),v=Sx(D,N,j,R,l,-A,g),s.lineTo(y.cx+y.x01,y.cy+y.y01),A=l;--h)s.point(y[h],v[h]);s.lineEnd(),s.areaEnd()}g&&(y[u]=+t(f,u,c),v[u]=+n(f,u,c),s.point(e?+e(f,u,c):y[u],r?+r(f,u,c):v[u]))}if(d)return s=null,d+""||null}function u(){return Lx().defined(i).curve(o).context(a)}return c.x=function(n){return arguments.length?(t="function"==typeof n?n:ux(+n),e=null,c):t},c.x0=function(e){return arguments.length?(t="function"==typeof e?e:ux(+e),c):t},c.x1=function(t){return arguments.length?(e=null==t?null:"function"==typeof t?t:ux(+t),c):e},c.y=function(t){return arguments.length?(n="function"==typeof t?t:ux(+t),r=null,c):n},c.y0=function(t){return arguments.length?(n="function"==typeof t?t:ux(+t),c):n},c.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:ux(+t),c):r},c.lineX0=c.lineY0=function(){return u().x(t).y(n)},c.lineY1=function(){return u().x(t).y(r)},c.lineX1=function(){return u().x(e).y(n)},c.defined=function(t){return arguments.length?(i="function"==typeof t?t:ux(!!t),c):i},c.curve=function(t){return arguments.length?(o=t,null!=a&&(s=o(a)),c):o},c.context=function(t){return arguments.length?(null==t?a=s=null:s=o(a=t),c):a},c},Px=function(t,e){return et?1:e>=t?0:NaN},Ix=function(t){return t},jx=function(){var t=Ix,e=Px,n=null,r=ux(0),i=ux(bx),a=ux(0);function o(o){var s,c,u,l,h,f=o.length,d=0,p=new Array(f),g=new Array(f),y=+r.apply(this,arguments),v=Math.min(bx,Math.max(-bx,i.apply(this,arguments)-y)),m=Math.min(Math.abs(v)/f,a.apply(this,arguments)),b=m*(v<0?-1:1);for(s=0;s0&&(d+=h);for(null!=e?p.sort((function(t,n){return e(g[t],g[n])})):null!=n&&p.sort((function(t,e){return n(o[t],o[e])})),s=0,u=d?(v-f*b)/d:0;s0?h*u:0)+b,g[c]={data:o[c],index:s,value:h,startAngle:y,endAngle:l,padAngle:m};return g}return o.value=function(e){return arguments.length?(t="function"==typeof e?e:ux(+e),o):t},o.sortValues=function(t){return arguments.length?(e=t,n=null,o):e},o.sort=function(t){return arguments.length?(n=t,e=null,o):n},o.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:ux(+t),o):r},o.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:ux(+t),o):i},o.padAngle=function(t){return arguments.length?(a="function"==typeof t?t:ux(+t),o):a},o},Rx=zx(Dx);function Yx(t){this._curve=t}function zx(t){function e(e){return new Yx(t(e))}return e._curve=t,e}function Ux(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(zx(t)):e()._curve},t}Yx.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var $x=function(){return Ux(Lx().curve(Rx))},Wx=function(){var t=Fx().curve(Rx),e=t.curve,n=t.lineX0,r=t.lineX1,i=t.lineY0,a=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return Ux(n())},delete t.lineX0,t.lineEndAngle=function(){return Ux(r())},delete t.lineX1,t.lineInnerRadius=function(){return Ux(i())},delete t.lineY0,t.lineOuterRadius=function(){return Ux(a())},delete t.lineY1,t.curve=function(t){return arguments.length?e(zx(t)):e()._curve},t},Vx=function(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]},Hx=Array.prototype.slice;function Gx(t){return t.source}function qx(t){return t.target}function Xx(t){var e=Gx,n=qx,r=Nx,i=Bx,a=null;function o(){var o,s=Hx.call(arguments),c=e.apply(this,s),u=n.apply(this,s);if(a||(a=o=zi()),t(a,+r.apply(this,(s[0]=c,s)),+i.apply(this,s),+r.apply(this,(s[0]=u,s)),+i.apply(this,s)),o)return a=null,o+""||null}return o.source=function(t){return arguments.length?(e=t,o):e},o.target=function(t){return arguments.length?(n=t,o):n},o.x=function(t){return arguments.length?(r="function"==typeof t?t:ux(+t),o):r},o.y=function(t){return arguments.length?(i="function"==typeof t?t:ux(+t),o):i},o.context=function(t){return arguments.length?(a=null==t?null:t,o):a},o}function Zx(t,e,n,r,i){t.moveTo(e,n),t.bezierCurveTo(e=(e+r)/2,n,e,i,r,i)}function Jx(t,e,n,r,i){t.moveTo(e,n),t.bezierCurveTo(e,n=(n+i)/2,r,n,r,i)}function Qx(t,e,n,r,i){var a=Vx(e,n),o=Vx(e,n=(n+i)/2),s=Vx(r,n),c=Vx(r,i);t.moveTo(a[0],a[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],c[0],c[1])}function Kx(){return Xx(Zx)}function t_(){return Xx(Jx)}function e_(){var t=Xx(Qx);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}var n_={draw:function(t,e){var n=Math.sqrt(e/vx);t.moveTo(n,0),t.arc(0,0,n,0,bx)}},r_={draw:function(t,e){var n=Math.sqrt(e/5)/2;t.moveTo(-3*n,-n),t.lineTo(-n,-n),t.lineTo(-n,-3*n),t.lineTo(n,-3*n),t.lineTo(n,-n),t.lineTo(3*n,-n),t.lineTo(3*n,n),t.lineTo(n,n),t.lineTo(n,3*n),t.lineTo(-n,3*n),t.lineTo(-n,n),t.lineTo(-3*n,n),t.closePath()}},i_=Math.sqrt(1/3),a_=2*i_,o_={draw:function(t,e){var n=Math.sqrt(e/a_),r=n*i_;t.moveTo(0,-n),t.lineTo(r,0),t.lineTo(0,n),t.lineTo(-r,0),t.closePath()}},s_=Math.sin(vx/10)/Math.sin(7*vx/10),c_=Math.sin(bx/10)*s_,u_=-Math.cos(bx/10)*s_,l_={draw:function(t,e){var n=Math.sqrt(.8908130915292852*e),r=c_*n,i=u_*n;t.moveTo(0,-n),t.lineTo(r,i);for(var a=1;a<5;++a){var o=bx*a/5,s=Math.cos(o),c=Math.sin(o);t.lineTo(c*n,-s*n),t.lineTo(s*r-c*i,c*r+s*i)}t.closePath()}},h_={draw:function(t,e){var n=Math.sqrt(e),r=-n/2;t.rect(r,r,n,n)}},f_=Math.sqrt(3),d_={draw:function(t,e){var n=-Math.sqrt(e/(3*f_));t.moveTo(0,2*n),t.lineTo(-f_*n,-n),t.lineTo(f_*n,-n),t.closePath()}},p_=Math.sqrt(3)/2,g_=1/Math.sqrt(12),y_=3*(g_/2+1),v_={draw:function(t,e){var n=Math.sqrt(e/y_),r=n/2,i=n*g_,a=r,o=n*g_+n,s=-a,c=o;t.moveTo(r,i),t.lineTo(a,o),t.lineTo(s,c),t.lineTo(-.5*r-p_*i,p_*r+-.5*i),t.lineTo(-.5*a-p_*o,p_*a+-.5*o),t.lineTo(-.5*s-p_*c,p_*s+-.5*c),t.lineTo(-.5*r+p_*i,-.5*i-p_*r),t.lineTo(-.5*a+p_*o,-.5*o-p_*a),t.lineTo(-.5*s+p_*c,-.5*c-p_*s),t.closePath()}},m_=[n_,r_,o_,h_,l_,d_,v_],b_=function(){var t=ux(n_),e=ux(64),n=null;function r(){var r;if(n||(n=r=zi()),t.apply(this,arguments).draw(n,+e.apply(this,arguments)),r)return n=null,r+""||null}return r.type=function(e){return arguments.length?(t="function"==typeof e?e:ux(e),r):t},r.size=function(t){return arguments.length?(e="function"==typeof t?t:ux(+t),r):e},r.context=function(t){return arguments.length?(n=null==t?null:t,r):n},r},x_=function(){};function __(t,e,n){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+n)/6)}function k_(t){this._context=t}k_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:__(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:__(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};var w_=function(t){return new k_(t)};function E_(t){this._context=t}E_.prototype={areaStart:x_,areaEnd:x_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:__(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};var T_=function(t){return new E_(t)};function C_(t){this._context=t}C_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var n=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(n,r):this._context.moveTo(n,r);break;case 3:this._point=4;default:__(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};var A_=function(t){return new C_(t)};function S_(t,e){this._basis=new k_(t),this._beta=e}S_.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,n=t.length-1;if(n>0)for(var r,i=t[0],a=e[0],o=t[n]-i,s=e[n]-a,c=-1;++c<=n;)r=c/n,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*o),this._beta*e[c]+(1-this._beta)*(a+r*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var M_=function t(e){function n(t){return 1===e?new k_(t):new S_(t,e)}return n.beta=function(e){return t(+e)},n}(.85);function O_(t,e,n){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-n),t._x2,t._y2)}function D_(t,e){this._context=t,this._k=(1-e)/6}D_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:O_(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:O_(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var N_=function t(e){function n(t){return new D_(t,e)}return n.tension=function(e){return t(+e)},n}(0);function B_(t,e){this._context=t,this._k=(1-e)/6}B_.prototype={areaStart:x_,areaEnd:x_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:O_(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var L_=function t(e){function n(t){return new B_(t,e)}return n.tension=function(e){return t(+e)},n}(0);function F_(t,e){this._context=t,this._k=(1-e)/6}F_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:O_(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var P_=function t(e){function n(t){return new F_(t,e)}return n.tension=function(e){return t(+e)},n}(0);function I_(t,e,n){var r=t._x1,i=t._y1,a=t._x2,o=t._y2;if(t._l01_a>1e-12){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,c=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/c,i=(i*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/c}if(t._l23_a>1e-12){var u=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,l=3*t._l23_a*(t._l23_a+t._l12_a);a=(a*u+t._x1*t._l23_2a-e*t._l12_2a)/l,o=(o*u+t._y1*t._l23_2a-n*t._l12_2a)/l}t._context.bezierCurveTo(r,i,a,o,t._x2,t._y2)}function j_(t,e){this._context=t,this._alpha=e}j_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:I_(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var R_=function t(e){function n(t){return e?new j_(t,e):new D_(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function Y_(t,e){this._context=t,this._alpha=e}Y_.prototype={areaStart:x_,areaEnd:x_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:I_(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var z_=function t(e){function n(t){return e?new Y_(t,e):new B_(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function U_(t,e){this._context=t,this._alpha=e}U_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:I_(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var $_=function t(e){function n(t){return e?new U_(t,e):new F_(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function W_(t){this._context=t}W_.prototype={areaStart:x_,areaEnd:x_,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}};var V_=function(t){return new W_(t)};function H_(t){return t<0?-1:1}function G_(t,e,n){var r=t._x1-t._x0,i=e-t._x1,a=(t._y1-t._y0)/(r||i<0&&-0),o=(n-t._y1)/(i||r<0&&-0),s=(a*i+o*r)/(r+i);return(H_(a)+H_(o))*Math.min(Math.abs(a),Math.abs(o),.5*Math.abs(s))||0}function q_(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function X_(t,e,n){var r=t._x0,i=t._y0,a=t._x1,o=t._y1,s=(a-r)/3;t._context.bezierCurveTo(r+s,i+s*e,a-s,o-s*n,a,o)}function Z_(t){this._context=t}function J_(t){this._context=new Q_(t)}function Q_(t){this._context=t}function K_(t){return new Z_(t)}function tk(t){return new J_(t)}function ek(t){this._context=t}function nk(t){var e,n,r=t.length-1,i=new Array(r),a=new Array(r),o=new Array(r);for(i[0]=0,a[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)i[e]=(o[e]-i[e+1])/a[e];for(a[r-1]=(t[r]+i[r-1])/2,e=0;e=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var n=this._x*(1-this._t)+t*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,e)}}this._x=t,this._y=e}};var ak=function(t){return new ik(t,.5)};function ok(t){return new ik(t,0)}function sk(t){return new ik(t,1)}var ck=function(t,e){if((i=t.length)>1)for(var n,r,i,a=1,o=t[e[0]],s=o.length;a=0;)n[e]=e;return n};function lk(t,e){return t[e]}var hk=function(){var t=ux([]),e=uk,n=ck,r=lk;function i(i){var a,o,s=t.apply(this,arguments),c=i.length,u=s.length,l=new Array(u);for(a=0;a0){for(var n,r,i,a=0,o=t[0].length;a0)for(var n,r,i,a,o,s,c=0,u=t[e[0]].length;c0?(r[0]=a,r[1]=a+=i):i<0?(r[1]=o,r[0]=o+=i):(r[0]=0,r[1]=i)},pk=function(t,e){if((n=t.length)>0){for(var n,r=0,i=t[e[0]],a=i.length;r0&&(r=(n=t[e[0]]).length)>0){for(var n,r,i,a=0,o=1;oa&&(a=e,r=n);return r}var mk=function(t){var e=t.map(bk);return uk(t).sort((function(t,n){return e[t]-e[n]}))};function bk(t){for(var e,n=0,r=-1,i=t.length;++r0)){if(a/=f,f<0){if(a0){if(a>h)return;a>l&&(l=a)}if(a=r-c,f||!(a<0)){if(a/=f,f<0){if(a>h)return;a>l&&(l=a)}else if(f>0){if(a0)){if(a/=d,d<0){if(a0){if(a>h)return;a>l&&(l=a)}if(a=i-u,d||!(a<0)){if(a/=d,d<0){if(a>h)return;a>l&&(l=a)}else if(d>0){if(a0||h<1)||(l>0&&(t[0]=[c+l*f,u+l*d]),h<1&&(t[1]=[c+h*f,u+h*d]),!0)}}}}}function Rk(t,e,n,r,i){var a=t[1];if(a)return!0;var o,s,c=t[0],u=t.left,l=t.right,h=u[0],f=u[1],d=l[0],p=l[1],g=(h+d)/2,y=(f+p)/2;if(p===f){if(g=r)return;if(h>d){if(c){if(c[1]>=i)return}else c=[g,n];a=[g,i]}else{if(c){if(c[1]1)if(h>d){if(c){if(c[1]>=i)return}else c=[(n-s)/o,n];a=[(i-s)/o,i]}else{if(c){if(c[1]=r)return}else c=[e,o*e+s];a=[r,o*r+s]}else{if(c){if(c[0]=-sw)){var d=c*c+u*u,p=l*l+h*h,g=(h*d-u*p)/f,y=(c*p-l*d)/f,v=Wk.pop()||new Vk;v.arc=t,v.site=i,v.x=g+o,v.y=(v.cy=y+s)+Math.sqrt(g*g+y*y),t.circle=v;for(var m=null,b=iw._;b;)if(v.yow)s=s.L;else{if(!((i=a-ew(s,o))>ow)){r>-ow?(e=s.P,n=s):i>-ow?(e=s,n=s.N):e=n=s;break}if(!s.R){e=s;break}s=s.R}!function(t){rw[t.index]={site:t,halfedges:[]}}(t);var c=Zk(t);if(nw.insert(e,c),e||n){if(e===n)return Gk(e),n=Zk(e.site),nw.insert(c,n),c.edge=n.edge=Fk(e.site,c.site),Hk(e),void Hk(n);if(n){Gk(e),Gk(n);var u=e.site,l=u[0],h=u[1],f=t[0]-l,d=t[1]-h,p=n.site,g=p[0]-l,y=p[1]-h,v=2*(f*y-d*g),m=f*f+d*d,b=g*g+y*y,x=[(y*m-d*b)/v+l,(f*b-g*m)/v+h];Ik(n.edge,u,p,x),c.edge=Fk(u,t,null,x),n.edge=Fk(t,p,null,x),Hk(e),Hk(n)}else c.edge=Fk(e.site,c.site)}}function tw(t,e){var n=t.site,r=n[0],i=n[1],a=i-e;if(!a)return r;var o=t.P;if(!o)return-1/0;var s=(n=o.site)[0],c=n[1],u=c-e;if(!u)return s;var l=s-r,h=1/a-1/u,f=l/u;return h?(-f+Math.sqrt(f*f-2*h*(l*l/(-2*u)-c+u/2+i-a/2)))/h+r:(r+s)/2}function ew(t,e){var n=t.N;if(n)return tw(n,e);var r=t.site;return r[1]===e?r[0]:1/0}var nw,rw,iw,aw,ow=1e-6,sw=1e-12;function cw(t,e){return e[1]-t[1]||e[0]-t[0]}function uw(t,e){var n,r,i,a=t.sort(cw).pop();for(aw=[],rw=new Array(t.length),nw=new Lk,iw=new Lk;;)if(i=$k,a&&(!i||a[1]ow||Math.abs(i[0][1]-i[1][1])>ow)||delete aw[a]}(o,s,c,u),function(t,e,n,r){var i,a,o,s,c,u,l,h,f,d,p,g,y=rw.length,v=!0;for(i=0;iow||Math.abs(g-f)>ow)&&(c.splice(s,0,aw.push(Pk(o,d,Math.abs(p-t)ow?[t,Math.abs(h-t)ow?[Math.abs(f-r)ow?[n,Math.abs(h-n)ow?[Math.abs(f-e)=s)return null;var c=t-i.site[0],u=e-i.site[1],l=c*c+u*u;do{i=a.cells[r=o],o=null,i.halfedges.forEach((function(n){var r=a.edges[n],s=r.left;if(s!==i.site&&s||(s=r.right)){var c=t-s[0],u=e-s[1],h=c*c+u*u;hr?(r+i)/2:Math.min(0,r)||Math.max(0,i),o>a?(a+o)/2:Math.min(0,a)||Math.max(0,o))}var Ew=function(){var t,e,n=mw,r=bw,i=ww,a=_w,o=kw,s=[0,1/0],c=[[-1/0,-1/0],[1/0,1/0]],u=250,l=up,h=lt("start","zoom","end"),f=0;function d(t){t.property("__zoom",xw).on("wheel.zoom",x).on("mousedown.zoom",_).on("dblclick.zoom",k).filter(o).on("touchstart.zoom",w).on("touchmove.zoom",E).on("touchend.zoom touchcancel.zoom",T).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(t,e){return(e=Math.max(s[0],Math.min(s[1],e)))===t.k?t:new dw(e,t.x,t.y)}function g(t,e,n){var r=e[0]-n[0]*t.k,i=e[1]-n[1]*t.k;return r===t.x&&i===t.y?t:new dw(t.k,r,i)}function y(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function v(t,e,n){t.on("start.zoom",(function(){m(this,arguments).start()})).on("interrupt.zoom end.zoom",(function(){m(this,arguments).end()})).tween("zoom",(function(){var t=this,i=arguments,a=m(t,i),o=r.apply(t,i),s=null==n?y(o):"function"==typeof n?n.apply(t,i):n,c=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),u=t.__zoom,h="function"==typeof e?e.apply(t,i):e,f=l(u.invert(s).concat(c/u.k),h.invert(s).concat(c/h.k));return function(t){if(1===t)t=h;else{var e=f(t),n=c/e[2];t=new dw(n,s[0]-e[0]*n,s[1]-e[1]*n)}a.zoom(null,t)}}))}function m(t,e,n){return!n&&t.__zooming||new b(t,e)}function b(t,e){this.that=t,this.args=e,this.active=0,this.extent=r.apply(t,e),this.taps=0}function x(){if(n.apply(this,arguments)){var t=m(this,arguments),e=this.__zoom,r=Math.max(s[0],Math.min(s[1],e.k*Math.pow(2,a.apply(this,arguments)))),o=Dn(this);if(t.wheel)t.mouse[0][0]===o[0]&&t.mouse[0][1]===o[1]||(t.mouse[1]=e.invert(t.mouse[0]=o)),clearTimeout(t.wheel);else{if(e.k===r)return;t.mouse=[o,e.invert(o)],ar(this),t.start()}vw(),t.wheel=setTimeout(u,150),t.zoom("mouse",i(g(p(e,r),t.mouse[0],t.mouse[1]),t.extent,c))}function u(){t.wheel=null,t.end()}}function _(){if(!e&&n.apply(this,arguments)){var t=m(this,arguments,!0),r=ke(ce.view).on("mousemove.zoom",u,!0).on("mouseup.zoom",l,!0),a=Dn(this),o=ce.clientX,s=ce.clientY;Te(ce.view),yw(),t.mouse=[a,this.__zoom.invert(a)],ar(this),t.start()}function u(){if(vw(),!t.moved){var e=ce.clientX-o,n=ce.clientY-s;t.moved=e*e+n*n>f}t.zoom("mouse",i(g(t.that.__zoom,t.mouse[0]=Dn(t.that),t.mouse[1]),t.extent,c))}function l(){r.on("mousemove.zoom mouseup.zoom",null),Ce(ce.view,t.moved),vw(),t.end()}}function k(){if(n.apply(this,arguments)){var t=this.__zoom,e=Dn(this),a=t.invert(e),o=t.k*(ce.shiftKey?.5:2),s=i(g(p(t,o),e,a),r.apply(this,arguments),c);vw(),u>0?ke(this).transition().duration(u).call(v,s,e):ke(this).call(d.transform,s)}}function w(){if(n.apply(this,arguments)){var e,r,i,a,o=ce.touches,s=o.length,c=m(this,arguments,ce.changedTouches.length===s);for(yw(),r=0;rh&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},M={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),56;case 1:return this.begin("type_directive"),57;case 2:return this.popState(),this.begin("arg_directive"),14;case 3:return this.popState(),this.popState(),59;case 4:return 58;case 5:return 5;case 6:case 7:case 8:case 9:case 10:break;case 11:return this.begin("ID"),16;case 12:return e.yytext=e.yytext.trim(),this.begin("ALIAS"),48;case 13:return this.popState(),this.popState(),this.begin("LINE"),18;case 14:return this.popState(),this.popState(),5;case 15:return this.begin("LINE"),27;case 16:return this.begin("LINE"),29;case 17:return this.begin("LINE"),30;case 18:return this.begin("LINE"),31;case 19:return this.begin("LINE"),36;case 20:return this.begin("LINE"),33;case 21:return this.begin("LINE"),35;case 22:return this.popState(),19;case 23:return 28;case 24:return 43;case 25:return 44;case 26:return 39;case 27:return 37;case 28:return this.begin("ID"),22;case 29:return this.begin("ID"),23;case 30:return 25;case 31:return 7;case 32:return 21;case 33:return 42;case 34:return 5;case 35:return e.yytext=e.yytext.trim(),48;case 36:return 51;case 37:return 52;case 38:return 49;case 39:return 50;case 40:return 53;case 41:return 54;case 42:return 55;case 43:return 46;case 44:return 47;case 45:return 5;case 46:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:participant\b)/i,/^(?:[^\->:\n,;]+?(?=((?!\n)\s)+as(?!\n)\s|[#\n;]|$))/i,/^(?:as\b)/i,/^(?:(?:))/i,/^(?:loop\b)/i,/^(?:rect\b)/i,/^(?:opt\b)/i,/^(?:alt\b)/i,/^(?:else\b)/i,/^(?:par\b)/i,/^(?:and\b)/i,/^(?:(?:[:]?(?:no)?wrap)?[^#\n;]*)/i,/^(?:end\b)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:over\b)/i,/^(?:note\b)/i,/^(?:activate\b)/i,/^(?:deactivate\b)/i,/^(?:title\b)/i,/^(?:sequenceDiagram\b)/i,/^(?:autonumber\b)/i,/^(?:,)/i,/^(?:;)/i,/^(?:[^\+\->:\n,;]+((?!(-x|--x))[\-]*[^\+\->:\n,;]+)*)/i,/^(?:->>)/i,/^(?:-->>)/i,/^(?:->)/i,/^(?:-->)/i,/^(?:-[x])/i,/^(?:--[x])/i,/^(?::(?:(?:no)?wrap)?[^#\n;]+)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:$)/i,/^(?:.)/i],conditions:{open_directive:{rules:[1,8],inclusive:!1},type_directive:{rules:[2,3,8],inclusive:!1},arg_directive:{rules:[3,4,8],inclusive:!1},ID:{rules:[7,8,12],inclusive:!1},ALIAS:{rules:[7,8,13,14],inclusive:!1},LINE:{rules:[7,8,22],inclusive:!1},INITIAL:{rules:[0,5,6,8,9,10,11,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0}}};function O(){this.yy={}}return S.lexer=M,O.prototype=S,S.Parser=O,new O}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){var r=n(198);t.exports={Graph:r.Graph,json:n(301),alg:n(302),version:r.version}},function(t,e,n){var r;try{r={cloneDeep:n(313),constant:n(86),defaults:n(154),each:n(87),filter:n(128),find:n(314),flatten:n(156),forEach:n(126),forIn:n(319),has:n(93),isUndefined:n(139),last:n(320),map:n(140),mapValues:n(321),max:n(322),merge:n(324),min:n(329),minBy:n(330),now:n(331),pick:n(161),range:n(162),reduce:n(142),sortBy:n(338),uniqueId:n(163),values:n(147),zipObject:n(343)}}catch(t){}r||(r=window._),t.exports=r},function(t,e){var n=Array.isArray;t.exports=n},function(t,e,n){ +/** + * @license + * Copyright (c) 2012-2013 Chris Pettitt + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +t.exports={graphlib:n(311),dagre:n(153),intersect:n(368),render:n(370),util:n(12),version:n(382)}},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,n){"use strict";var r=n(4),i=n(17).Graph;function a(t,e,n,i){var a;do{a=r.uniqueId(i)}while(t.hasNode(a));return n.dummy=e,t.setNode(a,n),a}function o(t){return r.max(r.map(t.nodes(),(function(e){var n=t.node(e).rank;if(!r.isUndefined(n))return n})))}t.exports={addDummyNode:a,simplify:function(t){var e=(new i).setGraph(t.graph());return r.forEach(t.nodes(),(function(n){e.setNode(n,t.node(n))})),r.forEach(t.edges(),(function(n){var r=e.edge(n.v,n.w)||{weight:0,minlen:1},i=t.edge(n);e.setEdge(n.v,n.w,{weight:r.weight+i.weight,minlen:Math.max(r.minlen,i.minlen)})})),e},asNonCompoundGraph:function(t){var e=new i({multigraph:t.isMultigraph()}).setGraph(t.graph());return r.forEach(t.nodes(),(function(n){t.children(n).length||e.setNode(n,t.node(n))})),r.forEach(t.edges(),(function(n){e.setEdge(n,t.edge(n))})),e},successorWeights:function(t){var e=r.map(t.nodes(),(function(e){var n={};return r.forEach(t.outEdges(e),(function(e){n[e.w]=(n[e.w]||0)+t.edge(e).weight})),n}));return r.zipObject(t.nodes(),e)},predecessorWeights:function(t){var e=r.map(t.nodes(),(function(e){var n={};return r.forEach(t.inEdges(e),(function(e){n[e.v]=(n[e.v]||0)+t.edge(e).weight})),n}));return r.zipObject(t.nodes(),e)},intersectRect:function(t,e){var n,r,i=t.x,a=t.y,o=e.x-i,s=e.y-a,c=t.width/2,u=t.height/2;if(!o&&!s)throw new Error("Not possible to find intersection inside of the rectangle");return Math.abs(s)*c>Math.abs(o)*u?(s<0&&(u=-u),n=u*o/s,r=u):(o<0&&(c=-c),n=c,r=c*s/o),{x:i+n,y:a+r}},buildLayerMatrix:function(t){var e=r.map(r.range(o(t)+1),(function(){return[]}));return r.forEach(t.nodes(),(function(n){var i=t.node(n),a=i.rank;r.isUndefined(a)||(e[a][i.order]=n)})),e},normalizeRanks:function(t){var e=r.min(r.map(t.nodes(),(function(e){return t.node(e).rank})));r.forEach(t.nodes(),(function(n){var i=t.node(n);r.has(i,"rank")&&(i.rank-=e)}))},removeEmptyRanks:function(t){var e=r.min(r.map(t.nodes(),(function(e){return t.node(e).rank}))),n=[];r.forEach(t.nodes(),(function(r){var i=t.node(r).rank-e;n[i]||(n[i]=[]),n[i].push(r)}));var i=0,a=t.graph().nodeRankFactor;r.forEach(n,(function(e,n){r.isUndefined(e)&&n%a!=0?--i:i&&r.forEach(e,(function(e){t.node(e).rank+=i}))}))},addBorderNode:function(t,e,n,r){var i={width:0,height:0};return arguments.length>=4&&(i.rank=n,i.order=r),a(t,"border",i,e)},maxRank:o,partition:function(t,e){var n={lhs:[],rhs:[]};return r.forEach(t,(function(t){e(t)?n.lhs.push(t):n.rhs.push(t)})),n},time:function(t,e){var n=r.now();try{return e()}finally{console.log(t+" time: "+(r.now()-n)+"ms")}},notime:function(t,e){return e()}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(173),i=n(174),a=n(175),o={channel:r.default,lang:i.default,unit:a.default};e.default=o},function(t,e,n){var r;try{r={clone:n(199),constant:n(86),each:n(87),filter:n(128),has:n(93),isArray:n(5),isEmpty:n(276),isFunction:n(37),isUndefined:n(139),keys:n(30),map:n(140),reduce:n(142),size:n(279),transform:n(285),union:n(286),values:n(147)}}catch(t){}r||(r=window._),t.exports=r},function(t,e){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},function(t,e,n){var r=n(43);t.exports={isSubgraph:function(t,e){return!!t.children(e).length},edgeToId:function(t){return a(t.v)+":"+a(t.w)+":"+a(t.name)},applyStyle:function(t,e){e&&t.attr("style",e)},applyClass:function(t,e,n){e&&t.attr("class",e).attr("class",n+" "+t.attr("class"))},applyTransition:function(t,e){var n=e.graph();if(r.isPlainObject(n)){var i=n.transition;if(r.isFunction(i))return i(t)}return t}};var i=/:/g;function a(t){return t?String(t).replace(i,"\\:"):""}},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,7],n=[1,6],r=[1,14],i=[1,25],a=[1,28],o=[1,26],s=[1,27],c=[1,29],u=[1,30],l=[1,31],h=[1,33],f=[1,34],d=[1,35],p=[10,19],g=[1,47],y=[1,48],v=[1,49],m=[1,50],b=[1,51],x=[1,52],_=[10,19,25,32,33,41,44,45,46,47,48,49],k=[10,19,23,25,32,33,37,41,44,45,46,47,48,49,66,67,68],w=[10,13,17,19],E=[41,66,67,68],T=[41,48,49,66,67,68],C=[41,44,45,46,47,66,67,68],A=[10,19,25],S=[1,81],M={trace:function(){},yy:{},symbols_:{error:2,start:3,mermaidDoc:4,directive:5,graphConfig:6,openDirective:7,typeDirective:8,closeDirective:9,NEWLINE:10,":":11,argDirective:12,open_directive:13,type_directive:14,arg_directive:15,close_directive:16,CLASS_DIAGRAM:17,statements:18,EOF:19,statement:20,className:21,alphaNumToken:22,GENERICTYPE:23,relationStatement:24,LABEL:25,classStatement:26,methodStatement:27,annotationStatement:28,clickStatement:29,cssClassStatement:30,CLASS:31,STYLE_SEPARATOR:32,STRUCT_START:33,members:34,STRUCT_STOP:35,ANNOTATION_START:36,ANNOTATION_END:37,MEMBER:38,SEPARATOR:39,relation:40,STR:41,relationType:42,lineType:43,AGGREGATION:44,EXTENSION:45,COMPOSITION:46,DEPENDENCY:47,LINE:48,DOTTED_LINE:49,CALLBACK:50,LINK:51,CSSCLASS:52,commentToken:53,textToken:54,graphCodeTokens:55,textNoTagsToken:56,TAGSTART:57,TAGEND:58,"==":59,"--":60,PCT:61,DEFAULT:62,SPACE:63,MINUS:64,keywords:65,UNICODE_TEXT:66,NUM:67,ALPHA:68,$accept:0,$end:1},terminals_:{2:"error",10:"NEWLINE",11:":",13:"open_directive",14:"type_directive",15:"arg_directive",16:"close_directive",17:"CLASS_DIAGRAM",19:"EOF",23:"GENERICTYPE",25:"LABEL",31:"CLASS",32:"STYLE_SEPARATOR",33:"STRUCT_START",35:"STRUCT_STOP",36:"ANNOTATION_START",37:"ANNOTATION_END",38:"MEMBER",39:"SEPARATOR",41:"STR",44:"AGGREGATION",45:"EXTENSION",46:"COMPOSITION",47:"DEPENDENCY",48:"LINE",49:"DOTTED_LINE",50:"CALLBACK",51:"LINK",52:"CSSCLASS",55:"graphCodeTokens",57:"TAGSTART",58:"TAGEND",59:"==",60:"--",61:"PCT",62:"DEFAULT",63:"SPACE",64:"MINUS",65:"keywords",66:"UNICODE_TEXT",67:"NUM",68:"ALPHA"},productions_:[0,[3,1],[3,2],[4,1],[5,4],[5,6],[7,1],[8,1],[12,1],[9,1],[6,4],[18,1],[18,2],[18,3],[21,1],[21,2],[21,3],[21,2],[20,1],[20,2],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[26,2],[26,4],[26,5],[26,7],[28,4],[34,1],[34,2],[27,1],[27,2],[27,1],[27,1],[24,3],[24,4],[24,4],[24,5],[40,3],[40,2],[40,2],[40,1],[42,1],[42,1],[42,1],[42,1],[43,1],[43,1],[29,3],[29,4],[29,3],[29,4],[30,3],[53,1],[53,1],[54,1],[54,1],[54,1],[54,1],[54,1],[54,1],[54,1],[56,1],[56,1],[56,1],[56,1],[22,1],[22,1],[22,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 6:r.parseDirective("%%{","open_directive");break;case 7:r.parseDirective(a[s],"type_directive");break;case 8:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 9:r.parseDirective("}%%","close_directive","class");break;case 14:this.$=a[s];break;case 15:this.$=a[s-1]+a[s];break;case 16:this.$=a[s-2]+"~"+a[s-1]+a[s];break;case 17:this.$=a[s-1]+"~"+a[s];break;case 18:r.addRelation(a[s]);break;case 19:a[s-1].title=r.cleanupLabel(a[s]),r.addRelation(a[s-1]);break;case 26:r.addClass(a[s]);break;case 27:r.addClass(a[s-2]),r.setCssClass(a[s-2],a[s]);break;case 28:r.addClass(a[s-3]),r.addMembers(a[s-3],a[s-1]);break;case 29:r.addClass(a[s-5]),r.setCssClass(a[s-5],a[s-3]),r.addMembers(a[s-5],a[s-1]);break;case 30:r.addAnnotation(a[s],a[s-2]);break;case 31:this.$=[a[s]];break;case 32:a[s].push(a[s-1]),this.$=a[s];break;case 33:break;case 34:r.addMember(a[s-1],r.cleanupLabel(a[s]));break;case 35:case 36:break;case 37:this.$={id1:a[s-2],id2:a[s],relation:a[s-1],relationTitle1:"none",relationTitle2:"none"};break;case 38:this.$={id1:a[s-3],id2:a[s],relation:a[s-1],relationTitle1:a[s-2],relationTitle2:"none"};break;case 39:this.$={id1:a[s-3],id2:a[s],relation:a[s-2],relationTitle1:"none",relationTitle2:a[s-1]};break;case 40:this.$={id1:a[s-4],id2:a[s],relation:a[s-2],relationTitle1:a[s-3],relationTitle2:a[s-1]};break;case 41:this.$={type1:a[s-2],type2:a[s],lineType:a[s-1]};break;case 42:this.$={type1:"none",type2:a[s],lineType:a[s-1]};break;case 43:this.$={type1:a[s-1],type2:"none",lineType:a[s]};break;case 44:this.$={type1:"none",type2:"none",lineType:a[s]};break;case 45:this.$=r.relationType.AGGREGATION;break;case 46:this.$=r.relationType.EXTENSION;break;case 47:this.$=r.relationType.COMPOSITION;break;case 48:this.$=r.relationType.DEPENDENCY;break;case 49:this.$=r.lineType.LINE;break;case 50:this.$=r.lineType.DOTTED_LINE;break;case 51:this.$=a[s-2],r.setClickEvent(a[s-1],a[s],void 0);break;case 52:this.$=a[s-3],r.setClickEvent(a[s-2],a[s-1],a[s]);break;case 53:this.$=a[s-2],r.setLink(a[s-1],a[s],void 0);break;case 54:this.$=a[s-3],r.setLink(a[s-2],a[s-1],a[s]);break;case 55:r.setCssClass(a[s-1],a[s])}},table:[{3:1,4:2,5:3,6:4,7:5,13:e,17:n},{1:[3]},{1:[2,1]},{3:8,4:2,5:3,6:4,7:5,13:e,17:n},{1:[2,3]},{8:9,14:[1,10]},{10:[1,11]},{14:[2,6]},{1:[2,2]},{9:12,11:[1,13],16:r},t([11,16],[2,7]),{5:23,7:5,13:e,18:15,20:16,21:24,22:32,24:17,26:18,27:19,28:20,29:21,30:22,31:i,36:a,38:o,39:s,50:c,51:u,52:l,66:h,67:f,68:d},{10:[1,36]},{12:37,15:[1,38]},{10:[2,9]},{19:[1,39]},{10:[1,40],19:[2,11]},t(p,[2,18],{25:[1,41]}),t(p,[2,20]),t(p,[2,21]),t(p,[2,22]),t(p,[2,23]),t(p,[2,24]),t(p,[2,25]),t(p,[2,33],{40:42,42:45,43:46,25:[1,44],41:[1,43],44:g,45:y,46:v,47:m,48:b,49:x}),{21:53,22:32,66:h,67:f,68:d},t(p,[2,35]),t(p,[2,36]),{22:54,66:h,67:f,68:d},{21:55,22:32,66:h,67:f,68:d},{21:56,22:32,66:h,67:f,68:d},{41:[1,57]},t(_,[2,14],{22:32,21:58,23:[1,59],66:h,67:f,68:d}),t(k,[2,69]),t(k,[2,70]),t(k,[2,71]),t(w,[2,4]),{9:60,16:r},{16:[2,8]},{1:[2,10]},{5:23,7:5,13:e,18:61,19:[2,12],20:16,21:24,22:32,24:17,26:18,27:19,28:20,29:21,30:22,31:i,36:a,38:o,39:s,50:c,51:u,52:l,66:h,67:f,68:d},t(p,[2,19]),{21:62,22:32,41:[1,63],66:h,67:f,68:d},{40:64,42:45,43:46,44:g,45:y,46:v,47:m,48:b,49:x},t(p,[2,34]),{43:65,48:b,49:x},t(E,[2,44],{42:66,44:g,45:y,46:v,47:m}),t(T,[2,45]),t(T,[2,46]),t(T,[2,47]),t(T,[2,48]),t(C,[2,49]),t(C,[2,50]),t(p,[2,26],{32:[1,67],33:[1,68]}),{37:[1,69]},{41:[1,70]},{41:[1,71]},{22:72,66:h,67:f,68:d},t(_,[2,15]),t(_,[2,17],{22:32,21:73,66:h,67:f,68:d}),{10:[1,74]},{19:[2,13]},t(A,[2,37]),{21:75,22:32,66:h,67:f,68:d},{21:76,22:32,41:[1,77],66:h,67:f,68:d},t(E,[2,43],{42:78,44:g,45:y,46:v,47:m}),t(E,[2,42]),{22:79,66:h,67:f,68:d},{34:80,38:S},{21:82,22:32,66:h,67:f,68:d},t(p,[2,51],{41:[1,83]}),t(p,[2,53],{41:[1,84]}),t(p,[2,55]),t(_,[2,16]),t(w,[2,5]),t(A,[2,39]),t(A,[2,38]),{21:85,22:32,66:h,67:f,68:d},t(E,[2,41]),t(p,[2,27],{33:[1,86]}),{35:[1,87]},{34:88,35:[2,31],38:S},t(p,[2,30]),t(p,[2,52]),t(p,[2,54]),t(A,[2,40]),{34:89,38:S},t(p,[2,28]),{35:[2,32]},{35:[1,90]},t(p,[2,29])],defaultActions:{2:[2,1],4:[2,3],7:[2,6],8:[2,2],14:[2,9],38:[2,8],39:[2,10],61:[2,13],88:[2,32]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},O={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),13;case 1:return this.begin("type_directive"),14;case 2:return this.popState(),this.begin("arg_directive"),11;case 3:return this.popState(),this.popState(),16;case 4:return 15;case 5:case 6:break;case 7:return 10;case 8:break;case 9:case 10:return 17;case 11:return this.begin("struct"),33;case 12:return"EOF_IN_STRUCT";case 13:return"OPEN_IN_STRUCT";case 14:return this.popState(),35;case 15:break;case 16:return"MEMBER";case 17:return 31;case 18:return 52;case 19:return 50;case 20:return 51;case 21:return 36;case 22:return 37;case 23:this.begin("generic");break;case 24:this.popState();break;case 25:return"GENERICTYPE";case 26:this.begin("string");break;case 27:this.popState();break;case 28:return"STR";case 29:case 30:return 45;case 31:case 32:return 47;case 33:return 46;case 34:return 44;case 35:return 48;case 36:return 49;case 37:return 25;case 38:return 32;case 39:return 64;case 40:return"DOT";case 41:return"PLUS";case 42:return 61;case 43:case 44:return"EQUALS";case 45:return 68;case 46:return"PUNCTUATION";case 47:return 67;case 48:return 66;case 49:return 63;case 50:return 19}},rules:[/^(?:%%\{)/,/^(?:((?:(?!\}%%)[^:.])*))/,/^(?::)/,/^(?:\}%%)/,/^(?:((?:(?!\}%%).|\n)*))/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:(\r?\n)+)/,/^(?:\s+)/,/^(?:classDiagram-v2\b)/,/^(?:classDiagram\b)/,/^(?:[{])/,/^(?:$)/,/^(?:[{])/,/^(?:[}])/,/^(?:[\n])/,/^(?:[^{}\n]*)/,/^(?:class\b)/,/^(?:cssClass\b)/,/^(?:callback\b)/,/^(?:link\b)/,/^(?:<<)/,/^(?:>>)/,/^(?:[~])/,/^(?:[~])/,/^(?:[^~]*)/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:\s*<\|)/,/^(?:\s*\|>)/,/^(?:\s*>)/,/^(?:\s*<)/,/^(?:\s*\*)/,/^(?:\s*o\b)/,/^(?:--)/,/^(?:\.\.)/,/^(?::{1}[^:\n;]+)/,/^(?::{3})/,/^(?:-)/,/^(?:\.)/,/^(?:\+)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:\w+)/,/^(?:[!"#$%&'*+,-.`?\\/])/,/^(?:[0-9]+)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\s)/,/^(?:$)/],conditions:{string:{rules:[27,28],inclusive:!1},generic:{rules:[24,25],inclusive:!1},struct:{rules:[12,13,14,15,16],inclusive:!1},open_directive:{rules:[1],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,17,18,19,20,21,22,23,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],inclusive:!0}}};function D(){this.yy={}}return M.lexer=O,D.prototype=M,M.Parser=D,new D}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e){var n,r,i=t.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(t){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(t){r=o}}();var c,u=[],l=!1,h=-1;function f(){l&&c&&(l=!1,c.length?u=c.concat(u):h=-1,u.length&&d())}function d(){if(!l){var t=s(f);l=!0;for(var e=u.length;e;){for(c=u,u=[];++h1)for(var n=1;n=0;r--){var i=t[r];"."===i?t.splice(r,1):".."===i?(t.splice(r,1),n++):n&&(t.splice(r,1),n--)}if(e)for(;n--;n)t.unshift("..");return t}function r(t,e){if(t.filter)return t.filter(e);for(var n=[],r=0;r=-1&&!i;a--){var o=a>=0?arguments[a]:t.cwd();if("string"!=typeof o)throw new TypeError("Arguments to path.resolve must be strings");o&&(e=o+"/"+e,i="/"===o.charAt(0))}return(i?"/":"")+(e=n(r(e.split("/"),(function(t){return!!t})),!i).join("/"))||"."},e.normalize=function(t){var a=e.isAbsolute(t),o="/"===i(t,-1);return(t=n(r(t.split("/"),(function(t){return!!t})),!a).join("/"))||a||(t="."),t&&o&&(t+="/"),(a?"/":"")+t},e.isAbsolute=function(t){return"/"===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(r(t,(function(t,e){if("string"!=typeof t)throw new TypeError("Arguments to path.join must be strings");return t})).join("/"))},e.relative=function(t,n){function r(t){for(var e=0;e=0&&""===t[n];n--);return e>n?[]:t.slice(e,n-e+1)}t=e.resolve(t).substr(1),n=e.resolve(n).substr(1);for(var i=r(t.split("/")),a=r(n.split("/")),o=Math.min(i.length,a.length),s=o,c=0;c=1;--a)if(47===(e=t.charCodeAt(a))){if(!i){r=a;break}}else i=!1;return-1===r?n?"/":".":n&&1===r?"/":t.slice(0,r)},e.basename=function(t,e){var n=function(t){"string"!=typeof t&&(t+="");var e,n=0,r=-1,i=!0;for(e=t.length-1;e>=0;--e)if(47===t.charCodeAt(e)){if(!i){n=e+1;break}}else-1===r&&(i=!1,r=e+1);return-1===r?"":t.slice(n,r)}(t);return e&&n.substr(-1*e.length)===e&&(n=n.substr(0,n.length-e.length)),n},e.extname=function(t){"string"!=typeof t&&(t+="");for(var e=-1,n=0,r=-1,i=!0,a=0,o=t.length-1;o>=0;--o){var s=t.charCodeAt(o);if(47!==s)-1===r&&(i=!1,r=o+1),46===s?-1===e?e=o:1!==a&&(a=1):-1!==e&&(a=-1);else if(!i){n=o+1;break}}return-1===e||-1===r||0===a||1===a&&e===r-1&&e===n+1?"":t.slice(e,r)};var i="b"==="ab".substr(-1)?function(t,e,n){return t.substr(e,n)}:function(t,e,n){return e<0&&(e=t.length+e),t.substr(e,n)}}).call(this,n(14))},function(t,e){t.exports=function(t){return null!=t&&"object"==typeof t}},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,2],n=[1,3],r=[1,5],i=[1,7],a=[2,5],o=[1,15],s=[1,17],c=[1,19],u=[1,20],l=[1,21],h=[1,22],f=[1,28],d=[1,23],p=[1,24],g=[1,25],y=[1,26],v=[1,29],m=[1,32],b=[1,4,5,14,15,17,19,20,22,23,24,25,26,36,39],x=[1,4,5,12,13,14,15,17,19,20,22,23,24,25,26,36,39],_=[1,4,5,7,14,15,17,19,20,22,23,24,25,26,36,39],k=[4,5,14,15,17,19,20,22,23,24,25,26,36,39],w={trace:function(){},yy:{},symbols_:{error:2,start:3,SPACE:4,NL:5,directive:6,SD:7,document:8,line:9,statement:10,idStatement:11,DESCR:12,"--\x3e":13,HIDE_EMPTY:14,scale:15,WIDTH:16,COMPOSIT_STATE:17,STRUCT_START:18,STRUCT_STOP:19,STATE_DESCR:20,AS:21,ID:22,FORK:23,JOIN:24,CONCURRENT:25,note:26,notePosition:27,NOTE_TEXT:28,openDirective:29,typeDirective:30,closeDirective:31,":":32,argDirective:33,eol:34,";":35,EDGE_STATE:36,left_of:37,right_of:38,open_directive:39,type_directive:40,arg_directive:41,close_directive:42,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NL",7:"SD",12:"DESCR",13:"--\x3e",14:"HIDE_EMPTY",15:"scale",16:"WIDTH",17:"COMPOSIT_STATE",18:"STRUCT_START",19:"STRUCT_STOP",20:"STATE_DESCR",21:"AS",22:"ID",23:"FORK",24:"JOIN",25:"CONCURRENT",26:"note",28:"NOTE_TEXT",32:":",35:";",36:"EDGE_STATE",37:"left_of",38:"right_of",39:"open_directive",40:"type_directive",41:"arg_directive",42:"close_directive"},productions_:[0,[3,2],[3,2],[3,2],[3,2],[8,0],[8,2],[9,2],[9,1],[9,1],[10,1],[10,2],[10,3],[10,4],[10,1],[10,2],[10,1],[10,4],[10,3],[10,6],[10,1],[10,1],[10,1],[10,4],[10,4],[10,1],[6,3],[6,5],[34,1],[34,1],[11,1],[11,1],[27,1],[27,1],[29,1],[30,1],[33,1],[31,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 4:return r.setRootDoc(a[s]),a[s];case 5:this.$=[];break;case 6:"nl"!=a[s]&&(a[s-1].push(a[s]),this.$=a[s-1]);break;case 7:case 8:this.$=a[s];break;case 9:this.$="nl";break;case 10:this.$={stmt:"state",id:a[s],type:"default",description:""};break;case 11:this.$={stmt:"state",id:a[s-1],type:"default",description:r.trimColon(a[s])};break;case 12:this.$={stmt:"relation",state1:{stmt:"state",id:a[s-2],type:"default",description:""},state2:{stmt:"state",id:a[s],type:"default",description:""}};break;case 13:this.$={stmt:"relation",state1:{stmt:"state",id:a[s-3],type:"default",description:""},state2:{stmt:"state",id:a[s-1],type:"default",description:""},description:a[s].substr(1).trim()};break;case 17:this.$={stmt:"state",id:a[s-3],type:"default",description:"",doc:a[s-1]};break;case 18:var c=a[s],u=a[s-2].trim();if(a[s].match(":")){var l=a[s].split(":");c=l[0],u=[u,l[1]]}this.$={stmt:"state",id:c,type:"default",description:u};break;case 19:this.$={stmt:"state",id:a[s-3],type:"default",description:a[s-5],doc:a[s-1]};break;case 20:this.$={stmt:"state",id:a[s],type:"fork"};break;case 21:this.$={stmt:"state",id:a[s],type:"join"};break;case 22:this.$={stmt:"state",id:r.getDividerId(),type:"divider"};break;case 23:this.$={stmt:"state",id:a[s-1].trim(),note:{position:a[s-2].trim(),text:a[s].trim()}};break;case 30:case 31:this.$=a[s];break;case 34:r.parseDirective("%%{","open_directive");break;case 35:r.parseDirective(a[s],"type_directive");break;case 36:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 37:r.parseDirective("}%%","close_directive","state")}},table:[{3:1,4:e,5:n,6:4,7:r,29:6,39:i},{1:[3]},{3:8,4:e,5:n,6:4,7:r,29:6,39:i},{3:9,4:e,5:n,6:4,7:r,29:6,39:i},{3:10,4:e,5:n,6:4,7:r,29:6,39:i},t([1,4,5,14,15,17,20,22,23,24,25,26,36,39],a,{8:11}),{30:12,40:[1,13]},{40:[2,34]},{1:[2,1]},{1:[2,2]},{1:[2,3]},{1:[2,4],4:o,5:s,6:27,9:14,10:16,11:18,14:c,15:u,17:l,20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},{31:30,32:[1,31],42:m},t([32,42],[2,35]),t(b,[2,6]),{6:27,10:33,11:18,14:c,15:u,17:l,20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},t(b,[2,8]),t(b,[2,9]),t(b,[2,10],{12:[1,34],13:[1,35]}),t(b,[2,14]),{16:[1,36]},t(b,[2,16],{18:[1,37]}),{21:[1,38]},t(b,[2,20]),t(b,[2,21]),t(b,[2,22]),{27:39,28:[1,40],37:[1,41],38:[1,42]},t(b,[2,25]),t(x,[2,30]),t(x,[2,31]),t(_,[2,26]),{33:43,41:[1,44]},t(_,[2,37]),t(b,[2,7]),t(b,[2,11]),{11:45,22:f,36:v},t(b,[2,15]),t(k,a,{8:46}),{22:[1,47]},{22:[1,48]},{21:[1,49]},{22:[2,32]},{22:[2,33]},{31:50,42:m},{42:[2,36]},t(b,[2,12],{12:[1,51]}),{4:o,5:s,6:27,9:14,10:16,11:18,14:c,15:u,17:l,19:[1,52],20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},t(b,[2,18],{18:[1,53]}),{28:[1,54]},{22:[1,55]},t(_,[2,27]),t(b,[2,13]),t(b,[2,17]),t(k,a,{8:56}),t(b,[2,23]),t(b,[2,24]),{4:o,5:s,6:27,9:14,10:16,11:18,14:c,15:u,17:l,19:[1,57],20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},t(b,[2,19])],defaultActions:{7:[2,34],8:[2,1],9:[2,2],10:[2,3],41:[2,32],42:[2,33],44:[2,36]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},E={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),39;case 1:return this.begin("type_directive"),40;case 2:return this.popState(),this.begin("arg_directive"),32;case 3:return this.popState(),this.popState(),42;case 4:return 41;case 5:break;case 6:console.log("Crap after close");break;case 7:return 5;case 8:case 9:case 10:case 11:break;case 12:return this.pushState("SCALE"),15;case 13:return 16;case 14:this.popState();break;case 15:this.pushState("STATE");break;case 16:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),23;case 17:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),24;case 18:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),23;case 19:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),24;case 20:this.begin("STATE_STRING");break;case 21:return this.popState(),this.pushState("STATE_ID"),"AS";case 22:return this.popState(),"ID";case 23:this.popState();break;case 24:return"STATE_DESCR";case 25:return 17;case 26:this.popState();break;case 27:return this.popState(),this.pushState("struct"),18;case 28:return this.popState(),19;case 29:break;case 30:return this.begin("NOTE"),26;case 31:return this.popState(),this.pushState("NOTE_ID"),37;case 32:return this.popState(),this.pushState("NOTE_ID"),38;case 33:this.popState(),this.pushState("FLOATING_NOTE");break;case 34:return this.popState(),this.pushState("FLOATING_NOTE_ID"),"AS";case 35:break;case 36:return"NOTE_TEXT";case 37:return this.popState(),"ID";case 38:return this.popState(),this.pushState("NOTE_TEXT"),22;case 39:return this.popState(),e.yytext=e.yytext.substr(2).trim(),28;case 40:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),28;case 41:case 42:return 7;case 43:return 14;case 44:return 36;case 45:return 22;case 46:return e.yytext=e.yytext.trim(),12;case 47:return 13;case 48:return 25;case 49:return 5;case 50:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:[\s]+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:state\s+)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*\[\[fork\]\])/i,/^(?:.*\[\[join\]\])/i,/^(?:["])/i,/^(?:\s*as\s+)/i,/^(?:[^\n\{]*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n\s\{]+)/i,/^(?:\n)/i,/^(?:\{)/i,/^(?:\})/i,/^(?:[\n])/i,/^(?:note\s+)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:")/i,/^(?:\s*as\s*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n]*)/i,/^(?:\s*[^:\n\s\-]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:\s*[^:;]+end note\b)/i,/^(?:stateDiagram\s+)/i,/^(?:stateDiagram-v2\s+)/i,/^(?:hide empty description\b)/i,/^(?:\[\*\])/i,/^(?:[^:\n\s\-\{]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:-->)/i,/^(?:--)/i,/^(?:$)/i,/^(?:.)/i],conditions:{LINE:{rules:[9,10],inclusive:!1},close_directive:{rules:[9,10],inclusive:!1},arg_directive:{rules:[3,4,9,10],inclusive:!1},type_directive:{rules:[2,3,9,10],inclusive:!1},open_directive:{rules:[1,9,10],inclusive:!1},struct:{rules:[9,10,15,28,29,30,44,45,46,47,48],inclusive:!1},FLOATING_NOTE_ID:{rules:[37],inclusive:!1},FLOATING_NOTE:{rules:[34,35,36],inclusive:!1},NOTE_TEXT:{rules:[39,40],inclusive:!1},NOTE_ID:{rules:[38],inclusive:!1},NOTE:{rules:[31,32,33],inclusive:!1},SCALE:{rules:[13,14],inclusive:!1},ALIAS:{rules:[],inclusive:!1},STATE_ID:{rules:[22],inclusive:!1},STATE_STRING:{rules:[23,24],inclusive:!1},FORK_STATE:{rules:[],inclusive:!1},STATE:{rules:[9,10,16,17,18,19,20,21,25,26,27],inclusive:!1},ID:{rules:[9,10],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,10,11,12,15,27,30,41,42,43,44,45,46,47,49,50],inclusive:!0}}};function T(){this.yy={}}return w.lexer=E,T.prototype=w,w.Parser=T,new T}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t){t.exports=function(){"use strict";var e,r;function i(){return e.apply(null,arguments)}function a(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function o(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function s(t){return void 0===t}function c(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function u(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function l(t,e){var n,r=[];for(n=0;n>>0,r=0;ryt(t)?(a=t+1,s-yt(t)):(a=t,s),{year:a,dayOfYear:o}}function Ft(t,e,n){var r,i,a=Bt(t.year(),e,n),o=Math.floor((t.dayOfYear()-a-1)/7)+1;return o<1?r=o+Pt(i=t.year()-1,e,n):o>Pt(t.year(),e,n)?(r=o-Pt(t.year(),e,n),i=t.year()+1):(i=t.year(),r=o),{week:r,year:i}}function Pt(t,e,n){var r=Bt(t,e,n),i=Bt(t+1,e,n);return(yt(t)-r+i)/7}function It(t,e){return t.slice(e,7).concat(t.slice(0,e))}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),j("week",5),j("isoWeek",5),lt("w",Q),lt("ww",Q,q),lt("W",Q),lt("WW",Q,q),gt(["w","ww","W","WW"],(function(t,e,n,r){e[r.substr(0,1)]=w(t)})),W("d",0,"do","day"),W("dd",0,0,(function(t){return this.localeData().weekdaysMin(this,t)})),W("ddd",0,0,(function(t){return this.localeData().weekdaysShort(this,t)})),W("dddd",0,0,(function(t){return this.localeData().weekdays(this,t)})),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),j("day",11),j("weekday",11),j("isoWeekday",11),lt("d",Q),lt("e",Q),lt("E",Q),lt("dd",(function(t,e){return e.weekdaysMinRegex(t)})),lt("ddd",(function(t,e){return e.weekdaysShortRegex(t)})),lt("dddd",(function(t,e){return e.weekdaysRegex(t)})),gt(["dd","ddd","dddd"],(function(t,e,n,r){var i=n._locale.weekdaysParse(t,r,n._strict);null!=i?e.d=i:p(n).invalidWeekday=t})),gt(["d","e","E"],(function(t,e,n,r){e[r]=w(t)}));var jt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Rt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Yt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),zt=ct,Ut=ct,$t=ct;function Wt(){function t(t,e){return e.length-t.length}var e,n,r,i,a,o=[],s=[],c=[],u=[];for(e=0;e<7;e++)n=d([2e3,1]).day(e),r=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),a=this.weekdays(n,""),o.push(r),s.push(i),c.push(a),u.push(r),u.push(i),u.push(a);for(o.sort(t),s.sort(t),c.sort(t),u.sort(t),e=0;e<7;e++)s[e]=ft(s[e]),c[e]=ft(c[e]),u[e]=ft(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Vt(){return this.hours()%12||12}function Ht(t,e){W(t,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)}))}function Gt(t,e){return e._meridiemParse}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,Vt),W("k",["kk",2],0,(function(){return this.hours()||24})),W("hmm",0,0,(function(){return""+Vt.apply(this)+R(this.minutes(),2)})),W("hmmss",0,0,(function(){return""+Vt.apply(this)+R(this.minutes(),2)+R(this.seconds(),2)})),W("Hmm",0,0,(function(){return""+this.hours()+R(this.minutes(),2)})),W("Hmmss",0,0,(function(){return""+this.hours()+R(this.minutes(),2)+R(this.seconds(),2)})),Ht("a",!0),Ht("A",!1),L("hour","h"),j("hour",13),lt("a",Gt),lt("A",Gt),lt("H",Q),lt("h",Q),lt("k",Q),lt("HH",Q,q),lt("hh",Q,q),lt("kk",Q,q),lt("hmm",K),lt("hmmss",tt),lt("Hmm",K),lt("Hmmss",tt),pt(["H","HH"],3),pt(["k","kk"],(function(t,e,n){var r=w(t);e[3]=24===r?0:r})),pt(["a","A"],(function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t})),pt(["h","hh"],(function(t,e,n){e[3]=w(t),p(n).bigHour=!0})),pt("hmm",(function(t,e,n){var r=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r)),p(n).bigHour=!0})),pt("hmmss",(function(t,e,n){var r=t.length-4,i=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r,2)),e[5]=w(t.substr(i)),p(n).bigHour=!0})),pt("Hmm",(function(t,e,n){var r=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r))})),pt("Hmmss",(function(t,e,n){var r=t.length-4,i=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r,2)),e[5]=w(t.substr(i))}));var qt,Xt=xt("Hours",!0),Zt={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Tt,monthsShort:Ct,week:{dow:0,doy:6},weekdays:jt,weekdaysMin:Yt,weekdaysShort:Rt,meridiemParse:/[ap]\.?m?\.?/i},Jt={},Qt={};function Kt(t){return t?t.toLowerCase().replace("_","-"):t}function te(e){var r=null;if(!Jt[e]&&void 0!==t&&t&&t.exports)try{r=qt._abbr,n(171)("./"+e),ee(r)}catch(e){}return Jt[e]}function ee(t,e){var n;return t&&((n=s(e)?re(t):ne(t,e))?qt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),qt._abbr}function ne(t,e){if(null===e)return delete Jt[t],null;var n,r=Zt;if(e.abbr=t,null!=Jt[t])M("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=Jt[t]._config;else if(null!=e.parentLocale)if(null!=Jt[e.parentLocale])r=Jt[e.parentLocale]._config;else{if(null==(n=te(e.parentLocale)))return Qt[e.parentLocale]||(Qt[e.parentLocale]=[]),Qt[e.parentLocale].push({name:t,config:e}),null;r=n._config}return Jt[t]=new N(D(r,e)),Qt[t]&&Qt[t].forEach((function(t){ne(t.name,t.config)})),ee(t),Jt[t]}function re(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return qt;if(!a(t)){if(e=te(t))return e;t=[t]}return function(t){for(var e,n,r,i,a=0;a=e&&E(i,n,!0)>=e-1)break;e--}a++}return qt}(t)}function ie(t){var e,n=t._a;return n&&-2===p(t).overflow&&(e=n[1]<0||11wt(n[0],n[1])?2:n[3]<0||24Pt(n,a,o)?p(t)._overflowWeeks=!0:null!=c?p(t)._overflowWeekday=!0:(s=Lt(n,r,i,a,o),t._a[0]=s.year,t._dayOfYear=s.dayOfYear)}(t),null!=t._dayOfYear&&(o=ae(t._a[0],r[0]),(t._dayOfYear>yt(o)||0===t._dayOfYear)&&(p(t)._overflowDayOfYear=!0),n=Nt(o,0,t._dayOfYear),t._a[1]=n.getUTCMonth(),t._a[2]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=r[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[3]&&0===t._a[4]&&0===t._a[5]&&0===t._a[6]&&(t._nextDay=!0,t._a[3]=0),t._d=(t._useUTC?Nt:function(t,e,n,r,i,a,o){var s;return t<100&&0<=t?(s=new Date(t+400,e,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(t)):s=new Date(t,e,n,r,i,a,o),s}).apply(null,s),a=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[3]=24),t._w&&void 0!==t._w.d&&t._w.d!==a&&(p(t).weekdayMismatch=!0)}}var se=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ce=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ue=/Z|[+-]\d\d(?::?\d\d)?/,le=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],he=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],fe=/^\/?Date\((\-?\d+)/i;function de(t){var e,n,r,i,a,o,s=t._i,c=se.exec(s)||ce.exec(s);if(c){for(p(t).iso=!0,e=0,n=le.length;en.valueOf():n.valueOf()this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},on.isLocal=function(){return!!this.isValid()&&!this._isUTC},on.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},on.isUtc=Be,on.isUTC=Be,on.zoneAbbr=function(){return this._isUTC?"UTC":""},on.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},on.dates=C("dates accessor is deprecated. Use date instead.",Ke),on.months=C("months accessor is deprecated. Use month instead",St),on.years=C("years accessor is deprecated. Use year instead",bt),on.zone=C("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()})),on.isDSTShifted=C("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var t={};if(m(t,this),(t=me(t))._a){var e=t._isUTC?d(t._a):xe(t._a);this._isDSTShifted=this.isValid()&&0h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},qt={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),12;case 1:return this.begin("type_directive"),13;case 2:return this.popState(),this.begin("arg_directive"),10;case 3:return this.popState(),this.popState(),15;case 4:return 14;case 5:case 6:break;case 7:this.begin("string");break;case 8:this.popState();break;case 9:return"STR";case 10:return 75;case 11:return 84;case 12:return 76;case 13:return 90;case 14:return 77;case 15:return 78;case 16:return 79;case 17:case 18:return t.lex.firstGraph()&&this.begin("dir"),24;case 19:return 38;case 20:return 42;case 21:case 22:case 23:case 24:return 87;case 25:return this.popState(),25;case 26:case 27:case 28:case 29:case 30:case 31:case 32:case 33:case 34:case 35:return this.popState(),26;case 36:return 91;case 37:return 99;case 38:return 47;case 39:return 96;case 40:return 46;case 41:return 20;case 42:return 92;case 43:return 110;case 44:case 45:case 46:return 70;case 47:case 48:case 49:return 69;case 50:return 51;case 51:return 52;case 52:return 53;case 53:return 54;case 54:return 55;case 55:return 56;case 56:return 57;case 57:return 58;case 58:return 97;case 59:return 100;case 60:return 111;case 61:return 108;case 62:return 101;case 63:case 64:return 109;case 65:return 102;case 66:return 61;case 67:return 81;case 68:return"SEP";case 69:return 80;case 70:return 95;case 71:return 63;case 72:return 62;case 73:return 65;case 74:return 64;case 75:return 106;case 76:return 107;case 77:return 71;case 78:return 49;case 79:return 50;case 80:return 40;case 81:return 41;case 82:return 59;case 83:return 60;case 84:return 117;case 85:return 21;case 86:return 22;case 87:return 23}},rules:[/^(?:%%\{)/,/^(?:((?:(?!\}%%)[^:.])*))/,/^(?::)/,/^(?:\}%%)/,/^(?:((?:(?!\}%%).|\n)*))/,/^(?:%%(?!\{)[^\n]*)/,/^(?:[^\}]%%[^\n]*)/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:style\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\b)/,/^(?:class\b)/,/^(?:click\b)/,/^(?:graph\b)/,/^(?:flowchart\b)/,/^(?:subgraph\b)/,/^(?:end\b\s*)/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:(\r?\n)*\s*\n)/,/^(?:\s*LR\b)/,/^(?:\s*RL\b)/,/^(?:\s*TB\b)/,/^(?:\s*BT\b)/,/^(?:\s*TD\b)/,/^(?:\s*BR\b)/,/^(?:\s*<)/,/^(?:\s*>)/,/^(?:\s*\^)/,/^(?:\s*v\b)/,/^(?:[0-9]+)/,/^(?:#)/,/^(?::::)/,/^(?::)/,/^(?:&)/,/^(?:;)/,/^(?:,)/,/^(?:\*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:\(-)/,/^(?:-\))/,/^(?:\(\[)/,/^(?:\]\))/,/^(?:\[\[)/,/^(?:\]\])/,/^(?:\[\()/,/^(?:\)\])/,/^(?:-)/,/^(?:\.)/,/^(?:[\_])/,/^(?:\+)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:<)/,/^(?:>)/,/^(?:\^)/,/^(?:\\\|)/,/^(?:v\b)/,/^(?:[A-Za-z]+)/,/^(?:\\\])/,/^(?:\[\/)/,/^(?:\/\])/,/^(?:\[\\)/,/^(?:[!"#$%&'*+,-.`?\\_/])/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\|)/,/^(?:\()/,/^(?:\))/,/^(?:\[)/,/^(?:\])/,/^(?:\{)/,/^(?:\})/,/^(?:")/,/^(?:(\r?\n)+)/,/^(?:\s)/,/^(?:$)/],conditions:{close_directive:{rules:[],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},open_directive:{rules:[1],inclusive:!1},vertex:{rules:[],inclusive:!1},dir:{rules:[25,26,27,28,29,30,31,32,33,34,35],inclusive:!1},string:{rules:[8,9],inclusive:!1},INITIAL:{rules:[0,5,6,7,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87],inclusive:!0}}};function Xt(){this.yy={}}return Gt.lexer=qt,Xt.prototype=Gt,Gt.Parser=Xt,new Xt}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,3],n=[1,5],r=[7,9,11,12,13,14,15,16,17,18,20,27,32],i=[1,15],a=[1,16],o=[1,17],s=[1,18],c=[1,19],u=[1,20],l=[1,21],h=[1,23],f=[1,25],d=[1,28],p=[5,7,9,11,12,13,14,15,16,17,18,20,27,32],g={trace:function(){},yy:{},symbols_:{error:2,start:3,directive:4,gantt:5,document:6,EOF:7,line:8,SPACE:9,statement:10,NL:11,dateFormat:12,inclusiveEndDates:13,axisFormat:14,excludes:15,todayMarker:16,title:17,section:18,clickStatement:19,taskTxt:20,taskData:21,openDirective:22,typeDirective:23,closeDirective:24,":":25,argDirective:26,click:27,callbackname:28,callbackargs:29,href:30,clickStatementDebug:31,open_directive:32,type_directive:33,arg_directive:34,close_directive:35,$accept:0,$end:1},terminals_:{2:"error",5:"gantt",7:"EOF",9:"SPACE",11:"NL",12:"dateFormat",13:"inclusiveEndDates",14:"axisFormat",15:"excludes",16:"todayMarker",17:"title",18:"section",20:"taskTxt",21:"taskData",25:":",27:"click",28:"callbackname",29:"callbackargs",30:"href",32:"open_directive",33:"type_directive",34:"arg_directive",35:"close_directive"},productions_:[0,[3,2],[3,3],[6,0],[6,2],[8,2],[8,1],[8,1],[8,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,2],[10,1],[4,4],[4,6],[19,2],[19,3],[19,3],[19,4],[19,3],[19,4],[19,2],[31,2],[31,3],[31,3],[31,4],[31,3],[31,4],[31,2],[22,1],[23,1],[26,1],[24,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 2:return a[s-1];case 3:this.$=[];break;case 4:a[s-1].push(a[s]),this.$=a[s-1];break;case 5:case 6:this.$=a[s];break;case 7:case 8:this.$=[];break;case 9:r.setDateFormat(a[s].substr(11)),this.$=a[s].substr(11);break;case 10:r.enableInclusiveEndDates(),this.$=a[s].substr(18);break;case 11:r.setAxisFormat(a[s].substr(11)),this.$=a[s].substr(11);break;case 12:r.setExcludes(a[s].substr(9)),this.$=a[s].substr(9);break;case 13:r.setTodayMarker(a[s].substr(12)),this.$=a[s].substr(12);break;case 14:r.setTitle(a[s].substr(6)),this.$=a[s].substr(6);break;case 15:r.addSection(a[s].substr(8)),this.$=a[s].substr(8);break;case 17:r.addTask(a[s-1],a[s]),this.$="task";break;case 21:this.$=a[s-1],r.setClickEvent(a[s-1],a[s],null);break;case 22:this.$=a[s-2],r.setClickEvent(a[s-2],a[s-1],a[s]);break;case 23:this.$=a[s-2],r.setClickEvent(a[s-2],a[s-1],null),r.setLink(a[s-2],a[s]);break;case 24:this.$=a[s-3],r.setClickEvent(a[s-3],a[s-2],a[s-1]),r.setLink(a[s-3],a[s]);break;case 25:this.$=a[s-2],r.setClickEvent(a[s-2],a[s],null),r.setLink(a[s-2],a[s-1]);break;case 26:this.$=a[s-3],r.setClickEvent(a[s-3],a[s-1],a[s]),r.setLink(a[s-3],a[s-2]);break;case 27:this.$=a[s-1],r.setLink(a[s-1],a[s]);break;case 28:case 34:this.$=a[s-1]+" "+a[s];break;case 29:case 30:case 32:this.$=a[s-2]+" "+a[s-1]+" "+a[s];break;case 31:case 33:this.$=a[s-3]+" "+a[s-2]+" "+a[s-1]+" "+a[s];break;case 35:r.parseDirective("%%{","open_directive");break;case 36:r.parseDirective(a[s],"type_directive");break;case 37:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 38:r.parseDirective("}%%","close_directive","gantt")}},table:[{3:1,4:2,5:e,22:4,32:n},{1:[3]},{3:6,4:2,5:e,22:4,32:n},t(r,[2,3],{6:7}),{23:8,33:[1,9]},{33:[2,35]},{1:[2,1]},{4:24,7:[1,10],8:11,9:[1,12],10:13,11:[1,14],12:i,13:a,14:o,15:s,16:c,17:u,18:l,19:22,20:h,22:4,27:f,32:n},{24:26,25:[1,27],35:d},t([25,35],[2,36]),t(r,[2,8],{1:[2,2]}),t(r,[2,4]),{4:24,10:29,12:i,13:a,14:o,15:s,16:c,17:u,18:l,19:22,20:h,22:4,27:f,32:n},t(r,[2,6]),t(r,[2,7]),t(r,[2,9]),t(r,[2,10]),t(r,[2,11]),t(r,[2,12]),t(r,[2,13]),t(r,[2,14]),t(r,[2,15]),t(r,[2,16]),{21:[1,30]},t(r,[2,18]),{28:[1,31],30:[1,32]},{11:[1,33]},{26:34,34:[1,35]},{11:[2,38]},t(r,[2,5]),t(r,[2,17]),t(r,[2,21],{29:[1,36],30:[1,37]}),t(r,[2,27],{28:[1,38]}),t(p,[2,19]),{24:39,35:d},{35:[2,37]},t(r,[2,22],{30:[1,40]}),t(r,[2,23]),t(r,[2,25],{29:[1,41]}),{11:[1,42]},t(r,[2,24]),t(r,[2,26]),t(p,[2,20])],defaultActions:{5:[2,35],6:[2,1],28:[2,38],35:[2,37]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},y={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),32;case 1:return this.begin("type_directive"),33;case 2:return this.popState(),this.begin("arg_directive"),25;case 3:return this.popState(),this.popState(),35;case 4:return 34;case 5:case 6:case 7:break;case 8:return 11;case 9:case 10:case 11:break;case 12:this.begin("href");break;case 13:this.popState();break;case 14:return 30;case 15:this.begin("callbackname");break;case 16:this.popState();break;case 17:this.popState(),this.begin("callbackargs");break;case 18:return 28;case 19:this.popState();break;case 20:return 29;case 21:this.begin("click");break;case 22:this.popState();break;case 23:return 27;case 24:return 5;case 25:return 12;case 26:return 13;case 27:return 14;case 28:return 15;case 29:return 16;case 30:return"date";case 31:return 17;case 32:return 18;case 33:return 20;case 34:return 21;case 35:return 25;case 36:return 7;case 37:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%%(?!\{)*[^\n]*)/i,/^(?:[^\}]%%*[^\n]*)/i,/^(?:%%*[^\n]*[\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:href[\s]+["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:call[\s]+)/i,/^(?:\([\s]*\))/i,/^(?:\()/i,/^(?:[^(]*)/i,/^(?:\))/i,/^(?:[^)]*)/i,/^(?:click[\s]+)/i,/^(?:[\s\n])/i,/^(?:[^\s\n]*)/i,/^(?:gantt\b)/i,/^(?:dateFormat\s[^#\n;]+)/i,/^(?:inclusiveEndDates\b)/i,/^(?:axisFormat\s[^#\n;]+)/i,/^(?:excludes\s[^#\n;]+)/i,/^(?:todayMarker\s[^\n;]+)/i,/^(?:\d\d\d\d-\d\d-\d\d\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{close_directive:{rules:[],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},open_directive:{rules:[1],inclusive:!1},callbackargs:{rules:[19,20],inclusive:!1},callbackname:{rules:[16,17,18],inclusive:!1},href:{rules:[13,14],inclusive:!1},click:{rules:[22,23],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,12,15,21,24,25,26,27,28,29,30,31,32,33,34,35,36,37],inclusive:!0}}};function v(){this.yy={}}return g.lexer=y,v.prototype=g,g.Parser=v,new v}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,2],n=[1,5],r=[6,9,11,17,18,19,21],i=[1,15],a=[1,16],o=[1,17],s=[1,21],c=[4,6,9,11,17,18,19,21],u={trace:function(){},yy:{},symbols_:{error:2,start:3,journey:4,document:5,EOF:6,directive:7,line:8,SPACE:9,statement:10,NEWLINE:11,openDirective:12,typeDirective:13,closeDirective:14,":":15,argDirective:16,title:17,section:18,taskName:19,taskData:20,open_directive:21,type_directive:22,arg_directive:23,close_directive:24,$accept:0,$end:1},terminals_:{2:"error",4:"journey",6:"EOF",9:"SPACE",11:"NEWLINE",15:":",17:"title",18:"section",19:"taskName",20:"taskData",21:"open_directive",22:"type_directive",23:"arg_directive",24:"close_directive"},productions_:[0,[3,3],[3,2],[5,0],[5,2],[8,2],[8,1],[8,1],[8,1],[7,4],[7,6],[10,1],[10,1],[10,2],[10,1],[12,1],[13,1],[16,1],[14,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 1:return a[s-1];case 3:this.$=[];break;case 4:a[s-1].push(a[s]),this.$=a[s-1];break;case 5:case 6:this.$=a[s];break;case 7:case 8:this.$=[];break;case 11:r.setTitle(a[s].substr(6)),this.$=a[s].substr(6);break;case 12:r.addSection(a[s].substr(8)),this.$=a[s].substr(8);break;case 13:r.addTask(a[s-1],a[s]),this.$="task";break;case 15:r.parseDirective("%%{","open_directive");break;case 16:r.parseDirective(a[s],"type_directive");break;case 17:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 18:r.parseDirective("}%%","close_directive","journey")}},table:[{3:1,4:e,7:3,12:4,21:n},{1:[3]},t(r,[2,3],{5:6}),{3:7,4:e,7:3,12:4,21:n},{13:8,22:[1,9]},{22:[2,15]},{6:[1,10],7:18,8:11,9:[1,12],10:13,11:[1,14],12:4,17:i,18:a,19:o,21:n},{1:[2,2]},{14:19,15:[1,20],24:s},t([15,24],[2,16]),t(r,[2,8],{1:[2,1]}),t(r,[2,4]),{7:18,10:22,12:4,17:i,18:a,19:o,21:n},t(r,[2,6]),t(r,[2,7]),t(r,[2,11]),t(r,[2,12]),{20:[1,23]},t(r,[2,14]),{11:[1,24]},{16:25,23:[1,26]},{11:[2,18]},t(r,[2,5]),t(r,[2,13]),t(c,[2,9]),{14:27,24:s},{24:[2,17]},{11:[1,28]},t(c,[2,10])],defaultActions:{5:[2,15],7:[2,2],21:[2,18],26:[2,17]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},l={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),21;case 1:return this.begin("type_directive"),22;case 2:return this.popState(),this.begin("arg_directive"),15;case 3:return this.popState(),this.popState(),24;case 4:return 23;case 5:case 6:break;case 7:return 11;case 8:case 9:break;case 10:return 4;case 11:return 17;case 12:return 18;case 13:return 19;case 14:return 20;case 15:return 15;case 16:return 6;case 17:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:journey\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{open_directive:{rules:[1],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,12,13,14,15,16,17],inclusive:!0}}};function h(){this.yy={}}return u.lexer=l,h.prototype=u,u.Parser=h,new h}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15);e.default=function(t,e){return r.default.lang.round(i.default.parse(t)[e])}},function(t,e,n){var r=n(112),i=n(82),a=n(24);t.exports=function(t){return a(t)?r(t):i(t)}},function(t,e,n){var r;if(!r)try{r=n(0)}catch(t){}r||(r=window.d3),t.exports=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15);e.default=function(t,e,n){var a=i.default.parse(t),o=a[e],s=r.default.channel.clamp[e](o+n);return o!==s&&(a[e]=s),i.default.stringify(a)}},function(t,e,n){var r=n(210),i=n(216);t.exports=function(t,e){var n=i(t,e);return r(n)?n:void 0}},function(t,e,n){var r=n(38),i=n(212),a=n(213),o=r?r.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":o&&o in Object(t)?i(t):a(t)}},function(t,e){t.exports=function(t){return t}},function(t,e){t.exports=function(t,e){return t===e||t!=t&&e!=e}},function(t,e,n){var r=n(34),i=n(11);t.exports=function(t){if(!i(t))return!1;var e=r(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e}},function(t,e,n){var r=n(16).Symbol;t.exports=r},function(t,e,n){(function(t){var r=n(16),i=n(232),a=e&&!e.nodeType&&e,o=a&&"object"==typeof t&&t&&!t.nodeType&&t,s=o&&o.exports===a?r.Buffer:void 0,c=(s?s.isBuffer:void 0)||i;t.exports=c}).call(this,n(7)(t))},function(t,e,n){var r=n(112),i=n(236),a=n(24);t.exports=function(t){return a(t)?r(t,!0):i(t)}},function(t,e,n){var r=n(241),i=n(77),a=n(242),o=n(121),s=n(243),c=n(34),u=n(110),l=u(r),h=u(i),f=u(a),d=u(o),p=u(s),g=c;(r&&"[object DataView]"!=g(new r(new ArrayBuffer(1)))||i&&"[object Map]"!=g(new i)||a&&"[object Promise]"!=g(a.resolve())||o&&"[object Set]"!=g(new o)||s&&"[object WeakMap]"!=g(new s))&&(g=function(t){var e=c(t),n="[object Object]"==e?t.constructor:void 0,r=n?u(n):"";if(r)switch(r){case l:return"[object DataView]";case h:return"[object Map]";case f:return"[object Promise]";case d:return"[object Set]";case p:return"[object WeakMap]"}return e}),t.exports=g},function(t,e,n){var r=n(34),i=n(21);t.exports=function(t){return"symbol"==typeof t||i(t)&&"[object Symbol]"==r(t)}},function(t,e,n){var r;try{r={defaults:n(154),each:n(87),isFunction:n(37),isPlainObject:n(158),pick:n(161),has:n(93),range:n(162),uniqueId:n(163)}}catch(t){}r||(r=window._),t.exports=r},function(t){t.exports=JSON.parse('{"name":"mermaid","version":"8.8.0","description":"Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.","main":"dist/mermaid.core.js","keywords":["diagram","markdown","flowchart","sequence diagram","gantt","class diagram","git graph"],"scripts":{"build:development":"webpack --progress --colors","build:production":"yarn build:development -p --config webpack.config.prod.babel.js","build":"yarn build:development && yarn build:production","postbuild":"documentation build src/mermaidAPI.js src/config.js --shallow -f md --markdown-toc false | gsed \'1i---\\\\nsort: 3\\\\ntitle: Configurations\\\\n---\\\\n\' > docs/getting-started/Setup.md","build:watch":"yarn build --watch","minify":"minify ./dist/mermaid.js > ./dist/mermaid.min.js","release":"yarn build","lint":"eslint src","e2e:depr":"yarn lint && jest e2e --config e2e/jest.config.js","cypress":"percy exec -- cypress run","e2e":"start-server-and-test dev http://localhost:9000/ cypress","e2e-upd":"yarn lint && jest e2e -u --config e2e/jest.config.js","dev":"webpack-dev-server --config webpack.config.e2e.js","test":"yarn lint && jest src/.*","test:watch":"jest --watch src","prepublishOnly":"yarn build && yarn test && yarn e2e","prepare":"yarn build"},"repository":{"type":"git","url":"https://github.com/knsv/mermaid"},"author":"Knut Sveidqvist","license":"MIT","standard":{"ignore":["**/parser/*.js","dist/**/*.js","cypress/**/*.js"],"globals":["page"]},"dependencies":{"@braintree/sanitize-url":"^3.1.0","babel-eslint":"^10.1.0","d3":"^5.7.0","dagre":"^0.8.4","dagre-d3":"^0.6.4","entity-decode":"^2.0.2","graphlib":"^2.1.7","he":"^1.2.0","khroma":"^1.1.0","minify":"^4.1.1","moment-mini":"^2.22.1","stylis":"^3.5.2"},"devDependencies":{"@babel/core":"^7.2.2","@babel/preset-env":"^7.8.4","@babel/register":"^7.0.0","@percy/cypress":"*","babel-core":"7.0.0-bridge.0","babel-jest":"^24.9.0","babel-loader":"^8.0.4","coveralls":"^3.0.2","css-loader":"^2.0.1","css-to-string-loader":"^0.1.3","cypress":"4.0.1","documentation":"^12.0.1","eslint":"^6.3.0","eslint-config-prettier":"^6.3.0","eslint-plugin-prettier":"^3.1.0","husky":"^1.2.1","identity-obj-proxy":"^3.0.0","jest":"^24.9.0","jison":"^0.4.18","moment":"^2.23.0","node-sass":"^4.12.0","prettier":"^1.18.2","puppeteer":"^1.17.0","sass-loader":"^7.1.0","start-server-and-test":"^1.10.6","terser-webpack-plugin":"^2.2.2","webpack":"^4.41.2","webpack-bundle-analyzer":"^3.7.0","webpack-cli":"^3.1.2","webpack-dev-server":"^3.4.1","webpack-node-externals":"^1.7.2","yarn-upgrade-all":"^0.5.0"},"files":["dist"],"yarn-upgrade-all":{"ignore":["babel-core"]},"sideEffects":["**/*.css","**/*.scss"],"husky":{"hooks":{"pre-push":"yarn test"}}}')},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=new(n(176).default)({r:0,g:0,b:0,a:0},"transparent");e.default=r},function(t,e,n){var r=n(58),i=n(59);t.exports=function(t,e,n,a){var o=!n;n||(n={});for(var s=-1,c=e.length;++s-1&&t%1==0&&t-1}(s)?s:(n=s.match(a))?(e=n[0],r.test(e)?"about:blank":s):"about:blank"}}},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[2,3],n=[1,7],r=[7,12,15,17,19,20,21],i=[7,11,12,15,17,19,20,21],a=[2,20],o=[1,32],s={trace:function(){},yy:{},symbols_:{error:2,start:3,GG:4,":":5,document:6,EOF:7,DIR:8,options:9,body:10,OPT:11,NL:12,line:13,statement:14,COMMIT:15,commit_arg:16,BRANCH:17,ID:18,CHECKOUT:19,MERGE:20,RESET:21,reset_arg:22,STR:23,HEAD:24,reset_parents:25,CARET:26,$accept:0,$end:1},terminals_:{2:"error",4:"GG",5:":",7:"EOF",8:"DIR",11:"OPT",12:"NL",15:"COMMIT",17:"BRANCH",18:"ID",19:"CHECKOUT",20:"MERGE",21:"RESET",23:"STR",24:"HEAD",26:"CARET"},productions_:[0,[3,4],[3,5],[6,0],[6,2],[9,2],[9,1],[10,0],[10,2],[13,2],[13,1],[14,2],[14,2],[14,2],[14,2],[14,2],[16,0],[16,1],[22,2],[22,2],[25,0],[25,2]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 1:return a[s-1];case 2:return r.setDirection(a[s-3]),a[s-1];case 4:r.setOptions(a[s-1]),this.$=a[s];break;case 5:a[s-1]+=a[s],this.$=a[s-1];break;case 7:this.$=[];break;case 8:a[s-1].push(a[s]),this.$=a[s-1];break;case 9:this.$=a[s-1];break;case 11:r.commit(a[s]);break;case 12:r.branch(a[s]);break;case 13:r.checkout(a[s]);break;case 14:r.merge(a[s]);break;case 15:r.reset(a[s]);break;case 16:this.$="";break;case 17:this.$=a[s];break;case 18:this.$=a[s-1]+":"+a[s];break;case 19:this.$=a[s-1]+":"+r.count,r.count=0;break;case 20:r.count=0;break;case 21:r.count+=1}},table:[{3:1,4:[1,2]},{1:[3]},{5:[1,3],8:[1,4]},{6:5,7:e,9:6,12:n},{5:[1,8]},{7:[1,9]},t(r,[2,7],{10:10,11:[1,11]}),t(i,[2,6]),{6:12,7:e,9:6,12:n},{1:[2,1]},{7:[2,4],12:[1,15],13:13,14:14,15:[1,16],17:[1,17],19:[1,18],20:[1,19],21:[1,20]},t(i,[2,5]),{7:[1,21]},t(r,[2,8]),{12:[1,22]},t(r,[2,10]),{12:[2,16],16:23,23:[1,24]},{18:[1,25]},{18:[1,26]},{18:[1,27]},{18:[1,30],22:28,24:[1,29]},{1:[2,2]},t(r,[2,9]),{12:[2,11]},{12:[2,17]},{12:[2,12]},{12:[2,13]},{12:[2,14]},{12:[2,15]},{12:a,25:31,26:o},{12:a,25:33,26:o},{12:[2,18]},{12:a,25:34,26:o},{12:[2,19]},{12:[2,21]}],defaultActions:{9:[2,1],21:[2,2],23:[2,11],24:[2,17],25:[2,12],26:[2,13],27:[2,14],28:[2,15],31:[2,18],33:[2,19],34:[2,21]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},c={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return 12;case 1:case 2:case 3:break;case 4:return 4;case 5:return 15;case 6:return 17;case 7:return 20;case 8:return 21;case 9:return 19;case 10:case 11:return 8;case 12:return 5;case 13:return 26;case 14:this.begin("options");break;case 15:this.popState();break;case 16:return 11;case 17:this.begin("string");break;case 18:this.popState();break;case 19:return 23;case 20:return 18;case 21:return 7}},rules:[/^(?:(\r?\n)+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:gitGraph\b)/i,/^(?:commit\b)/i,/^(?:branch\b)/i,/^(?:merge\b)/i,/^(?:reset\b)/i,/^(?:checkout\b)/i,/^(?:LR\b)/i,/^(?:BT\b)/i,/^(?::)/i,/^(?:\^)/i,/^(?:options\r?\n)/i,/^(?:end\r?\n)/i,/^(?:[^\n]+\r?\n)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[a-zA-Z][-_\.a-zA-Z0-9]*[-_a-zA-Z0-9])/i,/^(?:$)/i],conditions:{options:{rules:[15,16],inclusive:!1},string:{rules:[18,19],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,20,21],inclusive:!0}}};function u(){this.yy={}}return s.lexer=c,u.prototype=s,s.Parser=u,new u}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[6,9,10],n={trace:function(){},yy:{},symbols_:{error:2,start:3,info:4,document:5,EOF:6,line:7,statement:8,NL:9,showInfo:10,$accept:0,$end:1},terminals_:{2:"error",4:"info",6:"EOF",9:"NL",10:"showInfo"},productions_:[0,[3,3],[5,0],[5,2],[7,1],[7,1],[8,1]],performAction:function(t,e,n,r,i,a,o){switch(a.length,i){case 1:return r;case 4:break;case 6:r.setInfo(!0)}},table:[{3:1,4:[1,2]},{1:[3]},t(e,[2,2],{5:3}),{6:[1,4],7:5,8:6,9:[1,7],10:[1,8]},{1:[2,1]},t(e,[2,3]),t(e,[2,4]),t(e,[2,5]),t(e,[2,6])],defaultActions:{4:[2,1]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},r={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return 4;case 1:return 9;case 2:return"space";case 3:return 10;case 4:return 6;case 5:return"TXT"}},rules:[/^(?:info\b)/i,/^(?:[\s\n\r]+)/i,/^(?:[\s]+)/i,/^(?:showInfo\b)/i,/^(?:$)/i,/^(?:.)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5],inclusive:!0}}};function i(){this.yy={}}return n.lexer=r,i.prototype=n,n.Parser=i,new i}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,4],n=[1,5],r=[1,6],i=[1,7],a=[1,9],o=[1,10,12,19,20,21,22],s=[1,6,10,12,19,20,21,22],c=[19,20,21],u=[1,22],l=[6,19,20,21,22],h={trace:function(){},yy:{},symbols_:{error:2,start:3,eol:4,directive:5,PIE:6,document:7,line:8,statement:9,txt:10,value:11,title:12,title_value:13,openDirective:14,typeDirective:15,closeDirective:16,":":17,argDirective:18,NEWLINE:19,";":20,EOF:21,open_directive:22,type_directive:23,arg_directive:24,close_directive:25,$accept:0,$end:1},terminals_:{2:"error",6:"PIE",10:"txt",11:"value",12:"title",13:"title_value",17:":",19:"NEWLINE",20:";",21:"EOF",22:"open_directive",23:"type_directive",24:"arg_directive",25:"close_directive"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[9,0],[9,2],[9,2],[9,1],[5,3],[5,5],[4,1],[4,1],[4,1],[14,1],[15,1],[18,1],[16,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 6:this.$=a[s-1];break;case 8:r.addSection(a[s-1],r.cleanupValue(a[s]));break;case 9:this.$=a[s].trim(),r.setTitle(this.$);break;case 16:r.parseDirective("%%{","open_directive");break;case 17:r.parseDirective(a[s],"type_directive");break;case 18:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 19:r.parseDirective("}%%","close_directive","pie")}},table:[{3:1,4:2,5:3,6:e,14:8,19:n,20:r,21:i,22:a},{1:[3]},{3:10,4:2,5:3,6:e,14:8,19:n,20:r,21:i,22:a},{3:11,4:2,5:3,6:e,14:8,19:n,20:r,21:i,22:a},t(o,[2,4],{7:12}),t(s,[2,13]),t(s,[2,14]),t(s,[2,15]),{15:13,23:[1,14]},{23:[2,16]},{1:[2,1]},{1:[2,2]},t(c,[2,7],{14:8,8:15,9:16,5:19,1:[2,3],10:[1,17],12:[1,18],22:a}),{16:20,17:[1,21],25:u},t([17,25],[2,17]),t(o,[2,5]),{4:23,19:n,20:r,21:i},{11:[1,24]},{13:[1,25]},t(c,[2,10]),t(l,[2,11]),{18:26,24:[1,27]},t(l,[2,19]),t(o,[2,6]),t(c,[2,8]),t(c,[2,9]),{16:28,25:u},{25:[2,18]},t(l,[2,12])],defaultActions:{9:[2,16],10:[2,1],11:[2,2],27:[2,18]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},f={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),22;case 1:return this.begin("type_directive"),23;case 2:return this.popState(),this.begin("arg_directive"),17;case 3:return this.popState(),this.popState(),25;case 4:return 24;case 5:break;case 6:console.log("Crap after close");break;case 7:return 19;case 8:case 9:break;case 10:return this.begin("title"),12;case 11:return this.popState(),"title_value";case 12:this.begin("string");break;case 13:this.popState();break;case 14:return"txt";case 15:return 6;case 16:return"value";case 17:return 21}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:[\s]+)/i,/^(?:title\b)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:pie\b)/i,/^(?::[\s]*[\d]+(?:\.[\d]+)?)/i,/^(?:$)/i],conditions:{close_directive:{rules:[],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},open_directive:{rules:[1],inclusive:!1},title:{rules:[11],inclusive:!1},string:{rules:[13,14],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,12,15,16,17],inclusive:!0}}};function d(){this.yy={}}return h.lexer=f,d.prototype=h,h.Parser=d,new d}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,2],n=[1,5],r=[6,9,11,20,30],i=[1,17],a=[1,20],o=[1,24],s=[1,25],c=[1,26],u=[1,27],l=[20,27,28],h=[4,6,9,11,20,30],f=[23,24,25,26],d={trace:function(){},yy:{},symbols_:{error:2,start:3,ER_DIAGRAM:4,document:5,EOF:6,directive:7,line:8,SPACE:9,statement:10,NEWLINE:11,openDirective:12,typeDirective:13,closeDirective:14,":":15,argDirective:16,entityName:17,relSpec:18,role:19,ALPHANUM:20,cardinality:21,relType:22,ZERO_OR_ONE:23,ZERO_OR_MORE:24,ONE_OR_MORE:25,ONLY_ONE:26,NON_IDENTIFYING:27,IDENTIFYING:28,WORD:29,open_directive:30,type_directive:31,arg_directive:32,close_directive:33,$accept:0,$end:1},terminals_:{2:"error",4:"ER_DIAGRAM",6:"EOF",9:"SPACE",11:"NEWLINE",15:":",20:"ALPHANUM",23:"ZERO_OR_ONE",24:"ZERO_OR_MORE",25:"ONE_OR_MORE",26:"ONLY_ONE",27:"NON_IDENTIFYING",28:"IDENTIFYING",29:"WORD",30:"open_directive",31:"type_directive",32:"arg_directive",33:"close_directive"},productions_:[0,[3,3],[3,2],[5,0],[5,2],[8,2],[8,1],[8,1],[8,1],[7,4],[7,6],[10,1],[10,5],[17,1],[18,3],[21,1],[21,1],[21,1],[21,1],[22,1],[22,1],[19,1],[19,1],[12,1],[13,1],[16,1],[14,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 1:break;case 3:this.$=[];break;case 4:a[s-1].push(a[s]),this.$=a[s-1];break;case 5:case 6:this.$=a[s];break;case 7:case 8:this.$=[];break;case 12:r.addEntity(a[s-4]),r.addEntity(a[s-2]),r.addRelationship(a[s-4],a[s],a[s-2],a[s-3]);break;case 13:this.$=a[s];break;case 14:this.$={cardA:a[s],relType:a[s-1],cardB:a[s-2]};break;case 15:this.$=r.Cardinality.ZERO_OR_ONE;break;case 16:this.$=r.Cardinality.ZERO_OR_MORE;break;case 17:this.$=r.Cardinality.ONE_OR_MORE;break;case 18:this.$=r.Cardinality.ONLY_ONE;break;case 19:this.$=r.Identification.NON_IDENTIFYING;break;case 20:this.$=r.Identification.IDENTIFYING;break;case 21:this.$=a[s].replace(/"/g,"");break;case 22:this.$=a[s];break;case 23:r.parseDirective("%%{","open_directive");break;case 24:r.parseDirective(a[s],"type_directive");break;case 25:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 26:r.parseDirective("}%%","close_directive","er")}},table:[{3:1,4:e,7:3,12:4,30:n},{1:[3]},t(r,[2,3],{5:6}),{3:7,4:e,7:3,12:4,30:n},{13:8,31:[1,9]},{31:[2,23]},{6:[1,10],7:15,8:11,9:[1,12],10:13,11:[1,14],12:4,17:16,20:i,30:n},{1:[2,2]},{14:18,15:[1,19],33:a},t([15,33],[2,24]),t(r,[2,8],{1:[2,1]}),t(r,[2,4]),{7:15,10:21,12:4,17:16,20:i,30:n},t(r,[2,6]),t(r,[2,7]),t(r,[2,11]),{18:22,21:23,23:o,24:s,25:c,26:u},t([15,23,24,25,26],[2,13]),{11:[1,28]},{16:29,32:[1,30]},{11:[2,26]},t(r,[2,5]),{17:31,20:i},{22:32,27:[1,33],28:[1,34]},t(l,[2,15]),t(l,[2,16]),t(l,[2,17]),t(l,[2,18]),t(h,[2,9]),{14:35,33:a},{33:[2,25]},{15:[1,36]},{21:37,23:o,24:s,25:c,26:u},t(f,[2,19]),t(f,[2,20]),{11:[1,38]},{19:39,20:[1,41],29:[1,40]},{20:[2,14]},t(h,[2,10]),t(r,[2,12]),t(r,[2,21]),t(r,[2,22])],defaultActions:{5:[2,23],7:[2,2],20:[2,26],30:[2,25],37:[2,14]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},p={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){return this.next()||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),30;case 1:return this.begin("type_directive"),31;case 2:return this.popState(),this.begin("arg_directive"),15;case 3:return this.popState(),this.popState(),33;case 4:return 32;case 5:case 6:break;case 7:return 11;case 8:break;case 9:return 9;case 10:return 29;case 11:return 4;case 12:return 23;case 13:return 24;case 14:return 25;case 15:return 26;case 16:return 23;case 17:return 24;case 18:return 25;case 19:return 27;case 20:return 28;case 21:case 22:return 27;case 23:return 20;case 24:return e.yytext[0];case 25:return 6}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:[\s]+)/i,/^(?:"[^"]*")/i,/^(?:erDiagram\b)/i,/^(?:\|o\b)/i,/^(?:\}o\b)/i,/^(?:\}\|)/i,/^(?:\|\|)/i,/^(?:o\|)/i,/^(?:o\{)/i,/^(?:\|\{)/i,/^(?:\.\.)/i,/^(?:--)/i,/^(?:\.-)/i,/^(?:-\.)/i,/^(?:[A-Za-z][A-Za-z0-9\-]*)/i,/^(?:.)/i,/^(?:$)/i],conditions:{open_directive:{rules:[1],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],inclusive:!0}}};function g(){this.yy={}}return d.lexer=p,g.prototype=d,d.Parser=g,new g}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),function(t){t[t.ALL=0]="ALL",t[t.RGB=1]="RGB",t[t.HSL=2]="HSL"}(r||(r={})),e.TYPE=r},function(t,e,n){"use strict";var r=n(10);function i(t){this._isDirected=!r.has(t,"directed")||t.directed,this._isMultigraph=!!r.has(t,"multigraph")&&t.multigraph,this._isCompound=!!r.has(t,"compound")&&t.compound,this._label=void 0,this._defaultNodeLabelFn=r.constant(void 0),this._defaultEdgeLabelFn=r.constant(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children["\0"]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}function a(t,e){t[e]?t[e]++:t[e]=1}function o(t,e){--t[e]||delete t[e]}function s(t,e,n,i){var a=""+e,o=""+n;if(!t&&a>o){var s=a;a=o,o=s}return a+""+o+""+(r.isUndefined(i)?"\0":i)}function c(t,e,n,r){var i=""+e,a=""+n;if(!t&&i>a){var o=i;i=a,a=o}var s={v:i,w:a};return r&&(s.name=r),s}function u(t,e){return s(t,e.v,e.w,e.name)}t.exports=i,i.prototype._nodeCount=0,i.prototype._edgeCount=0,i.prototype.isDirected=function(){return this._isDirected},i.prototype.isMultigraph=function(){return this._isMultigraph},i.prototype.isCompound=function(){return this._isCompound},i.prototype.setGraph=function(t){return this._label=t,this},i.prototype.graph=function(){return this._label},i.prototype.setDefaultNodeLabel=function(t){return r.isFunction(t)||(t=r.constant(t)),this._defaultNodeLabelFn=t,this},i.prototype.nodeCount=function(){return this._nodeCount},i.prototype.nodes=function(){return r.keys(this._nodes)},i.prototype.sources=function(){var t=this;return r.filter(this.nodes(),(function(e){return r.isEmpty(t._in[e])}))},i.prototype.sinks=function(){var t=this;return r.filter(this.nodes(),(function(e){return r.isEmpty(t._out[e])}))},i.prototype.setNodes=function(t,e){var n=arguments,i=this;return r.each(t,(function(t){n.length>1?i.setNode(t,e):i.setNode(t)})),this},i.prototype.setNode=function(t,e){return r.has(this._nodes,t)?(arguments.length>1&&(this._nodes[t]=e),this):(this._nodes[t]=arguments.length>1?e:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]="\0",this._children[t]={},this._children["\0"][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)},i.prototype.node=function(t){return this._nodes[t]},i.prototype.hasNode=function(t){return r.has(this._nodes,t)},i.prototype.removeNode=function(t){var e=this;if(r.has(this._nodes,t)){var n=function(t){e.removeEdge(e._edgeObjs[t])};delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],r.each(this.children(t),(function(t){e.setParent(t)})),delete this._children[t]),r.each(r.keys(this._in[t]),n),delete this._in[t],delete this._preds[t],r.each(r.keys(this._out[t]),n),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this},i.prototype.setParent=function(t,e){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(r.isUndefined(e))e="\0";else{for(var n=e+="";!r.isUndefined(n);n=this.parent(n))if(n===t)throw new Error("Setting "+e+" as parent of "+t+" would create a cycle");this.setNode(e)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=e,this._children[e][t]=!0,this},i.prototype._removeFromParentsChildList=function(t){delete this._children[this._parent[t]][t]},i.prototype.parent=function(t){if(this._isCompound){var e=this._parent[t];if("\0"!==e)return e}},i.prototype.children=function(t){if(r.isUndefined(t)&&(t="\0"),this._isCompound){var e=this._children[t];if(e)return r.keys(e)}else{if("\0"===t)return this.nodes();if(this.hasNode(t))return[]}},i.prototype.predecessors=function(t){var e=this._preds[t];if(e)return r.keys(e)},i.prototype.successors=function(t){var e=this._sucs[t];if(e)return r.keys(e)},i.prototype.neighbors=function(t){var e=this.predecessors(t);if(e)return r.union(e,this.successors(t))},i.prototype.isLeaf=function(t){return 0===(this.isDirected()?this.successors(t):this.neighbors(t)).length},i.prototype.filterNodes=function(t){var e=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});e.setGraph(this.graph());var n=this;r.each(this._nodes,(function(n,r){t(r)&&e.setNode(r,n)})),r.each(this._edgeObjs,(function(t){e.hasNode(t.v)&&e.hasNode(t.w)&&e.setEdge(t,n.edge(t))}));var i={};return this._isCompound&&r.each(e.nodes(),(function(t){e.setParent(t,function t(r){var a=n.parent(r);return void 0===a||e.hasNode(a)?(i[r]=a,a):a in i?i[a]:t(a)}(t))})),e},i.prototype.setDefaultEdgeLabel=function(t){return r.isFunction(t)||(t=r.constant(t)),this._defaultEdgeLabelFn=t,this},i.prototype.edgeCount=function(){return this._edgeCount},i.prototype.edges=function(){return r.values(this._edgeObjs)},i.prototype.setPath=function(t,e){var n=this,i=arguments;return r.reduce(t,(function(t,r){return i.length>1?n.setEdge(t,r,e):n.setEdge(t,r),r})),this},i.prototype.setEdge=function(){var t,e,n,i,o=!1,u=arguments[0];"object"==typeof u&&null!==u&&"v"in u?(t=u.v,e=u.w,n=u.name,2===arguments.length&&(i=arguments[1],o=!0)):(t=u,e=arguments[1],n=arguments[3],arguments.length>2&&(i=arguments[2],o=!0)),t=""+t,e=""+e,r.isUndefined(n)||(n=""+n);var l=s(this._isDirected,t,e,n);if(r.has(this._edgeLabels,l))return o&&(this._edgeLabels[l]=i),this;if(!r.isUndefined(n)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(t),this.setNode(e),this._edgeLabels[l]=o?i:this._defaultEdgeLabelFn(t,e,n);var h=c(this._isDirected,t,e,n);return t=h.v,e=h.w,Object.freeze(h),this._edgeObjs[l]=h,a(this._preds[e],t),a(this._sucs[t],e),this._in[e][l]=h,this._out[t][l]=h,this._edgeCount++,this},i.prototype.edge=function(t,e,n){var r=1===arguments.length?u(this._isDirected,arguments[0]):s(this._isDirected,t,e,n);return this._edgeLabels[r]},i.prototype.hasEdge=function(t,e,n){var i=1===arguments.length?u(this._isDirected,arguments[0]):s(this._isDirected,t,e,n);return r.has(this._edgeLabels,i)},i.prototype.removeEdge=function(t,e,n){var r=1===arguments.length?u(this._isDirected,arguments[0]):s(this._isDirected,t,e,n),i=this._edgeObjs[r];return i&&(t=i.v,e=i.w,delete this._edgeLabels[r],delete this._edgeObjs[r],o(this._preds[e],t),o(this._sucs[t],e),delete this._in[e][r],delete this._out[t][r],this._edgeCount--),this},i.prototype.inEdges=function(t,e){var n=this._in[t];if(n){var i=r.values(n);return e?r.filter(i,(function(t){return t.v===e})):i}},i.prototype.outEdges=function(t,e){var n=this._out[t];if(n){var i=r.values(n);return e?r.filter(i,(function(t){return t.w===e})):i}},i.prototype.nodeEdges=function(t,e){var n=this.inEdges(t,e);if(n)return n.concat(this.outEdges(t,e))}},function(t,e,n){var r=n(33)(n(16),"Map");t.exports=r},function(t,e,n){var r=n(217),i=n(224),a=n(226),o=n(227),s=n(228);function c(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e-1&&t%1==0&&t<=9007199254740991}},function(t,e,n){(function(t){var r=n(109),i=e&&!e.nodeType&&e,a=i&&"object"==typeof t&&t&&!t.nodeType&&t,o=a&&a.exports===i&&r.process,s=function(){try{return a&&a.require&&a.require("util").types||o&&o.binding&&o.binding("util")}catch(t){}}();t.exports=s}).call(this,n(7)(t))},function(t,e,n){var r=n(62),i=n(234),a=Object.prototype.hasOwnProperty;t.exports=function(t){if(!r(t))return i(t);var e=[];for(var n in Object(t))a.call(t,n)&&"constructor"!=n&&e.push(n);return e}},function(t,e,n){var r=n(116),i=n(117),a=Object.prototype.propertyIsEnumerable,o=Object.getOwnPropertySymbols,s=o?function(t){return null==t?[]:(t=Object(t),r(o(t),(function(e){return a.call(t,e)})))}:i;t.exports=s},function(t,e){t.exports=function(t,e){for(var n=-1,r=e.length,i=t.length;++n0&&a(l)?n>1?t(l,n-1,a,o,s):r(s,l):o||(s[s.length]=l)}return s}},function(t,e,n){var r=n(42);t.exports=function(t,e,n){for(var i=-1,a=t.length;++i4,u=c?1:17,l=c?8:4,h=s?0:-1,f=c?255:15;return i.default.set({r:(r>>l*(h+3)&f)*u,g:(r>>l*(h+2)&f)*u,b:(r>>l*(h+1)&f)*u,a:s?(r&f)*u/255:1},t)}}},stringify:function(t){return t.a<1?"#"+a.DEC2HEX[Math.round(t.r)]+a.DEC2HEX[Math.round(t.g)]+a.DEC2HEX[Math.round(t.b)]+r.default.unit.frac2hex(t.a):"#"+a.DEC2HEX[Math.round(t.r)]+a.DEC2HEX[Math.round(t.g)]+a.DEC2HEX[Math.round(t.b)]}};e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(45),a=n(15);e.default=function(t,e,n,o){void 0===o&&(o=1);var s=i.default.set({h:r.default.channel.clamp.h(t),s:r.default.channel.clamp.s(e),l:r.default.channel.clamp.l(n),a:r.default.channel.clamp.a(o)});return a.default.stringify(s)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"a")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15);e.default=function(t){var e=i.default.parse(t),n=e.r,a=e.g,o=e.b,s=.2126*r.default.channel.toLinear(n)+.7152*r.default.channel.toLinear(a)+.0722*r.default.channel.toLinear(o);return r.default.lang.round(s)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(102);e.default=function(t){return r.default(t)>=.5}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"a",e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"a",-e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15),i=n(52);e.default=function(t,e){var n=r.default.parse(t),a={};for(var o in e)e[o]&&(a[o]=n[o]+e[o]);return i.default(t,a)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15),i=n(51);e.default=function(t,e,n){void 0===n&&(n=50);var a=r.default.parse(t),o=a.r,s=a.g,c=a.b,u=a.a,l=r.default.parse(e),h=l.r,f=l.g,d=l.b,p=l.a,g=n/100,y=2*g-1,v=u-p,m=((y*v==-1?y:(y+v)/(1+y*v))+1)/2,b=1-m,x=o*m+h*b,_=s*m+f*b,k=c*m+d*b,w=u*g+p*(1-g);return i.default(x,_,k,w)}},function(t,e,n){var r=n(53),i=n(79),a=n(58),o=n(229),s=n(235),c=n(114),u=n(115),l=n(238),h=n(239),f=n(119),d=n(240),p=n(41),g=n(244),y=n(245),v=n(124),m=n(5),b=n(39),x=n(249),_=n(11),k=n(251),w=n(30),E={};E["[object Arguments]"]=E["[object Array]"]=E["[object ArrayBuffer]"]=E["[object DataView]"]=E["[object Boolean]"]=E["[object Date]"]=E["[object Float32Array]"]=E["[object Float64Array]"]=E["[object Int8Array]"]=E["[object Int16Array]"]=E["[object Int32Array]"]=E["[object Map]"]=E["[object Number]"]=E["[object Object]"]=E["[object RegExp]"]=E["[object Set]"]=E["[object String]"]=E["[object Symbol]"]=E["[object Uint8Array]"]=E["[object Uint8ClampedArray]"]=E["[object Uint16Array]"]=E["[object Uint32Array]"]=!0,E["[object Error]"]=E["[object Function]"]=E["[object WeakMap]"]=!1,t.exports=function t(e,n,T,C,A,S){var M,O=1&n,D=2&n,N=4&n;if(T&&(M=A?T(e,C,A,S):T(e)),void 0!==M)return M;if(!_(e))return e;var B=m(e);if(B){if(M=g(e),!O)return u(e,M)}else{var L=p(e),F="[object Function]"==L||"[object GeneratorFunction]"==L;if(b(e))return c(e,O);if("[object Object]"==L||"[object Arguments]"==L||F&&!A){if(M=D||F?{}:v(e),!O)return D?h(e,s(M,e)):l(e,o(M,e))}else{if(!E[L])return A?e:{};M=y(e,L,O)}}S||(S=new r);var P=S.get(e);if(P)return P;S.set(e,M),k(e)?e.forEach((function(r){M.add(t(r,n,T,r,e,S))})):x(e)&&e.forEach((function(r,i){M.set(i,t(r,n,T,i,e,S))}));var I=N?D?d:f:D?keysIn:w,j=B?void 0:I(e);return i(j||e,(function(r,i){j&&(r=e[i=r]),a(M,i,t(r,n,T,i,e,S))})),M}},function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(this,n(211))},function(t,e){var n=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return n.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},function(t,e,n){var r=n(33),i=function(){try{var t=r(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();t.exports=i},function(t,e,n){var r=n(230),i=n(47),a=n(5),o=n(39),s=n(60),c=n(48),u=Object.prototype.hasOwnProperty;t.exports=function(t,e){var n=a(t),l=!n&&i(t),h=!n&&!l&&o(t),f=!n&&!l&&!h&&c(t),d=n||l||h||f,p=d?r(t.length,String):[],g=p.length;for(var y in t)!e&&!u.call(t,y)||d&&("length"==y||h&&("offset"==y||"parent"==y)||f&&("buffer"==y||"byteLength"==y||"byteOffset"==y)||s(y,g))||p.push(y);return p}},function(t,e){t.exports=function(t,e){return function(n){return t(e(n))}}},function(t,e,n){(function(t){var r=n(16),i=e&&!e.nodeType&&e,a=i&&"object"==typeof t&&t&&!t.nodeType&&t,o=a&&a.exports===i?r.Buffer:void 0,s=o?o.allocUnsafe:void 0;t.exports=function(t,e){if(e)return t.slice();var n=t.length,r=s?s(n):new t.constructor(n);return t.copy(r),r}}).call(this,n(7)(t))},function(t,e){t.exports=function(t,e){var n=-1,r=t.length;for(e||(e=Array(r));++nl))return!1;var f=c.get(t);if(f&&c.get(e))return f==e;var d=-1,p=!0,g=2&n?new r:void 0;for(c.set(t,e),c.set(e,t);++d0&&(a=c.removeMin(),(o=s[a]).distance!==Number.POSITIVE_INFINITY);)r(a).forEach(u);return s}(t,String(e),n||a,r||function(e){return t.outEdges(e)})};var a=r.constant(1)},function(t,e,n){var r=n(10);function i(){this._arr=[],this._keyIndices={}}t.exports=i,i.prototype.size=function(){return this._arr.length},i.prototype.keys=function(){return this._arr.map((function(t){return t.key}))},i.prototype.has=function(t){return r.has(this._keyIndices,t)},i.prototype.priority=function(t){var e=this._keyIndices[t];if(void 0!==e)return this._arr[e].priority},i.prototype.min=function(){if(0===this.size())throw new Error("Queue underflow");return this._arr[0].key},i.prototype.add=function(t,e){var n=this._keyIndices;if(t=String(t),!r.has(n,t)){var i=this._arr,a=i.length;return n[t]=a,i.push({key:t,priority:e}),this._decrease(a),!0}return!1},i.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var t=this._arr.pop();return delete this._keyIndices[t.key],this._heapify(0),t.key},i.prototype.decrease=function(t,e){var n=this._keyIndices[t];if(e>this._arr[n].priority)throw new Error("New priority is greater than current priority. Key: "+t+" Old: "+this._arr[n].priority+" New: "+e);this._arr[n].priority=e,this._decrease(n)},i.prototype._heapify=function(t){var e=this._arr,n=2*t,r=n+1,i=t;n>1].priority2?e[2]:void 0;for(u&&a(e[0],e[1],u)&&(r=1);++n1&&o.sort((function(t,e){var r=t.x-n.x,i=t.y-n.y,a=Math.sqrt(r*r+i*i),o=e.x-n.x,s=e.y-n.y,c=Math.sqrt(o*o+s*s);return aMath.abs(o)*u?(s<0&&(u=-u),n=0===s?0:u*o/s,r=u):(o<0&&(c=-c),n=c,r=0===o?0:c*s/o),{x:i+n,y:a+r}}},function(t,e,n){t.exports=function t(e){"use strict";var n=/^\0+/g,r=/[\0\r\f]/g,i=/: */g,a=/zoo|gra/,o=/([,: ])(transform)/g,s=/,+\s*(?![^(]*[)])/g,c=/ +\s*(?![^(]*[)])/g,u=/ *[\0] */g,l=/,\r+?/g,h=/([\t\r\n ])*\f?&/g,f=/:global\(((?:[^\(\)\[\]]*|\[.*\]|\([^\(\)]*\))*)\)/g,d=/\W+/g,p=/@(k\w+)\s*(\S*)\s*/,g=/::(place)/g,y=/:(read-only)/g,v=/\s+(?=[{\];=:>])/g,m=/([[}=:>])\s+/g,b=/(\{[^{]+?);(?=\})/g,x=/\s{2,}/g,_=/([^\(])(:+) */g,k=/[svh]\w+-[tblr]{2}/,w=/\(\s*(.*)\s*\)/g,E=/([\s\S]*?);/g,T=/-self|flex-/g,C=/[^]*?(:[rp][el]a[\w-]+)[^]*/,A=/stretch|:\s*\w+\-(?:conte|avail)/,S=/([^-])(image-set\()/,M="-webkit-",O="-moz-",D="-ms-",N=1,B=1,L=0,F=1,P=1,I=1,j=0,R=0,Y=0,z=[],U=[],$=0,W=null,V=0,H=1,G="",q="",X="";function Z(t,e,i,a,o){for(var s,c,l=0,h=0,f=0,d=0,v=0,m=0,b=0,x=0,k=0,E=0,T=0,C=0,A=0,S=0,O=0,D=0,j=0,U=0,W=0,Q=i.length,it=Q-1,at="",ot="",st="",ct="",ut="",lt="";O0&&(ot=ot.replace(r,"")),ot.trim().length>0)){switch(b){case 32:case 9:case 59:case 13:case 10:break;default:ot+=i.charAt(O)}b=59}if(1===j)switch(b){case 123:case 125:case 59:case 34:case 39:case 40:case 41:case 44:j=0;case 9:case 13:case 10:case 32:break;default:for(j=0,W=O,v=b,O--,b=59;W0&&(++O,b=v);case 123:W=Q}}switch(b){case 123:for(v=(ot=ot.trim()).charCodeAt(0),T=1,W=++O;O0&&(ot=ot.replace(r,"")),m=ot.charCodeAt(1)){case 100:case 109:case 115:case 45:s=e;break;default:s=z}if(W=(st=Z(e,s,st,m,o+1)).length,Y>0&&0===W&&(W=ot.length),$>0&&(c=nt(3,st,s=J(z,ot,U),e,B,N,W,m,o,a),ot=s.join(""),void 0!==c&&0===(W=(st=c.trim()).length)&&(m=0,st="")),W>0)switch(m){case 115:ot=ot.replace(w,et);case 100:case 109:case 45:st=ot+"{"+st+"}";break;case 107:st=(ot=ot.replace(p,"$1 $2"+(H>0?G:"")))+"{"+st+"}",st=1===P||2===P&&tt("@"+st,3)?"@"+M+st+"@"+st:"@"+st;break;default:st=ot+st,112===a&&(ct+=st,st="")}else st="";break;default:st=Z(e,J(e,ot,U),st,a,o+1)}ut+=st,C=0,j=0,S=0,D=0,U=0,A=0,ot="",st="",b=i.charCodeAt(++O);break;case 125:case 59:if((W=(ot=(D>0?ot.replace(r,""):ot).trim()).length)>1)switch(0===S&&(45===(v=ot.charCodeAt(0))||v>96&&v<123)&&(W=(ot=ot.replace(" ",":")).length),$>0&&void 0!==(c=nt(1,ot,e,t,B,N,ct.length,a,o,a))&&0===(W=(ot=c.trim()).length)&&(ot="\0\0"),v=ot.charCodeAt(0),m=ot.charCodeAt(1),v){case 0:break;case 64:if(105===m||99===m){lt+=ot+i.charAt(O);break}default:if(58===ot.charCodeAt(W-1))break;ct+=K(ot,v,m,ot.charCodeAt(2))}C=0,j=0,S=0,D=0,U=0,ot="",b=i.charCodeAt(++O)}}switch(b){case 13:case 10:if(h+d+f+l+R===0)switch(E){case 41:case 39:case 34:case 64:case 126:case 62:case 42:case 43:case 47:case 45:case 58:case 44:case 59:case 123:case 125:break;default:S>0&&(j=1)}47===h?h=0:F+C===0&&107!==a&&ot.length>0&&(D=1,ot+="\0"),$*V>0&&nt(0,ot,e,t,B,N,ct.length,a,o,a),N=1,B++;break;case 59:case 125:if(h+d+f+l===0){N++;break}default:switch(N++,at=i.charAt(O),b){case 9:case 32:if(d+l+h===0)switch(x){case 44:case 58:case 9:case 32:at="";break;default:32!==b&&(at=" ")}break;case 0:at="\\0";break;case 12:at="\\f";break;case 11:at="\\v";break;case 38:d+h+l===0&&F>0&&(U=1,D=1,at="\f"+at);break;case 108:if(d+h+l+L===0&&S>0)switch(O-S){case 2:112===x&&58===i.charCodeAt(O-3)&&(L=x);case 8:111===k&&(L=k)}break;case 58:d+h+l===0&&(S=O);break;case 44:h+f+d+l===0&&(D=1,at+="\r");break;case 34:case 39:0===h&&(d=d===b?0:0===d?b:d);break;case 91:d+h+f===0&&l++;break;case 93:d+h+f===0&&l--;break;case 41:d+h+l===0&&f--;break;case 40:if(d+h+l===0){if(0===C)switch(2*x+3*k){case 533:break;default:T=0,C=1}f++}break;case 64:h+f+d+l+S+A===0&&(A=1);break;case 42:case 47:if(d+l+f>0)break;switch(h){case 0:switch(2*b+3*i.charCodeAt(O+1)){case 235:h=47;break;case 220:W=O,h=42}break;case 42:47===b&&42===x&&W+2!==O&&(33===i.charCodeAt(W+2)&&(ct+=i.substring(W,O+1)),at="",h=0)}}if(0===h){if(F+d+l+A===0&&107!==a&&59!==b)switch(b){case 44:case 126:case 62:case 43:case 41:case 40:if(0===C){switch(x){case 9:case 32:case 10:case 13:at+="\0";break;default:at="\0"+at+(44===b?"":"\0")}D=1}else switch(b){case 40:S+7===O&&108===x&&(S=0),C=++T;break;case 41:0==(C=--T)&&(D=1,at+="\0")}break;case 9:case 32:switch(x){case 0:case 123:case 125:case 59:case 44:case 12:case 9:case 32:case 10:case 13:break;default:0===C&&(D=1,at+="\0")}}ot+=at,32!==b&&9!==b&&(E=b)}}k=x,x=b,O++}if(W=ct.length,Y>0&&0===W&&0===ut.length&&0===e[0].length==0&&(109!==a||1===e.length&&(F>0?q:X)===e[0])&&(W=e.join(",").length+2),W>0){if(s=0===F&&107!==a?function(t){for(var e,n,i=0,a=t.length,o=Array(a);i1)){if(f=c.charCodeAt(c.length-1),d=n.charCodeAt(0),e="",0!==l)switch(f){case 42:case 126:case 62:case 43:case 32:case 40:break;default:e=" "}switch(d){case 38:n=e+q;case 126:case 62:case 43:case 32:case 41:case 40:break;case 91:n=e+n+q;break;case 58:switch(2*n.charCodeAt(1)+3*n.charCodeAt(2)){case 530:if(I>0){n=e+n.substring(8,h-1);break}default:(l<1||s[l-1].length<1)&&(n=e+q+n)}break;case 44:e="";default:n=h>1&&n.indexOf(":")>0?e+n.replace(_,"$1"+q+"$2"):e+n+q}c+=n}o[i]=c.replace(r,"").trim()}return o}(e):e,$>0&&void 0!==(c=nt(2,ct,s,t,B,N,W,a,o,a))&&0===(ct=c).length)return lt+ct+ut;if(ct=s.join(",")+"{"+ct+"}",P*L!=0){switch(2!==P||tt(ct,2)||(L=0),L){case 111:ct=ct.replace(y,":-moz-$1")+ct;break;case 112:ct=ct.replace(g,"::-webkit-input-$1")+ct.replace(g,"::-moz-$1")+ct.replace(g,":-ms-input-$1")+ct}L=0}}return lt+ct+ut}function J(t,e,n){var r=e.trim().split(l),i=r,a=r.length,o=t.length;switch(o){case 0:case 1:for(var s=0,c=0===o?"":t[0]+" ";s0&&F>0)return i.replace(f,"$1").replace(h,"$1"+X);break;default:return t.trim()+i.replace(h,"$1"+t.trim())}default:if(n*F>0&&i.indexOf("\f")>0)return i.replace(h,(58===t.charCodeAt(0)?"":"$1")+t.trim())}return t+i}function K(t,e,n,r){var u,l=0,h=t+";",f=2*e+3*n+4*r;if(944===f)return function(t){var e=t.length,n=t.indexOf(":",9)+1,r=t.substring(0,n).trim(),i=t.substring(n,e-1).trim();switch(t.charCodeAt(9)*H){case 0:break;case 45:if(110!==t.charCodeAt(10))break;default:var a=i.split((i="",s)),o=0;for(n=0,e=a.length;o64&&h<90||h>96&&h<123||95===h||45===h&&45!==u.charCodeAt(1)))switch(isNaN(parseFloat(u))+(-1!==u.indexOf("("))){case 1:switch(u){case"infinite":case"alternate":case"backwards":case"running":case"normal":case"forwards":case"both":case"none":case"linear":case"ease":case"ease-in":case"ease-out":case"ease-in-out":case"paused":case"reverse":case"alternate-reverse":case"inherit":case"initial":case"unset":case"step-start":case"step-end":break;default:u+=G}}l[n++]=u}i+=(0===o?"":",")+l.join(" ")}}return i=r+i+";",1===P||2===P&&tt(i,1)?M+i+i:i}(h);if(0===P||2===P&&!tt(h,1))return h;switch(f){case 1015:return 97===h.charCodeAt(10)?M+h+h:h;case 951:return 116===h.charCodeAt(3)?M+h+h:h;case 963:return 110===h.charCodeAt(5)?M+h+h:h;case 1009:if(100!==h.charCodeAt(4))break;case 969:case 942:return M+h+h;case 978:return M+h+O+h+h;case 1019:case 983:return M+h+O+h+D+h+h;case 883:return 45===h.charCodeAt(8)?M+h+h:h.indexOf("image-set(",11)>0?h.replace(S,"$1-webkit-$2")+h:h;case 932:if(45===h.charCodeAt(4))switch(h.charCodeAt(5)){case 103:return M+"box-"+h.replace("-grow","")+M+h+D+h.replace("grow","positive")+h;case 115:return M+h+D+h.replace("shrink","negative")+h;case 98:return M+h+D+h.replace("basis","preferred-size")+h}return M+h+D+h+h;case 964:return M+h+D+"flex-"+h+h;case 1023:if(99!==h.charCodeAt(8))break;return u=h.substring(h.indexOf(":",15)).replace("flex-","").replace("space-between","justify"),M+"box-pack"+u+M+h+D+"flex-pack"+u+h;case 1005:return a.test(h)?h.replace(i,":"+M)+h.replace(i,":"+O)+h:h;case 1e3:switch(l=(u=h.substring(13).trim()).indexOf("-")+1,u.charCodeAt(0)+u.charCodeAt(l)){case 226:u=h.replace(k,"tb");break;case 232:u=h.replace(k,"tb-rl");break;case 220:u=h.replace(k,"lr");break;default:return h}return M+h+D+u+h;case 1017:if(-1===h.indexOf("sticky",9))return h;case 975:switch(l=(h=t).length-10,f=(u=(33===h.charCodeAt(l)?h.substring(0,l):h).substring(t.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|u.charCodeAt(7))){case 203:if(u.charCodeAt(8)<111)break;case 115:h=h.replace(u,M+u)+";"+h;break;case 207:case 102:h=h.replace(u,M+(f>102?"inline-":"")+"box")+";"+h.replace(u,M+u)+";"+h.replace(u,D+u+"box")+";"+h}return h+";";case 938:if(45===h.charCodeAt(5))switch(h.charCodeAt(6)){case 105:return u=h.replace("-items",""),M+h+M+"box-"+u+D+"flex-"+u+h;case 115:return M+h+D+"flex-item-"+h.replace(T,"")+h;default:return M+h+D+"flex-line-pack"+h.replace("align-content","").replace(T,"")+h}break;case 973:case 989:if(45!==h.charCodeAt(3)||122===h.charCodeAt(4))break;case 931:case 953:if(!0===A.test(t))return 115===(u=t.substring(t.indexOf(":")+1)).charCodeAt(0)?K(t.replace("stretch","fill-available"),e,n,r).replace(":fill-available",":stretch"):h.replace(u,M+u)+h.replace(u,O+u.replace("fill-",""))+h;break;case 962:if(h=M+h+(102===h.charCodeAt(5)?D+h:"")+h,n+r===211&&105===h.charCodeAt(13)&&h.indexOf("transform",10)>0)return h.substring(0,h.indexOf(";",27)+1).replace(o,"$1-webkit-$2")+h}return h}function tt(t,e){var n=t.indexOf(1===e?":":"{"),r=t.substring(0,3!==e?n:10),i=t.substring(n+1,t.length-1);return W(2!==e?r:r.replace(C,"$1"),i,e)}function et(t,e){var n=K(e,e.charCodeAt(0),e.charCodeAt(1),e.charCodeAt(2));return n!==e+";"?n.replace(E," or ($1)").substring(4):"("+e+")"}function nt(t,e,n,r,i,a,o,s,c,u){for(var l,h=0,f=e;h<$;++h)switch(l=U[h].call(at,t,f,n,r,i,a,o,s,c,u)){case void 0:case!1:case!0:case null:break;default:f=l}if(f!==e)return f}function rt(t,e,n,r){for(var i=e+1;i0&&(G=i.replace(d,91===a?"":"-")),a=1,1===F?X=i:q=i;var o,s=[X];$>0&&void 0!==(o=nt(-1,n,s,s,B,N,0,0,0,0))&&"string"==typeof o&&(n=o);var c=Z(z,s,n,0,0);return $>0&&void 0!==(o=nt(-2,c,s,s,B,N,c.length,0,0,0))&&"string"!=typeof(c=o)&&(a=0),G="",X="",q="",L=0,B=1,N=1,j*a==0?c:function(t){return t.replace(r,"").replace(v,"").replace(m,"$1").replace(b,"$1").replace(x," ")}(c)}return at.use=function t(e){switch(e){case void 0:case null:$=U.length=0;break;default:if("function"==typeof e)U[$++]=e;else if("object"==typeof e)for(var n=0,r=e.length;n=255?255:t<0?0:t},g:function(t){return t>=255?255:t<0?0:t},b:function(t){return t>=255?255:t<0?0:t},h:function(t){return t%360},s:function(t){return t>=100?100:t<0?0:t},l:function(t){return t>=100?100:t<0?0:t},a:function(t){return t>=1?1:t<0?0:t}},toLinear:function(t){var e=t/255;return t>.03928?Math.pow((e+.055)/1.055,2.4):e/12.92},hue2rgb:function(t,e,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?t+6*(e-t)*n:n<.5?e:n<2/3?t+(e-t)*(2/3-n)*6:t},hsl2rgb:function(t,e){var n=t.h,i=t.s,a=t.l;if(100===i)return 2.55*a;n/=360,i/=100;var o=(a/=100)<.5?a*(1+i):a+i-a*i,s=2*a-o;switch(e){case"r":return 255*r.hue2rgb(s,o,n+1/3);case"g":return 255*r.hue2rgb(s,o,n);case"b":return 255*r.hue2rgb(s,o,n-1/3)}},rgb2hsl:function(t,e){var n=t.r,r=t.g,i=t.b;n/=255,r/=255,i/=255;var a=Math.max(n,r,i),o=Math.min(n,r,i),s=(a+o)/2;if("l"===e)return 100*s;if(a===o)return 0;var c=a-o;if("s"===e)return 100*(s>.5?c/(2-a-o):c/(a+o));switch(a){case n:return 60*((r-i)/c+(r1?e:"0"+e},dec2hex:function(t){var e=Math.round(t).toString(16);return e.length>1?e:"0"+e}};e.default=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(75),a=n(177),o=function(){function t(t,e){this.color=e,this.changed=!1,this.data=t,this.type=new a.default}return t.prototype.set=function(t,e){return this.color=e,this.changed=!1,this.data=t,this.type.type=i.TYPE.ALL,this},t.prototype._ensureHSL=function(){void 0===this.data.h&&(this.data.h=r.default.channel.rgb2hsl(this.data,"h")),void 0===this.data.s&&(this.data.s=r.default.channel.rgb2hsl(this.data,"s")),void 0===this.data.l&&(this.data.l=r.default.channel.rgb2hsl(this.data,"l"))},t.prototype._ensureRGB=function(){void 0===this.data.r&&(this.data.r=r.default.channel.hsl2rgb(this.data,"r")),void 0===this.data.g&&(this.data.g=r.default.channel.hsl2rgb(this.data,"g")),void 0===this.data.b&&(this.data.b=r.default.channel.hsl2rgb(this.data,"b"))},Object.defineProperty(t.prototype,"r",{get:function(){return this.type.is(i.TYPE.HSL)||void 0===this.data.r?(this._ensureHSL(),r.default.channel.hsl2rgb(this.data,"r")):this.data.r},set:function(t){this.type.set(i.TYPE.RGB),this.changed=!0,this.data.r=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"g",{get:function(){return this.type.is(i.TYPE.HSL)||void 0===this.data.g?(this._ensureHSL(),r.default.channel.hsl2rgb(this.data,"g")):this.data.g},set:function(t){this.type.set(i.TYPE.RGB),this.changed=!0,this.data.g=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"b",{get:function(){return this.type.is(i.TYPE.HSL)||void 0===this.data.b?(this._ensureHSL(),r.default.channel.hsl2rgb(this.data,"b")):this.data.b},set:function(t){this.type.set(i.TYPE.RGB),this.changed=!0,this.data.b=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"h",{get:function(){return this.type.is(i.TYPE.RGB)||void 0===this.data.h?(this._ensureRGB(),r.default.channel.rgb2hsl(this.data,"h")):this.data.h},set:function(t){this.type.set(i.TYPE.HSL),this.changed=!0,this.data.h=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"s",{get:function(){return this.type.is(i.TYPE.RGB)||void 0===this.data.s?(this._ensureRGB(),r.default.channel.rgb2hsl(this.data,"s")):this.data.s},set:function(t){this.type.set(i.TYPE.HSL),this.changed=!0,this.data.s=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"l",{get:function(){return this.type.is(i.TYPE.RGB)||void 0===this.data.l?(this._ensureRGB(),r.default.channel.rgb2hsl(this.data,"l")):this.data.l},set:function(t){this.type.set(i.TYPE.HSL),this.changed=!0,this.data.l=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"a",{get:function(){return this.data.a},set:function(t){this.changed=!0,this.data.a=t},enumerable:!0,configurable:!0}),t}();e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(75),i=function(){function t(){this.type=r.TYPE.ALL}return t.prototype.get=function(){return this.type},t.prototype.set=function(t){if(this.type&&this.type!==t)throw new Error("Cannot change both RGB and HSL channels at the same time");this.type=t},t.prototype.reset=function(){this.type=r.TYPE.ALL},t.prototype.is=function(t){return this.type===t},t}();e.default=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i={};e.DEC2HEX=i;for(var a=0;a<=255;a++)i[a]=r.default.unit.dec2hex(a)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(99),i={colors:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyanaqua:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",transparent:"#00000000",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},parse:function(t){t=t.toLowerCase();var e=i.colors[t];if(e)return r.default.parse(e)},stringify:function(t){var e=r.default.stringify(t);for(var n in i.colors)if(i.colors[n]===e)return n}};e.default=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(45),a={re:/^rgba?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?)))?\s*?\)$/i,parse:function(t){var e=t.charCodeAt(0);if(114===e||82===e){var n=t.match(a.re);if(n){var o=n[1],s=n[2],c=n[3],u=n[4],l=n[5],h=n[6],f=n[7],d=n[8];return i.default.set({r:r.default.channel.clamp.r(s?2.55*parseFloat(o):parseFloat(o)),g:r.default.channel.clamp.g(u?2.55*parseFloat(c):parseFloat(c)),b:r.default.channel.clamp.b(h?2.55*parseFloat(l):parseFloat(l)),a:f?r.default.channel.clamp.a(d?parseFloat(f)/100:parseFloat(f)):1},t)}}},stringify:function(t){return t.a<1?"rgba("+r.default.lang.round(t.r)+", "+r.default.lang.round(t.g)+", "+r.default.lang.round(t.b)+", "+r.default.lang.round(t.a)+")":"rgb("+r.default.lang.round(t.r)+", "+r.default.lang.round(t.g)+", "+r.default.lang.round(t.b)+")"}};e.default=a},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(45),a={re:/^hsla?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(?:deg|grad|rad|turn)?)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(%)?))?\s*?\)$/i,hueRe:/^(.+?)(deg|grad|rad|turn)$/i,_hue2deg:function(t){var e=t.match(a.hueRe);if(e){var n=e[1];switch(e[2]){case"grad":return r.default.channel.clamp.h(.9*parseFloat(n));case"rad":return r.default.channel.clamp.h(180*parseFloat(n)/Math.PI);case"turn":return r.default.channel.clamp.h(360*parseFloat(n))}}return r.default.channel.clamp.h(parseFloat(t))},parse:function(t){var e=t.charCodeAt(0);if(104===e||72===e){var n=t.match(a.re);if(n){var o=n[1],s=n[2],c=n[3],u=n[4],l=n[5];return i.default.set({h:a._hue2deg(o),s:r.default.channel.clamp.s(parseFloat(s)),l:r.default.channel.clamp.l(parseFloat(c)),a:u?r.default.channel.clamp.a(l?parseFloat(u)/100:parseFloat(u)):1},t)}}},stringify:function(t){return t.a<1?"hsla("+r.default.lang.round(t.h)+", "+r.default.lang.round(t.s)+"%, "+r.default.lang.round(t.l)+"%, "+t.a+")":"hsl("+r.default.lang.round(t.h)+", "+r.default.lang.round(t.s)+"%, "+r.default.lang.round(t.l)+"%)"}};e.default=a},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"r")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"g")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"b")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"h")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"s")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"l")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(103);e.default=function(t){return!r.default(t)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15);e.default=function(t){try{return r.default.parse(t),!0}catch(t){return!1}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"s",e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"s",-e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"l",e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"l",-e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t){return r.default(t,"h",180)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(52);e.default=function(t){return r.default(t,{s:0})}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15),i=n(107);e.default=function(t,e){void 0===e&&(e=100);var n=r.default.parse(t);return n.r=255-n.r,n.g=255-n.g,n.b=255-n.b,i.default(n,t,e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15),a=n(106);e.default=function(t,e){var n,o,s,c=i.default.parse(t),u={};for(var l in e)u[l]=(n=c[l],o=e[l],s=r.default.channel.max[l],o>0?(s-n)*o/100:n*o/100);return a.default(t,u)}},function(t,e,n){t.exports={Graph:n(76),version:n(300)}},function(t,e,n){var r=n(108);t.exports=function(t){return r(t,4)}},function(t,e){t.exports=function(){this.__data__=[],this.size=0}},function(t,e,n){var r=n(55),i=Array.prototype.splice;t.exports=function(t){var e=this.__data__,n=r(e,t);return!(n<0||(n==e.length-1?e.pop():i.call(e,n,1),--this.size,0))}},function(t,e,n){var r=n(55);t.exports=function(t){var e=this.__data__,n=r(e,t);return n<0?void 0:e[n][1]}},function(t,e,n){var r=n(55);t.exports=function(t){return r(this.__data__,t)>-1}},function(t,e,n){var r=n(55);t.exports=function(t,e){var n=this.__data__,i=r(n,t);return i<0?(++this.size,n.push([t,e])):n[i][1]=e,this}},function(t,e,n){var r=n(54);t.exports=function(){this.__data__=new r,this.size=0}},function(t,e){t.exports=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}},function(t,e){t.exports=function(t){return this.__data__.get(t)}},function(t,e){t.exports=function(t){return this.__data__.has(t)}},function(t,e,n){var r=n(54),i=n(77),a=n(78);t.exports=function(t,e){var n=this.__data__;if(n instanceof r){var o=n.__data__;if(!i||o.length<199)return o.push([t,e]),this.size=++n.size,this;n=this.__data__=new a(o)}return n.set(t,e),this.size=n.size,this}},function(t,e,n){var r=n(37),i=n(214),a=n(11),o=n(110),s=/^\[object .+?Constructor\]$/,c=Function.prototype,u=Object.prototype,l=c.toString,h=u.hasOwnProperty,f=RegExp("^"+l.call(h).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=function(t){return!(!a(t)||i(t))&&(r(t)?f:s).test(o(t))}},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){var r=n(38),i=Object.prototype,a=i.hasOwnProperty,o=i.toString,s=r?r.toStringTag:void 0;t.exports=function(t){var e=a.call(t,s),n=t[s];try{t[s]=void 0;var r=!0}catch(t){}var i=o.call(t);return r&&(e?t[s]=n:delete t[s]),i}},function(t,e){var n=Object.prototype.toString;t.exports=function(t){return n.call(t)}},function(t,e,n){var r,i=n(215),a=(r=/[^.]+$/.exec(i&&i.keys&&i.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"";t.exports=function(t){return!!a&&a in t}},function(t,e,n){var r=n(16)["__core-js_shared__"];t.exports=r},function(t,e){t.exports=function(t,e){return null==t?void 0:t[e]}},function(t,e,n){var r=n(218),i=n(54),a=n(77);t.exports=function(){this.size=0,this.__data__={hash:new r,map:new(a||i),string:new r}}},function(t,e,n){var r=n(219),i=n(220),a=n(221),o=n(222),s=n(223);function c(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}},function(t,e,n){var r=n(131),i=n(292),a=n(296),o=n(132),s=n(297),c=n(90);t.exports=function(t,e,n){var u=-1,l=i,h=t.length,f=!0,d=[],p=d;if(n)f=!1,l=a;else if(h>=200){var g=e?null:s(t);if(g)return c(g);f=!1,l=o,p=new r}else p=e?[]:d;t:for(;++u-1}},function(t,e,n){var r=n(145),i=n(294),a=n(295);t.exports=function(t,e,n){return e==e?a(t,e,n):r(t,i,n)}},function(t,e){t.exports=function(t){return t!=t}},function(t,e){t.exports=function(t,e,n){for(var r=n-1,i=t.length;++r1||1===e.length&&t.hasEdge(e[0],e[0])}))}},function(t,e,n){var r=n(10);t.exports=function(t,e,n){return function(t,e,n){var r={},i=t.nodes();return i.forEach((function(t){r[t]={},r[t][t]={distance:0},i.forEach((function(e){t!==e&&(r[t][e]={distance:Number.POSITIVE_INFINITY})})),n(t).forEach((function(n){var i=n.v===t?n.w:n.v,a=e(n);r[t][i]={distance:a,predecessor:t}}))})),i.forEach((function(t){var e=r[t];i.forEach((function(n){var a=r[n];i.forEach((function(n){var r=a[t],i=e[n],o=a[n],s=r.distance+i.distance;s0;){if(n=c.removeMin(),r.has(s,n))o.setEdge(n,s[n]);else{if(l)throw new Error("Input graph is not connected: "+t);l=!0}t.nodeEdges(n).forEach(u)}return o}},function(t,e,n){var r;try{r=n(3)}catch(t){}r||(r=window.graphlib),t.exports=r},function(t,e,n){"use strict";var r=n(4),i=n(345),a=n(348),o=n(349),s=n(8).normalizeRanks,c=n(351),u=n(8).removeEmptyRanks,l=n(352),h=n(353),f=n(354),d=n(355),p=n(364),g=n(8),y=n(17).Graph;t.exports=function(t,e){var n=e&&e.debugTiming?g.time:g.notime;n("layout",(function(){var e=n(" buildLayoutGraph",(function(){return function(t){var e=new y({multigraph:!0,compound:!0}),n=C(t.graph());return e.setGraph(r.merge({},m,T(n,v),r.pick(n,b))),r.forEach(t.nodes(),(function(n){var i=C(t.node(n));e.setNode(n,r.defaults(T(i,x),_)),e.setParent(n,t.parent(n))})),r.forEach(t.edges(),(function(n){var i=C(t.edge(n));e.setEdge(n,r.merge({},w,T(i,k),r.pick(i,E)))})),e}(t)}));n(" runLayout",(function(){!function(t,e){e(" makeSpaceForEdgeLabels",(function(){!function(t){var e=t.graph();e.ranksep/=2,r.forEach(t.edges(),(function(n){var r=t.edge(n);r.minlen*=2,"c"!==r.labelpos.toLowerCase()&&("TB"===e.rankdir||"BT"===e.rankdir?r.width+=r.labeloffset:r.height+=r.labeloffset)}))}(t)})),e(" removeSelfEdges",(function(){!function(t){r.forEach(t.edges(),(function(e){if(e.v===e.w){var n=t.node(e.v);n.selfEdges||(n.selfEdges=[]),n.selfEdges.push({e:e,label:t.edge(e)}),t.removeEdge(e)}}))}(t)})),e(" acyclic",(function(){i.run(t)})),e(" nestingGraph.run",(function(){l.run(t)})),e(" rank",(function(){o(g.asNonCompoundGraph(t))})),e(" injectEdgeLabelProxies",(function(){!function(t){r.forEach(t.edges(),(function(e){var n=t.edge(e);if(n.width&&n.height){var r=t.node(e.v),i={rank:(t.node(e.w).rank-r.rank)/2+r.rank,e:e};g.addDummyNode(t,"edge-proxy",i,"_ep")}}))}(t)})),e(" removeEmptyRanks",(function(){u(t)})),e(" nestingGraph.cleanup",(function(){l.cleanup(t)})),e(" normalizeRanks",(function(){s(t)})),e(" assignRankMinMax",(function(){!function(t){var e=0;r.forEach(t.nodes(),(function(n){var i=t.node(n);i.borderTop&&(i.minRank=t.node(i.borderTop).rank,i.maxRank=t.node(i.borderBottom).rank,e=r.max(e,i.maxRank))})),t.graph().maxRank=e}(t)})),e(" removeEdgeLabelProxies",(function(){!function(t){r.forEach(t.nodes(),(function(e){var n=t.node(e);"edge-proxy"===n.dummy&&(t.edge(n.e).labelRank=n.rank,t.removeNode(e))}))}(t)})),e(" normalize.run",(function(){a.run(t)})),e(" parentDummyChains",(function(){c(t)})),e(" addBorderSegments",(function(){h(t)})),e(" order",(function(){d(t)})),e(" insertSelfEdges",(function(){!function(t){var e=g.buildLayerMatrix(t);r.forEach(e,(function(e){var n=0;r.forEach(e,(function(e,i){var a=t.node(e);a.order=i+n,r.forEach(a.selfEdges,(function(e){g.addDummyNode(t,"selfedge",{width:e.label.width,height:e.label.height,rank:a.rank,order:i+ ++n,e:e.e,label:e.label},"_se")})),delete a.selfEdges}))}))}(t)})),e(" adjustCoordinateSystem",(function(){f.adjust(t)})),e(" position",(function(){p(t)})),e(" positionSelfEdges",(function(){!function(t){r.forEach(t.nodes(),(function(e){var n=t.node(e);if("selfedge"===n.dummy){var r=t.node(n.e.v),i=r.x+r.width/2,a=r.y,o=n.x-i,s=r.height/2;t.setEdge(n.e,n.label),t.removeNode(e),n.label.points=[{x:i+2*o/3,y:a-s},{x:i+5*o/6,y:a-s},{x:i+o,y:a},{x:i+5*o/6,y:a+s},{x:i+2*o/3,y:a+s}],n.label.x=n.x,n.label.y=n.y}}))}(t)})),e(" removeBorderNodes",(function(){!function(t){r.forEach(t.nodes(),(function(e){if(t.children(e).length){var n=t.node(e),i=t.node(n.borderTop),a=t.node(n.borderBottom),o=t.node(r.last(n.borderLeft)),s=t.node(r.last(n.borderRight));n.width=Math.abs(s.x-o.x),n.height=Math.abs(a.y-i.y),n.x=o.x+n.width/2,n.y=i.y+n.height/2}})),r.forEach(t.nodes(),(function(e){"border"===t.node(e).dummy&&t.removeNode(e)}))}(t)})),e(" normalize.undo",(function(){a.undo(t)})),e(" fixupEdgeLabelCoords",(function(){!function(t){r.forEach(t.edges(),(function(e){var n=t.edge(e);if(r.has(n,"x"))switch("l"!==n.labelpos&&"r"!==n.labelpos||(n.width-=n.labeloffset),n.labelpos){case"l":n.x-=n.width/2+n.labeloffset;break;case"r":n.x+=n.width/2+n.labeloffset}}))}(t)})),e(" undoCoordinateSystem",(function(){f.undo(t)})),e(" translateGraph",(function(){!function(t){var e=Number.POSITIVE_INFINITY,n=0,i=Number.POSITIVE_INFINITY,a=0,o=t.graph(),s=o.marginx||0,c=o.marginy||0;function u(t){var r=t.x,o=t.y,s=t.width,c=t.height;e=Math.min(e,r-s/2),n=Math.max(n,r+s/2),i=Math.min(i,o-c/2),a=Math.max(a,o+c/2)}r.forEach(t.nodes(),(function(e){u(t.node(e))})),r.forEach(t.edges(),(function(e){var n=t.edge(e);r.has(n,"x")&&u(n)})),e-=s,i-=c,r.forEach(t.nodes(),(function(n){var r=t.node(n);r.x-=e,r.y-=i})),r.forEach(t.edges(),(function(n){var a=t.edge(n);r.forEach(a.points,(function(t){t.x-=e,t.y-=i})),r.has(a,"x")&&(a.x-=e),r.has(a,"y")&&(a.y-=i)})),o.width=n-e+s,o.height=a-i+c}(t)})),e(" assignNodeIntersects",(function(){!function(t){r.forEach(t.edges(),(function(e){var n,r,i=t.edge(e),a=t.node(e.v),o=t.node(e.w);i.points?(n=i.points[0],r=i.points[i.points.length-1]):(i.points=[],n=o,r=a),i.points.unshift(g.intersectRect(a,n)),i.points.push(g.intersectRect(o,r))}))}(t)})),e(" reversePoints",(function(){!function(t){r.forEach(t.edges(),(function(e){var n=t.edge(e);n.reversed&&n.points.reverse()}))}(t)})),e(" acyclic.undo",(function(){i.undo(t)}))}(e,n)})),n(" updateInputGraph",(function(){!function(t,e){r.forEach(t.nodes(),(function(n){var r=t.node(n),i=e.node(n);r&&(r.x=i.x,r.y=i.y,e.children(n).length&&(r.width=i.width,r.height=i.height))})),r.forEach(t.edges(),(function(n){var i=t.edge(n),a=e.edge(n);i.points=a.points,r.has(a,"x")&&(i.x=a.x,i.y=a.y)})),t.graph().width=e.graph().width,t.graph().height=e.graph().height}(t,e)}))}))};var v=["nodesep","edgesep","ranksep","marginx","marginy"],m={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},b=["acyclicer","ranker","rankdir","align"],x=["width","height"],_={width:0,height:0},k=["minlen","weight","width","height","labeloffset"],w={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},E=["labelpos"];function T(t,e){return r.mapValues(r.pick(t,e),Number)}function C(t){var e={};return r.forEach(t,(function(t,n){e[n.toLowerCase()]=t})),e}},function(t,e,n){var r=n(108);t.exports=function(t){return r(t,5)}},function(t,e,n){var r=n(315)(n(316));t.exports=r},function(t,e,n){var r=n(25),i=n(24),a=n(30);t.exports=function(t){return function(e,n,o){var s=Object(e);if(!i(e)){var c=r(n,3);e=a(e),n=function(t){return c(s[t],t,s)}}var u=t(e,n,o);return u>-1?s[c?e[u]:u]:void 0}}},function(t,e,n){var r=n(145),i=n(25),a=n(317),o=Math.max;t.exports=function(t,e,n){var s=null==t?0:t.length;if(!s)return-1;var c=null==n?0:a(n);return c<0&&(c=o(s+c,0)),r(t,i(e,3),c)}},function(t,e,n){var r=n(155);t.exports=function(t){var e=r(t),n=e%1;return e==e?n?e-n:e:0}},function(t,e,n){var r=n(11),i=n(42),a=/^\s+|\s+$/g,o=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,c=/^0o[0-7]+$/i,u=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return NaN;if(r(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=r(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(a,"");var n=s.test(t);return n||c.test(t)?u(t.slice(2),n?2:8):o.test(t)?NaN:+t}},function(t,e,n){var r=n(89),i=n(127),a=n(40);t.exports=function(t,e){return null==t?t:r(t,i(e),a)}},function(t,e){t.exports=function(t){var e=null==t?0:t.length;return e?t[e-1]:void 0}},function(t,e,n){var r=n(59),i=n(88),a=n(25);t.exports=function(t,e){var n={};return e=a(e,3),i(t,(function(t,i,a){r(n,i,e(t,i,a))})),n}},function(t,e,n){var r=n(95),i=n(323),a=n(35);t.exports=function(t){return t&&t.length?r(t,a,i):void 0}},function(t,e){t.exports=function(t,e){return t>e}},function(t,e,n){var r=n(325),i=n(328)((function(t,e,n){r(t,e,n)}));t.exports=i},function(t,e,n){var r=n(53),i=n(157),a=n(89),o=n(326),s=n(11),c=n(40),u=n(159);t.exports=function t(e,n,l,h,f){e!==n&&a(n,(function(a,c){if(f||(f=new r),s(a))o(e,n,c,l,t,h,f);else{var d=h?h(u(e,c),a,c+"",e,n,f):void 0;void 0===d&&(d=a),i(e,c,d)}}),c)}},function(t,e,n){var r=n(157),i=n(114),a=n(123),o=n(115),s=n(124),c=n(47),u=n(5),l=n(146),h=n(39),f=n(37),d=n(11),p=n(158),g=n(48),y=n(159),v=n(327);t.exports=function(t,e,n,m,b,x,_){var k=y(t,n),w=y(e,n),E=_.get(w);if(E)r(t,n,E);else{var T=x?x(k,w,n+"",t,e,_):void 0,C=void 0===T;if(C){var A=u(w),S=!A&&h(w),M=!A&&!S&&g(w);T=w,A||S||M?u(k)?T=k:l(k)?T=o(k):S?(C=!1,T=i(w,!0)):M?(C=!1,T=a(w,!0)):T=[]:p(w)||c(w)?(T=k,c(k)?T=v(k):d(k)&&!f(k)||(T=s(w))):C=!1}C&&(_.set(w,T),b(T,w,m,x,_),_.delete(w)),r(t,n,T)}}},function(t,e,n){var r=n(46),i=n(40);t.exports=function(t){return r(t,i(t))}},function(t,e,n){var r=n(67),i=n(68);t.exports=function(t){return r((function(e,n){var r=-1,a=n.length,o=a>1?n[a-1]:void 0,s=a>2?n[2]:void 0;for(o=t.length>3&&"function"==typeof o?(a--,o):void 0,s&&i(n[0],n[1],s)&&(o=a<3?void 0:o,a=1),e=Object(e);++r1&&o(t,e[0],e[1])?e=[]:n>2&&o(e[0],e[1],e[2])&&(e=[e[0]]),i(t,r(e,1),[])}));t.exports=s},function(t,e,n){var r=n(66),i=n(25),a=n(141),o=n(340),s=n(61),c=n(341),u=n(35);t.exports=function(t,e,n){var l=-1;e=r(e.length?e:[u],s(i));var h=a(t,(function(t,n,i){return{criteria:r(e,(function(e){return e(t)})),index:++l,value:t}}));return o(h,(function(t,e){return c(t,e,n)}))}},function(t,e){t.exports=function(t,e){var n=t.length;for(t.sort(e);n--;)t[n]=t[n].value;return t}},function(t,e,n){var r=n(342);t.exports=function(t,e,n){for(var i=-1,a=t.criteria,o=e.criteria,s=a.length,c=n.length;++i=c?u:u*("desc"==n[i]?-1:1)}return t.index-e.index}},function(t,e,n){var r=n(42);t.exports=function(t,e){if(t!==e){var n=void 0!==t,i=null===t,a=t==t,o=r(t),s=void 0!==e,c=null===e,u=e==e,l=r(e);if(!c&&!l&&!o&&t>e||o&&s&&u&&!c&&!l||i&&s&&u||!n&&u||!a)return 1;if(!i&&!o&&!l&&t0;--c)if(r=e[c].dequeue()){i=i.concat(s(t,e,n,r,!0));break}}return i}(n.graph,n.buckets,n.zeroIdx);return r.flatten(r.map(u,(function(e){return t.outEdges(e.v,e.w)})),!0)};var o=r.constant(1);function s(t,e,n,i,a){var o=a?[]:void 0;return r.forEach(t.inEdges(i.v),(function(r){var i=t.edge(r),s=t.node(r.v);a&&o.push({v:r.v,w:r.w}),s.out-=i,c(e,n,s)})),r.forEach(t.outEdges(i.v),(function(r){var i=t.edge(r),a=r.w,o=t.node(a);o.in-=i,c(e,n,o)})),t.removeNode(i.v),o}function c(t,e,n){n.out?n.in?t[n.out-n.in+e].enqueue(n):t[t.length-1].enqueue(n):t[0].enqueue(n)}},function(t,e){function n(){var t={};t._next=t._prev=t,this._sentinel=t}function r(t){t._prev._next=t._next,t._next._prev=t._prev,delete t._next,delete t._prev}function i(t,e){if("_next"!==t&&"_prev"!==t)return e}t.exports=n,n.prototype.dequeue=function(){var t=this._sentinel,e=t._prev;if(e!==t)return r(e),e},n.prototype.enqueue=function(t){var e=this._sentinel;t._prev&&t._next&&r(t),t._next=e._next,e._next._prev=t,e._next=t,t._prev=e},n.prototype.toString=function(){for(var t=[],e=this._sentinel,n=e._prev;n!==e;)t.push(JSON.stringify(n,i)),n=n._prev;return"["+t.join(", ")+"]"}},function(t,e,n){"use strict";var r=n(4),i=n(8);t.exports={run:function(t){t.graph().dummyChains=[],r.forEach(t.edges(),(function(e){!function(t,e){var n,r,a,o=e.v,s=t.node(o).rank,c=e.w,u=t.node(c).rank,l=e.name,h=t.edge(e),f=h.labelRank;if(u!==s+1){for(t.removeEdge(e),a=0,++s;sc.lim&&(u=c,l=!0);var h=r.filter(e.edges(),(function(e){return l===m(t,t.node(e.v),u)&&l!==m(t,t.node(e.w),u)}));return r.minBy(h,(function(t){return a(e,t)}))}function v(t,e,n,i){var a=n.v,o=n.w;t.removeEdge(a,o),t.setEdge(i.v,i.w,{}),d(t),h(t,e),function(t,e){var n=r.find(t.nodes(),(function(t){return!e.node(t).parent})),i=s(t,n);i=i.slice(1),r.forEach(i,(function(n){var r=t.node(n).parent,i=e.edge(n,r),a=!1;i||(i=e.edge(r,n),a=!0),e.node(n).rank=e.node(r).rank+(a?i.minlen:-i.minlen)}))}(t,e)}function m(t,e,n){return n.low<=e.lim&&e.lim<=n.lim}t.exports=l,l.initLowLimValues=d,l.initCutValues=h,l.calcCutValue=f,l.leaveEdge=g,l.enterEdge=y,l.exchangeEdges=v},function(t,e,n){var r=n(4);t.exports=function(t){var e=function(t){var e={},n=0;return r.forEach(t.children(),(function i(a){var o=n;r.forEach(t.children(a),i),e[a]={low:o,lim:n++}})),e}(t);r.forEach(t.graph().dummyChains,(function(n){for(var r=t.node(n),i=r.edgeObj,a=function(t,e,n,r){var i,a,o=[],s=[],c=Math.min(e[n].low,e[r].low),u=Math.max(e[n].lim,e[r].lim);i=n;do{i=t.parent(i),o.push(i)}while(i&&(e[i].low>c||u>e[i].lim));for(a=i,i=r;(i=t.parent(i))!==a;)s.push(i);return{path:o.concat(s.reverse()),lca:a}}(t,e,i.v,i.w),o=a.path,s=a.lca,c=0,u=o[c],l=!0;n!==i.w;){if(r=t.node(n),l){for(;(u=o[c])!==s&&t.node(u).maxRank=2),s=l.buildLayerMatrix(t);var y=a(t,s);y0;)e%2&&(n+=c[e+1]),c[e=e-1>>1]+=t.weight;u+=t.weight*n}))),u}t.exports=function(t,e){for(var n=0,r=1;r=t.barycenter)&&function(t,e){var n=0,r=0;t.weight&&(n+=t.barycenter*t.weight,r+=t.weight),e.weight&&(n+=e.barycenter*e.weight,r+=e.weight),t.vs=e.vs.concat(t.vs),t.barycenter=n/r,t.weight=r,t.i=Math.min(e.i,t.i),e.merged=!0}(t,e)}}function i(e){return function(n){n.in.push(e),0==--n.indegree&&t.push(n)}}for(;t.length;){var a=t.pop();e.push(a),r.forEach(a.in.reverse(),n(a)),r.forEach(a.out,i(a))}return r.map(r.filter(e,(function(t){return!t.merged})),(function(t){return r.pick(t,["vs","i","barycenter","weight"])}))}(r.filter(n,(function(t){return!t.indegree})))}},function(t,e,n){var r=n(4),i=n(8);function a(t,e,n){for(var i;e.length&&(i=r.last(e)).i<=n;)e.pop(),t.push(i.vs),n++;return n}t.exports=function(t,e){var n,o=i.partition(t,(function(t){return r.has(t,"barycenter")})),s=o.lhs,c=r.sortBy(o.rhs,(function(t){return-t.i})),u=[],l=0,h=0,f=0;s.sort((n=!!e,function(t,e){return t.barycentere.barycenter?1:n?e.i-t.i:t.i-e.i})),f=a(u,c,f),r.forEach(s,(function(t){f+=t.vs.length,u.push(t.vs),l+=t.barycenter*t.weight,h+=t.weight,f=a(u,c,f)}));var d={vs:r.flatten(u,!0)};return h&&(d.barycenter=l/h,d.weight=h),d}},function(t,e,n){var r=n(4),i=n(17).Graph;t.exports=function(t,e,n){var a=function(t){for(var e;t.hasNode(e=r.uniqueId("_root")););return e}(t),o=new i({compound:!0}).setGraph({root:a}).setDefaultNodeLabel((function(e){return t.node(e)}));return r.forEach(t.nodes(),(function(i){var s=t.node(i),c=t.parent(i);(s.rank===e||s.minRank<=e&&e<=s.maxRank)&&(o.setNode(i),o.setParent(i,c||a),r.forEach(t[n](i),(function(e){var n=e.v===i?e.w:e.v,a=o.edge(n,i),s=r.isUndefined(a)?0:a.weight;o.setEdge(n,i,{weight:t.edge(e).weight+s})})),r.has(s,"minRank")&&o.setNode(i,{borderLeft:s.borderLeft[e],borderRight:s.borderRight[e]}))})),o}},function(t,e,n){var r=n(4);t.exports=function(t,e,n){var i,a={};r.forEach(n,(function(n){for(var r,o,s=t.parent(n);s;){if((r=t.parent(s))?(o=a[r],a[r]=s):(o=i,i=s),o&&o!==s)return void e.setEdge(o,s);s=r}}))}},function(t,e,n){"use strict";var r=n(4),i=n(8),a=n(365).positionX;t.exports=function(t){(function(t){var e=i.buildLayerMatrix(t),n=t.graph().ranksep,a=0;r.forEach(e,(function(e){var i=r.max(r.map(e,(function(e){return t.node(e).height})));r.forEach(e,(function(e){t.node(e).y=a+i/2})),a+=i+n}))})(t=i.asNonCompoundGraph(t)),r.forEach(a(t),(function(e,n){t.node(n).x=e}))}},function(t,e,n){"use strict";var r=n(4),i=n(17).Graph,a=n(8);function o(t,e){var n={};return r.reduce(e,(function(e,i){var a=0,o=0,s=e.length,u=r.last(i);return r.forEach(i,(function(e,l){var h=function(t,e){if(t.node(e).dummy)return r.find(t.predecessors(e),(function(e){return t.node(e).dummy}))}(t,e),f=h?t.node(h).order:s;(h||e===u)&&(r.forEach(i.slice(o,l+1),(function(e){r.forEach(t.predecessors(e),(function(r){var i=t.node(r),o=i.order;!(os)&&c(n,e,u)}))}))}return r.reduce(e,(function(e,n){var a,o=-1,s=0;return r.forEach(n,(function(r,c){if("border"===t.node(r).dummy){var u=t.predecessors(r);u.length&&(a=t.node(u[0]).order,i(n,s,c,o,a),s=c,o=a)}i(n,s,n.length,a,e.length)})),n})),n}function c(t,e,n){if(e>n){var r=e;e=n,n=r}var i=t[e];i||(t[e]=i={}),i[n]=!0}function u(t,e,n){if(e>n){var i=e;e=n,n=i}return r.has(t[e],n)}function l(t,e,n,i){var a={},o={},s={};return r.forEach(e,(function(t){r.forEach(t,(function(t,e){a[t]=t,o[t]=t,s[t]=e}))})),r.forEach(e,(function(t){var e=-1;r.forEach(t,(function(t){var c=i(t);if(c.length)for(var l=((c=r.sortBy(c,(function(t){return s[t]}))).length-1)/2,h=Math.floor(l),f=Math.ceil(l);h<=f;++h){var d=c[h];o[t]===t&&e0}t.exports=function(t,e,r,i){var a,o,s,c,u,l,h,f,d,p,g,y,v;if(!(a=e.y-t.y,s=t.x-e.x,u=e.x*t.y-t.x*e.y,d=a*r.x+s*r.y+u,p=a*i.x+s*i.y+u,0!==d&&0!==p&&n(d,p)||(o=i.y-r.y,c=r.x-i.x,l=i.x*r.y-r.x*i.y,h=o*t.x+c*t.y+l,f=o*e.x+c*e.y+l,0!==h&&0!==f&&n(h,f)||0==(g=a*c-o*s))))return y=Math.abs(g/2),{x:(v=s*l-c*u)<0?(v-y)/g:(v+y)/g,y:(v=o*u-a*l)<0?(v-y)/g:(v+y)/g}}},function(t,e,n){var r=n(43),i=n(31),a=n(153).layout;t.exports=function(){var t=n(371),e=n(374),i=n(375),u=n(376),l=n(377),h=n(378),f=n(379),d=n(380),p=n(381),g=function(n,g){!function(t){t.nodes().forEach((function(e){var n=t.node(e);r.has(n,"label")||t.children(e).length||(n.label=e),r.has(n,"paddingX")&&r.defaults(n,{paddingLeft:n.paddingX,paddingRight:n.paddingX}),r.has(n,"paddingY")&&r.defaults(n,{paddingTop:n.paddingY,paddingBottom:n.paddingY}),r.has(n,"padding")&&r.defaults(n,{paddingLeft:n.padding,paddingRight:n.padding,paddingTop:n.padding,paddingBottom:n.padding}),r.defaults(n,o),r.each(["paddingLeft","paddingRight","paddingTop","paddingBottom"],(function(t){n[t]=Number(n[t])})),r.has(n,"width")&&(n._prevWidth=n.width),r.has(n,"height")&&(n._prevHeight=n.height)})),t.edges().forEach((function(e){var n=t.edge(e);r.has(n,"label")||(n.label=""),r.defaults(n,s)}))}(g);var y=c(n,"output"),v=c(y,"clusters"),m=c(y,"edgePaths"),b=i(c(y,"edgeLabels"),g),x=t(c(y,"nodes"),g,d);a(g),l(x,g),h(b,g),u(m,g,p);var _=e(v,g);f(_,g),function(t){r.each(t.nodes(),(function(e){var n=t.node(e);r.has(n,"_prevWidth")?n.width=n._prevWidth:delete n.width,r.has(n,"_prevHeight")?n.height=n._prevHeight:delete n.height,delete n._prevWidth,delete n._prevHeight}))}(g)};return g.createNodes=function(e){return arguments.length?(t=e,g):t},g.createClusters=function(t){return arguments.length?(e=t,g):e},g.createEdgeLabels=function(t){return arguments.length?(i=t,g):i},g.createEdgePaths=function(t){return arguments.length?(u=t,g):u},g.shapes=function(t){return arguments.length?(d=t,g):d},g.arrows=function(t){return arguments.length?(p=t,g):p},g};var o={paddingLeft:10,paddingRight:10,paddingTop:10,paddingBottom:10,rx:0,ry:0,shape:"rect"},s={arrowhead:"normal",curve:i.curveLinear};function c(t,e){var n=t.select("g."+e);return n.empty()&&(n=t.append("g").attr("class",e)),n}},function(t,e,n){"use strict";var r=n(43),i=n(97),a=n(12),o=n(31);t.exports=function(t,e,n){var s,c=e.nodes().filter((function(t){return!a.isSubgraph(e,t)})),u=t.selectAll("g.node").data(c,(function(t){return t})).classed("update",!0);return u.exit().remove(),u.enter().append("g").attr("class","node").style("opacity",0),(u=t.selectAll("g.node")).each((function(t){var s=e.node(t),c=o.select(this);a.applyClass(c,s.class,(c.classed("update")?"update ":"")+"node"),c.select("g.label").remove();var u=c.append("g").attr("class","label"),l=i(u,s),h=n[s.shape],f=r.pick(l.node().getBBox(),"width","height");s.elem=this,s.id&&c.attr("id",s.id),s.labelId&&u.attr("id",s.labelId),r.has(s,"width")&&(f.width=s.width),r.has(s,"height")&&(f.height=s.height),f.width+=s.paddingLeft+s.paddingRight,f.height+=s.paddingTop+s.paddingBottom,u.attr("transform","translate("+(s.paddingLeft-s.paddingRight)/2+","+(s.paddingTop-s.paddingBottom)/2+")");var d=o.select(this);d.select(".label-container").remove();var p=h(d,f,s).classed("label-container",!0);a.applyStyle(p,s.style);var g=p.node().getBBox();s.width=g.width,s.height=g.height})),s=u.exit?u.exit():u.selectAll(null),a.applyTransition(s,e).style("opacity",0).remove(),u}},function(t,e,n){var r=n(12);t.exports=function(t,e){for(var n=t.append("text"),i=function(t){for(var e,n="",r=!1,i=0;i0&&void 0!==arguments[0]?arguments[0]:"fatal";isNaN(t)&&(t=t.toLowerCase(),void 0!==h[t]&&(t=h[t])),f.trace=function(){},f.debug=function(){},f.info=function(){},f.warn=function(){},f.error=function(){},f.fatal=function(){},t<=h.fatal&&(f.fatal=console.error?console.error.bind(console,p("FATAL"),"color: orange"):console.log.bind(console,"",p("FATAL"))),t<=h.error&&(f.error=console.error?console.error.bind(console,p("ERROR"),"color: orange"):console.log.bind(console,"",p("ERROR"))),t<=h.warn&&(f.warn=console.warn?console.warn.bind(console,p("WARN"),"color: orange"):console.log.bind(console,"",p("WARN"))),t<=h.info&&(f.info=console.info?console.info.bind(console,p("INFO"),"color: lightblue"):console.log.bind(console,"",p("INFO"))),t<=h.debug&&(f.debug=console.debug?console.debug.bind(console,p("DEBUG"),"color: lightgreen"):console.log.bind(console,"",p("DEBUG")))},p=function(t){var e=l()().format("ss.SSS");return"%c".concat(e," : ").concat(t," : ")},g=n(70),y=function(t){for(var e="",n=0;n>=0;){if(!((n=t.indexOf("=0)){e+=t,n=-1;break}e+=t.substr(0,n),(n=(t=t.substr(n+1)).indexOf("<\/script>"))>=0&&(n+=9,t=t.substr(n))}return e},v=//gi,m=function(t){return t.replace(v,"#br#")},b={getRows:function(t){if(!t)return 1;var e=m(t);return(e=e.replace(/\\n/g,"#br#")).split("#br#")},sanitizeText:function(t,e){var n=t,r=!0;if(!e.flowchart||!1!==e.flowchart.htmlLabels&&"false"!==e.flowchart.htmlLabels||(r=!1),r){var i=e.securityLevel;"antiscript"===i?n=y(n):"loose"!==i&&(n=function(t){return t.replace(/#br#/g,"
")}(n=(n=(n=m(n)).replace(//g,">")).replace(/=/g,"=")))}return n},hasBreaks:function(t){return//gi.test(t)},splitBreaks:function(t){return t.split(//gi)},lineBreakRegex:v,removeScript:y};function x(t){return(x="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function _(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e1&&void 0!==arguments[1]?arguments[1]:null;try{var n=new RegExp("[%]{2}(?![{]".concat(E.source,")(?=[}][%]{2}).*\n"),"ig");t=t.trim().replace(n,"").replace(/'/gm,'"'),f.debug("Detecting diagram directive".concat(null!==e?" type:"+e:""," based on the text:").concat(t));for(var r,i=[];null!==(r=w.exec(t));)if(r.index===w.lastIndex&&w.lastIndex++,r&&!e||e&&r[1]&&r[1].match(e)||e&&r[2]&&r[2].match(e)){var a=r[1]?r[1]:r[2],o=r[3]?r[3].trim():r[4]?JSON.parse(r[4].trim()):null;i.push({type:a,args:o})}return 0===i.length&&i.push({type:t,args:null}),1===i.length?i[0]:i}catch(n){return f.error("ERROR: ".concat(n.message," - Unable to parse directive").concat(null!==e?" type:"+e:""," based on the text:").concat(t)),{type:null,args:null}}},A=function(t){return t=t.replace(w,"").replace(T,"\n"),f.debug("Detecting diagram type based on the text "+t),t.match(/^\s*sequenceDiagram/)?"sequence":t.match(/^\s*gantt/)?"gantt":t.match(/^\s*classDiagram-v2/)?"classDiagram":t.match(/^\s*classDiagram/)?"class":t.match(/^\s*stateDiagram-v2/)?"stateDiagram":t.match(/^\s*stateDiagram/)?"state":t.match(/^\s*gitGraph/)?"git":t.match(/^\s*flowchart/)?"flowchart-v2":t.match(/^\s*info/)?"info":t.match(/^\s*pie/)?"pie":t.match(/^\s*erDiagram/)?"er":t.match(/^\s*journey/)?"journey":"flowchart"},S=function(t,e){var n={};return function(){for(var r=arguments.length,i=new Array(r),a=0;a"},n),b.lineBreakRegex.test(t))return t;var r=t.split(" "),i=[],a="";return r.forEach((function(t,o){var s=R("".concat(t," "),n),c=R(a,n);if(s>e){var u=j(t,e,"-",n),l=u.hyphenatedStrings,h=u.remainingWord;i.push.apply(i,[a].concat(_(l))),a=h}else c+s>=e?(i.push(a),a=t):a=[a,t].filter(Boolean).join(" ");o+1===r.length&&i.push(a)})),i.filter((function(t){return""!==t})).join(n.joinWith)}),(function(t,e,n){return"".concat(t,"-").concat(e,"-").concat(n.fontSize,"-").concat(n.fontWeight,"-").concat(n.fontFamily,"-").concat(n.joinWith)})),j=S((function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"-",r=arguments.length>3?arguments[3]:void 0;r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},r);var i=t.split(""),a=[],o="";return i.forEach((function(t,s){var c="".concat(o).concat(t);if(R(c,r)>=e){var u=s+1,l=i.length===u,h="".concat(c).concat(n);a.push(l?c:h),o=""}else o=c})),{hyphenatedStrings:a,remainingWord:o}}),(function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"-",r=arguments.length>3?arguments[3]:void 0;return"".concat(t,"-").concat(e,"-").concat(n,"-").concat(r.fontSize,"-").concat(r.fontWeight,"-").concat(r.fontFamily)})),R=function(t,e){return e=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial"},e),Y(t,e).width},Y=S((function(t,e){var n=e=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial"},e),r=n.fontSize,i=n.fontFamily,a=n.fontWeight;if(!t)return{width:0,height:0};var o=["sans-serif",i],c=t.split(b.lineBreakRegex),u=[],l=Object(s.select)("body");if(!l.remove)return{width:0,height:0,lineHeight:0};for(var h=l.append("svg"),f=0,d=o;fu[1].height&&u[0].width>u[1].width&&u[0].lineHeight>u[1].lineHeight?0:1]}),(function(t,e){return"".concat(t,"-").concat(e.fontSize,"-").concat(e.fontWeight,"-").concat(e.fontFamily)})),z={assignWithDepth:F,wrapLabel:I,calculateTextHeight:function(t,e){return e=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:15},e),Y(t,e).height},calculateTextWidth:R,calculateTextDimensions:Y,detectInit:function(t){var e=C(t,/(?:init\b)|(?:initialize\b)/),n={};if(Array.isArray(e)){var r=e.map((function(t){return t.args}));n=F(n,_(r))}else n=e.args;if(n){var i=A(t);["config"].forEach((function(t){void 0!==n[t]&&("flowchart-v2"===i&&(i="flowchart"),n[i]=n[t],delete n[t])}))}return n},detectDirective:C,detectType:A,isSubstringInArray:function(t,e){for(var n=0;n=1&&(i={x:t.x,y:t.y}),a>0&&a<1&&(i={x:(1-a)*e.x+a*t.x,y:(1-a)*e.y+a*t.y})}}e=t})),i}(t)},calcCardinalityPosition:function(t,e,n){var r;e[0]!==n&&(e=e.reverse()),e.forEach((function(t){O(t,r),r=t}));var i,a=25;r=void 0,e.forEach((function(t){if(r&&!i){var e=O(t,r);if(e=1&&(i={x:t.x,y:t.y}),n>0&&n<1&&(i={x:(1-n)*r.x+n*t.x,y:(1-n)*r.y+n*t.y})}}r=t}));var o=t?10:5,s=Math.atan2(e[0].y-i.y,e[0].x-i.x),c={x:0,y:0};return c.x=Math.sin(s)*o+(e[0].x+i.x)/2,c.y=-Math.cos(s)*o+(e[0].y+i.y)/2,c},formatUrl:function(t,e){var n=t.trim();if(n)return"loose"!==e.securityLevel?Object(g.sanitizeUrl)(n):n},getStylesFromArray:D,generateId:B,random:L,memoize:S,runFunc:function(t){for(var e,n=t.split("."),r=n.length-1,i=n[r],a=window,o=0;o1?s-1:0),u=1;u/)&&(kt="LR"),kt.match(/.*v/)&&(kt="TB")},setClass:Lt,getTooltip:function(t){return Mt[t]},setClickEvent:function(t,e,n){t.split(",").forEach((function(t){!function(t,e){var n=t;t[0].match(/\d/)&&(n=""+n),"loose"===vt().securityLevel&&void 0!==e&&void 0!==Et[n]&&Nt.push((function(){var t=document.querySelector('[id="'.concat(n,'"]'));null!==t&&t.addEventListener("click",(function(){z.runFunc(e,n)}),!1)}))}(t,e)})),Ft(t,n),Lt(t,"clickable")},setLink:function(t,e,n,r){t.split(",").forEach((function(t){var n=t;t[0].match(/\d/)&&(n=""+n),void 0!==Et[n]&&(Et[n].link=z.formatUrl(e,wt),Et[n].linkTarget=r)})),Ft(t,n),Lt(t,"clickable")},bindFunctions:function(t){Nt.forEach((function(e){e(t)}))},getDirection:function(){return kt.trim()},getVertices:function(){return Et},getEdges:function(){return Tt},getClasses:function(){return Ct},clear:function(){Et={},Ct={},Tt=[],(Nt=[]).push(Pt),At=[],St={},Ot=0,Mt=[],Dt=!0},defaultStyle:function(){return"fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;"},addSubGraph:function(t,e,n){var r=t.trim(),i=n;t===n&&n.match(/\s/)&&(r=void 0);var a,o,s,c=[];a=c.concat.apply(c,e),o={boolean:{},number:{},string:{}},s=[],c=a.filter((function(t){var e=_t(t);return""!==t.trim()&&(e in o?!o[e].hasOwnProperty(t)&&(o[e][t]=!0):!(s.indexOf(t)>=0)&&s.push(t))}));for(var u=0;u0&&function t(e,n){var r=At[n].nodes;if(!((jt+=1)>2e3)){if(Rt[jt]=n,At[n].id===e)return{result:!0,count:0};for(var i=0,a=1;i=0){var s=t(e,o);if(s.result)return{result:!0,count:a+s.count};a+=s.count}i+=1}return{result:!1,count:a}}}("none",At.length-1)},getSubGraphs:function(){return At},destructLink:function(t,e){var n,r=function(t){var e=t.trim(),n=e.slice(0,-1),r="arrow_open";switch(e.slice(-1)){case"x":r="arrow_cross","x"===e[0]&&(r="double_"+r,n=n.slice(1));break;case">":r="arrow_point","<"===e[0]&&(r="double_"+r,n=n.slice(1));break;case"o":r="arrow_circle","o"===e[0]&&(r="double_"+r,n=n.slice(1))}var i="normal",a=n.length-1;"="===n[0]&&(i="thick");var o=function(t,e){for(var n=e.length,r=0,i=0;in.height/2-a)){var o=a*a*(1-r*r/(i*i));0!=o&&(o=Math.sqrt(o)),o=a-o,t.y-n.y>0&&(o=-o),e.y+=o}return e},c}function ie(t,e,n,r){return t.insert("polygon",":first-child").attr("points",r.map((function(t){return t.x+","+t.y})).join(" ")).attr("transform","translate("+-e/2+","+n/2+")")}var ae=function(t){t.shapes().question=Gt,t.shapes().hexagon=qt,t.shapes().stadium=ee,t.shapes().subroutine=ne,t.shapes().cylinder=re,t.shapes().rect_left_inv_arrow=Xt,t.shapes().lean_right=Zt,t.shapes().lean_left=Jt,t.shapes().trapezoid=Qt,t.shapes().inv_trapezoid=Kt,t.shapes().rect_right_inv_arrow=te},oe={},se=function(t,e,n){var r=Object(s.select)('[id="'.concat(n,'"]'));Object.keys(t).forEach((function(n){var i=t[n],a="default";i.classes.length>0&&(a=i.classes.join(" "));var o,s=D(i.styles),c=void 0!==i.text?i.text:i.id;if(vt().flowchart.htmlLabels){var u={label:c.replace(/fa[lrsb]?:fa-[\w-]+/g,(function(t){return"")}))};(o=Ht()(r,u).node()).parentNode.removeChild(o)}else{var l=document.createElementNS("http://www.w3.org/2000/svg","text");l.setAttribute("style",s.labelStyle.replace("color:","fill:"));for(var h=c.split(b.lineBreakRegex),f=0;f').concat(a.text,"")):(l.labelType="text",l.label=a.text.replace(b.lineBreakRegex,"\n"),void 0===a.style&&(l.style=l.style||"stroke: #333; stroke-width: 1.5px;fill:none"),l.labelStyle=l.labelStyle.replace("color:","fill:"))),l.id=o,l.class=c+" "+u,l.minlen=a.length||1,e.setEdge(a.start,a.end,l,i)}))},ue=function(t){for(var e=Object.keys(t),n=0;n"),f.info("vertexText"+i),function(t){var e,n=Object(s.select)(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),r=n.append("xhtml:div"),i=t.label,a=t.isNode?"nodeLabel":"edgeLabel";return r.html(''+i+""),(e=t.labelStyle)&&r.attr("style",e),r.style("display","inline-block"),r.style("white-space","nowrap"),r.attr("xmlns","http://www.w3.org/1999/xhtml"),n.node()}({isNode:r,label:i.replace(/fa[lrsb]?:fa-[\w-]+/g,(function(t){return"")}))});var a=document.createElementNS("http://www.w3.org/2000/svg","text");a.setAttribute("style",e.replace("color:","fill:"));var o=[];o="string"==typeof i?i.split(/\\n|\n|/gi):Array.isArray(i)?i:[];for(var c=0;c0)t(a,n,r,i);else{var o=n.node(a);f.info("cp ",a," to ",i," with parent ",e),r.setNode(a,o),f.debug("Setting parent",a,n.parent(a)),i!==n.parent(a)&&r.setParent(a,n.parent(a)),e!==i&&a!==e?(f.debug("Setting parent",a,e),r.setParent(a,e)):(f.info("In copy ",e,"root",i,"data",n.node(e),i),f.debug("Not Setting parent for node=",a,"cluster!==rootId",e!==i,"node!==clusterId",a!==e));var s=n.edges(a);f.debug("Copying Edges",s),s.forEach((function(t){f.info("Edge",t);var a=n.edge(t.v,t.w,t.name);f.info("Edge data",a,i);try{!function(t,e){return f.info("Decendants of ",e," is ",me[e]),f.info("Edge is ",t),t.v!==e&&t.w!==e&&(me[e]?(f.info("Here "),me[e].indexOf(t.v)>=0||!!xe(t.v,e)||!!xe(t.w,e)||me[e].indexOf(t.w)>=0):(f.debug("Tilt, ",e,",not in decendants"),!1))}(t,i)?f.info("Skipping copy of edge ",t.v,"--\x3e",t.w," rootId: ",i," clusterId:",e):(f.info("Copying as ",t.v,t.w,a,t.name),r.setEdge(t.v,t.w,a,t.name),f.info("newGraph edges ",r.edges(),r.edge(r.edges()[0])))}catch(t){f.error(t)}}))}f.debug("Removing node",a),n.removeNode(a)}))},ke=function t(e,n){f.trace("Searching",e);var r=n.children(e);if(f.trace("Searching children of id ",e,r),r.length<1)return f.trace("This is a valid node",e),e;for(var i=0;i ",a),a}},we=function(t){return ve[t]&&ve[t].externalConnections&&ve[t]?ve[t].id:t},Ee=function t(e,n){if(f.debug("extractor - ",n,$.a.json.write(e),e.children("D")),n>10)f.error("Bailing out");else{for(var r=e.nodes(),i=!1,a=0;a0}if(i){f.debug("Nodes = ",r,n);for(var c=0;c0){f.debug("Cluster without external connections, without a parent and with children",u,n);var l=e.graph(),h=new $.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:"TB"===l.rankdir?"LR":"TB",nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel((function(){return{}}));f.debug("Old graph before copy",$.a.json.write(e)),_e(u,e,h,u),e.setNode(u,{clusterNode:!0,id:u,clusterData:ve[u].clusterData,labelText:ve[u].labelText,graph:h}),f.debug("New graph after copy",$.a.json.write(h)),f.debug("Old graph after copy",$.a.json.write(e))}else f.debug("Cluster ** ",u," **not meeting the criteria !externalConnections:",!ve[u].externalConnections," no parent: ",!e.parent(u)," children ",e.children(u)&&e.children(u).length>0,e.children("D"),n),f.debug(ve);else f.debug("Not a cluster",u,n)}r=e.nodes(),f.debug("New list of nodes",r);for(var d=0;d0}var Se=function(t,e,n,r){var i,a,o,s,c,u,l,h,f,d,p,g,y;if(i=e.y-t.y,o=t.x-e.x,c=e.x*t.y-t.x*e.y,f=i*n.x+o*n.y+c,d=i*r.x+o*r.y+c,!(0!==f&&0!==d&&Ae(f,d)||(a=r.y-n.y,s=n.x-r.x,u=r.x*n.y-n.x*r.y,l=a*t.x+s*t.y+u,h=a*e.x+s*e.y+u,0!==l&&0!==h&&Ae(l,h)||0==(p=i*s-a*o))))return g=Math.abs(p/2),{x:(y=o*u-s*c)<0?(y-g)/p:(y+g)/p,y:(y=a*c-i*u)<0?(y-g)/p:(y+g)/p}},Me=function(t,e){var n,r,i=t.x,a=t.y,o=e.x-i,s=e.y-a,c=t.width/2,u=t.height/2;return Math.abs(s)*c>Math.abs(o)*u?(s<0&&(u=-u),n=0===s?0:u*o/s,r=u):(o<0&&(c=-c),n=c,r=0===o?0:c*s/o),{x:i+n,y:a+r}},Oe=(n.n(Te).a,function(t,e,n){return Ce(t,e,e,n)}),De=function(t,e,n){var r=t.x,i=t.y,a=[],o=Number.POSITIVE_INFINITY,s=Number.POSITIVE_INFINITY;"function"==typeof e.forEach?e.forEach((function(t){o=Math.min(o,t.x),s=Math.min(s,t.y)})):(o=Math.min(o,e.x),s=Math.min(s,e.y));for(var c=r-t.width/2-o,u=i-t.height/2-s,l=0;l1&&a.sort((function(t,e){var r=t.x-n.x,i=t.y-n.y,a=Math.sqrt(r*r+i*i),o=e.x-n.x,s=e.y-n.y,c=Math.sqrt(o*o+s*s);return a"),e.labelStyle,!0,!0));if(vt().flowchart.htmlLabels){var v=y.children[0],m=Object(s.select)(y);u=v.getBoundingClientRect(),m.attr("width",u.width),m.attr("height",u.height)}var b=e.padding/2;return Object(s.select)(y).attr("transform","translate( "+(u.width>g.width?0:(g.width-u.width)/2)+", "+(g.height+b+5)+")"),Object(s.select)(l).attr("transform","translate( "+(u.widthe.height/2-s)){var i=s*s*(1-r*r/(o*o));0!=i&&(i=Math.sqrt(i)),i=s-i,t.y-e.y>0&&(i=-i),n.y+=i}return n},r},start:function(t,e){var n=t.insert("g").attr("class","node default").attr("id",e.id),r=n.insert("circle",":first-child");return r.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),ge(e,r),e.intersect=function(t){return Oe(e,7,t)},n},end:function(t,e){var n=t.insert("g").attr("class","node default").attr("id",e.id),r=n.insert("circle",":first-child"),i=n.insert("circle",":first-child");return i.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),r.attr("class","state-end").attr("r",5).attr("width",10).attr("height",10),ge(e,i),e.intersect=function(t){return Oe(e,7,t)},n},note:function(t,e){var n=pe(t,e,"node "+e.classes,!0),r=n.shapeSvg,i=n.bbox,a=n.halfPadding;f.info("Classes = ",e.classes);var o=r.insert("rect",":first-child");return o.attr("rx",e.rx).attr("ry",e.ry).attr("x",-i.width/2-a).attr("y",-i.height/2-a).attr("width",i.width+e.padding).attr("height",i.height+e.padding),ge(e,o),e.intersect=function(t){return Ne(e,t)},r},subroutine:function(t,e){var n=pe(t,e,void 0,!0),r=n.shapeSvg,i=n.bbox,a=i.width+e.padding,o=i.height+e.padding,s=ye(r,a,o,[{x:0,y:0},{x:a,y:0},{x:a,y:-o},{x:0,y:-o},{x:0,y:0},{x:-8,y:0},{x:a+8,y:0},{x:a+8,y:-o},{x:-8,y:-o},{x:-8,y:0}]);return ge(e,s),e.intersect=function(t){return De(e,t)},r},fork:Be,join:Be,class_box:function(t,e){var n,r=e.padding/2;n=e.classes?"node "+e.classes:"node default";var i=t.insert("g").attr("class",n).attr("id",e.id),a=i.insert("rect",":first-child"),o=i.insert("line"),c=i.insert("line"),u=0,l=4,h=i.insert("g").attr("class","label"),f=0,d=e.classData.annotations&&e.classData.annotations[0],p=h.node().appendChild(de(e.classData.annotations[0],e.labelStyle,!0,!0)),g=p.getBBox();e.classData.annotations[0]&&(l+=g.height+4,u+=g.width);var y=h.node().appendChild(de(e.labelText,e.labelStyle,!0,!0)),v=y.getBBox();l+=v.height+4,v.width>u&&(u=v.width);var m=[];e.classData.members.forEach((function(t){var n=h.node().appendChild(de(t,e.labelStyle,!0,!0)),r=n.getBBox();r.width>u&&(u=r.width),l+=r.height+4,m.push(n)}));var b=[];e.classData.methods.forEach((function(t){var n=h.node().appendChild(de(t,e.labelStyle,!0,!0)),r=n.getBBox();r.width>u&&(u=r.width),l+=r.height+4,b.push(n)})),l+=8,d&&(Object(s.select)(p).attr("transform","translate( "+-(u+e.padding-g.width/2)/2+", "+-1*l/2+")"),f=g.height+4);var x,_=(u-v.width)/2;if(Object(s.select)(y).attr("transform","translate( "+(-1*u/2+_)+", "+(-1*l/2+f)+")"),f+=v.height+4,o.attr("class","divider").attr("x1",-u/2-r).attr("x2",u/2+r).attr("y1",-l/2-r+8+f).attr("y2",-l/2-r+8+f),f+=8,m.forEach((function(t){Object(s.select)(t).attr("transform","translate( "+-u/2+", "+(-1*l/2+f+4)+")"),f+=v.height+4})),c.attr("class","divider").attr("x1",-u/2-r).attr("x2",u/2+r).attr("y1",-l/2-r+8+f).attr("y2",-l/2-r+8+f),f+=8,b.forEach((function(t){Object(s.select)(t).attr("transform","translate( "+-u/2+", "+(-1*l/2+f)+")"),f+=v.height+4})),vt().flowchart.htmlLabels){var k=p.children[0],w=Object(s.select)(p);x=k.getBoundingClientRect(),w.attr("width",x.width),w.attr("height",x.height)}return a.attr("class","outer title-state").attr("x",-u/2-r).attr("y",-l/2-r).attr("width",u+e.padding).attr("height",l+e.padding),ge(e,a),e.intersect=function(t){return Ne(e,t)},i}},Fe={},Pe=function(t){var e=Fe[t.id];f.trace("Transforming node",t,"translate("+(t.x-t.width/2-5)+", "+(t.y-t.height/2-5)+")"),t.clusterNode?e.attr("transform","translate("+(t.x-t.width/2-8)+", "+(t.y-t.height/2-8)+")"):e.attr("transform","translate("+t.x+", "+t.y+")")},Ie={rect:function(t,e){f.trace("Creating subgraph rect for ",e.id,e);var n=t.insert("g").attr("class","cluster").attr("id",e.id),r=n.insert("rect",":first-child"),i=n.insert("g").attr("class","cluster-label"),a=i.node().appendChild(de(e.labelText,e.labelStyle,void 0,!0)),o=a.getBBox();if(vt().flowchart.htmlLabels){var c=a.children[0],u=Object(s.select)(a);o=c.getBoundingClientRect(),u.attr("width",o.width),u.attr("height",o.height)}var l=0*e.padding,h=l/2;f.trace("Data ",e,JSON.stringify(e)),r.attr("rx",e.rx).attr("ry",e.ry).attr("x",e.x-e.width/2-h).attr("y",e.y-e.height/2-h).attr("width",e.width+l).attr("height",e.height+l),i.attr("transform","translate("+(e.x-o.width/2)+", "+(e.y-e.height/2-e.padding/3+3)+")");var d=r.node().getBBox();return e.width=d.width,e.height=d.height,e.intersect=function(t){return Me(e,t)},n},roundedWithTitle:function(t,e){var n=t.insert("g").attr("class",e.classes).attr("id",e.id),r=n.insert("rect",":first-child"),i=n.insert("g").attr("class","cluster-label"),a=n.append("rect"),o=i.node().appendChild(de(e.labelText,e.labelStyle,void 0,!0)),c=o.getBBox();if(vt().flowchart.htmlLabels){var u=o.children[0],l=Object(s.select)(o);c=u.getBoundingClientRect(),l.attr("width",c.width),l.attr("height",c.height)}c=o.getBBox();var h=0*e.padding,f=h/2;r.attr("class","outer").attr("x",e.x-e.width/2-f).attr("y",e.y-e.height/2-f).attr("width",e.width+h).attr("height",e.height+h),a.attr("class","inner").attr("x",e.x-e.width/2-f).attr("y",e.y-e.height/2-f+c.height-1).attr("width",e.width+h).attr("height",e.height+h-c.height-3),i.attr("transform","translate("+(e.x-c.width/2)+", "+(e.y-e.height/2-e.padding/3+(vt().flowchart.htmlLabels?5:3))+")");var d=r.node().getBBox();return e.width=d.width,e.height=d.height,e.intersect=function(t){return Me(e,t)},n},noteGroup:function(t,e){var n=t.insert("g").attr("class","note-cluster").attr("id",e.id),r=n.insert("rect",":first-child"),i=0*e.padding,a=i/2;r.attr("rx",e.rx).attr("ry",e.ry).attr("x",e.x-e.width/2-a).attr("y",e.y-e.height/2-a).attr("width",e.width+i).attr("height",e.height+i).attr("fill","none");var o=r.node().getBBox();return e.width=o.width,e.height=o.height,e.intersect=function(t){return Me(e,t)},n},divider:function(t,e){var n=t.insert("g").attr("class",e.classes).attr("id",e.id),r=n.insert("rect",":first-child"),i=0*e.padding,a=i/2;r.attr("class","divider").attr("x",e.x-e.width/2-a).attr("y",e.y-e.height/2).attr("width",e.width+i).attr("height",e.height+i);var o=r.node().getBBox();return e.width=o.width,e.height=o.height,e.intersect=function(t){return Me(e,t)},n}},je={},Re={},Ye=function(t,e){var n=t.x,r=t.y,i=Math.abs(e.x-n),a=Math.abs(e.y-r),o=t.width/2,s=t.height/2;return i>=o||a>=s},ze=function(t,e,n){f.warn("intersection calc o:",e," i:",n,t);var r=t.x,i=t.y,a=Math.abs(r-n.x),o=t.width/2,s=n.xMath.abs(r-e.x)*c){var y=n.y10?f.debug("Opting out, no graph "):(f.debug("Opting in, graph "),t.nodes().forEach((function(e){t.children(e).length>0&&(f.warn("Cluster identified",e," Replacement id in edges: ",ke(e,t)),me[e]=function t(e,n){for(var r=n.children(e),i=[].concat(r),a=0;a0&&(f.debug("Cluster identified",e,me),r.forEach((function(t){t.v!==e&&t.w!==e&&xe(t.v,e)^xe(t.w,e)&&(f.debug("Edge: ",t," leaves cluster ",e),f.debug("Decendants of ",e,": ",me[e]),ve[e].externalConnections=!0)})))})),Ee(t,0),t.edges().forEach((function(e){var n=t.edge(e);f.trace("Edge "+e.v+" -> "+e.w+": "+JSON.stringify(e)),f.trace("Edge "+e.v+" -> "+e.w+": "+JSON.stringify(t.edge(e)));var r=e.v,i=e.w;f.trace("Fix",ve,"ids:",e.v,e.w,"Translateing: ",ve[e.v],ve[e.w]),(ve[e.v]||ve[e.w])&&(f.warn("Fixing and trixing - removing",e.v,e.w,e.name),r=we(e.v),i=we(e.w),t.removeEdge(e.v,e.w,e.name),r!==e.v&&(n.fromCluster=e.v),i!==e.w&&(n.toCluster=e.w),f.warn("Replacing with",r,i,e.name),t.setEdge(r,i,n,e.name))})),f.warn("Adjusted Graph",$.a.json.write(t)),f.trace(ve))}(e),f.warn("Graph after:",$.a.json.write(e)),f.warn("Graph ever after:",e.graph()),function t(e,n,r,i){f.info("Graph in recursive render:",$.a.json.write(n),i);var a=n.graph().rankdir;f.warn("Dir in recursive render - dir:",a);var o=e.insert("g").attr("class","root");n.nodes()?f.info("Recursive render",n.nodes()):f.info("No nodes found for",n),n.edges().length>0&&f.info("Recursive edges",n.edge(n.edges()[0]));var c=o.insert("g").attr("class","clusters"),u=o.insert("g").attr("class","edgePaths"),l=o.insert("g").attr("class","edgeLabels"),h=o.insert("g").attr("class","nodes");return n.nodes().forEach((function(e){var o=n.node(e);if(void 0!==i){var s=JSON.parse(JSON.stringify(i.clusterData));f.info("Setting data for cluster",s),n.setNode(i.id,s),n.setParent(e,i.id,s)}if(f.info("(Insert) Node "+e+": "+JSON.stringify(n.node(e))),o&&o.clusterNode){f.info("Cluster identified",e,o,n.node(e));var c=t(h,o.graph,r,n.node(e));ge(o,c),function(t,e){Fe[e.id]=t}(c,o),f.warn("Recursive render complete",c,o)}else n.children(e).length>0?(f.info("Cluster - the non recursive path",e,o.id,o,n),f.info(ke(o.id,n)),ve[o.id]={id:ke(o.id,n),node:o}):(f.info("Node - the non recursive path",e,o.id,o),function(t,e,n){Fe[e.id]=Le[e.shape](t,e,n)}(h,n.node(e),a))})),n.edges().forEach((function(t){var e=n.edge(t.v,t.w,t.name);f.info("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(t)),f.info("Edge "+t.v+" -> "+t.w+": ",t," ",JSON.stringify(n.edge(t))),f.info("Fix",ve,"ids:",t.v,t.w,"Translateing: ",ve[t.v],ve[t.w]),function(t,e){var n=de(e.label,e.labelStyle),r=t.insert("g").attr("class","edgeLabel"),i=r.insert("g").attr("class","label");i.node().appendChild(n);var a=n.getBBox();if(vt().flowchart.htmlLabels){var o=n.children[0],c=Object(s.select)(n);a=o.getBoundingClientRect(),c.attr("width",a.width),c.attr("height",a.height)}i.attr("transform","translate("+-a.width/2+", "+-a.height/2+")"),Re[e.id]=r,e.width=a.width,e.height=a.height}(l,e)})),n.edges().forEach((function(t){f.info("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(t))})),f.info("#############################################"),f.info("### Layout ###"),f.info("#############################################"),f.info(n),he.a.layout(n),f.info("Graph after layout:",$.a.json.write(n)),n.nodes().forEach((function(t){var e=n.node(t);f.info("Position "+t+": "+JSON.stringify(n.node(t))),f.info("Position "+t+": ("+e.x,","+e.y,") width: ",e.width," height: ",e.height),e&&e.clusterNode?Pe(e):n.children(t).length>0?(function(t,e){f.trace("Inserting cluster");var n=e.shape||"rect";je[e.id]=Ie[n](t,e)}(c,e),ve[e.id].node=e):Pe(e)})),n.edges().forEach((function(t){var e=n.edge(t);f.info("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(e),e),function(t,e){if(f.info("Moving label",t.id,t.label,Re[t.id]),t.label){var n=Re[t.id],r=t.x,i=t.y;if(e){var a=z.calcLabelPosition(e);r=a.x,i=a.y}n.attr("transform","translate("+r+", "+i+")")}}(e,function(t,e,n,r,i,a){var o=n.points,c=!1,u=a.node(e.v),l=a.node(e.w);if(l.intersect&&u.intersect&&((o=o.slice(1,n.points.length-1)).unshift(u.intersect(o[0])),f.info("Last point",o[o.length-1],l,l.intersect(o[o.length-1])),o.push(l.intersect(o[o.length-1]))),n.toCluster){var h;f.trace("edge",n),f.trace("to cluster",r[n.toCluster]),o=[];var d=!1;n.points.forEach((function(t){var e=r[n.toCluster].node;if(Ye(e,t)||d)d||o.push(t);else{f.trace("inside",n.toCluster,t,h);var i=ze(e,h,t),a=!1;o.forEach((function(t){a=a||t.x===i.x&&t.y===i.y})),o.find((function(t){return t.x===i.x&&t.y===i.y}))?f.warn("no intersect",i,o):o.push(i),d=!0}h=t})),c=!0}if(n.fromCluster){f.trace("edge",n),f.warn("from cluster",r[n.fromCluster]);for(var p,g=[],y=!1,v=o.length-1;v>=0;v--){var m=o[v],b=r[n.fromCluster].node;if(Ye(b,m)||y)f.trace("Outside point",m),y||g.unshift(m);else{f.warn("inside",n.fromCluster,m,b);var x=ze(b,p,m);g.unshift(x),y=!0}p=m}o=g,c=!0}var _,k=o.filter((function(t){return!Number.isNaN(t.y)})),w=Object(s.line)().x((function(t){return t.x})).y((function(t){return t.y})).curve(s.curveBasis);switch(n.thickness){case"normal":_="edge-thickness-normal";break;case"thick":_="edge-thickness-thick";break;default:_=""}switch(n.pattern){case"solid":_+=" edge-pattern-solid";break;case"dotted":_+=" edge-pattern-dotted";break;case"dashed":_+=" edge-pattern-dashed"}var E=t.append("path").attr("d",w(k)).attr("id",n.id).attr("class"," "+_+(n.classes?" "+n.classes:"")),T="";switch(vt().state.arrowMarkerAbsolute&&(T=(T=(T=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),f.info("arrowTypeStart",n.arrowTypeStart),f.info("arrowTypeEnd",n.arrowTypeEnd),n.arrowTypeStart){case"arrow_cross":E.attr("marker-start","url("+T+"#"+i+"-crossStart)");break;case"arrow_point":E.attr("marker-start","url("+T+"#"+i+"-pointStart)");break;case"arrow_barb":E.attr("marker-start","url("+T+"#"+i+"-barbStart)");break;case"arrow_circle":E.attr("marker-start","url("+T+"#"+i+"-circleStart)");break;case"aggregation":E.attr("marker-start","url("+T+"#"+i+"-aggregationStart)");break;case"extension":E.attr("marker-start","url("+T+"#"+i+"-extensionStart)");break;case"composition":E.attr("marker-start","url("+T+"#"+i+"-compositionStart)");break;case"dependency":E.attr("marker-start","url("+T+"#"+i+"-dependencyStart)")}switch(n.arrowTypeEnd){case"arrow_cross":E.attr("marker-end","url("+T+"#"+i+"-crossEnd)");break;case"arrow_point":E.attr("marker-end","url("+T+"#"+i+"-pointEnd)");break;case"arrow_barb":E.attr("marker-end","url("+T+"#"+i+"-barbEnd)");break;case"arrow_circle":E.attr("marker-end","url("+T+"#"+i+"-circleEnd)");break;case"aggregation":E.attr("marker-end","url("+T+"#"+i+"-aggregationEnd)");break;case"extension":E.attr("marker-end","url("+T+"#"+i+"-extensionEnd)");break;case"composition":E.attr("marker-end","url("+T+"#"+i+"-compositionEnd)");break;case"dependency":E.attr("marker-end","url("+T+"#"+i+"-dependencyEnd)")}if(c)return o}(u,t,e,ve,r,n))})),o}(t,e,r)},$e={},We=function(t,e,n){var r=Object(s.select)('[id="'.concat(n,'"]'));Object.keys(t).forEach((function(n){var i=t[n],a="default";i.classes.length>0&&(a=i.classes.join(" "));var o,s=D(i.styles),c=void 0!==i.text?i.text:i.id;if(vt().flowchart.htmlLabels){var u={label:c.replace(/fa[lrsb]?:fa-[\w-]+/g,(function(t){return"")}))};(o=Ht()(r,u).node()).parentNode.removeChild(o)}else{var l=document.createElementNS("http://www.w3.org/2000/svg","text");l.setAttribute("style",s.labelStyle.replace("color:","fill:"));for(var h=c.split(b.lineBreakRegex),d=0;d0)switch(e.valign){case"top":case"start":s=function(){return Math.round(e.y+e.textMargin)};break;case"middle":case"center":s=function(){return Math.round(e.y+(n+r+e.textMargin)/2)};break;case"bottom":case"end":s=function(){return Math.round(e.y+(n+r+2*e.textMargin)-e.textMargin)}}if(void 0!==e.anchor&&void 0!==e.textMargin&&void 0!==e.width)switch(e.anchor){case"left":case"start":e.x=Math.round(e.x+e.textMargin),e.anchor="start",e.dominantBaseline="text-after-edge",e.alignmentBaseline="middle";break;case"middle":case"center":e.x=Math.round(e.x+e.width/2),e.anchor="middle",e.dominantBaseline="middle",e.alignmentBaseline="middle";break;case"right":case"end":e.x=Math.round(e.x+e.width-e.textMargin),e.anchor="end",e.dominantBaseline="text-before-edge",e.alignmentBaseline="middle"}for(var c=0;c0&&(r+=(l._groups||l)[0][0].getBBox().height,n=r),a.push(l)}return a},Xe=function(t,e){var n,r,i,a,o=t.append("polygon");return o.attr("points",(n=e.x)+","+(r=e.y)+" "+(n+(i=e.width))+","+r+" "+(n+i)+","+(r+(a=e.height)-7)+" "+(n+i-8.4)+","+(r+a)+" "+n+","+(r+a)),o.attr("class","labelBox"),e.y=e.y+e.height/2,qe(t,e),o},Ze=-1,Je=function(){return{x:0,y:0,fill:void 0,anchor:void 0,style:"#666",width:void 0,height:void 0,textMargin:0,rx:0,ry:0,tspan:!0,valign:void 0}},Qe=function(){return{x:0,y:0,fill:"#EDF2AE",stroke:"#666",width:100,anchor:"start",height:100,rx:0,ry:0}},Ke=function(){function t(t,e,n,i,a,o,s){r(e.append("text").attr("x",n+a/2).attr("y",i+o/2+5).style("text-anchor","middle").text(t),s)}function e(t,e,n,i,a,o,s,c){for(var u=c.actorFontSize,l=c.actorFontFamily,h=c.actorFontWeight,f=t.split(b.lineBreakRegex),d=0;d2&&void 0!==arguments[2]?arguments[2]:{text:void 0,wrap:void 0},r=arguments.length>3?arguments[3]:void 0;if(r===Cn.ACTIVE_END){var i=wn(t.actor);if(i<1){var a=new Error("Trying to inactivate an inactive participant ("+t.actor+")");throw a.hash={text:"->>-",token:"->>-",line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["'ACTIVE_PARTICIPANT'"]},a}}return yn.push({from:t,to:e,message:n.text,wrap:void 0===n.wrap&&Tn()||!!n.wrap,type:r}),!0},Tn=function(){return _n},Cn={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23},An=function(t,e,n){var r={actor:t,placement:e,message:n.text,wrap:void 0===n.wrap&&Tn()||!!n.wrap},i=[].concat(t,t);vn.push(r),yn.push({from:i[0],to:i[1],message:n.text,wrap:void 0===n.wrap&&Tn()||!!n.wrap,type:Cn.NOTE,placement:e})},Sn=function(t){mn=t.text,bn=void 0===t.wrap&&Tn()||!!t.wrap},Mn={addActor:kn,addMessage:function(t,e,n,r){yn.push({from:t,to:e,message:n.text,wrap:void 0===n.wrap&&Tn()||!!n.wrap,answer:r})},addSignal:En,autoWrap:Tn,setWrap:function(t){_n=t},enableSequenceNumbers:function(){xn=!0},showSequenceNumbers:function(){return xn},getMessages:function(){return yn},getActors:function(){return gn},getActor:function(t){return gn[t]},getActorKeys:function(){return Object.keys(gn)},getTitle:function(){return mn},parseDirective:function(t,e,n){co.parseDirective(this,t,e,n)},getConfig:function(){return vt().sequence},getTitleWrapped:function(){return bn},clear:function(){gn={},yn=[]},parseMessage:function(t){var e=t.trim(),n={text:e.replace(/^[:]?(?:no)?wrap:/,"").trim(),wrap:null===e.match(/^[:]?(?:no)?wrap:/)?b.hasBreaks(e)||void 0:null!==e.match(/^[:]?wrap:/)||null===e.match(/^[:]?nowrap:/)&&void 0};return f.debug("parseMessage:",n),n},LINETYPE:Cn,ARROWTYPE:{FILLED:0,OPEN:1},PLACEMENT:{LEFTOF:0,RIGHTOF:1,OVER:2},addNote:An,setTitle:Sn,apply:function t(e){if(e instanceof Array)e.forEach((function(e){t(e)}));else switch(e.type){case"addActor":kn(e.actor,e.actor,e.description);break;case"activeStart":case"activeEnd":En(e.actor,void 0,void 0,e.signalType);break;case"addNote":An(e.actor,e.placement,e.text);break;case"addMessage":En(e.from,e.to,e.msg,e.signalType);break;case"loopStart":En(void 0,void 0,e.loopText,e.signalType);break;case"loopEnd":En(void 0,void 0,void 0,e.signalType);break;case"rectStart":En(void 0,void 0,e.color,e.signalType);break;case"rectEnd":En(void 0,void 0,void 0,e.signalType);break;case"optStart":En(void 0,void 0,e.optText,e.signalType);break;case"optEnd":En(void 0,void 0,void 0,e.signalType);break;case"altStart":case"else":En(void 0,void 0,e.altText,e.signalType);break;case"altEnd":En(void 0,void 0,void 0,e.signalType);break;case"setTitle":Sn(e.text);break;case"parStart":case"and":En(void 0,void 0,e.parText,e.signalType);break;case"parEnd":En(void 0,void 0,void 0,e.signalType)}}};fn.parser.yy=Mn;var On={},Dn={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],activations:[],models:{getHeight:function(){return Math.max.apply(null,0===this.actors.length?[0]:this.actors.map((function(t){return t.height||0})))+(0===this.loops.length?0:this.loops.map((function(t){return t.height||0})).reduce((function(t,e){return t+e})))+(0===this.messages.length?0:this.messages.map((function(t){return t.height||0})).reduce((function(t,e){return t+e})))+(0===this.notes.length?0:this.notes.map((function(t){return t.height||0})).reduce((function(t,e){return t+e})))},clear:function(){this.actors=[],this.loops=[],this.messages=[],this.notes=[]},addActor:function(t){this.actors.push(t)},addLoop:function(t){this.loops.push(t)},addMessage:function(t){this.messages.push(t)},addNote:function(t){this.notes.push(t)},lastActor:function(){return this.actors[this.actors.length-1]},lastLoop:function(){return this.loops[this.loops.length-1]},lastMessage:function(){return this.messages[this.messages.length-1]},lastNote:function(){return this.notes[this.notes.length-1]},actors:[],loops:[],messages:[],notes:[]},init:function(){this.sequenceItems=[],this.activations=[],this.models.clear(),this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0,Pn(fn.parser.yy.getConfig())},updateVal:function(t,e,n,r){void 0===t[e]?t[e]=n:t[e]=r(n,t[e])},updateBounds:function(t,e,n,r){var i=this,a=0;function o(o){return function(s){a++;var c=i.sequenceItems.length-a+1;i.updateVal(s,"starty",e-c*On.boxMargin,Math.min),i.updateVal(s,"stopy",r+c*On.boxMargin,Math.max),i.updateVal(Dn.data,"startx",t-c*On.boxMargin,Math.min),i.updateVal(Dn.data,"stopx",n+c*On.boxMargin,Math.max),"activation"!==o&&(i.updateVal(s,"startx",t-c*On.boxMargin,Math.min),i.updateVal(s,"stopx",n+c*On.boxMargin,Math.max),i.updateVal(Dn.data,"starty",e-c*On.boxMargin,Math.min),i.updateVal(Dn.data,"stopy",r+c*On.boxMargin,Math.max))}}this.sequenceItems.forEach(o()),this.activations.forEach(o("activation"))},insert:function(t,e,n,r){var i=Math.min(t,n),a=Math.max(t,n),o=Math.min(e,r),s=Math.max(e,r);this.updateVal(Dn.data,"startx",i,Math.min),this.updateVal(Dn.data,"starty",o,Math.min),this.updateVal(Dn.data,"stopx",a,Math.max),this.updateVal(Dn.data,"stopy",s,Math.max),this.updateBounds(i,o,a,s)},newActivation:function(t,e,n){var r=n[t.from.actor],i=In(t.from.actor).length||0,a=r.x+r.width/2+(i-1)*On.activationWidth/2;this.activations.push({startx:a,starty:this.verticalPos+2,stopx:a+On.activationWidth,stopy:void 0,actor:t.from.actor,anchored:nn(e)})},endActivation:function(t){var e=this.activations.map((function(t){return t.actor})).lastIndexOf(t.from.actor);return this.activations.splice(e,1)[0]},createLoop:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{message:void 0,wrap:!1,width:void 0},e=arguments.length>1?arguments[1]:void 0;return{startx:void 0,starty:this.verticalPos,stopx:void 0,stopy:void 0,title:t.message,wrap:t.wrap,width:t.width,height:0,fill:e}},newLoop:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{message:void 0,wrap:!1,width:void 0},e=arguments.length>1?arguments[1]:void 0;this.sequenceItems.push(this.createLoop(t,e))},endLoop:function(){return this.sequenceItems.pop()},addSectionToLoop:function(t){var e=this.sequenceItems.pop();e.sections=e.sections||[],e.sectionTitles=e.sectionTitles||[],e.sections.push({y:Dn.getVerticalPos(),height:0}),e.sectionTitles.push(t),this.sequenceItems.push(e)},bumpVerticalPos:function(t){this.verticalPos=this.verticalPos+t,this.data.stopy=this.verticalPos},getVerticalPos:function(){return this.verticalPos},getBounds:function(){return console.log("here",this.data),{bounds:this.data,models:this.models}}},Nn=function(t){return{fontFamily:t.messageFontFamily,fontSize:t.messageFontSize,fontWeight:t.messageFontWeight}},Bn=function(t){return{fontFamily:t.noteFontFamily,fontSize:t.noteFontSize,fontWeight:t.noteFontWeight}},Ln=function(t){return{fontFamily:t.actorFontFamily,fontSize:t.actorFontSize,fontWeight:t.actorFontWeight}},Fn=function(t,e,n,r){for(var i=0,a=0,o=0;o0&&o.forEach((function(r){if(n=r,i.startx===i.stopx){var a=e[t.from],o=e[t.to];n.from=Math.min(a.x-i.width/2,a.x-a.width/2,n.from),n.to=Math.max(o.x+i.width/2,o.x+a.width/2,n.to),n.width=Math.max(n.width,Math.abs(n.to-n.from))-On.labelBoxWidth}else n.from=Math.min(i.startx,n.from),n.to=Math.max(i.stopx,n.to),n.width=Math.max(n.width,i.width)-On.labelBoxWidth})))})),Dn.activations=[],f.debug("Loop type widths:",a),a}(a,r);sn(n),un(n),cn(n);var l=1;a.forEach((function(t){var e,i,a;switch(t.type){case fn.parser.yy.LINETYPE.NOTE:i=t.noteModel,function(t,e){Dn.bumpVerticalPos(On.boxMargin),e.height=On.boxMargin,e.starty=Dn.getVerticalPos();var n=hn();n.x=e.startx,n.y=e.starty,n.width=e.width||On.width,n.class="note";var r=t.append("g"),i=tn(r,n),a=ln();a.x=e.startx,a.y=e.starty,a.width=n.width,a.dy="1em",a.text=e.message,a.class="noteText",a.fontFamily=On.noteFontFamily,a.fontSize=On.noteFontSize,a.fontWeight=On.noteFontWeight,a.anchor=On.noteAlign,a.textMargin=On.noteMargin,a.valign=On.noteAlign,a.wrap=!0;var o=qe(r,a),s=Math.round(o.map((function(t){return(t._groups||t)[0][0].getBBox().height})).reduce((function(t,e){return t+e})));i.attr("height",s+2*On.noteMargin),e.height+=s+2*On.noteMargin,Dn.bumpVerticalPos(s+2*On.noteMargin),e.stopy=e.starty+s+2*On.noteMargin,e.stopx=e.startx+n.width,Dn.insert(e.startx,e.starty,e.stopx,e.stopy),Dn.models.addNote(e)}(n,i);break;case fn.parser.yy.LINETYPE.ACTIVE_START:Dn.newActivation(t,n,r);break;case fn.parser.yy.LINETYPE.ACTIVE_END:!function(t,e){var r=Dn.endActivation(t);r.starty+18>e&&(r.starty=e-6,e+=12),rn(n,r,e,On,In(t.from.actor).length),Dn.insert(r.startx,e-10,r.stopx,e)}(t,Dn.getVerticalPos());break;case fn.parser.yy.LINETYPE.LOOP_START:Rn(u,t,On.boxMargin,On.boxMargin+On.boxTextMargin,(function(t){return Dn.newLoop(t)}));break;case fn.parser.yy.LINETYPE.LOOP_END:e=Dn.endLoop(),an(n,e,"loop",On),Dn.bumpVerticalPos(e.stopy-Dn.getVerticalPos()),Dn.models.addLoop(e);break;case fn.parser.yy.LINETYPE.RECT_START:Rn(u,t,On.boxMargin,On.boxMargin,(function(t){return Dn.newLoop(void 0,t.message)}));break;case fn.parser.yy.LINETYPE.RECT_END:e=Dn.endLoop(),on(n,e),Dn.models.addLoop(e),Dn.bumpVerticalPos(e.stopy-Dn.getVerticalPos());break;case fn.parser.yy.LINETYPE.OPT_START:Rn(u,t,On.boxMargin,On.boxMargin+On.boxTextMargin,(function(t){return Dn.newLoop(t)}));break;case fn.parser.yy.LINETYPE.OPT_END:e=Dn.endLoop(),an(n,e,"opt",On),Dn.bumpVerticalPos(e.stopy-Dn.getVerticalPos()),Dn.models.addLoop(e);break;case fn.parser.yy.LINETYPE.ALT_START:Rn(u,t,On.boxMargin,On.boxMargin+On.boxTextMargin,(function(t){return Dn.newLoop(t)}));break;case fn.parser.yy.LINETYPE.ALT_ELSE:Rn(u,t,On.boxMargin+On.boxTextMargin,On.boxMargin,(function(t){return Dn.addSectionToLoop(t)}));break;case fn.parser.yy.LINETYPE.ALT_END:e=Dn.endLoop(),an(n,e,"alt",On),Dn.bumpVerticalPos(e.stopy-Dn.getVerticalPos()),Dn.models.addLoop(e);break;case fn.parser.yy.LINETYPE.PAR_START:Rn(u,t,On.boxMargin,On.boxMargin+On.boxTextMargin,(function(t){return Dn.newLoop(t)}));break;case fn.parser.yy.LINETYPE.PAR_AND:Rn(u,t,On.boxMargin+On.boxTextMargin,On.boxMargin,(function(t){return Dn.addSectionToLoop(t)}));break;case fn.parser.yy.LINETYPE.PAR_END:e=Dn.endLoop(),an(n,e,"par",On),Dn.bumpVerticalPos(e.stopy-Dn.getVerticalPos()),Dn.models.addLoop(e);break;default:try{(a=t.msgModel).starty=Dn.getVerticalPos(),a.sequenceIndex=l,function(t,e){Dn.bumpVerticalPos(10);var n=e.startx,r=e.stopx,i=e.starty,a=e.message,o=e.type,s=e.sequenceIndex,c=e.wrap,u=b.splitBreaks(a).length,l=z.calculateTextDimensions(a,Nn(On)),h=l.height/u;e.height+=h,Dn.bumpVerticalPos(h);var f=ln();f.x=n,f.y=i+10,f.width=r-n,f.class="messageText",f.dy="1em",f.text=a,f.fontFamily=On.messageFontFamily,f.fontSize=On.messageFontSize,f.fontWeight=On.messageFontWeight,f.anchor=On.messageAlign,f.valign=On.messageAlign,f.textMargin=On.wrapPadding,f.tspan=!1,f.wrap=c,qe(t,f);var d,p,g=l.height-10,y=l.width;if(n===r){p=Dn.getVerticalPos()+g,On.rightAngles?d=t.append("path").attr("d","M ".concat(n,",").concat(p," H ").concat(n+Math.max(On.width/2,y/2)," V ").concat(p+25," H ").concat(n)):(g+=On.boxMargin,p=Dn.getVerticalPos()+g,d=t.append("path").attr("d","M "+n+","+p+" C "+(n+60)+","+(p-10)+" "+(n+60)+","+(p+30)+" "+n+","+(p+20))),g+=30;var v=Math.max(y/2,On.width/2);Dn.insert(n-v,Dn.getVerticalPos()-10+g,r+v,Dn.getVerticalPos()+30+g)}else g+=On.boxMargin,p=Dn.getVerticalPos()+g,(d=t.append("line")).attr("x1",n),d.attr("y1",p),d.attr("x2",r),d.attr("y2",p),Dn.insert(n,p-10,r,p);o===fn.parser.yy.LINETYPE.DOTTED||o===fn.parser.yy.LINETYPE.DOTTED_CROSS||o===fn.parser.yy.LINETYPE.DOTTED_OPEN?(d.style("stroke-dasharray","3, 3"),d.attr("class","messageLine1")):d.attr("class","messageLine0");var m="";On.arrowMarkerAbsolute&&(m=(m=(m=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),d.attr("stroke-width",2),d.attr("stroke","none"),d.style("fill","none"),o!==fn.parser.yy.LINETYPE.SOLID&&o!==fn.parser.yy.LINETYPE.DOTTED||d.attr("marker-end","url("+m+"#arrowhead)"),o!==fn.parser.yy.LINETYPE.SOLID_CROSS&&o!==fn.parser.yy.LINETYPE.DOTTED_CROSS||d.attr("marker-end","url("+m+"#crosshead)"),(Mn.showSequenceNumbers()||On.showSequenceNumbers)&&(d.attr("marker-start","url("+m+"#sequencenumber)"),t.append("text").attr("x",n).attr("y",p+4).attr("font-family","sans-serif").attr("font-size","12px").attr("text-anchor","middle").attr("textLength","16px").attr("class","sequenceNumber").text(s)),Dn.bumpVerticalPos(g),e.height+=g,e.stopy=e.starty+e.height,Dn.insert(e.fromBounds,e.starty,e.toBounds,e.stopy)}(n,a),Dn.models.addMessage(a)}catch(t){f.error("error while drawing message",t)}}[fn.parser.yy.LINETYPE.SOLID_OPEN,fn.parser.yy.LINETYPE.DOTTED_OPEN,fn.parser.yy.LINETYPE.SOLID,fn.parser.yy.LINETYPE.DOTTED,fn.parser.yy.LINETYPE.SOLID_CROSS,fn.parser.yy.LINETYPE.DOTTED_CROSS].includes(t.type)&&l++})),On.mirrorActors&&(Dn.bumpVerticalPos(2*On.boxMargin),Fn(n,r,i,Dn.getVerticalPos()));var h=Dn.getBounds().bounds;f.debug("For line height fix Querying: #"+e+" .actor-line"),Object(s.selectAll)("#"+e+" .actor-line").attr("y2",h.stopy);var d=h.stopy-h.starty+2*On.diagramMarginY;On.mirrorActors&&(d=d-On.boxMargin+On.bottomMarginAdj);var p=h.stopx-h.startx+2*On.diagramMarginX;o&&n.append("text").text(o).attr("x",(h.stopx-h.startx)/2-2*On.diagramMarginX).attr("y",-25),On.useMaxWidth?(n.attr("height","100%"),n.attr("width","100%"),n.attr("style","max-width:"+p+"px;")):(n.attr("height",d),n.attr("width",p));var g=o?40:0;n.attr("viewBox",h.startx-On.diagramMarginX+" -"+(On.diagramMarginY+g)+" "+p+" "+(d+g)),f.debug("models:",Dn.models)}},zn=n(27),Un=n.n(zn);var $n,Wn,Vn="",Hn="",Gn="",qn=[],Xn="",Zn=[],Jn=[],Qn="",Kn=["active","done","crit","milestone"],tr=[],er=!1,nr=0,rr=function(t,e,n){return t.isoWeekday()>=6&&n.indexOf("weekends")>=0||n.indexOf(t.format("dddd").toLowerCase())>=0||n.indexOf(t.format(e.trim()))>=0},ir=function(t,e,n){if(n.length&&!t.manualEndTime){var r=l()(t.startTime,e,!0);r.add(1,"d");var i=l()(t.endTime,e,!0),a=ar(r,i,e,n);t.endTime=i.toDate(),t.renderEndTime=a}},ar=function(t,e,n,r){for(var i=!1,a=null;t<=e;)i||(a=e.toDate()),(i=rr(t,n,r))&&e.add(1,"d"),t.add(1,"d");return a},or=function(t,e,n){n=n.trim();var r=/^after\s+([\d\w- ]+)/.exec(n.trim());if(null!==r){var i=null;if(r[1].split(" ").forEach((function(t){var e=dr(t);void 0!==e&&(i?e.endTime>i.endTime&&(i=e):i=e)})),i)return i.endTime;var a=new Date;return a.setHours(0,0,0,0),a}var o=l()(n,e.trim(),!0);return o.isValid()?o.toDate():(f.debug("Invalid date:"+n),f.debug("With date format:"+e.trim()),new Date)},sr=function(t,e){if(null!==t)switch(t[2]){case"s":e.add(t[1],"seconds");break;case"m":e.add(t[1],"minutes");break;case"h":e.add(t[1],"hours");break;case"d":e.add(t[1],"days");break;case"w":e.add(t[1],"weeks")}return e.toDate()},cr=function(t,e,n,r){r=r||!1,n=n.trim();var i=l()(n,e.trim(),!0);return i.isValid()?(r&&i.add(1,"d"),i.toDate()):sr(/^([\d]+)([wdhms])/.exec(n.trim()),l()(t))},ur=0,lr=function(t){return void 0===t?"task"+(ur+=1):t},hr=[],fr={},dr=function(t){var e=fr[t];return hr[e]},pr=function(){for(var t=function(t){var e=hr[t],n="";switch(hr[t].raw.startTime.type){case"prevTaskEnd":var r=dr(e.prevTaskId);e.startTime=r.endTime;break;case"getStartDate":(n=or(0,Vn,hr[t].raw.startTime.startData))&&(hr[t].startTime=n)}return hr[t].startTime&&(hr[t].endTime=cr(hr[t].startTime,Vn,hr[t].raw.endTime.data,er),hr[t].endTime&&(hr[t].processed=!0,hr[t].manualEndTime=l()(hr[t].raw.endTime.data,"YYYY-MM-DD",!0).isValid(),ir(hr[t],Vn,qn))),hr[t].processed},e=!0,n=0;nr?i=1:n0&&(e=t.classes.join(" "));for(var n=0,r=0;rn-e?n+a+1.5*xr.leftPadding>u?e+r-5:n+r+5:(n-e)/2+e+r})).attr("y",(function(t,r){return t.order*e+xr.barHeight/2+(xr.fontSize/2-2)+n})).attr("text-height",i).attr("class",(function(t){var e=o(t.startTime),n=o(t.endTime);t.milestone&&(n=e+i);var r=this.getBBox().width,a="";t.classes.length>0&&(a=t.classes.join(" "));var s=0;console.log(xr);for(var l=0;ln-e?n+r+1.5*xr.leftPadding>u?a+" taskTextOutsideLeft taskTextOutside"+s+" "+h:a+" taskTextOutsideRight taskTextOutside"+s+" "+h+" width-"+r:a+" taskText taskText"+s+" "+h+" width-"+r}))}(t,i,u,f,r,0,e),function(t,e){for(var n=[],r=0,i=0;i0&&a.setAttribute("dy","1em"),a.textContent=e[i],r.appendChild(a)}return r})).attr("x",10).attr("y",(function(i,a){if(!(a>0))return i[1]*t/2+e;for(var o=0;o0){var r=t.split("~");n=r[0],e=r[1]}return{className:n,type:e}},Mr=function(t){var e=Sr(t);void 0===Tr[e.className]&&(Tr[e.className]={id:e.className,type:e.type,cssClasses:[],methods:[],members:[],annotations:[],domId:"classid-"+e.className+"-"+Cr},Cr++)},Or=function(t){for(var e=Object.keys(Tr),n=0;n>")?r.annotations.push(i.substring(2,i.length-2)):i.indexOf(")")>0?r.methods.push(i):i&&r.members.push(i)}},Nr=function(t,e){t.split(",").forEach((function(t){var n=t;t[0].match(/\d/)&&(n="classid-"+n),void 0!==Tr[n]&&Tr[n].cssClasses.push(e)}))},Br={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3},Lr=function(t){var e=Object(s.select)(".mermaidTooltip");null===(e._groups||e)[0][0]&&(e=Object(s.select)("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),Object(s.select)(t).select("svg").selectAll("g.node").on("mouseover",(function(){var t=Object(s.select)(this);if(null!==t.attr("title")){var n=this.getBoundingClientRect();e.transition().duration(200).style("opacity",".9"),e.html(t.attr("title")).style("left",window.scrollX+n.left+(n.right-n.left)/2+"px").style("top",window.scrollY+n.top-14+document.body.scrollTop+"px"),t.classed("hover",!0)}})).on("mouseout",(function(){e.transition().duration(500).style("opacity",0),Object(s.select)(this).classed("hover",!1)}))};Ar.push(Lr);var Fr={parseDirective:function(t,e,n){co.parseDirective(this,t,e,n)},getConfig:function(){return vt().class},addClass:Mr,bindFunctions:function(t){Ar.forEach((function(e){e(t)}))},clear:function(){Er=[],Tr={},(Ar=[]).push(Lr)},getClass:function(t){return Tr[t]},getClasses:function(){return Tr},addAnnotation:function(t,e){var n=Sr(t).className;Tr[n].annotations.push(e)},getRelations:function(){return Er},addRelation:function(t){f.debug("Adding relation: "+JSON.stringify(t)),Mr(t.id1),Mr(t.id2),t.id1=Sr(t.id1).className,t.id2=Sr(t.id2).className,Er.push(t)},addMember:Dr,addMembers:function(t,e){Array.isArray(e)&&(e.reverse(),e.forEach((function(e){return Dr(t,e)})))},cleanupLabel:function(t){return":"===t.substring(0,1)?t.substr(1).trim():t.trim()},lineType:{LINE:0,DOTTED_LINE:1},relationType:Br,setClickEvent:function(t,e,n){t.split(",").forEach((function(t){!function(t,e,n){var r=t,i=Or(r);"loose"===wr.securityLevel&&void 0!==e&&void 0!==Tr[r]&&(n&&(Tr[r].tooltip=b.sanitizeText(n,wr)),Ar.push((function(){var t=document.querySelector('[id="'.concat(i,'"]'));null!==t&&t.addEventListener("click",(function(){z.runFunc(e,i)}),!1)})))}(t,e,n)})),Nr(t,"clickable")},setCssClass:Nr,setLink:function(t,e,n){t.split(",").forEach((function(t){var r=t;t[0].match(/\d/)&&(r="classid-"+r),void 0!==Tr[r]&&(Tr[r].link=z.formatUrl(e,wr),n&&(Tr[r].tooltip=b.sanitizeText(n,wr)))})),Nr(t,"clickable")},lookUpDomId:Or},Pr=n(13),Ir=n.n(Pr),jr=0,Rr=function(t){var e="";try{e=(t[1]?t[1].trim():"")+(t[2]?t[2].trim():"")+(t[3]?$r(t[3].trim()):"")+" "+(t[4]?t[4].trim():"")}catch(n){e=t}return{displayText:e,cssStyle:""}},Yr=function(t){var e="",n="";try{var r=t[1]?t[1].trim():"",i=t[2]?t[2].trim():"",a=t[3]?$r(t[3].trim()):"",o=t[4]?t[4].trim():"";n=r+i+"("+a+")"+(t[5]?" : "+$r(t[5]).trim():""),e=Wr(o)}catch(e){n=t}return{displayText:n,cssStyle:e}},zr=function(t){var e="",n="",r="",i=t.indexOf("("),a=t.indexOf(")");if(i>1&&a>i&&a<=t.length){var o="",s="",c=t.substring(0,1);c.match(/\w/)?s=t.substring(0,i).trim():(c.match(/\+|-|~|#/)&&(o=c),s=t.substring(1,i).trim());var u=t.substring(i+1,a),l=t.substring(a+1,1);n=Wr(l),e=o+s+"("+$r(u.trim())+")",a<"".length&&""!==(r=t.substring(a+2).trim())&&(r=" : "+$r(r))}else e=$r(t);return{displayText:e,cssStyle:n}},Ur=function(t,e,n,r){var i=function(t){var e=t.match(/(\+|-|~|#)?(\w+)(~\w+~|\[\])?\s+(\w+)/),n=t.match(/^([+|\-|~|#])?(\w+) *\( *(.*)\) *(\*|\$)? *(\w*[~|[\]]*\s*\w*~?)$/);return e&&!n?Rr(e):n?Yr(n):zr(t)}(e),a=t.append("tspan").attr("x",r.padding).text(i.displayText);""!==i.cssStyle&&a.attr("style",i.cssStyle),n||a.attr("dy",r.textHeight)},$r=function t(e){var n=e;return-1!=e.indexOf("~")?t(n=(n=n.replace("~","<")).replace("~",">")):n},Wr=function(t){switch(t){case"*":return"font-style:italic;";case"$":return"text-decoration:underline;";default:return""}},Vr=function(t,e,n){f.info("Rendering class "+e);var r,i=e.id,a={id:i,label:e.id,width:0,height:0},o=t.append("g").attr("id",Or(i)).attr("class","classGroup");r=e.link?o.append("svg:a").attr("xlink:href",e.link).attr("target","_blank").append("text").attr("y",n.textHeight+n.padding).attr("x",0):o.append("text").attr("y",n.textHeight+n.padding).attr("x",0);var s=!0;e.annotations.forEach((function(t){var e=r.append("tspan").text("«"+t+"»");s||e.attr("dy",n.textHeight),s=!1}));var c=e.id;void 0!==e.type&&""!==e.type&&(c+="<"+e.type+">");var u=r.append("tspan").text(c).attr("class","title");s||u.attr("dy",n.textHeight);var l=r.node().getBBox().height,h=o.append("line").attr("x1",0).attr("y1",n.padding+l+n.dividerMargin/2).attr("y2",n.padding+l+n.dividerMargin/2),d=o.append("text").attr("x",n.padding).attr("y",l+n.dividerMargin+n.textHeight).attr("fill","white").attr("class","classText");s=!0,e.members.forEach((function(t){Ur(d,t,s,n),s=!1}));var p=d.node().getBBox(),g=o.append("line").attr("x1",0).attr("y1",n.padding+l+n.dividerMargin+p.height).attr("y2",n.padding+l+n.dividerMargin+p.height),y=o.append("text").attr("x",n.padding).attr("y",l+2*n.dividerMargin+p.height+n.textHeight).attr("fill","white").attr("class","classText");s=!0,e.methods.forEach((function(t){Ur(y,t,s,n),s=!1}));var v=o.node().getBBox(),m=" ";e.cssClasses.length>0&&(m+=e.cssClasses.join(" "));var b=o.insert("rect",":first-child").attr("x",0).attr("y",0).attr("width",v.width+2*n.padding).attr("height",v.height+n.padding+.5*n.dividerMargin).attr("class",m).node().getBBox().width;return r.node().childNodes.forEach((function(t){t.setAttribute("x",(b-t.getBBox().width)/2)})),e.tooltip&&r.insert("title").text(e.tooltip),h.attr("x2",b),g.attr("x2",b),a.width=b,a.height=v.height+n.padding+.5*n.dividerMargin,a};Pr.parser.yy=Fr;var Hr={},Gr={dividerMargin:10,padding:5,textHeight:10},qr=function(t){for(var e=Object.keys(Hr),n=0;n "+t.w+": "+JSON.stringify(i.edge(t))),function(t,e,n,r){var i=function(t){switch(t){case Br.AGGREGATION:return"aggregation";case Br.EXTENSION:return"extension";case Br.COMPOSITION:return"composition";case Br.DEPENDENCY:return"dependency"}};e.points=e.points.filter((function(t){return!Number.isNaN(t.y)}));var a,o,c=e.points,u=Object(s.line)().x((function(t){return t.x})).y((function(t){return t.y})).curve(s.curveBasis),l=t.append("path").attr("d",u(c)).attr("id","edge"+jr).attr("class","relation"),h="";r.arrowMarkerAbsolute&&(h=(h=(h=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),1==n.relation.lineType&&l.attr("class","relation dashed-line"),"none"!==n.relation.type1&&l.attr("marker-start","url("+h+"#"+i(n.relation.type1)+"Start)"),"none"!==n.relation.type2&&l.attr("marker-end","url("+h+"#"+i(n.relation.type2)+"End)");var d,p,g,y,v=e.points.length,m=z.calcLabelPosition(e.points);if(a=m.x,o=m.y,v%2!=0&&v>1){var b=z.calcCardinalityPosition("none"!==n.relation.type1,e.points,e.points[0]),x=z.calcCardinalityPosition("none"!==n.relation.type2,e.points,e.points[v-1]);f.debug("cardinality_1_point "+JSON.stringify(b)),f.debug("cardinality_2_point "+JSON.stringify(x)),d=b.x,p=b.y,g=x.x,y=x.y}if(void 0!==n.title){var _=t.append("g").attr("class","classLabel"),k=_.append("text").attr("class","label").attr("x",a).attr("y",o).attr("fill","red").attr("text-anchor","middle").text(n.title);window.label=k;var w=k.node().getBBox();_.insert("rect",":first-child").attr("class","box").attr("x",w.x-r.padding/2).attr("y",w.y-r.padding/2).attr("width",w.width+r.padding).attr("height",w.height+r.padding)}f.info("Rendering relation "+JSON.stringify(n)),void 0!==n.relationTitle1&&"none"!==n.relationTitle1&&t.append("g").attr("class","cardinality").append("text").attr("class","type1").attr("x",d).attr("y",p).attr("fill","black").attr("font-size","6").text(n.relationTitle1),void 0!==n.relationTitle2&&"none"!==n.relationTitle2&&t.append("g").attr("class","cardinality").append("text").attr("class","type2").attr("x",g).attr("y",y).attr("fill","black").attr("font-size","6").text(n.relationTitle2),jr++}(r,i.edge(t),i.edge(t).relation,Gr))}));var h=r.node().getBBox(),d=h.width+40,p=h.height+40;Gr.useMaxWidth?(r.attr("width","100%"),r.attr("style","max-width: ".concat(d,"px;"))):(r.attr("height",p),r.attr("width",d));var g="".concat(h.x-20," ").concat(h.y-20," ").concat(d," ").concat(p);f.debug("viewBox ".concat(g)),r.attr("viewBox",g)};Pr.parser.yy=Fr;var Jr={dividerMargin:10,padding:5,textHeight:10},Qr=function(t,e){f.info("Drawing class"),Fr.clear(),Pr.parser.parse(t);var n=vt().flowchart;f.info("config:",n);var r=n.nodeSpacing||50,i=n.rankSpacing||50,a=new $.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:"TD",nodesep:r,ranksep:i,marginx:8,marginy:8}).setDefaultEdgeLabel((function(){return{}})),o=Fr.getClasses(),c=Fr.getRelations();f.info(c),function(t,e){var n=Object.keys(t);f.info("keys:",n),f.info(t),n.forEach((function(n){var r=t[n],i={labelStyle:""},a=void 0!==r.text?r.text:r.id,o="";switch(r.type){case"class":o="class_box";break;default:o="class_box"}e.setNode(r.id,{labelStyle:i.labelStyle,shape:o,labelText:a,classData:r,rx:0,ry:0,class:"default",style:i.style,id:r.id,width:"group"===r.type?500:void 0,type:r.type,padding:vt().flowchart.padding}),f.info("setNode",{labelStyle:i.labelStyle,shape:o,labelText:a,rx:0,ry:0,class:"default",style:i.style,id:r.id,width:"group"===r.type?500:void 0,type:r.type,padding:vt().flowchart.padding})}))}(o,a),function(t,e){var n=0;t.forEach((function(r){n++;var i={classes:"relation"};i.pattern=1==r.relation.lineType?"dashed":"solid",i.id="id"+n,"arrow_open"===r.type?i.arrowhead="none":i.arrowhead="normal",f.info(i,r),i.arrowTypeStart=Kr(r.relation.type1),i.arrowTypeEnd=Kr(r.relation.type2);var a="",o="";if(void 0!==r.style){var c=D(r.style);a=c.style,o=c.labelStyle}else a="fill:none";i.style=a,i.labelStyle=o,void 0!==r.interpolate?i.curve=M(r.interpolate,s.curveLinear):void 0!==t.defaultInterpolate?i.curve=M(t.defaultInterpolate,s.curveLinear):i.curve=M(Jr.curve,s.curveLinear),r.text=r.title,void 0===r.text?void 0!==r.style&&(i.arrowheadStyle="fill: #333"):(i.arrowheadStyle="fill: #333",i.labelpos="c",vt().flowchart.htmlLabels,i.labelType="text",i.label=r.text.replace(b.lineBreakRegex,"\n"),void 0===r.style&&(i.style=i.style||"stroke: #333; stroke-width: 1.5px;fill:none"),i.labelStyle=i.labelStyle.replace("color:","fill:")),e.setEdge(r.id1,r.id2,i,n)}))}(c,a);var u=Object(s.select)('[id="'.concat(e,'"]'));u.attr("xmlns:xlink","http://www.w3.org/1999/xlink");var l=Object(s.select)("#"+e+" g");Ue(l,a,["aggregation","extension","composition","dependency"],"classDiagram",e);var h=u.node().getBBox(),d=h.width+16,p=h.height+16;if(f.debug("new ViewBox 0 0 ".concat(d," ").concat(p),"translate(".concat(8-a._label.marginx,", ").concat(8-a._label.marginy,")")),n.useMaxWidth?(u.attr("width","100%"),u.attr("style","max-width: ".concat(d,"px;"))):(u.attr("height",p),u.attr("width",d)),u.attr("viewBox","0 0 ".concat(d," ").concat(p)),u.select("g").attr("transform","translate(".concat(8-a._label.marginx,", ").concat(8-h.y,")")),!n.htmlLabels)for(var g=document.querySelectorAll('[id="'+e+'"] .edgeLabel .label'),y=0;y0&&o.length>0){var c={stmt:"state",id:B(),type:"divider",doc:ni(o)};i.push(ni(c)),n.doc=i}n.doc.forEach((function(e){return t(n,e,!0)}))}}({id:"root"},{id:"root",doc:ri},!0),{id:"root",doc:ri}},extract:function(t){var e;e=t.doc?t.doc:t,f.info(e),ci(),f.info("Extract",e),e.forEach((function(t){"state"===t.stmt&&si(t.id,t.type,t.doc,t.description,t.note),"relation"===t.stmt&&ui(t.state1.id,t.state2.id,t.description)}))},trimColon:function(t){return t&&":"===t[0]?t.substr(1).trim():t.trim()}},pi=n(22),gi=n.n(pi),yi={},vi=function(t,e,n){var r,i=vt().state.padding,a=2*vt().state.padding,o=t.node().getBBox(),s=o.width,c=o.x,u=t.append("text").attr("x",0).attr("y",vt().state.titleShift).attr("font-size",vt().state.fontSize).attr("class","state-title").text(e.id),l=u.node().getBBox().width+a,h=Math.max(l,s);h===s&&(h+=a);var f=t.node().getBBox();e.doc,r=c-i,l>s&&(r=(s-h)/2+i),Math.abs(c-f.x)s&&(r=c-(l-s)/2);var d=1-vt().state.textHeight;return t.insert("rect",":first-child").attr("x",r).attr("y",d).attr("class",n?"alt-composit":"composit").attr("width",h).attr("height",f.height+vt().state.textHeight+vt().state.titleShift+1).attr("rx","0"),u.attr("x",r+i),l<=s&&u.attr("x",c+(h-a)/2-l/2+i),t.insert("rect",":first-child").attr("x",r).attr("y",vt().state.titleShift-vt().state.textHeight-vt().state.padding).attr("width",h).attr("height",3*vt().state.textHeight).attr("rx",vt().state.radius),t.insert("rect",":first-child").attr("x",r).attr("y",vt().state.titleShift-vt().state.textHeight-vt().state.padding).attr("width",h).attr("height",f.height+3+2*vt().state.textHeight).attr("rx",vt().state.radius),t},mi=function(t,e){var n=e.id,r={id:n,label:e.id,width:0,height:0},i=t.append("g").attr("id",n).attr("class","stateGroup");"start"===e.type&&function(t){t.append("circle").attr("class","start-state").attr("r",vt().state.sizeUnit).attr("cx",vt().state.padding+vt().state.sizeUnit).attr("cy",vt().state.padding+vt().state.sizeUnit)}(i),"end"===e.type&&function(t){t.append("circle").attr("class","end-state-outer").attr("r",vt().state.sizeUnit+vt().state.miniPadding).attr("cx",vt().state.padding+vt().state.sizeUnit+vt().state.miniPadding).attr("cy",vt().state.padding+vt().state.sizeUnit+vt().state.miniPadding),t.append("circle").attr("class","end-state-inner").attr("r",vt().state.sizeUnit).attr("cx",vt().state.padding+vt().state.sizeUnit+2).attr("cy",vt().state.padding+vt().state.sizeUnit+2)}(i),"fork"!==e.type&&"join"!==e.type||function(t,e){var n=vt().state.forkWidth,r=vt().state.forkHeight;if(e.parentId){var i=n;n=r,r=i}t.append("rect").style("stroke","black").style("fill","black").attr("width",n).attr("height",r).attr("x",vt().state.padding).attr("y",vt().state.padding)}(i,e),"note"===e.type&&function(t,e){e.attr("class","state-note");var n=e.append("rect").attr("x",0).attr("y",vt().state.padding),r=function(t,e,n,r){var i=0,a=r.append("text");a.style("text-anchor","start"),a.attr("class","noteText");var o=t.replace(/\r\n/g,"
"),s=(o=o.replace(/\n/g,"
")).split(b.lineBreakRegex),c=1.25*vt().state.noteMargin,u=!0,l=!1,h=void 0;try{for(var f,d=s[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var p=f.value.trim();if(p.length>0){var g=a.append("tspan");g.text(p),0===c&&(c+=g.node().getBBox().height),i+=c,g.attr("x",0+vt().state.noteMargin),g.attr("y",0+i+1.25*vt().state.noteMargin)}}}catch(t){l=!0,h=t}finally{try{u||null==d.return||d.return()}finally{if(l)throw h}}return{textWidth:a.node().getBBox().width,textHeight:i}}(t,0,0,e.append("g")),i=r.textWidth,a=r.textHeight;n.attr("height",a+2*vt().state.noteMargin),n.attr("width",i+2*vt().state.noteMargin)}(e.note.text,i),"divider"===e.type&&function(t){t.append("line").style("stroke","grey").style("stroke-dasharray","3").attr("x1",vt().state.textHeight).attr("class","divider").attr("x2",2*vt().state.textHeight).attr("y1",0).attr("y2",0)}(i),"default"===e.type&&0===e.descriptions.length&&function(t,e){var n=t.append("text").attr("x",2*vt().state.padding).attr("y",vt().state.textHeight+2*vt().state.padding).attr("font-size",vt().state.fontSize).attr("class","state-title").text(e.id).node().getBBox();t.insert("rect",":first-child").attr("x",vt().state.padding).attr("y",vt().state.padding).attr("width",n.width+2*vt().state.padding).attr("height",n.height+2*vt().state.padding).attr("rx",vt().state.radius)}(i,e),"default"===e.type&&e.descriptions.length>0&&function(t,e){var n=t.append("text").attr("x",2*vt().state.padding).attr("y",vt().state.textHeight+1.3*vt().state.padding).attr("font-size",vt().state.fontSize).attr("class","state-title").text(e.descriptions[0]).node().getBBox(),r=n.height,i=t.append("text").attr("x",vt().state.padding).attr("y",r+.4*vt().state.padding+vt().state.dividerMargin+vt().state.textHeight).attr("class","state-description"),a=!0,o=!0;e.descriptions.forEach((function(t){a||(function(t,e,n){var r=t.append("tspan").attr("x",2*vt().state.padding).text(e);n||r.attr("dy",vt().state.textHeight)}(i,t,o),o=!1),a=!1}));var s=t.append("line").attr("x1",vt().state.padding).attr("y1",vt().state.padding+r+vt().state.dividerMargin/2).attr("y2",vt().state.padding+r+vt().state.dividerMargin/2).attr("class","descr-divider"),c=i.node().getBBox(),u=Math.max(c.width,n.width);s.attr("x2",u+3*vt().state.padding),t.insert("rect",":first-child").attr("x",vt().state.padding).attr("y",vt().state.padding).attr("width",u+2*vt().state.padding).attr("height",c.height+r+2*vt().state.padding).attr("rx",vt().state.radius)}(i,e);var a=i.node().getBBox();return r.width=a.width+2*vt().state.padding,r.height=a.height+2*vt().state.padding,function(t,e){yi[t]=e}(n,r),r},bi=0;pi.parser.yy=di;var xi={},_i=function(t,e){ei=vt().state,pi.parser.yy.clear(),pi.parser.parse(t),f.debug("Rendering diagram "+t);var n=Object(s.select)("[id='".concat(e,"']"));n.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z"),new $.a.Graph({multigraph:!0,compound:!0,rankdir:"RL"}).setDefaultEdgeLabel((function(){return{}})),function t(e,n,r,i){var a,o=new $.a.Graph({compound:!0,multigraph:!0}),c=!0;for(a=0;a "+t.w+": "+JSON.stringify(o.edge(t))),function(t,e,n){e.points=e.points.filter((function(t){return!Number.isNaN(t.y)}));var r=e.points,i=Object(s.line)().x((function(t){return t.x})).y((function(t){return t.y})).curve(s.curveBasis),a=t.append("path").attr("d",i(r)).attr("id","edge"+bi).attr("class","transition"),o="";if(vt().state.arrowMarkerAbsolute&&(o=(o=(o=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),a.attr("marker-end","url("+o+"#"+function(t){switch(t){case di.relationType.AGGREGATION:return"aggregation";case di.relationType.EXTENSION:return"extension";case di.relationType.COMPOSITION:return"composition";case di.relationType.DEPENDENCY:return"dependency"}}(di.relationType.DEPENDENCY)+"End)"),void 0!==n.title){for(var c=t.append("g").attr("class","stateLabel"),u=z.calcLabelPosition(e.points),l=u.x,h=u.y,d=b.getRows(n.title),p=0,g=[],y=0,v=0,m=0;m<=d.length;m++){var x=c.append("text").attr("text-anchor","middle").text(d[m]).attr("x",l).attr("y",h+p),_=x.node().getBBox();if(y=Math.max(y,_.width),v=Math.min(v,_.x),f.info(_.x,l,h+p),0===p){var k=x.node().getBBox();p=k.height,f.info("Title height",p,h)}g.push(x)}var w=p*d.length;if(d.length>1){var E=(d.length-1)*p*.5;g.forEach((function(t,e){return t.attr("y",h+e*p-E)})),w=p*d.length}var T=c.node().getBBox();c.insert("rect",":first-child").attr("class","box").attr("x",l-y/2-vt().state.padding/2).attr("y",h-w/2-vt().state.padding/2-3.5).attr("width",y+vt().state.padding).attr("height",w+vt().state.padding),f.info(T)}bi++}(n,o.edge(t),o.edge(t).relation))})),w=k.getBBox();var E={id:r||"root",label:r||"root",width:0,height:0};return E.width=w.width+2*ei.padding,E.height=w.height+2*ei.padding,f.debug("Doc rendered",E,o),E}(di.getRootDoc(),n,void 0,!1);var r=ei.padding,i=n.node().getBBox(),a=i.width+2*r,o=i.height+2*r;ei.useMaxWidth?(n.attr("width","100%"),n.attr("style","max-width: ".concat(1.75*a,"px;"))):n.attr("width",1.75*a),n.attr("viewBox","".concat(i.x-ei.padding," ").concat(i.y-ei.padding," ")+a+" "+o)},ki={},wi={},Ei=function(t,e,n,r){if("root"!==n.id){var i="rect";!0===n.start&&(i="start"),!1===n.start&&(i="end"),"default"!==n.type&&(i=n.type),wi[n.id]||(wi[n.id]={id:n.id,shape:i,description:n.id,classes:"statediagram-state"}),n.description&&(Array.isArray(wi[n.id].description)?(wi[n.id].shape="rectWithTitle",wi[n.id].description.push(n.description)):wi[n.id].description.length>0?(wi[n.id].shape="rectWithTitle",wi[n.id].description===n.id?wi[n.id].description=[n.description]:wi[n.id].description=[wi[n.id].description,n.description]):(wi[n.id].shape="rect",wi[n.id].description=n.description)),!wi[n.id].type&&n.doc&&(f.info("Setting cluser for ",n.id),wi[n.id].type="group",wi[n.id].shape="divider"===n.type?"divider":"roundedWithTitle",wi[n.id].classes=wi[n.id].classes+" "+(r?"statediagram-cluster statediagram-cluster-alt":"statediagram-cluster"));var a={labelStyle:"",shape:wi[n.id].shape,labelText:wi[n.id].description,classes:wi[n.id].classes,style:"",id:n.id,type:wi[n.id].type,padding:15};if(n.note){var o={labelStyle:"",shape:"note",labelText:n.note.text,classes:"statediagram-note",style:"",id:n.id+"----note",type:wi[n.id].type,padding:15},s={labelStyle:"",shape:"noteGroup",labelText:n.note.text,classes:wi[n.id].classes,style:"",id:n.id+"----parent",type:"group",padding:0};t.setNode(n.id+"----parent",s),t.setNode(o.id,o),t.setNode(n.id,a),t.setParent(n.id,n.id+"----parent"),t.setParent(o.id,n.id+"----parent");var c=n.id,u=o.id;"left of"===n.note.position&&(c=o.id,u=n.id),t.setEdge(c,u,{arrowhead:"none",arrowType:"",style:"fill:none",labelStyle:"",classes:"transition note-edge",arrowheadStyle:"fill: #333",labelpos:"c",labelType:"text",thickness:"normal"})}else t.setNode(n.id,a)}e&&"root"!==e.id&&(f.info("Setting node ",n.id," to be child of its parent ",e.id),t.setParent(n.id,e.id)),n.doc&&(f.info("Adding nodes children "),Ci(t,n,n.doc,!r))},Ti=0,Ci=function(t,e,n,r){f.trace("items",n),n.forEach((function(n){if("state"===n.stmt||"default"===n.stmt)Ei(t,e,n,r);else if("relation"===n.stmt){Ei(t,e,n.state1,r),Ei(t,e,n.state2,r);var i={id:"edge"+Ti,arrowhead:"normal",arrowTypeEnd:"arrow_barb",style:"fill:none",labelStyle:"",label:n.description,arrowheadStyle:"fill: #333",labelpos:"c",labelType:"text",thickness:"normal",classes:"transition"},a=n.state1.id,o=n.state2.id;t.setEdge(a,o,i,Ti),Ti++}}))},Ai=function(t){for(var e=Object.keys(t),n=0;ne.seq&&Fi(e,t)}(e,n))f.debug("Already merged");else{if(Fi(e,n))Oi[Di]=Oi[t],Mi=Si[Oi[Di]];else{var r={id:Li(),message:"merged branch "+t+" into "+Di,seq:Bi++,parent:[null==Mi?null:Mi.id,Oi[t]]};Mi=r,Si[r.id]=r,Oi[Di]=r.id}f.debug(Oi),f.debug("in mergeBranch")}},checkout:function(t){f.debug("in checkout");var e=Oi[Di=t];Mi=Si[e]},reset:function(t){f.debug("in reset",t);var e=t.split(":")[0],n=parseInt(t.split(":")[1]),r="HEAD"===e?Mi:Si[Oi[e]];for(f.debug(r,n);n>0;)if(n--,!(r=Si[r.parent])){var i="Critical error - unique parent commit not found during reset";throw f.error(i),i}Mi=r,Oi[Di]=r.id},prettyPrint:function(){f.debug(Si),function t(e){var n=e.reduce((function(t,e){return t.seq>e.seq?t:e}),e[0]),r="";e.forEach((function(t){r+=t===n?"\t*":"\t|"}));var i,a,o,s=[r,n.id,n.seq];for(var c in Oi)Oi[c]===n.id&&s.push(c);if(f.debug(s.join(" ")),Array.isArray(n.parent)){var u=Si[n.parent[0]];Ii(e,n,u),e.push(Si[n.parent[1]])}else{if(null==n.parent)return;var l=Si[n.parent];Ii(e,n,l)}i=e,a=function(t){return t.id},o=Object.create(null),t(e=i.reduce((function(t,e){var n=a(e);return o[n]||(o[n]=!0,t.push(e)),t}),[]))}([Ri()[0]])},clear:function(){Si={},Oi={master:Mi=null},Di="master",Bi=0},getBranchesAsObjArray:function(){var t=[];for(var e in Oi)t.push({name:e,commit:Si[Oi[e]]});return t},getBranches:function(){return Oi},getCommits:function(){return Si},getCommitsArray:Ri,getCurrentBranch:function(){return Di},getDirection:function(){return Ni},getHead:function(){return Mi}},zi=n(71),Ui=n.n(zi),$i={},Wi={nodeSpacing:150,nodeFillColor:"yellow",nodeStrokeWidth:2,nodeStrokeColor:"grey",lineStrokeWidth:4,branchOffset:50,lineColor:"grey",leftMargin:50,branchColors:["#442f74","#983351","#609732","#AA9A39"],nodeRadius:10,nodeLabel:{width:75,height:100,x:-25,y:0}},Vi={};function Hi(t,e,n,r){var i=M(r,s.curveBasis),a=Wi.branchColors[n%Wi.branchColors.length],o=Object(s.line)().x((function(t){return Math.round(t.x)})).y((function(t){return Math.round(t.y)})).curve(i);t.append("svg:path").attr("d",o(e)).style("stroke",a).style("stroke-width",Wi.lineStrokeWidth).style("fill","none")}function Gi(t,e){e=e||t.node().getBBox();var n=t.node().getCTM();return{left:n.e+e.x*n.a,top:n.f+e.y*n.d,width:e.width,height:e.height}}function qi(t,e,n,r,i){f.debug("svgDrawLineForCommits: ",e,n);var a=Gi(t.select("#node-"+e+" circle")),o=Gi(t.select("#node-"+n+" circle"));switch(r){case"LR":if(a.left-o.left>Wi.nodeSpacing){var s={x:a.left-Wi.nodeSpacing,y:o.top+o.height/2};Hi(t,[s,{x:o.left+o.width,y:o.top+o.height/2}],i,"linear"),Hi(t,[{x:a.left,y:a.top+a.height/2},{x:a.left-Wi.nodeSpacing/2,y:a.top+a.height/2},{x:a.left-Wi.nodeSpacing/2,y:s.y},s],i)}else Hi(t,[{x:a.left,y:a.top+a.height/2},{x:a.left-Wi.nodeSpacing/2,y:a.top+a.height/2},{x:a.left-Wi.nodeSpacing/2,y:o.top+o.height/2},{x:o.left+o.width,y:o.top+o.height/2}],i);break;case"BT":if(o.top-a.top>Wi.nodeSpacing){var c={x:o.left+o.width/2,y:a.top+a.height+Wi.nodeSpacing};Hi(t,[c,{x:o.left+o.width/2,y:o.top}],i,"linear"),Hi(t,[{x:a.left+a.width/2,y:a.top+a.height},{x:a.left+a.width/2,y:a.top+a.height+Wi.nodeSpacing/2},{x:o.left+o.width/2,y:c.y-Wi.nodeSpacing/2},c],i)}else Hi(t,[{x:a.left+a.width/2,y:a.top+a.height},{x:a.left+a.width/2,y:a.top+Wi.nodeSpacing/2},{x:o.left+o.width/2,y:o.top-Wi.nodeSpacing/2},{x:o.left+o.width/2,y:o.top}],i)}}function Xi(t,e){return t.select(e).node().cloneNode(!0)}function Zi(t,e,n,r){var i,a=Object.keys($i).length;if("string"==typeof e)do{if(i=$i[e],f.debug("in renderCommitHistory",i.id,i.seq),t.select("#node-"+e).size()>0)return;t.append((function(){return Xi(t,"#def-commit")})).attr("class","commit").attr("id",(function(){return"node-"+i.id})).attr("transform",(function(){switch(r){case"LR":return"translate("+(i.seq*Wi.nodeSpacing+Wi.leftMargin)+", "+ji*Wi.branchOffset+")";case"BT":return"translate("+(ji*Wi.branchOffset+Wi.leftMargin)+", "+(a-i.seq)*Wi.nodeSpacing+")"}})).attr("fill",Wi.nodeFillColor).attr("stroke",Wi.nodeStrokeColor).attr("stroke-width",Wi.nodeStrokeWidth);var o=void 0;for(var s in n)if(n[s].commit===i){o=n[s];break}o&&(f.debug("found branch ",o.name),t.select("#node-"+i.id+" p").append("xhtml:span").attr("class","branch-label").text(o.name+", ")),t.select("#node-"+i.id+" p").append("xhtml:span").attr("class","commit-id").text(i.id),""!==i.message&&"BT"===r&&t.select("#node-"+i.id+" p").append("xhtml:span").attr("class","commit-msg").text(", "+i.message),e=i.parent}while(e&&$i[e]);Array.isArray(e)&&(f.debug("found merge commmit",e),Zi(t,e[0],n,r),ji++,Zi(t,e[1],n,r),ji--)}function Ji(t,e,n,r){for(r=r||0;e.seq>0&&!e.lineDrawn;)"string"==typeof e.parent?(qi(t,e.id,e.parent,n,r),e.lineDrawn=!0,e=$i[e.parent]):Array.isArray(e.parent)&&(qi(t,e.id,e.parent[0],n,r),qi(t,e.id,e.parent[1],n,r+1),Ji(t,$i[e.parent[1]],n,r+1),e.lineDrawn=!0,e=$i[e.parent[0]])}var Qi,Ki=function(t){Vi=t},ta="",ea=!1,na={setMessage:function(t){f.debug("Setting message to: "+t),ta=t},getMessage:function(){return ta},setInfo:function(t){ea=t},getInfo:function(){return ea}},ra=n(72),ia=n.n(ra),aa={},oa=function(t){Object.keys(t).forEach((function(e){aa[e]=t[e]}))},sa={},ca={},ua="",la={parseDirective:function(t,e,n){co.parseDirective(this,t,e,n)},getConfig:function(){return vt().pie},addSection:function(t,e){void 0===ca[t]&&(ca[t]=e,f.debug("Added new section :",t))},getSections:function(){return ca},cleanupValue:function(t){return":"===t.substring(0,1)?(t=t.substring(1).trim(),Number(t.trim())):Number(t.trim())},clear:function(){ca={},ua=""},setTitle:function(t){ua=t},getTitle:function(){return ua}},ha=n(73),fa=n.n(ha),da={},pa=function(t){Object.keys(t).forEach((function(e){da[e]=t[e]}))},ga={},ya=[],va="",ma={Cardinality:{ZERO_OR_ONE:"ZERO_OR_ONE",ZERO_OR_MORE:"ZERO_OR_MORE",ONE_OR_MORE:"ONE_OR_MORE",ONLY_ONE:"ONLY_ONE"},Identification:{NON_IDENTIFYING:"NON_IDENTIFYING",IDENTIFYING:"IDENTIFYING"},parseDirective:function(t,e,n){co.parseDirective(this,t,e,n)},getConfig:function(){return vt().er},addEntity:function(t){void 0===ga[t]&&(ga[t]=t,f.debug("Added new entity :",t))},getEntities:function(){return ga},addRelationship:function(t,e,n,r){var i={entityA:t,roleA:e,entityB:n,relSpec:r};ya.push(i),f.debug("Added new relationship :",i)},getRelationships:function(){return ya},clear:function(){ga={},ya=[],va=""},setTitle:function(t){va=t},getTitle:function(){return va}},ba=n(74),xa=n.n(ba),_a={ONLY_ONE_START:"ONLY_ONE_START",ONLY_ONE_END:"ONLY_ONE_END",ZERO_OR_ONE_START:"ZERO_OR_ONE_START",ZERO_OR_ONE_END:"ZERO_OR_ONE_END",ONE_OR_MORE_START:"ONE_OR_MORE_START",ONE_OR_MORE_END:"ONE_OR_MORE_END",ZERO_OR_MORE_START:"ZERO_OR_MORE_START",ZERO_OR_MORE_END:"ZERO_OR_MORE_END"},ka=_a,wa={},Ea=function(t){return(t.entityA+t.roleA+t.entityB).replace(/\s/g,"")},Ta=0,Ca=function(t){for(var e=Object.keys(t),n=0;n/gi),d=0;d/gi," "),r=t.append("text");r.attr("x",e.x),r.attr("y",e.y),r.attr("class","legend"),r.style("text-anchor",e.anchor),void 0!==e.class&&r.attr("class",e.class);var i=r.append("tspan");return i.attr("x",e.x+2*e.textMargin),i.text(n),r},Va=function(t,e,n){var r,i,a,o=e.x+n.width/2,c=t.append("g");Ya++,c.append("line").attr("id","task"+Ya).attr("x1",o).attr("y1",e.y).attr("x2",o).attr("y2",450).attr("class","task-line").attr("stroke-width","1px").attr("stroke-dasharray","4 2").attr("stroke","#666"),r=c,i={cx:o,cy:300+30*(5-e.score),score:e.score},r.append("circle").attr("cx",i.cx).attr("cy",i.cy).attr("class","face").attr("r",15).attr("stroke-width",2).attr("overflow","visible"),(a=r.append("g")).append("circle").attr("cx",i.cx-5).attr("cy",i.cy-5).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),a.append("circle").attr("cx",i.cx+5).attr("cy",i.cy-5).attr("r",1.5).attr("stroke-width",2).attr("fill","#666").attr("stroke","#666"),i.score>3?function(t){var e=Object(s.arc)().startAngle(Math.PI/2).endAngle(Math.PI/2*3).innerRadius(7.5).outerRadius(15/2.2);t.append("path").attr("class","mouth").attr("d",e).attr("transform","translate("+i.cx+","+(i.cy+2)+")")}(a):i.score<3?function(t){var e=Object(s.arc)().startAngle(3*Math.PI/2).endAngle(Math.PI/2*5).innerRadius(7.5).outerRadius(15/2.2);t.append("path").attr("class","mouth").attr("d",e).attr("transform","translate("+i.cx+","+(i.cy+7)+")")}(a):function(t){t.append("line").attr("class","mouth").attr("stroke",2).attr("x1",i.cx-5).attr("y1",i.cy+7).attr("x2",i.cx+5).attr("y2",i.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}(a);var u={x:0,y:0,width:100,anchor:"start",height:100,rx:0,ry:0};u.x=e.x,u.y=e.y,u.fill=e.fill,u.width=n.width,u.height=n.height,u.class="task task-type-"+e.num,u.rx=3,u.ry=3,ja(c,u);var l=e.x+14;e.people.forEach((function(t){var n=e.actors[t],r={cx:l,cy:e.y,r:7,fill:n,stroke:"#000",title:t};Ra(c,r),l+=10})),za(n)(e.task,c,u.x,u.y,u.width,u.height,{class:"task"},n,e.colour)};Sa.parser.yy=Ia;var Ha={leftMargin:150,diagramMarginX:50,diagramMarginY:20,taskMargin:50,width:150,height:50,taskFontSize:14,taskFontFamily:'"Open-Sans", "sans-serif"',boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"]},Ga={},qa=Ha.leftMargin,Xa={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],init:function(){this.sequenceItems=[],this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0},updateVal:function(t,e,n,r){void 0===t[e]?t[e]=n:t[e]=r(n,t[e])},updateBounds:function(t,e,n,r){var i=this,a=0;this.sequenceItems.forEach((function(o){a++;var s=i.sequenceItems.length-a+1;i.updateVal(o,"starty",e-s*Ha.boxMargin,Math.min),i.updateVal(o,"stopy",r+s*Ha.boxMargin,Math.max),i.updateVal(Xa.data,"startx",t-s*Ha.boxMargin,Math.min),i.updateVal(Xa.data,"stopx",n+s*Ha.boxMargin,Math.max),i.updateVal(o,"startx",t-s*Ha.boxMargin,Math.min),i.updateVal(o,"stopx",n+s*Ha.boxMargin,Math.max),i.updateVal(Xa.data,"starty",e-s*Ha.boxMargin,Math.min),i.updateVal(Xa.data,"stopy",r+s*Ha.boxMargin,Math.max)}))},insert:function(t,e,n,r){var i=Math.min(t,n),a=Math.max(t,n),o=Math.min(e,r),s=Math.max(e,r);this.updateVal(Xa.data,"startx",i,Math.min),this.updateVal(Xa.data,"starty",o,Math.min),this.updateVal(Xa.data,"stopx",a,Math.max),this.updateVal(Xa.data,"stopy",s,Math.max),this.updateBounds(i,o,a,s)},bumpVerticalPos:function(t){this.verticalPos=this.verticalPos+t,this.data.stopy=this.verticalPos},getVerticalPos:function(){return this.verticalPos},getBounds:function(){return this.data}},Za=Ha.sectionFills,Ja=Ha.sectionColours,Qa=function(t){Object.keys(t).forEach((function(e){Ha[e]=t[e]}))},Ka=function(t,e){Sa.parser.yy.clear(),Sa.parser.parse(t+"\n"),Xa.init();var n=Object(s.select)("#"+e);n.attr("xmlns:xlink","http://www.w3.org/1999/xlink"),function(t){t.append("defs").append("marker").attr("id","arrowhead").attr("refX",5).attr("refY",2).attr("markerWidth",6).attr("markerHeight",4).attr("orient","auto").append("path").attr("d","M 0,0 V 4 L6,2 Z")}(n);var r=Sa.parser.yy.getTasks(),i=Sa.parser.yy.getTitle(),a=Sa.parser.yy.getActors();for(var o in Ga)delete Ga[o];var c=0;a.forEach((function(t){Ga[t]=Ha.actorColours[c%Ha.actorColours.length],c++})),function(t){var e=60;Object.keys(Ga).forEach((function(n){var r=Ga[n];Ua(t,{cx:20,cy:e,r:7,fill:r,stroke:"#000"});var i={x:40,y:e+7,fill:"#666",text:n,textMargin:5|Ha.boxTextMargin};Wa(t,i),e+=20}))}(n),Xa.insert(0,0,qa,50*Object.keys(Ga).length),function(t,e,n){for(var r="",i=n+(2*Ha.height+Ha.diagramMarginY),a=0,o="#CCC",s="black",c=0,u=0;u tspan {\n fill: ").concat(t.actorTextColor,";\n stroke: none;\n }\n\n .actor-line {\n stroke: ").concat(t.actorLineColor,";\n }\n\n .messageLine0 {\n stroke-width: 1.5;\n stroke-dasharray: none;\n stroke: ").concat(t.signalColor,";\n }\n\n .messageLine1 {\n stroke-width: 1.5;\n stroke-dasharray: 2, 2;\n stroke: ").concat(t.signalColor,";\n }\n\n #arrowhead path {\n fill: ").concat(t.signalColor,";\n stroke: ").concat(t.signalColor,";\n }\n\n .sequenceNumber {\n fill: ").concat(t.sequenceNumberColor,";\n }\n\n #sequencenumber {\n fill: ").concat(t.signalColor,";\n }\n\n #crosshead path {\n fill: ").concat(t.signalColor,";\n stroke: ").concat(t.signalColor,";\n }\n\n .messageText {\n fill: ").concat(t.signalTextColor,";\n stroke: ").concat(t.signalTextColor,";\n }\n\n .labelBox {\n stroke: ").concat(t.labelBoxBorderColor,";\n fill: ").concat(t.labelBoxBkgColor,";\n }\n\n .labelText, .labelText > tspan {\n fill: ").concat(t.labelTextColor,";\n stroke: none;\n }\n\n .loopText, .loopText > tspan {\n fill: ").concat(t.loopTextColor,";\n stroke: none;\n }\n\n .loopLine {\n stroke-width: 2px;\n stroke-dasharray: 2, 2;\n stroke: ").concat(t.labelBoxBorderColor,";\n fill: ").concat(t.labelBoxBorderColor,";\n }\n\n .note {\n //stroke: #decc93;\n stroke: ").concat(t.noteBorderColor,";\n fill: ").concat(t.noteBkgColor,";\n }\n\n .noteText, .noteText > tspan {\n fill: ").concat(t.noteTextColor,";\n stroke: none;\n }\n\n .activation0 {\n fill: ").concat(t.activationBkgColor,";\n stroke: ").concat(t.activationBorderColor,";\n }\n\n .activation1 {\n fill: ").concat(t.activationBkgColor,";\n stroke: ").concat(t.activationBorderColor,";\n }\n\n .activation2 {\n fill: ").concat(t.activationBkgColor,";\n stroke: ").concat(t.activationBorderColor,";\n }\n")},gantt:function(t){return'\n .mermaid-main-font {\n font-family: "trebuchet ms", verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n\n .section {\n stroke: none;\n opacity: 0.2;\n }\n\n .section0 {\n fill: '.concat(t.sectionBkgColor,";\n }\n\n .section2 {\n fill: ").concat(t.sectionBkgColor2,";\n }\n\n .section1,\n .section3 {\n fill: ").concat(t.altSectionBkgColor,";\n opacity: 0.2;\n }\n\n .sectionTitle0 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle1 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle2 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle3 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle {\n text-anchor: start;\n font-size: 11px;\n text-height: 14px;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n\n }\n\n\n /* Grid and axis */\n\n .grid .tick {\n stroke: ").concat(t.gridColor,";\n opacity: 0.8;\n shape-rendering: crispEdges;\n text {\n font-family: ").concat(t.fontFamily,";\n fill: ").concat(t.textColor,";\n }\n }\n\n .grid path {\n stroke-width: 0;\n }\n\n\n /* Today line */\n\n .today {\n fill: none;\n stroke: ").concat(t.todayLineColor,";\n stroke-width: 2px;\n }\n\n\n /* Task styling */\n\n /* Default task */\n\n .task {\n stroke-width: 2;\n }\n\n .taskText {\n text-anchor: middle;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n\n .taskText:not([font-size]) {\n font-size: 11px;\n }\n\n .taskTextOutsideRight {\n fill: ").concat(t.taskTextDarkColor,";\n text-anchor: start;\n font-size: 11px;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n\n }\n\n .taskTextOutsideLeft {\n fill: ").concat(t.taskTextDarkColor,";\n text-anchor: end;\n font-size: 11px;\n }\n\n /* Special case clickable */\n .task.clickable {\n cursor: pointer;\n }\n .taskText.clickable {\n cursor: pointer;\n fill: ").concat(t.taskTextClickableColor," !important;\n font-weight: bold;\n }\n\n .taskTextOutsideLeft.clickable {\n cursor: pointer;\n fill: ").concat(t.taskTextClickableColor," !important;\n font-weight: bold;\n }\n\n .taskTextOutsideRight.clickable {\n cursor: pointer;\n fill: ").concat(t.taskTextClickableColor," !important;\n font-weight: bold;\n }\n\n /* Specific task settings for the sections*/\n\n .taskText0,\n .taskText1,\n .taskText2,\n .taskText3 {\n fill: ").concat(t.taskTextColor,";\n }\n\n .task0,\n .task1,\n .task2,\n .task3 {\n fill: ").concat(t.taskBkgColor,";\n stroke: ").concat(t.taskBorderColor,";\n }\n\n .taskTextOutside0,\n .taskTextOutside2\n {\n fill: ").concat(t.taskTextOutsideColor,";\n }\n\n .taskTextOutside1,\n .taskTextOutside3 {\n fill: ").concat(t.taskTextOutsideColor,";\n }\n\n\n /* Active task */\n\n .active0,\n .active1,\n .active2,\n .active3 {\n fill: ").concat(t.activeTaskBkgColor,";\n stroke: ").concat(t.activeTaskBorderColor,";\n }\n\n .activeText0,\n .activeText1,\n .activeText2,\n .activeText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n\n /* Completed task */\n\n .done0,\n .done1,\n .done2,\n .done3 {\n stroke: ").concat(t.doneTaskBorderColor,";\n fill: ").concat(t.doneTaskBkgColor,";\n stroke-width: 2;\n }\n\n .doneText0,\n .doneText1,\n .doneText2,\n .doneText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n\n /* Tasks on the critical line */\n\n .crit0,\n .crit1,\n .crit2,\n .crit3 {\n stroke: ").concat(t.critBorderColor,";\n fill: ").concat(t.critBkgColor,";\n stroke-width: 2;\n }\n\n .activeCrit0,\n .activeCrit1,\n .activeCrit2,\n .activeCrit3 {\n stroke: ").concat(t.critBorderColor,";\n fill: ").concat(t.activeTaskBkgColor,";\n stroke-width: 2;\n }\n\n .doneCrit0,\n .doneCrit1,\n .doneCrit2,\n .doneCrit3 {\n stroke: ").concat(t.critBorderColor,";\n fill: ").concat(t.doneTaskBkgColor,";\n stroke-width: 2;\n cursor: pointer;\n shape-rendering: crispEdges;\n }\n\n .milestone {\n transform: rotate(45deg) scale(0.8,0.8);\n }\n\n .milestoneText {\n font-style: italic;\n }\n .doneCritText0,\n .doneCritText1,\n .doneCritText2,\n .doneCritText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n .activeCritText0,\n .activeCritText1,\n .activeCritText2,\n .activeCritText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n .titleText {\n text-anchor: middle;\n font-size: 18px;\n fill: ").concat(t.textColor," ;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n")},classDiagram:to,"classDiagram-v2":to,class:to,stateDiagram:no,state:no,git:function(){return"\n .commit-id,\n .commit-msg,\n .branch-label {\n fill: lightgrey;\n color: lightgrey;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n"},info:function(){return""},pie:function(t){return".pieTitleText {\n text-anchor: middle;\n font-size: 25px;\n fill: ".concat(t.taskTextDarkColor,";\n font-family: ").concat(t.fontFamily,";\n }\n .slice {\n font-family: ").concat(t.fontFamily,";\n fill: ").concat(t.textColor,";\n // fill: white;\n }\n .legend text {\n fill: ").concat(t.taskTextDarkColor,";\n font-family: ").concat(t.fontFamily,";\n font-size: 17px;\n }\n")},er:function(t){return"\n .entityBox {\n fill: ".concat(t.mainBkg,";\n stroke: ").concat(t.nodeBorder,";\n }\n\n .relationshipLabelBox {\n fill: ").concat(t.tertiaryColor,";\n opacity: 0.7;\n background-color: ").concat(t.tertiaryColor,";\n rect {\n opacity: 0.5;\n }\n }\n\n .relationshipLine {\n stroke: ").concat(t.lineColor,";\n }\n")},journey:function(t){return".label {\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n color: ".concat(t.textColor,";\n }\n .mouth {\n stroke: #666;\n }\n\n line {\n stroke: ").concat(t.textColor,"\n }\n\n .legend {\n fill: ").concat(t.textColor,";\n }\n\n .label text {\n fill: #333;\n }\n .label {\n color: ").concat(t.textColor,"\n }\n\n .face {\n fill: #FFF8DC;\n stroke: #999;\n }\n\n .node rect,\n .node circle,\n .node ellipse,\n .node polygon,\n .node path {\n fill: ").concat(t.mainBkg,";\n stroke: ").concat(t.nodeBorder,";\n stroke-width: 1px;\n }\n\n .node .label {\n text-align: center;\n }\n .node.clickable {\n cursor: pointer;\n }\n\n .arrowheadPath {\n fill: ").concat(t.arrowheadColor,";\n }\n\n .edgePath .path {\n stroke: ").concat(t.lineColor,";\n stroke-width: 1.5px;\n }\n\n .flowchart-link {\n stroke: ").concat(t.lineColor,";\n fill: none;\n }\n\n .edgeLabel {\n background-color: ").concat(t.edgeLabelBackground,";\n rect {\n opacity: 0.5;\n }\n text-align: center;\n }\n\n .cluster rect {\n }\n\n .cluster text {\n fill: ").concat(t.titleColor,";\n }\n\n div.mermaidTooltip {\n position: absolute;\n text-align: center;\n max-width: 200px;\n padding: 2px;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n font-size: 12px;\n background: ").concat(t.tertiaryColor,";\n border: 1px solid ").concat(t.border2,";\n border-radius: 2px;\n pointer-events: none;\n z-index: 100;\n }\n\n .task-type-0, .section-type-0 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType0):"",";\n }\n .task-type-1, .section-type-1 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType1):"",";\n }\n .task-type-2, .section-type-2 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType2):"",";\n }\n .task-type-3, .section-type-3 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType3):"",";\n }\n .task-type-4, .section-type-4 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType4):"",";\n }\n .task-type-5, .section-type-5 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType5):"",";\n }\n .task-type-6, .section-type-6 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType6):"",";\n }\n .task-type-7, .section-type-7 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType7):"",";\n }\n")}};function io(t){return(io="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var ao={};function oo(t){Ki(t.git),ue(t.flowchart),He(t.flowchart),void 0!==t.sequenceDiagram&&Yn.setConf(F(t.sequence,t.sequenceDiagram)),Yn.setConf(t.sequence),_r(t.gantt),Xr(t.class),t.state,Ai(t.state),oa(t.class),pa(t.class),Ca(t.er),Qa(t.journey),function(t){Object.keys(t).forEach((function(e){sa[e]=t[e]}))}(t.class)}var so=Object.freeze({render:function(t,e,n,r){xt();var i=e,a=z.detectInit(i);a&&bt(a);var u=vt();if(console.warn("Render with config after adding new directives",u.sequence),e.length>u.maxTextSize&&(i="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa"),void 0!==r)r.innerHTML="",Object(s.select)(r).append("div").attr("id","d"+t).attr("style","font-family: "+u.fontFamily).append("svg").attr("id",t).attr("width","100%").attr("xmlns","http://www.w3.org/2000/svg").append("g");else{var l=document.getElementById(t);l&&l.remove();var h=document.querySelector("#d"+t);h&&h.remove(),Object(s.select)("body").append("div").attr("id","d"+t).append("svg").attr("id",t).attr("width","100%").attr("xmlns","http://www.w3.org/2000/svg").append("g")}window.txt=i,i=function(t){var e=t;return(e=(e=e.replace(/style.*:\S*#.*;/g,(function(t){return t.substring(0,t.length-1)}))).replace(/classDef.*:\S*#.*;/g,(function(t){return t.substring(0,t.length-1)}))).replace(/#\w+;/g,(function(t){var e=t.substring(1,t.length-1);return/^\+?\d+$/.test(e)?"fl°°"+e+"¶ß":"fl°"+e+"¶ß"}))}(i);var d=Object(s.select)("#d"+t).node(),p=z.detectType(i),g=d.firstChild,y=g.firstChild,v="";if(void 0!==u.themeCSS&&(v+="\n".concat(u.themeCSS)),void 0!==u.fontFamily&&(v+="\n:root { --mermaid-font-family: ".concat(u.fontFamily,"}")),void 0!==u.altFontFamily&&(v+="\n:root { --mermaid-alt-font-family: ".concat(u.altFontFamily,"}")),"flowchart"===p||"flowchart-v2"===p||"graph"===p){var m=function(t){f.info("Extracting classes"),Yt.clear();try{var e=Ut.a.parser;return e.yy=Yt,e.parse(t),Yt.getClasses()}catch(t){return}}(i);for(var b in m)v+="\n.".concat(b," > * { ").concat(m[b].styles.join(" !important; ")," !important; }"),m[b].textStyles&&(v+="\n.".concat(b," tspan { ").concat(m[b].textStyles.join(" !important; ")," !important; }"))}var x=(new o.a)("#".concat(t),function(t,e,n){return" {\n font-family: ".concat(n.fontFamily,";\n font-size: ").concat(n.fontSize,";\n fill: ").concat(n.textColor,"\n }\n\n /* Classes common for multiple diagrams */\n\n .error-icon {\n fill: ").concat(n.errorBkgColor,";\n }\n .error-text {\n fill: ").concat(n.errorTextColor,";\n stroke: ").concat(n.errorTextColor,";\n }\n\n .edge-thickness-normal {\n stroke-width: 2px;\n }\n .edge-thickness-thick {\n stroke-width: 3.5px\n }\n .edge-pattern-solid {\n stroke-dasharray: 0;\n }\n\n .edge-pattern-dashed{\n stroke-dasharray: 3;\n }\n .edge-pattern-dotted {\n stroke-dasharray: 2;\n }\n\n .marker {\n fill: ").concat(n.lineColor,";\n }\n .marker.cross {\n stroke: ").concat(n.lineColor,";\n }\n\n svg {\n font-family: ").concat(n.fontFamily,";\n font-size: ").concat(n.fontSize,";\n }\n\n ").concat(ro[t](n),"\n\n ").concat(e,"\n\n ").concat(t," { fill: apa;}\n")}(p,v,u.themeVariables)),_=document.createElement("style");_.innerHTML=x,g.insertBefore(_,y);try{switch(p){case"git":u.flowchart.arrowMarkerAbsolute=u.arrowMarkerAbsolute,Ki(u.git),function(t,e,n){try{var r=Ui.a.parser;r.yy=Yi,r.yy.clear(),f.debug("in gitgraph renderer",t+"\n","id:",e,n),r.parse(t+"\n"),Wi=Object.assign(Wi,Vi,Yi.getOptions()),f.debug("effective options",Wi);var i=Yi.getDirection();$i=Yi.getCommits();var a=Yi.getBranchesAsObjArray();"BT"===i&&(Wi.nodeLabel.x=a.length*Wi.branchOffset,Wi.nodeLabel.width="100%",Wi.nodeLabel.y=-2*Wi.nodeRadius);var o=Object(s.select)('[id="'.concat(e,'"]'));for(var c in function(t){t.append("defs").append("g").attr("id","def-commit").append("circle").attr("r",Wi.nodeRadius).attr("cx",0).attr("cy",0),t.select("#def-commit").append("foreignObject").attr("width",Wi.nodeLabel.width).attr("height",Wi.nodeLabel.height).attr("x",Wi.nodeLabel.x).attr("y",Wi.nodeLabel.y).attr("class","node-label").attr("requiredFeatures","http://www.w3.org/TR/SVG11/feature#Extensibility").append("p").html("")}(o),ji=1,a){var u=a[c];Zi(o,u.commit.id,a,i),Ji(o,u.commit,i),ji++}o.attr("height",(function(){return"BT"===i?Object.keys($i).length*Wi.nodeSpacing:(a.length+1)*Wi.branchOffset}))}catch(t){f.error("Error while rendering gitgraph"),f.error(t.message)}}(i,t,!1);break;case"flowchart":u.flowchart.arrowMarkerAbsolute=u.arrowMarkerAbsolute,ue(u.flowchart),function(t,e){f.info("Drawing flowchart"),Yt.clear();var n=Ut.a.parser;n.yy=Yt,n.parse(t);var r=Yt.getDirection();void 0===r&&(r="TD");for(var i,a=vt().flowchart,o=a.nodeSpacing||50,c=a.rankSpacing||50,u=new $.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:r,nodesep:o,ranksep:c,marginx:8,marginy:8}).setDefaultEdgeLabel((function(){return{}})),l=Yt.getSubGraphs(),h=l.length-1;h>=0;h--)i=l[h],Yt.addVertex(i.id,i.title,"group",void 0,i.classes);var d=Yt.getVertices(),p=Yt.getEdges(),g=0;for(g=l.length-1;g>=0;g--){i=l[g],Object(s.selectAll)("cluster").append("text");for(var y=0;y=0;h--)i=l[h],f.info("Subgraph - ",i),Yt.addVertex(i.id,i.title,"group",void 0,i.classes);var d=Yt.getVertices(),p=Yt.getEdges();f.info(p);var g=0;for(g=l.length-1;g>=0;g--){i=l[g],Object(s.selectAll)("cluster").append("text");for(var y=0;y *").attr("xmlns","http://www.w3.org/1999/xhtml");var k=Object(s.select)("#d"+t).node().innerHTML;if(f.debug("cnf.arrowMarkerAbsolute",u.arrowMarkerAbsolute),u.arrowMarkerAbsolute&&"false"!==u.arrowMarkerAbsolute||(k=k.replace(/marker-end="url\(.*?#/g,'marker-end="url(#',"g")),k=function(t){var e=t;return(e=(e=e.replace(/fl°°/g,(function(){return"&#"}))).replace(/fl°/g,(function(){return"&"}))).replace(/¶ß/g,(function(){return";"}))}(k),void 0!==n)switch(p){case"flowchart":case"flowchart-v2":n(k,Yt.bindFunctions);break;case"gantt":n(k,vr.bindFunctions);break;case"class":n(k,Fr.bindFunctions);break;default:n(k)}else f.debug("CB = undefined!");var w=Object(s.select)("#d"+t).node();return null!==w&&"function"==typeof w.remove&&Object(s.select)("#d"+t).node().remove(),k},parse:function(t){var e=z.detectInit(t);e&&f.debug("reinit ",e);var n,r=z.detectType(t);switch(f.debug("Type "+r),r){case"git":(n=Ui.a).parser.yy=Yi;break;case"flowchart":case"flowchart-v2":Yt.clear(),(n=Ut.a).parser.yy=Yt;break;case"sequence":(n=dn.a).parser.yy=Mn;break;case"gantt":(n=Un.a).parser.yy=vr;break;case"class":case"classDiagram":(n=Ir.a).parser.yy=Fr;break;case"state":case"stateDiagram":(n=gi.a).parser.yy=di;break;case"info":f.debug("info info info"),(n=ia.a).parser.yy=na;break;case"pie":f.debug("pie"),(n=fa.a).parser.yy=la;break;case"er":f.debug("er"),(n=xa.a).parser.yy=ma;break;case"journey":f.debug("Journey"),(n=Ma.a).parser.yy=Ia}return n.parser.yy.graphType=r,n.parser.yy.parseError=function(t,e){throw{str:t,hash:e}},n.parse(t),n},parseDirective:function(t,e,n,r){try{if(void 0!==e)switch(e=e.trim(),n){case"open_directive":ao={};break;case"type_directive":ao.type=e.toLowerCase();break;case"arg_directive":ao.args=JSON.parse(e);break;case"close_directive":(function(t,e,n){switch(f.debug("Directive type=".concat(e.type," with args:"),e.args),e.type){case"init":case"initialize":["config"].forEach((function(t){void 0!==e.args[t]&&("flowchart-v2"===n&&(n="flowchart"),e.args[n]=e.args[t],delete e.args[t])})),e.args,bt(e.args);break;case"wrap":case"nowrap":t&&t.setWrap&&t.setWrap("wrap"===e.type);break;default:f.warn("Unhandled directive: source: '%%{".concat(e.type,": ").concat(JSON.stringify(e.args?e.args:{}),"}%%"),e)}})(t,ao,r),ao=null}}catch(t){f.error("Error while rendering sequenceDiagram directive: ".concat(e," jison context: ").concat(n)),f.error(t.message)}},initialize:function(t){t&&t.fontFamily&&(t.themeVariables&&t.themeVariables.fontFamily||(t.themeVariables={fontFamily:t.fontFamily})),ut=F({},t),t&&t.theme&&st[t.theme]?t.themeVariables=st[t.theme].getThemeVariables(t.themeVariables):t&&(t.themeVariables=st.default.getThemeVariables(t.themeVariables));var e="object"===io(t)?function(t){return ft=F({},ht),ft=F(ft,t),t.theme&&(ft.themeVariables=st[t.theme].getThemeVariables(t.themeVariables)),pt=gt(ft,dt),ft}(t):yt();oo(e),d(e.logLevel)},reinitialize:function(){},getConfig:vt,setConfig:function(t){return F(pt,t),vt()},getSiteConfig:yt,updateSiteConfig:function(t){return ft=F(ft,t),gt(ft,dt),ft},reset:function(){xt()},globalReset:function(){xt(),oo(vt())},defaultConfig:ht});d(vt().logLevel),xt(vt());var co=so,uo=function(){lo.startOnLoad?co.getConfig().startOnLoad&&lo.init():void 0===lo.startOnLoad&&(f.debug("In start, no config"),co.getConfig().startOnLoad&&lo.init())};"undefined"!=typeof document&& +/*! + * Wait for document loaded before starting the execution + */ +window.addEventListener("load",(function(){uo()}),!1);var lo={startOnLoad:!0,htmlLabels:!0,mermaidAPI:co,parse:co.parse,render:co.render,init:function(){var t,e,n,r=this,a=co.getConfig();arguments.length>=2?( +/*! sequence config was passed as #1 */ +void 0!==arguments[0]&&(lo.sequenceConfig=arguments[0]),t=arguments[1]):t=arguments[0],"function"==typeof arguments[arguments.length-1]?(e=arguments[arguments.length-1],f.debug("Callback function found")):void 0!==a.mermaid&&("function"==typeof a.mermaid.callback?(e=a.mermaid.callback,f.debug("Callback function found")):f.debug("No Callback function found")),t=void 0===t?document.querySelectorAll(".mermaid"):"string"==typeof t?document.querySelectorAll(t):t instanceof window.Node?[t]:t,f.debug("Start On Load before: "+lo.startOnLoad),void 0!==lo.startOnLoad&&(f.debug("Start On Load inner: "+lo.startOnLoad),co.updateSiteConfig({startOnLoad:lo.startOnLoad})),void 0!==lo.ganttConfig&&co.updateSiteConfig({gantt:lo.ganttConfig});for(var o=function(a){var o=t[a]; +/*! Check if previously processed */if(o.getAttribute("data-processed"))return"continue";o.setAttribute("data-processed",!0);var s="mermaid-".concat(Date.now());n=i(n=o.innerHTML).trim().replace(//gi,"
");var c=z.detectInit(n);c&&f.debug("Detected early reinit: ",c);try{co.render(s,n,(function(t,n){o.innerHTML=t,void 0!==e&&e(s),n&&n(o)}),o)}catch(t){f.warn("Syntax Error rendering"),f.warn(t),r.parseError&&r.parseError(t)}},s=0;s1&&(a-=1)),[360*a,100*r,100*u]},a.rgb.hwb=function(t){var e=t[0],n=t[1],i=t[2];return[a.rgb.hsl(t)[0],1/255*Math.min(e,Math.min(n,i))*100,100*(i=1-1/255*Math.max(e,Math.max(n,i)))]},a.rgb.cmyk=function(t){var e,n=t[0]/255,i=t[1]/255,a=t[2]/255;return[100*((1-n-(e=Math.min(1-n,1-i,1-a)))/(1-e)||0),100*((1-i-e)/(1-e)||0),100*((1-a-e)/(1-e)||0),100*e]},a.rgb.keyword=function(t){var i=n[t];if(i)return i;var a,r,o,s=1/0;for(var l in e)if(e.hasOwnProperty(l)){var u=(r=t,o=e[l],Math.pow(r[0]-o[0],2)+Math.pow(r[1]-o[1],2)+Math.pow(r[2]-o[2],2));u.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)),100*(.2126*e+.7152*n+.0722*i),100*(.0193*e+.1192*n+.9505*i)]},a.rgb.lab=function(t){var e=a.rgb.xyz(t),n=e[0],i=e[1],r=e[2];return i/=100,r/=108.883,n=(n/=95.047)>.008856?Math.pow(n,1/3):7.787*n+16/116,[116*(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116)-16,500*(n-i),200*(i-(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116))]},a.hsl.rgb=function(t){var e,n,i,a,r,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[r=255*l,r,r];e=2*l-(n=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var u=0;u<3;u++)(i=o+1/3*-(u-1))<0&&i++,i>1&&i--,r=6*i<1?e+6*(n-e)*i:2*i<1?n:3*i<2?e+(n-e)*(2/3-i)*6:e,a[u]=255*r;return a},a.hsl.hsv=function(t){var e=t[0],n=t[1]/100,i=t[2]/100,a=n,r=Math.max(i,.01);return n*=(i*=2)<=1?i:2-i,a*=r<=1?r:2-r,[e,100*(0===i?2*a/(r+a):2*n/(i+n)),(i+n)/2*100]},a.hsv.rgb=function(t){var e=t[0]/60,n=t[1]/100,i=t[2]/100,a=Math.floor(e)%6,r=e-Math.floor(e),o=255*i*(1-n),s=255*i*(1-n*r),l=255*i*(1-n*(1-r));switch(i*=255,a){case 0:return[i,l,o];case 1:return[s,i,o];case 2:return[o,i,l];case 3:return[o,s,i];case 4:return[l,o,i];case 5:return[i,o,s]}},a.hsv.hsl=function(t){var e,n,i,a=t[0],r=t[1]/100,o=t[2]/100,s=Math.max(o,.01);return i=(2-r)*o,n=r*s,[a,100*(n=(n/=(e=(2-r)*s)<=1?e:2-e)||0),100*(i/=2)]},a.hwb.rgb=function(t){var e,n,i,a,r,o,s,l=t[0]/360,u=t[1]/100,d=t[2]/100,h=u+d;switch(h>1&&(u/=h,d/=h),i=6*l-(e=Math.floor(6*l)),0!=(1&e)&&(i=1-i),a=u+i*((n=1-d)-u),e){default:case 6:case 0:r=n,o=a,s=u;break;case 1:r=a,o=n,s=u;break;case 2:r=u,o=n,s=a;break;case 3:r=u,o=a,s=n;break;case 4:r=a,o=u,s=n;break;case 5:r=n,o=u,s=a}return[255*r,255*o,255*s]},a.cmyk.rgb=function(t){var e=t[0]/100,n=t[1]/100,i=t[2]/100,a=t[3]/100;return[255*(1-Math.min(1,e*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a)),255*(1-Math.min(1,i*(1-a)+a))]},a.xyz.rgb=function(t){var e,n,i,a=t[0]/100,r=t[1]/100,o=t[2]/100;return n=-.9689*a+1.8758*r+.0415*o,i=.0557*a+-.204*r+1.057*o,e=(e=3.2406*a+-1.5372*r+-.4986*o)>.0031308?1.055*Math.pow(e,1/2.4)-.055:12.92*e,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:12.92*n,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:12.92*i,[255*(e=Math.min(Math.max(0,e),1)),255*(n=Math.min(Math.max(0,n),1)),255*(i=Math.min(Math.max(0,i),1))]},a.xyz.lab=function(t){var e=t[0],n=t[1],i=t[2];return n/=100,i/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(e-n),200*(n-(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116))]},a.lab.xyz=function(t){var e,n,i,a=t[0];e=t[1]/500+(n=(a+16)/116),i=n-t[2]/200;var r=Math.pow(n,3),o=Math.pow(e,3),s=Math.pow(i,3);return n=r>.008856?r:(n-16/116)/7.787,e=o>.008856?o:(e-16/116)/7.787,i=s>.008856?s:(i-16/116)/7.787,[e*=95.047,n*=100,i*=108.883]},a.lab.lch=function(t){var e,n=t[0],i=t[1],a=t[2];return(e=360*Math.atan2(a,i)/2/Math.PI)<0&&(e+=360),[n,Math.sqrt(i*i+a*a),e]},a.lch.lab=function(t){var e,n=t[0],i=t[1];return e=t[2]/360*2*Math.PI,[n,i*Math.cos(e),i*Math.sin(e)]},a.rgb.ansi16=function(t){var e=t[0],n=t[1],i=t[2],r=1 in arguments?arguments[1]:a.rgb.hsv(t)[2];if(0===(r=Math.round(r/50)))return 30;var o=30+(Math.round(i/255)<<2|Math.round(n/255)<<1|Math.round(e/255));return 2===r&&(o+=60),o},a.hsv.ansi16=function(t){return a.rgb.ansi16(a.hsv.rgb(t),t[2])},a.rgb.ansi256=function(t){var e=t[0],n=t[1],i=t[2];return e===n&&n===i?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(n/255*5)+Math.round(i/255*5)},a.ansi16.rgb=function(t){var e=t%10;if(0===e||7===e)return t>50&&(e+=3.5),[e=e/10.5*255,e,e];var n=.5*(1+~~(t>50));return[(1&e)*n*255,(e>>1&1)*n*255,(e>>2&1)*n*255]},a.ansi256.rgb=function(t){if(t>=232){var e=10*(t-232)+8;return[e,e,e]}var n;return t-=16,[Math.floor(t/36)/5*255,Math.floor((n=t%36)/6)/5*255,n%6/5*255]},a.rgb.hex=function(t){var e=(((255&Math.round(t[0]))<<16)+((255&Math.round(t[1]))<<8)+(255&Math.round(t[2]))).toString(16).toUpperCase();return"000000".substring(e.length)+e},a.hex.rgb=function(t){var e=t.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e)return[0,0,0];var n=e[0];3===e[0].length&&(n=n.split("").map((function(t){return t+t})).join(""));var i=parseInt(n,16);return[i>>16&255,i>>8&255,255&i]},a.rgb.hcg=function(t){var e,n=t[0]/255,i=t[1]/255,a=t[2]/255,r=Math.max(Math.max(n,i),a),o=Math.min(Math.min(n,i),a),s=r-o;return e=s<=0?0:r===n?(i-a)/s%6:r===i?2+(a-n)/s:4+(n-i)/s+4,e/=6,[360*(e%=1),100*s,100*(s<1?o/(1-s):0)]},a.hsl.hcg=function(t){var e,n=t[1]/100,i=t[2]/100,a=0;return(e=i<.5?2*n*i:2*n*(1-i))<1&&(a=(i-.5*e)/(1-e)),[t[0],100*e,100*a]},a.hsv.hcg=function(t){var e=t[1]/100,n=t[2]/100,i=e*n,a=0;return i<1&&(a=(n-i)/(1-i)),[t[0],100*i,100*a]},a.hcg.rgb=function(t){var e=t[0]/360,n=t[1]/100,i=t[2]/100;if(0===n)return[255*i,255*i,255*i];var a,r=[0,0,0],o=e%1*6,s=o%1,l=1-s;switch(Math.floor(o)){case 0:r[0]=1,r[1]=s,r[2]=0;break;case 1:r[0]=l,r[1]=1,r[2]=0;break;case 2:r[0]=0,r[1]=1,r[2]=s;break;case 3:r[0]=0,r[1]=l,r[2]=1;break;case 4:r[0]=s,r[1]=0,r[2]=1;break;default:r[0]=1,r[1]=0,r[2]=l}return a=(1-n)*i,[255*(n*r[0]+a),255*(n*r[1]+a),255*(n*r[2]+a)]},a.hcg.hsv=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e),i=0;return n>0&&(i=e/n),[t[0],100*i,100*n]},a.hcg.hsl=function(t){var e=t[1]/100,n=t[2]/100*(1-e)+.5*e,i=0;return n>0&&n<.5?i=e/(2*n):n>=.5&&n<1&&(i=e/(2*(1-n))),[t[0],100*i,100*n]},a.hcg.hwb=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e);return[t[0],100*(n-e),100*(1-n)]},a.hwb.hcg=function(t){var e=t[1]/100,n=1-t[2]/100,i=n-e,a=0;return i<1&&(a=(n-i)/(1-i)),[t[0],100*i,100*a]},a.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]},a.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]},a.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]},a.gray.hsl=a.gray.hsv=function(t){return[0,0,t[0]]},a.gray.hwb=function(t){return[0,100,t[0]]},a.gray.cmyk=function(t){return[0,0,0,t[0]]},a.gray.lab=function(t){return[t[0],0,0]},a.gray.hex=function(t){var e=255&Math.round(t[0]/100*255),n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".substring(n.length)+n},a.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]}}));function i(t){var e=function(){for(var t={},e=Object.keys(n),i=e.length,a=0;a1&&(e=Array.prototype.slice.call(arguments));var n=t(e);if("object"==typeof n)for(var i=n.length,a=0;a1&&(e=Array.prototype.slice.call(arguments)),t(e))};return"conversion"in t&&(e.conversion=t.conversion),e}(i)}))}));var s=o,l={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},u={getRgba:d,getHsla:h,getRgb:function(t){var e=d(t);return e&&e.slice(0,3)},getHsl:function(t){var e=h(t);return e&&e.slice(0,3)},getHwb:c,getAlpha:function(t){var e=d(t);return e||(e=h(t))||(e=c(t))?e[3]:void 0},hexString:function(t,e){return e=void 0!==e&&3===t.length?e:t[3],"#"+v(t[0])+v(t[1])+v(t[2])+(e>=0&&e<1?v(Math.round(255*e)):"")},rgbString:function(t,e){return e<1||t[3]&&t[3]<1?f(t,e):"rgb("+t[0]+", "+t[1]+", "+t[2]+")"},rgbaString:f,percentString:function(t,e){return e<1||t[3]&&t[3]<1?g(t,e):"rgb("+Math.round(t[0]/255*100)+"%, "+Math.round(t[1]/255*100)+"%, "+Math.round(t[2]/255*100)+"%)"},percentaString:g,hslString:function(t,e){return e<1||t[3]&&t[3]<1?m(t,e):"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"},hslaString:m,hwbString:function(t,e){return void 0===e&&(e=void 0!==t[3]?t[3]:1),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"},keyword:function(t){return b[t.slice(0,3)]}};function d(t){if(t){var e=[0,0,0],n=1,i=t.match(/^#([a-fA-F0-9]{3,4})$/i),a="";if(i){a=(i=i[1])[3];for(var r=0;rn?(e+.05)/(n+.05):(n+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,n=(e[0]+t)%360;return e[0]=n<0?360+n:n,this.setValues("hsl",e),this},mix:function(t,e){var n=t,i=void 0===e?.5:e,a=2*i-1,r=this.alpha()-n.alpha(),o=((a*r==-1?a:(a+r)/(1+a*r))+1)/2,s=1-o;return this.rgb(o*this.red()+s*n.red(),o*this.green()+s*n.green(),o*this.blue()+s*n.blue()).alpha(this.alpha()*i+n.alpha()*(1-i))},toJSON:function(){return this.rgb()},clone:function(){var t,e,n=new x,i=this.values,a=n.values;for(var r in i)i.hasOwnProperty(r)&&(t=i[r],"[object Array]"===(e={}.toString.call(t))?a[r]=t.slice(0):"[object Number]"===e?a[r]=t:console.error("unexpected color value:",t));return n}},x.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},x.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},x.prototype.getValues=function(t){for(var e=this.values,n={},i=0;i=0;a--)e.call(n,t[a],a);else for(a=0;a=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:1===t?1:(n||(n=.3),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),-i*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n))},easeOutElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:1===t?1:(n||(n=.3),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),i*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/n)+1)},easeInOutElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:2==(t/=.5)?1:(n||(n=.45),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),t<1?i*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*-.5:i*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-S.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*S.easeInBounce(2*t):.5*S.easeOutBounce(2*t-1)+.5}},D={effects:S};M.easingEffects=S;var C=Math.PI,P=C/180,T=2*C,O=C/2,A=C/4,F=2*C/3,I={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,n,i,a,r){if(r){var o=Math.min(r,a/2,i/2),s=e+o,l=n+o,u=e+i-o,d=n+a-o;t.moveTo(e,l),se.left-1e-6&&t.xe.top-1e-6&&t.y0&&this.requestAnimationFrame()},advance:function(){for(var t,e,n,i,a=this.animations,r=0;r=n?(V.callback(t.onAnimationComplete,[t],e),e.animating=!1,a.splice(r,1)):++r}},K=V.options.resolve,J=["push","pop","shift","splice","unshift"];function Q(t,e){var n=t._chartjs;if(n){var i=n.listeners,a=i.indexOf(e);-1!==a&&i.splice(a,1),i.length>0||(J.forEach((function(e){delete t[e]})),delete t._chartjs)}}var tt=function(t,e){this.initialize(t,e)};V.extend(tt.prototype,{datasetElementType:null,dataElementType:null,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth"],_dataElementOptions:["backgroundColor","borderColor","borderWidth","pointStyle"],initialize:function(t,e){var n=this;n.chart=t,n.index=e,n.linkScales(),n.addElements(),n._type=n.getMeta().type},updateIndex:function(t){this.index=t},linkScales:function(){var t=this.getMeta(),e=this.chart,n=e.scales,i=this.getDataset(),a=e.options.scales;null!==t.xAxisID&&t.xAxisID in n&&!i.xAxisID||(t.xAxisID=i.xAxisID||a.xAxes[0].id),null!==t.yAxisID&&t.yAxisID in n&&!i.yAxisID||(t.yAxisID=i.yAxisID||a.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this._update(!0)},destroy:function(){this._data&&Q(this._data,this)},createMetaDataset:function(){var t=this.datasetElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(t){var e=this.dataElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index,_index:t})},addElements:function(){var t,e,n=this.getMeta(),i=this.getDataset().data||[],a=n.data;for(t=0,e=i.length;tn&&this.insertElements(n,i-n)},insertElements:function(t,e){for(var n=0;na?(r=a/e.innerRadius,t.arc(o,s,e.innerRadius-a,i+r,n-r,!0)):t.arc(o,s,a,i+Math.PI/2,n-Math.PI/2),t.closePath(),t.clip()}N._set("global",{elements:{arc:{backgroundColor:N.global.defaultColor,borderColor:"#fff",borderWidth:2,borderAlign:"center"}}});var at=q.extend({_type:"arc",inLabelRange:function(t){var e=this._view;return!!e&&Math.pow(t-e.x,2)s;)a-=nt;for(;a=o&&a<=s,u=r>=n.innerRadius&&r<=n.outerRadius;return l&&u}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,n=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,n=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},draw:function(){var t,e=this._chart.ctx,n=this._view,i="inner"===n.borderAlign?.33:0,a={x:n.x,y:n.y,innerRadius:n.innerRadius,outerRadius:Math.max(n.outerRadius-i,0),pixelMargin:i,startAngle:n.startAngle,endAngle:n.endAngle,fullCircles:Math.floor(n.circumference/nt)};if(e.save(),e.fillStyle=n.backgroundColor,e.strokeStyle=n.borderColor,a.fullCircles){for(a.endAngle=a.startAngle+nt,e.beginPath(),e.arc(a.x,a.y,a.outerRadius,a.startAngle,a.endAngle),e.arc(a.x,a.y,a.innerRadius,a.endAngle,a.startAngle,!0),e.closePath(),t=0;t=r.left&&e<=r.right)&&(a||n>=r.top&&n<=r.bottom)}N._set("global",{elements:{rectangle:{backgroundColor:ct,borderColor:ct,borderSkipped:"bottom",borderWidth:0}}});var vt=q.extend({_type:"rectangle",draw:function(){var t=this._chart.ctx,e=this._view,n=function(t){var e=gt(t),n=e.right-e.left,i=e.bottom-e.top,a=function(t,e,n){var i,a,r,o,s=t.borderWidth,l=function(t){var e=t.borderSkipped,n={};return e?(t.horizontal?t.base>t.x&&(e=mt(e,"left","right")):t.basen?n:i,r:l.right||a<0?0:a>e?e:a,b:l.bottom||r<0?0:r>n?n:r,l:l.left||o<0?0:o>e?e:o}}(t,n/2,i/2);return{outer:{x:e.left,y:e.top,w:n,h:i},inner:{x:e.left+a.l,y:e.top+a.t,w:n-a.l-a.r,h:i-a.t-a.b}}}(e),i=n.outer,a=n.inner;t.fillStyle=e.backgroundColor,t.fillRect(i.x,i.y,i.w,i.h),i.w===a.w&&i.h===a.h||(t.save(),t.beginPath(),t.rect(i.x,i.y,i.w,i.h),t.clip(),t.fillStyle=e.borderColor,t.rect(a.x,a.y,a.w,a.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return pt(this._view,t,e)},inLabelRange:function(t,e){var n=this._view;return ft(n)?pt(n,t,null):pt(n,null,e)},inXRange:function(t){return pt(this._view,t,null)},inYRange:function(t){return pt(this._view,null,t)},getCenterPoint:function(){var t,e,n=this._view;return ft(n)?(t=n.x,e=(n.y+n.base)/2):(t=(n.x+n.base)/2,e=n.y),{x:t,y:e}},getArea:function(){var t=this._view;return ft(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),bt={},yt=at,xt=st,_t=ht,wt=vt;bt.Arc=yt,bt.Line=xt,bt.Point=_t,bt.Rectangle=wt;var kt=V._deprecated,Mt=V.valueOrDefault;N._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}}),N._set("global",{datasets:{bar:{categoryPercentage:.8,barPercentage:.9}}});var St=et.extend({dataElementType:bt.Rectangle,_dataElementOptions:["backgroundColor","borderColor","borderSkipped","borderWidth","barPercentage","barThickness","categoryPercentage","maxBarThickness","minBarLength"],initialize:function(){var t,e,n=this;et.prototype.initialize.apply(n,arguments),(t=n.getMeta()).stack=n.getDataset().stack,t.bar=!0,e=n._getIndexScale().options,kt("bar chart",e.barPercentage,"scales.[x/y]Axes.barPercentage","dataset.barPercentage"),kt("bar chart",e.barThickness,"scales.[x/y]Axes.barThickness","dataset.barThickness"),kt("bar chart",e.categoryPercentage,"scales.[x/y]Axes.categoryPercentage","dataset.categoryPercentage"),kt("bar chart",n._getValueScale().options.minBarLength,"scales.[x/y]Axes.minBarLength","dataset.minBarLength"),kt("bar chart",e.maxBarThickness,"scales.[x/y]Axes.maxBarThickness","dataset.maxBarThickness")},update:function(t){var e,n,i=this.getMeta().data;for(this._ruler=this.getRuler(),e=0,n=i.length;e=0&&m.min>=0?m.min:m.max,x=void 0===m.start?m.end:m.max>=0&&m.min>=0?m.max-m.min:m.min-m.max,_=g.length;if(v||void 0===v&&void 0!==b)for(i=0;i<_&&(a=g[i]).index!==t;++i)a.stack===b&&(r=void 0===(u=h._parseValue(f[a.index].data[e])).start?u.end:u.min>=0&&u.max>=0?u.max:u.min,(m.min<0&&r<0||m.max>=0&&r>0)&&(y+=r));return o=h.getPixelForValue(y),l=(s=h.getPixelForValue(y+x))-o,void 0!==p&&Math.abs(l)=0&&!c||x<0&&c?o-p:o+p),{size:l,base:o,head:s,center:s+l/2}},calculateBarIndexPixels:function(t,e,n,i){var a="flex"===i.barThickness?function(t,e,n){var i,a=e.pixels,r=a[t],o=t>0?a[t-1]:null,s=t0?Math.min(o,Math.abs(i-n)):o,n=i;return o}(e.scale,e.pixels):-1;return V.isNullOrUndef(r)?(i=l*n.categoryPercentage,a=n.barPercentage):(i=r*o,a=1),{chunk:i/o,ratio:a,start:s-i/2}}(e,n,i),r=this.getStackIndex(t,this.getMeta().stack),o=a.start+a.chunk*r+a.chunk/2,s=Math.min(Mt(i.maxBarThickness,1/0),a.chunk*a.ratio);return{base:o-s/2,head:o+s/2,center:o,size:s}},draw:function(){var t=this.chart,e=this._getValueScale(),n=this.getMeta().data,i=this.getDataset(),a=n.length,r=0;for(V.canvas.clipArea(t.ctx,t.chartArea);r=Ot?-At:b<-Ot?At:0)+p,x=Math.cos(b),_=Math.sin(b),w=Math.cos(y),k=Math.sin(y),M=b<=0&&y>=0||y>=At,S=b<=Ft&&y>=Ft||y>=At+Ft,D=b<=-Ft&&y>=-Ft||y>=Ot+Ft,C=b===-Ot||y>=Ot?-1:Math.min(x,x*m,w,w*m),P=D?-1:Math.min(_,_*m,k,k*m),T=M?1:Math.max(x,x*m,w,w*m),O=S?1:Math.max(_,_*m,k,k*m);u=(T-C)/2,d=(O-P)/2,h=-(T+C)/2,c=-(O+P)/2}for(i=0,a=g.length;i0&&!isNaN(t)?At*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,n,i,a,r,o,s,l,u=0,d=this.chart;if(!t)for(e=0,n=d.data.datasets.length;e(u=s>u?s:u)?l:u);return u},setHoverStyle:function(t){var e=t._model,n=t._options,i=V.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=Tt(n.hoverBackgroundColor,i(n.backgroundColor)),e.borderColor=Tt(n.hoverBorderColor,i(n.borderColor)),e.borderWidth=Tt(n.hoverBorderWidth,n.borderWidth)},_getRingWeightOffset:function(t){for(var e=0,n=0;n0&&Wt(l[t-1]._model,s)&&(n.controlPointPreviousX=u(n.controlPointPreviousX,s.left,s.right),n.controlPointPreviousY=u(n.controlPointPreviousY,s.top,s.bottom)),t0&&(r=t.getDatasetMeta(r[0]._datasetIndex).data),r},"x-axis":function(t,e){return Qt(t,e,{intersect:!1})},point:function(t,e){return Xt(t,Zt(e,t))},nearest:function(t,e,n){var i=Zt(e,t);n.axis=n.axis||"xy";var a=Jt(n.axis);return Kt(t,i,n.intersect,a)},x:function(t,e,n){var i=Zt(e,t),a=[],r=!1;return $t(t,(function(t){t.inXRange(i.x)&&a.push(t),t.inRange(i.x,i.y)&&(r=!0)})),n.intersect&&!r&&(a=[]),a},y:function(t,e,n){var i=Zt(e,t),a=[],r=!1;return $t(t,(function(t){t.inYRange(i.y)&&a.push(t),t.inRange(i.x,i.y)&&(r=!0)})),n.intersect&&!r&&(a=[]),a}}},ee=V.extend;function ne(t,e){return V.where(t,(function(t){return t.pos===e}))}function ie(t,e){return t.sort((function(t,n){var i=e?n:t,a=e?t:n;return i.weight===a.weight?i.index-a.index:i.weight-a.weight}))}function ae(t,e,n,i){return Math.max(t[n],e[n])+Math.max(t[i],e[i])}function re(t,e,n){var i,a,r=n.box,o=t.maxPadding;if(n.size&&(t[n.pos]-=n.size),n.size=n.horizontal?r.height:r.width,t[n.pos]+=n.size,r.getPadding){var s=r.getPadding();o.top=Math.max(o.top,s.top),o.left=Math.max(o.left,s.left),o.bottom=Math.max(o.bottom,s.bottom),o.right=Math.max(o.right,s.right)}if(i=e.outerWidth-ae(o,t,"left","right"),a=e.outerHeight-ae(o,t,"top","bottom"),i!==t.w||a!==t.h)return t.w=i,t.h=a,n.horizontal?i!==t.w:a!==t.h}function oe(t,e){var n=e.maxPadding;return function(t){var i={left:0,top:0,right:0,bottom:0};return t.forEach((function(t){i[t]=Math.max(e[t],n[t])})),i}(t?["left","right"]:["top","bottom"])}function se(t,e,n){var i,a,r,o,s,l,u=[];for(i=0,a=t.length;idiv{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}"}))&&ue.default||ue,ce="$chartjs",fe="chartjs-size-monitor",ge="chartjs-render-monitor",me=["animationstart","webkitAnimationStart"],pe={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function ve(t,e){var n=V.getStyle(t,e),i=n&&n.match(/^(\d+)(\.\d+)?px$/);return i?Number(i[1]):void 0}var be=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};function ye(t,e,n){t.addEventListener(e,n,be)}function xe(t,e,n){t.removeEventListener(e,n,be)}function _e(t,e,n,i,a){return{type:t,chart:e,native:a||null,x:void 0!==n?n:null,y:void 0!==i?i:null}}function we(t){var e=document.createElement("div");return e.className=t||"",e}var ke={disableCSSInjection:!1,_enabled:"undefined"!=typeof window&&"undefined"!=typeof document,_ensureLoaded:function(t){if(!this.disableCSSInjection){var e=t.getRootNode?t.getRootNode():document;!function(t,e){var n=t[ce]||(t[ce]={});if(!n.containsStyles){n.containsStyles=!0,e="/* Chart.js */\n"+e;var i=document.createElement("style");i.setAttribute("type","text/css"),i.appendChild(document.createTextNode(e)),t.appendChild(i)}}(e.host?e:document.head,he)}},acquireContext:function(t,e){"string"==typeof t?t=document.getElementById(t):t.length&&(t=t[0]),t&&t.canvas&&(t=t.canvas);var n=t&&t.getContext&&t.getContext("2d");return n&&n.canvas===t?(this._ensureLoaded(t),function(t,e){var n=t.style,i=t.getAttribute("height"),a=t.getAttribute("width");if(t[ce]={initial:{height:i,width:a,style:{display:n.display,height:n.height,width:n.width}}},n.display=n.display||"block",null===a||""===a){var r=ve(t,"width");void 0!==r&&(t.width=r)}if(null===i||""===i)if(""===t.style.height)t.height=t.width/(e.options.aspectRatio||2);else{var o=ve(t,"height");void 0!==r&&(t.height=o)}}(t,e),n):null},releaseContext:function(t){var e=t.canvas;if(e[ce]){var n=e[ce].initial;["height","width"].forEach((function(t){var i=n[t];V.isNullOrUndef(i)?e.removeAttribute(t):e.setAttribute(t,i)})),V.each(n.style||{},(function(t,n){e.style[n]=t})),e.width=e.width,delete e[ce]}},addEventListener:function(t,e,n){var i=t.canvas;if("resize"!==e){var a=n[ce]||(n[ce]={});ye(i,e,(a.proxies||(a.proxies={}))[t.id+"_"+e]=function(e){n(function(t,e){var n=pe[t.type]||t.type,i=V.getRelativePosition(t,e);return _e(n,e,i.x,i.y,t)}(e,t))})}else!function(t,e,n){var i,a,r,o,s=t[ce]||(t[ce]={}),l=s.resizer=function(t){var e=we(fe),n=we(fe+"-expand"),i=we(fe+"-shrink");n.appendChild(we()),i.appendChild(we()),e.appendChild(n),e.appendChild(i),e._reset=function(){n.scrollLeft=1e6,n.scrollTop=1e6,i.scrollLeft=1e6,i.scrollTop=1e6};var a=function(){e._reset(),t()};return ye(n,"scroll",a.bind(n,"expand")),ye(i,"scroll",a.bind(i,"shrink")),e}((i=function(){if(s.resizer){var i=n.options.maintainAspectRatio&&t.parentNode,a=i?i.clientWidth:0;e(_e("resize",n)),i&&i.clientWidth0){var r=t[0];r.label?n=r.label:r.xLabel?n=r.xLabel:a>0&&r.index-1?t.split("\n"):t}function Ie(t){var e=N.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,rtl:t.rtl,textDirection:t.textDirection,bodyFontColor:t.bodyFontColor,_bodyFontFamily:Pe(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:Pe(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:Pe(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:Pe(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:Pe(t.titleFontStyle,e.defaultFontStyle),titleFontSize:Pe(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:Pe(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:Pe(t.footerFontStyle,e.defaultFontStyle),footerFontSize:Pe(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function Le(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Re(t){return Ae([],Fe(t))}var Ne=q.extend({initialize:function(){this._model=Ie(this._options),this._lastActive=[]},getTitle:function(){var t=this,e=t._options,n=e.callbacks,i=n.beforeTitle.apply(t,arguments),a=n.title.apply(t,arguments),r=n.afterTitle.apply(t,arguments),o=[];return o=Ae(o,Fe(i)),o=Ae(o,Fe(a)),Ae(o,Fe(r))},getBeforeBody:function(){return Re(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var n=this,i=n._options.callbacks,a=[];return V.each(t,(function(t){var r={before:[],lines:[],after:[]};Ae(r.before,Fe(i.beforeLabel.call(n,t,e))),Ae(r.lines,i.label.call(n,t,e)),Ae(r.after,Fe(i.afterLabel.call(n,t,e))),a.push(r)})),a},getAfterBody:function(){return Re(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this,e=t._options.callbacks,n=e.beforeFooter.apply(t,arguments),i=e.footer.apply(t,arguments),a=e.afterFooter.apply(t,arguments),r=[];return r=Ae(r,Fe(n)),r=Ae(r,Fe(i)),Ae(r,Fe(a))},update:function(t){var e,n,i,a,r,o,s,l,u,d,h=this,c=h._options,f=h._model,g=h._model=Ie(c),m=h._active,p=h._data,v={xAlign:f.xAlign,yAlign:f.yAlign},b={x:f.x,y:f.y},y={width:f.width,height:f.height},x={x:f.caretX,y:f.caretY};if(m.length){g.opacity=1;var _=[],w=[];x=Oe[c.position].call(h,m,h._eventPosition);var k=[];for(e=0,n=m.length;ei.width&&(a=i.width-e.width),a<0&&(a=0)),"top"===d?r+=h:r-="bottom"===d?e.height+h:e.height/2,"center"===d?"left"===u?a+=h:"right"===u&&(a-=h):"left"===u?a-=c:"right"===u&&(a+=c),{x:a,y:r}}(g,y=function(t,e){var n=t._chart.ctx,i=2*e.yPadding,a=0,r=e.body,o=r.reduce((function(t,e){return t+e.before.length+e.lines.length+e.after.length}),0);o+=e.beforeBody.length+e.afterBody.length;var s=e.title.length,l=e.footer.length,u=e.titleFontSize,d=e.bodyFontSize,h=e.footerFontSize;i+=s*u,i+=s?(s-1)*e.titleSpacing:0,i+=s?e.titleMarginBottom:0,i+=o*d,i+=o?(o-1)*e.bodySpacing:0,i+=l?e.footerMarginTop:0,i+=l*h,i+=l?(l-1)*e.footerSpacing:0;var c=0,f=function(t){a=Math.max(a,n.measureText(t).width+c)};return n.font=V.fontString(u,e._titleFontStyle,e._titleFontFamily),V.each(e.title,f),n.font=V.fontString(d,e._bodyFontStyle,e._bodyFontFamily),V.each(e.beforeBody.concat(e.afterBody),f),c=e.displayColors?d+2:0,V.each(r,(function(t){V.each(t.before,f),V.each(t.lines,f),V.each(t.after,f)})),c=0,n.font=V.fontString(h,e._footerFontStyle,e._footerFontFamily),V.each(e.footer,f),{width:a+=2*e.xPadding,height:i}}(this,g),v=function(t,e){var n,i,a,r,o,s=t._model,l=t._chart,u=t._chart.chartArea,d="center",h="center";s.yl.height-e.height&&(h="bottom");var c=(u.left+u.right)/2,f=(u.top+u.bottom)/2;"center"===h?(n=function(t){return t<=c},i=function(t){return t>c}):(n=function(t){return t<=e.width/2},i=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},r=function(t){return t-e.width-s.caretSize-s.caretPadding<0},o=function(t){return t<=f?"top":"bottom"},n(s.x)?(d="left",a(s.x)&&(d="center",h=o(s.y))):i(s.x)&&(d="right",r(s.x)&&(d="center",h=o(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:d,yAlign:g.yAlign?g.yAlign:h}}(this,y),h._chart)}else g.opacity=0;return g.xAlign=v.xAlign,g.yAlign=v.yAlign,g.x=b.x,g.y=b.y,g.width=y.width,g.height=y.height,g.caretX=x.x,g.caretY=x.y,h._model=g,t&&c.custom&&c.custom.call(h,g),h},drawCaret:function(t,e){var n=this._chart.ctx,i=this._view,a=this.getCaretPosition(t,e,i);n.lineTo(a.x1,a.y1),n.lineTo(a.x2,a.y2),n.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,n){var i,a,r,o,s,l,u=n.caretSize,d=n.cornerRadius,h=n.xAlign,c=n.yAlign,f=t.x,g=t.y,m=e.width,p=e.height;if("center"===c)s=g+p/2,"left"===h?(a=(i=f)-u,r=i,o=s+u,l=s-u):(a=(i=f+m)+u,r=i,o=s-u,l=s+u);else if("left"===h?(i=(a=f+d+u)-u,r=a+u):"right"===h?(i=(a=f+m-d-u)-u,r=a+u):(i=(a=n.caretX)-u,r=a+u),"top"===c)s=(o=g)-u,l=o;else{s=(o=g+p)+u,l=o;var v=r;r=i,i=v}return{x1:i,x2:a,x3:r,y1:o,y2:s,y3:l}},drawTitle:function(t,e,n){var i,a,r,o=e.title,s=o.length;if(s){var l=Te(e.rtl,e.x,e.width);for(t.x=Le(e,e._titleAlign),n.textAlign=l.textAlign(e._titleAlign),n.textBaseline="middle",i=e.titleFontSize,a=e.titleSpacing,n.fillStyle=e.titleFontColor,n.font=V.fontString(i,e._titleFontStyle,e._titleFontFamily),r=0;r0&&n.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var n={width:e.width,height:e.height},i={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,r=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&r&&(t.save(),t.globalAlpha=a,this.drawBackground(i,e,t,n),i.y+=e.yPadding,V.rtl.overrideTextDirection(t,e.textDirection),this.drawTitle(i,e,t),this.drawBody(i,e,t),this.drawFooter(i,e,t),V.rtl.restoreTextDirection(t,e.textDirection),t.restore())}},handleEvent:function(t){var e,n=this,i=n._options;return n._lastActive=n._lastActive||[],"mouseout"===t.type?n._active=[]:(n._active=n._chart.getElementsAtEventForMode(t,i.mode,i),i.reverse&&n._active.reverse()),(e=!V.arrayEquals(n._active,n._lastActive))&&(n._lastActive=n._active,(i.enabled||i.custom)&&(n._eventPosition={x:t.x,y:t.y},n.update(!0),n.pivot())),e}}),We=Oe,Ye=Ne;Ye.positioners=We;var ze=V.valueOrDefault;function Ee(){return V.merge({},[].slice.call(arguments),{merger:function(t,e,n,i){if("xAxes"===t||"yAxes"===t){var a,r,o,s=n[t].length;for(e[t]||(e[t]=[]),a=0;a=e[t].length&&e[t].push({}),!e[t][a].type||o.type&&o.type!==e[t][a].type?V.merge(e[t][a],[Ce.getScaleDefaults(r),o]):V.merge(e[t][a],o)}else V._merger(t,e,n,i)}})}function Ve(){return V.merge({},[].slice.call(arguments),{merger:function(t,e,n,i){var a=e[t]||{},r=n[t];"scales"===t?e[t]=Ee(a,r):"scale"===t?e[t]=V.merge(a,[Ce.getScaleDefaults(r.type),r]):V._merger(t,e,n,i)}})}function He(t){var e=t.options;V.each(t.scales,(function(e){de.removeBox(t,e)})),e=Ve(N.global,N[t.config.type],e),t.options=t.config.options=e,t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.tooltip._options=e.tooltips,t.tooltip.initialize()}function Be(t,e,n){var i,a=function(t){return t.id===i};do{i=e+n++}while(V.findIndex(t,a)>=0);return i}function je(t){return"top"===t||"bottom"===t}function Ue(t,e){return function(n,i){return n[t]===i[t]?n[e]-i[e]:n[t]-i[t]}}N._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var Ge=function(t,e){return this.construct(t,e),this};V.extend(Ge.prototype,{construct:function(t,e){var n=this;e=function(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=Ve(N.global,N[t.type],t.options||{}),t}(e);var i=Se.acquireContext(t,e),a=i&&i.canvas,r=a&&a.height,o=a&&a.width;n.id=V.uid(),n.ctx=i,n.canvas=a,n.config=e,n.width=o,n.height=r,n.aspectRatio=r?o/r:null,n.options=e.options,n._bufferedRender=!1,n._layers=[],n.chart=n,n.controller=n,Ge.instances[n.id]=n,Object.defineProperty(n,"data",{get:function(){return n.config.data},set:function(t){n.config.data=t}}),i&&a?(n.initialize(),n.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return De.notify(t,"beforeInit"),V.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.initToolTip(),De.notify(t,"afterInit"),t},clear:function(){return V.canvas.clear(this),this},stop:function(){return X.cancelAnimation(this),this},resize:function(t){var e=this,n=e.options,i=e.canvas,a=n.maintainAspectRatio&&e.aspectRatio||null,r=Math.max(0,Math.floor(V.getMaximumWidth(i))),o=Math.max(0,Math.floor(a?r/a:V.getMaximumHeight(i)));if((e.width!==r||e.height!==o)&&(i.width=e.width=r,i.height=e.height=o,i.style.width=r+"px",i.style.height=o+"px",V.retinaScale(e,n.devicePixelRatio),!t)){var s={width:r,height:o};De.notify(e,"resize",[s]),n.onResize&&n.onResize(e,s),e.stop(),e.update({duration:n.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},n=t.scale;V.each(e.xAxes,(function(t,n){t.id||(t.id=Be(e.xAxes,"x-axis-",n))})),V.each(e.yAxes,(function(t,n){t.id||(t.id=Be(e.yAxes,"y-axis-",n))})),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,n=t.scales||{},i=[],a=Object.keys(n).reduce((function(t,e){return t[e]=!1,t}),{});e.scales&&(i=i.concat((e.scales.xAxes||[]).map((function(t){return{options:t,dtype:"category",dposition:"bottom"}})),(e.scales.yAxes||[]).map((function(t){return{options:t,dtype:"linear",dposition:"left"}})))),e.scale&&i.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),V.each(i,(function(e){var i=e.options,r=i.id,o=ze(i.type,e.dtype);je(i.position)!==je(e.dposition)&&(i.position=e.dposition),a[r]=!0;var s=null;if(r in n&&n[r].type===o)(s=n[r]).options=i,s.ctx=t.ctx,s.chart=t;else{var l=Ce.getScaleConstructor(o);if(!l)return;s=new l({id:r,type:o,options:i,ctx:t.ctx,chart:t}),n[s.id]=s}s.mergeTicksOptions(),e.isDefault&&(t.scale=s)})),V.each(a,(function(t,e){t||delete n[e]})),t.scales=n,Ce.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t,e,n=this,i=[],a=n.data.datasets;for(t=0,e=a.length;t=0;--n)this.drawDataset(e[n],t);De.notify(this,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var n={meta:t,index:t.index,easingValue:e};!1!==De.notify(this,"beforeDatasetDraw",[n])&&(t.controller.draw(e),De.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,n={tooltip:e,easingValue:t};!1!==De.notify(this,"beforeTooltipDraw",[n])&&(e.draw(),De.notify(this,"afterTooltipDraw",[n]))},getElementAtEvent:function(t){return te.modes.single(this,t)},getElementsAtEvent:function(t){return te.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return te.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,n){var i=te.modes[e];return"function"==typeof i?i(this,t,n):[]},getDatasetAtEvent:function(t){return te.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var n=e._meta[this.id];return n||(n=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e.order||0,index:t}),n},getVisibleDatasetCount:function(){for(var t=0,e=0,n=this.data.datasets.length;e3?n[2]-n[1]:n[1]-n[0];Math.abs(i)>1&&t!==Math.floor(t)&&(i=t-Math.floor(t));var a=V.log10(Math.abs(i)),r="";if(0!==t)if(Math.max(Math.abs(n[0]),Math.abs(n[n.length-1]))<1e-4){var o=V.log10(Math.abs(t)),s=Math.floor(o)-Math.floor(a);s=Math.max(Math.min(s,20),0),r=t.toExponential(s)}else{var l=-1*Math.floor(a);l=Math.max(Math.min(l,20),0),r=t.toFixed(l)}else r="0";return r},logarithmic:function(t,e,n){var i=t/Math.pow(10,Math.floor(V.log10(t)));return 0===t?"0":1===i||2===i||5===i||0===e||e===n.length-1?t.toExponential():""}}},Je=V.isArray,Qe=V.isNullOrUndef,tn=V.valueOrDefault,en=V.valueAtIndexOrDefault;function nn(t,e,n){var i,a=t.getTicks().length,r=Math.min(e,a-1),o=t.getPixelForTick(r),s=t._startPixel,l=t._endPixel;if(!(n&&(i=1===a?Math.max(o-s,l-o):0===e?(t.getPixelForTick(1)-o)/2:(o-t.getPixelForTick(r-1))/2,(o+=rl+1e-6)))return o}function an(t){return t.drawTicks?t.tickMarkLength:0}function rn(t){var e,n;return t.display?(e=V.options._parseFont(t),n=V.options.toPadding(t.padding),e.lineHeight+n.height):0}function on(t,e){return V.extend(V.options._parseFont({fontFamily:tn(e.fontFamily,t.fontFamily),fontSize:tn(e.fontSize,t.fontSize),fontStyle:tn(e.fontStyle,t.fontStyle),lineHeight:tn(e.lineHeight,t.lineHeight)}),{color:V.options.resolve([e.fontColor,t.fontColor,N.global.defaultFontColor])})}function sn(t){var e=on(t,t.minor);return{minor:e,major:t.major.enabled?on(t,t.major):e}}function ln(t){var e,n,i,a=[];for(n=0,i=t.length;n=c||d<=1||!s.isHorizontal()?s.labelRotation=h:(e=(t=s._getLabelSizes()).widest.width,n=t.highest.height-t.highest.offset,i=Math.min(s.maxWidth,s.chart.width-e),e+6>(a=l.offset?s.maxWidth/d:i/(d-1))&&(a=i/(d-(l.offset?.5:1)),r=s.maxHeight-an(l.gridLines)-u.padding-rn(l.scaleLabel),o=Math.sqrt(e*e+n*n),f=V.toDegrees(Math.min(Math.asin(Math.min((t.highest.height+6)/a,1)),Math.asin(Math.min(r/o,1))-Math.asin(n/o))),f=Math.max(h,Math.min(c,f))),s.labelRotation=f)},afterCalculateTickRotation:function(){V.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){V.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},n=t.chart,i=t.options,a=i.ticks,r=i.scaleLabel,o=i.gridLines,s=t._isVisible(),l="bottom"===i.position,u=t.isHorizontal();if(u?e.width=t.maxWidth:s&&(e.width=an(o)+rn(r)),u?s&&(e.height=an(o)+rn(r)):e.height=t.maxHeight,a.display&&s){var d=sn(a),h=t._getLabelSizes(),c=h.first,f=h.last,g=h.widest,m=h.highest,p=.4*d.minor.lineHeight,v=a.padding;if(u){var b=0!==t.labelRotation,y=V.toRadians(t.labelRotation),x=Math.cos(y),_=Math.sin(y),w=_*g.width+x*(m.height-(b?m.offset:0))+(b?0:p);e.height=Math.min(t.maxHeight,e.height+w+v);var k,M,S=t.getPixelForTick(0)-t.left,D=t.right-t.getPixelForTick(t.getTicks().length-1);b?(k=l?x*c.width+_*c.offset:_*(c.height-c.offset),M=l?_*(f.height-f.offset):x*f.width+_*f.offset):(k=c.width/2,M=f.width/2),t.paddingLeft=Math.max((k-S)*t.width/(t.width-S),0)+3,t.paddingRight=Math.max((M-D)*t.width/(t.width-D),0)+3}else{var C=a.mirror?0:g.width+v+p;e.width=Math.min(t.maxWidth,e.width+C),t.paddingTop=c.height/2,t.paddingBottom=f.height/2}}t.handleMargins(),u?(t.width=t._length=n.width-t.margins.left-t.margins.right,t.height=e.height):(t.width=e.width,t.height=t._length=n.height-t.margins.top-t.margins.bottom)},handleMargins:function(){var t=this;t.margins&&(t.margins.left=Math.max(t.paddingLeft,t.margins.left),t.margins.top=Math.max(t.paddingTop,t.margins.top),t.margins.right=Math.max(t.paddingRight,t.margins.right),t.margins.bottom=Math.max(t.paddingBottom,t.margins.bottom))},afterFit:function(){V.callback(this.options.afterFit,[this])},isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(Qe(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},_convertTicksToLabels:function(t){var e,n,i,a=this;for(a.ticks=t.map((function(t){return t.value})),a.beforeTickToLabelConversion(),e=a.convertTicksToLabels(t)||a.ticks,a.afterTickToLabelConversion(),n=0,i=t.length;ne){for(n=0;nn-1?null:this.getPixelForDecimal(t*i+(e?i/2:0))},getPixelForDecimal:function(t){return this._reversePixels&&(t=1-t),this._startPixel+t*this._length},getDecimalForPixel:function(t){var e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,n,i,a,r=this.options.ticks,o=this._length,s=r.maxTicksLimit||o/this._tickSize()+1,l=r.major.enabled?function(t){var e,n,i=[];for(e=0,n=t.length;es)return function(t,e,n){var i,a,r=0,o=e[0];for(n=Math.ceil(n),i=0;iu)return r;return Math.max(u,1)}(l,t,0,s),u>0){for(e=0,n=u-1;e1?(h-d)/(u-1):null,un(t,i,V.isNullOrUndef(a)?0:d-a,d),un(t,i,h,V.isNullOrUndef(a)?t.length:h+a),ln(t)}return un(t,i),ln(t)},_tickSize:function(){var t=this.options.ticks,e=V.toRadians(this.labelRotation),n=Math.abs(Math.cos(e)),i=Math.abs(Math.sin(e)),a=this._getLabelSizes(),r=t.autoSkipPadding||0,o=a?a.widest.width+r:0,s=a?a.highest.height+r:0;return this.isHorizontal()?s*n>o*i?o/n:s/i:s*i=0&&(o=t),void 0!==r&&(t=n.indexOf(r))>=0&&(s=t),e.minIndex=o,e.maxIndex=s,e.min=n[o],e.max=n[s]},buildTicks:function(){var t=this._getLabels(),e=this.minIndex,n=this.maxIndex;this.ticks=0===e&&n===t.length-1?t:t.slice(e,n+1)},getLabelForIndex:function(t,e){var n=this.chart;return n.getDatasetMeta(e).controller._getValueScaleId()===this.id?this.getRightValue(n.data.datasets[e].data[t]):this._getLabels()[t]},_configure:function(){var t=this,e=t.options.offset,n=t.ticks;hn.prototype._configure.call(t),t.isHorizontal()||(t._reversePixels=!t._reversePixels),n&&(t._startValue=t.minIndex-(e?.5:0),t._valueRange=Math.max(n.length-(e?0:1),1))},getPixelForValue:function(t,e,n){var i,a,r,o=this;return cn(e)||cn(n)||(t=o.chart.data.datasets[n].data[e]),cn(t)||(i=o.isHorizontal()?t.x:t.y),(void 0!==i||void 0!==t&&isNaN(e))&&(a=o._getLabels(),t=V.valueOrDefault(i,t),e=-1!==(r=a.indexOf(t))?r:e,isNaN(e)&&(e=t)),o.getPixelForDecimal((e-o._startValue)/o._valueRange)},getPixelForTick:function(t){var e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t],t+this.minIndex)},getValueForPixel:function(t){var e=Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange);return Math.min(Math.max(e,0),this.ticks.length-1)},getBasePixel:function(){return this.bottom}});fn._defaults={position:"bottom"};var gn=V.noop,mn=V.isNullOrUndef,pn=hn.extend({getRightValue:function(t){return"string"==typeof t?+t:hn.prototype.getRightValue.call(this,t)},handleTickRangeOptions:function(){var t=this,e=t.options.ticks;if(e.beginAtZero){var n=V.sign(t.min),i=V.sign(t.max);n<0&&i<0?t.max=0:n>0&&i>0&&(t.min=0)}var a=void 0!==e.min||void 0!==e.suggestedMin,r=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),a!==r&&t.min>=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this.options.ticks,n=e.stepSize,i=e.maxTicksLimit;return n?t=Math.ceil(this.max/n)-Math.floor(this.min/n)+1:(t=this._computeTickLimit(),i=i||11),i&&(t=Math.min(i,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:gn,buildTicks:function(){var t=this,e=t.options.ticks,n=t.getTickLimit(),i={maxTicks:n=Math.max(2,n),min:e.min,max:e.max,precision:e.precision,stepSize:V.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var n,i,a,r,o=[],s=t.stepSize,l=s||1,u=t.maxTicks-1,d=t.min,h=t.max,c=t.precision,f=e.min,g=e.max,m=V.niceNum((g-f)/u/l)*l;if(m<1e-14&&mn(d)&&mn(h))return[f,g];(r=Math.ceil(g/m)-Math.floor(f/m))>u&&(m=V.niceNum(r*m/u/l)*l),s||mn(c)?n=Math.pow(10,V._decimalPlaces(m)):(n=Math.pow(10,c),m=Math.ceil(m*n)/n),i=Math.floor(f/m)*m,a=Math.ceil(g/m)*m,s&&(!mn(d)&&V.almostWhole(d/m,m/1e3)&&(i=d),!mn(h)&&V.almostWhole(h/m,m/1e3)&&(a=h)),r=(a-i)/m,r=V.almostEquals(r,Math.round(r),m/1e3)?Math.round(r):Math.ceil(r),i=Math.round(i*n)/n,a=Math.round(a*n)/n,o.push(mn(d)?i:d);for(var p=1;pe.length-1?null:this.getPixelForValue(e[t])}}),_n=vn;xn._defaults=_n;var wn=V.valueOrDefault,kn=V.math.log10,Mn={position:"left",ticks:{callback:Ke.formatters.logarithmic}};function Sn(t,e){return V.isFinite(t)&&t>=0?t:e}var Dn=hn.extend({determineDataLimits:function(){var t,e,n,i,a,r,o=this,s=o.options,l=o.chart,u=l.data.datasets,d=o.isHorizontal();function h(t){return d?t.xAxisID===o.id:t.yAxisID===o.id}o.min=Number.POSITIVE_INFINITY,o.max=Number.NEGATIVE_INFINITY,o.minNotZero=Number.POSITIVE_INFINITY;var c=s.stacked;if(void 0===c)for(t=0;t0){var e=V.min(t),n=V.max(t);o.min=Math.min(o.min,e),o.max=Math.max(o.max,n)}}))}else for(t=0;t0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(kn(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,n=!t.isHorizontal(),i={min:Sn(e.min),max:Sn(e.max)},a=t.ticks=function(t,e){var n,i,a=[],r=wn(t.min,Math.pow(10,Math.floor(kn(e.min)))),o=Math.floor(kn(e.max)),s=Math.ceil(e.max/Math.pow(10,o));0===r?(n=Math.floor(kn(e.minNotZero)),i=Math.floor(e.minNotZero/Math.pow(10,n)),a.push(r),r=i*Math.pow(10,n)):(n=Math.floor(kn(r)),i=Math.floor(r/Math.pow(10,n)));var l=n<0?Math.pow(10,Math.abs(n)):1;do{a.push(r),10==++i&&(i=1,l=++n>=0?1:l),r=Math.round(i*Math.pow(10,n)*l)/l}while(ne.length-1?null:this.getPixelForValue(e[t])},_getFirstTickValue:function(t){var e=Math.floor(kn(t));return Math.floor(t/Math.pow(10,e))*Math.pow(10,e)},_configure:function(){var t=this,e=t.min,n=0;hn.prototype._configure.call(t),0===e&&(e=t._getFirstTickValue(t.minNotZero),n=wn(t.options.ticks.fontSize,N.global.defaultFontSize)/t._length),t._startValue=kn(e),t._valueOffset=n,t._valueRange=(kn(t.max)-kn(e))/(1-n)},getPixelForValue:function(t){var e=this,n=0;return(t=+e.getRightValue(t))>e.min&&t>0&&(n=(kn(t)-e._startValue)/e._valueRange+e._valueOffset),e.getPixelForDecimal(n)},getValueForPixel:function(t){var e=this,n=e.getDecimalForPixel(t);return 0===n&&0===e.min?0:Math.pow(10,e._startValue+(n-e._valueOffset)*e._valueRange)}}),Cn=Mn;Dn._defaults=Cn;var Pn=V.valueOrDefault,Tn=V.valueAtIndexOrDefault,On=V.options.resolve,An={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,borderDash:[],borderDashOffset:0},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:Ke.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(t){return t}}};function Fn(t){var e=t.ticks;return e.display&&t.display?Pn(e.fontSize,N.global.defaultFontSize)+2*e.backdropPaddingY:0}function In(t,e,n,i,a){return t===i||t===a?{start:e-n/2,end:e+n/2}:ta?{start:e-n,end:e}:{start:e,end:e+n}}function Ln(t){return 0===t||180===t?"center":t<180?"left":"right"}function Rn(t,e,n,i){var a,r,o=n.y+i/2;if(V.isArray(e))for(a=0,r=e.length;a270||t<90)&&(n.y-=e.h)}function Wn(t){return V.isNumber(t)?t:0}var Yn=pn.extend({setDimensions:function(){var t=this;t.width=t.maxWidth,t.height=t.maxHeight,t.paddingTop=Fn(t.options)/2,t.xCenter=Math.floor(t.width/2),t.yCenter=Math.floor((t.height-t.paddingTop)/2),t.drawingArea=Math.min(t.height-t.paddingTop,t.width)/2},determineDataLimits:function(){var t=this,e=t.chart,n=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY;V.each(e.data.datasets,(function(a,r){if(e.isDatasetVisible(r)){var o=e.getDatasetMeta(r);V.each(a.data,(function(e,a){var r=+t.getRightValue(e);isNaN(r)||o.data[a].hidden||(n=Math.min(r,n),i=Math.max(r,i))}))}})),t.min=n===Number.POSITIVE_INFINITY?0:n,t.max=i===Number.NEGATIVE_INFINITY?0:i,t.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/Fn(this.options))},convertTicksToLabels:function(){var t=this;pn.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map((function(){var e=V.callback(t.options.pointLabels.callback,arguments,t);return e||0===e?e:""}))},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){var t=this.options;t.display&&t.pointLabels.display?function(t){var e,n,i,a=V.options._parseFont(t.options.pointLabels),r={l:0,r:t.width,t:0,b:t.height-t.paddingTop},o={};t.ctx.font=a.string,t._pointLabelSizes=[];var s,l,u,d=t.chart.data.labels.length;for(e=0;er.r&&(r.r=f.end,o.r=h),g.startr.b&&(r.b=g.end,o.b=h)}t.setReductions(t.drawingArea,r,o)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(t,e,n){var i=this,a=e.l/Math.sin(n.l),r=Math.max(e.r-i.width,0)/Math.sin(n.r),o=-e.t/Math.cos(n.t),s=-Math.max(e.b-(i.height-i.paddingTop),0)/Math.cos(n.b);a=Wn(a),r=Wn(r),o=Wn(o),s=Wn(s),i.drawingArea=Math.min(Math.floor(t-(a+r)/2),Math.floor(t-(o+s)/2)),i.setCenterPoint(a,r,o,s)},setCenterPoint:function(t,e,n,i){var a=this,r=a.width-e-a.drawingArea,o=t+a.drawingArea,s=n+a.drawingArea,l=a.height-a.paddingTop-i-a.drawingArea;a.xCenter=Math.floor((o+r)/2+a.left),a.yCenter=Math.floor((s+l)/2+a.top+a.paddingTop)},getIndexAngle:function(t){var e=this.chart,n=(t*(360/e.data.labels.length)+((e.options||{}).startAngle||0))%360;return(n<0?n+360:n)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(V.isNullOrUndef(t))return NaN;var n=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*n:(t-e.min)*n},getPointPosition:function(t,e){var n=this.getIndexAngle(t)-Math.PI/2;return{x:Math.cos(n)*e+this.xCenter,y:Math.sin(n)*e+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(t){var e=this.min,n=this.max;return this.getPointPositionForValue(t||0,this.beginAtZero?0:e<0&&n<0?n:e>0&&n>0?e:0)},_drawGrid:function(){var t,e,n,i=this,a=i.ctx,r=i.options,o=r.gridLines,s=r.angleLines,l=Pn(s.lineWidth,o.lineWidth),u=Pn(s.color,o.color);if(r.pointLabels.display&&function(t){var e=t.ctx,n=t.options,i=n.pointLabels,a=Fn(n),r=t.getDistanceFromCenterForValue(n.ticks.reverse?t.min:t.max),o=V.options._parseFont(i);e.save(),e.font=o.string,e.textBaseline="middle";for(var s=t.chart.data.labels.length-1;s>=0;s--){var l=0===s?a/2:0,u=t.getPointPosition(s,r+l+5),d=Tn(i.fontColor,s,N.global.defaultFontColor);e.fillStyle=d;var h=t.getIndexAngle(s),c=V.toDegrees(h);e.textAlign=Ln(c),Nn(c,t._pointLabelSizes[s],u),Rn(e,t.pointLabels[s],u,o.lineHeight)}e.restore()}(i),o.display&&V.each(i.ticks,(function(t,n){0!==n&&(e=i.getDistanceFromCenterForValue(i.ticksAsNumbers[n]),function(t,e,n,i){var a,r=t.ctx,o=e.circular,s=t.chart.data.labels.length,l=Tn(e.color,i-1),u=Tn(e.lineWidth,i-1);if((o||s)&&l&&u){if(r.save(),r.strokeStyle=l,r.lineWidth=u,r.setLineDash&&(r.setLineDash(e.borderDash||[]),r.lineDashOffset=e.borderDashOffset||0),r.beginPath(),o)r.arc(t.xCenter,t.yCenter,n,0,2*Math.PI);else{a=t.getPointPosition(0,n),r.moveTo(a.x,a.y);for(var d=1;d=0;t--)e=i.getDistanceFromCenterForValue(r.ticks.reverse?i.min:i.max),n=i.getPointPosition(t,e),a.beginPath(),a.moveTo(i.xCenter,i.yCenter),a.lineTo(n.x,n.y),a.stroke();a.restore()}},_drawLabels:function(){var t=this,e=t.ctx,n=t.options.ticks;if(n.display){var i,a,r=t.getIndexAngle(0),o=V.options._parseFont(n),s=Pn(n.fontColor,N.global.defaultFontColor);e.save(),e.font=o.string,e.translate(t.xCenter,t.yCenter),e.rotate(r),e.textAlign="center",e.textBaseline="middle",V.each(t.ticks,(function(r,l){(0!==l||n.reverse)&&(i=t.getDistanceFromCenterForValue(t.ticksAsNumbers[l]),n.showLabelBackdrop&&(a=e.measureText(r).width,e.fillStyle=n.backdropColor,e.fillRect(-a/2-n.backdropPaddingX,-i-o.size/2-n.backdropPaddingY,a+2*n.backdropPaddingX,o.size+2*n.backdropPaddingY)),e.fillStyle=s,e.fillText(r,0,-i))})),e.restore()}},_drawTitle:V.noop}),zn=An;Yn._defaults=zn;var En=V._deprecated,Vn=V.options.resolve,Hn=V.valueOrDefault,Bn=Number.MIN_SAFE_INTEGER||-9007199254740991,jn=Number.MAX_SAFE_INTEGER||9007199254740991,Un={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},Gn=Object.keys(Un);function qn(t,e){return t-e}function Zn(t){return V.valueOrDefault(t.time.min,t.ticks.min)}function $n(t){return V.valueOrDefault(t.time.max,t.ticks.max)}function Xn(t,e,n,i){var a=function(t,e,n){for(var i,a,r,o=0,s=t.length-1;o>=0&&o<=s;){if(a=t[(i=o+s>>1)-1]||null,r=t[i],!a)return{lo:null,hi:r};if(r[e]n))return{lo:a,hi:r};s=i-1}}return{lo:r,hi:null}}(t,e,n),r=a.lo?a.hi?a.lo:t[t.length-2]:t[0],o=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=o[e]-r[e],l=s?(n-r[e])/s:0,u=(o[i]-r[i])*l;return r[i]+u}function Kn(t,e){var n=t._adapter,i=t.options.time,a=i.parser,r=a||i.format,o=e;return"function"==typeof a&&(o=a(o)),V.isFinite(o)||(o="string"==typeof r?n.parse(o,r):n.parse(o)),null!==o?+o:(a||"function"!=typeof r||(o=r(e),V.isFinite(o)||(o=n.parse(o))),o)}function Jn(t,e){if(V.isNullOrUndef(e))return null;var n=t.options.time,i=Kn(t,t.getRightValue(e));return null===i||n.round&&(i=+t._adapter.startOf(i,n.round)),i}function Qn(t,e,n,i){var a,r,o,s=Gn.length;for(a=Gn.indexOf(t);a=0&&(e[r].major=!0);return e}(t,r,o,n):r}var ei=hn.extend({initialize:function(){this.mergeTicksOptions(),hn.prototype.initialize.call(this)},update:function(){var t=this,e=t.options,n=e.time||(e.time={}),i=t._adapter=new Xe._date(e.adapters.date);return En("time scale",n.format,"time.format","time.parser"),En("time scale",n.min,"time.min","ticks.min"),En("time scale",n.max,"time.max","ticks.max"),V.mergeIf(n.displayFormats,i.formats()),hn.prototype.update.apply(t,arguments)},getRightValue:function(t){return t&&void 0!==t.t&&(t=t.t),hn.prototype.getRightValue.call(this,t)},determineDataLimits:function(){var t,e,n,i,a,r,o,s=this,l=s.chart,u=s._adapter,d=s.options,h=d.time.unit||"day",c=jn,f=Bn,g=[],m=[],p=[],v=s._getLabels();for(t=0,n=v.length;t1?function(t){var e,n,i,a={},r=[];for(e=0,n=t.length;e1e5*u)throw e+" and "+n+" are too far apart with stepSize of "+u+" "+l;for(a=h;a=a&&n<=r&&d.push(n);return i.min=a,i.max=r,i._unit=l.unit||(s.autoSkip?Qn(l.minUnit,i.min,i.max,h):function(t,e,n,i,a){var r,o;for(r=Gn.length-1;r>=Gn.indexOf(n);r--)if(o=Gn[r],Un[o].common&&t._adapter.diff(a,i,o)>=e-1)return o;return Gn[n?Gn.indexOf(n):0]}(i,d.length,l.minUnit,i.min,i.max)),i._majorUnit=s.major.enabled&&"year"!==i._unit?function(t){for(var e=Gn.indexOf(t)+1,n=Gn.length;ee&&s=0&&t0?s:1}});ei._defaults={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};var ni={category:fn,linear:xn,logarithmic:Dn,radialLinear:Yn,time:ei},ii=t((function(t,e){t.exports=function(){var e,n;function i(){return e.apply(null,arguments)}function a(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function r(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function o(t){return void 0===t}function s(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function l(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function u(t,e){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+i}var z=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,E=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,V={},H={};function B(t,e,n,i){var a=i;"string"==typeof i&&(a=function(){return this[i]()}),t&&(H[t]=a),e&&(H[e[0]]=function(){return Y(a.apply(this,arguments),e[1],e[2])}),n&&(H[n]=function(){return this.localeData().ordinal(a.apply(this,arguments),t)})}function j(t,e){return t.isValid()?(e=U(e,t.localeData()),V[e]=V[e]||function(t){var e,n,i,a=t.match(z);for(e=0,n=a.length;e=0&&E.test(t);)t=t.replace(E,i),E.lastIndex=0,n-=1;return t}var G=/\d/,q=/\d\d/,Z=/\d{3}/,$=/\d{4}/,X=/[+-]?\d{6}/,K=/\d\d?/,J=/\d\d\d\d?/,Q=/\d\d\d\d\d\d?/,tt=/\d{1,3}/,et=/\d{1,4}/,nt=/[+-]?\d{1,6}/,it=/\d+/,at=/[+-]?\d+/,rt=/Z|[+-]\d\d:?\d\d/gi,ot=/Z|[+-]\d\d(?::?\d\d)?/gi,st=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,lt={};function ut(t,e,n){lt[t]=T(e)?e:function(t,i){return t&&n?n:e}}function dt(t,e){return d(lt,t)?lt[t](e._strict,e._locale):new RegExp(ht(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(t,e,n,i,a){return e||n||i||a}))))}function ht(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var ct={};function ft(t,e){var n,i=e;for("string"==typeof t&&(t=[t]),s(e)&&(i=function(t,n){n[e]=w(t)}),n=0;n68?1900:2e3)};var bt,yt=xt("FullYear",!0);function xt(t,e){return function(n){return null!=n?(wt(this,t,n),i.updateOffset(this,e),this):_t(this,t)}}function _t(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function wt(t,e,n){t.isValid()&&!isNaN(n)&&("FullYear"===e&&vt(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](n,t.month(),kt(n,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](n))}function kt(t,e){if(isNaN(t)||isNaN(e))return NaN;var n=function(t,e){return(t%12+12)%12}(e);return t+=(e-n)/12,1===n?vt(t)?29:28:31-n%7%2}bt=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0?(s=new Date(t+400,e,n,i,a,r,o),isFinite(s.getFullYear())&&s.setFullYear(t)):s=new Date(t,e,n,i,a,r,o),s}function Lt(t){var e;if(t<100&&t>=0){var n=Array.prototype.slice.call(arguments);n[0]=t+400,e=new Date(Date.UTC.apply(null,n)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Rt(t,e,n){var i=7+e-n;return-(7+Lt(t,0,i).getUTCDay()-e)%7+i-1}function Nt(t,e,n,i,a){var r,o,s=1+7*(e-1)+(7+n-i)%7+Rt(t,i,a);return s<=0?o=pt(r=t-1)+s:s>pt(t)?(r=t+1,o=s-pt(t)):(r=t,o=s),{year:r,dayOfYear:o}}function Wt(t,e,n){var i,a,r=Rt(t.year(),e,n),o=Math.floor((t.dayOfYear()-r-1)/7)+1;return o<1?i=o+Yt(a=t.year()-1,e,n):o>Yt(t.year(),e,n)?(i=o-Yt(t.year(),e,n),a=t.year()+1):(a=t.year(),i=o),{week:i,year:a}}function Yt(t,e,n){var i=Rt(t,e,n),a=Rt(t+1,e,n);return(pt(t)-i+a)/7}function zt(t,e){return t.slice(e,7).concat(t.slice(0,e))}B("w",["ww",2],"wo","week"),B("W",["WW",2],"Wo","isoWeek"),I("week","w"),I("isoWeek","W"),W("week",5),W("isoWeek",5),ut("w",K),ut("ww",K,q),ut("W",K),ut("WW",K,q),gt(["w","ww","W","WW"],(function(t,e,n,i){e[i.substr(0,1)]=w(t)})),B("d",0,"do","day"),B("dd",0,0,(function(t){return this.localeData().weekdaysMin(this,t)})),B("ddd",0,0,(function(t){return this.localeData().weekdaysShort(this,t)})),B("dddd",0,0,(function(t){return this.localeData().weekdays(this,t)})),B("e",0,0,"weekday"),B("E",0,0,"isoWeekday"),I("day","d"),I("weekday","e"),I("isoWeekday","E"),W("day",11),W("weekday",11),W("isoWeekday",11),ut("d",K),ut("e",K),ut("E",K),ut("dd",(function(t,e){return e.weekdaysMinRegex(t)})),ut("ddd",(function(t,e){return e.weekdaysShortRegex(t)})),ut("dddd",(function(t,e){return e.weekdaysRegex(t)})),gt(["dd","ddd","dddd"],(function(t,e,n,i){var a=n._locale.weekdaysParse(t,i,n._strict);null!=a?e.d=a:f(n).invalidWeekday=t})),gt(["d","e","E"],(function(t,e,n,i){e[i]=w(t)}));var Et="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Vt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Ht="Su_Mo_Tu_We_Th_Fr_Sa".split("_");function Bt(t,e,n){var i,a,r,o=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)r=c([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===e?-1!==(a=bt.call(this._weekdaysParse,o))?a:null:"ddd"===e?-1!==(a=bt.call(this._shortWeekdaysParse,o))?a:null:-1!==(a=bt.call(this._minWeekdaysParse,o))?a:null:"dddd"===e?-1!==(a=bt.call(this._weekdaysParse,o))||-1!==(a=bt.call(this._shortWeekdaysParse,o))||-1!==(a=bt.call(this._minWeekdaysParse,o))?a:null:"ddd"===e?-1!==(a=bt.call(this._shortWeekdaysParse,o))||-1!==(a=bt.call(this._weekdaysParse,o))||-1!==(a=bt.call(this._minWeekdaysParse,o))?a:null:-1!==(a=bt.call(this._minWeekdaysParse,o))||-1!==(a=bt.call(this._weekdaysParse,o))||-1!==(a=bt.call(this._shortWeekdaysParse,o))?a:null}var jt=st,Ut=st,Gt=st;function qt(){function t(t,e){return e.length-t.length}var e,n,i,a,r,o=[],s=[],l=[],u=[];for(e=0;e<7;e++)n=c([2e3,1]).day(e),i=this.weekdaysMin(n,""),a=this.weekdaysShort(n,""),r=this.weekdays(n,""),o.push(i),s.push(a),l.push(r),u.push(i),u.push(a),u.push(r);for(o.sort(t),s.sort(t),l.sort(t),u.sort(t),e=0;e<7;e++)s[e]=ht(s[e]),l[e]=ht(l[e]),u[e]=ht(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Zt(){return this.hours()%12||12}function $t(t,e){B(t,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)}))}function Xt(t,e){return e._meridiemParse}B("H",["HH",2],0,"hour"),B("h",["hh",2],0,Zt),B("k",["kk",2],0,(function(){return this.hours()||24})),B("hmm",0,0,(function(){return""+Zt.apply(this)+Y(this.minutes(),2)})),B("hmmss",0,0,(function(){return""+Zt.apply(this)+Y(this.minutes(),2)+Y(this.seconds(),2)})),B("Hmm",0,0,(function(){return""+this.hours()+Y(this.minutes(),2)})),B("Hmmss",0,0,(function(){return""+this.hours()+Y(this.minutes(),2)+Y(this.seconds(),2)})),$t("a",!0),$t("A",!1),I("hour","h"),W("hour",13),ut("a",Xt),ut("A",Xt),ut("H",K),ut("h",K),ut("k",K),ut("HH",K,q),ut("hh",K,q),ut("kk",K,q),ut("hmm",J),ut("hmmss",Q),ut("Hmm",J),ut("Hmmss",Q),ft(["H","HH"],3),ft(["k","kk"],(function(t,e,n){var i=w(t);e[3]=24===i?0:i})),ft(["a","A"],(function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t})),ft(["h","hh"],(function(t,e,n){e[3]=w(t),f(n).bigHour=!0})),ft("hmm",(function(t,e,n){var i=t.length-2;e[3]=w(t.substr(0,i)),e[4]=w(t.substr(i)),f(n).bigHour=!0})),ft("hmmss",(function(t,e,n){var i=t.length-4,a=t.length-2;e[3]=w(t.substr(0,i)),e[4]=w(t.substr(i,2)),e[5]=w(t.substr(a)),f(n).bigHour=!0})),ft("Hmm",(function(t,e,n){var i=t.length-2;e[3]=w(t.substr(0,i)),e[4]=w(t.substr(i))})),ft("Hmmss",(function(t,e,n){var i=t.length-4,a=t.length-2;e[3]=w(t.substr(0,i)),e[4]=w(t.substr(i,2)),e[5]=w(t.substr(a))}));var Kt,Jt=xt("Hours",!0),Qt={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:St,monthsShort:Dt,week:{dow:0,doy:6},weekdays:Et,weekdaysMin:Ht,weekdaysShort:Vt,meridiemParse:/[ap]\.?m?\.?/i},te={},ee={};function ne(t){return t?t.toLowerCase().replace("_","-"):t}function ie(e){var n=null;if(!te[e]&&t&&t.exports)try{n=Kt._abbr,function(){throw new Error("Dynamic requires are not currently supported by rollup-plugin-commonjs")}(),ae(n)}catch(t){}return te[e]}function ae(t,e){var n;return t&&((n=o(e)?oe(t):re(t,e))?Kt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),Kt._abbr}function re(t,e){if(null!==e){var n,i=Qt;if(e.abbr=t,null!=te[t])P("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=te[t]._config;else if(null!=e.parentLocale)if(null!=te[e.parentLocale])i=te[e.parentLocale]._config;else{if(null==(n=ie(e.parentLocale)))return ee[e.parentLocale]||(ee[e.parentLocale]=[]),ee[e.parentLocale].push({name:t,config:e}),null;i=n._config}return te[t]=new A(O(i,e)),ee[t]&&ee[t].forEach((function(t){re(t.name,t.config)})),ae(t),te[t]}return delete te[t],null}function oe(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return Kt;if(!a(t)){if(e=ie(t))return e;t=[t]}return function(t){for(var e,n,i,a,r=0;r0;){if(i=ie(a.slice(0,e).join("-")))return i;if(n&&n.length>=e&&k(a,n,!0)>=e-1)break;e--}r++}return Kt}(t)}function se(t){var e,n=t._a;return n&&-2===f(t).overflow&&(e=n[1]<0||n[1]>11?1:n[2]<1||n[2]>kt(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,f(t)._overflowDayOfYear&&(e<0||e>2)&&(e=2),f(t)._overflowWeeks&&-1===e&&(e=7),f(t)._overflowWeekday&&-1===e&&(e=8),f(t).overflow=e),t}function le(t,e,n){return null!=t?t:null!=e?e:n}function ue(t){var e,n,a,r,o,s=[];if(!t._d){for(a=function(t){var e=new Date(i.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[2]&&null==t._a[1]&&function(t){var e,n,i,a,r,o,s,l;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)r=1,o=4,n=le(e.GG,t._a[0],Wt(Me(),1,4).year),i=le(e.W,1),((a=le(e.E,1))<1||a>7)&&(l=!0);else{r=t._locale._week.dow,o=t._locale._week.doy;var u=Wt(Me(),r,o);n=le(e.gg,t._a[0],u.year),i=le(e.w,u.week),null!=e.d?((a=e.d)<0||a>6)&&(l=!0):null!=e.e?(a=e.e+r,(e.e<0||e.e>6)&&(l=!0)):a=r}i<1||i>Yt(n,r,o)?f(t)._overflowWeeks=!0:null!=l?f(t)._overflowWeekday=!0:(s=Nt(n,i,a,r,o),t._a[0]=s.year,t._dayOfYear=s.dayOfYear)}(t),null!=t._dayOfYear&&(o=le(t._a[0],a[0]),(t._dayOfYear>pt(o)||0===t._dayOfYear)&&(f(t)._overflowDayOfYear=!0),n=Lt(o,0,t._dayOfYear),t._a[1]=n.getUTCMonth(),t._a[2]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=a[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[3]&&0===t._a[4]&&0===t._a[5]&&0===t._a[6]&&(t._nextDay=!0,t._a[3]=0),t._d=(t._useUTC?Lt:It).apply(null,s),r=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[3]=24),t._w&&void 0!==t._w.d&&t._w.d!==r&&(f(t).weekdayMismatch=!0)}}var de=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,he=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ce=/Z|[+-]\d\d(?::?\d\d)?/,fe=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],ge=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],me=/^\/?Date\((\-?\d+)/i;function pe(t){var e,n,i,a,r,o,s=t._i,l=de.exec(s)||he.exec(s);if(l){for(f(t).iso=!0,e=0,n=fe.length;e0&&f(t).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),u+=n.length),H[r]?(n?f(t).empty=!1:f(t).unusedTokens.push(r),mt(r,n,t)):t._strict&&!n&&f(t).unusedTokens.push(r);f(t).charsLeftOver=l-u,s.length>0&&f(t).unusedInput.push(s),t._a[3]<=12&&!0===f(t).bigHour&&t._a[3]>0&&(f(t).bigHour=void 0),f(t).parsedDateParts=t._a.slice(0),f(t).meridiem=t._meridiem,t._a[3]=function(t,e,n){var i;return null==n?e:null!=t.meridiemHour?t.meridiemHour(e,n):null!=t.isPM?((i=t.isPM(n))&&e<12&&(e+=12),i||12!==e||(e=0),e):e}(t._locale,t._a[3],t._meridiem),ue(t),se(t)}else xe(t);else pe(t)}function we(t){var e=t._i,n=t._f;return t._locale=t._locale||oe(t._l),null===e||void 0===n&&""===e?m({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),x(e)?new y(se(e)):(l(e)?t._d=e:a(n)?function(t){var e,n,i,a,r;if(0===t._f.length)return f(t).invalidFormat=!0,void(t._d=new Date(NaN));for(a=0;athis?this:t:m()}));function Ce(t,e){var n,i;if(1===e.length&&a(e[0])&&(e=e[0]),!e.length)return Me();for(n=e[0],i=1;i=0?new Date(t+400,e,n)-Qe:new Date(t,e,n).valueOf()}function nn(t,e,n){return t<100&&t>=0?Date.UTC(t+400,e,n)-Qe:Date.UTC(t,e,n)}function an(t,e){B(0,[t,t.length],0,e)}function rn(t,e,n,i,a){var r;return null==t?Wt(this,i,a).year:(e>(r=Yt(t,i,a))&&(e=r),on.call(this,t,e,n,i,a))}function on(t,e,n,i,a){var r=Nt(t,e,n,i,a),o=Lt(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}B(0,["gg",2],0,(function(){return this.weekYear()%100})),B(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),an("gggg","weekYear"),an("ggggg","weekYear"),an("GGGG","isoWeekYear"),an("GGGGG","isoWeekYear"),I("weekYear","gg"),I("isoWeekYear","GG"),W("weekYear",1),W("isoWeekYear",1),ut("G",at),ut("g",at),ut("GG",K,q),ut("gg",K,q),ut("GGGG",et,$),ut("gggg",et,$),ut("GGGGG",nt,X),ut("ggggg",nt,X),gt(["gggg","ggggg","GGGG","GGGGG"],(function(t,e,n,i){e[i.substr(0,2)]=w(t)})),gt(["gg","GG"],(function(t,e,n,a){e[a]=i.parseTwoDigitYear(t)})),B("Q",0,"Qo","quarter"),I("quarter","Q"),W("quarter",7),ut("Q",G),ft("Q",(function(t,e){e[1]=3*(w(t)-1)})),B("D",["DD",2],"Do","date"),I("date","D"),W("date",9),ut("D",K),ut("DD",K,q),ut("Do",(function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient})),ft(["D","DD"],2),ft("Do",(function(t,e){e[2]=w(t.match(K)[0])}));var sn=xt("Date",!0);B("DDD",["DDDD",3],"DDDo","dayOfYear"),I("dayOfYear","DDD"),W("dayOfYear",4),ut("DDD",tt),ut("DDDD",Z),ft(["DDD","DDDD"],(function(t,e,n){n._dayOfYear=w(t)})),B("m",["mm",2],0,"minute"),I("minute","m"),W("minute",14),ut("m",K),ut("mm",K,q),ft(["m","mm"],4);var ln=xt("Minutes",!1);B("s",["ss",2],0,"second"),I("second","s"),W("second",15),ut("s",K),ut("ss",K,q),ft(["s","ss"],5);var un,dn=xt("Seconds",!1);for(B("S",0,0,(function(){return~~(this.millisecond()/100)})),B(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),B(0,["SSS",3],0,"millisecond"),B(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),B(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),B(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),B(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),B(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),B(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),I("millisecond","ms"),W("millisecond",16),ut("S",tt,G),ut("SS",tt,q),ut("SSS",tt,Z),un="SSSS";un.length<=9;un+="S")ut(un,it);function hn(t,e){e[6]=w(1e3*("0."+t))}for(un="S";un.length<=9;un+="S")ft(un,hn);var cn=xt("Milliseconds",!1);B("z",0,0,"zoneAbbr"),B("zz",0,0,"zoneName");var fn=y.prototype;function gn(t){return t}fn.add=Ue,fn.calendar=function(t,e){var n=t||Me(),a=Re(n,this).startOf("day"),r=i.calendarFormat(this,a)||"sameElse",o=e&&(T(e[r])?e[r].call(this,n):e[r]);return this.format(o||this.localeData().calendar(r,this,Me(n)))},fn.clone=function(){return new y(this)},fn.diff=function(t,e,n){var i,a,r;if(!this.isValid())return NaN;if(!(i=Re(t,this)).isValid())return NaN;switch(a=6e4*(i.utcOffset()-this.utcOffset()),e=L(e)){case"year":r=qe(this,i)/12;break;case"month":r=qe(this,i);break;case"quarter":r=qe(this,i)/3;break;case"second":r=(this-i)/1e3;break;case"minute":r=(this-i)/6e4;break;case"hour":r=(this-i)/36e5;break;case"day":r=(this-i-a)/864e5;break;case"week":r=(this-i-a)/6048e5;break;default:r=this-i}return n?r:_(r)},fn.endOf=function(t){var e;if(void 0===(t=L(t))||"millisecond"===t||!this.isValid())return this;var n=this._isUTC?nn:en;switch(t){case"year":e=n(this.year()+1,0,1)-1;break;case"quarter":e=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=n(this.year(),this.month()+1,1)-1;break;case"week":e=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=Je-tn(e+(this._isUTC?0:this.utcOffset()*Ke),Je)-1;break;case"minute":e=this._d.valueOf(),e+=Ke-tn(e,Ke)-1;break;case"second":e=this._d.valueOf(),e+=1e3-tn(e,1e3)-1}return this._d.setTime(e),i.updateOffset(this,!0),this},fn.format=function(t){t||(t=this.isUtc()?i.defaultFormatUtc:i.defaultFormat);var e=j(this,t);return this.localeData().postformat(e)},fn.from=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Me(t).isValid())?Ee({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},fn.fromNow=function(t){return this.from(Me(),t)},fn.to=function(t,e){return this.isValid()&&(x(t)&&t.isValid()||Me(t).isValid())?Ee({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},fn.toNow=function(t){return this.to(Me(),t)},fn.get=function(t){return T(this[t=L(t)])?this[t]():this},fn.invalidAt=function(){return f(this).overflow},fn.isAfter=function(t,e){var n=x(t)?t:Me(t);return!(!this.isValid()||!n.isValid())&&("millisecond"===(e=L(e)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?j(n,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):T(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",j(n,"Z")):j(n,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},fn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var n="["+t+'("]',i=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",a=e+'[")]';return this.format(n+i+"-MM-DD[T]HH:mm:ss.SSS"+a)},fn.toJSON=function(){return this.isValid()?this.toISOString():null},fn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},fn.unix=function(){return Math.floor(this.valueOf()/1e3)},fn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},fn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},fn.year=yt,fn.isLeapYear=function(){return vt(this.year())},fn.weekYear=function(t){return rn.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},fn.isoWeekYear=function(t){return rn.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},fn.quarter=fn.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},fn.month=Tt,fn.daysInMonth=function(){return kt(this.year(),this.month())},fn.week=fn.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},fn.isoWeek=fn.isoWeeks=function(t){var e=Wt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},fn.weeksInYear=function(){var t=this.localeData()._week;return Yt(this.year(),t.dow,t.doy)},fn.isoWeeksInYear=function(){return Yt(this.year(),1,4)},fn.date=sn,fn.day=fn.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},fn.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},fn.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},fn.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},fn.hour=fn.hours=Jt,fn.minute=fn.minutes=ln,fn.second=fn.seconds=dn,fn.millisecond=fn.milliseconds=cn,fn.utcOffset=function(t,e,n){var a,r=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=Le(ot,t)))return this}else Math.abs(t)<16&&!n&&(t*=60);return!this._isUTC&&e&&(a=Ne(this)),this._offset=t,this._isUTC=!0,null!=a&&this.add(a,"m"),r!==t&&(!e||this._changeInProgress?je(this,Ee(t-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,i.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Ne(this)},fn.utc=function(t){return this.utcOffset(0,t)},fn.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Ne(this),"m")),this},fn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=Le(rt,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},fn.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Me(t).utcOffset():0,(this.utcOffset()-t)%60==0)},fn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},fn.isLocal=function(){return!!this.isValid()&&!this._isUTC},fn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},fn.isUtc=We,fn.isUTC=We,fn.zoneAbbr=function(){return this._isUTC?"UTC":""},fn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},fn.dates=S("dates accessor is deprecated. Use date instead.",sn),fn.months=S("months accessor is deprecated. Use month instead",Tt),fn.years=S("years accessor is deprecated. Use year instead",yt),fn.zone=S("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()})),fn.isDSTShifted=S("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!o(this._isDSTShifted))return this._isDSTShifted;var t={};if(v(t,this),(t=we(t))._a){var e=t._isUTC?c(t._a):Me(t._a);this._isDSTShifted=this.isValid()&&k(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var mn=A.prototype;function pn(t,e,n,i){var a=oe(),r=c().set(i,e);return a[n](r,t)}function vn(t,e,n){if(s(t)&&(e=t,t=void 0),t=t||"",null!=e)return pn(t,e,n,"month");var i,a=[];for(i=0;i<12;i++)a[i]=pn(t,i,n,"month");return a}function bn(t,e,n,i){"boolean"==typeof t?(s(e)&&(n=e,e=void 0),e=e||""):(n=e=t,t=!1,s(e)&&(n=e,e=void 0),e=e||"");var a,r=oe(),o=t?r._week.dow:0;if(null!=n)return pn(e,(n+o)%7,i,"day");var l=[];for(a=0;a<7;a++)l[a]=pn(e,(a+o)%7,i,"day");return l}mn.calendar=function(t,e,n){var i=this._calendar[t]||this._calendar.sameElse;return T(i)?i.call(e,n):i},mn.longDateFormat=function(t){var e=this._longDateFormat[t],n=this._longDateFormat[t.toUpperCase()];return e||!n?e:(this._longDateFormat[t]=n.replace(/MMMM|MM|DD|dddd/g,(function(t){return t.slice(1)})),this._longDateFormat[t])},mn.invalidDate=function(){return this._invalidDate},mn.ordinal=function(t){return this._ordinal.replace("%d",t)},mn.preparse=gn,mn.postformat=gn,mn.relativeTime=function(t,e,n,i){var a=this._relativeTime[n];return T(a)?a(t,e,n,i):a.replace(/%d/i,t)},mn.pastFuture=function(t,e){var n=this._relativeTime[t>0?"future":"past"];return T(n)?n(e):n.replace(/%s/i,e)},mn.set=function(t){var e,n;for(n in t)T(e=t[n])?this[n]=e:this["_"+n]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},mn.months=function(t,e){return t?a(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Mt).test(e)?"format":"standalone"][t.month()]:a(this._months)?this._months:this._months.standalone},mn.monthsShort=function(t,e){return t?a(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Mt.test(e)?"format":"standalone"][t.month()]:a(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},mn.monthsParse=function(t,e,n){var i,a,r;if(this._monthsParseExact)return Ct.call(this,t,e,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(a=c([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp("^"+this.months(a,"").replace(".","")+"$","i"),this._shortMonthsParse[i]=new RegExp("^"+this.monthsShort(a,"").replace(".","")+"$","i")),n||this._monthsParse[i]||(r="^"+this.months(a,"")+"|^"+this.monthsShort(a,""),this._monthsParse[i]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===e&&this._longMonthsParse[i].test(t))return i;if(n&&"MMM"===e&&this._shortMonthsParse[i].test(t))return i;if(!n&&this._monthsParse[i].test(t))return i}},mn.monthsRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Ft.call(this),t?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=At),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},mn.monthsShortRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Ft.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=Ot),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},mn.week=function(t){return Wt(t,this._week.dow,this._week.doy).week},mn.firstDayOfYear=function(){return this._week.doy},mn.firstDayOfWeek=function(){return this._week.dow},mn.weekdays=function(t,e){var n=a(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?zt(n,this._week.dow):t?n[t.day()]:n},mn.weekdaysMin=function(t){return!0===t?zt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},mn.weekdaysShort=function(t){return!0===t?zt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},mn.weekdaysParse=function(t,e,n){var i,a,r;if(this._weekdaysParseExact)return Bt.call(this,t,e,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(a=c([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[i]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[i]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[i]||(r="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[i]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===e&&this._fullWeekdaysParse[i].test(t))return i;if(n&&"ddd"===e&&this._shortWeekdaysParse[i].test(t))return i;if(n&&"dd"===e&&this._minWeekdaysParse[i].test(t))return i;if(!n&&this._weekdaysParse[i].test(t))return i}},mn.weekdaysRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||qt.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=jt),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},mn.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||qt.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ut),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},mn.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||qt.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Gt),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},mn.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},mn.meridiem=function(t,e,n){return t>11?n?"pm":"PM":n?"am":"AM"},ae("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===w(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),i.lang=S("moment.lang is deprecated. Use moment.locale instead.",ae),i.langData=S("moment.langData is deprecated. Use moment.localeData instead.",oe);var yn=Math.abs;function xn(t,e,n,i){var a=Ee(e,n);return t._milliseconds+=i*a._milliseconds,t._days+=i*a._days,t._months+=i*a._months,t._bubble()}function _n(t){return t<0?Math.floor(t):Math.ceil(t)}function wn(t){return 4800*t/146097}function kn(t){return 146097*t/4800}function Mn(t){return function(){return this.as(t)}}var Sn=Mn("ms"),Dn=Mn("s"),Cn=Mn("m"),Pn=Mn("h"),Tn=Mn("d"),On=Mn("w"),An=Mn("M"),Fn=Mn("Q"),In=Mn("y");function Ln(t){return function(){return this.isValid()?this._data[t]:NaN}}var Rn=Ln("milliseconds"),Nn=Ln("seconds"),Wn=Ln("minutes"),Yn=Ln("hours"),zn=Ln("days"),En=Ln("months"),Vn=Ln("years"),Hn=Math.round,Bn={ss:44,s:45,m:45,h:22,d:26,M:11};function jn(t,e,n,i,a){return a.relativeTime(e||1,!!n,t,i)}var Un=Math.abs;function Gn(t){return(t>0)-(t<0)||+t}function qn(){if(!this.isValid())return this.localeData().invalidDate();var t,e,n=Un(this._milliseconds)/1e3,i=Un(this._days),a=Un(this._months);t=_(n/60),e=_(t/60),n%=60,t%=60;var r=_(a/12),o=a%=12,s=i,l=e,u=t,d=n?n.toFixed(3).replace(/\.?0+$/,""):"",h=this.asSeconds();if(!h)return"P0D";var c=h<0?"-":"",f=Gn(this._months)!==Gn(h)?"-":"",g=Gn(this._days)!==Gn(h)?"-":"",m=Gn(this._milliseconds)!==Gn(h)?"-":"";return c+"P"+(r?f+r+"Y":"")+(o?f+o+"M":"")+(s?g+s+"D":"")+(l||u||d?"T":"")+(l?m+l+"H":"")+(u?m+u+"M":"")+(d?m+d+"S":"")}var Zn=Te.prototype;return Zn.isValid=function(){return this._isValid},Zn.abs=function(){var t=this._data;return this._milliseconds=yn(this._milliseconds),this._days=yn(this._days),this._months=yn(this._months),t.milliseconds=yn(t.milliseconds),t.seconds=yn(t.seconds),t.minutes=yn(t.minutes),t.hours=yn(t.hours),t.months=yn(t.months),t.years=yn(t.years),this},Zn.add=function(t,e){return xn(this,t,e,1)},Zn.subtract=function(t,e){return xn(this,t,e,-1)},Zn.as=function(t){if(!this.isValid())return NaN;var e,n,i=this._milliseconds;if("month"===(t=L(t))||"quarter"===t||"year"===t)switch(e=this._days+i/864e5,n=this._months+wn(e),t){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(e=this._days+Math.round(kn(this._months)),t){case"week":return e/7+i/6048e5;case"day":return e+i/864e5;case"hour":return 24*e+i/36e5;case"minute":return 1440*e+i/6e4;case"second":return 86400*e+i/1e3;case"millisecond":return Math.floor(864e5*e)+i;default:throw new Error("Unknown unit "+t)}},Zn.asMilliseconds=Sn,Zn.asSeconds=Dn,Zn.asMinutes=Cn,Zn.asHours=Pn,Zn.asDays=Tn,Zn.asWeeks=On,Zn.asMonths=An,Zn.asQuarters=Fn,Zn.asYears=In,Zn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*w(this._months/12):NaN},Zn._bubble=function(){var t,e,n,i,a,r=this._milliseconds,o=this._days,s=this._months,l=this._data;return r>=0&&o>=0&&s>=0||r<=0&&o<=0&&s<=0||(r+=864e5*_n(kn(s)+o),o=0,s=0),l.milliseconds=r%1e3,t=_(r/1e3),l.seconds=t%60,e=_(t/60),l.minutes=e%60,n=_(e/60),l.hours=n%24,o+=_(n/24),s+=a=_(wn(o)),o-=_n(kn(a)),i=_(s/12),s%=12,l.days=o,l.months=s,l.years=i,this},Zn.clone=function(){return Ee(this)},Zn.get=function(t){return t=L(t),this.isValid()?this[t+"s"]():NaN},Zn.milliseconds=Rn,Zn.seconds=Nn,Zn.minutes=Wn,Zn.hours=Yn,Zn.days=zn,Zn.weeks=function(){return _(this.days()/7)},Zn.months=En,Zn.years=Vn,Zn.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),n=function(t,e,n){var i=Ee(t).abs(),a=Hn(i.as("s")),r=Hn(i.as("m")),o=Hn(i.as("h")),s=Hn(i.as("d")),l=Hn(i.as("M")),u=Hn(i.as("y")),d=a<=Bn.ss&&["s",a]||a0,d[4]=n,jn.apply(null,d)}(this,!t,e);return t&&(n=e.pastFuture(+this,n)),e.postformat(n)},Zn.toISOString=qn,Zn.toString=qn,Zn.toJSON=qn,Zn.locale=Ze,Zn.localeData=Xe,Zn.toIsoString=S("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",qn),Zn.lang=$e,B("X",0,0,"unix"),B("x",0,0,"valueOf"),ut("x",at),ut("X",/[+-]?\d+(\.\d{1,3})?/),ft("X",(function(t,e,n){n._d=new Date(1e3*parseFloat(t,10))})),ft("x",(function(t,e,n){n._d=new Date(w(t))})),i.version="2.24.0",e=Me,i.fn=fn,i.min=function(){return Ce("isBefore",[].slice.call(arguments,0))},i.max=function(){return Ce("isAfter",[].slice.call(arguments,0))},i.now=function(){return Date.now?Date.now():+new Date},i.utc=c,i.unix=function(t){return Me(1e3*t)},i.months=function(t,e){return vn(t,e,"months")},i.isDate=l,i.locale=ae,i.invalid=m,i.duration=Ee,i.isMoment=x,i.weekdays=function(t,e,n){return bn(t,e,n,"weekdays")},i.parseZone=function(){return Me.apply(null,arguments).parseZone()},i.localeData=oe,i.isDuration=Oe,i.monthsShort=function(t,e){return vn(t,e,"monthsShort")},i.weekdaysMin=function(t,e,n){return bn(t,e,n,"weekdaysMin")},i.defineLocale=re,i.updateLocale=function(t,e){if(null!=e){var n,i,a=Qt;null!=(i=ie(t))&&(a=i._config),(n=new A(e=O(a,e))).parentLocale=te[t],te[t]=n,ae(t)}else null!=te[t]&&(null!=te[t].parentLocale?te[t]=te[t].parentLocale:null!=te[t]&&delete te[t]);return te[t]},i.locales=function(){return D(te)},i.weekdaysShort=function(t,e,n){return bn(t,e,n,"weekdaysShort")},i.normalizeUnits=L,i.relativeTimeRounding=function(t){return void 0===t?Hn:"function"==typeof t&&(Hn=t,!0)},i.relativeTimeThreshold=function(t,e){return void 0!==Bn[t]&&(void 0===e?Bn[t]:(Bn[t]=e,"s"===t&&(Bn.ss=e-1),!0))},i.calendarFormat=function(t,e){var n=t.diff(e,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},i.prototype=fn,i.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},i}()})),ai={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};Xe._date.override("function"==typeof ii?{_id:"moment",formats:function(){return ai},parse:function(t,e){return"string"==typeof t&&"string"==typeof e?t=ii(t,e):t instanceof ii||(t=ii(t)),t.isValid()?t.valueOf():null},format:function(t,e){return ii(t).format(e)},add:function(t,e,n){return ii(t).add(e,n).valueOf()},diff:function(t,e,n){return ii(t).diff(ii(e),n)},startOf:function(t,e,n){return t=ii(t),"isoWeek"===e?t.isoWeekday(n).valueOf():t.startOf(e).valueOf()},endOf:function(t,e){return ii(t).endOf(e).valueOf()},_create:function(t){return ii(t)}}:{}),N._set("global",{plugins:{filler:{propagate:!0}}});var ri={dataset:function(t){var e=t.fill,n=t.chart,i=n.getDatasetMeta(e),a=i&&n.isDatasetVisible(e)&&i.dataset._children||[],r=a.length||0;return r?function(t,e){return e=n)&&i;switch(r){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return r;default:return!1}}function si(t){return(t.el._scale||{}).getPointPositionForValue?function(t){var e,n,i,a,r,o=t.el._scale,s=o.options,l=o.chart.data.labels.length,u=t.fill,d=[];if(!l)return null;for(e=s.ticks.reverse?o.max:o.min,n=s.ticks.reverse?o.min:o.max,i=o.getPointPositionForValue(0,e),a=0;a0;--r)V.canvas.lineTo(t,n[r],n[r-1],!0);else for(o=n[0].cx,s=n[0].cy,l=Math.sqrt(Math.pow(n[0].x-o,2)+Math.pow(n[0].y-s,2)),r=a-1;r>0;--r)t.arc(o,s,l,n[r].angle,n[r-1].angle,!0)}}function ci(t,e,n,i,a,r){var o,s,l,u,d,h,c,f,g=e.length,m=i.spanGaps,p=[],v=[],b=0,y=0;for(t.beginPath(),o=0,s=g;o=0;--n)(e=l[n].$filler)&&e.visible&&(a=(i=e.el)._view,r=i._children||[],o=e.mapper,s=a.backgroundColor||N.global.defaultColor,o&&s&&r.length&&(V.canvas.clipArea(u,t.chartArea),ci(u,r,o,a,s,i._loop),V.canvas.unclipArea(u)))}},gi=V.rtl.getRtlAdapter,mi=V.noop,pi=V.valueOrDefault;function vi(t,e){return t.usePointStyle&&t.boxWidth>e?e:t.boxWidth}N._set("global",{legend:{display:!0,position:"top",align:"center",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var n=e.datasetIndex,i=this.chart,a=i.getDatasetMeta(n);a.hidden=null===a.hidden?!i.data.datasets[n].hidden:null,i.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data.datasets,n=t.options.legend||{},i=n.labels&&n.labels.usePointStyle;return t._getSortedDatasetMetas().map((function(n){var a=n.controller.getStyle(i?0:void 0);return{text:e[n.index].label,fillStyle:a.backgroundColor,hidden:!t.isDatasetVisible(n.index),lineCap:a.borderCapStyle,lineDash:a.borderDash,lineDashOffset:a.borderDashOffset,lineJoin:a.borderJoinStyle,lineWidth:a.borderWidth,strokeStyle:a.borderColor,pointStyle:a.pointStyle,rotation:a.rotation,datasetIndex:n.index}}),this)}}},legendCallback:function(t){var e,n,i,a=document.createElement("ul"),r=t.data.datasets;for(a.setAttribute("class",t.id+"-legend"),e=0,n=r.length;el.width)&&(h+=o+n.padding,d[d.length-(e>0?0:1)]=0),s[e]={left:0,top:0,width:i,height:o},d[d.length-1]+=i+n.padding})),l.height+=h}else{var c=n.padding,f=t.columnWidths=[],g=t.columnHeights=[],m=n.padding,p=0,v=0;V.each(t.legendItems,(function(t,e){var i=vi(n,o)+o/2+a.measureText(t.text).width;e>0&&v+o+2*c>l.height&&(m+=p+n.padding,f.push(p),g.push(v),p=0,v=0),p=Math.max(p,i),v+=o+c,s[e]={left:0,top:0,width:i,height:o}})),m+=p,f.push(p),g.push(v),l.width+=m}t.width=l.width,t.height=l.height}else t.width=l.width=t.height=l.height=0},afterFit:mi,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,n=e.labels,i=N.global,a=i.defaultColor,r=i.elements.line,o=t.height,s=t.columnHeights,l=t.width,u=t.lineWidths;if(e.display){var d,h=gi(e.rtl,t.left,t.minSize.width),c=t.ctx,f=pi(n.fontColor,i.defaultFontColor),g=V.options._parseFont(n),m=g.size;c.textAlign=h.textAlign("left"),c.textBaseline="middle",c.lineWidth=.5,c.strokeStyle=f,c.fillStyle=f,c.font=g.string;var p=vi(n,m),v=t.legendHitBoxes,b=function(t,i){switch(e.align){case"start":return n.padding;case"end":return t-i;default:return(t-i+n.padding)/2}},y=t.isHorizontal();d=y?{x:t.left+b(l,u[0]),y:t.top+n.padding,line:0}:{x:t.left+n.padding,y:t.top+b(o,s[0]),line:0},V.rtl.overrideTextDirection(t.ctx,e.textDirection);var x=m+n.padding;V.each(t.legendItems,(function(e,i){var f=c.measureText(e.text).width,g=p+m/2+f,_=d.x,w=d.y;h.setWidth(t.minSize.width),y?i>0&&_+g+n.padding>t.left+t.minSize.width&&(w=d.y+=x,d.line++,_=d.x=t.left+b(l,u[d.line])):i>0&&w+x>t.top+t.minSize.height&&(_=d.x=_+t.columnWidths[d.line]+n.padding,d.line++,w=d.y=t.top+b(o,s[d.line]));var k=h.x(_);!function(t,e,i){if(!(isNaN(p)||p<=0)){c.save();var o=pi(i.lineWidth,r.borderWidth);if(c.fillStyle=pi(i.fillStyle,a),c.lineCap=pi(i.lineCap,r.borderCapStyle),c.lineDashOffset=pi(i.lineDashOffset,r.borderDashOffset),c.lineJoin=pi(i.lineJoin,r.borderJoinStyle),c.lineWidth=o,c.strokeStyle=pi(i.strokeStyle,a),c.setLineDash&&c.setLineDash(pi(i.lineDash,r.borderDash)),n&&n.usePointStyle){var s=p*Math.SQRT2/2,l=h.xPlus(t,p/2),u=e+m/2;V.canvas.drawPoint(c,i.pointStyle,s,l,u,i.rotation)}else c.fillRect(h.leftForLtr(t,p),e,p,m),0!==o&&c.strokeRect(h.leftForLtr(t,p),e,p,m);c.restore()}}(k,w,e),v[i].left=h.leftForLtr(k,v[i].width),v[i].top=w,function(t,e,n,i){var a=m/2,r=h.xPlus(t,p+a),o=e+a;c.fillText(n.text,r,o),n.hidden&&(c.beginPath(),c.lineWidth=2,c.moveTo(r,o),c.lineTo(h.xPlus(r,i),o),c.stroke())}(k,w,e,f),y?d.x+=g+n.padding:d.y+=x})),V.rtl.restoreTextDirection(t.ctx,e.textDirection)}},_getLegendItemAt:function(t,e){var n,i,a,r=this;if(t>=r.left&&t<=r.right&&e>=r.top&&e<=r.bottom)for(a=r.legendHitBoxes,n=0;n=(i=a[n]).left&&t<=i.left+i.width&&e>=i.top&&e<=i.top+i.height)return r.legendItems[n];return null},handleEvent:function(t){var e,n=this,i=n.options,a="mouseup"===t.type?"click":t.type;if("mousemove"===a){if(!i.onHover&&!i.onLeave)return}else{if("click"!==a)return;if(!i.onClick)return}e=n._getLegendItemAt(t.x,t.y),"click"===a?e&&i.onClick&&i.onClick.call(n,t.native,e):(i.onLeave&&e!==n._hoveredItem&&(n._hoveredItem&&i.onLeave.call(n,t.native,n._hoveredItem),n._hoveredItem=e),i.onHover&&e&&i.onHover.call(n,t.native,e))}});function yi(t,e){var n=new bi({ctx:t.ctx,options:e,chart:t});de.configure(t,n,e),de.addBox(t,n),t.legend=n}var xi={id:"legend",_element:bi,beforeInit:function(t){var e=t.options.legend;e&&yi(t,e)},beforeUpdate:function(t){var e=t.options.legend,n=t.legend;e?(V.mergeIf(e,N.global.legend),n?(de.configure(t,n,e),n.options=e):yi(t,e)):n&&(de.removeBox(t,n),delete t.legend)},afterEvent:function(t,e){var n=t.legend;n&&n.handleEvent(e)}},_i=V.noop;N._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var wi=q.extend({initialize:function(t){V.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:_i,update:function(t,e,n){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=n,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:_i,beforeSetDimensions:_i,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:_i,beforeBuildLabels:_i,buildLabels:_i,afterBuildLabels:_i,beforeFit:_i,fit:function(){var t,e=this,n=e.options,i=e.minSize={},a=e.isHorizontal();n.display?(t=(V.isArray(n.text)?n.text.length:1)*V.options._parseFont(n).lineHeight+2*n.padding,e.width=i.width=a?e.maxWidth:t,e.height=i.height=a?t:e.maxHeight):e.width=i.width=e.height=i.height=0},afterFit:_i,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,n=t.options;if(n.display){var i,a,r,o=V.options._parseFont(n),s=o.lineHeight,l=s/2+n.padding,u=0,d=t.top,h=t.left,c=t.bottom,f=t.right;e.fillStyle=V.valueOrDefault(n.fontColor,N.global.defaultFontColor),e.font=o.string,t.isHorizontal()?(a=h+(f-h)/2,r=d+l,i=f-h):(a="left"===n.position?h+l:f-l,r=d+(c-d)/2,i=c-d,u=Math.PI*("left"===n.position?-.5:.5)),e.save(),e.translate(a,r),e.rotate(u),e.textAlign="center",e.textBaseline="middle";var g=n.text;if(V.isArray(g))for(var m=0,p=0;p=0;i--){var a=t[i];if(e(a))return a}},V.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},V.almostEquals=function(t,e,n){return Math.abs(t-e)=t},V.max=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.max(t,e)}),Number.NEGATIVE_INFINITY)},V.min=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.min(t,e)}),Number.POSITIVE_INFINITY)},V.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},V.toRadians=function(t){return t*(Math.PI/180)},V.toDegrees=function(t){return t*(180/Math.PI)},V._decimalPlaces=function(t){if(V.isFinite(t)){for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}},V.getAngleFromPoint=function(t,e){var n=e.x-t.x,i=e.y-t.y,a=Math.sqrt(n*n+i*i),r=Math.atan2(i,n);return r<-.5*Math.PI&&(r+=2*Math.PI),{angle:r,distance:a}},V.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},V.aliasPixel=function(t){return t%2==0?0:.5},V._alignPixel=function(t,e,n){var i=t.currentDevicePixelRatio,a=n/2;return Math.round((e-a)*i)/i+a},V.splineCurve=function(t,e,n,i){var a=t.skip?e:t,r=e,o=n.skip?e:n,s=Math.sqrt(Math.pow(r.x-a.x,2)+Math.pow(r.y-a.y,2)),l=Math.sqrt(Math.pow(o.x-r.x,2)+Math.pow(o.y-r.y,2)),u=s/(s+l),d=l/(s+l),h=i*(u=isNaN(u)?0:u),c=i*(d=isNaN(d)?0:d);return{previous:{x:r.x-h*(o.x-a.x),y:r.y-h*(o.y-a.y)},next:{x:r.x+c*(o.x-a.x),y:r.y+c*(o.y-a.y)}}},V.EPSILON=Number.EPSILON||1e-14,V.splineCurveMonotone=function(t){var e,n,i,a,r,o,s,l,u,d=(t||[]).map((function(t){return{model:t._model,deltaK:0,mK:0}})),h=d.length;for(e=0;e0?d[e-1]:null,(a=e0?d[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},V.previousItem=function(t,e,n){return n?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},V.niceNum=function(t,e){var n=Math.floor(V.log10(t)),i=t/Math.pow(10,n);return(e?i<1.5?1:i<3?2:i<7?5:10:i<=1?1:i<=2?2:i<=5?5:10)*Math.pow(10,n)},V.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},V.getRelativePosition=function(t,e){var n,i,a=t.originalEvent||t,r=t.target||t.srcElement,o=r.getBoundingClientRect(),s=a.touches;s&&s.length>0?(n=s[0].clientX,i=s[0].clientY):(n=a.clientX,i=a.clientY);var l=parseFloat(V.getStyle(r,"padding-left")),u=parseFloat(V.getStyle(r,"padding-top")),d=parseFloat(V.getStyle(r,"padding-right")),h=parseFloat(V.getStyle(r,"padding-bottom")),c=o.right-o.left-l-d,f=o.bottom-o.top-u-h;return{x:n=Math.round((n-o.left-l)/c*r.width/e.currentDevicePixelRatio),y:i=Math.round((i-o.top-u)/f*r.height/e.currentDevicePixelRatio)}},V.getConstraintWidth=function(t){return n(t,"max-width","clientWidth")},V.getConstraintHeight=function(t){return n(t,"max-height","clientHeight")},V._calculatePadding=function(t,e,n){return(e=V.getStyle(t,e)).indexOf("%")>-1?n*parseInt(e,10)/100:parseInt(e,10)},V._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},V.getMaximumWidth=function(t){var e=V._getParentNode(t);if(!e)return t.clientWidth;var n=e.clientWidth,i=n-V._calculatePadding(e,"padding-left",n)-V._calculatePadding(e,"padding-right",n),a=V.getConstraintWidth(t);return isNaN(a)?i:Math.min(i,a)},V.getMaximumHeight=function(t){var e=V._getParentNode(t);if(!e)return t.clientHeight;var n=e.clientHeight,i=n-V._calculatePadding(e,"padding-top",n)-V._calculatePadding(e,"padding-bottom",n),a=V.getConstraintHeight(t);return isNaN(a)?i:Math.min(i,a)},V.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},V.retinaScale=function(t,e){var n=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==n){var i=t.canvas,a=t.height,r=t.width;i.height=a*n,i.width=r*n,t.ctx.scale(n,n),i.style.height||i.style.width||(i.style.height=a+"px",i.style.width=r+"px")}},V.fontString=function(t,e,n){return e+" "+t+"px "+n},V.longestText=function(t,e,n,i){var a=(i=i||{}).data=i.data||{},r=i.garbageCollect=i.garbageCollect||[];i.font!==e&&(a=i.data={},r=i.garbageCollect=[],i.font=e),t.font=e;var o,s,l,u,d,h=0,c=n.length;for(o=0;on.length){for(o=0;oi&&(i=r),i},V.numberOfLabelLines=function(t){var e=1;return V.each(t,(function(t){V.isArray(t)&&t.length>e&&(e=t.length)})),e},V.color=w?function(t){return t instanceof CanvasGradient&&(t=N.global.defaultColor),w(t)}:function(t){return console.error("Color.js not found!"),t},V.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:V.color(t).saturate(.5).darken(.1).rgbString()}}(),qe._adapters=Xe,qe.Animation=$,qe.animationService=X,qe.controllers=qt,qe.DatasetController=et,qe.defaults=N,qe.Element=q,qe.elements=bt,qe.Interaction=te,qe.layouts=de,qe.platform=Se,qe.plugins=De,qe.Scale=hn,qe.scaleService=Ce,qe.Ticks=Ke,qe.Tooltip=Ye,qe.helpers.each(ni,(function(t,e){qe.scaleService.registerScaleType(e,t,t._defaults)})),Mi)Mi.hasOwnProperty(Pi)&&qe.plugins.register(Mi[Pi]);qe.platform.initialize();var Ti=qe;return"undefined"!=typeof window&&(window.Chart=qe),qe.Chart=qe,qe.Legend=Mi.legend._element,qe.Title=Mi.title._element,qe.pluginService=qe.plugins,qe.PluginBase=qe.Element.extend({}),qe.canvasHelpers=qe.helpers.canvas,qe.layoutService=qe.layouts,qe.LinearScaleBase=pn,qe.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],(function(t){qe[t]=function(e,n){return new qe(e,qe.helpers.merge(n||{},{type:t.charAt(0).toLowerCase()+t.slice(1)}))}})),Ti})); +window.FontAwesomeKitConfig={asyncLoading:{enabled:!0},autoA11y:{enabled:!0},baseUrl:"https://kit-free.fontawesome.com",detectConflictsUntil:null,license:"free",method:"css",minify:{enabled:!0},v4FontFaceShim:{enabled:!0},v4shim:{enabled:!1},version:"latest"},function(){function e(e){var t,n=[],i=document,o=i.documentElement.doScroll,r="DOMContentLoaded",a=(o?/^loaded|^c/:/^loaded|^i|^c/).test(i.readyState);a||i.addEventListener(r,t=function(){for(i.removeEventListener(r,t),a=1;t=n.shift();)t()}),a?setTimeout(e,0):n.push(e)}function t(e){var t,n,i,o;prefixesArray=e||["fa"],prefixesSelectorString="."+Array.prototype.join.call(e,",."),t=document.querySelectorAll(prefixesSelectorString),Array.prototype.forEach.call(t,(function(e){n=e.getAttribute("title"),e.setAttribute("aria-hidden","true"),i=!e.nextElementSibling||!e.nextElementSibling.classList.contains("sr-only"),n&&i&&((o=document.createElement("span")).innerHTML=n,o.classList.add("sr-only"),e.parentNode.insertBefore(o,e.nextSibling))}))}!function(){if(void 0!==window.Element&&!("classList"in document.documentElement)){var e,t,n,i=Array.prototype,o=i.push,r=i.splice,a=i.join;d.prototype={add:function(e){this.contains(e)||(o.call(this,e),this.el.className=this.toString())},contains:function(e){return-1!=this.el.className.indexOf(e)},item:function(e){return this[e]||null},remove:function(e){if(this.contains(e)){for(var t=0;t["html","body"].indexOf(a(e));){if("none"!==(r=c(e)).transform||"none"!==r.perspective||r.willChange&&"auto"!==r.willChange){r=e;break e}e=e.parentNode}r=null}return r||t}function v(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}function b(e){return e.split("-")[0]}function y(e,t){var r=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(r instanceof n(r).ShadowRoot||r instanceof ShadowRoot)do{if(t&&e.isSameNode(t))return!0;t=t.parentNode||t.host}while(t);return!1}function O(e){return Object.assign(Object.assign({},e),{},{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function w(e,o){if("viewport"===o){o=n(e);var a=s(e);o=o.visualViewport;var p=a.clientWidth;a=a.clientHeight;var l=0,u=0;o&&(p=o.width,a=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(l=o.offsetLeft,u=o.offsetTop)),e=O(e={width:p,height:a,x:l+f(e),y:u})}else i(o)?((e=t(o)).top+=o.clientTop,e.left+=o.clientLeft,e.bottom=e.top+o.clientHeight,e.right=e.left+o.clientWidth,e.width=o.clientWidth,e.height=o.clientHeight,e.x=e.left,e.y=e.top):(u=s(e),e=s(u),l=r(u),o=u.ownerDocument.body,p=Math.max(e.scrollWidth,e.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),a=Math.max(e.scrollHeight,e.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),u=-l.scrollLeft+f(u),l=-l.scrollTop,"rtl"===c(o||e).direction&&(u+=Math.max(e.clientWidth,o?o.clientWidth:0)-p),e=O({width:p,height:a,x:u,y:l}));return e}function x(e,t,n){return t="clippingParents"===t?function(e){var t=m(d(e)),n=0<=["absolute","fixed"].indexOf(c(e).position)&&i(e)?g(e):e;return o(n)?t.filter((function(e){return o(e)&&y(e,n)&&"body"!==a(e)})):[]}(e):[].concat(t),(n=(n=[].concat(t,[n])).reduce((function(t,n){return n=w(e,n),t.top=Math.max(n.top,t.top),t.right=Math.min(n.right,t.right),t.bottom=Math.min(n.bottom,t.bottom),t.left=Math.max(n.left,t.left),t}),w(e,n[0]))).width=n.right-n.left,n.height=n.bottom-n.top,n.x=n.left,n.y=n.top,n}function j(e){return 0<=["top","bottom"].indexOf(e)?"x":"y"}function M(e){var t=e.reference,n=e.element,r=(e=e.placement)?b(e):null;e=e?e.split("-")[1]:null;var o=t.x+t.width/2-n.width/2,i=t.y+t.height/2-n.height/2;switch(r){case"top":o={x:o,y:t.y-n.height};break;case"bottom":o={x:o,y:t.y+t.height};break;case"right":o={x:t.x+t.width,y:i};break;case"left":o={x:t.x-n.width,y:i};break;default:o={x:t.x,y:t.y}}if(null!=(r=r?j(r):null))switch(i="y"===r?"height":"width",e){case"start":o[r]=Math.floor(o[r])-Math.floor(t[i]/2-n[i]/2);break;case"end":o[r]=Math.floor(o[r])+Math.ceil(t[i]/2-n[i]/2)}return o}function E(e){return Object.assign(Object.assign({},{top:0,right:0,bottom:0,left:0}),e)}function D(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function P(e,n){void 0===n&&(n={});var r=n;n=void 0===(n=r.placement)?e.placement:n;var i=r.boundary,a=void 0===i?"clippingParents":i,f=void 0===(i=r.rootBoundary)?"viewport":i;i=void 0===(i=r.elementContext)?"popper":i;var c=r.altBoundary,p=void 0!==c&&c;r=E("number"!=typeof(r=void 0===(r=r.padding)?0:r)?r:D(r,S));var l=e.elements.reference;c=e.rects.popper,a=x(o(p=e.elements[p?"popper"===i?"reference":"popper":i])?p:p.contextElement||s(e.elements.popper),a,f),p=M({reference:f=t(l),element:c,strategy:"absolute",placement:n}),c=O(Object.assign(Object.assign({},c),p)),f="popper"===i?c:f;var u={top:a.top-f.top+r.top,bottom:f.bottom-a.bottom+r.bottom,left:a.left-f.left+r.left,right:f.right-a.right+r.right};if(e=e.modifiersData.offset,"popper"===i&&e){var d=e[n];Object.keys(u).forEach((function(e){var t=0<=["right","bottom"].indexOf(e)?1:-1,n=0<=["top","bottom"].indexOf(e)?"y":"x";u[e]+=d[n]*t}))}return u}function L(){for(var e=arguments.length,t=Array(e),n=0;n(v.devicePixelRatio||1)?"translate("+e+"px, "+l+"px)":"translate3d("+e+"px, "+l+"px, 0)",d)):Object.assign(Object.assign({},r),{},((t={})[h]=a?l+"px":"",t[m]=u?e+"px":"",t.transform="",t))}function W(e){return e.replace(/left|right|bottom|top/g,(function(e){return Y[e]}))}function A(e){return e.replace(/start|end/g,(function(e){return G[e]}))}function H(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function R(e){return["top","right","bottom","left"].some((function(t){return 0<=e[t]}))}var S=["top","bottom","right","left"],T=S.reduce((function(e,t){return e.concat([t+"-start",t+"-end"])}),[]),q=[].concat(S,["auto"]).reduce((function(e,t){return e.concat([t,t+"-start",t+"-end"])}),[]),C="beforeRead read afterRead beforeMain main afterMain beforeWrite write afterWrite".split(" "),N={placement:"bottom",modifiers:[],strategy:"absolute"},V={passive:!0},I={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,r=e.instance,o=(e=e.options).scroll,i=void 0===o||o,a=void 0===(e=e.resize)||e,s=n(t.elements.popper),f=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&f.forEach((function(e){e.addEventListener("scroll",r.update,V)})),a&&s.addEventListener("resize",r.update,V),function(){i&&f.forEach((function(e){e.removeEventListener("scroll",r.update,V)})),a&&s.removeEventListener("resize",r.update,V)}},data:{}},_={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state;t.modifiersData[e.name]=M({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},U={top:"auto",right:"auto",bottom:"auto",left:"auto"},z={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options;e=void 0===(e=n.gpuAcceleration)||e,n=void 0===(n=n.adaptive)||n,e={placement:b(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:e},null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign(Object.assign({},t.styles.popper),B(Object.assign(Object.assign({},e),{},{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:n})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign(Object.assign({},t.styles.arrow),B(Object.assign(Object.assign({},e),{},{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1})))),t.attributes.popper=Object.assign(Object.assign({},t.attributes.popper),{},{"data-popper-placement":t.placement})},data:{}},F={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},r=t.attributes[e]||{},o=t.elements[e];i(o)&&a(o)&&(Object.assign(o.style,n),Object.keys(r).forEach((function(e){var t=r[e];!1===t?o.removeAttribute(e):o.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var r=t.elements[e],o=t.attributes[e]||{};e=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{}),i(r)&&a(r)&&(Object.assign(r.style,e),Object.keys(o).forEach((function(e){r.removeAttribute(e)})))}))}},requires:["computeStyles"]},X={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.name,r=void 0===(e=e.options.offset)?[0,0]:e,o=(e=q.reduce((function(e,n){var o=t.rects,i=b(n),a=0<=["left","top"].indexOf(i)?-1:1,s="function"==typeof r?r(Object.assign(Object.assign({},o),{},{placement:n})):r;return o=(o=s[0])||0,s=((s=s[1])||0)*a,i=0<=["left","right"].indexOf(i)?{x:s,y:o}:{x:o,y:s},e[n]=i,e}),{}))[t.placement],i=o.x;o=o.y,null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=i,t.modifiersData.popperOffsets.y+=o),t.modifiersData[n]=e}},Y={left:"right",right:"left",bottom:"top",top:"bottom"},G={start:"end",end:"start"},J={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options;if(e=e.name,!t.modifiersData[e]._skip){var r=n.mainAxis;r=void 0===r||r;var o=n.altAxis;o=void 0===o||o;var i=n.fallbackPlacements,a=n.padding,s=n.boundary,f=n.rootBoundary,c=n.altBoundary,p=n.flipVariations,l=void 0===p||p,u=n.allowedAutoPlacements;p=b(n=t.options.placement),i=i||(p!==n&&l?function(e){if("auto"===b(e))return[];var t=W(e);return[A(e),t,A(t)]}(n):[W(n)]);var d=[n].concat(i).reduce((function(e,n){return e.concat("auto"===b(n)?function(e,t){void 0===t&&(t={});var n=t.boundary,r=t.rootBoundary,o=t.padding,i=t.flipVariations,a=t.allowedAutoPlacements,s=void 0===a?q:a,f=t.placement.split("-")[1];0===(i=(t=f?i?T:T.filter((function(e){return e.split("-")[1]===f})):S).filter((function(e){return 0<=s.indexOf(e)}))).length&&(i=t);var c=i.reduce((function(t,i){return t[i]=P(e,{placement:i,boundary:n,rootBoundary:r,padding:o})[b(i)],t}),{});return Object.keys(c).sort((function(e,t){return c[e]-c[t]}))}(t,{placement:n,boundary:s,rootBoundary:f,padding:a,flipVariations:l,allowedAutoPlacements:u}):n)}),[]);n=t.rects.reference,i=t.rects.popper;var m=new Map;p=!0;for(var h=d[0],g=0;gi[x]&&(O=W(O)),x=W(O),w=[],r&&w.push(0>=j[y]),o&&w.push(0>=j[O],0>=j[x]),w.every((function(e){return e}))){h=v,p=!1;break}m.set(v,w)}if(p)for(r=function(e){var t=d.find((function(t){if(t=m.get(t))return t.slice(0,e).every((function(e){return e}))}));if(t)return h=t,"break"},o=l?3:1;0-1}function s(t,e){return"function"==typeof t?t.apply(void 0,e):t}function p(t,e){return 0===e?t:function(i){clearTimeout(n),n=setTimeout((function(){t(i)}),e)};var n}function c(t,e){var n=Object.assign({},t);return e.forEach((function(t){delete n[t]})),n}function u(t){return[].concat(t)}function f(t,e){-1===t.indexOf(e)&&t.push(e)}function l(t){return t.split("-")[0]}function d(t){return[].slice.call(t)}function v(){return document.createElement("div")}function m(t){return["Element","Fragment"].some((function(e){return a(t,e)}))}function g(t){return a(t,"MouseEvent")}function h(t){return!(!t||!t._tippy||t._tippy.reference!==t)}function b(t,e){t.forEach((function(t){t&&(t.style.transitionDuration=e+"ms")}))}function y(t,e){t.forEach((function(t){t&&t.setAttribute("data-state",e)}))}function x(t){var e=u(t)[0];return e&&e.ownerDocument||document}function w(t,e,n){var i=e+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(e){t[i](e,n)}))}var E={isTouch:!1},T=0;function C(){E.isTouch||(E.isTouch=!0,window.performance&&document.addEventListener("mousemove",A))}function A(){var t=performance.now();t-T<20&&(E.isTouch=!1,document.removeEventListener("mousemove",A)),T=t}function O(){var t=document.activeElement;if(h(t)){var e=t._tippy;t.blur&&!e.state.isVisible&&t.blur()}}var L=Object.assign({appendTo:function(){return document.body},aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),D=Object.keys(L);function k(t){var e=(t.plugins||[]).reduce((function(e,n){var i=n.name,r=n.defaultValue;return i&&(e[i]=void 0!==t[i]?t[i]:r),e}),{});return Object.assign({},t,{},e)}function M(t,e){var n=Object.assign({},e,{content:s(e.content,[t])},e.ignoreAttributes?{}:function(t,e){return(e?Object.keys(k(Object.assign({},L,{plugins:e}))):D).reduce((function(e,n){var i=(t.getAttribute("data-tippy-"+n)||"").trim();if(!i)return e;if("content"===n)e[n]=i;else try{e[n]=JSON.parse(i)}catch(t){e[n]=i}return e}),{})}(t,e.plugins));return n.aria=Object.assign({},L.aria,{},n.aria),n.aria={expanded:"auto"===n.aria.expanded?e.interactive:n.aria.expanded,content:"auto"===n.aria.content?e.interactive?null:"describedby":n.aria.content},n}function V(t,e){t.innerHTML=e}function R(t){var e=v();return!0===t?e.className="tippy-arrow":(e.className="tippy-svg-arrow",m(t)?e.appendChild(t):V(e,t)),e}function j(t,e){m(e.content)?(V(t,""),t.appendChild(e.content)):"function"!=typeof e.content&&(e.allowHTML?V(t,e.content):t.textContent=e.content)}function P(t){var e=t.firstElementChild,n=d(e.children);return{box:e,content:n.find((function(t){return t.classList.contains("tippy-content")})),arrow:n.find((function(t){return t.classList.contains("tippy-arrow")||t.classList.contains("tippy-svg-arrow")})),backdrop:n.find((function(t){return t.classList.contains("tippy-backdrop")}))}}function I(t){var e=v(),n=v();n.className="tippy-box",n.setAttribute("data-state","hidden"),n.setAttribute("tabindex","-1");var i=v();function r(n,i){var r=P(e),o=r.box,a=r.content,s=r.arrow;i.theme?o.setAttribute("data-theme",i.theme):o.removeAttribute("data-theme"),"string"==typeof i.animation?o.setAttribute("data-animation",i.animation):o.removeAttribute("data-animation"),i.inertia?o.setAttribute("data-inertia",""):o.removeAttribute("data-inertia"),o.style.maxWidth="number"==typeof i.maxWidth?i.maxWidth+"px":i.maxWidth,i.role?o.setAttribute("role",i.role):o.removeAttribute("role"),n.content===i.content&&n.allowHTML===i.allowHTML||j(a,t.props),i.arrow?s?n.arrow!==i.arrow&&(o.removeChild(s),o.appendChild(R(i.arrow))):o.appendChild(R(i.arrow)):s&&o.removeChild(s)}return i.className="tippy-content",i.setAttribute("data-state","hidden"),j(i,t.props),e.appendChild(n),n.appendChild(i),r(t.props,t.props),{popper:e,onUpdate:r}}I.$$tippy=!0;var S=1,B=[],H=[];function U(e,n){var a,c,m,h,T,C,A,O,D,V=M(e,Object.assign({},L,{},k((a=n,Object.keys(a).reduce((function(t,e){return void 0!==a[e]&&(t[e]=a[e]),t}),{}))))),R=!1,j=!1,I=!1,U=!1,N=[],_=p(bt,V.interactiveDebounce),z=x(V.triggerTarget||e),F=S++,W=(D=V.plugins).filter((function(t,e){return D.indexOf(t)===e})),X={id:F,reference:e,popper:v(),popperInstance:null,props:V,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:W,clearDelayTimeouts:function(){clearTimeout(c),clearTimeout(m),cancelAnimationFrame(h)},setProps:function(t){if(!X.state.isDestroyed){rt("onBeforeUpdate",[X,t]),gt();var n=X.props,i=M(e,Object.assign({},X.props,{},t,{ignoreAttributes:!0}));X.props=i,mt(),n.interactiveDebounce!==i.interactiveDebounce&&(st(),_=p(bt,i.interactiveDebounce)),n.triggerTarget&&!i.triggerTarget?u(n.triggerTarget).forEach((function(t){t.removeAttribute("aria-expanded")})):i.triggerTarget&&e.removeAttribute("aria-expanded"),at(),it(),$&&$(n,i),X.popperInstance&&(Et(),Ct().forEach((function(t){requestAnimationFrame(t._tippy.popperInstance.forceUpdate)}))),rt("onAfterUpdate",[X,t])}},setContent:function(t){X.setProps({content:t})},show:function(){var t=X.state.isVisible,e=X.state.isDestroyed,n=!X.state.isEnabled,i=E.isTouch&&!X.props.touch,r=o(X.props.duration,0,L.duration);if(!(t||e||n||i||tt().hasAttribute("disabled")||(rt("onShow",[X],!1),!1===X.props.onShow(X)))){if(X.state.isVisible=!0,Z()&&(q.style.visibility="visible"),it(),ft(),X.state.isMounted||(q.style.transition="none"),Z()){var a=et();b([a.box,a.content],0)}A=function(){if(X.state.isVisible&&!U){if(U=!0,q.offsetHeight,q.style.transition=X.props.moveTransition,Z()&&X.props.animation){var t=et(),e=t.box,n=t.content;b([e,n],r),y([e,n],"visible")}ot(),at(),f(H,X),X.state.isMounted=!0,rt("onMount",[X]),X.props.animation&&Z()&&function(t,e){dt(t,(function(){X.state.isShown=!0,rt("onShown",[X])}))}(r)}},function(){var t,e=X.props.appendTo,n=tt();(t=X.props.interactive&&e===L.appendTo||"parent"===e?n.parentNode:s(e,[n])).contains(q)||t.appendChild(q),Et()}()}},hide:function(){var t=!X.state.isVisible,e=X.state.isDestroyed,n=!X.state.isEnabled,i=o(X.props.duration,1,L.duration);if(!(t||e||n)&&(rt("onHide",[X],!1),!1!==X.props.onHide(X))){if(X.state.isVisible=!1,X.state.isShown=!1,U=!1,R=!1,Z()&&(q.style.visibility="hidden"),st(),lt(),it(),Z()){var r=et(),a=r.box,s=r.content;X.props.animation&&(b([a,s],i),y([a,s],"hidden"))}ot(),at(),X.props.animation?Z()&&function(t,e){dt(t,(function(){!X.state.isVisible&&q.parentNode&&q.parentNode.contains(q)&&e()}))}(i,X.unmount):X.unmount()}},hideWithInteractivity:function(t){z.addEventListener("mousemove",_),f(B,_),_(t)},enable:function(){X.state.isEnabled=!0},disable:function(){X.hide(),X.state.isEnabled=!1},unmount:function(){X.state.isVisible&&X.hide(),X.state.isMounted&&(Tt(),Ct().forEach((function(t){t._tippy.unmount()})),q.parentNode&&q.parentNode.removeChild(q),H=H.filter((function(t){return t!==X})),X.state.isMounted=!1,rt("onHidden",[X]))},destroy:function(){X.state.isDestroyed||(X.clearDelayTimeouts(),X.unmount(),gt(),delete e._tippy,X.state.isDestroyed=!0,rt("onDestroy",[X]))}};if(!V.render)return X;var Y=V.render(X),q=Y.popper,$=Y.onUpdate;q.setAttribute("data-tippy-root",""),q.id="tippy-"+X.id,X.popper=q,e._tippy=X,q._tippy=X;var J=W.map((function(t){return t.fn(X)})),G=e.hasAttribute("aria-expanded");return mt(),at(),it(),rt("onCreate",[X]),V.showOnCreate&&At(),q.addEventListener("mouseenter",(function(){X.props.interactive&&X.state.isVisible&&X.clearDelayTimeouts()})),q.addEventListener("mouseleave",(function(t){X.props.interactive&&X.props.trigger.indexOf("mouseenter")>=0&&(z.addEventListener("mousemove",_),_(t))})),X;function K(){var t=X.props.touch;return Array.isArray(t)?t:[t,0]}function Q(){return"hold"===K()[0]}function Z(){var t;return!!(null==(t=X.props.render)?void 0:t.$$tippy)}function tt(){return O||e}function et(){return P(q)}function nt(t){return X.state.isMounted&&!X.state.isVisible||E.isTouch||T&&"focus"===T.type?0:o(X.props.delay,t?0:1,L.delay)}function it(){q.style.pointerEvents=X.props.interactive&&X.state.isVisible?"":"none",q.style.zIndex=""+X.props.zIndex}function rt(t,e,n){var i;void 0===n&&(n=!0),J.forEach((function(n){n[t]&&n[t].apply(void 0,e)})),n&&(i=X.props)[t].apply(i,e)}function ot(){var t=X.props.aria;if(t.content){var n="aria-"+t.content,i=q.id;u(X.props.triggerTarget||e).forEach((function(t){var e=t.getAttribute(n);if(X.state.isVisible)t.setAttribute(n,e?e+" "+i:i);else{var r=e&&e.replace(i,"").trim();r?t.setAttribute(n,r):t.removeAttribute(n)}}))}}function at(){!G&&X.props.aria.expanded&&u(X.props.triggerTarget||e).forEach((function(t){X.props.interactive?t.setAttribute("aria-expanded",X.state.isVisible&&t===tt()?"true":"false"):t.removeAttribute("aria-expanded")}))}function st(){z.removeEventListener("mousemove",_),B=B.filter((function(t){return t!==_}))}function pt(t){if(!(E.isTouch&&(I||"mousedown"===t.type)||X.props.interactive&&q.contains(t.target))){if(tt().contains(t.target)){if(E.isTouch)return;if(X.state.isVisible&&X.props.trigger.indexOf("click")>=0)return}else rt("onClickOutside",[X,t]);!0===X.props.hideOnClick&&(X.clearDelayTimeouts(),X.hide(),j=!0,setTimeout((function(){j=!1})),X.state.isMounted||lt())}}function ct(){I=!0}function ut(){I=!1}function ft(){z.addEventListener("mousedown",pt,!0),z.addEventListener("touchend",pt,r),z.addEventListener("touchstart",ut,r),z.addEventListener("touchmove",ct,r)}function lt(){z.removeEventListener("mousedown",pt,!0),z.removeEventListener("touchend",pt,r),z.removeEventListener("touchstart",ut,r),z.removeEventListener("touchmove",ct,r)}function dt(t,e){var n=et().box;function i(t){t.target===n&&(w(n,"remove",i),e())}if(0===t)return e();w(n,"remove",C),w(n,"add",i),C=i}function vt(t,n,i){void 0===i&&(i=!1),u(X.props.triggerTarget||e).forEach((function(e){e.addEventListener(t,n,i),N.push({node:e,eventType:t,handler:n,options:i})}))}function mt(){var t;Q()&&(vt("touchstart",ht,{passive:!0}),vt("touchend",yt,{passive:!0})),(t=X.props.trigger,t.split(/\s+/).filter(Boolean)).forEach((function(t){if("manual"!==t)switch(vt(t,ht),t){case"mouseenter":vt("mouseleave",yt);break;case"focus":vt(i?"focusout":"blur",xt);break;case"focusin":vt("focusout",xt)}}))}function gt(){N.forEach((function(t){var e=t.node,n=t.eventType,i=t.handler,r=t.options;e.removeEventListener(n,i,r)})),N=[]}function ht(t){var e,n=!1;if(X.state.isEnabled&&!wt(t)&&!j){var i="focus"===(null==(e=T)?void 0:e.type);T=t,O=t.currentTarget,at(),!X.state.isVisible&&g(t)&&B.forEach((function(e){return e(t)})),"click"===t.type&&(X.props.trigger.indexOf("mouseenter")<0||R)&&!1!==X.props.hideOnClick&&X.state.isVisible?n=!0:At(t),"click"===t.type&&(R=!n),n&&!i&&Ot(t)}}function bt(t){var e=t.target,n=tt().contains(e)||q.contains(e);"mousemove"===t.type&&n||function(t,e){var n=e.clientX,i=e.clientY;return t.every((function(t){var e=t.popperRect,r=t.popperState,o=t.props.interactiveBorder,a=l(r.placement),s=r.modifiersData.offset;if(!s)return!0;var p="bottom"===a?s.top.y:0,c="top"===a?s.bottom.y:0,u="right"===a?s.left.x:0,f="left"===a?s.right.x:0,d=e.top-i+p>o,v=i-e.bottom-c>o,m=e.left-n+u>o,g=n-e.right-f>o;return d||v||m||g}))}(Ct().concat(q).map((function(t){var e,n=null==(e=t._tippy.popperInstance)?void 0:e.state;return n?{popperRect:t.getBoundingClientRect(),popperState:n,props:V}:null})).filter(Boolean),t)&&(st(),Ot(t))}function yt(t){wt(t)||X.props.trigger.indexOf("click")>=0&&R||(X.props.interactive?X.hideWithInteractivity(t):Ot(t))}function xt(t){X.props.trigger.indexOf("focusin")<0&&t.target!==tt()||X.props.interactive&&t.relatedTarget&&q.contains(t.relatedTarget)||Ot(t)}function wt(t){return!!E.isTouch&&Q()!==t.type.indexOf("touch")>=0}function Et(){Tt();var n=X.props,i=n.popperOptions,r=n.placement,o=n.offset,a=n.getReferenceClientRect,s=n.moveTransition,p=Z()?P(q).arrow:null,c=a?{getBoundingClientRect:a,contextElement:a.contextElement||tt()}:e,u=[{name:"offset",options:{offset:o}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!s}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(t){var e=t.state;if(Z()){var n=et().box;["placement","reference-hidden","escaped"].forEach((function(t){"placement"===t?n.setAttribute("data-placement",e.placement):e.attributes.popper["data-popper-"+t]?n.setAttribute("data-"+t,""):n.removeAttribute("data-"+t)})),e.attributes.popper={}}}}];Z()&&p&&u.push({name:"arrow",options:{element:p,padding:3}}),u.push.apply(u,(null==i?void 0:i.modifiers)||[]),X.popperInstance=t.createPopper(c,q,Object.assign({},i,{placement:r,onFirstUpdate:A,modifiers:u}))}function Tt(){X.popperInstance&&(X.popperInstance.destroy(),X.popperInstance=null)}function Ct(){return d(q.querySelectorAll("[data-tippy-root]"))}function At(t){X.clearDelayTimeouts(),t&&rt("onTrigger",[X,t]),ft();var e=nt(!0),n=K(),i=n[0],r=n[1];E.isTouch&&"hold"===i&&r&&(e=r),e?c=setTimeout((function(){X.show()}),e):X.show()}function Ot(t){if(X.clearDelayTimeouts(),rt("onUntrigger",[X,t]),X.state.isVisible){if(!(X.props.trigger.indexOf("mouseenter")>=0&&X.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(t.type)>=0&&R)){var e=nt(!1);e?m=setTimeout((function(){X.state.isVisible&&X.hide()}),e):h=requestAnimationFrame((function(){X.hide()}))}}else lt()}}function N(t,e){void 0===e&&(e={});var n=L.plugins.concat(e.plugins||[]);document.addEventListener("touchstart",C,r),window.addEventListener("blur",O);var i=Object.assign({},e,{plugins:n}),o=function(t){return m(t)?[t]:function(t){return a(t,"NodeList")}(t)?d(t):Array.isArray(t)?t:d(document.querySelectorAll(t))}(t).reduce((function(t,e){var n=e&&U(e,i);return n&&t.push(n),t}),[]);return m(t)?o[0]:o}N.defaultProps=L,N.setDefaultProps=function(t){Object.keys(t).forEach((function(e){L[e]=t[e]}))},N.currentInput=E;var _={mouseover:"mouseenter",focusin:"focus",click:"click"},z={name:"animateFill",defaultValue:!1,fn:function(t){var e;if(!(null==(e=t.props.render)?void 0:e.$$tippy))return{};var n=P(t.popper),i=n.box,r=n.content,o=t.props.animateFill?function(){var t=v();return t.className="tippy-backdrop",y([t],"hidden"),t}():null;return{onCreate:function(){o&&(i.insertBefore(o,i.firstElementChild),i.setAttribute("data-animatefill",""),i.style.overflow="hidden",t.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(o){var t=i.style.transitionDuration,e=Number(t.replace("ms",""));r.style.transitionDelay=Math.round(e/10)+"ms",o.style.transitionDuration=t,y([o],"visible")}},onShow:function(){o&&(o.style.transitionDuration="0ms")},onHide:function(){o&&y([o],"hidden")}}}},F={clientX:0,clientY:0},W=[];function X(t){var e=t.clientX,n=t.clientY;F={clientX:e,clientY:n}}var Y={name:"followCursor",defaultValue:!1,fn:function(t){var e=t.reference,n=x(t.props.triggerTarget||e),i=!1,r=!1,o=!0,a=t.props;function s(){return"initial"===t.props.followCursor&&t.state.isVisible}function p(){n.addEventListener("mousemove",f)}function c(){n.removeEventListener("mousemove",f)}function u(){i=!0,t.setProps({getReferenceClientRect:null}),i=!1}function f(n){var i=!n.target||e.contains(n.target),r=t.props.followCursor,o=n.clientX,a=n.clientY,s=e.getBoundingClientRect(),p=o-s.left,c=a-s.top;!i&&t.props.interactive||t.setProps({getReferenceClientRect:function(){var t=e.getBoundingClientRect(),n=o,i=a;"initial"===r&&(n=t.left+p,i=t.top+c);var s="horizontal"===r?t.top:i,u="vertical"===r?t.right:n,f="horizontal"===r?t.bottom:i,l="vertical"===r?t.left:n;return{width:u-l,height:f-s,top:s,right:u,bottom:f,left:l}}})}function l(){t.props.followCursor&&(W.push({instance:t,doc:n}),function(t){t.addEventListener("mousemove",X)}(n))}function d(){0===(W=W.filter((function(e){return e.instance!==t}))).filter((function(t){return t.doc===n})).length&&function(t){t.removeEventListener("mousemove",X)}(n)}return{onCreate:l,onDestroy:d,onBeforeUpdate:function(){a=t.props},onAfterUpdate:function(e,n){var o=n.followCursor;i||void 0!==o&&a.followCursor!==o&&(d(),o?(l(),!t.state.isMounted||r||s()||p()):(c(),u()))},onMount:function(){t.props.followCursor&&!r&&(o&&(f(F),o=!1),s()||p())},onTrigger:function(t,e){g(e)&&(F={clientX:e.clientX,clientY:e.clientY}),r="focus"===e.type},onHidden:function(){t.props.followCursor&&(u(),c(),o=!0)}}}},q={name:"inlinePositioning",defaultValue:!1,fn:function(t){var e,n=t.reference,i=-1,r=!1,o={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(r){var o=r.state;t.props.inlinePositioning&&(e!==o.placement&&t.setProps({getReferenceClientRect:function(){return function(t){return function(t,e,n,i){if(n.length<2||null===t)return e;if(2===n.length&&i>=0&&n[0].left>n[1].right)return n[i]||e;switch(t){case"top":case"bottom":var r=n[0],o=n[n.length-1],a="top"===t,s=r.top,p=o.bottom,c=a?r.left:o.left,u=a?r.right:o.right;return{top:s,bottom:p,left:c,right:u,width:u-c,height:p-s};case"left":case"right":var f=Math.min.apply(Math,n.map((function(t){return t.left}))),l=Math.max.apply(Math,n.map((function(t){return t.right}))),d=n.filter((function(e){return"left"===t?e.left===f:e.right===l})),v=d[0].top,m=d[d.length-1].bottom;return{top:v,bottom:m,left:f,right:l,width:l-f,height:m-v};default:return e}}(l(t),n.getBoundingClientRect(),d(n.getClientRects()),i)}(o.placement)}}),e=o.placement)}};function a(){var e;r||(e=function(t,e){var n;return{popperOptions:Object.assign({},t.popperOptions,{modifiers:[].concat(((null==(n=t.popperOptions)?void 0:n.modifiers)||[]).filter((function(t){return t.name!==e.name})),[e])})}}(t.props,o),r=!0,t.setProps(e),r=!1)}return{onCreate:a,onAfterUpdate:a,onTrigger:function(e,n){if(g(n)){var r=d(t.reference.getClientRects()),o=r.find((function(t){return t.left-2<=n.clientX&&t.right+2>=n.clientX&&t.top-2<=n.clientY&&t.bottom+2>=n.clientY}));i=r.indexOf(o)}},onUntrigger:function(){i=-1}}}},$={name:"sticky",defaultValue:!1,fn:function(t){var e=t.reference,n=t.popper;function i(e){return!0===t.props.sticky||t.props.sticky===e}var r=null,o=null;function a(){var s=i("reference")?(t.popperInstance?t.popperInstance.state.elements.reference:e).getBoundingClientRect():null,p=i("popper")?n.getBoundingClientRect():null;(s&&J(r,s)||p&&J(o,p))&&t.popperInstance&&t.popperInstance.update(),r=s,o=p,t.state.isMounted&&requestAnimationFrame(a)}return{onMount:function(){t.props.sticky&&a()}}}};function J(t,e){return!t||!e||t.top!==e.top||t.right!==e.right||t.bottom!==e.bottom||t.left!==e.left}return e&&function(t){var e=document.createElement("style");e.textContent='.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}',e.setAttribute("data-tippy-stylesheet","");var n=document.head,i=document.querySelector("head>style,head>link");i?n.insertBefore(e,i):n.appendChild(e)}(),N.setDefaultProps({plugins:[z,Y,q,$],render:I}),N.createSingleton=function(t,e){void 0===e&&(e={});var n,i=t,r=[],o=e.overrides;function a(){r=i.map((function(t){return t.reference}))}function s(t){i.forEach((function(e){t?e.enable():e.disable()}))}s(!1),a();var p={fn:function(){return{onDestroy:function(){s(!0)},onTrigger:function(t,e){var a=e.currentTarget,s=r.indexOf(a);if(a!==n){n=a;var p=(o||[]).concat("content").reduce((function(t,e){return t[e]=i[s].props[e],t}),{});t.setProps(Object.assign({},p,{getReferenceClientRect:function(){return a.getBoundingClientRect()}}))}}}}},u=N(v(),Object.assign({},c(e,["overrides"]),{plugins:[p].concat(e.plugins||[]),triggerTarget:r})),f=u.setProps;return u.setProps=function(t){o=t.overrides||o,f(t)},u.setInstances=function(t){s(!0),i=t,s(!1),a(),u.setProps({triggerTarget:r})},u},N.delegate=function(t,e){var n=[],i=[],r=e.target,o=c(e,["target"]),a=Object.assign({},o,{trigger:"manual",touch:!1}),s=Object.assign({},o,{showOnCreate:!0}),p=N(t,a);function f(t){if(t.target){var n=t.target.closest(r);if(n){var o=n.getAttribute("data-tippy-trigger")||e.trigger||L.trigger;if(!n._tippy&&!("touchstart"===t.type&&"boolean"==typeof s.touch||"touchstart"!==t.type&&o.indexOf(_[t.type])<0)){var a=N(n,s);a&&(i=i.concat(a))}}}}function l(t,e,i,r){void 0===r&&(r=!1),t.addEventListener(e,i,r),n.push({node:t,eventType:e,handler:i,options:r})}return u(p).forEach((function(t){var e=t.destroy;t.destroy=function(t){void 0===t&&(t=!0),t&&i.forEach((function(t){t.destroy()})),i=[],n.forEach((function(t){var e=t.node,n=t.eventType,i=t.handler,r=t.options;e.removeEventListener(n,i,r)})),n=[],e()},function(t){var e=t.reference;l(e,"touchstart",f),l(e,"mouseover",f),l(e,"focusin",f),l(e,"click",f)}(t)})),p},N.hideAll=function(t){var e=void 0===t?{}:t,n=e.exclude,i=e.duration;H.forEach((function(t){var e=!1;if(n&&(e=h(n)?t.reference===n:t.popper===n.popper),!e){var r=t.props.duration;t.setProps({duration:i}),t.hide(),t.state.isDestroyed||t.setProps({duration:r})}}))},N.roundArrow='',N})); +!function(){var e=window.markdownit();delegateEvent("pointerup","[panel-toggle]",(e,t)=>{slidepanels.toggle(t.getAttribute("panel-toggle"))},{passive:!0}),window.addEventListener("hashchange",e=>slidepanels.close());let t=specConfig.source;t&&"github"===t.host&&fetch(`https://api.github.com/repos/${t.account+"/"+t.repo}/issues`).then(e=>e.json()).then(t=>{let n=t.length;document.querySelectorAll("[issue-count]").forEach(e=>{e.setAttribute("issue-count",n)}),repo_issue_list.innerHTML=t.map(t=>`
  • \n \n
    ${e.render(t.body||"")}
    \n
    \n ${t.number}\n \n ${t.title}\n \n \n
    \n
    \n
  • `).join(""),Prism.highlightAllUnder(repo_issue_list)}),mermaid.initialize({startOnLoad:!0,theme:"neutral"}),document.querySelectorAll(".chartjs").forEach(e=>{new Chart(e,JSON.parse(e.textContent))});let n=new WeakMap;delegateEvent("pointerover",".term-reference, .spec-reference",(e,t)=>{const s=t.getAttribute("data-local-href")||t.getAttribute("href")||"";let l=document.getElementById(s.replace("#",""));if(!l||n.has(t))return;let r=l.closest("dt, td:first-child");if(!r)return;let i={allowHTML:!0,inlinePositioning:!0};switch(r.tagName){case"DT":i.content=r.nextElementSibling.textContent;break;case"TD":let e=r.closest("table"),t=Array.from(r.closest("tr").children);if(t.shift(),e){let n=Array.from(e.querySelectorAll("thead th"));n.shift(),n.length&&(i.content=`\n
    ${r.textContent}
    \n \n ${n.map((e,n)=>``).join("")}\n
    ${e.textContent}:${t[n]?t[n].textContent:""}
    `)}}i.content&&n.set(t,tippy(t,i))},{passive:!0})}(); \ No newline at end of file diff --git a/assets/compiled/head.css b/assets/compiled/head.css new file mode 100644 index 0000000..64bb08e --- /dev/null +++ b/assets/compiled/head.css @@ -0,0 +1,4 @@ +slide-panels{position:fixed;top:0;left:0;height:100%;width:100%;pointer-events:none;z-index:100;contain:paint}slide-panels:before{content:" ";display:block;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.3);transition:opacity .35s ease;opacity:0;cursor:pointer;pointer-events:none}slide-panels[open]:before{opacity:1;pointer-events:all}slide-panel{display:flex;flex-direction:column;box-sizing:border-box;position:absolute;top:0;left:0;bottom:0;background:#fff;box-shadow:0 0 5px 1px rgba(0,0,0,.15);transform:translate3d(-100%,0,0);transition:transform .35s ease;z-index:1;pointer-events:all}slide-panel[options~=right]{left:auto;right:0;transform:translate3d(100%,0,0)}slide-panel[open]{transform:translate3d(0,0,0)}detail-box{display:block}detail-box>header [detail-box-toggle]{width:2em;height:2em;text-align:center;cursor:pointer}detail-box>header [detail-box-toggle]:before{content:" ";display:inline-block;width:0;height:0;border-left:.55em solid transparent;border-right:.55em solid transparent;border-top:.8em solid;vertical-align:sub;cursor:pointer}detail-box[open] header [detail-box-toggle]:before{border-top:none;border-bottom:.8em solid}detail-box>section{height:0;opacity:0;min-width:100%;transition:height .3s ease,opacity .3s;overflow:hidden}detail-box[open]>section{opacity:1}tab-panels>nav{display:flex}tab-panels>nav>*{margin-left:-2px;padding:.5em 1em;background:#e0e0e0;border:1px solid #aaa;border-radius:0;cursor:pointer}tab-panels>nav>:focus{outline:0;background:#ccc}tab-panels>nav>:first-child{border-top-left-radius:5px;border-bottom-left-radius:5px}tab-panels>nav>:last-child{border-top-right-radius:5px;border-bottom-right-radius:5px}tab-panels>nav>[selected]{color:var(--themed-element-text);background:var(--themed-element-bk);border:var(--themed-element-border);opacity:.9999}tab-panels>section{display:none}tab-panels>section[selected]{display:block} +code[class*=language-],pre[class*=language-]{color:#ccc;background:0 0;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#2d2d2d}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.block-comment,.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#999}.token.punctuation{color:#ccc}.token.attr-name,.token.deleted,.token.namespace,.token.tag{color:#e2777a}.token.function-name{color:#6196cc}.token.boolean,.token.function,.token.number{color:#f08d49}.token.class-name,.token.constant,.token.property,.token.symbol{color:#f8c555}.token.atrule,.token.builtin,.token.important,.token.keyword,.token.selector{color:#cc99cd}.token.attr-value,.token.char,.token.regex,.token.string,.token.variable{color:#7ec699}.token.entity,.token.operator,.token.url{color:#67cdcc}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.token.inserted{color:green}pre[class*=language-].line-numbers{position:relative;padding-left:3.8em;counter-reset:linenumber}pre[class*=language-].line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3.8em;width:3em;letter-spacing:-1px;border-right:1px solid #999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.line-numbers-rows>span{display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right} +@keyframes chartjs-render-animation{from{opacity:.99}to{opacity:1}}.chartjs-render-monitor{animation:chartjs-render-animation 1ms}.chartjs-size-monitor,.chartjs-size-monitor-expand,.chartjs-size-monitor-shrink{position:absolute;direction:ltr;left:0;top:0;right:0;bottom:0;overflow:hidden;pointer-events:none;visibility:hidden;z-index:-1}.chartjs-size-monitor-expand>div{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0} +:root{--base-theme-color:207,71%;--themed-element-bk:hsl(var(--base-theme-color), 40%);--themed-element-text:#fff;--themed-element-border:1px solid hsl(var(--base-theme-color), 26%);--themed-heading-text:hsl(var(--base-theme-color), 30%);--no-color:255,255,255;--faint-color:245,245,245;--dim-color:225,225,225;--low-color:200,200,200;--mid-color:100,100,100;--high-color:50,50,50;--full-color:0,0,0;--active-color:#3aaaff;--visited-color:rgb(188, 129, 255);--green-status:rgb(0, 123, 9);--light-green-status:rgb(0, 194, 13);--page-bk:rgb(var(--no-color));--page-text:rgb(var(--full-color));--page-text-hover:rgb(var(--full-color));--element-bk:rgb(var(--no-color));--element-bk-hover:rgba(var(--low-color), 0.5);--element-bk-transparent:rgba(var(--dim-color), 0.92);--element-border:rgba(var(--high-color), 0.4);--element-border-focus:rgb(var(--full-color), 0.75);--element-border-radius:3px;--element-shadow-low:0 1px 3px 0px rgba(0,0,0, 0.25);--element-shadow-mid:0 1px 3px 0px rgba(0,0,0, 0.35);--element-shadow-high:0 1px 5px 0px rgba(0,0,0, 0.45);--code-bk:#1a1e23;--input-bk:rgba(var(--dim-color), 0.6);--input-border:rgba(var(--high-color), 0.4);--header-height:48px;--header-bk:rgba(var(--low-color), 0.985);--header-text:rgb(var(--full-color));--header-border:rgba(var(--full-color), 0.1);--header-border-inverse:rgba(var(--no-color), 0.3);--text-shadow:0 1px 2px rgba(0,0,0,0.8);--svg-size:2vw;--font-size:14px}:target{scroll-margin:calc(var(--header-height)/ .75) 0 0}body:not([hashscroll]) :target{animation:highlight 1.5s .25s ease}body{margin:0;padding:0;font-family:Heebo,san-serif;line-height:1.5em;widows:2;orphans:2;word-wrap:break-word;overflow-wrap:break-word;color:#000;word-spacing:1px;counter-reset:h2 toc1}h1{font-size:2em;font-weight:700;line-height:1.2em}h2{margin:1.5em 0 1em}blockquote{position:relative;padding:0;margin:1.75em .75em;color:rgb(var(--mid-color));background:rgb(var(--faint-color))}blockquote:after,blockquote:before{content:"“";position:absolute;top:.065em;left:.065em;font-size:3em;height:.34em;line-height:100%;color:rgb(var(--low-color))}blockquote:after{content:"”";top:auto;left:auto;bottom:.065em;right:.065em;text-align:center}blockquote>p{padding:.6em 1.8em .5em 1.8em}strong strong{font-size:.9em;color:#b30032;font-weight:400;text-transform:uppercase}main article>ol,main article>ul{padding:0 0 0 2em}main article h1,main article h2,main article h3,main article h4,main article h5,main article h6{color:var(--themed-heading-text)}main article h2,main article h3,main article h4{display:flex;font-weight:500}main article h2{counter-reset:h3 h4}main article h3{counter-reset:h4}main article h2:after{counter-increment:h2;content:counter(h2) ".";padding:0 .4em 0 .2em;order:-1}main article h3:after{counter-increment:h3;content:counter(h2) "." counter(h3);padding:0 .45em 0 .2em;order:-1}main article h4:after{counter-increment:h4;content:counter(h2) "." counter(h3) "." counter(h4);padding:0 .5em 0 .2em;order:-1}h1 .toc-anchor{display:none}.toc-anchor{margin:-.1em 0 0;font-size:.875em;color:inherit;text-decoration:none;opacity:.35;order:-1;transition:opacity .3s ease}.toc-anchor:hover{opacity:1}pre{overflow:auto}code{padding:.085em .3em .1em;font-size:1.075em;color:#c7001c;vertical-align:middle;background:#f0f0f0;border-radius:4px}pre code{background:unset;padding:unset;border-radius:unset}h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{font-size:1.25em;margin:-.11em .3em 0 0;border-radius:3px}ol,ul{margin:0;padding:0 0 0 1.2em}dt{font-weight:700;margin:1em 0 0}dd{margin-left:1.5em}main{box-sizing:border-box;float:right;width:75%;min-width:calc(100% - 325px);max-width:calc(100% - 275px);padding:.5em 2em 1.5em 2em;background:#fff;box-shadow:0 0 5px -1px rgba(0,0,0,.3)}main table{display:block;width:-webkit-fill-available;width:fit-content;max-width:100%;margin:1.5em 0 1.75em;border-spacing:0;border-collapse:collapse;overflow-x:auto;word-wrap:normal;overflow-wrap:normal;hyphens:manual}main thead tr th{color:var(--themed-element-text);background:var(--themed-element-bk);border:var(--themed-element-border);text-shadow:0 1px 1px rgba(0,0,0,.5)}main tr{border-top:1px solid #ccc;background-color:#fff;margin:0;padding:0}main tr:nth-child(2n){background-color:#f0f0f0}main tr th{font-weight:400;border:1px solid #ccc;text-align:left;margin:0;padding:6px 13px}main td,main th{padding:9px 13px;border:1px solid #d8d8d8}main tr td{border:1px solid #ccc;text-align:left;margin:0;padding:.55em .75em .55em}main tr td :first-child,main tr th :first-child{margin-top:0}main tr td :last-child,main tr th :last-child{margin-bottom:0}table pre[class*=language-]{border:none;border-radius:0}table pre[class*=language-]:before{display:none}svg[icon]{width:1.25em;height:1.25em;vertical-align:text-top;pointer-events:none}article p>img{max-width:100%;margin:0 auto}article li{margin-top:.4em}slide-panel>:not(header):not(footer){flex:1}:not(pre)>code[class*=language-],pre[class*=language-]{padding:.65em .8em .8em;background:var(--code-bk)}.tippy-box{box-shadow:var(--element-shadow-mid)}.tippy-box a{color:var(--active-color)}.tippy-box a:visited{color:var(--visited-color)}.tippy-content{padding:.55em .55em .5em}.tippy-content header{margin:0 0 .4em;padding:.15em .3em .1em;border-radius:2px;background:rgba(255,255,255,.1);text-shadow:0 1px rgba(0,0,0,.9)}.tippy-content table,.tippy-content tbody,.tippy-content td,.tippy-content tr{margin:0;padding:0;border:none;border-spacing:0;border-collapse:collapse;background:0 0!important;background-color:transparent!important}.tippy-content table{margin:0 .3em}.tippy-content td{font-size:.9em;padding:.2em 0 0}.tippy-content td:first-child{padding-right:.5em}a[path-0$="github.com"]:before{content:"\f09b";color:var(--page-text);margin:0 .25em 0 0;font-family:FontAwesome;text-decoration:none;display:inline-block;vertical-align:bottom}a[path-0$="github.com"][path-3=issues][path-4],a[path-0$="github.com"][path-3=projects],a[path-0$="github.com"][path-3=pull],a[path-0$="github.com"][path-3=releases]{text-decoration:none}a[path-0$="github.com"][path-3=issues][path-4] span,a[path-0$="github.com"][path-3=projects] span,a[path-0$="github.com"][path-3=pull] span,a[path-0$="github.com"][path-3=releases] span{display:none}a[path-0$="github.com"][path-3=issues][path-4]:after{content:"Issue #" attr(path-4)}a[path-0$="github.com"][path-3=pull]:after{content:"Pull Request #" attr(path-4)}a[path-0$="github.com"][path-3=releases][path-5]:after{content:"Release " attr(path-5)}a[path-0$="github.com"][path-3=projects]:after{content:"Project #" attr(path-4)}[issue-count]:after{content:"Issues (" attr(issue-count) ")";margin:0 0 0 .3em;padding:.1em 0 0}[issue-count=""][animate]{display:none;opacity:0}[issue-count][animate]:not([issue-count=""]){animation:display-show 1s}[panel-toggle]{cursor:pointer}.panel-header{display:flex;align-items:center;height:var(--header-height)}.panel-header>*{display:flex;height:100%;padding:.1em .8em 0;align-items:center}.slide-panel{width:calc(100% - 1em);max-width:475px;transition:transform .35s ease}.slide-panel[panel-open]{transform:translateX(0)}.notice{margin:1em 0;padding:.5em .9em .55em .65em;border-left:.5em solid}.notice p{margin:.4em 0 0}.note{background:#e9fbe9;border-color:#52e052}.note .notice-link{display:block;color:#178217}.issue{background:#e9f0fb;border-color:#527fe0}.issue .notice-link:before{display:block;color:#1e4cae}.warning{background:#fbe9e9;border-color:#e05252}.warning .notice-link{display:block;color:#ae1e1e}.example{color:#cebe00;background:#1a1e23;border-left:.5em solid}.example .notice-link{display:block;color:inherit;font-size:1.1em;font-family:Heebo,san-serif}.example pre[class*=language-]{padding:0;border-radius:0}.todo{background:#fbe4ff;border-color:#9700e2}.todo .notice-link{display:block;color:#6d00a2}.mermaid{display:flex;align-items:center;justify-content:center;margin:1.5em 0 1.75em}.reference-list{margin:0;padding:0;list-style:none}.reference-list dd a,.reference-status{font-style:italic}.reference-status{color:var(--green-status)}.tippy-box .reference-status{color:var(--light-green-status)}code[class*=language-],pre,pre[class*=language-]{font-size:.9em;margin:1em 0 1.5em;border-radius:3px}.example code[class*=language-],.example pre,.example pre[class*=language-]{margin:0}#svg{display:none}#header{position:sticky;position:-webkit-sticky;padding:0;top:0;margin:-.5em -2em 0 -2em;background:rgba(255,255,255,.9);border-bottom:1px solid rgba(0,0,0,.175);box-shadow:0 1px 3px 1px rgba(0,0,0,.1);z-index:2}#logo{box-sizing:border-box;display:flex;align-items:center;height:100%;padding:.5em}#logo img{height:100%}#logo+span{margin-left:auto}#header #toc_toggle{display:none;padding:0 1em;border-right:1px solid rgba(0,0,0,.15)}#content{max-width:800px}#content h1:first-of-type{margin:1em 0 .5em}#content h1:first-of-type .markdownIt-Anchor{display:none}#repo_issues{width:calc(100% - 1.5em);max-width:450px;border-left:1px solid rgba(0,0,0,.15)}#repo_issues>header{background:#eee;border-bottom:1px solid #ddd}#repo_issues>header span:first-of-type{font-weight:700;padding-top:.1em}#repo_issues>header .repo-issue-toggle{margin-left:auto;color:inherit;font-weight:700;text-decoration:none}#repo_issue_list{list-style:none;margin:0;padding:0 1.25em 1.25em;font-size:.85em;overflow:auto;-ms-overflow-style:none;scrollbar-width:none}#repo_issue_list::-webkit-scrollbar{display:none}#repo_issue_list:empty:before{content:"No issues found";display:block;text-align:center;font-size:1.1em;color:#aaa;margin:1em 0 0}.repo-issue detail-box{display:flex;flex-direction:column;padding:1em 0;border-bottom:1px solid #ddd}.repo-issue detail-box>section{order:1}.repo-issue detail-box>section:empty+.repo-issue-title [detail-box-toggle]{display:none}.repo-issue-title{display:flex;align-items:center}.repo-issue-link{flex:1;margin:0 0 0 .5em}.repo-issue-number{height:1em;margin:0 .4em 0 0;padding:.3em .25em 0;border-radius:3px;font-weight:700;background:#eee;border:1px solid #ddd;text-align:center;line-height:1em}.repo-issue-number:before{content:"#";font-weight:400;margin:0 .1em 0 0}.repo-issue [detail-box-toggle]{margin:0 0 0 1em;opacity:.35;transition:opacity .4s}.repo-issue [detail-box-toggle]:hover,.repo-issue detail-box[open] [detail-box-toggle]{opacity:1}#toc{display:flex;flex-direction:column;width:25%;max-width:325px;min-width:275px;background:#eceff1}#toc header{color:var(--themed-element-text);background:var(--themed-element-bk);box-shadow:0 1px 3px 0 rgba(0,0,0,.3);border:var(--themed-element-border);border-top:none;border-left:none}#toc header [panel-toggle]{display:none;height:var(--header-height);line-height:var(--header-height);margin-left:auto;padding:0 1em;color:inherit;font-weight:700;text-decoration:none}#toc_list{flex:1;padding:1em .8em;overflow:auto}.toc{padding:0 0 1.75em;font-size:.85em}.toc,.toc ul{margin:0;list-style:none}.toc ul{padding:0 0 0 1em}.toc a{display:block;padding:.4em .3em .225em;text-decoration:none;border-radius:3px;color:#333}.toc a:before{color:#000;font-weight:700}.toc a:hover{text-shadow:0 1px 1px #fff;background:rgba(0,0,0,.1)}.toc>li a:before{counter-increment:toc1;content:counter(toc1) ".";padding:0 .4em 0 .2em}.toc>li>ul{counter-reset:toc2}.toc>li>ul>li a:before{counter-increment:toc2;content:counter(toc1) "." counter(toc2);padding:0 .45em 0 .2em}.toc>li>ul ul{counter-reset:toc3}.toc>li>ul ul li a:before{counter-increment:toc3;content:counter(toc1) "." counter(toc2) "." counter(toc3);padding:0 .5em 0 .2em}@media (min-width:900px){slide-panel{z-index:2}#slidepanels[open=sidebar]:before{opacity:0;transition:none;pointer-events:none}#slidepanels:before{z-index:1}#toc{transition:none;transform:translate3d(0,0,0);box-shadow:0 0 5px 1px rgba(0,0,0,.15) inset;z-index:0}}@media (max-width:900px){main{width:100%;min-width:auto;max-width:none;padding:.5em 1.25em 1.5em 1.25em}#header{margin:-.5em -1.25em 0 -1.25em}#toc header [panel-toggle]{display:block}#header #toc_toggle{display:flex}}@media (max-width:550px){td{font-size:.8em}}@keyframes display-show{0%{display:none;opacity:0}1%{display:block}100%{opacity:1}}@keyframes highlight{50%{background-color:#ff0}} \ No newline at end of file diff --git a/assets/compiled/head.js b/assets/compiled/head.js new file mode 100644 index 0000000..7ce3f3a --- /dev/null +++ b/assets/compiled/head.js @@ -0,0 +1,2 @@ +function delegateEvent(e,t,n,a={}){return(a.container||document).addEventListener(e,e=>{let a=e.target.closest(t);a&&n(e,a)},a)}skipAnimationFrame=e=>requestAnimationFrame(()=>requestAnimationFrame(e));var domReady=new Promise(e=>{document.addEventListener("DOMContentLoaded",t=>e())}); +customElements.define("slide-panels",class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.addEventListener("pointerup",e=>{e.target===this&&this.close()})}get active(){return this.getAttribute("open")}toggle(e){this.active===e?this.close():this.open(e)}open(e){this.setAttribute("open",e)}close(){this.removeAttribute("open")}attributeChangedCallback(e,t,s){switch(e){case"open":for(let e of this.children)e.id===s?e.setAttribute("open",""):e.removeAttribute("open","")}}}),customElements.define("detail-box",class extends HTMLElement{static get observedAttributes(){return["open"]}constructor(){super(),this.addEventListener("pointerup",e=>{e.target.hasAttribute("detail-box-toggle")&&(e.stopPropagation(),this.toggle())}),this.addEventListener("transitionend",e=>{let t=e.target;t.parentElement===this&&"SECTION"===t.tagName&&"height"===e.propertyName&&(t.style.height=this.hasAttribute("open")?"auto":null)})}toggle(){this.toggleAttribute("open")}attributeChangedCallback(e,t,s){switch(e){case"open":for(let e of this.children)if("SECTION"===e.tagName){if(null!==s)e.offsetHeight0){e.style.height=e.offsetHeight+"px";this.scrollHeight;e.style.height=0}break}}}}),customElements.define("tab-panels",class extends HTMLElement{constructor(){super(),delegateEvent("click","tab-panels > nav > *",(e,t)=>{let s=t.parentElement;s.parentElement===this&&this.setAttribute("selected-index",Array.prototype.indexOf.call(s.children,t))},{container:this,passive:!0})}static get observedAttributes(){return["selected-index"]}attributeChangedCallback(e,t,s){domReady.then(()=>{switch(e){case"selected-index":let e=s||0,t=this.querySelector("nav");if(t.parentElement===this){let s=t.children,i=s[e];for(let e of s)e.removeAttribute("selected");i&&i.setAttribute("selected","");let r=Array.prototype.filter.call(this.children,e=>{if("SECTION"===e.tagName)return e.removeAttribute("selected"),!0})[e];r&&r.setAttribute("selected","")}}})}}); \ No newline at end of file diff --git a/assets/compiled/refs.json b/assets/compiled/refs.json new file mode 100644 index 0000000..a0f88fd --- /dev/null +++ b/assets/compiled/refs.json @@ -0,0 +1 @@ +{"bcp0072":{"rfcNumber":"BCP0072","href":"https://www.rfc-editor.org/info/bcp72","title":"Guidelines for Writing RFC Text on Security Considerations","authors":["E. Rescorla","B. Korver","F. Gont","I. Arce"],"rawDate":"2003-07","status":"Best Current Practice","seeAlso":["RFC3552","RFC9416"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"bcp72":{"aliasOf":"bcp0072"},"rfc0001":{"rfcNumber":"RFC0001","href":"https://www.rfc-editor.org/rfc/rfc1","title":"Host Software","authors":["S. Crocker"],"rawDate":"1969-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0002":{"rfcNumber":"RFC0002","href":"https://www.rfc-editor.org/rfc/rfc2","title":"Host software","authors":["B. Duvall"],"rawDate":"1969-04","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0003":{"rfcNumber":"RFC0003","href":"https://www.rfc-editor.org/rfc/rfc3","title":"Documentation conventions","authors":["S.D. Crocker"],"rawDate":"1969-04","status":"Unknown","obsoletedBy":["RFC0010"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0004":{"rfcNumber":"RFC0004","href":"https://www.rfc-editor.org/rfc/rfc4","title":"Network timetable","authors":["E.B. Shapiro"],"rawDate":"1969-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0005":{"rfcNumber":"RFC0005","href":"https://www.rfc-editor.org/rfc/rfc5","title":"Decode Encode Language (DEL)","authors":["J. Rulifson"],"rawDate":"1969-06","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0006":{"rfcNumber":"RFC0006","href":"https://www.rfc-editor.org/rfc/rfc6","title":"Conversation with Bob Kahn","authors":["S.D. Crocker"],"rawDate":"1969-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0007":{"rfcNumber":"RFC0007","href":"https://www.rfc-editor.org/rfc/rfc7","title":"Host-IMP interface","authors":["G. Deloche"],"rawDate":"1969-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0008":{"rfcNumber":"RFC0008","href":"https://www.rfc-editor.org/rfc/rfc8","title":"ARPA Network Functional Specifications","authors":["G. Deloche"],"rawDate":"1969-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0009":{"rfcNumber":"RFC0009","href":"https://www.rfc-editor.org/rfc/rfc9","title":"Host Software","authors":["G. Deloche"],"rawDate":"1969-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0010":{"rfcNumber":"RFC0010","href":"https://www.rfc-editor.org/rfc/rfc10","title":"Documentation conventions","authors":["S.D. Crocker"],"rawDate":"1969-07","status":"Unknown","updatedBy":["RFC0024","RFC0027","RFC0030"],"obsoletedBy":["RFC0016"],"obsoletes":["RFC0003"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0011":{"rfcNumber":"RFC0011","href":"https://www.rfc-editor.org/rfc/rfc11","title":"Implementation of the Host - Host Software Procedures in GORDO","authors":["G. Deloche"],"rawDate":"1969-08","status":"Unknown","obsoletedBy":["RFC0033"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0012":{"rfcNumber":"RFC0012","href":"https://www.rfc-editor.org/rfc/rfc12","title":"IMP-Host interface flow diagrams","authors":["M. Wingfield"],"rawDate":"1969-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0013":{"rfcNumber":"RFC0013","href":"https://www.rfc-editor.org/rfc/rfc13","title":"Zero Text Length EOF Message","authors":["V. Cerf"],"rawDate":"1969-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0015":{"rfcNumber":"RFC0015","href":"https://www.rfc-editor.org/rfc/rfc15","title":"Network subsystem for time sharing hosts","authors":["C.S. Carr"],"rawDate":"1969-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0016":{"rfcNumber":"RFC0016","href":"https://www.rfc-editor.org/rfc/rfc16","title":"M.I.T","authors":["S. Crocker"],"rawDate":"1969-08","status":"Unknown","updatedBy":["RFC0024","RFC0027","RFC0030"],"obsoletedBy":["RFC0024"],"obsoletes":["RFC0010"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0017":{"rfcNumber":"RFC0017","href":"https://www.rfc-editor.org/rfc/rfc17","title":"Some questions re: Host-IMP Protocol","authors":["J.E. Kreznar"],"rawDate":"1969-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0018":{"rfcNumber":"RFC0018","href":"https://www.rfc-editor.org/rfc/rfc18","title":"IMP-IMP and HOST-HOST Control Links","authors":["V. Cerf"],"rawDate":"1969-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0019":{"rfcNumber":"RFC0019","href":"https://www.rfc-editor.org/rfc/rfc19","title":"Two protocol suggestions to reduce congestion at swap bound nodes","authors":["J.E. Kreznar"],"rawDate":"1969-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0020":{"rfcNumber":"RFC0020","href":"https://www.rfc-editor.org/rfc/rfc20","title":"ASCII format for network interchange","authors":["V.G. Cerf"],"rawDate":"1969-10","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=20","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0021":{"rfcNumber":"RFC0021","href":"https://www.rfc-editor.org/rfc/rfc21","title":"Network meeting","authors":["V.G. Cerf"],"rawDate":"1969-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0022":{"rfcNumber":"RFC0022","href":"https://www.rfc-editor.org/rfc/rfc22","title":"Host-host control message formats","authors":["V.G. Cerf"],"rawDate":"1969-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0023":{"rfcNumber":"RFC0023","href":"https://www.rfc-editor.org/rfc/rfc23","title":"Transmission of Multiple Control Messages","authors":["G. Gregg"],"rawDate":"1969-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0024":{"rfcNumber":"RFC0024","href":"https://www.rfc-editor.org/rfc/rfc24","title":"Documentation Conventions","authors":["S.D. Crocker"],"rawDate":"1969-11","status":"Unknown","updatedBy":["RFC0027","RFC0030"],"updates":["RFC0010","RFC0016"],"obsoletes":["RFC0016"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0025":{"rfcNumber":"RFC0025","href":"https://www.rfc-editor.org/rfc/rfc25","title":"No High Link Numbers","authors":["S.D. Crocker"],"rawDate":"1969-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0027":{"rfcNumber":"RFC0027","href":"https://www.rfc-editor.org/rfc/rfc27","title":"Documentation Conventions","authors":["S.D. Crocker"],"rawDate":"1969-12","status":"Unknown","updatedBy":["RFC0030"],"updates":["RFC0010","RFC0016","RFC0024"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0028":{"rfcNumber":"RFC0028","href":"https://www.rfc-editor.org/rfc/rfc28","title":"Time Standards","authors":["W.K. English"],"rawDate":"1970-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0029":{"rfcNumber":"RFC0029","href":"https://www.rfc-editor.org/rfc/rfc29","title":"Response to RFC 28","authors":["R.E. Kahn"],"rawDate":"1970-01","status":"Unknown","seeAlso":["RFC0028"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0030":{"rfcNumber":"RFC0030","href":"https://www.rfc-editor.org/rfc/rfc30","title":"Documentation Conventions","authors":["S.D. Crocker"],"rawDate":"1970-02","status":"Unknown","updates":["RFC0010","RFC0016","RFC0024","RFC0027"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0031":{"rfcNumber":"RFC0031","href":"https://www.rfc-editor.org/rfc/rfc31","title":"Binary Message Forms in Computer","authors":["D. Bobrow","W.R. Sutherland"],"rawDate":"1968-02","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=31","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0032":{"rfcNumber":"RFC0032","href":"https://www.rfc-editor.org/rfc/rfc32","title":"Some Thoughts on SRI's Proposed Real Time Clock","authors":["J. Cole"],"rawDate":"1970-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0033":{"rfcNumber":"RFC0033","href":"https://www.rfc-editor.org/rfc/rfc33","title":"New Host-Host Protocol","authors":["S.D. Crocker"],"rawDate":"1970-02","status":"Unknown","updatedBy":["RFC0036","RFC0047"],"obsoletes":["RFC0011"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=33","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0034":{"rfcNumber":"RFC0034","href":"https://www.rfc-editor.org/rfc/rfc34","title":"Some Brief Preliminary Notes on the Augmentation Research Center Clock","authors":["W.K. English"],"rawDate":"1970-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0035":{"rfcNumber":"RFC0035","href":"https://www.rfc-editor.org/rfc/rfc35","title":"Network Meeting","authors":["S.D. Crocker"],"rawDate":"1970-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0036":{"rfcNumber":"RFC0036","href":"https://www.rfc-editor.org/rfc/rfc36","title":"Protocol Notes","authors":["S.D. Crocker"],"rawDate":"1970-03","status":"Unknown","updatedBy":["RFC0039","RFC0044"],"updates":["RFC0033"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0037":{"rfcNumber":"RFC0037","href":"https://www.rfc-editor.org/rfc/rfc37","title":"Network Meeting Epilogue, etc","authors":["S.D. Crocker"],"rawDate":"1970-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0038":{"rfcNumber":"RFC0038","href":"https://www.rfc-editor.org/rfc/rfc38","title":"Comments on Network Protocol from NWG/RFC #36","authors":["S.M. Wolfe"],"rawDate":"1970-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0039":{"rfcNumber":"RFC0039","href":"https://www.rfc-editor.org/rfc/rfc39","title":"Comments on Protocol Re: NWG/RFC #36","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1970-03","status":"Unknown","updates":["RFC0036"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0040":{"rfcNumber":"RFC0040","href":"https://www.rfc-editor.org/rfc/rfc40","title":"More Comments on the Forthcoming Protocol","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1970-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0041":{"rfcNumber":"RFC0041","href":"https://www.rfc-editor.org/rfc/rfc41","title":"IMP-IMP Teletype Communication","authors":["J.T. Melvin"],"rawDate":"1970-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0042":{"rfcNumber":"RFC0042","href":"https://www.rfc-editor.org/rfc/rfc42","title":"Message Data Types","authors":["E. Ancona"],"rawDate":"1970-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0043":{"rfcNumber":"RFC0043","href":"https://www.rfc-editor.org/rfc/rfc43","title":"Proposed Meeting","authors":["A.G. Nemeth"],"rawDate":"1970-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0044":{"rfcNumber":"RFC0044","href":"https://www.rfc-editor.org/rfc/rfc44","title":"Comments on NWG/RFC 33 and 36","authors":["A. Shoshani","R. Long","A. Landsberg"],"rawDate":"1970-04","status":"Unknown","updates":["RFC0036"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0045":{"rfcNumber":"RFC0045","href":"https://www.rfc-editor.org/rfc/rfc45","title":"New Protocol is Coming","authors":["J. Postel","S.D. Crocker"],"rawDate":"1970-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0046":{"rfcNumber":"RFC0046","href":"https://www.rfc-editor.org/rfc/rfc46","title":"ARPA Network protocol notes","authors":["E. Meyer"],"rawDate":"1970-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0047":{"rfcNumber":"RFC0047","href":"https://www.rfc-editor.org/rfc/rfc47","title":"BBN's Comments on NWG/RFC #33","authors":["J. Postel","S. Crocker"],"rawDate":"1970-04","status":"Unknown","updates":["RFC0033"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0048":{"rfcNumber":"RFC0048","href":"https://www.rfc-editor.org/rfc/rfc48","title":"Possible protocol plateau","authors":["J. Postel","S.D. Crocker"],"rawDate":"1970-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0049":{"rfcNumber":"RFC0049","href":"https://www.rfc-editor.org/rfc/rfc49","title":"Conversations with S. Crocker (UCLA)","authors":["E. Meyer"],"rawDate":"1970-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0050":{"rfcNumber":"RFC0050","href":"https://www.rfc-editor.org/rfc/rfc50","title":"Comments on the Meyer Proposal","authors":["E. Harslen","J. Heafner"],"rawDate":"1970-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0051":{"rfcNumber":"RFC0051","href":"https://www.rfc-editor.org/rfc/rfc51","title":"Proposal for a Network Interchange Language","authors":["M. Elie"],"rawDate":"1970-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0052":{"rfcNumber":"RFC0052","href":"https://www.rfc-editor.org/rfc/rfc52","title":"Updated distribution list","authors":["J. Postel","S.D. Crocker"],"rawDate":"1970-07","status":"Unknown","updatedBy":["RFC0069"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0053":{"rfcNumber":"RFC0053","href":"https://www.rfc-editor.org/rfc/rfc53","title":"Official protocol mechanism","authors":["S.D. Crocker"],"rawDate":"1970-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0054":{"rfcNumber":"RFC0054","href":"https://www.rfc-editor.org/rfc/rfc54","title":"Official Protocol Proffering","authors":["S.D. Crocker","J. Postel","J. Newkirk","M. Kraley"],"rawDate":"1970-06","status":"Unknown","updatedBy":["RFC0057"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0055":{"rfcNumber":"RFC0055","href":"https://www.rfc-editor.org/rfc/rfc55","title":"Prototypical implementation of the NCP","authors":["J. Newkirk","M. Kraley","J. Postel","S.D. Crocker"],"rawDate":"1970-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0056":{"rfcNumber":"RFC0056","href":"https://www.rfc-editor.org/rfc/rfc56","title":"Third Level Protocol: Logger Protocol","authors":["E. Belove","D. Black","R. Flegal","L.G. Farquar"],"rawDate":"1970-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0057":{"rfcNumber":"RFC0057","href":"https://www.rfc-editor.org/rfc/rfc57","title":"Thoughts and Reflections on NWG/RFC 54","authors":["M. Kraley","J. Newkirk"],"rawDate":"1970-06","status":"Unknown","updates":["RFC0054"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=57","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0058":{"rfcNumber":"RFC0058","href":"https://www.rfc-editor.org/rfc/rfc58","title":"Logical Message Synchronization","authors":["T.P. Skinner"],"rawDate":"1970-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0059":{"rfcNumber":"RFC0059","href":"https://www.rfc-editor.org/rfc/rfc59","title":"Flow Control - Fixed Versus Demand Allocation","authors":["E. Meyer"],"rawDate":"1970-06","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=59","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0060":{"rfcNumber":"RFC0060","href":"https://www.rfc-editor.org/rfc/rfc60","title":"A Simplified NCP Protocol","authors":["R. Kalin"],"rawDate":"1970-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0061":{"rfcNumber":"RFC0061","href":"https://www.rfc-editor.org/rfc/rfc61","title":"Note on Interprocess Communication in a Resource Sharing Computer Network","authors":["D.C. Walden"],"rawDate":"1970-07","status":"Unknown","obsoletedBy":["RFC0062"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0062":{"rfcNumber":"RFC0062","href":"https://www.rfc-editor.org/rfc/rfc62","title":"Systems for Interprocess Communication in a Resource Sharing Computer Network","authors":["D.C. Walden"],"rawDate":"1970-08","status":"Unknown","obsoletes":["RFC0061"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0063":{"rfcNumber":"RFC0063","href":"https://www.rfc-editor.org/rfc/rfc63","title":"Belated Network Meeting Report","authors":["V.G. Cerf"],"rawDate":"1970-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0064":{"rfcNumber":"RFC0064","href":"https://www.rfc-editor.org/rfc/rfc64","title":"Getting rid of marking","authors":["M. Elie"],"rawDate":"1970-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0065":{"rfcNumber":"RFC0065","href":"https://www.rfc-editor.org/rfc/rfc65","title":"Comments on Host/Host Protocol document #1","authors":["D.C. Walden"],"rawDate":"1970-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0066":{"rfcNumber":"RFC0066","href":"https://www.rfc-editor.org/rfc/rfc66","title":"NIC - third level ideas and other noise","authors":["S.D. Crocker"],"rawDate":"1970-08","status":"Unknown","updatedBy":["RFC0080","RFC0093"],"obsoletedBy":["RFC0123"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=66","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0067":{"rfcNumber":"RFC0067","href":"https://www.rfc-editor.org/rfc/rfc67","title":"Proposed Change to Host/IMP Spec to Eliminate Marking","authors":["W.R. Crowther"],"rawDate":"1970-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0068":{"rfcNumber":"RFC0068","href":"https://www.rfc-editor.org/rfc/rfc68","title":"Comments on Memory Allocation Control Commands: CEASE, ALL, GVB, RET, and RFNM","authors":["M. Elie"],"rawDate":"1970-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0069":{"rfcNumber":"RFC0069","href":"https://www.rfc-editor.org/rfc/rfc69","title":"Distribution List Change for MIT","authors":["A.K. Bhushan"],"rawDate":"1970-09","status":"Unknown","updates":["RFC0052"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0070":{"rfcNumber":"RFC0070","href":"https://www.rfc-editor.org/rfc/rfc70","title":"Note on Padding","authors":["S.D. Crocker"],"rawDate":"1970-10","status":"Unknown","updatedBy":["RFC0228"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0071":{"rfcNumber":"RFC0071","href":"https://www.rfc-editor.org/rfc/rfc71","title":"Reallocation in Case of Input Error","authors":["T. Schipper"],"rawDate":"1970-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0072":{"rfcNumber":"RFC0072","href":"https://www.rfc-editor.org/rfc/rfc72","title":"Proposed Moratorium on Changes to Network Protocol","authors":["R.D. Bressler"],"rawDate":"1970-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0073":{"rfcNumber":"RFC0073","href":"https://www.rfc-editor.org/rfc/rfc73","title":"Response to NWG/RFC 67","authors":["S.D. Crocker"],"rawDate":"1970-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0074":{"rfcNumber":"RFC0074","href":"https://www.rfc-editor.org/rfc/rfc74","title":"Specifications for Network Use of the UCSB On-Line System","authors":["J.E. White"],"rawDate":"1970-10","status":"Unknown","updatedBy":["RFC0217","RFC0225"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0075":{"rfcNumber":"RFC0075","href":"https://www.rfc-editor.org/rfc/rfc75","title":"Network Meeting","authors":["S.D. Crocker"],"rawDate":"1970-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0076":{"rfcNumber":"RFC0076","href":"https://www.rfc-editor.org/rfc/rfc76","title":"Connection by name: User oriented protocol","authors":["J. Bouknight","J. Madden","G.R. Grossman"],"rawDate":"1970-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0077":{"rfcNumber":"RFC0077","href":"https://www.rfc-editor.org/rfc/rfc77","title":"Network meeting report","authors":["J. Postel"],"rawDate":"1970-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0078":{"rfcNumber":"RFC0078","href":"https://www.rfc-editor.org/rfc/rfc78","title":"NCP Status Report: UCSB/Rand","authors":["E. Harslem","J.F. Heafner","J.E. White"],"rawDate":"1970-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0079":{"rfcNumber":"RFC0079","href":"https://www.rfc-editor.org/rfc/rfc79","title":"Logger Protocol error","authors":["E. Meyer"],"rawDate":"1970-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0080":{"rfcNumber":"RFC0080","href":"https://www.rfc-editor.org/rfc/rfc80","title":"Protocols and Data Formats","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1970-12","status":"Unknown","updatedBy":["RFC0093"],"obsoletedBy":["RFC0123"],"updates":["RFC0066"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0081":{"rfcNumber":"RFC0081","href":"https://www.rfc-editor.org/rfc/rfc81","title":"Request for Reference Information","authors":["J. Bouknight"],"rawDate":"1970-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0082":{"rfcNumber":"RFC0082","href":"https://www.rfc-editor.org/rfc/rfc82","title":"Network Meeting Notes","authors":["E. Meyer"],"rawDate":"1970-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0083":{"rfcNumber":"RFC0083","href":"https://www.rfc-editor.org/rfc/rfc83","title":"Language-machine for data reconfiguration","authors":["R.H. Anderson","E. Harslem","J.F. Heafner"],"rawDate":"1970-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0084":{"rfcNumber":"RFC0084","href":"https://www.rfc-editor.org/rfc/rfc84","title":"List of NWG/RFC's 1-80","authors":["J.B. North"],"rawDate":"1970-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0085":{"rfcNumber":"RFC0085","href":"https://www.rfc-editor.org/rfc/rfc85","title":"Network Working Group meeting","authors":["S.D. Crocker"],"rawDate":"1970-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0086":{"rfcNumber":"RFC0086","href":"https://www.rfc-editor.org/rfc/rfc86","title":"Proposal for a Network Standard Format for a Data Stream to Control Graphics Display","authors":["S.D. Crocker"],"rawDate":"1971-01","status":"Unknown","updatedBy":["RFC0125"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=86","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0087":{"rfcNumber":"RFC0087","href":"https://www.rfc-editor.org/rfc/rfc87","title":"Topic for Discussion at the Next Network Working Group Meeting","authors":["A. Vezza"],"rawDate":"1971-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0088":{"rfcNumber":"RFC0088","href":"https://www.rfc-editor.org/rfc/rfc88","title":"NETRJS: A third level protocol for Remote Job Entry","authors":["R.T. Braden","S.M. Wolfe"],"rawDate":"1971-01","status":"Unknown","obsoletedBy":["RFC0189"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=88","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0089":{"rfcNumber":"RFC0089","href":"https://www.rfc-editor.org/rfc/rfc89","title":"Some historic moments in networking","authors":["R.M. Metcalfe"],"rawDate":"1971-01","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=89","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0090":{"rfcNumber":"RFC0090","href":"https://www.rfc-editor.org/rfc/rfc90","title":"CCN as a Network Service Center","authors":["R.T. Braden"],"rawDate":"1971-01","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=90","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0091":{"rfcNumber":"RFC0091","href":"https://www.rfc-editor.org/rfc/rfc91","title":"Proposed User-User Protocol","authors":["G.H. Mealy"],"rawDate":"1970-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0093":{"rfcNumber":"RFC0093","href":"https://www.rfc-editor.org/rfc/rfc93","title":"Initial Connection Protocol","authors":["A.M. McKenzie"],"rawDate":"1971-01","status":"Unknown","updates":["RFC0066","RFC0080"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0094":{"rfcNumber":"RFC0094","href":"https://www.rfc-editor.org/rfc/rfc94","title":"Some thoughts on Network Graphics","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1971-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0095":{"rfcNumber":"RFC0095","href":"https://www.rfc-editor.org/rfc/rfc95","title":"Distribution of NWG/RFC's through the NIC","authors":["S. Crocker"],"rawDate":"1971-02","status":"Unknown","obsoletedBy":["RFC0155"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0096":{"rfcNumber":"RFC0096","href":"https://www.rfc-editor.org/rfc/rfc96","title":"An Interactive Network Experiment to Study Modes of Access the Network Information Center","authors":["R.W. Watson"],"rawDate":"1971-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0097":{"rfcNumber":"RFC0097","href":"https://www.rfc-editor.org/rfc/rfc97","title":"First Cut at a Proposed Telnet Protocol","authors":["J.T. Melvin","R.W. Watson"],"rawDate":"1971-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0098":{"rfcNumber":"RFC0098","href":"https://www.rfc-editor.org/rfc/rfc98","title":"Logger Protocol Proposal","authors":["E. Meyer","T. Skinner"],"rawDate":"1971-02","status":"Unknown","updatedBy":["RFC0123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0099":{"rfcNumber":"RFC0099","href":"https://www.rfc-editor.org/rfc/rfc99","title":"Network Meeting","authors":["P.M. Karp"],"rawDate":"1971-02","status":"Unknown","updatedBy":["RFC0116"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0100":{"rfcNumber":"RFC0100","href":"https://www.rfc-editor.org/rfc/rfc100","title":"Categorization and guide to NWG/RFCs","authors":["P.M. Karp"],"rawDate":"1971-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0101":{"rfcNumber":"RFC0101","href":"https://www.rfc-editor.org/rfc/rfc101","title":"Notes on the Network Working Group meeting, Urbana, Illinois, February 17, 1971","authors":["R.W. Watson"],"rawDate":"1971-02","status":"Unknown","updatedBy":["RFC0108","RFC0123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0102":{"rfcNumber":"RFC0102","href":"https://www.rfc-editor.org/rfc/rfc102","title":"Output of the Host-Host Protocol glitch cleaning committee","authors":["S.D. Crocker"],"rawDate":"1971-02","status":"Unknown","updatedBy":["RFC0107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0103":{"rfcNumber":"RFC0103","href":"https://www.rfc-editor.org/rfc/rfc103","title":"Implementation of Interrupt Keys","authors":["R.B. Kalin"],"rawDate":"1971-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0104":{"rfcNumber":"RFC0104","href":"https://www.rfc-editor.org/rfc/rfc104","title":"Link 191","authors":["J.B. Postel","S.D. Crocker"],"rawDate":"1971-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0105":{"rfcNumber":"RFC0105","href":"https://www.rfc-editor.org/rfc/rfc105","title":"Network Specifications for Remote Job Entry and Remote Job Output Retrieval at UCSB","authors":["J.E. White"],"rawDate":"1971-03","status":"Unknown","updatedBy":["RFC0217"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0106":{"rfcNumber":"RFC0106","href":"https://www.rfc-editor.org/rfc/rfc106","title":"User/Server Site Protocol Network Host Questionnaire","authors":["T.C. O'Sullivan"],"rawDate":"1971-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0107":{"rfcNumber":"RFC0107","href":"https://www.rfc-editor.org/rfc/rfc107","title":"Output of the Host-Host Protocol Glitch Cleaning Committee","authors":["R.D. Bressler","S.D. Crocker","W.R. Crowther","G.R. Grossman","R.S. Tomlinson","J.E. White"],"rawDate":"1971-03","status":"Unknown","updatedBy":["RFC0111","RFC0124","RFC0132","RFC0154","RFC0179"],"updates":["RFC0102"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0108":{"rfcNumber":"RFC0108","href":"https://www.rfc-editor.org/rfc/rfc108","title":"Attendance list at the Urbana NWG meeting, February 17-19, 1971","authors":["R.W. Watson"],"rawDate":"1971-03","status":"Unknown","updates":["RFC0101"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0109":{"rfcNumber":"RFC0109","href":"https://www.rfc-editor.org/rfc/rfc109","title":"Level III Server Protocol for the Lincoln Laboratory 360/67 Host","authors":["J. Winett"],"rawDate":"1971-03","status":"Unknown","seeAlso":["RFC0393"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0110":{"rfcNumber":"RFC0110","href":"https://www.rfc-editor.org/rfc/rfc110","title":"Conventions for Using an IBM 2741 Terminal as a User Console for Access to Network Server Hosts","authors":["J. Winett"],"rawDate":"1971-03","status":"Unknown","updatedBy":["RFC0135"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0111":{"rfcNumber":"RFC0111","href":"https://www.rfc-editor.org/rfc/rfc111","title":"Pressure from the Chairman","authors":["S.D. Crocker"],"rawDate":"1971-03","status":"Unknown","updatedBy":["RFC0130"],"updates":["RFC0107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0112":{"rfcNumber":"RFC0112","href":"https://www.rfc-editor.org/rfc/rfc112","title":"User/Server Site Protocol: Network Host Questionnaire","authors":["T.C. O'Sullivan"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0113":{"rfcNumber":"RFC0113","href":"https://www.rfc-editor.org/rfc/rfc113","title":"Network activity report: UCSB Rand","authors":["E. Harslem","J.F. Heafner","J.E. White"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0227"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0114":{"rfcNumber":"RFC0114","href":"https://www.rfc-editor.org/rfc/rfc114","title":"File Transfer Protocol","authors":["A.K. Bhushan"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0133","RFC0141","RFC0171","RFC0172"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0115":{"rfcNumber":"RFC0115","href":"https://www.rfc-editor.org/rfc/rfc115","title":"Some Network Information Center policies on handling documents","authors":["R.W. Watson","J.B. North"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0116":{"rfcNumber":"RFC0116","href":"https://www.rfc-editor.org/rfc/rfc116","title":"Structure of the May NWG Meeting","authors":["S.D. Crocker"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0131","RFC0156"],"updates":["RFC0099"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0117":{"rfcNumber":"RFC0117","href":"https://www.rfc-editor.org/rfc/rfc117","title":"Some comments on the official protocol","authors":["J. Wong"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0118":{"rfcNumber":"RFC0118","href":"https://www.rfc-editor.org/rfc/rfc118","title":"Recommendations for facility documentation","authors":["R.W. Watson"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0119":{"rfcNumber":"RFC0119","href":"https://www.rfc-editor.org/rfc/rfc119","title":"Network Fortran Subprograms","authors":["M. Krilanovich"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0120":{"rfcNumber":"RFC0120","href":"https://www.rfc-editor.org/rfc/rfc120","title":"Network PL1 subprograms","authors":["M. Krilanovich"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0121":{"rfcNumber":"RFC0121","href":"https://www.rfc-editor.org/rfc/rfc121","title":"Network on-line operators","authors":["M. Krilanovich"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0122":{"rfcNumber":"RFC0122","href":"https://www.rfc-editor.org/rfc/rfc122","title":"Network specifications for UCSB's Simple-Minded File System","authors":["J.E. White"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0217","RFC0269","RFC0399","RFC0431"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0123":{"rfcNumber":"RFC0123","href":"https://www.rfc-editor.org/rfc/rfc123","title":"Proffered Official ICP","authors":["S.D. Crocker"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0127","RFC0143","RFC0148"],"obsoletedBy":["RFC0165"],"updates":["RFC0098","RFC0101"],"obsoletes":["RFC0066","RFC0080"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0124":{"rfcNumber":"RFC0124","href":"https://www.rfc-editor.org/rfc/rfc124","title":"Typographical error in RFC 107","authors":["J.T. Melvin"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0107"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=124","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0125":{"rfcNumber":"RFC0125","href":"https://www.rfc-editor.org/rfc/rfc125","title":"Response to RFC 86: Proposal for Network Standard Format for a Graphics Data Stream","authors":["J. McConnell"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0177"],"updates":["RFC0086"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0126":{"rfcNumber":"RFC0126","href":"https://www.rfc-editor.org/rfc/rfc126","title":"Graphics Facilities at Ames Research Center","authors":["J. McConnell"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0127":{"rfcNumber":"RFC0127","href":"https://www.rfc-editor.org/rfc/rfc127","title":"Comments on RFC 123","authors":["J. Postel"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0151"],"obsoletedBy":["RFC0145"],"updates":["RFC0123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0128":{"rfcNumber":"RFC0128","href":"https://www.rfc-editor.org/rfc/rfc128","title":"Bytes","authors":["J. Postel"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0129":{"rfcNumber":"RFC0129","href":"https://www.rfc-editor.org/rfc/rfc129","title":"Request for comments on socket name structure","authors":["E. Harslem","J. Heafner","E. Meyer"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0147"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0130":{"rfcNumber":"RFC0130","href":"https://www.rfc-editor.org/rfc/rfc130","title":"Response to RFC 111: Pressure from the chairman","authors":["J.F. Heafner"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0111"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0131":{"rfcNumber":"RFC0131","href":"https://www.rfc-editor.org/rfc/rfc131","title":"Response to RFC 116: May NWG meeting","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0116"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0132":{"rfcNumber":"RFC0132","href":"https://www.rfc-editor.org/rfc/rfc132","title":"Typographical Error in RFC 107","authors":["J.E. White"],"rawDate":"1971-04","status":"Unknown","obsoletedBy":["RFC0154"],"updates":["RFC0107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0133":{"rfcNumber":"RFC0133","href":"https://www.rfc-editor.org/rfc/rfc133","title":"File Transfer and Error Recovery","authors":["R.L. Sunberg"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0114"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0134":{"rfcNumber":"RFC0134","href":"https://www.rfc-editor.org/rfc/rfc134","title":"Network Graphics meeting","authors":["A. Vezza"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0135":{"rfcNumber":"RFC0135","href":"https://www.rfc-editor.org/rfc/rfc135","title":"Response to NWG/RFC 110","authors":["W. Hathaway"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0110"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0136":{"rfcNumber":"RFC0136","href":"https://www.rfc-editor.org/rfc/rfc136","title":"Host accounting and administrative procedures","authors":["R.E. Kahn"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0137":{"rfcNumber":"RFC0137","href":"https://www.rfc-editor.org/rfc/rfc137","title":"Telnet Protocol - a proposed document","authors":["T.C. O'Sullivan"],"rawDate":"1971-04","status":"Unknown","updatedBy":["RFC0139"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0138":{"rfcNumber":"RFC0138","href":"https://www.rfc-editor.org/rfc/rfc138","title":"Status report on proposed Data Reconfiguration Service","authors":["R.H. Anderson","V.G. Cerf","E. Harslem","J.F. Heafner","J. Madden","R.M. Metcalfe","A. Shoshani","J.E. White","D.C.M. Wood"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0139":{"rfcNumber":"RFC0139","href":"https://www.rfc-editor.org/rfc/rfc139","title":"Discussion of Telnet Protocol","authors":["T.C. O'Sullivan"],"rawDate":"1971-05","status":"Unknown","updatedBy":["RFC0158"],"updates":["RFC0137"],"seeAlso":["RFC0393"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0140":{"rfcNumber":"RFC0140","href":"https://www.rfc-editor.org/rfc/rfc140","title":"Agenda for the May NWG meeting","authors":["S.D. Crocker"],"rawDate":"1971-05","status":"Unknown","updatedBy":["RFC0149"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0141":{"rfcNumber":"RFC0141","href":"https://www.rfc-editor.org/rfc/rfc141","title":"Comments on RFC 114: A File Transfer Protocol","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0114"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0142":{"rfcNumber":"RFC0142","href":"https://www.rfc-editor.org/rfc/rfc142","title":"Time-Out Mechanism in the Host-Host Protocol","authors":["C. Kline","J. Wong"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0143":{"rfcNumber":"RFC0143","href":"https://www.rfc-editor.org/rfc/rfc143","title":"Regarding proffered official ICP","authors":["W. Naylor","J. Wong","C. Kline","J. Postel"],"rawDate":"1971-05","status":"Unknown","obsoletedBy":["RFC0165"],"updates":["RFC0123","RFC0145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0144":{"rfcNumber":"RFC0144","href":"https://www.rfc-editor.org/rfc/rfc144","title":"Data sharing on computer networks","authors":["A. Shoshani"],"rawDate":"1971-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0145":{"rfcNumber":"RFC0145","href":"https://www.rfc-editor.org/rfc/rfc145","title":"Initial Connection Protocol Control Commands","authors":["J. Postel"],"rawDate":"1971-05","status":"Unknown","updatedBy":["RFC0143"],"obsoletedBy":["RFC0165"],"obsoletes":["RFC0127"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0146":{"rfcNumber":"RFC0146","href":"https://www.rfc-editor.org/rfc/rfc146","title":"Views on issues relevant to data sharing on computer networks","authors":["P.M. Karp","D.B. McKay","D.C.M. Wood"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0147":{"rfcNumber":"RFC0147","href":"https://www.rfc-editor.org/rfc/rfc147","title":"Definition of a socket","authors":["J.M. Winett"],"rawDate":"1971-05","status":"Unknown","updates":["RFC0129"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0148":{"rfcNumber":"RFC0148","href":"https://www.rfc-editor.org/rfc/rfc148","title":"Comments on RFC 123","authors":["A.K. Bhushan"],"rawDate":"1971-05","status":"Unknown","updates":["RFC0123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0149":{"rfcNumber":"RFC0149","href":"https://www.rfc-editor.org/rfc/rfc149","title":"Best Laid Plans","authors":["S.D. Crocker"],"rawDate":"1971-05","status":"Unknown","updates":["RFC0140"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0150":{"rfcNumber":"RFC0150","href":"https://www.rfc-editor.org/rfc/rfc150","title":"Use of IPC Facilities: A Working Paper","authors":["R.B. Kalin"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0151":{"rfcNumber":"RFC0151","href":"https://www.rfc-editor.org/rfc/rfc151","title":"Comments on a proffered official ICP: RFCs 123, 127","authors":["A. Shoshani"],"rawDate":"1971-05","status":"Unknown","updates":["RFC0127"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0152":{"rfcNumber":"RFC0152","href":"https://www.rfc-editor.org/rfc/rfc152","title":"SRI Artificial Intelligence status report","authors":["M. Wilber"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0153":{"rfcNumber":"RFC0153","href":"https://www.rfc-editor.org/rfc/rfc153","title":"SRI ARC-NIC status","authors":["J.T. Melvin","R.W. Watson"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0154":{"rfcNumber":"RFC0154","href":"https://www.rfc-editor.org/rfc/rfc154","title":"Exposition Style","authors":["S.D. Crocker"],"rawDate":"1971-05","status":"Unknown","updates":["RFC0107"],"obsoletes":["RFC0132"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0155":{"rfcNumber":"RFC0155","href":"https://www.rfc-editor.org/rfc/rfc155","title":"ARPA Network mailing lists","authors":["J.B. North"],"rawDate":"1971-05","status":"Unknown","obsoletedBy":["RFC0168"],"obsoletes":["RFC0095"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0156":{"rfcNumber":"RFC0156","href":"https://www.rfc-editor.org/rfc/rfc156","title":"Status of the Illinois site: Response to RFC 116","authors":["J. Bouknight"],"rawDate":"1971-04","status":"Unknown","updates":["RFC0116"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0157":{"rfcNumber":"RFC0157","href":"https://www.rfc-editor.org/rfc/rfc157","title":"Invitation to the Second Symposium on Problems in the Optimization of Data Communications Systems","authors":["V.G. Cerf"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0158":{"rfcNumber":"RFC0158","href":"https://www.rfc-editor.org/rfc/rfc158","title":"Telnet Protocol: A Proposed Document","authors":["T.C. O'Sullivan"],"rawDate":"1971-05","status":"Unknown","updatedBy":["RFC0318"],"obsoletedBy":["RFC0495"],"updates":["RFC0139"],"seeAlso":["RFC0393"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0160":{"rfcNumber":"RFC0160","href":"https://www.rfc-editor.org/rfc/rfc160","title":"RFC brief list","authors":["Network Information Center. Stanford Research Institute"],"rawDate":"1971-05","status":"Unknown","obsoletedBy":["RFC0200","RFC0999"],"updates":["NIC6716"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0161":{"rfcNumber":"RFC0161","href":"https://www.rfc-editor.org/rfc/rfc161","title":"Solution to the race condition in the ICP","authors":["A. Shoshani"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0162":{"rfcNumber":"RFC0162","href":"https://www.rfc-editor.org/rfc/rfc162","title":"NETBUGGER3","authors":["M. Kampe"],"rawDate":"1971-05","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=162","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0163":{"rfcNumber":"RFC0163","href":"https://www.rfc-editor.org/rfc/rfc163","title":"Data transfer protocols","authors":["V.G. Cerf"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0164":{"rfcNumber":"RFC0164","href":"https://www.rfc-editor.org/rfc/rfc164","title":"Minutes of Network Working Group meeting, 5/16 through 5/19/71","authors":["J.F. Heafner"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0165":{"rfcNumber":"RFC0165","href":"https://www.rfc-editor.org/rfc/rfc165","title":"Proffered Official Initial Connection Protocol","authors":["J. Postel"],"rawDate":"1971-05","status":"Unknown","updatedBy":["NIC7101"],"obsoletes":["RFC0145","RFC0143","RFC0123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0166":{"rfcNumber":"RFC0166","href":"https://www.rfc-editor.org/rfc/rfc166","title":"Data Reconfiguration Service: An implementation specification","authors":["R.H. Anderson","V.G. Cerf","E. Harslem","J.F. Heafner","J. Madden","R.M. Metcalfe","A. Shoshani","J.E. White","D.C.M. Wood"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0167":{"rfcNumber":"RFC0167","href":"https://www.rfc-editor.org/rfc/rfc167","title":"Socket conventions reconsidered","authors":["A.K. Bhushan","R.M. Metcalfe","J.M. Winett"],"rawDate":"1971-05","status":"Unknown","seeAlso":["RFC0129","RFC0147"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0168":{"rfcNumber":"RFC0168","href":"https://www.rfc-editor.org/rfc/rfc168","title":"ARPA Network mailing lists","authors":["J.B. North"],"rawDate":"1971-05","status":"Unknown","obsoletedBy":["RFC0211"],"obsoletes":["RFC0155"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0169":{"rfcNumber":"RFC0169","href":"https://www.rfc-editor.org/rfc/rfc169","title":"COMPUTER NETWORKS","authors":["S.D. Crocker"],"rawDate":"1971-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0170":{"rfcNumber":"RFC0170","href":"https://www.rfc-editor.org/rfc/rfc170","title":"RFC List by Number","authors":["Network Information Center. Stanford Research Institute"],"rawDate":"1971-06","status":"Unknown","obsoletedBy":["RFC0200"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0171":{"rfcNumber":"RFC0171","href":"https://www.rfc-editor.org/rfc/rfc171","title":"The Data Transfer Protocol","authors":["A. Bhushan","B. Braden","W. Crowther","E. Harslem","J. Heafner","A. McKenize","J. Melvin","B. Sundberg","D. Watson","J. White"],"rawDate":"1971-06","status":"Unknown","updatedBy":["RFC0238"],"obsoletedBy":["RFC0264"],"updates":["RFC0114"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0172":{"rfcNumber":"RFC0172","href":"https://www.rfc-editor.org/rfc/rfc172","title":"The File Transfer Protocol","authors":["A. Bhushan","B. Braden","W. Crowther","E. Harslem","J. Heafner","A. McKenzie","J. Melvin","B. Sundberg","D. Watson","J. White"],"rawDate":"1971-06","status":"Unknown","updatedBy":["RFC0238"],"obsoletedBy":["RFC0265"],"updates":["RFC0114"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0173":{"rfcNumber":"RFC0173","href":"https://www.rfc-editor.org/rfc/rfc173","title":"Network Data Management Committee Meeting Announcement","authors":["P.M. Karp","D.B. McKay"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0174":{"rfcNumber":"RFC0174","href":"https://www.rfc-editor.org/rfc/rfc174","title":"UCLA - Computer Science Graphics Overview","authors":["J. Postel","V.G. Cerf"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0175":{"rfcNumber":"RFC0175","href":"https://www.rfc-editor.org/rfc/rfc175","title":"Comments on \"Socket Conventions Reconsidered\"","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0176":{"rfcNumber":"RFC0176","href":"https://www.rfc-editor.org/rfc/rfc176","title":"Comments on \"Byte size for connections\"","authors":["A.K. Bhushan","R. Kanodia","R.M. Metcalfe","J. Postel"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0177":{"rfcNumber":"RFC0177","href":"https://www.rfc-editor.org/rfc/rfc177","title":"Device independent graphical display description","authors":["J. McConnell"],"rawDate":"1971-06","status":"Unknown","updatedBy":["RFC0181"],"updates":["RFC0125"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0178":{"rfcNumber":"RFC0178","href":"https://www.rfc-editor.org/rfc/rfc178","title":"Network graphic attention handling","authors":["I.W. Cotton"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0179":{"rfcNumber":"RFC0179","href":"https://www.rfc-editor.org/rfc/rfc179","title":"Link Number Assignments","authors":["A.M. McKenzie"],"rawDate":"1971-06","status":"Unknown","updates":["RFC0107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0180":{"rfcNumber":"RFC0180","href":"https://www.rfc-editor.org/rfc/rfc180","title":"File system questionnaire","authors":["A.M. McKenzie"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0181":{"rfcNumber":"RFC0181","href":"https://www.rfc-editor.org/rfc/rfc181","title":"Modifications to RFC 177","authors":["J. McConnell"],"rawDate":"1971-07","status":"Unknown","updates":["RFC0177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0182":{"rfcNumber":"RFC0182","href":"https://www.rfc-editor.org/rfc/rfc182","title":"Compilation of list of relevant site reports","authors":["J.B. North"],"rawDate":"1971-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0183":{"rfcNumber":"RFC0183","href":"https://www.rfc-editor.org/rfc/rfc183","title":"EBCDIC Codes and Their Mapping to ASCII","authors":["J.M. Winett"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0184":{"rfcNumber":"RFC0184","href":"https://www.rfc-editor.org/rfc/rfc184","title":"Proposed graphic display modes","authors":["K.C. Kelley"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0185":{"rfcNumber":"RFC0185","href":"https://www.rfc-editor.org/rfc/rfc185","title":"NIC distribution of manuals and handbooks","authors":["J.B. North"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0186":{"rfcNumber":"RFC0186","href":"https://www.rfc-editor.org/rfc/rfc186","title":"Network graphics loader","authors":["J.C. Michener"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0187":{"rfcNumber":"RFC0187","href":"https://www.rfc-editor.org/rfc/rfc187","title":"Network/440 Protocol Concept","authors":["D.B. McKay","D.P. Karp"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0188":{"rfcNumber":"RFC0188","href":"https://www.rfc-editor.org/rfc/rfc188","title":"Data management meeting announcement","authors":["P.M. Karp","D.B. McKay"],"rawDate":"1971-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0189":{"rfcNumber":"RFC0189","href":"https://www.rfc-editor.org/rfc/rfc189","title":"Interim NETRJS specifications","authors":["R.T. Braden"],"rawDate":"1971-07","status":"Unknown","updatedBy":["RFC0283"],"obsoletedBy":["RFC0599"],"obsoletes":["RFC0088"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0190":{"rfcNumber":"RFC0190","href":"https://www.rfc-editor.org/rfc/rfc190","title":"DEC PDP-10-IMLAC communications system","authors":["L.P. Deutsch"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0191":{"rfcNumber":"RFC0191","href":"https://www.rfc-editor.org/rfc/rfc191","title":"Graphics implementation and conceptualization at Augmentation Research Center","authors":["C.H. Irby"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0192":{"rfcNumber":"RFC0192","href":"https://www.rfc-editor.org/rfc/rfc192","title":"Some factors which a Network Graphics Protocol must consider","authors":["R.W. Watson"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0193":{"rfcNumber":"RFC0193","href":"https://www.rfc-editor.org/rfc/rfc193","title":"NETWORK CHECKOUT","authors":["E. Harslem","J.F. Heafner"],"rawDate":"1971-07","status":"Unknown","updatedBy":["RFC0198"],"obsoletedBy":["RFC0198"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0194":{"rfcNumber":"RFC0194","href":"https://www.rfc-editor.org/rfc/rfc194","title":"The Data Reconfiguration Service -- Compiler/Interpreter Implementation Notes","authors":["V. Cerf","E. Harslem","J. Heafner","B. Metcalfe","J. White"],"rawDate":"1971-07","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=194","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0195":{"rfcNumber":"RFC0195","href":"https://www.rfc-editor.org/rfc/rfc195","title":"Data computers-data descriptions and access language","authors":["G.H. Mealy"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0196":{"rfcNumber":"RFC0196","href":"https://www.rfc-editor.org/rfc/rfc196","title":"Mail Box Protocol","authors":["R.W. Watson"],"rawDate":"1971-07","status":"Unknown","obsoletedBy":["RFC0221"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0197":{"rfcNumber":"RFC0197","href":"https://www.rfc-editor.org/rfc/rfc197","title":"Initial Connection Protocol - Reviewed","authors":["A. Shoshani","E. Harslem"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0198":{"rfcNumber":"RFC0198","href":"https://www.rfc-editor.org/rfc/rfc198","title":"Site Certification - Lincoln Labs 360/67","authors":["J.F. Heafner"],"rawDate":"1971-07","status":"Unknown","obsoletedBy":["RFC0214"],"updates":["RFC0193"],"obsoletes":["RFC0193"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0199":{"rfcNumber":"RFC0199","href":"https://www.rfc-editor.org/rfc/rfc199","title":"Suggestions for a Network Data-Tablet Graphics Protocol","authors":["T. Williams"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0200":{"rfcNumber":"RFC0200","href":"https://www.rfc-editor.org/rfc/rfc200","title":"RFC list by number","authors":["J.B. North"],"rawDate":"1971-08","status":"Unknown","obsoletedBy":["RFC-INDEX"],"obsoletes":["RFC0170","RFC0160"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0202":{"rfcNumber":"RFC0202","href":"https://www.rfc-editor.org/rfc/rfc202","title":"Possible Deadlock in ICP","authors":["S.M. Wolfe","J. Postel"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0203":{"rfcNumber":"RFC0203","href":"https://www.rfc-editor.org/rfc/rfc203","title":"Achieving reliable communication","authors":["R.B. Kalin"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0204":{"rfcNumber":"RFC0204","href":"https://www.rfc-editor.org/rfc/rfc204","title":"Sockets in use","authors":["J. Postel"],"rawDate":"1971-08","status":"Unknown","updatedBy":["RFC0234"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0205":{"rfcNumber":"RFC0205","href":"https://www.rfc-editor.org/rfc/rfc205","title":"NETCRT - a character display protocol","authors":["R.T. Braden"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0206":{"rfcNumber":"RFC0206","href":"https://www.rfc-editor.org/rfc/rfc206","title":"A User TELNET Description of an Initial Implementation","authors":["J. White"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0207":{"rfcNumber":"RFC0207","href":"https://www.rfc-editor.org/rfc/rfc207","title":"September Network Working Group meeting","authors":["A. Vezza"],"rawDate":"1971-08","status":"Unknown","obsoletedBy":["RFC0212"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0208":{"rfcNumber":"RFC0208","href":"https://www.rfc-editor.org/rfc/rfc208","title":"Address tables","authors":["A.M. McKenzie"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0209":{"rfcNumber":"RFC0209","href":"https://www.rfc-editor.org/rfc/rfc209","title":"Host/IMP interface documentation","authors":["B. Cosell"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0210":{"rfcNumber":"RFC0210","href":"https://www.rfc-editor.org/rfc/rfc210","title":"Improvement of Flow Control","authors":["W. Conrad"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0211":{"rfcNumber":"RFC0211","href":"https://www.rfc-editor.org/rfc/rfc211","title":"ARPA Network Mailing Lists","authors":["J.B. North"],"rawDate":"1971-08","status":"Unknown","obsoletedBy":["RFC0300"],"obsoletes":["RFC0168"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0212":{"rfcNumber":"RFC0212","href":"https://www.rfc-editor.org/rfc/rfc212","title":"NWG meeting on network usage","authors":["Information Sciences Institute University of Southern California"],"rawDate":"1971-08","status":"Unknown","updatedBy":["RFC0222"],"obsoletes":["RFC0207"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0213":{"rfcNumber":"RFC0213","href":"https://www.rfc-editor.org/rfc/rfc213","title":"IMP System change notification","authors":["B. Cosell"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0214":{"rfcNumber":"RFC0214","href":"https://www.rfc-editor.org/rfc/rfc214","title":"Network checkpoint","authors":["E. Harslem"],"rawDate":"1971-08","status":"Unknown","obsoletes":["RFC0198"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0215":{"rfcNumber":"RFC0215","href":"https://www.rfc-editor.org/rfc/rfc215","title":"NCP, ICP, and Telnet: The Terminal IMP implementation","authors":["A.M. McKenzie"],"rawDate":"1971-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0216":{"rfcNumber":"RFC0216","href":"https://www.rfc-editor.org/rfc/rfc216","title":"Telnet Access to UCSB's On-Line System","authors":["J.E. White"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0217":{"rfcNumber":"RFC0217","href":"https://www.rfc-editor.org/rfc/rfc217","title":"Specifications changes for OLS, RJE/RJOR, and SMFS","authors":["J.E. White"],"rawDate":"1971-09","status":"Unknown","updates":["RFC0074","RFC0105","RFC0122"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0218":{"rfcNumber":"RFC0218","href":"https://www.rfc-editor.org/rfc/rfc218","title":"Changing the IMP status reporting facility","authors":["B. Cosell"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0219":{"rfcNumber":"RFC0219","href":"https://www.rfc-editor.org/rfc/rfc219","title":"User's View of the Datacomputer","authors":["R. Winter"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0221":{"rfcNumber":"RFC0221","href":"https://www.rfc-editor.org/rfc/rfc221","title":"Mail Box Protocol: Version 2","authors":["R.W. Watson"],"rawDate":"1971-08","status":"Unknown","obsoletedBy":["RFC0278"],"obsoletes":["RFC0196"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0222":{"rfcNumber":"RFC0222","href":"https://www.rfc-editor.org/rfc/rfc222","title":"Subject: System programmer's workshop","authors":["R.M. Metcalfe"],"rawDate":"1971-09","status":"Unknown","updatedBy":["RFC0234"],"updates":["RFC0212"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0223":{"rfcNumber":"RFC0223","href":"https://www.rfc-editor.org/rfc/rfc223","title":"Network Information Center schedule for network users","authors":["J.T. Melvin","R.W. Watson"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0224":{"rfcNumber":"RFC0224","href":"https://www.rfc-editor.org/rfc/rfc224","title":"Comments on Mailbox Protocol","authors":["A.M. McKenzie"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0225":{"rfcNumber":"RFC0225","href":"https://www.rfc-editor.org/rfc/rfc225","title":"Rand/UCSB network graphics experiment","authors":["E. Harslem","R. Stoughton"],"rawDate":"1971-09","status":"Unknown","updates":["RFC0074"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0226":{"rfcNumber":"RFC0226","href":"https://www.rfc-editor.org/rfc/rfc226","title":"Standardization of host mnemonics","authors":["P.M. Karp"],"rawDate":"1971-09","status":"Unknown","obsoletedBy":["RFC0247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0227":{"rfcNumber":"RFC0227","href":"https://www.rfc-editor.org/rfc/rfc227","title":"Data transfer rates (Rand/UCLA)","authors":["J.F. Heafner","E. Harslem"],"rawDate":"1971-09","status":"Unknown","updates":["RFC0113"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0228":{"rfcNumber":"RFC0228","href":"https://www.rfc-editor.org/rfc/rfc228","title":"Clarification","authors":["D.C. Walden"],"rawDate":"1971-09","status":"Unknown","updates":["RFC0070"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0229":{"rfcNumber":"RFC0229","href":"https://www.rfc-editor.org/rfc/rfc229","title":"Standard host names","authors":["J. Postel"],"rawDate":"1971-09","status":"Unknown","obsoletedBy":["RFC0236"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0230":{"rfcNumber":"RFC0230","href":"https://www.rfc-editor.org/rfc/rfc230","title":"Toward reliable operation of minicomputer-based terminals on a TIP","authors":["T. Pyke"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0231":{"rfcNumber":"RFC0231","href":"https://www.rfc-editor.org/rfc/rfc231","title":"Service center standards for remote usage: A user's view","authors":["J.F. Heafner","E. Harslem"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0232":{"rfcNumber":"RFC0232","href":"https://www.rfc-editor.org/rfc/rfc232","title":"Postponement of network graphics meeting","authors":["A. Vezza"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0233":{"rfcNumber":"RFC0233","href":"https://www.rfc-editor.org/rfc/rfc233","title":"Standardization of host call letters","authors":["A. Bhushan","R. Metcalfe"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0234":{"rfcNumber":"RFC0234","href":"https://www.rfc-editor.org/rfc/rfc234","title":"Network Working Group meeting schedule","authors":["A. Vezza"],"rawDate":"1971-10","status":"Unknown","updates":["RFC0222","RFC0204"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0235":{"rfcNumber":"RFC0235","href":"https://www.rfc-editor.org/rfc/rfc235","title":"Site status","authors":["E. Westheimer"],"rawDate":"1971-09","status":"Unknown","obsoletedBy":["RFC0240"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0236":{"rfcNumber":"RFC0236","href":"https://www.rfc-editor.org/rfc/rfc236","title":"Standard host names","authors":["J. Postel"],"rawDate":"1971-09","status":"Unknown","obsoletes":["RFC0229"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0237":{"rfcNumber":"RFC0237","href":"https://www.rfc-editor.org/rfc/rfc237","title":"NIC view of standard host names","authors":["R.W. Watson"],"rawDate":"1971-10","status":"Unknown","obsoletedBy":["RFC0273"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0238":{"rfcNumber":"RFC0238","href":"https://www.rfc-editor.org/rfc/rfc238","title":"Comments on DTP and FTP proposals","authors":["R.T. Braden"],"rawDate":"1971-09","status":"Unknown","updates":["RFC0171","RFC0172"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0239":{"rfcNumber":"RFC0239","href":"https://www.rfc-editor.org/rfc/rfc239","title":"Host mnemonics proposed in RFC 226 (NIC 7625)","authors":["R.T. Braden"],"rawDate":"1971-09","status":"Unknown","seeAlso":["RFC0226","RFC0229","RFC0236"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0240":{"rfcNumber":"RFC0240","href":"https://www.rfc-editor.org/rfc/rfc240","title":"Site Status","authors":["A.M. McKenzie"],"rawDate":"1971-09","status":"Unknown","obsoletedBy":["RFC0252"],"obsoletes":["RFC0235"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0241":{"rfcNumber":"RFC0241","href":"https://www.rfc-editor.org/rfc/rfc241","title":"Connecting computers to MLC ports","authors":["A.M. McKenzie"],"rawDate":"1971-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0242":{"rfcNumber":"RFC0242","href":"https://www.rfc-editor.org/rfc/rfc242","title":"Data Descriptive Language for Shared Data","authors":["L. Haibt","A.P. Mullery"],"rawDate":"1971-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0243":{"rfcNumber":"RFC0243","href":"https://www.rfc-editor.org/rfc/rfc243","title":"Network and data sharing bibliography","authors":["A.P. Mullery"],"rawDate":"1971-10","status":"Unknown","obsoletedBy":["RFC0290"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0245":{"rfcNumber":"RFC0245","href":"https://www.rfc-editor.org/rfc/rfc245","title":"Reservations for Network Group meeting","authors":["C. Falls"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0246":{"rfcNumber":"RFC0246","href":"https://www.rfc-editor.org/rfc/rfc246","title":"Network Graphics meeting","authors":["A. Vezza"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0247":{"rfcNumber":"RFC0247","href":"https://www.rfc-editor.org/rfc/rfc247","title":"Proffered set of standard host names","authors":["P.M. Karp"],"rawDate":"1971-10","status":"Unknown","obsoletes":["RFC0226"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0249":{"rfcNumber":"RFC0249","href":"https://www.rfc-editor.org/rfc/rfc249","title":"Coordination of equipment and supplies purchase","authors":["R.F. Borelli"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0250":{"rfcNumber":"RFC0250","href":"https://www.rfc-editor.org/rfc/rfc250","title":"Some thoughts on file transfer","authors":["H. Brodie"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0251":{"rfcNumber":"RFC0251","href":"https://www.rfc-editor.org/rfc/rfc251","title":"Weather data","authors":["D. Stern"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0252":{"rfcNumber":"RFC0252","href":"https://www.rfc-editor.org/rfc/rfc252","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1971-10","status":"Unknown","obsoletedBy":["RFC0255"],"obsoletes":["RFC0240"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0253":{"rfcNumber":"RFC0253","href":"https://www.rfc-editor.org/rfc/rfc253","title":"Second Network Graphics meeting details","authors":["J.A. Moorer"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0254":{"rfcNumber":"RFC0254","href":"https://www.rfc-editor.org/rfc/rfc254","title":"Scenarios for using ARPANET computers","authors":["A. Bhushan"],"rawDate":"1971-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0255":{"rfcNumber":"RFC0255","href":"https://www.rfc-editor.org/rfc/rfc255","title":"Status of network hosts","authors":["E. Westheimer"],"rawDate":"1971-10","status":"Unknown","obsoletedBy":["RFC0266"],"obsoletes":["RFC0252"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0256":{"rfcNumber":"RFC0256","href":"https://www.rfc-editor.org/rfc/rfc256","title":"IMPSYS change notification","authors":["B. Cosell"],"rawDate":"1971-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0263":{"rfcNumber":"RFC0263","href":"https://www.rfc-editor.org/rfc/rfc263","title":"\"Very Distant\" Host interface","authors":["A.M. McKenzie"],"rawDate":"1971-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0264":{"rfcNumber":"RFC0264","href":"https://www.rfc-editor.org/rfc/rfc264","title":"The Data Transfer Protocol","authors":["A. Bhushan","B. Braden","W. Crowther","E. Harslem","J. Heafner","A. McKenize","B. Sundberg","D. Watson","J. White"],"rawDate":"1972-01","status":"Unknown","updatedBy":["RFC0310"],"obsoletedBy":["RFC0354"],"obsoletes":["RFC0171"],"seeAlso":["RFC0265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0265":{"rfcNumber":"RFC0265","href":"https://www.rfc-editor.org/rfc/rfc265","title":"The File Transfer Protocol","authors":["A. Bhushan","B. Braden","W. Crowther","E. Harslem","J. Heafner","A. McKenzie","J. Melvin","B. Sundberg","D. Watson","J. White"],"rawDate":"1971-11","status":"Unknown","updatedBy":["RFC0281","RFC0294","RFC0310"],"obsoletedBy":["RFC0354"],"obsoletes":["RFC0172"],"seeAlso":["RFC0264"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0266":{"rfcNumber":"RFC0266","href":"https://www.rfc-editor.org/rfc/rfc266","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1971-11","status":"Unknown","obsoletedBy":["RFC0267"],"obsoletes":["RFC0255"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0267":{"rfcNumber":"RFC0267","href":"https://www.rfc-editor.org/rfc/rfc267","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1971-11","status":"Unknown","obsoletedBy":["RFC0287"],"obsoletes":["RFC0266"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0268":{"rfcNumber":"RFC0268","href":"https://www.rfc-editor.org/rfc/rfc268","title":"Graphics facilities information","authors":["J. Postel"],"rawDate":"1971-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0269":{"rfcNumber":"RFC0269","href":"https://www.rfc-editor.org/rfc/rfc269","title":"Some Experience with File Transfer","authors":["H. Brodie"],"rawDate":"1971-12","status":"Unknown","updates":["RFC0122"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0270":{"rfcNumber":"RFC0270","href":"https://www.rfc-editor.org/rfc/rfc270","title":"Correction to BBN Report No. 1822 (NIC NO 7958)","authors":["A.M. McKenzie"],"rawDate":"1972-01","status":"Unknown","updates":["NIC7959"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=270","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0271":{"rfcNumber":"RFC0271","href":"https://www.rfc-editor.org/rfc/rfc271","title":"IMP System change notifications","authors":["B. Cosell"],"rawDate":"1972-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0273":{"rfcNumber":"RFC0273","href":"https://www.rfc-editor.org/rfc/rfc273","title":"More on standard host names","authors":["R.W. Watson"],"rawDate":"1971-10","status":"Unknown","obsoletes":["RFC0237"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0274":{"rfcNumber":"RFC0274","href":"https://www.rfc-editor.org/rfc/rfc274","title":"Establishing a local guide for network usage","authors":["E. Forman"],"rawDate":"1971-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0276":{"rfcNumber":"RFC0276","href":"https://www.rfc-editor.org/rfc/rfc276","title":"NIC course","authors":["R.W. Watson"],"rawDate":"1971-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0278":{"rfcNumber":"RFC0278","href":"https://www.rfc-editor.org/rfc/rfc278","title":"Revision of the Mail Box Protocol","authors":["A.K. Bhushan","R.T. Braden","E. Harslem","J.F. Heafner","A.M. McKenzie","J.T. Melvin","R.L. Sundberg","R.W. Watson","J.E. White"],"rawDate":"1971-11","status":"Unknown","obsoletes":["RFC0221"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0280":{"rfcNumber":"RFC0280","href":"https://www.rfc-editor.org/rfc/rfc280","title":"A Draft of Host Names","authors":["R.W. Watson"],"rawDate":"1971-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0281":{"rfcNumber":"RFC0281","href":"https://www.rfc-editor.org/rfc/rfc281","title":"Suggested addition to File Transfer Protocol","authors":["A.M. McKenzie"],"rawDate":"1971-12","status":"Unknown","updates":["RFC0265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0282":{"rfcNumber":"RFC0282","href":"https://www.rfc-editor.org/rfc/rfc282","title":"Graphics meeting report","authors":["M.A. Padlipsky"],"rawDate":"1971-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0283":{"rfcNumber":"RFC0283","href":"https://www.rfc-editor.org/rfc/rfc283","title":"NETRJT: Remote Job Service Protocol for TIPS","authors":["R.T. Braden"],"rawDate":"1971-12","status":"Unknown","updates":["RFC0189"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0285":{"rfcNumber":"RFC0285","href":"https://www.rfc-editor.org/rfc/rfc285","title":"Network graphics","authors":["D. Huff"],"rawDate":"1971-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0286":{"rfcNumber":"RFC0286","href":"https://www.rfc-editor.org/rfc/rfc286","title":"Network Library Information System","authors":["E. Forman"],"rawDate":"1971-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0287":{"rfcNumber":"RFC0287","href":"https://www.rfc-editor.org/rfc/rfc287","title":"Status of Network Hosts","authors":["E. Westheimer"],"rawDate":"1971-12","status":"Unknown","obsoletedBy":["RFC0288"],"obsoletes":["RFC0267"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0288":{"rfcNumber":"RFC0288","href":"https://www.rfc-editor.org/rfc/rfc288","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1972-01","status":"Unknown","updatedBy":["RFC0293"],"obsoletedBy":["RFC0293"],"obsoletes":["RFC0287"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0289":{"rfcNumber":"RFC0289","href":"https://www.rfc-editor.org/rfc/rfc289","title":"What we hope is an official list of host names","authors":["R.W. Watson"],"rawDate":"1971-12","status":"Unknown","obsoletedBy":["RFC0384"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0290":{"rfcNumber":"RFC0290","href":"https://www.rfc-editor.org/rfc/rfc290","title":"Computer networks and data sharing: A bibliography","authors":["A.P. Mullery"],"rawDate":"1972-01","status":"Unknown","obsoletes":["RFC0243"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0291":{"rfcNumber":"RFC0291","href":"https://www.rfc-editor.org/rfc/rfc291","title":"Data Management Meeting Announcement","authors":["D.B. McKay"],"rawDate":"1972-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0292":{"rfcNumber":"RFC0292","href":"https://www.rfc-editor.org/rfc/rfc292","title":"Graphics Protocol: Level 0 only","authors":["J.C. Michener","I.W. Cotton","K.C. Kelley","D.E. Liddle","E. Meyer"],"rawDate":"1972-01","status":"Unknown","obsoletedBy":["RFC0493"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0293":{"rfcNumber":"RFC0293","href":"https://www.rfc-editor.org/rfc/rfc293","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-01","status":"Unknown","obsoletedBy":["RFC0298"],"updates":["RFC0288"],"obsoletes":["RFC0288"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0294":{"rfcNumber":"RFC0294","href":"https://www.rfc-editor.org/rfc/rfc294","title":"The Use of \"Set Data Type\" Transaction in File Transfer Protocol","authors":["A.K. Bhushan"],"rawDate":"1972-01","status":"Unknown","updates":["RFC0265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0295":{"rfcNumber":"RFC0295","href":"https://www.rfc-editor.org/rfc/rfc295","title":"Report of the Protocol Workshop, 12 October 1971","authors":["J. Postel"],"rawDate":"1972-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0296":{"rfcNumber":"RFC0296","href":"https://www.rfc-editor.org/rfc/rfc296","title":"DS-1 Display System","authors":["D.E. Liddle"],"rawDate":"1972-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0297":{"rfcNumber":"RFC0297","href":"https://www.rfc-editor.org/rfc/rfc297","title":"TIP Message Buffers","authors":["D.C. Walden"],"rawDate":"1972-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0298":{"rfcNumber":"RFC0298","href":"https://www.rfc-editor.org/rfc/rfc298","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1972-02","status":"Unknown","obsoletedBy":["RFC0306"],"obsoletes":["RFC0293"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0299":{"rfcNumber":"RFC0299","href":"https://www.rfc-editor.org/rfc/rfc299","title":"Information Management System","authors":["D. Hopkin"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0300":{"rfcNumber":"RFC0300","href":"https://www.rfc-editor.org/rfc/rfc300","title":"ARPA Network mailing lists","authors":["J.B. North"],"rawDate":"1972-01","status":"Unknown","obsoletedBy":["RFC0303"],"obsoletes":["RFC0211"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0301":{"rfcNumber":"RFC0301","href":"https://www.rfc-editor.org/rfc/rfc301","title":"BBN IMP (#5) and NCC Schedule March 4, 1971","authors":["R. Alter"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0302":{"rfcNumber":"RFC0302","href":"https://www.rfc-editor.org/rfc/rfc302","title":"Exercising The ARPANET","authors":["R.F. Bryan"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0303":{"rfcNumber":"RFC0303","href":"https://www.rfc-editor.org/rfc/rfc303","title":"ARPA Network mailing lists","authors":["Network Information Center. Stanford Research Institute"],"rawDate":"1972-03","status":"Unknown","obsoletedBy":["RFC0329"],"obsoletes":["RFC0300"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0304":{"rfcNumber":"RFC0304","href":"https://www.rfc-editor.org/rfc/rfc304","title":"Data Management System Proposal for the ARPA Network","authors":["D.B. McKay"],"rawDate":"1972-02","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=304","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0305":{"rfcNumber":"RFC0305","href":"https://www.rfc-editor.org/rfc/rfc305","title":"Unknown Host Numbers","authors":["R. Alter"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0306":{"rfcNumber":"RFC0306","href":"https://www.rfc-editor.org/rfc/rfc306","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1972-02","status":"Unknown","obsoletedBy":["RFC0315"],"obsoletes":["RFC0298"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0307":{"rfcNumber":"RFC0307","href":"https://www.rfc-editor.org/rfc/rfc307","title":"Using network Remote Job Entry","authors":["E. Harslem"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0308":{"rfcNumber":"RFC0308","href":"https://www.rfc-editor.org/rfc/rfc308","title":"ARPANET host availability data","authors":["M. Seriff"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0309":{"rfcNumber":"RFC0309","href":"https://www.rfc-editor.org/rfc/rfc309","title":"Data and File Transfer Workshop Announcement","authors":["A.K. Bhushan"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0310":{"rfcNumber":"RFC0310","href":"https://www.rfc-editor.org/rfc/rfc310","title":"Another Look at Data and File Transfer Protocols","authors":["A.K. Bhushan"],"rawDate":"1972-04","status":"Unknown","updates":["RFC0264","RFC0265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0311":{"rfcNumber":"RFC0311","href":"https://www.rfc-editor.org/rfc/rfc311","title":"New Console Attachments to the USCB Host","authors":["R.F. Bryan"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0312":{"rfcNumber":"RFC0312","href":"https://www.rfc-editor.org/rfc/rfc312","title":"Proposed Change in IMP-to-Host Protocol","authors":["A.M. McKenzie"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0313":{"rfcNumber":"RFC0313","href":"https://www.rfc-editor.org/rfc/rfc313","title":"Computer based instruction","authors":["T.C. O'Sullivan"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0314":{"rfcNumber":"RFC0314","href":"https://www.rfc-editor.org/rfc/rfc314","title":"Network Graphics Working Group Meeting","authors":["I.W. Cotton"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0315":{"rfcNumber":"RFC0315","href":"https://www.rfc-editor.org/rfc/rfc315","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-03","status":"Unknown","obsoletedBy":["RFC0319"],"obsoletes":["RFC0306"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0316":{"rfcNumber":"RFC0316","href":"https://www.rfc-editor.org/rfc/rfc316","title":"ARPA Network Data Management Working Group","authors":["D.B. McKay","A.P. Mullery"],"rawDate":"1972-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0317":{"rfcNumber":"RFC0317","href":"https://www.rfc-editor.org/rfc/rfc317","title":"Official Host-Host Protocol Modification: Assigned Link Numbers","authors":["J. Postel"],"rawDate":"1972-03","status":"Unknown","obsoletedBy":["RFC0604"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0318":{"rfcNumber":"RFC0318","href":"https://www.rfc-editor.org/rfc/rfc318","title":"Telnet Protocols","authors":["J. Postel"],"rawDate":"1972-04","status":"Unknown","updatedBy":["RFC0435"],"updates":["RFC0158"],"seeAlso":["RFC0139","RFC0158"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0319":{"rfcNumber":"RFC0319","href":"https://www.rfc-editor.org/rfc/rfc319","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-03","status":"Unknown","updatedBy":["RFC0326"],"obsoletes":["RFC0315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0320":{"rfcNumber":"RFC0320","href":"https://www.rfc-editor.org/rfc/rfc320","title":"Workshop on Hard Copy Line Graphics","authors":["R. Reddy"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0321":{"rfcNumber":"RFC0321","href":"https://www.rfc-editor.org/rfc/rfc321","title":"CBI Networking Activity at MITRE","authors":["P.M. Karp"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0322":{"rfcNumber":"RFC0322","href":"https://www.rfc-editor.org/rfc/rfc322","title":"Well known socket numbers","authors":["V. Cerf","J. Postel"],"rawDate":"1972-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0323":{"rfcNumber":"RFC0323","href":"https://www.rfc-editor.org/rfc/rfc323","title":"Formation of Network Measurement Group (NMG)","authors":["V. Cerf"],"rawDate":"1972-03","status":"Unknown","updatedBy":["RFC0388"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0324":{"rfcNumber":"RFC0324","href":"https://www.rfc-editor.org/rfc/rfc324","title":"RJE Protocol meeting","authors":["J. Postel"],"rawDate":"1972-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0325":{"rfcNumber":"RFC0325","href":"https://www.rfc-editor.org/rfc/rfc325","title":"Network Remote Job Entry program - NETRJS","authors":["G. Hicks"],"rawDate":"1972-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0326":{"rfcNumber":"RFC0326","href":"https://www.rfc-editor.org/rfc/rfc326","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-04","status":"Unknown","obsoletedBy":["RFC0330"],"updates":["RFC0319"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0327":{"rfcNumber":"RFC0327","href":"https://www.rfc-editor.org/rfc/rfc327","title":"Data and File Transfer workshop notes","authors":["A.K. Bhushan"],"rawDate":"1972-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0328":{"rfcNumber":"RFC0328","href":"https://www.rfc-editor.org/rfc/rfc328","title":"Suggested Telnet Protocol Changes","authors":["J. Postel"],"rawDate":"1972-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0329":{"rfcNumber":"RFC0329","href":"https://www.rfc-editor.org/rfc/rfc329","title":"ARPA Network Mailing Lists","authors":["Network Information Center. Stanford Research Institute"],"rawDate":"1972-05","status":"Unknown","obsoletedBy":["RFC0363"],"obsoletes":["RFC0303"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0330":{"rfcNumber":"RFC0330","href":"https://www.rfc-editor.org/rfc/rfc330","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-04","status":"Unknown","updatedBy":["RFC0332"],"obsoletes":["RFC0326"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0331":{"rfcNumber":"RFC0331","href":"https://www.rfc-editor.org/rfc/rfc331","title":"IMP System Change Notification","authors":["J.M. McQuillan"],"rawDate":"1972-04","status":"Unknown","obsoletedBy":["RFC0343"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0332":{"rfcNumber":"RFC0332","href":"https://www.rfc-editor.org/rfc/rfc332","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-04","status":"Unknown","obsoletedBy":["RFC0342"],"updates":["RFC0330"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0333":{"rfcNumber":"RFC0333","href":"https://www.rfc-editor.org/rfc/rfc333","title":"Proposed experiment with a Message Switching Protocol","authors":["R.D. Bressler","D. Murphy","D.C. Walden"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0334":{"rfcNumber":"RFC0334","href":"https://www.rfc-editor.org/rfc/rfc334","title":"Network Use on May 8","authors":["A.M. McKenzie"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0335":{"rfcNumber":"RFC0335","href":"https://www.rfc-editor.org/rfc/rfc335","title":"New Interface - IMP/360","authors":["R.F. Bryan"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0336":{"rfcNumber":"RFC0336","href":"https://www.rfc-editor.org/rfc/rfc336","title":"Level 0 Graphic Input Protocol","authors":["I.W. Cotton"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0338":{"rfcNumber":"RFC0338","href":"https://www.rfc-editor.org/rfc/rfc338","title":"EBCDIC/ASCII Mapping for Network RJE","authors":["R.T. Braden"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0339":{"rfcNumber":"RFC0339","href":"https://www.rfc-editor.org/rfc/rfc339","title":"MLTNET: A \"Multi Telnet\" Subsystem for Tenex","authors":["R. Thomas"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0340":{"rfcNumber":"RFC0340","href":"https://www.rfc-editor.org/rfc/rfc340","title":"Proposed Telnet Changes","authors":["T.C. O'Sullivan"],"rawDate":"1972-05","status":"Unknown","seeAlso":["RFC0328"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0342":{"rfcNumber":"RFC0342","href":"https://www.rfc-editor.org/rfc/rfc342","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-05","status":"Unknown","obsoletedBy":["RFC0344"],"obsoletes":["RFC0332"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0343":{"rfcNumber":"RFC0343","href":"https://www.rfc-editor.org/rfc/rfc343","title":"IMP System change notification","authors":["A.M. McKenzie"],"rawDate":"1972-05","status":"Unknown","obsoletedBy":["RFC0359"],"obsoletes":["RFC0331"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0344":{"rfcNumber":"RFC0344","href":"https://www.rfc-editor.org/rfc/rfc344","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-05","status":"Unknown","obsoletedBy":["RFC0353"],"obsoletes":["RFC0342"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0345":{"rfcNumber":"RFC0345","href":"https://www.rfc-editor.org/rfc/rfc345","title":"Interest in Mixed Integer Programming (MPSX on NIC 360/91 at CCN)","authors":["K.C. Kelley"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0346":{"rfcNumber":"RFC0346","href":"https://www.rfc-editor.org/rfc/rfc346","title":"Satellite Considerations","authors":["J. Postel"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0347":{"rfcNumber":"RFC0347","href":"https://www.rfc-editor.org/rfc/rfc347","title":"Echo process","authors":["J. Postel"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0348":{"rfcNumber":"RFC0348","href":"https://www.rfc-editor.org/rfc/rfc348","title":"Discard Process","authors":["J. Postel"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0349":{"rfcNumber":"RFC0349","href":"https://www.rfc-editor.org/rfc/rfc349","title":"Proposed Standard Socket Numbers","authors":["J. Postel"],"rawDate":"1972-05","status":"Unknown","obsoletedBy":["RFC0433"],"seeAlso":["RFC0204","RFC0322"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0350":{"rfcNumber":"RFC0350","href":"https://www.rfc-editor.org/rfc/rfc350","title":"User Accounts for UCSB On-Line System","authors":["R. Stoughton"],"rawDate":"1972-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0351":{"rfcNumber":"RFC0351","href":"https://www.rfc-editor.org/rfc/rfc351","title":"Graphics information form for the ARPANET graphics resources notebook","authors":["D. Crocker"],"rawDate":"1972-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0352":{"rfcNumber":"RFC0352","href":"https://www.rfc-editor.org/rfc/rfc352","title":"TIP Site Information Form","authors":["D. Crocker"],"rawDate":"1972-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0353":{"rfcNumber":"RFC0353","href":"https://www.rfc-editor.org/rfc/rfc353","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1972-06","status":"Unknown","obsoletedBy":["RFC0362"],"obsoletes":["RFC0344"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0354":{"rfcNumber":"RFC0354","href":"https://www.rfc-editor.org/rfc/rfc354","title":"File Transfer Protocol","authors":["A.K. Bhushan"],"rawDate":"1972-07","status":"Unknown","updatedBy":["RFC0385","RFC0454","RFC0683"],"obsoletedBy":["RFC0542"],"obsoletes":["RFC0264","RFC0265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0355":{"rfcNumber":"RFC0355","href":"https://www.rfc-editor.org/rfc/rfc355","title":"Response to NWG/RFC 346","authors":["J. Davidson"],"rawDate":"1972-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0356":{"rfcNumber":"RFC0356","href":"https://www.rfc-editor.org/rfc/rfc356","title":"ARPA Network Control Center","authors":["R. Alter"],"rawDate":"1972-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0357":{"rfcNumber":"RFC0357","href":"https://www.rfc-editor.org/rfc/rfc357","title":"Echoing strategy for satellite links","authors":["J. Davidson"],"rawDate":"1972-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0359":{"rfcNumber":"RFC0359","href":"https://www.rfc-editor.org/rfc/rfc359","title":"Status of the Release of the New IMP System (2600)","authors":["D.C. Walden"],"rawDate":"1972-06","status":"Unknown","obsoletes":["RFC0343"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0360":{"rfcNumber":"RFC0360","href":"https://www.rfc-editor.org/rfc/rfc360","title":"Proposed Remote Job Entry Protocol","authors":["C. Holland"],"rawDate":"1972-06","status":"Unknown","obsoletedBy":["RFC0407"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0361":{"rfcNumber":"RFC0361","href":"https://www.rfc-editor.org/rfc/rfc361","title":"Deamon Processes on Host 106","authors":["R.D. Bressler"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0362":{"rfcNumber":"RFC0362","href":"https://www.rfc-editor.org/rfc/rfc362","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-06","status":"Unknown","obsoletedBy":["RFC0366"],"obsoletes":["RFC0353"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0363":{"rfcNumber":"RFC0363","href":"https://www.rfc-editor.org/rfc/rfc363","title":"ARPA Network mailing lists","authors":["Network Information Center. Stanford Research Institute"],"rawDate":"1972-08","status":"Unknown","obsoletedBy":["RFC0402"],"obsoletes":["RFC0329"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0364":{"rfcNumber":"RFC0364","href":"https://www.rfc-editor.org/rfc/rfc364","title":"Serving remote users on the ARPANET","authors":["M.D. Abrams"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0365":{"rfcNumber":"RFC0365","href":"https://www.rfc-editor.org/rfc/rfc365","title":"Letter to All TIP Users","authors":["D.C. Walden"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0366":{"rfcNumber":"RFC0366","href":"https://www.rfc-editor.org/rfc/rfc366","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-07","status":"Unknown","obsoletedBy":["RFC0367"],"obsoletes":["RFC0362"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0367":{"rfcNumber":"RFC0367","href":"https://www.rfc-editor.org/rfc/rfc367","title":"Network host status","authors":["E. Westheimer"],"rawDate":"1972-07","status":"Unknown","obsoletedBy":["RFC0370"],"obsoletes":["RFC0366"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0368":{"rfcNumber":"RFC0368","href":"https://www.rfc-editor.org/rfc/rfc368","title":"Comments on \"Proposed Remote Job Entry Protocol\"","authors":["R.T. Braden"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0369":{"rfcNumber":"RFC0369","href":"https://www.rfc-editor.org/rfc/rfc369","title":"Evaluation of ARPANET services January-March, 1972","authors":["J.R. Pickens"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0370":{"rfcNumber":"RFC0370","href":"https://www.rfc-editor.org/rfc/rfc370","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-07","status":"Unknown","updatedBy":["RFC0376"],"obsoletes":["RFC0367"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0371":{"rfcNumber":"RFC0371","href":"https://www.rfc-editor.org/rfc/rfc371","title":"Demonstration at International Computer Communications Conference","authors":["R.E. Kahn"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0372":{"rfcNumber":"RFC0372","href":"https://www.rfc-editor.org/rfc/rfc372","title":"Notes on a Conversation with Bob Kahn on the ICCC","authors":["R.W. Watson"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0373":{"rfcNumber":"RFC0373","href":"https://www.rfc-editor.org/rfc/rfc373","title":"Arbitrary Character Sets","authors":["J. McCarthy"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0374":{"rfcNumber":"RFC0374","href":"https://www.rfc-editor.org/rfc/rfc374","title":"IMP System Announcement","authors":["A.M. McKenzie"],"rawDate":"1972-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0376":{"rfcNumber":"RFC0376","href":"https://www.rfc-editor.org/rfc/rfc376","title":"Network Host Status","authors":["E. Westheimer"],"rawDate":"1972-08","status":"Unknown","updates":["RFC0370"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0377":{"rfcNumber":"RFC0377","href":"https://www.rfc-editor.org/rfc/rfc377","title":"Using TSO via ARPA Network Virtual Terminal","authors":["R.T. Braden"],"rawDate":"1972-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0378":{"rfcNumber":"RFC0378","href":"https://www.rfc-editor.org/rfc/rfc378","title":"Traffic statistics (July 1972)","authors":["A.M. McKenzie"],"rawDate":"1972-08","status":"Unknown","obsoletedBy":["RFC0391"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0379":{"rfcNumber":"RFC0379","href":"https://www.rfc-editor.org/rfc/rfc379","title":"Using TSO at CCN","authors":["R. Braden"],"rawDate":"1972-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0381":{"rfcNumber":"RFC0381","href":"https://www.rfc-editor.org/rfc/rfc381","title":"Three aids to improved network operation","authors":["J.M. McQuillan"],"rawDate":"1972-07","status":"Unknown","updatedBy":["RFC0394"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0382":{"rfcNumber":"RFC0382","href":"https://www.rfc-editor.org/rfc/rfc382","title":"Mathematical Software on the ARPA Network","authors":["L. McDaniel"],"rawDate":"1972-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0384":{"rfcNumber":"RFC0384","href":"https://www.rfc-editor.org/rfc/rfc384","title":"Official site idents for organizations in the ARPA Network","authors":["J.B. North"],"rawDate":"1972-08","status":"Unknown","obsoletes":["RFC0289"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0385":{"rfcNumber":"RFC0385","href":"https://www.rfc-editor.org/rfc/rfc385","title":"Comments on the File Transfer Protocol","authors":["A.K. Bhushan"],"rawDate":"1972-08","status":"Unknown","updatedBy":["RFC0414"],"updates":["RFC0354"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0386":{"rfcNumber":"RFC0386","href":"https://www.rfc-editor.org/rfc/rfc386","title":"Letter to TIP users-2","authors":["B. Cosell","D.C. Walden"],"rawDate":"1972-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0387":{"rfcNumber":"RFC0387","href":"https://www.rfc-editor.org/rfc/rfc387","title":"Some experiences in implementing Network Graphics Protocol Level 0","authors":["K.C. Kelley","J. Meir"],"rawDate":"1972-08","status":"Unknown","updatedBy":["RFC0401"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0388":{"rfcNumber":"RFC0388","href":"https://www.rfc-editor.org/rfc/rfc388","title":"NCP statistics","authors":["V. Cerf"],"rawDate":"1972-08","status":"Unknown","updates":["RFC0323"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0389":{"rfcNumber":"RFC0389","href":"https://www.rfc-editor.org/rfc/rfc389","title":"UCLA Campus Computing Network Liaison Staff for ARPA Network","authors":["B. Noble"],"rawDate":"1972-08","status":"Unknown","obsoletedBy":["RFC0423"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0390":{"rfcNumber":"RFC0390","href":"https://www.rfc-editor.org/rfc/rfc390","title":"TSO Scenario","authors":["R.T. Braden"],"rawDate":"1972-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0391":{"rfcNumber":"RFC0391","href":"https://www.rfc-editor.org/rfc/rfc391","title":"Traffic statistics (August 1972)","authors":["A.M. McKenzie"],"rawDate":"1972-09","status":"Unknown","obsoletes":["RFC0378"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0392":{"rfcNumber":"RFC0392","href":"https://www.rfc-editor.org/rfc/rfc392","title":"Measurement of host costs for transmitting network data","authors":["G. Hicks","B.D. Wessler"],"rawDate":"1972-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0393":{"rfcNumber":"RFC0393","href":"https://www.rfc-editor.org/rfc/rfc393","title":"Comments on Telnet Protocol Changes","authors":["J.M. Winett"],"rawDate":"1972-10","status":"Unknown","seeAlso":["RFC0109","RFC0139","RFC0158","RFC0318","RFC0328"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0394":{"rfcNumber":"RFC0394","href":"https://www.rfc-editor.org/rfc/rfc394","title":"Two Proposed Changes to the IMP-Host Protocol","authors":["J.M. McQuillan"],"rawDate":"1972-09","status":"Unknown","updates":["RFC0381"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0395":{"rfcNumber":"RFC0395","href":"https://www.rfc-editor.org/rfc/rfc395","title":"Switch Settings on IMPs and TIPs","authors":["J.M. McQuillan"],"rawDate":"1972-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0396":{"rfcNumber":"RFC0396","href":"https://www.rfc-editor.org/rfc/rfc396","title":"Network Graphics Working Group Meeting - Second Iteration","authors":["S. Bunch"],"rawDate":"1972-11","status":"Unknown","updatedBy":["RFC0474"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0398":{"rfcNumber":"RFC0398","href":"https://www.rfc-editor.org/rfc/rfc398","title":"UCSB Online Graphics","authors":["J.R. Pickens","E. Faeh"],"rawDate":"1972-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0399":{"rfcNumber":"RFC0399","href":"https://www.rfc-editor.org/rfc/rfc399","title":"SMFS Login and Logout","authors":["M. Krilanovich"],"rawDate":"1972-09","status":"Unknown","obsoletedBy":["RFC0431"],"updates":["RFC0122"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0400":{"rfcNumber":"RFC0400","href":"https://www.rfc-editor.org/rfc/rfc400","title":"Traffic Statistics (September 1972)","authors":["A.M. McKenzie"],"rawDate":"1972-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0401":{"rfcNumber":"RFC0401","href":"https://www.rfc-editor.org/rfc/rfc401","title":"Conversion of NGP-0 Coordinates to Device Specific Coordinates","authors":["J. Hansen"],"rawDate":"1972-10","status":"Unknown","updates":["RFC0387"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0402":{"rfcNumber":"RFC0402","href":"https://www.rfc-editor.org/rfc/rfc402","title":"ARPA Network Mailing Lists","authors":["J.B. North"],"rawDate":"1972-10","status":"Unknown","obsoletes":["RFC0363"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0403":{"rfcNumber":"RFC0403","href":"https://www.rfc-editor.org/rfc/rfc403","title":"Desirability of a Network 1108 Service","authors":["G. Hicks"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0404":{"rfcNumber":"RFC0404","href":"https://www.rfc-editor.org/rfc/rfc404","title":"Host Address Changes Involving Rand and ISI","authors":["A.M. McKenzie"],"rawDate":"1972-10","status":"Unknown","updatedBy":["RFC0405"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0405":{"rfcNumber":"RFC0405","href":"https://www.rfc-editor.org/rfc/rfc405","title":"Correction to RFC 404","authors":["A.M. McKenzie"],"rawDate":"1972-10","status":"Unknown","updates":["RFC0404"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0406":{"rfcNumber":"RFC0406","href":"https://www.rfc-editor.org/rfc/rfc406","title":"Scheduled IMP Software Releases","authors":["J.M. McQuillan"],"rawDate":"1972-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0407":{"rfcNumber":"RFC0407","href":"https://www.rfc-editor.org/rfc/rfc407","title":"Remote Job Entry Protocol","authors":["R.D. Bressler","R. Guida","A.M. McKenzie"],"rawDate":"1972-10","status":"Historic","obsoletes":["RFC0360"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0408":{"rfcNumber":"RFC0408","href":"https://www.rfc-editor.org/rfc/rfc408","title":"NETBANK","authors":["A.D. Owen","J. Postel"],"rawDate":"1972-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0409":{"rfcNumber":"RFC0409","href":"https://www.rfc-editor.org/rfc/rfc409","title":"Tenex interface to UCSB's Simple-Minded File System","authors":["J.E. White"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0410":{"rfcNumber":"RFC0410","href":"https://www.rfc-editor.org/rfc/rfc410","title":"Removal of the 30-Second Delay When Hosts Come Up","authors":["J.M. McQuillan"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0411":{"rfcNumber":"RFC0411","href":"https://www.rfc-editor.org/rfc/rfc411","title":"New MULTICS Network Software Features","authors":["M.A. Padlipsky"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0412":{"rfcNumber":"RFC0412","href":"https://www.rfc-editor.org/rfc/rfc412","title":"User FTP Documentation","authors":["G. Hicks"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0413":{"rfcNumber":"RFC0413","href":"https://www.rfc-editor.org/rfc/rfc413","title":"Traffic statistics (October 1972)","authors":["A.M. McKenzie"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0414":{"rfcNumber":"RFC0414","href":"https://www.rfc-editor.org/rfc/rfc414","title":"File Transfer Protocol (FTP) status and further comments","authors":["A.K. Bhushan"],"rawDate":"1972-12","status":"Unknown","updates":["RFC0385"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0415":{"rfcNumber":"RFC0415","href":"https://www.rfc-editor.org/rfc/rfc415","title":"Tenex bandwidth","authors":["H. Murray"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0416":{"rfcNumber":"RFC0416","href":"https://www.rfc-editor.org/rfc/rfc416","title":"ARC System Will Be Unavailable for Use During Thanksgiving Week","authors":["J.C. Norton"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0417":{"rfcNumber":"RFC0417","href":"https://www.rfc-editor.org/rfc/rfc417","title":"Link usage violation","authors":["J. Postel","C. Kline"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0418":{"rfcNumber":"RFC0418","href":"https://www.rfc-editor.org/rfc/rfc418","title":"Server File Transfer Under TSS/360 At NASA-Ames Research Center","authors":["W. Hathaway"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0419":{"rfcNumber":"RFC0419","href":"https://www.rfc-editor.org/rfc/rfc419","title":"To: Network liaisons and station agents","authors":["A. Vezza"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0420":{"rfcNumber":"RFC0420","href":"https://www.rfc-editor.org/rfc/rfc420","title":"CCA ICCC weather demo","authors":["H. Murray"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0421":{"rfcNumber":"RFC0421","href":"https://www.rfc-editor.org/rfc/rfc421","title":"Software Consulting Service for Network Users","authors":["A.M. McKenzie"],"rawDate":"1972-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0422":{"rfcNumber":"RFC0422","href":"https://www.rfc-editor.org/rfc/rfc422","title":"Traffic statistics (November 1972)","authors":["A.M. McKenzie"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0423":{"rfcNumber":"RFC0423","href":"https://www.rfc-editor.org/rfc/rfc423","title":"UCLA Campus Computing Network Liaison Staff for ARPANET","authors":["B. Noble"],"rawDate":"1972-12","status":"Unknown","obsoletes":["RFC0389"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0425":{"rfcNumber":"RFC0425","href":"https://www.rfc-editor.org/rfc/rfc425","title":"\"But my NCP costs $500 a day\"","authors":["R.D. Bressler"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0426":{"rfcNumber":"RFC0426","href":"https://www.rfc-editor.org/rfc/rfc426","title":"Reconnection Protocol","authors":["R. Thomas"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0429":{"rfcNumber":"RFC0429","href":"https://www.rfc-editor.org/rfc/rfc429","title":"Character Generator Process","authors":["J. Postel"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0430":{"rfcNumber":"RFC0430","href":"https://www.rfc-editor.org/rfc/rfc430","title":"Comments on File Transfer Protocol","authors":["R.T. Braden"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0431":{"rfcNumber":"RFC0431","href":"https://www.rfc-editor.org/rfc/rfc431","title":"Update on SMFS Login and Logout","authors":["M. Krilanovich"],"rawDate":"1972-12","status":"Unknown","updates":["RFC0122"],"obsoletes":["RFC0399"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0432":{"rfcNumber":"RFC0432","href":"https://www.rfc-editor.org/rfc/rfc432","title":"Network logical map","authors":["N. Neigus"],"rawDate":"1972-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0433":{"rfcNumber":"RFC0433","href":"https://www.rfc-editor.org/rfc/rfc433","title":"Socket number list","authors":["J. Postel"],"rawDate":"1972-12","status":"Unknown","obsoletedBy":["RFC0503"],"obsoletes":["RFC0349"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0434":{"rfcNumber":"RFC0434","href":"https://www.rfc-editor.org/rfc/rfc434","title":"IMP/TIP memory retrofit schedule","authors":["A.M. McKenzie"],"rawDate":"1973-01","status":"Unknown","obsoletedBy":["RFC0447"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0435":{"rfcNumber":"RFC0435","href":"https://www.rfc-editor.org/rfc/rfc435","title":"Telnet issues","authors":["B. Cosell","D.C. Walden"],"rawDate":"1973-01","status":"Unknown","updates":["RFC0318"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0436":{"rfcNumber":"RFC0436","href":"https://www.rfc-editor.org/rfc/rfc436","title":"Announcement of RJS at UCSB","authors":["M. Krilanovich"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0437":{"rfcNumber":"RFC0437","href":"https://www.rfc-editor.org/rfc/rfc437","title":"Data Reconfiguration Service at UCSB","authors":["E. Faeh"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0438":{"rfcNumber":"RFC0438","href":"https://www.rfc-editor.org/rfc/rfc438","title":"FTP server-server interaction","authors":["R. Thomas","R. Clements"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0439":{"rfcNumber":"RFC0439","href":"https://www.rfc-editor.org/rfc/rfc439","title":"PARRY encounters the DOCTOR","authors":["V. Cerf"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0440":{"rfcNumber":"RFC0440","href":"https://www.rfc-editor.org/rfc/rfc440","title":"Scheduled network software maintenance","authors":["D.C. Walden"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0441":{"rfcNumber":"RFC0441","href":"https://www.rfc-editor.org/rfc/rfc441","title":"Inter-Entity Communication - an experiment","authors":["R.D. Bressler","R. Thomas"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0442":{"rfcNumber":"RFC0442","href":"https://www.rfc-editor.org/rfc/rfc442","title":"Current flow-control scheme for IMPSYS","authors":["V. Cerf"],"rawDate":"1973-01","status":"Unknown","updatedBy":["RFC0449"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0443":{"rfcNumber":"RFC0443","href":"https://www.rfc-editor.org/rfc/rfc443","title":"Traffic statistics (December 1972)","authors":["A.M. McKenzie"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0445":{"rfcNumber":"RFC0445","href":"https://www.rfc-editor.org/rfc/rfc445","title":"IMP/TIP preventive maintenance schedule","authors":["A.M. McKenzie"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0446":{"rfcNumber":"RFC0446","href":"https://www.rfc-editor.org/rfc/rfc446","title":"Proposal to consider a network program resource notebook","authors":["L.P. Deutsch"],"rawDate":"1973-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0447":{"rfcNumber":"RFC0447","href":"https://www.rfc-editor.org/rfc/rfc447","title":"IMP/TIP memory retrofit schedule","authors":["A.M. McKenzie"],"rawDate":"1973-01","status":"Unknown","obsoletedBy":["RFC0476"],"obsoletes":["RFC0434"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0448":{"rfcNumber":"RFC0448","href":"https://www.rfc-editor.org/rfc/rfc448","title":"Print files in FTP","authors":["R.T. Braden"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0449":{"rfcNumber":"RFC0449","href":"https://www.rfc-editor.org/rfc/rfc449","title":"Current flow-control scheme for IMPSYS","authors":["D.C. Walden"],"rawDate":"1973-01","status":"Unknown","updates":["RFC0442"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0450":{"rfcNumber":"RFC0450","href":"https://www.rfc-editor.org/rfc/rfc450","title":"MULTICS sampling timeout change","authors":["M.A. Padlipsky"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0451":{"rfcNumber":"RFC0451","href":"https://www.rfc-editor.org/rfc/rfc451","title":"Tentative proposal for a Unified User Level Protocol","authors":["M.A. Padlipsky"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0452":{"rfcNumber":"RFC0452","href":"https://www.rfc-editor.org/rfc/rfc452","title":"TELNET Command at Host LL","authors":["J. Winett"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0453":{"rfcNumber":"RFC0453","href":"https://www.rfc-editor.org/rfc/rfc453","title":"Meeting announcement to discuss a network mail system","authors":["M.D. Kudlick"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0454":{"rfcNumber":"RFC0454","href":"https://www.rfc-editor.org/rfc/rfc454","title":"File Transfer Protocol - meeting announcement and a new proposed document","authors":["A.M. McKenzie"],"rawDate":"1973-02","status":"Unknown","updates":["RFC0354"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0455":{"rfcNumber":"RFC0455","href":"https://www.rfc-editor.org/rfc/rfc455","title":"Traffic statistics (January 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0456":{"rfcNumber":"RFC0456","href":"https://www.rfc-editor.org/rfc/rfc456","title":"Memorandum: Date change of mail meeting","authors":["M.D. Kudlick"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0457":{"rfcNumber":"RFC0457","href":"https://www.rfc-editor.org/rfc/rfc457","title":"TIPUG","authors":["D.C. Walden"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0458":{"rfcNumber":"RFC0458","href":"https://www.rfc-editor.org/rfc/rfc458","title":"Mail retrieval via FTP","authors":["R.D. Bressler","R. Thomas"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0459":{"rfcNumber":"RFC0459","href":"https://www.rfc-editor.org/rfc/rfc459","title":"Network questionnaires","authors":["W. Kantrowitz"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0460":{"rfcNumber":"RFC0460","href":"https://www.rfc-editor.org/rfc/rfc460","title":"NCP survey","authors":["C. Kline"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0461":{"rfcNumber":"RFC0461","href":"https://www.rfc-editor.org/rfc/rfc461","title":"Telnet Protocol meeting announcement","authors":["A.M. McKenzie"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0462":{"rfcNumber":"RFC0462","href":"https://www.rfc-editor.org/rfc/rfc462","title":"Responding to user needs","authors":["J. Iseli","D. Crocker"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0463":{"rfcNumber":"RFC0463","href":"https://www.rfc-editor.org/rfc/rfc463","title":"FTP comments and response to RFC 430","authors":["A.K. Bhushan"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0464":{"rfcNumber":"RFC0464","href":"https://www.rfc-editor.org/rfc/rfc464","title":"Resource notebook framework","authors":["M.D. Kudlick"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0466":{"rfcNumber":"RFC0466","href":"https://www.rfc-editor.org/rfc/rfc466","title":"Telnet logger/server for host LL-67","authors":["J.M. Winett"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0467":{"rfcNumber":"RFC0467","href":"https://www.rfc-editor.org/rfc/rfc467","title":"Proposed change to Host-Host Protocol: Resynchronization of connection status","authors":["J.D. Burchfiel","R.S. Tomlinson"],"rawDate":"1973-02","status":"Unknown","updatedBy":["RFC0492"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0468":{"rfcNumber":"RFC0468","href":"https://www.rfc-editor.org/rfc/rfc468","title":"FTP data compression","authors":["R.T. Braden"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0469":{"rfcNumber":"RFC0469","href":"https://www.rfc-editor.org/rfc/rfc469","title":"Network mail meeting summary","authors":["M.D. Kudlick"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0470":{"rfcNumber":"RFC0470","href":"https://www.rfc-editor.org/rfc/rfc470","title":"Change in socket for TIP news facility","authors":["R. Thomas"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0471":{"rfcNumber":"RFC0471","href":"https://www.rfc-editor.org/rfc/rfc471","title":"Workshop on multi-site executive programs","authors":["R. Thomas"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0472":{"rfcNumber":"RFC0472","href":"https://www.rfc-editor.org/rfc/rfc472","title":"Illinois' reply to Maxwell's request for graphics information (NIC 14925)","authors":["S. Bunch"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0473":{"rfcNumber":"RFC0473","href":"https://www.rfc-editor.org/rfc/rfc473","title":"MIX and MIXAL?","authors":["D.C. Walden"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0474":{"rfcNumber":"RFC0474","href":"https://www.rfc-editor.org/rfc/rfc474","title":"Announcement of NGWG meeting: Call for papers","authors":["S. Bunch"],"rawDate":"1973-03","status":"Unknown","updates":["RFC0396"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0475":{"rfcNumber":"RFC0475","href":"https://www.rfc-editor.org/rfc/rfc475","title":"FTP and Network Mail System","authors":["A.K. Bhushan"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0476":{"rfcNumber":"RFC0476","href":"https://www.rfc-editor.org/rfc/rfc476","title":"IMP/TIP memory retrofit schedule (rev 2)","authors":["A.M. McKenzie"],"rawDate":"1973-03","status":"Unknown","obsoletes":["RFC0447"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0477":{"rfcNumber":"RFC0477","href":"https://www.rfc-editor.org/rfc/rfc477","title":"Remote Job Service at UCSB","authors":["M. Krilanovich"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0478":{"rfcNumber":"RFC0478","href":"https://www.rfc-editor.org/rfc/rfc478","title":"FTP server-server interaction - II","authors":["R.D. Bressler","R. Thomas"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0479":{"rfcNumber":"RFC0479","href":"https://www.rfc-editor.org/rfc/rfc479","title":"Use of FTP by the NIC Journal","authors":["J.E. White"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0480":{"rfcNumber":"RFC0480","href":"https://www.rfc-editor.org/rfc/rfc480","title":"Host-dependent FTP parameters","authors":["J.E. White"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0482":{"rfcNumber":"RFC0482","href":"https://www.rfc-editor.org/rfc/rfc482","title":"Traffic statistics (February 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-03","status":"Unknown","updatedBy":["RFC0497"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0483":{"rfcNumber":"RFC0483","href":"https://www.rfc-editor.org/rfc/rfc483","title":"Cancellation of the resource notebook framework meeting","authors":["M.D. Kudlick"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0485":{"rfcNumber":"RFC0485","href":"https://www.rfc-editor.org/rfc/rfc485","title":"MIX and MIXAL at UCSB","authors":["J.R. Pickens"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0486":{"rfcNumber":"RFC0486","href":"https://www.rfc-editor.org/rfc/rfc486","title":"Data transfer revisited","authors":["R.D. Bressler"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0487":{"rfcNumber":"RFC0487","href":"https://www.rfc-editor.org/rfc/rfc487","title":"Free file transfer","authors":["R.D. Bressler"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0488":{"rfcNumber":"RFC0488","href":"https://www.rfc-editor.org/rfc/rfc488","title":"NLS classes at network sites","authors":["M.F. Auerbach"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0489":{"rfcNumber":"RFC0489","href":"https://www.rfc-editor.org/rfc/rfc489","title":"Comment on resynchronization of connection status proposal","authors":["J. Postel"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0490":{"rfcNumber":"RFC0490","href":"https://www.rfc-editor.org/rfc/rfc490","title":"Surrogate RJS for UCLA-CCN","authors":["J.R. Pickens"],"rawDate":"1973-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0491":{"rfcNumber":"RFC0491","href":"https://www.rfc-editor.org/rfc/rfc491","title":"What is \"Free\"?","authors":["M.A. Padlipsky"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0492":{"rfcNumber":"RFC0492","href":"https://www.rfc-editor.org/rfc/rfc492","title":"Response to RFC 467","authors":["E. Meyer"],"rawDate":"1973-04","status":"Unknown","updates":["RFC0467"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0493":{"rfcNumber":"RFC0493","href":"https://www.rfc-editor.org/rfc/rfc493","title":"GRAPHICS PROTOCOL","authors":["J.C. Michener","I.W. Cotton","K.C. Kelley","D.E. Liddle","E. Meyer"],"rawDate":"1973-04","status":"Unknown","obsoletes":["RFC0292"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0494":{"rfcNumber":"RFC0494","href":"https://www.rfc-editor.org/rfc/rfc494","title":"Availability of MIX and MIXAL in the Network","authors":["D.C. Walden"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0495":{"rfcNumber":"RFC0495","href":"https://www.rfc-editor.org/rfc/rfc495","title":"Telnet Protocol specifications","authors":["A.M. McKenzie"],"rawDate":"1973-05","status":"Unknown","updatedBy":["RFC0562"],"obsoletes":["RFC0158"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0496":{"rfcNumber":"RFC0496","href":"https://www.rfc-editor.org/rfc/rfc496","title":"TNLS quick reference card is available","authors":["M.F. Auerbach"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0497":{"rfcNumber":"RFC0497","href":"https://www.rfc-editor.org/rfc/rfc497","title":"Traffic Statistics (March 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-04","status":"Unknown","updates":["RFC0482"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0498":{"rfcNumber":"RFC0498","href":"https://www.rfc-editor.org/rfc/rfc498","title":"On mail service to CCN","authors":["R.T. Braden"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0499":{"rfcNumber":"RFC0499","href":"https://www.rfc-editor.org/rfc/rfc499","title":"Harvard's network RJE","authors":["B.R. Reussow"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0500":{"rfcNumber":"RFC0500","href":"https://www.rfc-editor.org/rfc/rfc500","title":"Integration of data management systems on a computer network","authors":["A. Shoshani","I. Spiegler"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0501":{"rfcNumber":"RFC0501","href":"https://www.rfc-editor.org/rfc/rfc501","title":"Un-muddling \"free file transfer\"","authors":["K.T. Pogran"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0503":{"rfcNumber":"RFC0503","href":"https://www.rfc-editor.org/rfc/rfc503","title":"Socket number list","authors":["N. Neigus","J. Postel"],"rawDate":"1973-04","status":"Unknown","obsoletedBy":["RFC0739"],"obsoletes":["RFC0433"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0504":{"rfcNumber":"RFC0504","href":"https://www.rfc-editor.org/rfc/rfc504","title":"Distributed resources workshop announcement","authors":["R. Thomas"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0505":{"rfcNumber":"RFC0505","href":"https://www.rfc-editor.org/rfc/rfc505","title":"Two solutions to a file transfer access problem","authors":["M.A. Padlipsky"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0506":{"rfcNumber":"RFC0506","href":"https://www.rfc-editor.org/rfc/rfc506","title":"FTP command naming problem","authors":["M.A. Padlipsky"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0508":{"rfcNumber":"RFC0508","href":"https://www.rfc-editor.org/rfc/rfc508","title":"Real-time data transmission on the ARPANET","authors":["L. Pfeifer","J. McAfee"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0509":{"rfcNumber":"RFC0509","href":"https://www.rfc-editor.org/rfc/rfc509","title":"Traffic statistics (April 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0510":{"rfcNumber":"RFC0510","href":"https://www.rfc-editor.org/rfc/rfc510","title":"Request for network mailbox addresses","authors":["J.E. White"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0511":{"rfcNumber":"RFC0511","href":"https://www.rfc-editor.org/rfc/rfc511","title":"Enterprise phone service to NIC from ARPANET sites","authors":["J.B. North"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0512":{"rfcNumber":"RFC0512","href":"https://www.rfc-editor.org/rfc/rfc512","title":"More on lost message detection","authors":["W. Hathaway"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0513":{"rfcNumber":"RFC0513","href":"https://www.rfc-editor.org/rfc/rfc513","title":"Comments on the new Telnet specifications","authors":["W. Hathaway"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0514":{"rfcNumber":"RFC0514","href":"https://www.rfc-editor.org/rfc/rfc514","title":"Network make-work","authors":["W. Kantrowitz"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0515":{"rfcNumber":"RFC0515","href":"https://www.rfc-editor.org/rfc/rfc515","title":"Specifications for Datalanguage, Version 0/9","authors":["R. Winter"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0516":{"rfcNumber":"RFC0516","href":"https://www.rfc-editor.org/rfc/rfc516","title":"Lost message detection","authors":["J. Postel"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0518":{"rfcNumber":"RFC0518","href":"https://www.rfc-editor.org/rfc/rfc518","title":"ARPANET accounts","authors":["N. Vaughan","E.J. Feinler"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0519":{"rfcNumber":"RFC0519","href":"https://www.rfc-editor.org/rfc/rfc519","title":"Resource Evaluation","authors":["J.R. Pickens"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0520":{"rfcNumber":"RFC0520","href":"https://www.rfc-editor.org/rfc/rfc520","title":"Memo to FTP group: Proposal for File Access Protocol","authors":["J.D. Day"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0521":{"rfcNumber":"RFC0521","href":"https://www.rfc-editor.org/rfc/rfc521","title":"Restricted use of IMP DDT","authors":["A.M. McKenzie"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0522":{"rfcNumber":"RFC0522","href":"https://www.rfc-editor.org/rfc/rfc522","title":"Traffic Statistics (May 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-06","status":"Unknown","updates":["RFC0509"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0523":{"rfcNumber":"RFC0523","href":"https://www.rfc-editor.org/rfc/rfc523","title":"SURVEY is in operation again","authors":["A.K. Bhushan"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0524":{"rfcNumber":"RFC0524","href":"https://www.rfc-editor.org/rfc/rfc524","title":"Proposed Mail Protocol","authors":["J.E. White"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0525":{"rfcNumber":"RFC0525","href":"https://www.rfc-editor.org/rfc/rfc525","title":"MIT-MATHLAB meets UCSB-OLS -an example of resource sharing","authors":["W. Parrish","J.R. Pickens"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0526":{"rfcNumber":"RFC0526","href":"https://www.rfc-editor.org/rfc/rfc526","title":"Technical meeting: Digital image processing software systems","authors":["W.K. Pratt"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0527":{"rfcNumber":"RFC0527","href":"https://www.rfc-editor.org/rfc/rfc527","title":"ARPAWOCKY","authors":["R. Merryman"],"rawDate":"1973-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0528":{"rfcNumber":"RFC0528","href":"https://www.rfc-editor.org/rfc/rfc528","title":"Software checksumming in the IMP and network reliability","authors":["J.M. McQuillan"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0529":{"rfcNumber":"RFC0529","href":"https://www.rfc-editor.org/rfc/rfc529","title":"Note on protocol synch sequences","authors":["A.M. McKenzie","R. Thomas","R.S. Tomlinson","K.T. Pogran"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0530":{"rfcNumber":"RFC0530","href":"https://www.rfc-editor.org/rfc/rfc530","title":"Report on the Survey Project","authors":["A.K. Bhushan"],"rawDate":"1973-06","status":"Unknown","updates":["RFC0308","RFC0523"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0531":{"rfcNumber":"RFC0531","href":"https://www.rfc-editor.org/rfc/rfc531","title":"Feast or famine? A response to two recent RFC's about network information","authors":["M.A. Padlipsky"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0532":{"rfcNumber":"RFC0532","href":"https://www.rfc-editor.org/rfc/rfc532","title":"UCSD-CC Server-FTP facility","authors":["R.G. Merryman"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0533":{"rfcNumber":"RFC0533","href":"https://www.rfc-editor.org/rfc/rfc533","title":"Message-ID numbers","authors":["D.C. Walden"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0534":{"rfcNumber":"RFC0534","href":"https://www.rfc-editor.org/rfc/rfc534","title":"Lost message detection","authors":["D.C. Walden"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0535":{"rfcNumber":"RFC0535","href":"https://www.rfc-editor.org/rfc/rfc535","title":"Comments on File Access Protocol","authors":["R. Thomas"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0537":{"rfcNumber":"RFC0537","href":"https://www.rfc-editor.org/rfc/rfc537","title":"Announcement of NGG meeting July 16-17","authors":["S. Bunch"],"rawDate":"1973-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0538":{"rfcNumber":"RFC0538","href":"https://www.rfc-editor.org/rfc/rfc538","title":"Traffic statistics (June 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-07","status":"Unknown","updatedBy":["RFC0556"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0539":{"rfcNumber":"RFC0539","href":"https://www.rfc-editor.org/rfc/rfc539","title":"Thoughts on the mail protocol proposed in RFC 524","authors":["D. Crocker","J. Postel"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0542":{"rfcNumber":"RFC0542","href":"https://www.rfc-editor.org/rfc/rfc542","title":"File Transfer Protocol","authors":["N. Neigus"],"rawDate":"1973-08","status":"Unknown","updatedBy":["RFC0614","RFC0640"],"obsoletedBy":["RFC0765"],"obsoletes":["RFC0354"],"seeAlso":["RFC0454","RFC0495"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=542","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0543":{"rfcNumber":"RFC0543","href":"https://www.rfc-editor.org/rfc/rfc543","title":"Network journal submission and delivery","authors":["N.D. Meyer"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0544":{"rfcNumber":"RFC0544","href":"https://www.rfc-editor.org/rfc/rfc544","title":"Locating on-line documentation at SRI-ARC","authors":["N.D. Meyer","K. Kelley"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0545":{"rfcNumber":"RFC0545","href":"https://www.rfc-editor.org/rfc/rfc545","title":"Of what quality be the UCSB resources evaluators?","authors":["J.R. Pickens"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0546":{"rfcNumber":"RFC0546","href":"https://www.rfc-editor.org/rfc/rfc546","title":"Tenex load averages for July 1973","authors":["R. Thomas"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0547":{"rfcNumber":"RFC0547","href":"https://www.rfc-editor.org/rfc/rfc547","title":"Change to the Very Distant Host specification","authors":["D.C. Walden"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0548":{"rfcNumber":"RFC0548","href":"https://www.rfc-editor.org/rfc/rfc548","title":"Hosts using the IMP Going Down message","authors":["D.C. Walden"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0549":{"rfcNumber":"RFC0549","href":"https://www.rfc-editor.org/rfc/rfc549","title":"Minutes of Network Graphics Group meeting, 15-17 July 1973","authors":["J.C. Michener"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0550":{"rfcNumber":"RFC0550","href":"https://www.rfc-editor.org/rfc/rfc550","title":"NIC NCP experiment","authors":["L.P. Deutsch"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0551":{"rfcNumber":"RFC0551","href":"https://www.rfc-editor.org/rfc/rfc551","title":"NYU, ANL, and LBL Joining the Net","authors":["Y. Feinroth","R. Fink"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0552":{"rfcNumber":"RFC0552","href":"https://www.rfc-editor.org/rfc/rfc552","title":"Single access to standard protocols","authors":["A.D. Owen"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0553":{"rfcNumber":"RFC0553","href":"https://www.rfc-editor.org/rfc/rfc553","title":"Draft design for a text/graphics protocol","authors":["C.H. Irby","K. Victor"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0555":{"rfcNumber":"RFC0555","href":"https://www.rfc-editor.org/rfc/rfc555","title":"Responses to critiques of the proposed mail protocol","authors":["J.E. White"],"rawDate":"1973-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0556":{"rfcNumber":"RFC0556","href":"https://www.rfc-editor.org/rfc/rfc556","title":"Traffic Statistics (July 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-08","status":"Unknown","updates":["RFC0538"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0557":{"rfcNumber":"RFC0557","href":"https://www.rfc-editor.org/rfc/rfc557","title":"REVELATIONS IN NETWORK HOST MEASUREMENTS","authors":["B.D. Wessler"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0559":{"rfcNumber":"RFC0559","href":"https://www.rfc-editor.org/rfc/rfc559","title":"Comments on The New Telnet Protocol and its Implementation","authors":["A.K. Bushan"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0560":{"rfcNumber":"RFC0560","href":"https://www.rfc-editor.org/rfc/rfc560","title":"Remote Controlled Transmission and Echoing Telnet option","authors":["D. Crocker","J. Postel"],"rawDate":"1973-08","status":"Unknown","updatedBy":["RFC0581"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0561":{"rfcNumber":"RFC0561","href":"https://www.rfc-editor.org/rfc/rfc561","title":"Standardizing Network Mail Headers","authors":["A.K. Bhushan","K.T. Pogran","R.S. Tomlinson","J.E. White"],"rawDate":"1973-09","status":"Unknown","updatedBy":["RFC0680"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0562":{"rfcNumber":"RFC0562","href":"https://www.rfc-editor.org/rfc/rfc562","title":"Modifications to the TELNET Specification","authors":["A.M. McKenzie"],"rawDate":"1973-08","status":"Unknown","updates":["RFC0495"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0563":{"rfcNumber":"RFC0563","href":"https://www.rfc-editor.org/rfc/rfc563","title":"Comments on the RCTE Telnet option","authors":["J. Davidson"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0565":{"rfcNumber":"RFC0565","href":"https://www.rfc-editor.org/rfc/rfc565","title":"Storing network survey data at the datacomputer","authors":["D. Cantor"],"rawDate":"1973-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0566":{"rfcNumber":"RFC0566","href":"https://www.rfc-editor.org/rfc/rfc566","title":"Traffic statistics (August 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-09","status":"Unknown","updatedBy":["RFC0579"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0567":{"rfcNumber":"RFC0567","href":"https://www.rfc-editor.org/rfc/rfc567","title":"Cross Country Network Bandwidth","authors":["L.P. Deutsch"],"rawDate":"1973-09","status":"Unknown","updatedBy":["RFC0568"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0568":{"rfcNumber":"RFC0568","href":"https://www.rfc-editor.org/rfc/rfc568","title":"Response to RFC 567 - cross country network bandwidth","authors":["J.M. McQuillan"],"rawDate":"1973-09","status":"Unknown","updates":["RFC0567"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0569":{"rfcNumber":"RFC0569","href":"https://www.rfc-editor.org/rfc/rfc569","title":"NETED: A Common Editor for the ARPA Network","authors":["M.A. Padlipsky"],"rawDate":"1973-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0570":{"rfcNumber":"RFC0570","href":"https://www.rfc-editor.org/rfc/rfc570","title":"Experimental input mapping between NVT ASCII and UCSB On Line System","authors":["J.R. Pickens"],"rawDate":"1973-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0571":{"rfcNumber":"RFC0571","href":"https://www.rfc-editor.org/rfc/rfc571","title":"TENEX FTP PROBLEM","authors":["R. Braden"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0573":{"rfcNumber":"RFC0573","href":"https://www.rfc-editor.org/rfc/rfc573","title":"DATA AND FILE TRANSFER - SOME MEASUREMENT RESULTS","authors":["A. Bhushan"],"rawDate":"1973-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0574":{"rfcNumber":"RFC0574","href":"https://www.rfc-editor.org/rfc/rfc574","title":"Announcement of a Mail Facility at UCSB","authors":["M. Krilanovich"],"rawDate":"1973-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0576":{"rfcNumber":"RFC0576","href":"https://www.rfc-editor.org/rfc/rfc576","title":"Proposal for modifying linking","authors":["K. Victor"],"rawDate":"1973-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0577":{"rfcNumber":"RFC0577","href":"https://www.rfc-editor.org/rfc/rfc577","title":"Mail priority","authors":["D. Crocker"],"rawDate":"1973-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0578":{"rfcNumber":"RFC0578","href":"https://www.rfc-editor.org/rfc/rfc578","title":"Using MIT-Mathlab MACSYMA from MIT-DMS Muddle","authors":["A.K. Bhushan","N.D. Ryan"],"rawDate":"1973-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0579":{"rfcNumber":"RFC0579","href":"https://www.rfc-editor.org/rfc/rfc579","title":"Traffic statistics (September 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-11","status":"Unknown","updatedBy":["RFC0586"],"updates":["RFC0566"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0580":{"rfcNumber":"RFC0580","href":"https://www.rfc-editor.org/rfc/rfc580","title":"Note to Protocol Designers and Implementers","authors":["J. Postel"],"rawDate":"1973-10","status":"Unknown","updatedBy":["RFC0582"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0581":{"rfcNumber":"RFC0581","href":"https://www.rfc-editor.org/rfc/rfc581","title":"Corrections to RFC 560: Remote Controlled Transmission and Echoing Telnet Option","authors":["D. Crocker","J. Postel"],"rawDate":"1973-11","status":"Unknown","updates":["RFC0560"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0582":{"rfcNumber":"RFC0582","href":"https://www.rfc-editor.org/rfc/rfc582","title":"Comments on RFC 580: Machine readable protocols","authors":["R. Clements"],"rawDate":"1973-11","status":"Unknown","updates":["RFC0580"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0584":{"rfcNumber":"RFC0584","href":"https://www.rfc-editor.org/rfc/rfc584","title":"Charter for ARPANET Users Interest Working Group","authors":["J. Iseli","D. Crocker","N. Neigus"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0585":{"rfcNumber":"RFC0585","href":"https://www.rfc-editor.org/rfc/rfc585","title":"ARPANET users interest working group meeting","authors":["D. Crocker","N. Neigus","E.J. Feinler","J. Iseli"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0586":{"rfcNumber":"RFC0586","href":"https://www.rfc-editor.org/rfc/rfc586","title":"Traffic statistics (October 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-11","status":"Unknown","updates":["RFC0579"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=586","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0587":{"rfcNumber":"RFC0587","href":"https://www.rfc-editor.org/rfc/rfc587","title":"Announcing New Telnet Options","authors":["J. Postel"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0588":{"rfcNumber":"RFC0588","href":"https://www.rfc-editor.org/rfc/rfc588","title":"London Node Is Now Up","authors":["A. Stokes"],"rawDate":"1973-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0589":{"rfcNumber":"RFC0589","href":"https://www.rfc-editor.org/rfc/rfc589","title":"CCN NETRJS server messages to remote user","authors":["R.T. Braden"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0590":{"rfcNumber":"RFC0590","href":"https://www.rfc-editor.org/rfc/rfc590","title":"MULTICS address change","authors":["M.A. Padlipsky"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0591":{"rfcNumber":"RFC0591","href":"https://www.rfc-editor.org/rfc/rfc591","title":"Addition to the Very Distant Host specifications","authors":["D.C. Walden"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0592":{"rfcNumber":"RFC0592","href":"https://www.rfc-editor.org/rfc/rfc592","title":"Some thoughts on system design to facilitate resource sharing","authors":["R.W. Watson"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0593":{"rfcNumber":"RFC0593","href":"https://www.rfc-editor.org/rfc/rfc593","title":"Telnet and FTP implementation schedule change","authors":["A.M. McKenzie","J. Postel"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0594":{"rfcNumber":"RFC0594","href":"https://www.rfc-editor.org/rfc/rfc594","title":"Speedup of Host-IMP interface","authors":["J.D. Burchfiel"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0595":{"rfcNumber":"RFC0595","href":"https://www.rfc-editor.org/rfc/rfc595","title":"Second thoughts in defense of the Telnet Go-Ahead","authors":["W. Hathaway"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0596":{"rfcNumber":"RFC0596","href":"https://www.rfc-editor.org/rfc/rfc596","title":"Second thoughts on Telnet Go-Ahead","authors":["E.A. Taft"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0597":{"rfcNumber":"RFC0597","href":"https://www.rfc-editor.org/rfc/rfc597","title":"Host status","authors":["N. Neigus","E.J. Feinler"],"rawDate":"1973-12","status":"Unknown","updatedBy":["RFC0603"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0598":{"rfcNumber":"RFC0598","href":"https://www.rfc-editor.org/rfc/rfc598","title":"RFC index - December 5, 1973","authors":["Network Information Center. Stanford Research Institute"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0599":{"rfcNumber":"RFC0599","href":"https://www.rfc-editor.org/rfc/rfc599","title":"Update on NETRJS","authors":["R.T. Braden"],"rawDate":"1973-12","status":"Unknown","obsoletedBy":["RFC0740"],"obsoletes":["RFC0189"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0600":{"rfcNumber":"RFC0600","href":"https://www.rfc-editor.org/rfc/rfc600","title":"Interfacing an Illinois plasma terminal to the ARPANET","authors":["A. Berggreen"],"rawDate":"1973-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0601":{"rfcNumber":"RFC0601","href":"https://www.rfc-editor.org/rfc/rfc601","title":"Traffic statistics (November 1973)","authors":["A.M. McKenzie"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0602":{"rfcNumber":"RFC0602","href":"https://www.rfc-editor.org/rfc/rfc602","title":"\"The stockings were hung by the chimney with care\"","authors":["R.M. Metcalfe"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0603":{"rfcNumber":"RFC0603","href":"https://www.rfc-editor.org/rfc/rfc603","title":"Response to RFC 597: Host status","authors":["J.D. Burchfiel"],"rawDate":"1973-12","status":"Unknown","updatedBy":["RFC0613"],"updates":["RFC0597"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0604":{"rfcNumber":"RFC0604","href":"https://www.rfc-editor.org/rfc/rfc604","title":"Assigned link numbers","authors":["J. Postel"],"rawDate":"1973-12","status":"Unknown","obsoletedBy":["RFC0739"],"obsoletes":["RFC0317"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0606":{"rfcNumber":"RFC0606","href":"https://www.rfc-editor.org/rfc/rfc606","title":"Host names on-line","authors":["L.P. Deutsch"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0607":{"rfcNumber":"RFC0607","href":"https://www.rfc-editor.org/rfc/rfc607","title":"Comments on the File Transfer Protocol","authors":["M. Krilanovich","G. Gregg"],"rawDate":"1974-01","status":"Unknown","updatedBy":["RFC0614"],"obsoletedBy":["RFC0624"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0608":{"rfcNumber":"RFC0608","href":"https://www.rfc-editor.org/rfc/rfc608","title":"Host names on-line","authors":["M.D. Kudlick"],"rawDate":"1974-01","status":"Unknown","obsoletedBy":["RFC0810"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0609":{"rfcNumber":"RFC0609","href":"https://www.rfc-editor.org/rfc/rfc609","title":"Statement of upcoming move of NIC/NLS service","authors":["B. Ferguson"],"rawDate":"1974-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0610":{"rfcNumber":"RFC0610","href":"https://www.rfc-editor.org/rfc/rfc610","title":"Further datalanguage design concepts","authors":["R. Winter","J. Hill","W. Greiff"],"rawDate":"1973-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0611":{"rfcNumber":"RFC0611","href":"https://www.rfc-editor.org/rfc/rfc611","title":"Two changes to the IMP/Host Protocol to improve user/network communications","authors":["D.C. Walden"],"rawDate":"1974-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0612":{"rfcNumber":"RFC0612","href":"https://www.rfc-editor.org/rfc/rfc612","title":"Traffic statistics (December 1973)","authors":["A.M. McKenzie"],"rawDate":"1974-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0613":{"rfcNumber":"RFC0613","href":"https://www.rfc-editor.org/rfc/rfc613","title":"Network connectivity: A response to RFC 603","authors":["A.M. McKenzie"],"rawDate":"1974-01","status":"Unknown","updates":["RFC0603"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0614":{"rfcNumber":"RFC0614","href":"https://www.rfc-editor.org/rfc/rfc614","title":"Response to RFC 607: \"Comments on the File Transfer Protocol\"","authors":["K.T. Pogran","N. Neigus"],"rawDate":"1974-01","status":"Unknown","updates":["RFC0542","RFC0607"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0615":{"rfcNumber":"RFC0615","href":"https://www.rfc-editor.org/rfc/rfc615","title":"Proposed Network Standard Data Pathname syntax","authors":["D. Crocker"],"rawDate":"1974-03","status":"Unknown","obsoletedBy":["RFC0645"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0616":{"rfcNumber":"RFC0616","href":"https://www.rfc-editor.org/rfc/rfc616","title":"LATEST NETWORK MAPS","authors":["D. Walden"],"rawDate":"1973-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0617":{"rfcNumber":"RFC0617","href":"https://www.rfc-editor.org/rfc/rfc617","title":"Note on socket number assignment","authors":["E.A. Taft"],"rawDate":"1974-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0618":{"rfcNumber":"RFC0618","href":"https://www.rfc-editor.org/rfc/rfc618","title":"Few observations on NCP statistics","authors":["E.A. Taft"],"rawDate":"1974-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0619":{"rfcNumber":"RFC0619","href":"https://www.rfc-editor.org/rfc/rfc619","title":"Mean round-trip times in the ARPANET","authors":["W. Naylor","H. Opderbeck"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0620":{"rfcNumber":"RFC0620","href":"https://www.rfc-editor.org/rfc/rfc620","title":"Request for monitor host table updates","authors":["B. Ferguson"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0621":{"rfcNumber":"RFC0621","href":"https://www.rfc-editor.org/rfc/rfc621","title":"NIC user directories at SRI ARC","authors":["M.D. Kudlick"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0622":{"rfcNumber":"RFC0622","href":"https://www.rfc-editor.org/rfc/rfc622","title":"Scheduling IMP/TIP down time","authors":["A.M. McKenzie"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0623":{"rfcNumber":"RFC0623","href":"https://www.rfc-editor.org/rfc/rfc623","title":"Comments on on-line host name service","authors":["M. Krilanovich"],"rawDate":"1974-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0624":{"rfcNumber":"RFC0624","href":"https://www.rfc-editor.org/rfc/rfc624","title":"Comments on the File Transfer Protocol","authors":["M. Krilanovich","G. Gregg","W. Hathaway","J.E. White"],"rawDate":"1974-02","status":"Unknown","obsoletes":["RFC0607"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0625":{"rfcNumber":"RFC0625","href":"https://www.rfc-editor.org/rfc/rfc625","title":"On-line hostnames service","authors":["M.D. Kudlick","E.J. Feinler"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0626":{"rfcNumber":"RFC0626","href":"https://www.rfc-editor.org/rfc/rfc626","title":"On a possible lockup condition in IMP subnet due to message sequencing","authors":["L. Kleinrock","H. Opderbeck"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0627":{"rfcNumber":"RFC0627","href":"https://www.rfc-editor.org/rfc/rfc627","title":"ASCII text file of hostnames","authors":["M.D. Kudlick","E.J. Feinler"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0628":{"rfcNumber":"RFC0628","href":"https://www.rfc-editor.org/rfc/rfc628","title":"Status of RFC numbers and a note on pre-assigned journal numbers","authors":["M.L. Keeney"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0629":{"rfcNumber":"RFC0629","href":"https://www.rfc-editor.org/rfc/rfc629","title":"Scenario for using the Network Journal","authors":["J.B. North"],"rawDate":"1974-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0630":{"rfcNumber":"RFC0630","href":"https://www.rfc-editor.org/rfc/rfc630","title":"FTP error code usage for more reliable mail service","authors":["J. Sussman"],"rawDate":"1974-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0631":{"rfcNumber":"RFC0631","href":"https://www.rfc-editor.org/rfc/rfc631","title":"International meeting on minicomputers and data communication: Call for papers","authors":["A. Danthine"],"rawDate":"1974-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0632":{"rfcNumber":"RFC0632","href":"https://www.rfc-editor.org/rfc/rfc632","title":"Throughput degradations for single packet messages","authors":["H. Opderbeck"],"rawDate":"1974-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0633":{"rfcNumber":"RFC0633","href":"https://www.rfc-editor.org/rfc/rfc633","title":"IMP/TIP preventive maintenance schedule","authors":["A.M. McKenzie"],"rawDate":"1974-03","status":"Unknown","obsoletedBy":["RFC0638"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0634":{"rfcNumber":"RFC0634","href":"https://www.rfc-editor.org/rfc/rfc634","title":"Change in network address for Haskins Lab","authors":["A.M. McKenzie"],"rawDate":"1974-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0635":{"rfcNumber":"RFC0635","href":"https://www.rfc-editor.org/rfc/rfc635","title":"Assessment of ARPANET protocols","authors":["V. Cerf"],"rawDate":"1974-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0636":{"rfcNumber":"RFC0636","href":"https://www.rfc-editor.org/rfc/rfc636","title":"TIP/Tenex reliability improvements","authors":["J.D. Burchfiel","B. Cosell","R.S. Tomlinson","D.C. Walden"],"rawDate":"1974-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0637":{"rfcNumber":"RFC0637","href":"https://www.rfc-editor.org/rfc/rfc637","title":"Change of network address for SU-DSL","authors":["A.M. McKenzie"],"rawDate":"1974-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0638":{"rfcNumber":"RFC0638","href":"https://www.rfc-editor.org/rfc/rfc638","title":"IMP/TIP preventive maintenance schedule","authors":["A.M. McKenzie"],"rawDate":"1974-04","status":"Unknown","obsoletes":["RFC0633"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0640":{"rfcNumber":"RFC0640","href":"https://www.rfc-editor.org/rfc/rfc640","title":"Revised FTP reply codes","authors":["J. Postel"],"rawDate":"1974-06","status":"Unknown","updates":["RFC0542"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=640","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0642":{"rfcNumber":"RFC0642","href":"https://www.rfc-editor.org/rfc/rfc642","title":"Ready line philosophy and implementation","authors":["J.D. Burchfiel"],"rawDate":"1974-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0643":{"rfcNumber":"RFC0643","href":"https://www.rfc-editor.org/rfc/rfc643","title":"Network Debugging Protocol","authors":["E. Mader"],"rawDate":"1974-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0644":{"rfcNumber":"RFC0644","href":"https://www.rfc-editor.org/rfc/rfc644","title":"On the problem of signature authentication for network mail","authors":["R. Thomas"],"rawDate":"1974-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0645":{"rfcNumber":"RFC0645","href":"https://www.rfc-editor.org/rfc/rfc645","title":"Network Standard Data Specification syntax","authors":["D. Crocker"],"rawDate":"1974-06","status":"Unknown","obsoletes":["RFC0615"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0647":{"rfcNumber":"RFC0647","href":"https://www.rfc-editor.org/rfc/rfc647","title":"Proposed protocol for connecting host computers to ARPA-like networks via front end processors","authors":["M.A. Padlipsky"],"rawDate":"1974-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0651":{"rfcNumber":"RFC0651","href":"https://www.rfc-editor.org/rfc/rfc651","title":"Revised Telnet status option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Unknown","obsoletedBy":["RFC0859"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0652":{"rfcNumber":"RFC0652","href":"https://www.rfc-editor.org/rfc/rfc652","title":"Telnet output carriage-return disposition option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0653":{"rfcNumber":"RFC0653","href":"https://www.rfc-editor.org/rfc/rfc653","title":"Telnet output horizontal tabstops option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0654":{"rfcNumber":"RFC0654","href":"https://www.rfc-editor.org/rfc/rfc654","title":"Telnet output horizontal tab disposition option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0655":{"rfcNumber":"RFC0655","href":"https://www.rfc-editor.org/rfc/rfc655","title":"Telnet output formfeed disposition option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0656":{"rfcNumber":"RFC0656","href":"https://www.rfc-editor.org/rfc/rfc656","title":"Telnet output vertical tabstops option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0657":{"rfcNumber":"RFC0657","href":"https://www.rfc-editor.org/rfc/rfc657","title":"Telnet output vertical tab disposition option","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0658":{"rfcNumber":"RFC0658","href":"https://www.rfc-editor.org/rfc/rfc658","title":"Telnet output linefeed disposition","authors":["D. Crocker"],"rawDate":"1974-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0659":{"rfcNumber":"RFC0659","href":"https://www.rfc-editor.org/rfc/rfc659","title":"Announcing additional Telnet options","authors":["J. Postel"],"rawDate":"1974-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0660":{"rfcNumber":"RFC0660","href":"https://www.rfc-editor.org/rfc/rfc660","title":"Some changes to the IMP and the IMP/Host interface","authors":["D.C. Walden"],"rawDate":"1974-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0661":{"rfcNumber":"RFC0661","href":"https://www.rfc-editor.org/rfc/rfc661","title":"Protocol information","authors":["J. Postel"],"rawDate":"1974-11","status":"Unknown","updatedBy":["RFC0694"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0662":{"rfcNumber":"RFC0662","href":"https://www.rfc-editor.org/rfc/rfc662","title":"Performance improvement in ARPANET file transfers from Multics","authors":["R. Kanodia"],"rawDate":"1974-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0663":{"rfcNumber":"RFC0663","href":"https://www.rfc-editor.org/rfc/rfc663","title":"Lost message detection and recovery protocol","authors":["R. Kanodia"],"rawDate":"1974-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0666":{"rfcNumber":"RFC0666","href":"https://www.rfc-editor.org/rfc/rfc666","title":"Specification of the Unified User-Level Protocol","authors":["M.A. Padlipsky"],"rawDate":"1974-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0667":{"rfcNumber":"RFC0667","href":"https://www.rfc-editor.org/rfc/rfc667","title":"Host Ports","authors":["S.G. Chipman"],"rawDate":"1974-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0669":{"rfcNumber":"RFC0669","href":"https://www.rfc-editor.org/rfc/rfc669","title":"November, 1974, survey of New-Protocol Telnet servers","authors":["D.W. Dodds"],"rawDate":"1974-12","status":"Unknown","updatedBy":["RFC0679"],"updates":["RFC0702"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0671":{"rfcNumber":"RFC0671","href":"https://www.rfc-editor.org/rfc/rfc671","title":"Note on Reconnection Protocol","authors":["R. Schantz"],"rawDate":"1974-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0672":{"rfcNumber":"RFC0672","href":"https://www.rfc-editor.org/rfc/rfc672","title":"Multi-site data collection facility","authors":["R. Schantz"],"rawDate":"1974-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0674":{"rfcNumber":"RFC0674","href":"https://www.rfc-editor.org/rfc/rfc674","title":"Procedure call documents: Version 2","authors":["J. Postel","J.E. White"],"rawDate":"1974-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0675":{"rfcNumber":"RFC0675","href":"https://www.rfc-editor.org/rfc/rfc675","title":"Specification of Internet Transmission Control Program","authors":["V. Cerf","Y. Dalal","C. Sunshine"],"rawDate":"1974-12","status":"Historic","obsoletedBy":["RFC7805"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=675","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0677":{"rfcNumber":"RFC0677","href":"https://www.rfc-editor.org/rfc/rfc677","title":"Maintenance of duplicate databases","authors":["P.R. Johnson","R. Thomas"],"rawDate":"1975-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0678":{"rfcNumber":"RFC0678","href":"https://www.rfc-editor.org/rfc/rfc678","title":"Standard file formats","authors":["J. Postel"],"rawDate":"1974-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0679":{"rfcNumber":"RFC0679","href":"https://www.rfc-editor.org/rfc/rfc679","title":"February, 1975, survey of New-Protocol Telnet servers","authors":["D.W. Dodds"],"rawDate":"1975-02","status":"Unknown","updatedBy":["RFC0703"],"updates":["RFC0669"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0680":{"rfcNumber":"RFC0680","href":"https://www.rfc-editor.org/rfc/rfc680","title":"Message Transmission Protocol","authors":["T.H. Myer","D.A. Henderson"],"rawDate":"1975-04","status":"Unknown","updates":["RFC0561"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0681":{"rfcNumber":"RFC0681","href":"https://www.rfc-editor.org/rfc/rfc681","title":"Network UNIX","authors":["S. Holmgren"],"rawDate":"1975-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0683":{"rfcNumber":"RFC0683","href":"https://www.rfc-editor.org/rfc/rfc683","title":"FTPSRV - Tenex extension for paged files","authors":["R. Clements"],"rawDate":"1975-04","status":"Unknown","updates":["RFC0354"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0684":{"rfcNumber":"RFC0684","href":"https://www.rfc-editor.org/rfc/rfc684","title":"Commentary on procedure calling as a network protocol","authors":["R. Schantz"],"rawDate":"1975-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0685":{"rfcNumber":"RFC0685","href":"https://www.rfc-editor.org/rfc/rfc685","title":"Response time in cross network debugging","authors":["M. Beeler"],"rawDate":"1975-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0686":{"rfcNumber":"RFC0686","href":"https://www.rfc-editor.org/rfc/rfc686","title":"Leaving well enough alone","authors":["B. Harvey"],"rawDate":"1975-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0687":{"rfcNumber":"RFC0687","href":"https://www.rfc-editor.org/rfc/rfc687","title":"IMP/Host and Host/IMP Protocol changes","authors":["D.C. Walden"],"rawDate":"1975-06","status":"Unknown","updatedBy":["RFC0690"],"obsoletedBy":["RFC0704"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0688":{"rfcNumber":"RFC0688","href":"https://www.rfc-editor.org/rfc/rfc688","title":"Tentative schedule for the new Telnet implementation for the TIP","authors":["D.C. Walden"],"rawDate":"1975-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0689":{"rfcNumber":"RFC0689","href":"https://www.rfc-editor.org/rfc/rfc689","title":"Tenex NCP finite state machine for connections","authors":["R. Clements"],"rawDate":"1975-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0690":{"rfcNumber":"RFC0690","href":"https://www.rfc-editor.org/rfc/rfc690","title":"Comments on the proposed Host/IMP Protocol changes","authors":["J. Postel"],"rawDate":"1975-06","status":"Unknown","updatedBy":["RFC0692"],"updates":["RFC0687"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0691":{"rfcNumber":"RFC0691","href":"https://www.rfc-editor.org/rfc/rfc691","title":"One more try on the FTP","authors":["B. Harvey"],"rawDate":"1975-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0692":{"rfcNumber":"RFC0692","href":"https://www.rfc-editor.org/rfc/rfc692","title":"Comments on IMP/Host Protocol changes (RFCs 687 and 690)","authors":["S.M. Wolfe"],"rawDate":"1975-06","status":"Unknown","updates":["RFC0690"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0694":{"rfcNumber":"RFC0694","href":"https://www.rfc-editor.org/rfc/rfc694","title":"Protocol information","authors":["J. Postel"],"rawDate":"1975-06","status":"Unknown","updates":["RFC0661"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0695":{"rfcNumber":"RFC0695","href":"https://www.rfc-editor.org/rfc/rfc695","title":"Official change in Host-Host Protocol","authors":["M. Krilanovich"],"rawDate":"1975-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0696":{"rfcNumber":"RFC0696","href":"https://www.rfc-editor.org/rfc/rfc696","title":"Comments on the IMP/Host and Host/IMP Protocol changes","authors":["V.G. Cerf"],"rawDate":"1975-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0697":{"rfcNumber":"RFC0697","href":"https://www.rfc-editor.org/rfc/rfc697","title":"CWD command of FTP","authors":["J. Lieb"],"rawDate":"1975-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0698":{"rfcNumber":"RFC0698","href":"https://www.rfc-editor.org/rfc/rfc698","title":"Telnet extended ASCII option","authors":["T. Mock"],"rawDate":"1975-07","status":"Proposed Standard","obsoletedBy":["RFC5198"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0699":{"rfcNumber":"RFC0699","href":"https://www.rfc-editor.org/rfc/rfc699","title":"Request For Comments summary notes: 600-699","authors":["J. Postel","J. Vernon"],"rawDate":"1982-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0700":{"rfcNumber":"RFC0700","href":"https://www.rfc-editor.org/rfc/rfc700","title":"Protocol experiment","authors":["E. Mader","W.W. Plummer","R.S. Tomlinson"],"rawDate":"1974-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0701":{"rfcNumber":"RFC0701","href":"https://www.rfc-editor.org/rfc/rfc701","title":"August, 1974, survey of New-Protocol Telnet servers","authors":["D.W. Dodds"],"rawDate":"1974-08","status":"Unknown","updatedBy":["RFC0702"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0702":{"rfcNumber":"RFC0702","href":"https://www.rfc-editor.org/rfc/rfc702","title":"September, 1974, survey of New-Protocol Telnet servers","authors":["D.W. Dodds"],"rawDate":"1974-09","status":"Unknown","updatedBy":["RFC0669"],"updates":["RFC0701"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0703":{"rfcNumber":"RFC0703","href":"https://www.rfc-editor.org/rfc/rfc703","title":"July, 1975, survey of New-Protocol Telnet Servers","authors":["D.W. Dodds"],"rawDate":"1975-07","status":"Unknown","updates":["RFC0679"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0704":{"rfcNumber":"RFC0704","href":"https://www.rfc-editor.org/rfc/rfc704","title":"IMP/Host and Host/IMP Protocol change","authors":["P.J. Santos"],"rawDate":"1975-09","status":"Unknown","obsoletes":["RFC0687"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0705":{"rfcNumber":"RFC0705","href":"https://www.rfc-editor.org/rfc/rfc705","title":"Front-end Protocol B6700 version","authors":["R.F. Bryan"],"rawDate":"1975-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0706":{"rfcNumber":"RFC0706","href":"https://www.rfc-editor.org/rfc/rfc706","title":"On the junk mail problem","authors":["J. Postel"],"rawDate":"1975-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0707":{"rfcNumber":"RFC0707","href":"https://www.rfc-editor.org/rfc/rfc707","title":"High-level framework for network-based resource sharing","authors":["J.E. White"],"rawDate":"1975-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0708":{"rfcNumber":"RFC0708","href":"https://www.rfc-editor.org/rfc/rfc708","title":"Elements of a Distributed Programming System","authors":["J.E. White"],"rawDate":"1976-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0712":{"rfcNumber":"RFC0712","href":"https://www.rfc-editor.org/rfc/rfc712","title":"Distributed Capability Computing System (DCCS)","authors":["J.E. Donnelley"],"rawDate":"1976-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0713":{"rfcNumber":"RFC0713","href":"https://www.rfc-editor.org/rfc/rfc713","title":"MSDTP-Message Services Data Transmission Protocol","authors":["J. Haverty"],"rawDate":"1976-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0714":{"rfcNumber":"RFC0714","href":"https://www.rfc-editor.org/rfc/rfc714","title":"Host-Host Protocol for an ARPANET-Type Network","authors":["A.M. McKenzie"],"rawDate":"1976-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0716":{"rfcNumber":"RFC0716","href":"https://www.rfc-editor.org/rfc/rfc716","title":"Interim Revision to Appendix F of BBN 1822","authors":["D.C. Walden","J. Levin"],"rawDate":"1976-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0717":{"rfcNumber":"RFC0717","href":"https://www.rfc-editor.org/rfc/rfc717","title":"Assigned Network Numbers","authors":["J. Postel"],"rawDate":"1976-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0718":{"rfcNumber":"RFC0718","href":"https://www.rfc-editor.org/rfc/rfc718","title":"Comments on RCTE from the Tenex Implementation Experience","authors":["J. Postel"],"rawDate":"1976-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0719":{"rfcNumber":"RFC0719","href":"https://www.rfc-editor.org/rfc/rfc719","title":"Discussion on RCTE","authors":["J. Postel"],"rawDate":"1976-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0720":{"rfcNumber":"RFC0720","href":"https://www.rfc-editor.org/rfc/rfc720","title":"Address Specification Syntax for Network Mail","authors":["D. Crocker"],"rawDate":"1976-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0721":{"rfcNumber":"RFC0721","href":"https://www.rfc-editor.org/rfc/rfc721","title":"Out-of-Band Control Signals in a Host-to-Host Protocol","authors":["L.L. Garlick"],"rawDate":"1976-09","status":"Historic","obsoletedBy":["RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0722":{"rfcNumber":"RFC0722","href":"https://www.rfc-editor.org/rfc/rfc722","title":"Thoughts on Interactions in Distributed Services","authors":["J. Haverty"],"rawDate":"1976-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0724":{"rfcNumber":"RFC0724","href":"https://www.rfc-editor.org/rfc/rfc724","title":"Proposed official standard for the format of ARPA Network messages","authors":["D. Crocker","K.T. Pogran","J. Vittal","D.A. Henderson"],"rawDate":"1977-05","status":"Unknown","obsoletedBy":["RFC0733"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0725":{"rfcNumber":"RFC0725","href":"https://www.rfc-editor.org/rfc/rfc725","title":"RJE protocol for a resource sharing network","authors":["J.D. Day","G.R. Grossman"],"rawDate":"1977-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0726":{"rfcNumber":"RFC0726","href":"https://www.rfc-editor.org/rfc/rfc726","title":"Remote Controlled Transmission and Echoing Telnet option","authors":["J. Postel","D. Crocker"],"rawDate":"1977-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0727":{"rfcNumber":"RFC0727","href":"https://www.rfc-editor.org/rfc/rfc727","title":"Telnet logout option","authors":["M.R. Crispin"],"rawDate":"1977-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0728":{"rfcNumber":"RFC0728","href":"https://www.rfc-editor.org/rfc/rfc728","title":"Minor pitfall in the Telnet Protocol","authors":["J.D. Day"],"rawDate":"1977-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0729":{"rfcNumber":"RFC0729","href":"https://www.rfc-editor.org/rfc/rfc729","title":"Telnet byte macro option","authors":["D. Crocker"],"rawDate":"1977-05","status":"Unknown","obsoletedBy":["RFC0735"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0730":{"rfcNumber":"RFC0730","href":"https://www.rfc-editor.org/rfc/rfc730","title":"Extensible field addressing","authors":["J. Postel"],"rawDate":"1977-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0731":{"rfcNumber":"RFC0731","href":"https://www.rfc-editor.org/rfc/rfc731","title":"Telnet Data Entry Terminal option","authors":["J.D. Day"],"rawDate":"1977-06","status":"Unknown","obsoletedBy":["RFC0732"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0732":{"rfcNumber":"RFC0732","href":"https://www.rfc-editor.org/rfc/rfc732","title":"Telnet Data Entry Terminal option","authors":["J.D. Day"],"rawDate":"1977-09","status":"Unknown","updatedBy":["RFC1043"],"obsoletes":["RFC0731"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0733":{"rfcNumber":"RFC0733","href":"https://www.rfc-editor.org/rfc/rfc733","title":"Standard for the format of ARPA network text messages","authors":["D. Crocker","J. Vittal","K.T. Pogran","D.A. Henderson"],"rawDate":"1977-11","status":"Unknown","obsoletedBy":["RFC0822"],"obsoletes":["RFC0724"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0734":{"rfcNumber":"RFC0734","href":"https://www.rfc-editor.org/rfc/rfc734","title":"SUPDUP Protocol","authors":["M.R. Crispin"],"rawDate":"1977-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0735":{"rfcNumber":"RFC0735","href":"https://www.rfc-editor.org/rfc/rfc735","title":"Revised Telnet byte macro option","authors":["D. Crocker","R.H. Gumpertz"],"rawDate":"1977-11","status":"Proposed Standard","obsoletes":["RFC0729"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0736":{"rfcNumber":"RFC0736","href":"https://www.rfc-editor.org/rfc/rfc736","title":"Telnet SUPDUP option","authors":["M.R. Crispin"],"rawDate":"1977-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0737":{"rfcNumber":"RFC0737","href":"https://www.rfc-editor.org/rfc/rfc737","title":"FTP extension: XSEN","authors":["K. Harrenstien"],"rawDate":"1977-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0738":{"rfcNumber":"RFC0738","href":"https://www.rfc-editor.org/rfc/rfc738","title":"Time server","authors":["K. Harrenstien"],"rawDate":"1977-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0739":{"rfcNumber":"RFC0739","href":"https://www.rfc-editor.org/rfc/rfc739","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1977-11","status":"Historic","obsoletedBy":["RFC0750"],"obsoletes":["RFC0604","RFC0503"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0740":{"rfcNumber":"RFC0740","href":"https://www.rfc-editor.org/rfc/rfc740","title":"NETRJS Protocol","authors":["R.T. Braden"],"rawDate":"1977-11","status":"Historic","obsoletes":["RFC0599"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0741":{"rfcNumber":"RFC0741","href":"https://www.rfc-editor.org/rfc/rfc741","title":"Specifications for the Network Voice Protocol (NVP)","authors":["D. Cohen"],"rawDate":"1977-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0742":{"rfcNumber":"RFC0742","href":"https://www.rfc-editor.org/rfc/rfc742","title":"NAME/FINGER Protocol","authors":["K. Harrenstien"],"rawDate":"1977-12","status":"Unknown","obsoletedBy":["RFC1288","RFC1196","RFC1194"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0743":{"rfcNumber":"RFC0743","href":"https://www.rfc-editor.org/rfc/rfc743","title":"FTP extension: XRSQ/XRCP","authors":["K. Harrenstien"],"rawDate":"1977-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0744":{"rfcNumber":"RFC0744","href":"https://www.rfc-editor.org/rfc/rfc744","title":"MARS - a Message Archiving and Retrieval Service","authors":["J. Sattley"],"rawDate":"1978-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0745":{"rfcNumber":"RFC0745","href":"https://www.rfc-editor.org/rfc/rfc745","title":"JANUS interface specifications","authors":["M. Beeler"],"rawDate":"1978-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0746":{"rfcNumber":"RFC0746","href":"https://www.rfc-editor.org/rfc/rfc746","title":"SUPDUP graphics extension","authors":["R. Stallman"],"rawDate":"1978-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0747":{"rfcNumber":"RFC0747","href":"https://www.rfc-editor.org/rfc/rfc747","title":"Recent extensions to the SUPDUP Protocol","authors":["M.R. Crispin"],"rawDate":"1978-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0748":{"rfcNumber":"RFC0748","href":"https://www.rfc-editor.org/rfc/rfc748","title":"Telnet randomly-lose option","authors":["M.R. Crispin"],"rawDate":"1978-04-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0749":{"rfcNumber":"RFC0749","href":"https://www.rfc-editor.org/rfc/rfc749","title":"Telnet SUPDUP-Output option","authors":["B. Greenberg"],"rawDate":"1978-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0750":{"rfcNumber":"RFC0750","href":"https://www.rfc-editor.org/rfc/rfc750","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1978-09","status":"Historic","obsoletedBy":["RFC0755"],"obsoletes":["RFC0739"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0751":{"rfcNumber":"RFC0751","href":"https://www.rfc-editor.org/rfc/rfc751","title":"Survey of FTP mail and MLFL","authors":["P.D. Lebling"],"rawDate":"1978-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0752":{"rfcNumber":"RFC0752","href":"https://www.rfc-editor.org/rfc/rfc752","title":"Universal host table","authors":["M.R. Crispin"],"rawDate":"1979-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0753":{"rfcNumber":"RFC0753","href":"https://www.rfc-editor.org/rfc/rfc753","title":"Internet Message Protocol","authors":["J. Postel"],"rawDate":"1979-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0754":{"rfcNumber":"RFC0754","href":"https://www.rfc-editor.org/rfc/rfc754","title":"Out-of-net host addresses for mail","authors":["J. Postel"],"rawDate":"1979-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0755":{"rfcNumber":"RFC0755","href":"https://www.rfc-editor.org/rfc/rfc755","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1979-05","status":"Historic","obsoletedBy":["RFC0758"],"obsoletes":["RFC0750"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0756":{"rfcNumber":"RFC0756","href":"https://www.rfc-editor.org/rfc/rfc756","title":"NIC name server - a datagram-based information utility","authors":["J.R. Pickens","E.J. Feinler","J.E. Mathis"],"rawDate":"1979-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0757":{"rfcNumber":"RFC0757","href":"https://www.rfc-editor.org/rfc/rfc757","title":"Suggested solution to the naming, addressing, and delivery problem for ARPANET message systems","authors":["D.P. Deutsch"],"rawDate":"1979-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0758":{"rfcNumber":"RFC0758","href":"https://www.rfc-editor.org/rfc/rfc758","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1979-08","status":"Historic","obsoletedBy":["RFC0762"],"obsoletes":["RFC0755"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0759":{"rfcNumber":"RFC0759","href":"https://www.rfc-editor.org/rfc/rfc759","title":"Internet Message Protocol","authors":["J. Postel"],"rawDate":"1980-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0760":{"rfcNumber":"RFC0760","href":"https://www.rfc-editor.org/rfc/rfc760","title":"DoD standard Internet Protocol","authors":["J. Postel"],"rawDate":"1980-01","status":"Unknown","updatedBy":["RFC0777"],"obsoletedBy":["RFC0791"],"obsoletes":["IEN123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0761":{"rfcNumber":"RFC0761","href":"https://www.rfc-editor.org/rfc/rfc761","title":"DoD standard Transmission Control Protocol","authors":["J. Postel"],"rawDate":"1980-01","status":"Historic","obsoletedBy":["RFC0793","RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0762":{"rfcNumber":"RFC0762","href":"https://www.rfc-editor.org/rfc/rfc762","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1980-01","status":"Historic","obsoletedBy":["RFC0770"],"obsoletes":["RFC0758"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0763":{"rfcNumber":"RFC0763","href":"https://www.rfc-editor.org/rfc/rfc763","title":"Role mailboxes","authors":["M.D. Abrams"],"rawDate":"1980-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0764":{"rfcNumber":"RFC0764","href":"https://www.rfc-editor.org/rfc/rfc764","title":"Telnet Protocol specification","authors":["J. Postel"],"rawDate":"1980-06","status":"Unknown","obsoletedBy":["RFC0854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0765":{"rfcNumber":"RFC0765","href":"https://www.rfc-editor.org/rfc/rfc765","title":"File Transfer Protocol specification","authors":["J. Postel"],"rawDate":"1980-06","status":"Unknown","obsoletedBy":["RFC0959"],"obsoletes":["RFC0542"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0766":{"rfcNumber":"RFC0766","href":"https://www.rfc-editor.org/rfc/rfc766","title":"Internet Protocol Handbook: Table of contents","authors":["J. Postel"],"rawDate":"1980-07","status":"Unknown","obsoletedBy":["RFC0774"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0767":{"rfcNumber":"RFC0767","href":"https://www.rfc-editor.org/rfc/rfc767","title":"Structured format for transmission of multi-media documents","authors":["J. Postel"],"rawDate":"1980-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0768":{"rfcNumber":"RFC0768","href":"https://www.rfc-editor.org/rfc/rfc768","title":"User Datagram Protocol","authors":["J. Postel"],"rawDate":"1980-08","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0769":{"rfcNumber":"RFC0769","href":"https://www.rfc-editor.org/rfc/rfc769","title":"Rapicom 450 facsimile file format","authors":["J. Postel"],"rawDate":"1980-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0770":{"rfcNumber":"RFC0770","href":"https://www.rfc-editor.org/rfc/rfc770","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1980-09","status":"Historic","obsoletedBy":["RFC0776"],"obsoletes":["RFC0762"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0771":{"rfcNumber":"RFC0771","href":"https://www.rfc-editor.org/rfc/rfc771","title":"Mail transition plan","authors":["V.G. Cerf","J. Postel"],"rawDate":"1980-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0772":{"rfcNumber":"RFC0772","href":"https://www.rfc-editor.org/rfc/rfc772","title":"Mail Transfer Protocol","authors":["S. Sluizer","J. Postel"],"rawDate":"1980-09","status":"Unknown","obsoletedBy":["RFC0780"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0773":{"rfcNumber":"RFC0773","href":"https://www.rfc-editor.org/rfc/rfc773","title":"Comments on NCP/TCP mail service transition strategy","authors":["V.G. Cerf"],"rawDate":"1980-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0774":{"rfcNumber":"RFC0774","href":"https://www.rfc-editor.org/rfc/rfc774","title":"Internet Protocol Handbook: Table of contents","authors":["J. Postel"],"rawDate":"1980-10","status":"Unknown","obsoletes":["RFC0766"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0775":{"rfcNumber":"RFC0775","href":"https://www.rfc-editor.org/rfc/rfc775","title":"Directory oriented FTP commands","authors":["D. Mankins","D. Franklin","A.D. Owen"],"rawDate":"1980-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0776":{"rfcNumber":"RFC0776","href":"https://www.rfc-editor.org/rfc/rfc776","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1981-01","status":"Historic","obsoletedBy":["RFC0790"],"obsoletes":["RFC0770"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0777":{"rfcNumber":"RFC0777","href":"https://www.rfc-editor.org/rfc/rfc777","title":"Internet Control Message Protocol","authors":["J. Postel"],"rawDate":"1981-04","status":"Unknown","obsoletedBy":["RFC0792"],"updates":["RFC0760"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0778":{"rfcNumber":"RFC0778","href":"https://www.rfc-editor.org/rfc/rfc778","title":"DCNET Internet Clock Service","authors":["D.L. Mills"],"rawDate":"1981-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0779":{"rfcNumber":"RFC0779","href":"https://www.rfc-editor.org/rfc/rfc779","title":"Telnet send-location option","authors":["E. Killian"],"rawDate":"1981-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0780":{"rfcNumber":"RFC0780","href":"https://www.rfc-editor.org/rfc/rfc780","title":"Mail Transfer Protocol","authors":["S. Sluizer","J. Postel"],"rawDate":"1981-05","status":"Unknown","obsoletedBy":["RFC0788"],"obsoletes":["RFC0772"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0781":{"rfcNumber":"RFC0781","href":"https://www.rfc-editor.org/rfc/rfc781","title":"Specification of the Internet Protocol (IP) timestamp option","authors":["Z. Su"],"rawDate":"1981-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0782":{"rfcNumber":"RFC0782","href":"https://www.rfc-editor.org/rfc/rfc782","title":"Virtual Terminal management model","authors":["J. Nabielsky","A.P. Skelton"],"rawDate":"1981-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0783":{"rfcNumber":"RFC0783","href":"https://www.rfc-editor.org/rfc/rfc783","title":"TFTP Protocol (revision 2)","authors":["K.R. Sollins"],"rawDate":"1981-06","status":"Unknown","obsoletedBy":["RFC1350"],"obsoletes":["IEN133"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=783","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0784":{"rfcNumber":"RFC0784","href":"https://www.rfc-editor.org/rfc/rfc784","title":"Mail Transfer Protocol: ISI TOPS20 implementation","authors":["S. Sluizer","J. Postel"],"rawDate":"1981-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0785":{"rfcNumber":"RFC0785","href":"https://www.rfc-editor.org/rfc/rfc785","title":"Mail Transfer Protocol: ISI TOPS20 file definitions","authors":["S. Sluizer","J. Postel"],"rawDate":"1981-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0786":{"rfcNumber":"RFC0786","href":"https://www.rfc-editor.org/rfc/rfc786","title":"Mail Transfer Protocol: ISI TOPS20 MTP-NIMAIL interface","authors":["S. Sluizer","J. Postel"],"rawDate":"1981-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0787":{"rfcNumber":"RFC0787","href":"https://www.rfc-editor.org/rfc/rfc787","title":"Connectionless data transmission survey/tutorial","authors":["A.L. Chapin"],"rawDate":"1981-07","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=787","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0788":{"rfcNumber":"RFC0788","href":"https://www.rfc-editor.org/rfc/rfc788","title":"Simple Mail Transfer Protocol","authors":["J. Postel"],"rawDate":"1981-11","status":"Unknown","obsoletedBy":["RFC0821"],"obsoletes":["RFC0780"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0789":{"rfcNumber":"RFC0789","href":"https://www.rfc-editor.org/rfc/rfc789","title":"Vulnerabilities of network control protocols: An example","authors":["E.C. Rosen"],"rawDate":"1981-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0790":{"rfcNumber":"RFC0790","href":"https://www.rfc-editor.org/rfc/rfc790","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1981-09","status":"Historic","obsoletedBy":["RFC0820"],"obsoletes":["RFC0776"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0791":{"rfcNumber":"RFC0791","href":"https://www.rfc-editor.org/rfc/rfc791","title":"Internet Protocol","authors":["J. Postel"],"rawDate":"1981-09","status":"Internet Standard","updatedBy":["RFC1349","RFC2474","RFC6864"],"obsoletes":["RFC0760"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=791","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0792":{"rfcNumber":"RFC0792","href":"https://www.rfc-editor.org/rfc/rfc792","title":"Internet Control Message Protocol","authors":["J. Postel"],"rawDate":"1981-09","status":"Internet Standard","updatedBy":["RFC0950","RFC4884","RFC6633","RFC6918"],"obsoletes":["RFC0777"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=792","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0793":{"rfcNumber":"RFC0793","href":"https://www.rfc-editor.org/rfc/rfc793","title":"Transmission Control Protocol","authors":["J. Postel"],"rawDate":"1981-09","status":"Internet Standard","updatedBy":["RFC1122","RFC3168","RFC6093","RFC6528"],"obsoletedBy":["RFC9293"],"obsoletes":["RFC0761"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=793","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0794":{"rfcNumber":"RFC0794","href":"https://www.rfc-editor.org/rfc/rfc794","title":"Pre-emption","authors":["V.G. Cerf"],"rawDate":"1981-09","status":"Informational","updates":["IEN125"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0795":{"rfcNumber":"RFC0795","href":"https://www.rfc-editor.org/rfc/rfc795","title":"Service mappings","authors":["J. Postel"],"rawDate":"1981-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0796":{"rfcNumber":"RFC0796","href":"https://www.rfc-editor.org/rfc/rfc796","title":"Address mappings","authors":["J. Postel"],"rawDate":"1981-09","status":"Historic","obsoletes":["IEN115"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0797":{"rfcNumber":"RFC0797","href":"https://www.rfc-editor.org/rfc/rfc797","title":"Format for Bitmap files","authors":["A.R. Katz"],"rawDate":"1981-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0798":{"rfcNumber":"RFC0798","href":"https://www.rfc-editor.org/rfc/rfc798","title":"Decoding facsimile data from the Rapicom 450","authors":["A.R. Katz"],"rawDate":"1981-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0799":{"rfcNumber":"RFC0799","href":"https://www.rfc-editor.org/rfc/rfc799","title":"Internet name domains","authors":["D.L. Mills"],"rawDate":"1981-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0800":{"rfcNumber":"RFC0800","href":"https://www.rfc-editor.org/rfc/rfc800","title":"Request For Comments summary notes: 700-799","authors":["J. Postel","J. Vernon"],"rawDate":"1982-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0801":{"rfcNumber":"RFC0801","href":"https://www.rfc-editor.org/rfc/rfc801","title":"NCP/TCP transition plan","authors":["J. Postel"],"rawDate":"1981-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0802":{"rfcNumber":"RFC0802","href":"https://www.rfc-editor.org/rfc/rfc802","title":"ARPANET 1822L Host Access Protocol","authors":["A.G. Malis"],"rawDate":"1981-11","status":"Unknown","obsoletedBy":["RFC0851"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0803":{"rfcNumber":"RFC0803","href":"https://www.rfc-editor.org/rfc/rfc803","title":"Dacom 450/500 facsimile data transcoding","authors":["A. Agarwal","M.J. O'Connor","D.L. Mills"],"rawDate":"1981-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0804":{"rfcNumber":"RFC0804","href":"https://www.rfc-editor.org/rfc/rfc804","title":"CCITT draft recommendation T.4","authors":["International Telegraph and Telephone Consultative Committee of the International Telecommunication Union"],"rawDate":"1981-01","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=804","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0805":{"rfcNumber":"RFC0805","href":"https://www.rfc-editor.org/rfc/rfc805","title":"Computer mail meeting notes","authors":["J. Postel"],"rawDate":"1982-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0806":{"rfcNumber":"RFC0806","href":"https://www.rfc-editor.org/rfc/rfc806","title":"Proposed Federal Information Processing Standard: Specification for message format for computer based message systems","authors":["National Bureau of Standards"],"rawDate":"1981-09","status":"Unknown","obsoletedBy":["RFC0841"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0807":{"rfcNumber":"RFC0807","href":"https://www.rfc-editor.org/rfc/rfc807","title":"Multimedia mail meeting notes","authors":["J. Postel"],"rawDate":"1982-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0808":{"rfcNumber":"RFC0808","href":"https://www.rfc-editor.org/rfc/rfc808","title":"Summary of computer mail services meeting held at BBN on 10 January 1979","authors":["J. Postel"],"rawDate":"1982-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0809":{"rfcNumber":"RFC0809","href":"https://www.rfc-editor.org/rfc/rfc809","title":"UCL facsimile system","authors":["T. Chang"],"rawDate":"1982-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0810":{"rfcNumber":"RFC0810","href":"https://www.rfc-editor.org/rfc/rfc810","title":"DoD Internet host table specification","authors":["E.J. Feinler","K. Harrenstien","Z. Su","V. White"],"rawDate":"1982-03","status":"Unknown","obsoletedBy":["RFC0952"],"obsoletes":["RFC0608"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0811":{"rfcNumber":"RFC0811","href":"https://www.rfc-editor.org/rfc/rfc811","title":"Hostnames Server","authors":["K. Harrenstien","V. White","E.J. Feinler"],"rawDate":"1982-03","status":"Unknown","obsoletedBy":["RFC0953"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0812":{"rfcNumber":"RFC0812","href":"https://www.rfc-editor.org/rfc/rfc812","title":"NICNAME/WHOIS","authors":["K. Harrenstien","V. White"],"rawDate":"1982-03","status":"Unknown","obsoletedBy":["RFC0954","RFC3912"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0813":{"rfcNumber":"RFC0813","href":"https://www.rfc-editor.org/rfc/rfc813","title":"Window and Acknowledgement Strategy in TCP","authors":["D.D. Clark"],"rawDate":"1982-07","status":"Historic","obsoletedBy":["RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0814":{"rfcNumber":"RFC0814","href":"https://www.rfc-editor.org/rfc/rfc814","title":"Name, addresses, ports, and routes","authors":["D.D. Clark"],"rawDate":"1982-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0815":{"rfcNumber":"RFC0815","href":"https://www.rfc-editor.org/rfc/rfc815","title":"IP datagram reassembly algorithms","authors":["D.D. Clark"],"rawDate":"1982-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0816":{"rfcNumber":"RFC0816","href":"https://www.rfc-editor.org/rfc/rfc816","title":"Fault isolation and recovery","authors":["D.D. Clark"],"rawDate":"1982-07","status":"Historic","obsoletedBy":["RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0817":{"rfcNumber":"RFC0817","href":"https://www.rfc-editor.org/rfc/rfc817","title":"Modularity and efficiency in protocol implementation","authors":["D.D. Clark"],"rawDate":"1982-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0818":{"rfcNumber":"RFC0818","href":"https://www.rfc-editor.org/rfc/rfc818","title":"Remote User Telnet service","authors":["J. Postel"],"rawDate":"1982-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0819":{"rfcNumber":"RFC0819","href":"https://www.rfc-editor.org/rfc/rfc819","title":"The Domain Naming Convention for Internet User Applications","authors":["Z. Su","J. Postel"],"rawDate":"1982-08","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=819","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0820":{"rfcNumber":"RFC0820","href":"https://www.rfc-editor.org/rfc/rfc820","title":"Assigned numbers","authors":["J. Postel"],"rawDate":"1982-08","status":"Historic","obsoletedBy":["RFC0870"],"obsoletes":["RFC0790"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0821":{"rfcNumber":"RFC0821","href":"https://www.rfc-editor.org/rfc/rfc821","title":"Simple Mail Transfer Protocol","authors":["J. Postel"],"rawDate":"1982-08","status":"Internet Standard","obsoletedBy":["RFC2821"],"obsoletes":["RFC0788"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0822":{"rfcNumber":"RFC0822","href":"https://www.rfc-editor.org/rfc/rfc822","title":"STANDARD FOR THE FORMAT OF ARPA INTERNET TEXT MESSAGES","authors":["D. Crocker"],"rawDate":"1982-08","status":"Internet Standard","updatedBy":["RFC1123","RFC2156","RFC1327","RFC1138","RFC1148"],"obsoletedBy":["RFC2822"],"obsoletes":["RFC0733"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=822","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0823":{"rfcNumber":"RFC0823","href":"https://www.rfc-editor.org/rfc/rfc823","title":"DARPA Internet gateway","authors":["R.M. Hinden","A. Sheltzer"],"rawDate":"1982-09","status":"Historic","updates":["IEN109","IEN30"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=823","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0824":{"rfcNumber":"RFC0824","href":"https://www.rfc-editor.org/rfc/rfc824","title":"CRONUS Virtual Local Network","authors":["W.I. MacGregor","D.C. Tappan"],"rawDate":"1982-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0825":{"rfcNumber":"RFC0825","href":"https://www.rfc-editor.org/rfc/rfc825","title":"Request for comments on Requests For Comments","authors":["J. Postel"],"rawDate":"1982-11","status":"Unknown","obsoletedBy":["RFC1111","RFC1543","RFC2223"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0826":{"rfcNumber":"RFC0826","href":"https://www.rfc-editor.org/rfc/rfc826","title":"An Ethernet Address Resolution Protocol: Or Converting Network Protocol Addresses to 48.bit Ethernet Address for Transmission on Ethernet Hardware","authors":["D. Plummer"],"rawDate":"1982-11","status":"Internet Standard","updatedBy":["RFC5227","RFC5494"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=826","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0827":{"rfcNumber":"RFC0827","href":"https://www.rfc-editor.org/rfc/rfc827","title":"Exterior Gateway Protocol (EGP)","authors":["E.C. Rosen"],"rawDate":"1982-10","status":"Unknown","updatedBy":["RFC0904"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0828":{"rfcNumber":"RFC0828","href":"https://www.rfc-editor.org/rfc/rfc828","title":"Data communications: IFIP's international \"network\" of experts","authors":["K. Owen"],"rawDate":"1982-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0829":{"rfcNumber":"RFC0829","href":"https://www.rfc-editor.org/rfc/rfc829","title":"Packet satellite technology reference sources","authors":["V.G. Cerf"],"rawDate":"1982-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0830":{"rfcNumber":"RFC0830","href":"https://www.rfc-editor.org/rfc/rfc830","title":"Distributed system for Internet name service","authors":["Z. Su"],"rawDate":"1982-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0831":{"rfcNumber":"RFC0831","href":"https://www.rfc-editor.org/rfc/rfc831","title":"Backup access to the European side of SATNET","authors":["R.T. Braden"],"rawDate":"1982-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0832":{"rfcNumber":"RFC0832","href":"https://www.rfc-editor.org/rfc/rfc832","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1982-12","status":"Unknown","obsoletedBy":["RFC0833"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0833":{"rfcNumber":"RFC0833","href":"https://www.rfc-editor.org/rfc/rfc833","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1982-12","status":"Unknown","obsoletedBy":["RFC0834"],"obsoletes":["RFC0832"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0834":{"rfcNumber":"RFC0834","href":"https://www.rfc-editor.org/rfc/rfc834","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1982-12","status":"Unknown","obsoletedBy":["RFC0835"],"obsoletes":["RFC0833"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0835":{"rfcNumber":"RFC0835","href":"https://www.rfc-editor.org/rfc/rfc835","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1982-12","status":"Unknown","obsoletedBy":["RFC0836"],"obsoletes":["RFC0834"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0836":{"rfcNumber":"RFC0836","href":"https://www.rfc-editor.org/rfc/rfc836","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1983-01","status":"Unknown","obsoletedBy":["RFC0837"],"obsoletes":["RFC0835"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0837":{"rfcNumber":"RFC0837","href":"https://www.rfc-editor.org/rfc/rfc837","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1983-01","status":"Unknown","obsoletedBy":["RFC0838"],"obsoletes":["RFC0836"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0838":{"rfcNumber":"RFC0838","href":"https://www.rfc-editor.org/rfc/rfc838","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1983-01","status":"Unknown","obsoletedBy":["RFC0839"],"obsoletes":["RFC0837"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0839":{"rfcNumber":"RFC0839","href":"https://www.rfc-editor.org/rfc/rfc839","title":"Who talks TCP?","authors":["D. Smallberg"],"rawDate":"1983-01","status":"Unknown","obsoletedBy":["RFC0842"],"obsoletes":["RFC0838"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0840":{"rfcNumber":"RFC0840","href":"https://www.rfc-editor.org/rfc/rfc840","title":"Official protocols","authors":["J. Postel"],"rawDate":"1983-04","status":"Historic","obsoletedBy":["RFC0880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0841":{"rfcNumber":"RFC0841","href":"https://www.rfc-editor.org/rfc/rfc841","title":"Specification for message format for Computer Based Message Systems","authors":["National Bureau of Standards"],"rawDate":"1983-01","status":"Unknown","obsoletes":["RFC0806"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0842":{"rfcNumber":"RFC0842","href":"https://www.rfc-editor.org/rfc/rfc842","title":"Who talks TCP? - survey of 1 February 83","authors":["D. Smallberg"],"rawDate":"1983-02","status":"Unknown","obsoletedBy":["RFC0843"],"obsoletes":["RFC0839"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0843":{"rfcNumber":"RFC0843","href":"https://www.rfc-editor.org/rfc/rfc843","title":"Who talks TCP? - survey of 8 February 83","authors":["D. Smallberg"],"rawDate":"1983-02","status":"Unknown","updatedBy":["RFC0844"],"obsoletedBy":["RFC0845"],"obsoletes":["RFC0842"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0844":{"rfcNumber":"RFC0844","href":"https://www.rfc-editor.org/rfc/rfc844","title":"Who talks ICMP, too? - Survey of 18 February 1983","authors":["R. Clements"],"rawDate":"1983-02","status":"Unknown","updates":["RFC0843"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0845":{"rfcNumber":"RFC0845","href":"https://www.rfc-editor.org/rfc/rfc845","title":"Who talks TCP? - survey of 15 February 1983","authors":["D. Smallberg"],"rawDate":"1983-02","status":"Unknown","obsoletedBy":["RFC0846"],"obsoletes":["RFC0843"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0846":{"rfcNumber":"RFC0846","href":"https://www.rfc-editor.org/rfc/rfc846","title":"Who talks TCP? - survey of 22 February 1983","authors":["D. Smallberg"],"rawDate":"1983-02","status":"Unknown","obsoletedBy":["RFC0847"],"obsoletes":["RFC0845"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0847":{"rfcNumber":"RFC0847","href":"https://www.rfc-editor.org/rfc/rfc847","title":"Summary of Smallberg surveys","authors":["A. Westine","D. Smallberg","J. Postel"],"rawDate":"1983-02","status":"Unknown","obsoletes":["RFC0846"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0848":{"rfcNumber":"RFC0848","href":"https://www.rfc-editor.org/rfc/rfc848","title":"Who provides the \"little\" TCP services?","authors":["D. Smallberg"],"rawDate":"1983-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0849":{"rfcNumber":"RFC0849","href":"https://www.rfc-editor.org/rfc/rfc849","title":"Suggestions for improved host table distribution","authors":["M.R. Crispin"],"rawDate":"1983-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0850":{"rfcNumber":"RFC0850","href":"https://www.rfc-editor.org/rfc/rfc850","title":"Standard for interchange of USENET messages","authors":["M.R. Horton"],"rawDate":"1983-06","status":"Unknown","obsoletedBy":["RFC1036"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0851":{"rfcNumber":"RFC0851","href":"https://www.rfc-editor.org/rfc/rfc851","title":"ARPANET 1822L Host Access Protocol","authors":["A.G. Malis"],"rawDate":"1983-04","status":"Unknown","obsoletedBy":["RFC0878"],"obsoletes":["RFC0802"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0852":{"rfcNumber":"RFC0852","href":"https://www.rfc-editor.org/rfc/rfc852","title":"ARPANET short blocking feature","authors":["A.G. Malis"],"rawDate":"1983-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0854":{"rfcNumber":"RFC0854","href":"https://www.rfc-editor.org/rfc/rfc854","title":"Telnet Protocol Specification","authors":["J. Postel","J.K. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","updatedBy":["RFC5198"],"obsoletes":["RFC0764"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=854","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0855":{"rfcNumber":"RFC0855","href":"https://www.rfc-editor.org/rfc/rfc855","title":"Telnet Option Specifications","authors":["J. Postel","J.K. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["NIC18640"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0856":{"rfcNumber":"RFC0856","href":"https://www.rfc-editor.org/rfc/rfc856","title":"Telnet Binary Transmission","authors":["J. Postel","J. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["NIC15389"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0857":{"rfcNumber":"RFC0857","href":"https://www.rfc-editor.org/rfc/rfc857","title":"Telnet Echo Option","authors":["J. Postel","J. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["NIC15390"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0858":{"rfcNumber":"RFC0858","href":"https://www.rfc-editor.org/rfc/rfc858","title":"Telnet Suppress Go Ahead Option","authors":["J. Postel","J. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["NIC15392"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0859":{"rfcNumber":"RFC0859","href":"https://www.rfc-editor.org/rfc/rfc859","title":"Telnet Status Option","authors":["J. Postel","J. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["RFC0651"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0860":{"rfcNumber":"RFC0860","href":"https://www.rfc-editor.org/rfc/rfc860","title":"Telnet Timing Mark Option","authors":["J. Postel","J. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["NIC16238"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0861":{"rfcNumber":"RFC0861","href":"https://www.rfc-editor.org/rfc/rfc861","title":"Telnet Extended Options: List Option","authors":["J. Postel","J. Reynolds"],"rawDate":"1983-05","status":"Internet Standard","obsoletes":["NIC16239"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0862":{"rfcNumber":"RFC0862","href":"https://www.rfc-editor.org/rfc/rfc862","title":"Echo Protocol","authors":["J. Postel"],"rawDate":"1983-05","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0863":{"rfcNumber":"RFC0863","href":"https://www.rfc-editor.org/rfc/rfc863","title":"Discard Protocol","authors":["J. Postel"],"rawDate":"1983-05","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0864":{"rfcNumber":"RFC0864","href":"https://www.rfc-editor.org/rfc/rfc864","title":"Character Generator Protocol","authors":["J. Postel"],"rawDate":"1983-05","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=864","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0865":{"rfcNumber":"RFC0865","href":"https://www.rfc-editor.org/rfc/rfc865","title":"Quote of the Day Protocol","authors":["J. Postel"],"rawDate":"1983-05","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=865","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0866":{"rfcNumber":"RFC0866","href":"https://www.rfc-editor.org/rfc/rfc866","title":"Active users","authors":["J. Postel"],"rawDate":"1983-05","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0867":{"rfcNumber":"RFC0867","href":"https://www.rfc-editor.org/rfc/rfc867","title":"Daytime Protocol","authors":["J. Postel"],"rawDate":"1983-05","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0868":{"rfcNumber":"RFC0868","href":"https://www.rfc-editor.org/rfc/rfc868","title":"Time Protocol","authors":["J. Postel","K. Harrenstien"],"rawDate":"1983-05","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=868","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0869":{"rfcNumber":"RFC0869","href":"https://www.rfc-editor.org/rfc/rfc869","title":"Host Monitoring Protocol","authors":["R. Hinden"],"rawDate":"1983-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0870":{"rfcNumber":"RFC0870","href":"https://www.rfc-editor.org/rfc/rfc870","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1983-10","status":"Historic","obsoletedBy":["RFC0900"],"obsoletes":["RFC0820"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0871":{"rfcNumber":"RFC0871","href":"https://www.rfc-editor.org/rfc/rfc871","title":"Perspective on the ARPANET reference model","authors":["M.A. Padlipsky"],"rawDate":"1982-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0872":{"rfcNumber":"RFC0872","href":"https://www.rfc-editor.org/rfc/rfc872","title":"TCP-on-a-LAN","authors":["M.A. Padlipsky"],"rawDate":"1982-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0873":{"rfcNumber":"RFC0873","href":"https://www.rfc-editor.org/rfc/rfc873","title":"Illusion of vendor support","authors":["M.A. Padlipsky"],"rawDate":"1982-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0874":{"rfcNumber":"RFC0874","href":"https://www.rfc-editor.org/rfc/rfc874","title":"Critique of X.25","authors":["M.A. Padlipsky"],"rawDate":"1982-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0875":{"rfcNumber":"RFC0875","href":"https://www.rfc-editor.org/rfc/rfc875","title":"Gateways, architectures, and heffalumps","authors":["M.A. Padlipsky"],"rawDate":"1982-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0876":{"rfcNumber":"RFC0876","href":"https://www.rfc-editor.org/rfc/rfc876","title":"Survey of SMTP implementations","authors":["D. Smallberg"],"rawDate":"1983-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0877":{"rfcNumber":"RFC0877","href":"https://www.rfc-editor.org/rfc/rfc877","title":"Standard for the transmission of IP datagrams over public data networks","authors":["J.T. Korb"],"rawDate":"1983-09","status":"Unknown","obsoletedBy":["RFC1356"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0878":{"rfcNumber":"RFC0878","href":"https://www.rfc-editor.org/rfc/rfc878","title":"ARPANET 1822L Host Access Protocol","authors":["A.G. Malis"],"rawDate":"1983-12","status":"Unknown","obsoletes":["RFC0851"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0879":{"rfcNumber":"RFC0879","href":"https://www.rfc-editor.org/rfc/rfc879","title":"The TCP Maximum Segment Size and Related Topics","authors":["J. Postel"],"rawDate":"1983-11","status":"Historic","updatedBy":["RFC6691"],"obsoletedBy":["RFC7805","RFC9293"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=879","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0880":{"rfcNumber":"RFC0880","href":"https://www.rfc-editor.org/rfc/rfc880","title":"Official protocols","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1983-10","status":"Historic","obsoletedBy":["RFC0901"],"obsoletes":["RFC0840"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0881":{"rfcNumber":"RFC0881","href":"https://www.rfc-editor.org/rfc/rfc881","title":"Domain names plan and schedule","authors":["J. Postel"],"rawDate":"1983-11","status":"Unknown","updatedBy":["RFC0897"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0882":{"rfcNumber":"RFC0882","href":"https://www.rfc-editor.org/rfc/rfc882","title":"Domain names: Concepts and facilities","authors":["P. Mockapetris"],"rawDate":"1983-11","status":"Unknown","updatedBy":["RFC0973"],"obsoletedBy":["RFC1034","RFC1035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=882","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0883":{"rfcNumber":"RFC0883","href":"https://www.rfc-editor.org/rfc/rfc883","title":"Domain names: Implementation specification","authors":["P. Mockapetris"],"rawDate":"1983-11","status":"Unknown","updatedBy":["RFC0973"],"obsoletedBy":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0884":{"rfcNumber":"RFC0884","href":"https://www.rfc-editor.org/rfc/rfc884","title":"Telnet terminal type option","authors":["M. Solomon","E. Wimmers"],"rawDate":"1983-12","status":"Unknown","obsoletedBy":["RFC0930"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0885":{"rfcNumber":"RFC0885","href":"https://www.rfc-editor.org/rfc/rfc885","title":"Telnet end of record option","authors":["J. Postel"],"rawDate":"1983-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0886":{"rfcNumber":"RFC0886","href":"https://www.rfc-editor.org/rfc/rfc886","title":"Proposed standard for message header munging","authors":["M.T. Rose"],"rawDate":"1983-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0887":{"rfcNumber":"RFC0887","href":"https://www.rfc-editor.org/rfc/rfc887","title":"Resource Location Protocol","authors":["M. Accetta"],"rawDate":"1983-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0888":{"rfcNumber":"RFC0888","href":"https://www.rfc-editor.org/rfc/rfc888","title":"\"STUB\" Exterior Gateway Protocol","authors":["L. Seamonson","E.C. Rosen"],"rawDate":"1984-01","status":"Unknown","updatedBy":["RFC0904"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0889":{"rfcNumber":"RFC0889","href":"https://www.rfc-editor.org/rfc/rfc889","title":"Internet Delay Experiments","authors":["D.L. Mills"],"rawDate":"1983-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=889","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0890":{"rfcNumber":"RFC0890","href":"https://www.rfc-editor.org/rfc/rfc890","title":"Exterior Gateway Protocol implementation schedule","authors":["J. Postel"],"rawDate":"1984-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0891":{"rfcNumber":"RFC0891","href":"https://www.rfc-editor.org/rfc/rfc891","title":"DCN Local-Network Protocols","authors":["D.L. Mills"],"rawDate":"1983-12","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0892":{"rfcNumber":"RFC0892","href":"https://www.rfc-editor.org/rfc/rfc892","title":"ISO Transport Protocol specification","authors":["International Organization for Standardization"],"rawDate":"1983-12","status":"Unknown","obsoletedBy":["RFC0905"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0893":{"rfcNumber":"RFC0893","href":"https://www.rfc-editor.org/rfc/rfc893","title":"Trailer encapsulations","authors":["S. Leffler","M.J. Karels"],"rawDate":"1984-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0894":{"rfcNumber":"RFC0894","href":"https://www.rfc-editor.org/rfc/rfc894","title":"A Standard for the Transmission of IP Datagrams over Ethernet Networks","authors":["C. Hornig"],"rawDate":"1984-04","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=894","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0895":{"rfcNumber":"RFC0895","href":"https://www.rfc-editor.org/rfc/rfc895","title":"Standard for the transmission of IP datagrams over experimental Ethernet networks","authors":["J. Postel"],"rawDate":"1984-04","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0896":{"rfcNumber":"RFC0896","href":"https://www.rfc-editor.org/rfc/rfc896","title":"Congestion Control in IP/TCP Internetworks","authors":["J. Nagle"],"rawDate":"1984-01","status":"Historic","obsoletedBy":["RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0897":{"rfcNumber":"RFC0897","href":"https://www.rfc-editor.org/rfc/rfc897","title":"Domain name system implementation schedule","authors":["J. Postel"],"rawDate":"1984-02","status":"Unknown","updatedBy":["RFC0921"],"updates":["RFC0881"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0898":{"rfcNumber":"RFC0898","href":"https://www.rfc-editor.org/rfc/rfc898","title":"Gateway special interest group meeting notes","authors":["R.M. Hinden","J. Postel","M. Muuss","J.K. Reynolds"],"rawDate":"1984-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0899":{"rfcNumber":"RFC0899","href":"https://www.rfc-editor.org/rfc/rfc899","title":"Request For Comments summary notes: 800-899","authors":["J. Postel","A. Westine"],"rawDate":"1984-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0900":{"rfcNumber":"RFC0900","href":"https://www.rfc-editor.org/rfc/rfc900","title":"Assigned Numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1984-06","status":"Historic","obsoletedBy":["RFC0923"],"obsoletes":["RFC0870"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0901":{"rfcNumber":"RFC0901","href":"https://www.rfc-editor.org/rfc/rfc901","title":"Official ARPA-Internet protocols","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1984-06","status":"Unknown","obsoletedBy":["RFC0924"],"obsoletes":["RFC0880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0902":{"rfcNumber":"RFC0902","href":"https://www.rfc-editor.org/rfc/rfc902","title":"ARPA Internet Protocol policy","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1984-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0903":{"rfcNumber":"RFC0903","href":"https://www.rfc-editor.org/rfc/rfc903","title":"A Reverse Address Resolution Protocol","authors":["R. Finlayson","T. Mann","J.C. Mogul","M. Theimer"],"rawDate":"1984-06","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0904":{"rfcNumber":"RFC0904","href":"https://www.rfc-editor.org/rfc/rfc904","title":"Exterior Gateway Protocol formal specification","authors":["D.L. Mills"],"rawDate":"1984-04","status":"Historic","updates":["RFC0827","RFC0888"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0905":{"rfcNumber":"RFC0905","href":"https://www.rfc-editor.org/rfc/rfc905","title":"ISO Transport Protocol specification ISO DP 8073","authors":["ISO"],"rawDate":"1984-04","status":"Unknown","obsoletes":["RFC0892"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0906":{"rfcNumber":"RFC0906","href":"https://www.rfc-editor.org/rfc/rfc906","title":"Bootstrap loading using TFTP","authors":["R. Finlayson"],"rawDate":"1984-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0907":{"rfcNumber":"RFC0907","href":"https://www.rfc-editor.org/rfc/rfc907","title":"Host Access Protocol specification","authors":["Bolt Beranek and Newman Laboratories"],"rawDate":"1984-07","status":"Internet Standard","updatedBy":["RFC1221"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0908":{"rfcNumber":"RFC0908","href":"https://www.rfc-editor.org/rfc/rfc908","title":"Reliable Data Protocol","authors":["D. Velten","R.M. Hinden","J. Sax"],"rawDate":"1984-07","status":"Experimental","updatedBy":["RFC1151"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0909":{"rfcNumber":"RFC0909","href":"https://www.rfc-editor.org/rfc/rfc909","title":"Loader Debugger Protocol","authors":["C. Welles","W. Milliken"],"rawDate":"1984-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0910":{"rfcNumber":"RFC0910","href":"https://www.rfc-editor.org/rfc/rfc910","title":"Multimedia mail meeting notes","authors":["H.C. Forsdick"],"rawDate":"1984-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0911":{"rfcNumber":"RFC0911","href":"https://www.rfc-editor.org/rfc/rfc911","title":"EGP Gateway under Berkeley UNIX 4.2","authors":["P. Kirton"],"rawDate":"1984-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0912":{"rfcNumber":"RFC0912","href":"https://www.rfc-editor.org/rfc/rfc912","title":"Authentication service","authors":["M. St. Johns"],"rawDate":"1984-09","status":"Unknown","obsoletedBy":["RFC0931"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0913":{"rfcNumber":"RFC0913","href":"https://www.rfc-editor.org/rfc/rfc913","title":"Simple File Transfer Protocol","authors":["M. Lottor"],"rawDate":"1984-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0914":{"rfcNumber":"RFC0914","href":"https://www.rfc-editor.org/rfc/rfc914","title":"Thinwire protocol for connecting personal computers to the Internet","authors":["D.J. Farber","G. Delp","T.M. Conte"],"rawDate":"1984-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0915":{"rfcNumber":"RFC0915","href":"https://www.rfc-editor.org/rfc/rfc915","title":"Network mail path service","authors":["M.A. Elvy","R. Nedved"],"rawDate":"1984-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0916":{"rfcNumber":"RFC0916","href":"https://www.rfc-editor.org/rfc/rfc916","title":"Reliable Asynchronous Transfer Protocol (RATP)","authors":["G.G. Finn"],"rawDate":"1984-10","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=916","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0917":{"rfcNumber":"RFC0917","href":"https://www.rfc-editor.org/rfc/rfc917","title":"Internet subnets","authors":["J.C. Mogul"],"rawDate":"1984-10","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=917","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0918":{"rfcNumber":"RFC0918","href":"https://www.rfc-editor.org/rfc/rfc918","title":"Post Office Protocol","authors":["J.K. Reynolds"],"rawDate":"1984-10","status":"Unknown","obsoletedBy":["RFC0937"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=918","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0919":{"rfcNumber":"RFC0919","href":"https://www.rfc-editor.org/rfc/rfc919","title":"Broadcasting Internet Datagrams","authors":["J.C. Mogul"],"rawDate":"1984-10","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0920":{"rfcNumber":"RFC0920","href":"https://www.rfc-editor.org/rfc/rfc920","title":"Domain requirements","authors":["J. Postel","J.K. Reynolds"],"rawDate":"1984-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0921":{"rfcNumber":"RFC0921","href":"https://www.rfc-editor.org/rfc/rfc921","title":"Domain name system implementation schedule - revised","authors":["J. Postel"],"rawDate":"1984-10","status":"Unknown","updates":["RFC0897"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0922":{"rfcNumber":"RFC0922","href":"https://www.rfc-editor.org/rfc/rfc922","title":"Broadcasting Internet datagrams in the presence of subnets","authors":["J.C. Mogul"],"rawDate":"1984-10","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0923":{"rfcNumber":"RFC0923","href":"https://www.rfc-editor.org/rfc/rfc923","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1984-10","status":"Historic","obsoletedBy":["RFC0943"],"obsoletes":["RFC0900"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0924":{"rfcNumber":"RFC0924","href":"https://www.rfc-editor.org/rfc/rfc924","title":"Official ARPA-Internet protocols for connecting personal computers to the Internet","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1984-10","status":"Unknown","obsoletedBy":["RFC0944"],"obsoletes":["RFC0901"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0925":{"rfcNumber":"RFC0925","href":"https://www.rfc-editor.org/rfc/rfc925","title":"Multi-LAN address resolution","authors":["J. Postel"],"rawDate":"1984-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0926":{"rfcNumber":"RFC0926","href":"https://www.rfc-editor.org/rfc/rfc926","title":"Protocol for providing the connectionless mode network services","authors":["International Organization for Standardization"],"rawDate":"1984-12","status":"Unknown","obsoletedBy":["RFC0994"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0927":{"rfcNumber":"RFC0927","href":"https://www.rfc-editor.org/rfc/rfc927","title":"TACACS user identification Telnet option","authors":["B.A. Anderson"],"rawDate":"1984-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0928":{"rfcNumber":"RFC0928","href":"https://www.rfc-editor.org/rfc/rfc928","title":"Introduction to proposed DoD standard H-FP","authors":["M.A. Padlipsky"],"rawDate":"1984-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0929":{"rfcNumber":"RFC0929","href":"https://www.rfc-editor.org/rfc/rfc929","title":"Proposed Host-Front End Protocol","authors":["J. Lilienkamp","R. Mandell","M.A. Padlipsky"],"rawDate":"1984-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0930":{"rfcNumber":"RFC0930","href":"https://www.rfc-editor.org/rfc/rfc930","title":"Telnet terminal type option","authors":["M. Solomon","E. Wimmers"],"rawDate":"1985-01","status":"Unknown","obsoletedBy":["RFC1091"],"obsoletes":["RFC0884"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0931":{"rfcNumber":"RFC0931","href":"https://www.rfc-editor.org/rfc/rfc931","title":"Authentication server","authors":["M. St. Johns"],"rawDate":"1985-01","status":"Unknown","obsoletedBy":["RFC1413"],"obsoletes":["RFC0912"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0932":{"rfcNumber":"RFC0932","href":"https://www.rfc-editor.org/rfc/rfc932","title":"Subnetwork addressing scheme","authors":["D.D. Clark"],"rawDate":"1985-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0933":{"rfcNumber":"RFC0933","href":"https://www.rfc-editor.org/rfc/rfc933","title":"Output marking Telnet option","authors":["S. Silverman"],"rawDate":"1985-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0934":{"rfcNumber":"RFC0934","href":"https://www.rfc-editor.org/rfc/rfc934","title":"Proposed standard for message encapsulation","authors":["M.T. Rose","E.A. Stefferud"],"rawDate":"1985-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0935":{"rfcNumber":"RFC0935","href":"https://www.rfc-editor.org/rfc/rfc935","title":"Reliable link layer protocols","authors":["J.G. Robinson"],"rawDate":"1985-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0936":{"rfcNumber":"RFC0936","href":"https://www.rfc-editor.org/rfc/rfc936","title":"Another Internet subnet addressing scheme","authors":["M.J. Karels"],"rawDate":"1985-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0937":{"rfcNumber":"RFC0937","href":"https://www.rfc-editor.org/rfc/rfc937","title":"Post Office Protocol: Version 2","authors":["M. Butler","J. Postel","D. Chase","J. Goldberger","J.K. Reynolds"],"rawDate":"1985-02","status":"Historic","obsoletes":["RFC0918"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0938":{"rfcNumber":"RFC0938","href":"https://www.rfc-editor.org/rfc/rfc938","title":"Internet Reliable Transaction Protocol functional and interface specification","authors":["T. Miller"],"rawDate":"1985-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0939":{"rfcNumber":"RFC0939","href":"https://www.rfc-editor.org/rfc/rfc939","title":"Executive summary of the NRC report on transport protocols for Department of Defense data networks","authors":["National Research Council"],"rawDate":"1985-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0940":{"rfcNumber":"RFC0940","href":"https://www.rfc-editor.org/rfc/rfc940","title":"Toward an Internet standard scheme for subnetting","authors":["Gateway Algorithms and Data Structures Task Force"],"rawDate":"1985-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0941":{"rfcNumber":"RFC0941","href":"https://www.rfc-editor.org/rfc/rfc941","title":"Addendum to the network service definition covering network layer addressing","authors":["International Organization for Standardization"],"rawDate":"1985-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0942":{"rfcNumber":"RFC0942","href":"https://www.rfc-editor.org/rfc/rfc942","title":"Transport protocols for Department of Defense data networks","authors":["National Research Council"],"rawDate":"1985-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0943":{"rfcNumber":"RFC0943","href":"https://www.rfc-editor.org/rfc/rfc943","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1985-04","status":"Historic","obsoletedBy":["RFC0960"],"obsoletes":["RFC0923"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0944":{"rfcNumber":"RFC0944","href":"https://www.rfc-editor.org/rfc/rfc944","title":"Official ARPA-Internet protocols","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1985-04","status":"Unknown","obsoletedBy":["RFC0961"],"obsoletes":["RFC0924"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0945":{"rfcNumber":"RFC0945","href":"https://www.rfc-editor.org/rfc/rfc945","title":"DoD statement on the NRC report","authors":["J. Postel"],"rawDate":"1985-05","status":"Unknown","obsoletedBy":["RFC1039"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0946":{"rfcNumber":"RFC0946","href":"https://www.rfc-editor.org/rfc/rfc946","title":"Telnet terminal location number option","authors":["R. Nedved"],"rawDate":"1985-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0947":{"rfcNumber":"RFC0947","href":"https://www.rfc-editor.org/rfc/rfc947","title":"Multi-network broadcasting within the Internet","authors":["K. Lebowitz","D. Mankins"],"rawDate":"1985-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0948":{"rfcNumber":"RFC0948","href":"https://www.rfc-editor.org/rfc/rfc948","title":"Two methods for the transmission of IP datagrams over IEEE 802.3 networks","authors":["I. Winston"],"rawDate":"1985-06","status":"Unknown","obsoletedBy":["RFC1042"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0949":{"rfcNumber":"RFC0949","href":"https://www.rfc-editor.org/rfc/rfc949","title":"FTP unique-named store command","authors":["M.A. Padlipsky"],"rawDate":"1985-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0950":{"rfcNumber":"RFC0950","href":"https://www.rfc-editor.org/rfc/rfc950","title":"Internet Standard Subnetting Procedure","authors":["J.C. Mogul","J. Postel"],"rawDate":"1985-08","status":"Internet Standard","updatedBy":["RFC6918"],"updates":["RFC0792"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0951":{"rfcNumber":"RFC0951","href":"https://www.rfc-editor.org/rfc/rfc951","title":"Bootstrap Protocol","authors":["W.J. Croft","J. Gilmore"],"rawDate":"1985-09","status":"Draft Standard","updatedBy":["RFC1395","RFC1497","RFC1532","RFC1542","RFC5494"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=951","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0952":{"rfcNumber":"RFC0952","href":"https://www.rfc-editor.org/rfc/rfc952","title":"DoD Internet host table specification","authors":["K. Harrenstien","M.K. Stahl","E.J. Feinler"],"rawDate":"1985-10","status":"Unknown","updatedBy":["RFC1123"],"obsoletes":["RFC0810"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=952","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0953":{"rfcNumber":"RFC0953","href":"https://www.rfc-editor.org/rfc/rfc953","title":"Hostname Server","authors":["K. Harrenstien","M.K. Stahl","E.J. Feinler"],"rawDate":"1985-10","status":"Historic","obsoletes":["RFC0811"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0954":{"rfcNumber":"RFC0954","href":"https://www.rfc-editor.org/rfc/rfc954","title":"NICNAME/WHOIS","authors":["K. Harrenstien","M.K. Stahl","E.J. Feinler"],"rawDate":"1985-10","status":"Draft Standard","obsoletedBy":["RFC3912"],"obsoletes":["RFC0812"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0955":{"rfcNumber":"RFC0955","href":"https://www.rfc-editor.org/rfc/rfc955","title":"Towards a transport service for transaction processing applications","authors":["R.T. Braden"],"rawDate":"1985-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0956":{"rfcNumber":"RFC0956","href":"https://www.rfc-editor.org/rfc/rfc956","title":"Algorithms for synchronizing network clocks","authors":["D.L. Mills"],"rawDate":"1985-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0957":{"rfcNumber":"RFC0957","href":"https://www.rfc-editor.org/rfc/rfc957","title":"Experiments in network clock synchronization","authors":["D.L. Mills"],"rawDate":"1985-09","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=957","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0958":{"rfcNumber":"RFC0958","href":"https://www.rfc-editor.org/rfc/rfc958","title":"Network Time Protocol (NTP)","authors":["D.L. Mills"],"rawDate":"1985-09","status":"Unknown","obsoletedBy":["RFC1059","RFC1119","RFC1305"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0959":{"rfcNumber":"RFC0959","href":"https://www.rfc-editor.org/rfc/rfc959","title":"File Transfer Protocol","authors":["J. Postel","J. Reynolds"],"rawDate":"1985-10","status":"Internet Standard","updatedBy":["RFC2228","RFC2640","RFC2773","RFC3659","RFC5797","RFC7151"],"obsoletes":["RFC0765"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=959","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0960":{"rfcNumber":"RFC0960","href":"https://www.rfc-editor.org/rfc/rfc960","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1985-12","status":"Historic","obsoletedBy":["RFC0990"],"obsoletes":["RFC0943"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0961":{"rfcNumber":"RFC0961","href":"https://www.rfc-editor.org/rfc/rfc961","title":"Official ARPA-Internet protocols","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1985-12","status":"Unknown","obsoletedBy":["RFC0991"],"obsoletes":["RFC0944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0962":{"rfcNumber":"RFC0962","href":"https://www.rfc-editor.org/rfc/rfc962","title":"TCP-4 prime","authors":["M.A. Padlipsky"],"rawDate":"1985-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0963":{"rfcNumber":"RFC0963","href":"https://www.rfc-editor.org/rfc/rfc963","title":"Some problems with the specification of the Military Standard Internet Protocol","authors":["D.P. Sidhu"],"rawDate":"1985-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0964":{"rfcNumber":"RFC0964","href":"https://www.rfc-editor.org/rfc/rfc964","title":"Some problems with the specification of the Military Standard Transmission Control Protocol","authors":["D.P. Sidhu","T. Blumer"],"rawDate":"1985-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0965":{"rfcNumber":"RFC0965","href":"https://www.rfc-editor.org/rfc/rfc965","title":"Format for a graphical communication protocol","authors":["L. Aguilar"],"rawDate":"1985-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0966":{"rfcNumber":"RFC0966","href":"https://www.rfc-editor.org/rfc/rfc966","title":"Host groups: A multicast extension to the Internet Protocol","authors":["S.E. Deering","D.R. Cheriton"],"rawDate":"1985-12","status":"Unknown","obsoletedBy":["RFC0988"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0967":{"rfcNumber":"RFC0967","href":"https://www.rfc-editor.org/rfc/rfc967","title":"All victims together","authors":["M.A. Padlipsky"],"rawDate":"1985-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0968":{"rfcNumber":"RFC0968","href":"https://www.rfc-editor.org/rfc/rfc968","title":"Twas the night before start-up","authors":["V.G. Cerf"],"rawDate":"1985-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0969":{"rfcNumber":"RFC0969","href":"https://www.rfc-editor.org/rfc/rfc969","title":"NETBLT: A bulk data transfer protocol","authors":["D.D. Clark","M.L. Lambert","L. Zhang"],"rawDate":"1985-12","status":"Unknown","obsoletedBy":["RFC0998"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0970":{"rfcNumber":"RFC0970","href":"https://www.rfc-editor.org/rfc/rfc970","title":"On Packet Switches With Infinite Storage","authors":["J. Nagle"],"rawDate":"1985-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0971":{"rfcNumber":"RFC0971","href":"https://www.rfc-editor.org/rfc/rfc971","title":"Survey of data representation standards","authors":["A.L. DeSchon"],"rawDate":"1986-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0972":{"rfcNumber":"RFC0972","href":"https://www.rfc-editor.org/rfc/rfc972","title":"Password Generator Protocol","authors":["F.J. Wancho"],"rawDate":"1986-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0973":{"rfcNumber":"RFC0973","href":"https://www.rfc-editor.org/rfc/rfc973","title":"Domain system changes and observations","authors":["P. Mockapetris"],"rawDate":"1986-01","status":"Unknown","obsoletedBy":["RFC1034","RFC1035"],"updates":["RFC0882","RFC0883"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0974":{"rfcNumber":"RFC0974","href":"https://www.rfc-editor.org/rfc/rfc974","title":"Mail routing and the domain system","authors":["C. Partridge"],"rawDate":"1986-01","status":"Historic","obsoletedBy":["RFC2821"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0975":{"rfcNumber":"RFC0975","href":"https://www.rfc-editor.org/rfc/rfc975","title":"Autonomous confederations","authors":["D.L. Mills"],"rawDate":"1986-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0976":{"rfcNumber":"RFC0976","href":"https://www.rfc-editor.org/rfc/rfc976","title":"UUCP mail interchange format standard","authors":["M.R. Horton"],"rawDate":"1986-02","status":"Unknown","updatedBy":["RFC1137"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0977":{"rfcNumber":"RFC0977","href":"https://www.rfc-editor.org/rfc/rfc977","title":"Network News Transfer Protocol","authors":["B. Kantor","P. Lapsley"],"rawDate":"1986-02","status":"Proposed Standard","obsoletedBy":["RFC3977"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0978":{"rfcNumber":"RFC0978","href":"https://www.rfc-editor.org/rfc/rfc978","title":"Voice File Interchange Protocol (VFIP)","authors":["J.K. Reynolds","R. Gillman","W.A. Brackenridge","A. Witkowski","J. Postel"],"rawDate":"1986-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0979":{"rfcNumber":"RFC0979","href":"https://www.rfc-editor.org/rfc/rfc979","title":"PSN End-to-End functional specification","authors":["A.G. Malis"],"rawDate":"1986-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0980":{"rfcNumber":"RFC0980","href":"https://www.rfc-editor.org/rfc/rfc980","title":"Protocol document order information","authors":["O.J. Jacobsen","J. Postel"],"rawDate":"1986-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0981":{"rfcNumber":"RFC0981","href":"https://www.rfc-editor.org/rfc/rfc981","title":"Experimental multiple-path routing algorithm","authors":["D.L. Mills"],"rawDate":"1986-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0982":{"rfcNumber":"RFC0982","href":"https://www.rfc-editor.org/rfc/rfc982","title":"Guidelines for the specification of the structure of the Domain Specific Part (DSP) of the ISO standard NSAP address","authors":["H.W. Braun"],"rawDate":"1986-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0983":{"rfcNumber":"RFC0983","href":"https://www.rfc-editor.org/rfc/rfc983","title":"ISO transport arrives on top of the TCP","authors":["D.E. Cass","M.T. Rose"],"rawDate":"1986-04","status":"Unknown","obsoletedBy":["RFC1006"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0984":{"rfcNumber":"RFC0984","href":"https://www.rfc-editor.org/rfc/rfc984","title":"PCMAIL: A distributed mail system for personal computers","authors":["D.D. Clark","M.L. Lambert"],"rawDate":"1986-05","status":"Unknown","obsoletedBy":["RFC0993"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0985":{"rfcNumber":"RFC0985","href":"https://www.rfc-editor.org/rfc/rfc985","title":"Requirements for Internet gateways - draft","authors":["National Science Foundation","Network Technical Advisory Group"],"rawDate":"1986-05","status":"Unknown","obsoletedBy":["RFC1009"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0986":{"rfcNumber":"RFC0986","href":"https://www.rfc-editor.org/rfc/rfc986","title":"Guidelines for the use of Internet-IP addresses in the ISO Connectionless-Mode Network Protocol","authors":["R. Callon","H.W. Braun"],"rawDate":"1986-06","status":"Unknown","obsoletedBy":["RFC1069"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0987":{"rfcNumber":"RFC0987","href":"https://www.rfc-editor.org/rfc/rfc987","title":"Mapping between X.400 and RFC 822","authors":["S.E. Kille"],"rawDate":"1986-06","status":"Unknown","updatedBy":["RFC1026","RFC1138","RFC1148"],"obsoletedBy":["RFC2156","RFC1327"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0988":{"rfcNumber":"RFC0988","href":"https://www.rfc-editor.org/rfc/rfc988","title":"Host extensions for IP multicasting","authors":["S.E. Deering"],"rawDate":"1986-07","status":"Unknown","obsoletedBy":["RFC1054","RFC1112"],"obsoletes":["RFC0966"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0989":{"rfcNumber":"RFC0989","href":"https://www.rfc-editor.org/rfc/rfc989","title":"Privacy enhancement for Internet electronic mail: Part I: Message encipherment and authentication procedures","authors":["J. Linn"],"rawDate":"1987-02","status":"Unknown","obsoletedBy":["RFC1040","RFC1113"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0990":{"rfcNumber":"RFC0990","href":"https://www.rfc-editor.org/rfc/rfc990","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1986-11","status":"Historic","updatedBy":["RFC0997"],"obsoletedBy":["RFC1010"],"obsoletes":["RFC0960"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0991":{"rfcNumber":"RFC0991","href":"https://www.rfc-editor.org/rfc/rfc991","title":"Official ARPA-Internet protocols","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1986-11","status":"Unknown","obsoletedBy":["RFC1011"],"obsoletes":["RFC0961"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0992":{"rfcNumber":"RFC0992","href":"https://www.rfc-editor.org/rfc/rfc992","title":"On communication support for fault tolerant process groups","authors":["K.P. Birman","T.A. Joseph"],"rawDate":"1986-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0993":{"rfcNumber":"RFC0993","href":"https://www.rfc-editor.org/rfc/rfc993","title":"PCMAIL: A distributed mail system for personal computers","authors":["D.D. Clark","M.L. Lambert"],"rawDate":"1986-12","status":"Unknown","obsoletedBy":["RFC1056"],"obsoletes":["RFC0984"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0994":{"rfcNumber":"RFC0994","href":"https://www.rfc-editor.org/rfc/rfc994","title":"Final text of DIS 8473, Protocol for Providing the Connectionless-mode Network Service","authors":["International Organization for Standardization"],"rawDate":"1986-03","status":"Unknown","obsoletes":["RFC0926"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=994","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0995":{"rfcNumber":"RFC0995","href":"https://www.rfc-editor.org/rfc/rfc995","title":"End System to Intermediate System Routing Exchange Protocol for use in conjunction with ISO 8473","authors":["International Organization for Standardization"],"rawDate":"1986-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0996":{"rfcNumber":"RFC0996","href":"https://www.rfc-editor.org/rfc/rfc996","title":"Statistics server","authors":["D.L. Mills"],"rawDate":"1987-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0997":{"rfcNumber":"RFC0997","href":"https://www.rfc-editor.org/rfc/rfc997","title":"Internet numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1987-03","status":"Unknown","obsoletedBy":["RFC1020","RFC1117"],"updates":["RFC0990"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0998":{"rfcNumber":"RFC0998","href":"https://www.rfc-editor.org/rfc/rfc998","title":"NETBLT: A bulk data transfer protocol","authors":["D.D. Clark","M.L. Lambert","L. Zhang"],"rawDate":"1987-03","status":"Experimental","obsoletes":["RFC0969"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc0999":{"rfcNumber":"RFC0999","href":"https://www.rfc-editor.org/rfc/rfc999","title":"Requests For Comments summary notes: 900-999","authors":["A. Westine","J. Postel"],"rawDate":"1987-04","status":"Unknown","obsoletedBy":["RFC1000"],"obsoletes":["RFC0160"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1":{"aliasOf":"rfc0001"},"rfc10":{"aliasOf":"rfc0010"},"rfc100":{"aliasOf":"rfc0100"},"rfc1000":{"rfcNumber":"RFC1000","href":"https://www.rfc-editor.org/rfc/rfc1000","title":"Request For Comments reference guide","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1987-08","status":"Unknown","obsoletes":["RFC0999"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1001":{"rfcNumber":"RFC1001","href":"https://www.rfc-editor.org/rfc/rfc1001","title":"Protocol standard for a NetBIOS service on a TCP/UDP transport: Concepts and methods","authors":["NetBIOS Working Group in the Defense Advanced Research Projects Agency","Internet Activities Board","End-to-End Services Task Force"],"rawDate":"1987-03","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1001","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1002":{"rfcNumber":"RFC1002","href":"https://www.rfc-editor.org/rfc/rfc1002","title":"Protocol standard for a NetBIOS service on a TCP/UDP transport: Detailed specifications","authors":["NetBIOS Working Group in the Defense Advanced Research Projects Agency","Internet Activities Board","End-to-End Services Task Force"],"rawDate":"1987-03","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1002","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1003":{"rfcNumber":"RFC1003","href":"https://www.rfc-editor.org/rfc/rfc1003","title":"Issues in defining an equations representation standard","authors":["A.R. Katz"],"rawDate":"1987-03","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1004":{"rfcNumber":"RFC1004","href":"https://www.rfc-editor.org/rfc/rfc1004","title":"Distributed-protocol authentication scheme","authors":["D.L. Mills"],"rawDate":"1987-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1005":{"rfcNumber":"RFC1005","href":"https://www.rfc-editor.org/rfc/rfc1005","title":"ARPANET AHIP-E Host Access Protocol (enhanced AHIP)","authors":["A. Khanna","A.G. Malis"],"rawDate":"1987-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1006":{"rfcNumber":"RFC1006","href":"https://www.rfc-editor.org/rfc/rfc1006","title":"ISO Transport Service on top of the TCP Version: 3","authors":["M.T. Rose","D.E. Cass"],"rawDate":"1987-05","status":"Internet Standard","updatedBy":["RFC2126"],"obsoletes":["RFC0983"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1007":{"rfcNumber":"RFC1007","href":"https://www.rfc-editor.org/rfc/rfc1007","title":"Military supplement to the ISO Transport Protocol","authors":["W. McCoy"],"rawDate":"1987-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1008":{"rfcNumber":"RFC1008","href":"https://www.rfc-editor.org/rfc/rfc1008","title":"Implementation guide for the ISO Transport Protocol","authors":["W. McCoy"],"rawDate":"1987-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1009":{"rfcNumber":"RFC1009","href":"https://www.rfc-editor.org/rfc/rfc1009","title":"Requirements for Internet gateways","authors":["R.T. Braden","J. Postel"],"rawDate":"1987-06","status":"Historic","obsoletedBy":["RFC1812"],"obsoletes":["RFC0985"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc101":{"aliasOf":"rfc0101"},"rfc1010":{"rfcNumber":"RFC1010","href":"https://www.rfc-editor.org/rfc/rfc1010","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1987-05","status":"Historic","obsoletedBy":["RFC1060"],"obsoletes":["RFC0990"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1011":{"rfcNumber":"RFC1011","href":"https://www.rfc-editor.org/rfc/rfc1011","title":"Official Internet protocols","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1987-05","status":"Unknown","updatedBy":["RFC6093","RFC9293"],"obsoletes":["RFC0991"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1012":{"rfcNumber":"RFC1012","href":"https://www.rfc-editor.org/rfc/rfc1012","title":"Bibliography of Request For Comments 1 through 999","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1987-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1013":{"rfcNumber":"RFC1013","href":"https://www.rfc-editor.org/rfc/rfc1013","title":"X Window System Protocol, version 11: Alpha update April 1987","authors":["R.W. Scheifler"],"rawDate":"1987-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1014":{"rfcNumber":"RFC1014","href":"https://www.rfc-editor.org/rfc/rfc1014","title":"XDR: External Data Representation standard","authors":["Sun Microsystems"],"rawDate":"1987-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1015":{"rfcNumber":"RFC1015","href":"https://www.rfc-editor.org/rfc/rfc1015","title":"Implementation plan for interagency research Internet","authors":["B.M. Leiner"],"rawDate":"1987-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1016":{"rfcNumber":"RFC1016","href":"https://www.rfc-editor.org/rfc/rfc1016","title":"Something a Host Could Do with Source Quench: The Source Quench Introduced Delay (SQuID)","authors":["W. Prue","J. Postel"],"rawDate":"1987-07","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1017":{"rfcNumber":"RFC1017","href":"https://www.rfc-editor.org/rfc/rfc1017","title":"Network requirements for scientific research: Internet task force on scientific computing","authors":["B.M. Leiner"],"rawDate":"1987-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1018":{"rfcNumber":"RFC1018","href":"https://www.rfc-editor.org/rfc/rfc1018","title":"Some comments on SQuID","authors":["A.M. McKenzie"],"rawDate":"1987-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1019":{"rfcNumber":"RFC1019","href":"https://www.rfc-editor.org/rfc/rfc1019","title":"Report of the Workshop on Environments for Computational Mathematics","authors":["D. Arnon"],"rawDate":"1987-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc102":{"aliasOf":"rfc0102"},"rfc1020":{"rfcNumber":"RFC1020","href":"https://www.rfc-editor.org/rfc/rfc1020","title":"Internet numbers","authors":["S. Romano","M.K. Stahl"],"rawDate":"1987-11","status":"Unknown","obsoletedBy":["RFC1062","RFC1117","RFC1166"],"obsoletes":["RFC0997"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1021":{"rfcNumber":"RFC1021","href":"https://www.rfc-editor.org/rfc/rfc1021","title":"High-level Entity Management System (HEMS)","authors":["C. Partridge","G. Trewitt"],"rawDate":"1987-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1022":{"rfcNumber":"RFC1022","href":"https://www.rfc-editor.org/rfc/rfc1022","title":"High-level Entity Management Protocol (HEMP)","authors":["C. Partridge","G. Trewitt"],"rawDate":"1987-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1023":{"rfcNumber":"RFC1023","href":"https://www.rfc-editor.org/rfc/rfc1023","title":"HEMS monitoring and control language","authors":["G. Trewitt","C. Partridge"],"rawDate":"1987-10","status":"Unknown","obsoletedBy":["RFC1076"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1024":{"rfcNumber":"RFC1024","href":"https://www.rfc-editor.org/rfc/rfc1024","title":"HEMS variable definitions","authors":["C. Partridge","G. Trewitt"],"rawDate":"1987-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1025":{"rfcNumber":"RFC1025","href":"https://www.rfc-editor.org/rfc/rfc1025","title":"TCP and IP bake off","authors":["J. Postel"],"rawDate":"1987-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1026":{"rfcNumber":"RFC1026","href":"https://www.rfc-editor.org/rfc/rfc1026","title":"Addendum to RFC 987: (Mapping between X.400 and RFC-822)","authors":["S.E. Kille"],"rawDate":"1987-09","status":"Unknown","updatedBy":["RFC1138","RFC1148"],"obsoletedBy":["RFC2156","RFC1327"],"updates":["RFC0987"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1027":{"rfcNumber":"RFC1027","href":"https://www.rfc-editor.org/rfc/rfc1027","title":"Using ARP to implement transparent subnet gateways","authors":["S. Carl-Mitchell","J.S. Quarterman"],"rawDate":"1987-10","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1027","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1028":{"rfcNumber":"RFC1028","href":"https://www.rfc-editor.org/rfc/rfc1028","title":"Simple Gateway Monitoring Protocol","authors":["J. Davin","J.D. Case","M. Fedor","M.L. Schoffstall"],"rawDate":"1987-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1029":{"rfcNumber":"RFC1029","href":"https://www.rfc-editor.org/rfc/rfc1029","title":"More fault tolerant approach to address resolution for a Multi-LAN system of Ethernets","authors":["G. Parr"],"rawDate":"1988-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc103":{"aliasOf":"rfc0103"},"rfc1030":{"rfcNumber":"RFC1030","href":"https://www.rfc-editor.org/rfc/rfc1030","title":"On testing the NETBLT Protocol over divers networks","authors":["M.L. Lambert"],"rawDate":"1987-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1031":{"rfcNumber":"RFC1031","href":"https://www.rfc-editor.org/rfc/rfc1031","title":"MILNET name domain transition","authors":["W.D. Lazear"],"rawDate":"1987-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1032":{"rfcNumber":"RFC1032","href":"https://www.rfc-editor.org/rfc/rfc1032","title":"Domain administrators guide","authors":["M.K. Stahl"],"rawDate":"1987-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1033":{"rfcNumber":"RFC1033","href":"https://www.rfc-editor.org/rfc/rfc1033","title":"Domain Administrators Operations Guide","authors":["M. Lottor"],"rawDate":"1987-11","status":"Unknown","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1033","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1034":{"rfcNumber":"RFC1034","href":"https://www.rfc-editor.org/rfc/rfc1034","title":"Domain names - concepts and facilities","authors":["P. Mockapetris"],"rawDate":"1987-11","status":"Internet Standard","updatedBy":["RFC1101","RFC1183","RFC1348","RFC1876","RFC1982","RFC2065","RFC2181","RFC2308","RFC2535","RFC4033","RFC4034","RFC4035","RFC4343","RFC4592","RFC5936","RFC8020","RFC8482","RFC8767","RFC9471"],"obsoletes":["RFC0973","RFC0882","RFC0883"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1034","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1035":{"rfcNumber":"RFC1035","href":"https://www.rfc-editor.org/rfc/rfc1035","title":"Domain names - implementation and specification","authors":["P. Mockapetris"],"rawDate":"1987-11","status":"Internet Standard","updatedBy":["RFC1101","RFC1183","RFC1348","RFC1876","RFC1982","RFC1995","RFC1996","RFC2065","RFC2136","RFC2181","RFC2137","RFC2308","RFC2535","RFC2673","RFC2845","RFC3425","RFC3658","RFC4033","RFC4034","RFC4035","RFC4343","RFC5936","RFC5966","RFC6604","RFC7766","RFC8482","RFC8490","RFC8767"],"obsoletes":["RFC0973","RFC0882","RFC0883"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1035","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1036":{"rfcNumber":"RFC1036","href":"https://www.rfc-editor.org/rfc/rfc1036","title":"Standard for interchange of USENET messages","authors":["M.R. Horton","R. Adams"],"rawDate":"1987-12","status":"Unknown","obsoletedBy":["RFC5536","RFC5537"],"obsoletes":["RFC0850"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1036","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1037":{"rfcNumber":"RFC1037","href":"https://www.rfc-editor.org/rfc/rfc1037","title":"NFILE - a file access protocol","authors":["B. Greenberg","S. Keene"],"rawDate":"1987-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1038":{"rfcNumber":"RFC1038","href":"https://www.rfc-editor.org/rfc/rfc1038","title":"Draft revised IP security option","authors":["M. St. Johns"],"rawDate":"1988-01","status":"Unknown","obsoletedBy":["RFC1108"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1039":{"rfcNumber":"RFC1039","href":"https://www.rfc-editor.org/rfc/rfc1039","title":"DoD statement on Open Systems Interconnection protocols","authors":["D. Latham"],"rawDate":"1988-01","status":"Unknown","obsoletes":["RFC0945"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc104":{"aliasOf":"rfc0104"},"rfc1040":{"rfcNumber":"RFC1040","href":"https://www.rfc-editor.org/rfc/rfc1040","title":"Privacy enhancement for Internet electronic mail: Part I: Message encipherment and authentication procedures","authors":["J. Linn"],"rawDate":"1988-01","status":"Unknown","obsoletedBy":["RFC1113"],"obsoletes":["RFC0989"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1041":{"rfcNumber":"RFC1041","href":"https://www.rfc-editor.org/rfc/rfc1041","title":"Telnet 3270 regime option","authors":["Y. Rekhter"],"rawDate":"1988-01","status":"Historic","updatedBy":["RFC6270"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1042":{"rfcNumber":"RFC1042","href":"https://www.rfc-editor.org/rfc/rfc1042","title":"Standard for the transmission of IP datagrams over IEEE 802 networks","authors":["J. Postel","J.K. Reynolds"],"rawDate":"1988-02","status":"Internet Standard","obsoletes":["RFC0948"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1042","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1043":{"rfcNumber":"RFC1043","href":"https://www.rfc-editor.org/rfc/rfc1043","title":"Telnet Data Entry Terminal option: DODIIS implementation","authors":["A. Yasuda","T. Thompson"],"rawDate":"1988-02","status":"Proposed Standard","updates":["RFC0732"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1044":{"rfcNumber":"RFC1044","href":"https://www.rfc-editor.org/rfc/rfc1044","title":"Internet Protocol on Network System's HYPERchannel: Protocol Specification","authors":["K. Hardwick","J. Lekashman"],"rawDate":"1988-02","status":"Internet Standard","updatedBy":["RFC5494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1045":{"rfcNumber":"RFC1045","href":"https://www.rfc-editor.org/rfc/rfc1045","title":"VMTP: Versatile Message Transaction Protocol: Protocol specification","authors":["D.R. Cheriton"],"rawDate":"1988-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1046":{"rfcNumber":"RFC1046","href":"https://www.rfc-editor.org/rfc/rfc1046","title":"Queuing algorithm to provide type-of-service for IP links","authors":["W. Prue","J. Postel"],"rawDate":"1988-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1047":{"rfcNumber":"RFC1047","href":"https://www.rfc-editor.org/rfc/rfc1047","title":"Duplicate messages and SMTP","authors":["C. Partridge"],"rawDate":"1988-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1048":{"rfcNumber":"RFC1048","href":"https://www.rfc-editor.org/rfc/rfc1048","title":"BOOTP vendor information extensions","authors":["P.A. Prindeville"],"rawDate":"1988-02","status":"Unknown","obsoletedBy":["RFC1084","RFC1395","RFC1497","RFC1533"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1049":{"rfcNumber":"RFC1049","href":"https://www.rfc-editor.org/rfc/rfc1049","title":"Content-type header field for Internet messages","authors":["M.A. Sirbu"],"rawDate":"1988-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc105":{"aliasOf":"rfc0105"},"rfc1050":{"rfcNumber":"RFC1050","href":"https://www.rfc-editor.org/rfc/rfc1050","title":"RPC: Remote Procedure Call Protocol specification","authors":["Sun Microsystems"],"rawDate":"1988-04","status":"Historic","obsoletedBy":["RFC1057"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1051":{"rfcNumber":"RFC1051","href":"https://www.rfc-editor.org/rfc/rfc1051","title":"Standard for the transmission of IP datagrams and ARP packets over ARCNET networks","authors":["P.A. Prindeville"],"rawDate":"1988-03","status":"Historic","obsoletedBy":["RFC1201"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1052":{"rfcNumber":"RFC1052","href":"https://www.rfc-editor.org/rfc/rfc1052","title":"IAB recommendations for the development of Internet network management standards","authors":["V.G. Cerf"],"rawDate":"1988-04","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1053":{"rfcNumber":"RFC1053","href":"https://www.rfc-editor.org/rfc/rfc1053","title":"Telnet X.3 PAD option","authors":["S. Levy","T. Jacobson"],"rawDate":"1988-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1054":{"rfcNumber":"RFC1054","href":"https://www.rfc-editor.org/rfc/rfc1054","title":"Host extensions for IP multicasting","authors":["S.E. Deering"],"rawDate":"1988-05","status":"Unknown","obsoletedBy":["RFC1112"],"obsoletes":["RFC0988"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1055":{"rfcNumber":"RFC1055","href":"https://www.rfc-editor.org/rfc/rfc1055","title":"Nonstandard for transmission of IP datagrams over serial lines: SLIP","authors":["J.L. Romkey"],"rawDate":"1988-06","status":"Internet Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1055","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1056":{"rfcNumber":"RFC1056","href":"https://www.rfc-editor.org/rfc/rfc1056","title":"PCMAIL: A distributed mail system for personal computers","authors":["M.L. Lambert"],"rawDate":"1988-06","status":"Informational","obsoletes":["RFC0993"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1057":{"rfcNumber":"RFC1057","href":"https://www.rfc-editor.org/rfc/rfc1057","title":"RPC: Remote Procedure Call Protocol specification: Version 2","authors":["Sun Microsystems"],"rawDate":"1988-06","status":"Informational","obsoletes":["RFC1050"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1058":{"rfcNumber":"RFC1058","href":"https://www.rfc-editor.org/rfc/rfc1058","title":"Routing Information Protocol","authors":["C.L. Hedrick"],"rawDate":"1988-06","status":"Historic","updatedBy":["RFC1388","RFC1723"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1059":{"rfcNumber":"RFC1059","href":"https://www.rfc-editor.org/rfc/rfc1059","title":"Network Time Protocol (version 1) specification and implementation","authors":["D.L. Mills"],"rawDate":"1988-07","status":"Unknown","obsoletedBy":["RFC1119","RFC1305"],"obsoletes":["RFC0958"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc106":{"aliasOf":"rfc0106"},"rfc1060":{"rfcNumber":"RFC1060","href":"https://www.rfc-editor.org/rfc/rfc1060","title":"Assigned numbers","authors":["J.K. Reynolds","J. Postel"],"rawDate":"1990-03","status":"Historic","updatedBy":["RFC1349"],"obsoletedBy":["RFC1340"],"obsoletes":["RFC1010"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1062":{"rfcNumber":"RFC1062","href":"https://www.rfc-editor.org/rfc/rfc1062","title":"Internet numbers","authors":["S. Romano","M.K. Stahl","M. Recker"],"rawDate":"1988-08","status":"Unknown","obsoletedBy":["RFC1117","RFC1166"],"obsoletes":["RFC1020"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1063":{"rfcNumber":"RFC1063","href":"https://www.rfc-editor.org/rfc/rfc1063","title":"IP MTU discovery options","authors":["J.C. Mogul","C.A. Kent","C. Partridge","K. McCloghrie"],"rawDate":"1988-07","status":"Unknown","obsoletedBy":["RFC1191"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1064":{"rfcNumber":"RFC1064","href":"https://www.rfc-editor.org/rfc/rfc1064","title":"Interactive Mail Access Protocol: Version 2","authors":["M.R. Crispin"],"rawDate":"1988-07","status":"Unknown","obsoletedBy":["RFC1176","RFC1203"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1065":{"rfcNumber":"RFC1065","href":"https://www.rfc-editor.org/rfc/rfc1065","title":"Structure and identification of management information for TCP/IP-based internets","authors":["K. McCloghrie","M.T. Rose"],"rawDate":"1988-08","status":"Internet Standard","obsoletedBy":["RFC1155"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1065","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1066":{"rfcNumber":"RFC1066","href":"https://www.rfc-editor.org/rfc/rfc1066","title":"Management Information Base for network management of TCP/IP-based internets","authors":["K. McCloghrie","M.T. Rose"],"rawDate":"1988-08","status":"Unknown","obsoletedBy":["RFC1156"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1067":{"rfcNumber":"RFC1067","href":"https://www.rfc-editor.org/rfc/rfc1067","title":"Simple Network Management Protocol","authors":["J.D. Case","M. Fedor","M.L. Schoffstall","J. Davin"],"rawDate":"1988-08","status":"Unknown","obsoletedBy":["RFC1098"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1068":{"rfcNumber":"RFC1068","href":"https://www.rfc-editor.org/rfc/rfc1068","title":"Background File Transfer Program (BFTP)","authors":["A.L. DeSchon","R.T. Braden"],"rawDate":"1988-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1069":{"rfcNumber":"RFC1069","href":"https://www.rfc-editor.org/rfc/rfc1069","title":"Guidelines for the use of Internet-IP addresses in the ISO Connectionless-Mode Network Protocol","authors":["R. Callon","H.W. Braun"],"rawDate":"1989-02","status":"Unknown","obsoletes":["RFC0986"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc107":{"aliasOf":"rfc0107"},"rfc1070":{"rfcNumber":"RFC1070","href":"https://www.rfc-editor.org/rfc/rfc1070","title":"Use of the Internet as a subnetwork for experimentation with the OSI network layer","authors":["R.A. Hagens","N.E. Hall","M.T. Rose"],"rawDate":"1989-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1071":{"rfcNumber":"RFC1071","href":"https://www.rfc-editor.org/rfc/rfc1071","title":"Computing the Internet checksum","authors":["R.T. Braden","D.A. Borman","C. Partridge"],"rawDate":"1988-09","status":"Informational","updatedBy":["RFC1141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1071","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1072":{"rfcNumber":"RFC1072","href":"https://www.rfc-editor.org/rfc/rfc1072","title":"TCP extensions for long-delay paths","authors":["V. Jacobson","R.T. Braden"],"rawDate":"1988-10","status":"Historic","obsoletedBy":["RFC1323","RFC2018","RFC6247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1073":{"rfcNumber":"RFC1073","href":"https://www.rfc-editor.org/rfc/rfc1073","title":"Telnet window size option","authors":["D. Waitzman"],"rawDate":"1988-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1074":{"rfcNumber":"RFC1074","href":"https://www.rfc-editor.org/rfc/rfc1074","title":"NSFNET backbone SPF based Interior Gateway Protocol","authors":["J. Rekhter"],"rawDate":"1988-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1075":{"rfcNumber":"RFC1075","href":"https://www.rfc-editor.org/rfc/rfc1075","title":"Distance Vector Multicast Routing Protocol","authors":["D. Waitzman","C. Partridge","S.E. Deering"],"rawDate":"1988-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1076":{"rfcNumber":"RFC1076","href":"https://www.rfc-editor.org/rfc/rfc1076","title":"HEMS monitoring and control language","authors":["G. Trewitt","C. Partridge"],"rawDate":"1988-11","status":"Unknown","obsoletes":["RFC1023"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1077":{"rfcNumber":"RFC1077","href":"https://www.rfc-editor.org/rfc/rfc1077","title":"Critical issues in high bandwidth networking","authors":["B.M. Leiner"],"rawDate":"1988-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1078":{"rfcNumber":"RFC1078","href":"https://www.rfc-editor.org/rfc/rfc1078","title":"TCP port service Multiplexer (TCPMUX)","authors":["M. Lottor"],"rawDate":"1988-11","status":"Historic","obsoletedBy":["RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1079":{"rfcNumber":"RFC1079","href":"https://www.rfc-editor.org/rfc/rfc1079","title":"Telnet terminal speed option","authors":["C.L. Hedrick"],"rawDate":"1988-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc108":{"aliasOf":"rfc0108"},"rfc1080":{"rfcNumber":"RFC1080","href":"https://www.rfc-editor.org/rfc/rfc1080","title":"Telnet remote flow control option","authors":["C.L. Hedrick"],"rawDate":"1988-11","status":"Unknown","obsoletedBy":["RFC1372"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1081":{"rfcNumber":"RFC1081","href":"https://www.rfc-editor.org/rfc/rfc1081","title":"Post Office Protocol: Version 3","authors":["M.T. Rose"],"rawDate":"1988-11","status":"Unknown","obsoletedBy":["RFC1225"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1082":{"rfcNumber":"RFC1082","href":"https://www.rfc-editor.org/rfc/rfc1082","title":"Post Office Protocol: Version 3: Extended service offerings","authors":["M.T. Rose"],"rawDate":"1988-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1083":{"rfcNumber":"RFC1083","href":"https://www.rfc-editor.org/rfc/rfc1083","title":"IAB official protocol standards","authors":["Defense Advanced Research Projects Agency","Internet Activities Board"],"rawDate":"1988-12","status":"Historic","obsoletedBy":["RFC1100"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1084":{"rfcNumber":"RFC1084","href":"https://www.rfc-editor.org/rfc/rfc1084","title":"BOOTP vendor information extensions","authors":["J.K. Reynolds"],"rawDate":"1988-12","status":"Unknown","obsoletedBy":["RFC1395","RFC1497","RFC1533"],"obsoletes":["RFC1048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1085":{"rfcNumber":"RFC1085","href":"https://www.rfc-editor.org/rfc/rfc1085","title":"ISO presentation services on top of TCP/IP based internets","authors":["M.T. Rose"],"rawDate":"1988-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1086":{"rfcNumber":"RFC1086","href":"https://www.rfc-editor.org/rfc/rfc1086","title":"ISO-TP0 bridge between TCP and X.25","authors":["J.P. Onions","M.T. Rose"],"rawDate":"1988-12","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1087":{"rfcNumber":"RFC1087","href":"https://www.rfc-editor.org/rfc/rfc1087","title":"Ethics and the Internet","authors":["Defense Advanced Research Projects Agency","Internet Activities Board"],"rawDate":"1989-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1088":{"rfcNumber":"RFC1088","href":"https://www.rfc-editor.org/rfc/rfc1088","title":"Standard for the transmission of IP datagrams over NetBIOS networks","authors":["L.J. McLaughlin"],"rawDate":"1989-02","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1089":{"rfcNumber":"RFC1089","href":"https://www.rfc-editor.org/rfc/rfc1089","title":"SNMP over Ethernet","authors":["M. Schoffstall","C. Davin","M. Fedor","J. Case"],"rawDate":"1989-02","status":"Unknown","obsoletedBy":["RFC4789"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc109":{"aliasOf":"rfc0109"},"rfc1090":{"rfcNumber":"RFC1090","href":"https://www.rfc-editor.org/rfc/rfc1090","title":"SMTP on X.25","authors":["R. Ullmann"],"rawDate":"1989-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1091":{"rfcNumber":"RFC1091","href":"https://www.rfc-editor.org/rfc/rfc1091","title":"Telnet terminal-type option","authors":["J. VanBokkelen"],"rawDate":"1989-02","status":"Proposed Standard","obsoletes":["RFC0930"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1092":{"rfcNumber":"RFC1092","href":"https://www.rfc-editor.org/rfc/rfc1092","title":"EGP and policy based routing in the new NSFNET backbone","authors":["J. Rekhter"],"rawDate":"1989-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1093":{"rfcNumber":"RFC1093","href":"https://www.rfc-editor.org/rfc/rfc1093","title":"NSFNET routing architecture","authors":["H.W. Braun"],"rawDate":"1989-02","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1094":{"rfcNumber":"RFC1094","href":"https://www.rfc-editor.org/rfc/rfc1094","title":"NFS: Network File System Protocol specification","authors":["B. Nowicki"],"rawDate":"1989-03","status":"Informational","seeAlso":["RFC1813"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1095":{"rfcNumber":"RFC1095","href":"https://www.rfc-editor.org/rfc/rfc1095","title":"Common Management Information Services and Protocol over TCP/IP (CMOT)","authors":["U.S. Warrier","L. Besaw"],"rawDate":"1989-04","status":"Unknown","obsoletedBy":["RFC1189"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1096":{"rfcNumber":"RFC1096","href":"https://www.rfc-editor.org/rfc/rfc1096","title":"Telnet X display location option","authors":["G.A. Marcy"],"rawDate":"1989-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1097":{"rfcNumber":"RFC1097","href":"https://www.rfc-editor.org/rfc/rfc1097","title":"Telnet subliminal-message option","authors":["B. Miller"],"rawDate":"1989-04-01","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1098":{"rfcNumber":"RFC1098","href":"https://www.rfc-editor.org/rfc/rfc1098","title":"Simple Network Management Protocol (SNMP)","authors":["J.D. Case","M. Fedor","M.L. Schoffstall","J. Davin"],"rawDate":"1989-04","status":"Unknown","obsoletedBy":["RFC1157"],"obsoletes":["RFC1067"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1099":{"rfcNumber":"RFC1099","href":"https://www.rfc-editor.org/rfc/rfc1099","title":"Request for Comments Summary: RFC Numbers 1000-1099","authors":["J. Reynolds"],"rawDate":"1991-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc11":{"aliasOf":"rfc0011"},"rfc110":{"aliasOf":"rfc0110"},"rfc1100":{"rfcNumber":"RFC1100","href":"https://www.rfc-editor.org/rfc/rfc1100","title":"IAB official protocol standards","authors":["Defense Advanced Research Projects Agency","Internet Activities Board"],"rawDate":"1989-04","status":"Historic","obsoletedBy":["RFC1130"],"obsoletes":["RFC1083"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1101":{"rfcNumber":"RFC1101","href":"https://www.rfc-editor.org/rfc/rfc1101","title":"DNS encoding of network names and other types","authors":["P. Mockapetris"],"rawDate":"1989-04","status":"Unknown","updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1102":{"rfcNumber":"RFC1102","href":"https://www.rfc-editor.org/rfc/rfc1102","title":"Policy routing in Internet protocols","authors":["D.D. Clark"],"rawDate":"1989-05","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1103":{"rfcNumber":"RFC1103","href":"https://www.rfc-editor.org/rfc/rfc1103","title":"Proposed standard for the transmission of IP datagrams over FDDI Networks","authors":["D. Katz"],"rawDate":"1989-06","status":"Unknown","obsoletedBy":["RFC1188"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1104":{"rfcNumber":"RFC1104","href":"https://www.rfc-editor.org/rfc/rfc1104","title":"Models of policy based routing","authors":["H.W. Braun"],"rawDate":"1989-06","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1105":{"rfcNumber":"RFC1105","href":"https://www.rfc-editor.org/rfc/rfc1105","title":"Border Gateway Protocol (BGP)","authors":["K. Lougheed","Y. Rekhter"],"rawDate":"1989-06","status":"Experimental","obsoletedBy":["RFC1163"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1106":{"rfcNumber":"RFC1106","href":"https://www.rfc-editor.org/rfc/rfc1106","title":"TCP big window and NAK options","authors":["R. Fox"],"rawDate":"1989-06","status":"Historic","obsoletedBy":["RFC6247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1107":{"rfcNumber":"RFC1107","href":"https://www.rfc-editor.org/rfc/rfc1107","title":"Plan for Internet directory services","authors":["K.R. Sollins"],"rawDate":"1989-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1108":{"rfcNumber":"RFC1108","href":"https://www.rfc-editor.org/rfc/rfc1108","title":"U.S. Department of Defense Security Options for the Internet Protocol","authors":["S. Kent"],"rawDate":"1991-11","status":"Historic","obsoletes":["RFC1038"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1109":{"rfcNumber":"RFC1109","href":"https://www.rfc-editor.org/rfc/rfc1109","title":"Report of the second Ad Hoc Network Management Review Group","authors":["V.G. Cerf"],"rawDate":"1989-08","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc111":{"aliasOf":"rfc0111"},"rfc1110":{"rfcNumber":"RFC1110","href":"https://www.rfc-editor.org/rfc/rfc1110","title":"Problem with the TCP big window option","authors":["A.M. McKenzie"],"rawDate":"1989-08","status":"Historic","obsoletedBy":["RFC6247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1111":{"rfcNumber":"RFC1111","href":"https://www.rfc-editor.org/rfc/rfc1111","title":"Request for comments on Request for Comments: Instructions to RFC authors","authors":["J. Postel"],"rawDate":"1989-08","status":"Informational","obsoletedBy":["RFC1543","RFC2223"],"obsoletes":["RFC0825"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1112":{"rfcNumber":"RFC1112","href":"https://www.rfc-editor.org/rfc/rfc1112","title":"Host extensions for IP multicasting","authors":["S.E. Deering"],"rawDate":"1989-08","status":"Internet Standard","updatedBy":["RFC2236"],"obsoletes":["RFC0988","RFC1054"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1113":{"rfcNumber":"RFC1113","href":"https://www.rfc-editor.org/rfc/rfc1113","title":"Privacy enhancement for Internet electronic mail: Part I - message encipherment and authentication procedures","authors":["J. Linn"],"rawDate":"1989-08","status":"Historic","obsoletedBy":["RFC1421"],"obsoletes":["RFC0989","RFC1040"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1114":{"rfcNumber":"RFC1114","href":"https://www.rfc-editor.org/rfc/rfc1114","title":"Privacy enhancement for Internet electronic mail: Part II - certificate-based key management","authors":["S.T. Kent","J. Linn"],"rawDate":"1989-08","status":"Historic","obsoletedBy":["RFC1422"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1115":{"rfcNumber":"RFC1115","href":"https://www.rfc-editor.org/rfc/rfc1115","title":"Privacy enhancement for Internet electronic mail: Part III - algorithms, modes, and identifiers","authors":["J. Linn"],"rawDate":"1989-08","status":"Historic","obsoletedBy":["RFC1423"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1116":{"rfcNumber":"RFC1116","href":"https://www.rfc-editor.org/rfc/rfc1116","title":"Telnet Linemode option","authors":["D.A. Borman"],"rawDate":"1989-08","status":"Proposed Standard","obsoletedBy":["RFC1184"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1117":{"rfcNumber":"RFC1117","href":"https://www.rfc-editor.org/rfc/rfc1117","title":"Internet numbers","authors":["S. Romano","M.K. Stahl","M. Recker"],"rawDate":"1989-08","status":"Informational","obsoletedBy":["RFC1166"],"obsoletes":["RFC1062","RFC1020","RFC0997"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1118":{"rfcNumber":"RFC1118","href":"https://www.rfc-editor.org/rfc/rfc1118","title":"Hitchhikers guide to the Internet","authors":["E. Krol"],"rawDate":"1989-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1119":{"rfcNumber":"RFC1119","href":"https://www.rfc-editor.org/rfc/rfc1119","title":"Network Time Protocol (version 2) specification and implementation","authors":["D.L. Mills"],"rawDate":"1989-09","status":"Internet Standard","obsoletedBy":["RFC1305"],"obsoletes":["RFC0958","RFC1059"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc112":{"aliasOf":"rfc0112"},"rfc1120":{"rfcNumber":"RFC1120","href":"https://www.rfc-editor.org/rfc/rfc1120","title":"Internet Activities Board","authors":["V. Cerf"],"rawDate":"1989-09","status":"Informational","obsoletedBy":["RFC1160"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1121":{"rfcNumber":"RFC1121","href":"https://www.rfc-editor.org/rfc/rfc1121","title":"Act one - the poems","authors":["J. Postel","L. Kleinrock","V.G. Cerf","B. Boehm"],"rawDate":"1989-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1122":{"rfcNumber":"RFC1122","href":"https://www.rfc-editor.org/rfc/rfc1122","title":"Requirements for Internet Hosts - Communication Layers","authors":["R. Braden, Ed."],"rawDate":"1989-10","status":"Internet Standard","updatedBy":["RFC1349","RFC4379","RFC5884","RFC6093","RFC6298","RFC6633","RFC6864","RFC8029","RFC9293"],"updates":["RFC0793"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1122","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1123":{"rfcNumber":"RFC1123","href":"https://www.rfc-editor.org/rfc/rfc1123","title":"Requirements for Internet Hosts - Application and Support","authors":["R. Braden, Ed."],"rawDate":"1989-10","status":"Internet Standard","updatedBy":["RFC1349","RFC2181","RFC5321","RFC5966","RFC7766","RFC9210"],"updates":["RFC0822","RFC0952"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1123","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1124":{"rfcNumber":"RFC1124","href":"https://www.rfc-editor.org/rfc/rfc1124","title":"Policy issues in interconnecting networks","authors":["B.M. Leiner"],"rawDate":"1989-09","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1125":{"rfcNumber":"RFC1125","href":"https://www.rfc-editor.org/rfc/rfc1125","title":"Policy requirements for inter Administrative Domain routing","authors":["D. Estrin"],"rawDate":"1989-11","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1126":{"rfcNumber":"RFC1126","href":"https://www.rfc-editor.org/rfc/rfc1126","title":"Goals and functional requirements for inter-autonomous system routing","authors":["M. Little"],"rawDate":"1989-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1127":{"rfcNumber":"RFC1127","href":"https://www.rfc-editor.org/rfc/rfc1127","title":"Perspective on the Host Requirements RFCs","authors":["R.T. Braden"],"rawDate":"1989-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1128":{"rfcNumber":"RFC1128","href":"https://www.rfc-editor.org/rfc/rfc1128","title":"Measured performance of the Network Time Protocol in the Internet system","authors":["D.L. Mills"],"rawDate":"1989-10","status":"Unknown","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1129":{"rfcNumber":"RFC1129","href":"https://www.rfc-editor.org/rfc/rfc1129","title":"Internet Time Synchronization: The Network Time Protocol","authors":["D.L. Mills"],"rawDate":"1989-10","status":"Informational","seeAlso":["RFC1119"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc113":{"aliasOf":"rfc0113"},"rfc1130":{"rfcNumber":"RFC1130","href":"https://www.rfc-editor.org/rfc/rfc1130","title":"IAB official protocol standards","authors":["Defense Advanced Research Projects Agency","Internet Activities Board"],"rawDate":"1989-10","status":"Historic","obsoletedBy":["RFC1140"],"obsoletes":["RFC1100"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1131":{"rfcNumber":"RFC1131","href":"https://www.rfc-editor.org/rfc/rfc1131","title":"OSPF specification","authors":["J. Moy"],"rawDate":"1989-10","status":"Proposed Standard","obsoletedBy":["RFC1247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1132":{"rfcNumber":"RFC1132","href":"https://www.rfc-editor.org/rfc/rfc1132","title":"Standard for the transmission of 802.2 packets over IPX networks","authors":["L.J. McLaughlin"],"rawDate":"1989-11","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1133":{"rfcNumber":"RFC1133","href":"https://www.rfc-editor.org/rfc/rfc1133","title":"Routing between the NSFNET and the DDN","authors":["J.Y. Yu","H.W. Braun"],"rawDate":"1989-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1134":{"rfcNumber":"RFC1134","href":"https://www.rfc-editor.org/rfc/rfc1134","title":"Point-to-Point Protocol: A proposal for multi-protocol transmission of datagrams over Point-to-Point links","authors":["D. Perkins"],"rawDate":"1989-11","status":"Proposed Standard","obsoletedBy":["RFC1171"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1135":{"rfcNumber":"RFC1135","href":"https://www.rfc-editor.org/rfc/rfc1135","title":"Helminthiasis of the Internet","authors":["J.K. Reynolds"],"rawDate":"1989-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1136":{"rfcNumber":"RFC1136","href":"https://www.rfc-editor.org/rfc/rfc1136","title":"Administrative Domains and Routing Domains: A model for routing in the Internet","authors":["S. Hares","D. Katz"],"rawDate":"1989-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1137":{"rfcNumber":"RFC1137","href":"https://www.rfc-editor.org/rfc/rfc1137","title":"Mapping between full RFC 822 and RFC 822 with restricted encoding","authors":["S. Kille"],"rawDate":"1989-12","status":"Historic","updates":["RFC0976"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1138":{"rfcNumber":"RFC1138","href":"https://www.rfc-editor.org/rfc/rfc1138","title":"Mapping between X.400(1988) / ISO 10021 and RFC 822","authors":["S.E. Kille"],"rawDate":"1989-12","status":"Experimental","updatedBy":["RFC1148"],"obsoletedBy":["RFC2156","RFC1327"],"updates":["RFC1026","RFC0987","RFC0822"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1138","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1139":{"rfcNumber":"RFC1139","href":"https://www.rfc-editor.org/rfc/rfc1139","title":"Echo function for ISO 8473","authors":["R.A. Hagens"],"rawDate":"1990-01","status":"Proposed Standard","obsoletedBy":["RFC1574","RFC1575"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc114":{"aliasOf":"rfc0114"},"rfc1140":{"rfcNumber":"RFC1140","href":"https://www.rfc-editor.org/rfc/rfc1140","title":"IAB official protocol standards","authors":["Defense Advanced Research Projects Agency","Internet Activities Board"],"rawDate":"1990-05","status":"Historic","obsoletedBy":["RFC1200"],"obsoletes":["RFC1130"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1141":{"rfcNumber":"RFC1141","href":"https://www.rfc-editor.org/rfc/rfc1141","title":"Incremental updating of the Internet checksum","authors":["T. Mallory","A. Kullberg"],"rawDate":"1990-01","status":"Informational","updatedBy":["RFC1624"],"updates":["RFC1071"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1141","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1142":{"rfcNumber":"RFC1142","href":"https://www.rfc-editor.org/rfc/rfc1142","title":"OSI IS-IS Intra-domain Routing Protocol","authors":["D. Oran, Ed."],"rawDate":"1990-02","status":"Historic","obsoletedBy":["RFC7142"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1143":{"rfcNumber":"RFC1143","href":"https://www.rfc-editor.org/rfc/rfc1143","title":"The Q Method of Implementing TELNET Option Negotiation","authors":["D.J. Bernstein"],"rawDate":"1990-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1144":{"rfcNumber":"RFC1144","href":"https://www.rfc-editor.org/rfc/rfc1144","title":"Compressing TCP/IP Headers for Low-Speed Serial Links","authors":["V. Jacobson"],"rawDate":"1990-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1145":{"rfcNumber":"RFC1145","href":"https://www.rfc-editor.org/rfc/rfc1145","title":"TCP alternate checksum options","authors":["J. Zweig","C. Partridge"],"rawDate":"1990-02","status":"Historic","obsoletedBy":["RFC1146","RFC6247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1146":{"rfcNumber":"RFC1146","href":"https://www.rfc-editor.org/rfc/rfc1146","title":"TCP alternate checksum options","authors":["J. Zweig","C. Partridge"],"rawDate":"1990-03","status":"Historic","obsoletedBy":["RFC6247"],"obsoletes":["RFC1145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1147":{"rfcNumber":"RFC1147","href":"https://www.rfc-editor.org/rfc/rfc1147","title":"FYI on a Network Management Tool Catalog: Tools for Monitoring and Debugging TCP/IP Internets and Interconnected Devices","authors":["R.H. Stine"],"rawDate":"1990-04","status":"Informational","obsoletedBy":["RFC1470"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1148":{"rfcNumber":"RFC1148","href":"https://www.rfc-editor.org/rfc/rfc1148","title":"Mapping between X.400(1988) / ISO 10021 and RFC 822","authors":["S.E. Kille"],"rawDate":"1990-03","status":"Experimental","obsoletedBy":["RFC2156","RFC1327"],"updates":["RFC1026","RFC0987","RFC1138","RFC0822"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1148","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1149":{"rfcNumber":"RFC1149","href":"https://www.rfc-editor.org/rfc/rfc1149","title":"Standard for the transmission of IP datagrams on avian carriers","authors":["D. Waitzman"],"rawDate":"1990-04-01","status":"Experimental","updatedBy":["RFC2549","RFC6214"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1149","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc115":{"aliasOf":"rfc0115"},"rfc1150":{"rfcNumber":"RFC1150","href":"https://www.rfc-editor.org/rfc/rfc1150","title":"FYI on FYI: Introduction to the FYI Notes","authors":["G.S. Malkin","J.K. Reynolds"],"rawDate":"1990-03","status":"Historic","obsoletedBy":["RFC6360"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1150","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1151":{"rfcNumber":"RFC1151","href":"https://www.rfc-editor.org/rfc/rfc1151","title":"Version 2 of the Reliable Data Protocol (RDP)","authors":["C. Partridge","R.M. Hinden"],"rawDate":"1990-04","status":"Experimental","updates":["RFC0908"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1152":{"rfcNumber":"RFC1152","href":"https://www.rfc-editor.org/rfc/rfc1152","title":"Workshop report: Internet research steering group workshop on very-high-speed networks","authors":["C. Partridge"],"rawDate":"1990-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1153":{"rfcNumber":"RFC1153","href":"https://www.rfc-editor.org/rfc/rfc1153","title":"Digest message format","authors":["F.J. Wancho"],"rawDate":"1990-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1154":{"rfcNumber":"RFC1154","href":"https://www.rfc-editor.org/rfc/rfc1154","title":"Encoding header field for internet messages","authors":["D. Robinson","R. Ullmann"],"rawDate":"1990-04","status":"Experimental","obsoletedBy":["RFC1505"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1155":{"rfcNumber":"RFC1155","href":"https://www.rfc-editor.org/rfc/rfc1155","title":"Structure and identification of management information for TCP/IP-based internets","authors":["M.T. Rose","K. McCloghrie"],"rawDate":"1990-05","status":"Internet Standard","obsoletes":["RFC1065"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1155","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1156":{"rfcNumber":"RFC1156","href":"https://www.rfc-editor.org/rfc/rfc1156","title":"Management Information Base for network management of TCP/IP-based internets","authors":["K. McCloghrie","M.T. Rose"],"rawDate":"1990-05","status":"Historic","obsoletes":["RFC1066"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1157":{"rfcNumber":"RFC1157","href":"https://www.rfc-editor.org/rfc/rfc1157","title":"Simple Network Management Protocol (SNMP)","authors":["J.D. Case","M. Fedor","M.L. Schoffstall","J. Davin"],"rawDate":"1990-05","status":"Historic","obsoletes":["RFC1098"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1158":{"rfcNumber":"RFC1158","href":"https://www.rfc-editor.org/rfc/rfc1158","title":"Management Information Base for network management of TCP/IP-based internets: MIB-II","authors":["M.T. Rose"],"rawDate":"1990-05","status":"Proposed Standard","obsoletedBy":["RFC1213"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1158","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1159":{"rfcNumber":"RFC1159","href":"https://www.rfc-editor.org/rfc/rfc1159","title":"Message Send Protocol","authors":["R. Nelson"],"rawDate":"1990-06","status":"Experimental","obsoletedBy":["RFC1312"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc116":{"aliasOf":"rfc0116"},"rfc1160":{"rfcNumber":"RFC1160","href":"https://www.rfc-editor.org/rfc/rfc1160","title":"Internet Activities Board","authors":["V. Cerf"],"rawDate":"1990-05","status":"Informational","obsoletes":["RFC1120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1161":{"rfcNumber":"RFC1161","href":"https://www.rfc-editor.org/rfc/rfc1161","title":"SNMP over OSI","authors":["M.T. Rose"],"rawDate":"1990-06","status":"Experimental","obsoletedBy":["RFC1418"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1162":{"rfcNumber":"RFC1162","href":"https://www.rfc-editor.org/rfc/rfc1162","title":"Connectionless Network Protocol (ISO 8473) and End System to Intermediate System (ISO 9542) Management Information Base","authors":["G. Satz"],"rawDate":"1990-06","status":"Experimental","obsoletedBy":["RFC1238"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1163":{"rfcNumber":"RFC1163","href":"https://www.rfc-editor.org/rfc/rfc1163","title":"Border Gateway Protocol (BGP)","authors":["K. Lougheed","Y. Rekhter"],"rawDate":"1990-06","status":"Historic","obsoletedBy":["RFC1267"],"obsoletes":["RFC1105"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1164":{"rfcNumber":"RFC1164","href":"https://www.rfc-editor.org/rfc/rfc1164","title":"Application of the Border Gateway Protocol in the Internet","authors":["J.C. Honig","D. Katz","M. Mathis","Y. Rekhter","J.Y. Yu"],"rawDate":"1990-06","status":"Historic","obsoletedBy":["RFC1268"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1165":{"rfcNumber":"RFC1165","href":"https://www.rfc-editor.org/rfc/rfc1165","title":"Network Time Protocol (NTP) over the OSI Remote Operations Service","authors":["J. Crowcroft","J.P. Onions"],"rawDate":"1990-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1166":{"rfcNumber":"RFC1166","href":"https://www.rfc-editor.org/rfc/rfc1166","title":"Internet numbers","authors":["S. Kirkpatrick","M.K. Stahl","M. Recker"],"rawDate":"1990-07","status":"Informational","updatedBy":["RFC5737"],"obsoletes":["RFC1117","RFC1062","RFC1020"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1167":{"rfcNumber":"RFC1167","href":"https://www.rfc-editor.org/rfc/rfc1167","title":"Thoughts on the National Research and Education Network","authors":["V.G. Cerf"],"rawDate":"1990-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1168":{"rfcNumber":"RFC1168","href":"https://www.rfc-editor.org/rfc/rfc1168","title":"Intermail and Commercial Mail Relay services","authors":["A. Westine","A.L. DeSchon","J. Postel","C.E. Ward"],"rawDate":"1990-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1169":{"rfcNumber":"RFC1169","href":"https://www.rfc-editor.org/rfc/rfc1169","title":"Explaining the role of GOSIP","authors":["V.G. Cerf","K.L. Mills"],"rawDate":"1990-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc117":{"aliasOf":"rfc0117"},"rfc1170":{"rfcNumber":"RFC1170","href":"https://www.rfc-editor.org/rfc/rfc1170","title":"Public key standards and licenses","authors":["R.B. Fougner"],"rawDate":"1991-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1171":{"rfcNumber":"RFC1171","href":"https://www.rfc-editor.org/rfc/rfc1171","title":"Point-to-Point Protocol for the transmission of multi-protocol datagrams over Point-to-Point links","authors":["D. Perkins"],"rawDate":"1990-07","status":"Draft Standard","obsoletedBy":["RFC1331"],"obsoletes":["RFC1134"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1172":{"rfcNumber":"RFC1172","href":"https://www.rfc-editor.org/rfc/rfc1172","title":"Point-to-Point Protocol (PPP) initial configuration options","authors":["D. Perkins","R. Hobby"],"rawDate":"1990-07","status":"Proposed Standard","obsoletedBy":["RFC1331","RFC1332"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1172","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1173":{"rfcNumber":"RFC1173","href":"https://www.rfc-editor.org/rfc/rfc1173","title":"Responsibilities of host and network managers: A summary of the \"oral tradition\" of the Internet","authors":["J. VanBokkelen"],"rawDate":"1990-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1174":{"rfcNumber":"RFC1174","href":"https://www.rfc-editor.org/rfc/rfc1174","title":"IAB recommended policy on distributing internet identifier assignment and IAB recommended policy change to internet \"connected\" status","authors":["V.G. Cerf"],"rawDate":"1990-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1175":{"rfcNumber":"RFC1175","href":"https://www.rfc-editor.org/rfc/rfc1175","title":"FYI on where to start: A bibliography of internetworking information","authors":["K.L. Bowers","T.L. LaQuey","J.K. Reynolds","K. Roubicek","M.K. Stahl","A. Yuan"],"rawDate":"1990-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1176":{"rfcNumber":"RFC1176","href":"https://www.rfc-editor.org/rfc/rfc1176","title":"Interactive Mail Access Protocol: Version 2","authors":["M.R. Crispin"],"rawDate":"1990-08","status":"Experimental","obsoletes":["RFC1064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1177":{"rfcNumber":"RFC1177","href":"https://www.rfc-editor.org/rfc/rfc1177","title":"FYI on Questions and Answers: Answers to commonly asked \"new internet user\" questions","authors":["G.S. Malkin","A.N. Marine","J.K. Reynolds"],"rawDate":"1990-08","status":"Informational","obsoletedBy":["RFC1206"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1178":{"rfcNumber":"RFC1178","href":"https://www.rfc-editor.org/rfc/rfc1178","title":"Choosing a name for your computer","authors":["D. Libes"],"rawDate":"1990-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1179":{"rfcNumber":"RFC1179","href":"https://www.rfc-editor.org/rfc/rfc1179","title":"Line printer daemon protocol","authors":["L. McLaughlin"],"rawDate":"1990-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc118":{"aliasOf":"rfc0118"},"rfc1180":{"rfcNumber":"RFC1180","href":"https://www.rfc-editor.org/rfc/rfc1180","title":"TCP/IP tutorial","authors":["T.J. Socolofsky","C.J. Kale"],"rawDate":"1991-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1180","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1181":{"rfcNumber":"RFC1181","href":"https://www.rfc-editor.org/rfc/rfc1181","title":"RIPE Terms of Reference","authors":["R. Blokzijl"],"rawDate":"1990-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1183":{"rfcNumber":"RFC1183","href":"https://www.rfc-editor.org/rfc/rfc1183","title":"New DNS RR Definitions","authors":["C. Everhart","L. Mamakos","R. Ullmann","P. Mockapetris, Ed."],"rawDate":"1990-10","status":"Experimental","updatedBy":["RFC5395","RFC5864","RFC6195","RFC6895"],"updates":["RFC1034","RFC1035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1183","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1184":{"rfcNumber":"RFC1184","href":"https://www.rfc-editor.org/rfc/rfc1184","title":"Telnet Linemode Option","authors":["D.A. Borman"],"rawDate":"1990-10","status":"Draft Standard","obsoletes":["RFC1116"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1185":{"rfcNumber":"RFC1185","href":"https://www.rfc-editor.org/rfc/rfc1185","title":"TCP Extension for High-Speed Paths","authors":["V. Jacobson","R.T. Braden","L. Zhang"],"rawDate":"1990-10","status":"Experimental","obsoletedBy":["RFC1323"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1186":{"rfcNumber":"RFC1186","href":"https://www.rfc-editor.org/rfc/rfc1186","title":"MD4 Message Digest Algorithm","authors":["R.L. Rivest"],"rawDate":"1990-10","status":"Informational","obsoletedBy":["RFC1320"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1187":{"rfcNumber":"RFC1187","href":"https://www.rfc-editor.org/rfc/rfc1187","title":"Bulk Table Retrieval with the SNMP","authors":["M.T. Rose","K. McCloghrie","J.R. Davin"],"rawDate":"1990-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1188":{"rfcNumber":"RFC1188","href":"https://www.rfc-editor.org/rfc/rfc1188","title":"Proposed Standard for the Transmission of IP Datagrams over FDDI Networks","authors":["D. Katz"],"rawDate":"1990-10","status":"Draft Standard","obsoletes":["RFC1103"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1189":{"rfcNumber":"RFC1189","href":"https://www.rfc-editor.org/rfc/rfc1189","title":"Common Management Information Services and Protocols for the Internet (CMOT and CMIP)","authors":["U.S. Warrier","L. Besaw","L. LaBarre","B.D. Handspicker"],"rawDate":"1990-10","status":"Historic","obsoletes":["RFC1095"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc119":{"aliasOf":"rfc0119"},"rfc1190":{"rfcNumber":"RFC1190","href":"https://www.rfc-editor.org/rfc/rfc1190","title":"Experimental Internet Stream Protocol: Version 2 (ST-II)","authors":["C. Topolcic"],"rawDate":"1990-10","status":"Experimental","obsoletedBy":["RFC1819"],"obsoletes":["IEN119"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1191":{"rfcNumber":"RFC1191","href":"https://www.rfc-editor.org/rfc/rfc1191","title":"Path MTU discovery","authors":["J. Mogul","S. Deering"],"rawDate":"1990-11","status":"Draft Standard","obsoletes":["RFC1063"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1192":{"rfcNumber":"RFC1192","href":"https://www.rfc-editor.org/rfc/rfc1192","title":"Commercialization of the Internet summary report","authors":["B. Kahin"],"rawDate":"1990-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1193":{"rfcNumber":"RFC1193","href":"https://www.rfc-editor.org/rfc/rfc1193","title":"Client requirements for real-time communication services","authors":["D. Ferrari"],"rawDate":"1990-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1194":{"rfcNumber":"RFC1194","href":"https://www.rfc-editor.org/rfc/rfc1194","title":"Finger User Information Protocol","authors":["D.P. Zimmerman"],"rawDate":"1990-11","status":"Draft Standard","obsoletedBy":["RFC1196","RFC1288"],"obsoletes":["RFC0742"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1195":{"rfcNumber":"RFC1195","href":"https://www.rfc-editor.org/rfc/rfc1195","title":"Use of OSI IS-IS for routing in TCP/IP and dual environments","authors":["R. Callon"],"rawDate":"1990-12","status":"Proposed Standard","updatedBy":["RFC1349","RFC5302","RFC5304"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1195","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1196":{"rfcNumber":"RFC1196","href":"https://www.rfc-editor.org/rfc/rfc1196","title":"Finger User Information Protocol","authors":["D.P. Zimmerman"],"rawDate":"1990-12","status":"Draft Standard","obsoletedBy":["RFC1288"],"obsoletes":["RFC1194","RFC0742"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1197":{"rfcNumber":"RFC1197","href":"https://www.rfc-editor.org/rfc/rfc1197","title":"Using ODA for translating multimedia information","authors":["M. Sherman"],"rawDate":"1990-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1198":{"rfcNumber":"RFC1198","href":"https://www.rfc-editor.org/rfc/rfc1198","title":"FYI on the X window system","authors":["R.W. Scheifler"],"rawDate":"1991-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1199":{"rfcNumber":"RFC1199","href":"https://www.rfc-editor.org/rfc/rfc1199","title":"Request for Comments Summary Notes: 1100-1199","authors":["J. Reynolds"],"rawDate":"1991-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc12":{"aliasOf":"rfc0012"},"rfc120":{"aliasOf":"rfc0120"},"rfc1200":{"rfcNumber":"RFC1200","href":"https://www.rfc-editor.org/rfc/rfc1200","title":"IAB official protocol standards","authors":["Defense Advanced Research Projects Agency","Internet Activities Board"],"rawDate":"1991-04","status":"Historic","obsoletedBy":["RFC1250"],"obsoletes":["RFC1140"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1201":{"rfcNumber":"RFC1201","href":"https://www.rfc-editor.org/rfc/rfc1201","title":"Transmitting IP traffic over ARCNET networks","authors":["D. Provan"],"rawDate":"1991-02","status":"Internet Standard","obsoletes":["RFC1051"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1202":{"rfcNumber":"RFC1202","href":"https://www.rfc-editor.org/rfc/rfc1202","title":"Directory Assistance service","authors":["M.T. Rose"],"rawDate":"1991-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1203":{"rfcNumber":"RFC1203","href":"https://www.rfc-editor.org/rfc/rfc1203","title":"Interactive Mail Access Protocol: Version 3","authors":["J. Rice"],"rawDate":"1991-02","status":"Historic","obsoletes":["RFC1064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1204":{"rfcNumber":"RFC1204","href":"https://www.rfc-editor.org/rfc/rfc1204","title":"Message Posting Protocol (MPP)","authors":["S. Yeh","D. Lee"],"rawDate":"1991-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1205":{"rfcNumber":"RFC1205","href":"https://www.rfc-editor.org/rfc/rfc1205","title":"5250 Telnet interface","authors":["P. Chmielewski"],"rawDate":"1991-02","status":"Informational","updatedBy":["RFC2877"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1206":{"rfcNumber":"RFC1206","href":"https://www.rfc-editor.org/rfc/rfc1206","title":"FYI on Questions and Answers: Answers to commonly asked \"new Internet user\" questions","authors":["G.S. Malkin","A.N. Marine"],"rawDate":"1991-02","status":"Informational","obsoletedBy":["RFC1325"],"obsoletes":["RFC1177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1207":{"rfcNumber":"RFC1207","href":"https://www.rfc-editor.org/rfc/rfc1207","title":"FYI on Questions and Answers: Answers to commonly asked \"experienced Internet user\" questions","authors":["G.S. Malkin","A.N. Marine","J.K. Reynolds"],"rawDate":"1991-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1208":{"rfcNumber":"RFC1208","href":"https://www.rfc-editor.org/rfc/rfc1208","title":"A Glossary of Networking Terms","authors":["O.J. Jacobsen","D.C. Lynch"],"rawDate":"1991-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1209":{"rfcNumber":"RFC1209","href":"https://www.rfc-editor.org/rfc/rfc1209","title":"The Transmission of IP Datagrams over the SMDS Service","authors":["D. Piscitello","J. Lawrence"],"rawDate":"1991-03","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc121":{"aliasOf":"rfc0121"},"rfc1210":{"rfcNumber":"RFC1210","href":"https://www.rfc-editor.org/rfc/rfc1210","title":"Network and infrastructure user requirements for transatlantic research collaboration: Brussels, July 16-18, and Washington July 24-25, 1990","authors":["V.G. Cerf","P.T. Kirstein","B. Randell"],"rawDate":"1991-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1211":{"rfcNumber":"RFC1211","href":"https://www.rfc-editor.org/rfc/rfc1211","title":"Problems with the maintenance of large mailing lists","authors":["A. Westine","J. Postel"],"rawDate":"1991-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1212":{"rfcNumber":"RFC1212","href":"https://www.rfc-editor.org/rfc/rfc1212","title":"Concise MIB definitions","authors":["M.T. Rose","K. McCloghrie"],"rawDate":"1991-03","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1213":{"rfcNumber":"RFC1213","href":"https://www.rfc-editor.org/rfc/rfc1213","title":"Management Information Base for Network Management of TCP/IP-based internets: MIB-II","authors":["K. McCloghrie","M. Rose"],"rawDate":"1991-03","status":"Internet Standard","updatedBy":["RFC2011","RFC2012","RFC2013"],"obsoletes":["RFC1158"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1214":{"rfcNumber":"RFC1214","href":"https://www.rfc-editor.org/rfc/rfc1214","title":"OSI internet management: Management Information Base","authors":["L. LaBarre"],"rawDate":"1991-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1215":{"rfcNumber":"RFC1215","href":"https://www.rfc-editor.org/rfc/rfc1215","title":"Convention for defining traps for use with the SNMP","authors":["M.T. Rose"],"rawDate":"1991-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1216":{"rfcNumber":"RFC1216","href":"https://www.rfc-editor.org/rfc/rfc1216","title":"Gigabit network economics and paradigm shifts","authors":["P. Richard","P. Kynikos"],"rawDate":"1991-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1217":{"rfcNumber":"RFC1217","href":"https://www.rfc-editor.org/rfc/rfc1217","title":"Memo from the Consortium for Slow Commotion Research (CSCR)","authors":["V.G. Cerf"],"rawDate":"1991-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1218":{"rfcNumber":"RFC1218","href":"https://www.rfc-editor.org/rfc/rfc1218","title":"Naming scheme for c=US","authors":["North American Directory Forum"],"rawDate":"1991-04","status":"Informational","obsoletedBy":["RFC1255","RFC1417"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1219":{"rfcNumber":"RFC1219","href":"https://www.rfc-editor.org/rfc/rfc1219","title":"On the assignment of subnet numbers","authors":["P.F. Tsuchiya"],"rawDate":"1991-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc122":{"aliasOf":"rfc0122"},"rfc1220":{"rfcNumber":"RFC1220","href":"https://www.rfc-editor.org/rfc/rfc1220","title":"Point-to-Point Protocol extensions for bridging","authors":["F. Baker"],"rawDate":"1991-04","status":"Proposed Standard","obsoletedBy":["RFC1638"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1221":{"rfcNumber":"RFC1221","href":"https://www.rfc-editor.org/rfc/rfc1221","title":"Host Access Protocol (HAP) specification: Version 2","authors":["W. Edmond"],"rawDate":"1991-04","status":"Informational","updates":["RFC0907"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1222":{"rfcNumber":"RFC1222","href":"https://www.rfc-editor.org/rfc/rfc1222","title":"Advancing the NSFNET routing architecture","authors":["H.W. Braun","Y. Rekhter"],"rawDate":"1991-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1223":{"rfcNumber":"RFC1223","href":"https://www.rfc-editor.org/rfc/rfc1223","title":"OSI CLNS and LLC1 protocols on Network Systems HYPERchannel","authors":["J.M. Halpern"],"rawDate":"1991-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1224":{"rfcNumber":"RFC1224","href":"https://www.rfc-editor.org/rfc/rfc1224","title":"Techniques for managing asynchronously generated alerts","authors":["L. Steinberg"],"rawDate":"1991-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1225":{"rfcNumber":"RFC1225","href":"https://www.rfc-editor.org/rfc/rfc1225","title":"Post Office Protocol: Version 3","authors":["M.T. Rose"],"rawDate":"1991-05","status":"Draft Standard","obsoletedBy":["RFC1460"],"obsoletes":["RFC1081"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1226":{"rfcNumber":"RFC1226","href":"https://www.rfc-editor.org/rfc/rfc1226","title":"Internet protocol encapsulation of AX.25 frames","authors":["B. Kantor"],"rawDate":"1991-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1227":{"rfcNumber":"RFC1227","href":"https://www.rfc-editor.org/rfc/rfc1227","title":"SNMP MUX protocol and MIB","authors":["M.T. Rose"],"rawDate":"1991-05","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1227","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1228":{"rfcNumber":"RFC1228","href":"https://www.rfc-editor.org/rfc/rfc1228","title":"SNMP-DPI: Simple Network Management Protocol Distributed Program Interface","authors":["G. Carpenter","B. Wijnen"],"rawDate":"1991-05","status":"Experimental","obsoletedBy":["RFC1592"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1229":{"rfcNumber":"RFC1229","href":"https://www.rfc-editor.org/rfc/rfc1229","title":"Extensions to the generic-interface MIB","authors":["K. McCloghrie"],"rawDate":"1991-05","status":"Proposed Standard","updatedBy":["RFC1239"],"obsoletedBy":["RFC1573"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc123":{"aliasOf":"rfc0123"},"rfc1230":{"rfcNumber":"RFC1230","href":"https://www.rfc-editor.org/rfc/rfc1230","title":"IEEE 802.4 Token Bus MIB","authors":["K. McCloghrie","R. Fox"],"rawDate":"1991-05","status":"Historic","updatedBy":["RFC1239"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1231":{"rfcNumber":"RFC1231","href":"https://www.rfc-editor.org/rfc/rfc1231","title":"IEEE 802.5 Token Ring MIB","authors":["K. McCloghrie","R. Fox","E. Decker"],"rawDate":"1991-05","status":"Proposed Standard","updatedBy":["RFC1239"],"obsoletedBy":["RFC1743","RFC1748"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1232":{"rfcNumber":"RFC1232","href":"https://www.rfc-editor.org/rfc/rfc1232","title":"Definitions of managed objects for the DS1 Interface type","authors":["F. Baker","C.P. Kolb"],"rawDate":"1991-05","status":"Proposed Standard","updatedBy":["RFC1239"],"obsoletedBy":["RFC1406"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1233":{"rfcNumber":"RFC1233","href":"https://www.rfc-editor.org/rfc/rfc1233","title":"Definitions of managed objects for the DS3 Interface type","authors":["T.A. Cox","K. Tesink"],"rawDate":"1991-05","status":"Proposed Standard","updatedBy":["RFC1239"],"obsoletedBy":["RFC1407"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1234":{"rfcNumber":"RFC1234","href":"https://www.rfc-editor.org/rfc/rfc1234","title":"Tunneling IPX traffic through IP networks","authors":["D. Provan"],"rawDate":"1991-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1235":{"rfcNumber":"RFC1235","href":"https://www.rfc-editor.org/rfc/rfc1235","title":"Coherent File Distribution Protocol","authors":["J. Ioannidis","G. Maguire"],"rawDate":"1991-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1236":{"rfcNumber":"RFC1236","href":"https://www.rfc-editor.org/rfc/rfc1236","title":"IP to X.121 address mapping for DDN","authors":["L. Morales","P. Hasse"],"rawDate":"1991-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1237":{"rfcNumber":"RFC1237","href":"https://www.rfc-editor.org/rfc/rfc1237","title":"Guidelines for OSI NSAP Allocation in the Internet","authors":["R. Colella","E. Gardner","R. Callon"],"rawDate":"1991-07","status":"Proposed Standard","obsoletedBy":["RFC1629"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1238":{"rfcNumber":"RFC1238","href":"https://www.rfc-editor.org/rfc/rfc1238","title":"CLNS MIB for use with Connectionless Network Protocol (ISO 8473) and End System to Intermediate System (ISO 9542)","authors":["G. Satz"],"rawDate":"1991-06","status":"Experimental","obsoletes":["RFC1162"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1239":{"rfcNumber":"RFC1239","href":"https://www.rfc-editor.org/rfc/rfc1239","title":"Reassignment of experimental MIBs to standard MIBs","authors":["J.K. Reynolds"],"rawDate":"1991-06","status":"Historic","updates":["RFC1229","RFC1230","RFC1231","RFC1232","RFC1233"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc124":{"aliasOf":"rfc0124"},"rfc1240":{"rfcNumber":"RFC1240","href":"https://www.rfc-editor.org/rfc/rfc1240","title":"OSI connectionless transport services on top of UDP: Version 1","authors":["C. Shue","W. Haggerty","K. Dobbins"],"rawDate":"1991-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1241":{"rfcNumber":"RFC1241","href":"https://www.rfc-editor.org/rfc/rfc1241","title":"Scheme for an internet encapsulation protocol: Version 1","authors":["R.A. Woodburn","D.L. Mills"],"rawDate":"1991-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1242":{"rfcNumber":"RFC1242","href":"https://www.rfc-editor.org/rfc/rfc1242","title":"Benchmarking Terminology for Network Interconnection Devices","authors":["S. Bradner"],"rawDate":"1991-07","status":"Informational","updatedBy":["RFC6201"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1243":{"rfcNumber":"RFC1243","href":"https://www.rfc-editor.org/rfc/rfc1243","title":"AppleTalk Management Information Base","authors":["S. Waldbusser"],"rawDate":"1991-07","status":"Proposed Standard","obsoletedBy":["RFC1742"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1244":{"rfcNumber":"RFC1244","href":"https://www.rfc-editor.org/rfc/rfc1244","title":"Site Security Handbook","authors":["J.P. Holbrook","J.K. Reynolds"],"rawDate":"1991-07","status":"Informational","obsoletedBy":["RFC2196"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1245":{"rfcNumber":"RFC1245","href":"https://www.rfc-editor.org/rfc/rfc1245","title":"OSPF Protocol Analysis","authors":["J. Moy"],"rawDate":"1991-07","status":"Informational","seeAlso":["RFC1246","RFC1247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1246":{"rfcNumber":"RFC1246","href":"https://www.rfc-editor.org/rfc/rfc1246","title":"Experience with the OSPF Protocol","authors":["J. Moy"],"rawDate":"1991-07","status":"Informational","seeAlso":["RFC1245","RFC1247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1247":{"rfcNumber":"RFC1247","href":"https://www.rfc-editor.org/rfc/rfc1247","title":"OSPF Version 2","authors":["J. Moy"],"rawDate":"1991-07","status":"Draft Standard","updatedBy":["RFC1349"],"obsoletedBy":["RFC1583"],"obsoletes":["RFC1131"],"seeAlso":["RFC1245","RFC1246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1248":{"rfcNumber":"RFC1248","href":"https://www.rfc-editor.org/rfc/rfc1248","title":"OSPF Version 2 Management Information Base","authors":["F. Baker","R. Coltun"],"rawDate":"1991-07","status":"Proposed Standard","updatedBy":["RFC1349"],"obsoletedBy":["RFC1252"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1249":{"rfcNumber":"RFC1249","href":"https://www.rfc-editor.org/rfc/rfc1249","title":"DIXIE Protocol Specification","authors":["T. Howes","M. Smith","B. Beecher"],"rawDate":"1991-08","status":"Informational","seeAlso":["RFC1202"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc125":{"aliasOf":"rfc0125"},"rfc1250":{"rfcNumber":"RFC1250","href":"https://www.rfc-editor.org/rfc/rfc1250","title":"IAB Official Protocol Standards","authors":["J. Postel"],"rawDate":"1991-08","status":"Historic","obsoletedBy":["RFC2200","RFC1280"],"obsoletes":["RFC1200"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1251":{"rfcNumber":"RFC1251","href":"https://www.rfc-editor.org/rfc/rfc1251","title":"Who's Who in the Internet: Biographies of IAB, IESG and IRSG Members","authors":["G. Malkin"],"rawDate":"1991-08","status":"Informational","obsoletedBy":["RFC1336"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1252":{"rfcNumber":"RFC1252","href":"https://www.rfc-editor.org/rfc/rfc1252","title":"OSPF Version 2 Management Information Base","authors":["F. Baker","R. Coltun"],"rawDate":"1991-08","status":"Proposed Standard","obsoletedBy":["RFC1253"],"obsoletes":["RFC1248"],"seeAlso":["RFC1245","RFC1247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1253":{"rfcNumber":"RFC1253","href":"https://www.rfc-editor.org/rfc/rfc1253","title":"OSPF Version 2 Management Information Base","authors":["F. Baker","R. Coltun"],"rawDate":"1991-08","status":"Proposed Standard","obsoletedBy":["RFC1850"],"obsoletes":["RFC1252"],"seeAlso":["RFC1245","RFC1246","RFC1247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1254":{"rfcNumber":"RFC1254","href":"https://www.rfc-editor.org/rfc/rfc1254","title":"Gateway Congestion Control Survey","authors":["A. Mankin","K. Ramakrishnan"],"rawDate":"1991-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1255":{"rfcNumber":"RFC1255","href":"https://www.rfc-editor.org/rfc/rfc1255","title":"A Naming Scheme for c=US","authors":["The North American Directory Forum"],"rawDate":"1991-09","status":"Informational","obsoletedBy":["RFC1417"],"obsoletes":["RFC1218"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1256":{"rfcNumber":"RFC1256","href":"https://www.rfc-editor.org/rfc/rfc1256","title":"ICMP Router Discovery Messages","authors":["S. Deering, Ed."],"rawDate":"1991-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1257":{"rfcNumber":"RFC1257","href":"https://www.rfc-editor.org/rfc/rfc1257","title":"Isochronous applications do not require jitter-controlled networks","authors":["C. Partridge"],"rawDate":"1991-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1258":{"rfcNumber":"RFC1258","href":"https://www.rfc-editor.org/rfc/rfc1258","title":"BSD Rlogin","authors":["B. Kantor"],"rawDate":"1991-09","status":"Informational","obsoletedBy":["RFC1282"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1258","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1259":{"rfcNumber":"RFC1259","href":"https://www.rfc-editor.org/rfc/rfc1259","title":"Building the open road: The NREN as test-bed for the national public network","authors":["M. Kapor"],"rawDate":"1991-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc126":{"aliasOf":"rfc0126"},"rfc1261":{"rfcNumber":"RFC1261","href":"https://www.rfc-editor.org/rfc/rfc1261","title":"Transition of Nic Services","authors":["S. Williamson","L. Nobile"],"rawDate":"1991-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1262":{"rfcNumber":"RFC1262","href":"https://www.rfc-editor.org/rfc/rfc1262","title":"Guidelines for Internet Measurement Activities","authors":["V.G. Cerf"],"rawDate":"1991-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1263":{"rfcNumber":"RFC1263","href":"https://www.rfc-editor.org/rfc/rfc1263","title":"TCP Extensions Considered Harmful","authors":["S. O'Malley","L.L. Peterson"],"rawDate":"1991-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1264":{"rfcNumber":"RFC1264","href":"https://www.rfc-editor.org/rfc/rfc1264","title":"Internet Engineering Task Force Internet Routing Protocol Standardization Criteria","authors":["R.M. Hinden"],"rawDate":"1991-10","status":"Historic","obsoletedBy":["RFC4794"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1265":{"rfcNumber":"RFC1265","href":"https://www.rfc-editor.org/rfc/rfc1265","title":"BGP Protocol Analysis","authors":["Y. Rekhter"],"rawDate":"1991-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1266":{"rfcNumber":"RFC1266","href":"https://www.rfc-editor.org/rfc/rfc1266","title":"Experience with the BGP Protocol","authors":["Y. Rekhter"],"rawDate":"1991-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1267":{"rfcNumber":"RFC1267","href":"https://www.rfc-editor.org/rfc/rfc1267","title":"Border Gateway Protocol 3 (BGP-3)","authors":["K. Lougheed","Y. Rekhter"],"rawDate":"1991-10","status":"Historic","obsoletes":["RFC1163"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1268":{"rfcNumber":"RFC1268","href":"https://www.rfc-editor.org/rfc/rfc1268","title":"Application of the Border Gateway Protocol in the Internet","authors":["Y. Rekhter","P. Gross"],"rawDate":"1991-10","status":"Historic","obsoletedBy":["RFC1655"],"obsoletes":["RFC1164"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1269":{"rfcNumber":"RFC1269","href":"https://www.rfc-editor.org/rfc/rfc1269","title":"Definitions of Managed Objects for the Border Gateway Protocol: Version 3","authors":["S. Willis","J.W. Burruss"],"rawDate":"1991-10","status":"Proposed Standard","obsoletedBy":["RFC4273"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc127":{"aliasOf":"rfc0127"},"rfc1270":{"rfcNumber":"RFC1270","href":"https://www.rfc-editor.org/rfc/rfc1270","title":"SNMP Communications Services","authors":["F. Kastenholz"],"rawDate":"1991-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1271":{"rfcNumber":"RFC1271","href":"https://www.rfc-editor.org/rfc/rfc1271","title":"Remote Network Monitoring Management Information Base","authors":["S. Waldbusser"],"rawDate":"1991-11","status":"Proposed Standard","updatedBy":["RFC1513"],"obsoletedBy":["RFC1757"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1272":{"rfcNumber":"RFC1272","href":"https://www.rfc-editor.org/rfc/rfc1272","title":"Internet Accounting: Background","authors":["C. Mills","D. Hirsh","G.R. Ruth"],"rawDate":"1991-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1273":{"rfcNumber":"RFC1273","href":"https://www.rfc-editor.org/rfc/rfc1273","title":"Measurement Study of Changes in Service-Level Reachability in the Global TCP/IP Internet: Goals, Experimental Design, Implementation, and Policy Considerations","authors":["M.F. Schwartz"],"rawDate":"1991-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1274":{"rfcNumber":"RFC1274","href":"https://www.rfc-editor.org/rfc/rfc1274","title":"The COSINE and Internet X.500 Schema","authors":["P. Barker","S. Kille"],"rawDate":"1991-11","status":"Proposed Standard","obsoletedBy":["RFC4524"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1275":{"rfcNumber":"RFC1275","href":"https://www.rfc-editor.org/rfc/rfc1275","title":"Replication Requirements to provide an Internet Directory using X.500","authors":["S.E. Hardcastle-Kille"],"rawDate":"1991-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1276":{"rfcNumber":"RFC1276","href":"https://www.rfc-editor.org/rfc/rfc1276","title":"Replication and Distributed Operations extensions to provide an Internet Directory using X.500","authors":["S.E. Hardcastle-Kille"],"rawDate":"1991-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1277":{"rfcNumber":"RFC1277","href":"https://www.rfc-editor.org/rfc/rfc1277","title":"Encoding Network Addresses to Support Operation over Non-OSI Lower Layers","authors":["S.E. Hardcastle-Kille"],"rawDate":"1991-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1278":{"rfcNumber":"RFC1278","href":"https://www.rfc-editor.org/rfc/rfc1278","title":"A string encoding of Presentation Address","authors":["S.E. Hardcastle-Kille"],"rawDate":"1991-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1279":{"rfcNumber":"RFC1279","href":"https://www.rfc-editor.org/rfc/rfc1279","title":"X.500 and Domains","authors":["S.E. Hardcastle-Kille"],"rawDate":"1991-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc128":{"aliasOf":"rfc0128"},"rfc1280":{"rfcNumber":"RFC1280","href":"https://www.rfc-editor.org/rfc/rfc1280","title":"IAB Official Protocol Standards","authors":["J. Postel"],"rawDate":"1992-03","status":"Historic","obsoletedBy":["RFC1360"],"obsoletes":["RFC1250"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1281":{"rfcNumber":"RFC1281","href":"https://www.rfc-editor.org/rfc/rfc1281","title":"Guidelines for the Secure Operation of the Internet","authors":["R. Pethia","S. Crocker","B. Fraser"],"rawDate":"1991-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1282":{"rfcNumber":"RFC1282","href":"https://www.rfc-editor.org/rfc/rfc1282","title":"BSD Rlogin","authors":["B. Kantor"],"rawDate":"1991-12","status":"Informational","obsoletes":["RFC1258"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1283":{"rfcNumber":"RFC1283","href":"https://www.rfc-editor.org/rfc/rfc1283","title":"SNMP over OSI","authors":["M. Rose"],"rawDate":"1991-12","status":"Experimental","obsoletedBy":["RFC1418"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1284":{"rfcNumber":"RFC1284","href":"https://www.rfc-editor.org/rfc/rfc1284","title":"Definitions of Managed Objects for the Ethernet-like Interface Types","authors":["J. Cook, Ed."],"rawDate":"1991-12","status":"Proposed Standard","obsoletedBy":["RFC1398"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1285":{"rfcNumber":"RFC1285","href":"https://www.rfc-editor.org/rfc/rfc1285","title":"FDDI Management Information Base","authors":["J. Case"],"rawDate":"1992-01","status":"Historic","updatedBy":["RFC1512"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1286":{"rfcNumber":"RFC1286","href":"https://www.rfc-editor.org/rfc/rfc1286","title":"Definitions of Managed Objects for Bridges","authors":["E. Decker","P. Langille","A. Rijsinghani","K. McCloghrie"],"rawDate":"1991-12","status":"Proposed Standard","obsoletedBy":["RFC1493","RFC1525"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1287":{"rfcNumber":"RFC1287","href":"https://www.rfc-editor.org/rfc/rfc1287","title":"Towards the Future Internet Architecture","authors":["D. Clark","L. Chapin","V. Cerf","R. Braden","R. Hobby"],"rawDate":"1991-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1288":{"rfcNumber":"RFC1288","href":"https://www.rfc-editor.org/rfc/rfc1288","title":"The Finger User Information Protocol","authors":["D. Zimmerman"],"rawDate":"1991-12","status":"Draft Standard","obsoletes":["RFC1196","RFC1194","RFC0742"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1288","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1289":{"rfcNumber":"RFC1289","href":"https://www.rfc-editor.org/rfc/rfc1289","title":"DECnet Phase IV MIB Extensions","authors":["J. Saperia"],"rawDate":"1991-12","status":"Proposed Standard","obsoletedBy":["RFC1559"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc129":{"aliasOf":"rfc0129"},"rfc1290":{"rfcNumber":"RFC1290","href":"https://www.rfc-editor.org/rfc/rfc1290","title":"There's Gold in them thar Networks! or Searching for Treasure in all the Wrong Places","authors":["J. Martin"],"rawDate":"1991-12","status":"Informational","obsoletedBy":["RFC1402"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1291":{"rfcNumber":"RFC1291","href":"https://www.rfc-editor.org/rfc/rfc1291","title":"Mid-Level Networks Potential Technical Services","authors":["V. Aggarwal"],"rawDate":"1991-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1292":{"rfcNumber":"RFC1292","href":"https://www.rfc-editor.org/rfc/rfc1292","title":"A Catalog of Available X.500 Implementations","authors":["R. Lang","R. Wright"],"rawDate":"1992-01","status":"Informational","obsoletedBy":["RFC1632"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1293":{"rfcNumber":"RFC1293","href":"https://www.rfc-editor.org/rfc/rfc1293","title":"Inverse Address Resolution Protocol","authors":["T. Bradley","C. Brown"],"rawDate":"1992-01","status":"Proposed Standard","obsoletedBy":["RFC2390"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1294":{"rfcNumber":"RFC1294","href":"https://www.rfc-editor.org/rfc/rfc1294","title":"Multiprotocol Interconnect over Frame Relay","authors":["T. Bradley","C. Brown","A. Malis"],"rawDate":"1992-01","status":"Proposed Standard","obsoletedBy":["RFC1490","RFC2427"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1295":{"rfcNumber":"RFC1295","href":"https://www.rfc-editor.org/rfc/rfc1295","title":"User Bill of Rights for entries and listings in the Public Directory","authors":["The North American Directory Forum"],"rawDate":"1992-01","status":"Informational","obsoletedBy":["RFC1417"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1296":{"rfcNumber":"RFC1296","href":"https://www.rfc-editor.org/rfc/rfc1296","title":"Internet Growth (1981-1991)","authors":["M. Lottor"],"rawDate":"1992-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1297":{"rfcNumber":"RFC1297","href":"https://www.rfc-editor.org/rfc/rfc1297","title":"NOC Internal Integrated Trouble Ticket System Functional Specification Wishlist (\"NOC TT REQUIREMENTS\")","authors":["D. Johnson"],"rawDate":"1992-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1298":{"rfcNumber":"RFC1298","href":"https://www.rfc-editor.org/rfc/rfc1298","title":"SNMP over IPX","authors":["R. Wormley","S. Bostock"],"rawDate":"1992-02","status":"Informational","obsoletedBy":["RFC1420"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1299":{"rfcNumber":"RFC1299","href":"https://www.rfc-editor.org/rfc/rfc1299","title":"Summary of 1200-1299","authors":["M. Kennedy"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc13":{"aliasOf":"rfc0013"},"rfc130":{"aliasOf":"rfc0130"},"rfc1300":{"rfcNumber":"RFC1300","href":"https://www.rfc-editor.org/rfc/rfc1300","title":"Remembrances of Things Past","authors":["S. Greenfield"],"rawDate":"1992-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1301":{"rfcNumber":"RFC1301","href":"https://www.rfc-editor.org/rfc/rfc1301","title":"Multicast Transport Protocol","authors":["S. Armstrong","A. Freier","K. Marzullo"],"rawDate":"1992-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1302":{"rfcNumber":"RFC1302","href":"https://www.rfc-editor.org/rfc/rfc1302","title":"Building a Network Information Services Infrastructure","authors":["D. Sitzler","P. Smith","A. Marine"],"rawDate":"1992-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1303":{"rfcNumber":"RFC1303","href":"https://www.rfc-editor.org/rfc/rfc1303","title":"A Convention for Describing SNMP-based Agents","authors":["K. McCloghrie","M. Rose"],"rawDate":"1992-02","status":"Informational","seeAlso":["RFC1155","RFC1157","RFC1212","RFC1213"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1304":{"rfcNumber":"RFC1304","href":"https://www.rfc-editor.org/rfc/rfc1304","title":"Definitions of Managed Objects for the SIP Interface Type","authors":["T. Cox, Ed.","K. Tesink, Ed."],"rawDate":"1992-02","status":"Proposed Standard","obsoletedBy":["RFC1694"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1305":{"rfcNumber":"RFC1305","href":"https://www.rfc-editor.org/rfc/rfc1305","title":"Network Time Protocol (Version 3) Specification, Implementation and Analysis","authors":["D. Mills"],"rawDate":"1992-03","status":"Draft Standard","obsoletedBy":["RFC5905"],"obsoletes":["RFC0958","RFC1059","RFC1119"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1306":{"rfcNumber":"RFC1306","href":"https://www.rfc-editor.org/rfc/rfc1306","title":"Experiences Supporting By-Request Circuit-Switched T3 Networks","authors":["A. Nicholson","J. Young"],"rawDate":"1992-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1307":{"rfcNumber":"RFC1307","href":"https://www.rfc-editor.org/rfc/rfc1307","title":"Dynamically Switched Link Control Protocol","authors":["J. Young","A. Nicholson"],"rawDate":"1992-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1308":{"rfcNumber":"RFC1308","href":"https://www.rfc-editor.org/rfc/rfc1308","title":"Executive Introduction to Directory Services Using the X.500 Protocol","authors":["C. Weider","J. Reynolds"],"rawDate":"1992-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1309":{"rfcNumber":"RFC1309","href":"https://www.rfc-editor.org/rfc/rfc1309","title":"Technical Overview of Directory Services Using the X.500 Protocol","authors":["C. Weider","J. Reynolds","S. Heker"],"rawDate":"1992-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc131":{"aliasOf":"rfc0131"},"rfc1310":{"rfcNumber":"RFC1310","href":"https://www.rfc-editor.org/rfc/rfc1310","title":"The Internet Standards Process","authors":["L. Chapin"],"rawDate":"1992-03","status":"Informational","obsoletedBy":["RFC1602"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1311":{"rfcNumber":"RFC1311","href":"https://www.rfc-editor.org/rfc/rfc1311","title":"Introduction to the STD Notes","authors":["J. Postel"],"rawDate":"1992-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1312":{"rfcNumber":"RFC1312","href":"https://www.rfc-editor.org/rfc/rfc1312","title":"Message Send Protocol 2","authors":["R. Nelson","G. Arnold"],"rawDate":"1992-04","status":"Experimental","obsoletes":["RFC1159"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1313":{"rfcNumber":"RFC1313","href":"https://www.rfc-editor.org/rfc/rfc1313","title":"Today's Programming for KRFC AM 1313 Internet Talk Radio","authors":["C. Partridge"],"rawDate":"1992-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1314":{"rfcNumber":"RFC1314","href":"https://www.rfc-editor.org/rfc/rfc1314","title":"A File Format for the Exchange of Images in the Internet","authors":["A. Katz","D. Cohen"],"rawDate":"1992-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1315":{"rfcNumber":"RFC1315","href":"https://www.rfc-editor.org/rfc/rfc1315","title":"Management Information Base for Frame Relay DTEs","authors":["C. Brown","F. Baker","C. Carvalho"],"rawDate":"1992-04","status":"Proposed Standard","obsoletedBy":["RFC2115"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1316":{"rfcNumber":"RFC1316","href":"https://www.rfc-editor.org/rfc/rfc1316","title":"Definitions of Managed Objects for Character Stream Devices","authors":["B. Stewart"],"rawDate":"1992-04","status":"Proposed Standard","obsoletedBy":["RFC1658"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1317":{"rfcNumber":"RFC1317","href":"https://www.rfc-editor.org/rfc/rfc1317","title":"Definitions of Managed Objects for RS-232-like Hardware Devices","authors":["B. Stewart"],"rawDate":"1992-04","status":"Proposed Standard","obsoletedBy":["RFC1659"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1318":{"rfcNumber":"RFC1318","href":"https://www.rfc-editor.org/rfc/rfc1318","title":"Definitions of Managed Objects for Parallel-printer-like Hardware Devices","authors":["B. Stewart"],"rawDate":"1992-04","status":"Proposed Standard","obsoletedBy":["RFC1660"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1319":{"rfcNumber":"RFC1319","href":"https://www.rfc-editor.org/rfc/rfc1319","title":"The MD2 Message-Digest Algorithm","authors":["B. Kaliski"],"rawDate":"1992-04","status":"Historic","obsoletedBy":["RFC6149"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1319","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc132":{"aliasOf":"rfc0132"},"rfc1320":{"rfcNumber":"RFC1320","href":"https://www.rfc-editor.org/rfc/rfc1320","title":"The MD4 Message-Digest Algorithm","authors":["R. Rivest"],"rawDate":"1992-04","status":"Historic","obsoletedBy":["RFC6150"],"obsoletes":["RFC1186"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1320","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1321":{"rfcNumber":"RFC1321","href":"https://www.rfc-editor.org/rfc/rfc1321","title":"The MD5 Message-Digest Algorithm","authors":["R. Rivest"],"rawDate":"1992-04","status":"Informational","updatedBy":["RFC6151"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1321","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1322":{"rfcNumber":"RFC1322","href":"https://www.rfc-editor.org/rfc/rfc1322","title":"A Unified Approach to Inter-Domain Routing","authors":["D. Estrin","Y. Rekhter","S. Hotz"],"rawDate":"1992-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1322","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1323":{"rfcNumber":"RFC1323","href":"https://www.rfc-editor.org/rfc/rfc1323","title":"TCP Extensions for High Performance","authors":["V. Jacobson","R. Braden","D. Borman"],"rawDate":"1992-05","status":"Proposed Standard","obsoletedBy":["RFC7323"],"obsoletes":["RFC1072","RFC1185"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1323","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1324":{"rfcNumber":"RFC1324","href":"https://www.rfc-editor.org/rfc/rfc1324","title":"A Discussion on Computer Network Conferencing","authors":["D. Reed"],"rawDate":"1992-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1325":{"rfcNumber":"RFC1325","href":"https://www.rfc-editor.org/rfc/rfc1325","title":"FYI on Questions and Answers Answers to Commonly asked \"New Internet User\" Questions","authors":["G. Malkin","A. Marine"],"rawDate":"1992-05","status":"Informational","obsoletedBy":["RFC1594"],"obsoletes":["RFC1206"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1326":{"rfcNumber":"RFC1326","href":"https://www.rfc-editor.org/rfc/rfc1326","title":"Mutual Encapsulation Considered Dangerous","authors":["P. Tsuchiya"],"rawDate":"1992-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1327":{"rfcNumber":"RFC1327","href":"https://www.rfc-editor.org/rfc/rfc1327","title":"Mapping between X.400(1988) / ISO 10021 and RFC 822","authors":["S. Hardcastle-Kille"],"rawDate":"1992-05","status":"Proposed Standard","updatedBy":["RFC1495"],"obsoletedBy":["RFC2156"],"updates":["RFC0822"],"obsoletes":["RFC0987","RFC1026","RFC1138","RFC1148"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1328":{"rfcNumber":"RFC1328","href":"https://www.rfc-editor.org/rfc/rfc1328","title":"X.400 1988 to 1984 downgrading","authors":["S. Hardcastle-Kille"],"rawDate":"1992-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1329":{"rfcNumber":"RFC1329","href":"https://www.rfc-editor.org/rfc/rfc1329","title":"Thoughts on Address Resolution for Dual MAC FDDI Networks","authors":["P. Kuehn"],"rawDate":"1992-05","status":"Informational","updatedBy":["RFC5494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc133":{"aliasOf":"rfc0133"},"rfc1330":{"rfcNumber":"RFC1330","href":"https://www.rfc-editor.org/rfc/rfc1330","title":"Recommendations for the Phase I Deployment of OSI Directory Services (X.500) and OSI Message Handling Services (X.400) within the ESNET Community","authors":["ESCC X.500/X.400 Task Force","ESnet Site Coordinating Comittee (ESCC)","Energy Sciences Network (ESnet)"],"rawDate":"1992-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1331":{"rfcNumber":"RFC1331","href":"https://www.rfc-editor.org/rfc/rfc1331","title":"The Point-to-Point Protocol (PPP) for the Transmission of Multi-protocol Datagrams over Point-to-Point Links","authors":["W. Simpson"],"rawDate":"1992-05","status":"Proposed Standard","obsoletedBy":["RFC1548"],"obsoletes":["RFC1171","RFC1172"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1332":{"rfcNumber":"RFC1332","href":"https://www.rfc-editor.org/rfc/rfc1332","title":"The PPP Internet Protocol Control Protocol (IPCP)","authors":["G. McGregor"],"rawDate":"1992-05","status":"Proposed Standard","updatedBy":["RFC3241"],"obsoletes":["RFC1172"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1333":{"rfcNumber":"RFC1333","href":"https://www.rfc-editor.org/rfc/rfc1333","title":"PPP Link Quality Monitoring","authors":["W. Simpson"],"rawDate":"1992-05","status":"Proposed Standard","obsoletedBy":["RFC1989"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1334":{"rfcNumber":"RFC1334","href":"https://www.rfc-editor.org/rfc/rfc1334","title":"PPP Authentication Protocols","authors":["B. Lloyd","W. Simpson"],"rawDate":"1992-10","status":"Proposed Standard","obsoletedBy":["RFC1994"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1335":{"rfcNumber":"RFC1335","href":"https://www.rfc-editor.org/rfc/rfc1335","title":"A Two-Tier Address Structure for the Internet: A Solution to the Problem of Address Space Exhaustion","authors":["Z. Wang","J. Crowcroft"],"rawDate":"1992-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1336":{"rfcNumber":"RFC1336","href":"https://www.rfc-editor.org/rfc/rfc1336","title":"Who's Who in the Internet: Biographies of IAB, IESG and IRSG Members","authors":["G. Malkin"],"rawDate":"1992-05","status":"Informational","obsoletes":["RFC1251"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1337":{"rfcNumber":"RFC1337","href":"https://www.rfc-editor.org/rfc/rfc1337","title":"TIME-WAIT Assassination Hazards in TCP","authors":["R. Braden"],"rawDate":"1992-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1337","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1338":{"rfcNumber":"RFC1338","href":"https://www.rfc-editor.org/rfc/rfc1338","title":"Supernetting: an Address Assignment and Aggregation Strategy","authors":["V. Fuller","T. Li","J. Yu","K. Varadhan"],"rawDate":"1992-06","status":"Informational","obsoletedBy":["RFC1519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1339":{"rfcNumber":"RFC1339","href":"https://www.rfc-editor.org/rfc/rfc1339","title":"Remote Mail Checking Protocol","authors":["S. Dorner","P. Resnick"],"rawDate":"1992-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc134":{"aliasOf":"rfc0134"},"rfc1340":{"rfcNumber":"RFC1340","href":"https://www.rfc-editor.org/rfc/rfc1340","title":"Assigned Numbers","authors":["J. Reynolds","J. Postel"],"rawDate":"1992-07","status":"Historic","obsoletedBy":["RFC1700"],"obsoletes":["RFC1060"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1340","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1341":{"rfcNumber":"RFC1341","href":"https://www.rfc-editor.org/rfc/rfc1341","title":"MIME (Multipurpose Internet Mail Extensions): Mechanisms for Specifying and Describing the Format of Internet Message Bodies","authors":["N. Borenstein","N. Freed"],"rawDate":"1992-06","status":"Proposed Standard","obsoletedBy":["RFC1521"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1342":{"rfcNumber":"RFC1342","href":"https://www.rfc-editor.org/rfc/rfc1342","title":"Representation of Non-ASCII Text in Internet Message Headers","authors":["K. Moore"],"rawDate":"1992-06","status":"Proposed Standard","obsoletedBy":["RFC1522"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1343":{"rfcNumber":"RFC1343","href":"https://www.rfc-editor.org/rfc/rfc1343","title":"A User Agent Configuration Mechanism for Multimedia Mail Format Information","authors":["N. Borenstein"],"rawDate":"1992-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1344":{"rfcNumber":"RFC1344","href":"https://www.rfc-editor.org/rfc/rfc1344","title":"Implications of MIME for Internet Mail Gateways","authors":["N. Borenstein"],"rawDate":"1992-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1345":{"rfcNumber":"RFC1345","href":"https://www.rfc-editor.org/rfc/rfc1345","title":"Character Mnemonics and Character Sets","authors":["K. Simonsen"],"rawDate":"1992-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1345","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1346":{"rfcNumber":"RFC1346","href":"https://www.rfc-editor.org/rfc/rfc1346","title":"Resource Allocation, Control, and Accounting for the Use of Network Resources","authors":["P. Jones"],"rawDate":"1992-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1347":{"rfcNumber":"RFC1347","href":"https://www.rfc-editor.org/rfc/rfc1347","title":"TCP and UDP with Bigger Addresses (TUBA), A Simple Proposal for Internet Addressing and Routing","authors":["R. Callon"],"rawDate":"1992-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1348":{"rfcNumber":"RFC1348","href":"https://www.rfc-editor.org/rfc/rfc1348","title":"DNS NSAP RRs","authors":["B. Manning"],"rawDate":"1992-07","status":"Experimental","obsoletedBy":["RFC1637"],"updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1349":{"rfcNumber":"RFC1349","href":"https://www.rfc-editor.org/rfc/rfc1349","title":"Type of Service in the Internet Protocol Suite","authors":["P. Almquist"],"rawDate":"1992-07","status":"Proposed Standard","obsoletedBy":["RFC2474"],"updates":["RFC1248","RFC1247","RFC1195","RFC1123","RFC1122","RFC1060","RFC0791"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1349","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc135":{"aliasOf":"rfc0135"},"rfc1350":{"rfcNumber":"RFC1350","href":"https://www.rfc-editor.org/rfc/rfc1350","title":"The TFTP Protocol (Revision 2)","authors":["K. Sollins"],"rawDate":"1992-07","status":"Internet Standard","updatedBy":["RFC1782","RFC1783","RFC1784","RFC1785","RFC2347","RFC2348","RFC2349"],"obsoletes":["RFC0783"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1350","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1351":{"rfcNumber":"RFC1351","href":"https://www.rfc-editor.org/rfc/rfc1351","title":"SNMP Administrative Model","authors":["J. Davin","J. Galvin","K. McCloghrie"],"rawDate":"1992-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1352":{"rfcNumber":"RFC1352","href":"https://www.rfc-editor.org/rfc/rfc1352","title":"SNMP Security Protocols","authors":["J. Galvin","K. McCloghrie","J. Davin"],"rawDate":"1992-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1353":{"rfcNumber":"RFC1353","href":"https://www.rfc-editor.org/rfc/rfc1353","title":"Definitions of Managed Objects for Administration of SNMP Parties","authors":["K. McCloghrie","J. Davin","J. Galvin"],"rawDate":"1992-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1354":{"rfcNumber":"RFC1354","href":"https://www.rfc-editor.org/rfc/rfc1354","title":"IP Forwarding Table MIB","authors":["F. Baker"],"rawDate":"1992-07","status":"Proposed Standard","obsoletedBy":["RFC2096"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1355":{"rfcNumber":"RFC1355","href":"https://www.rfc-editor.org/rfc/rfc1355","title":"Privacy and Accuracy Issues in Network Information Center Databases","authors":["J. Curran","A. Marine"],"rawDate":"1992-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1356":{"rfcNumber":"RFC1356","href":"https://www.rfc-editor.org/rfc/rfc1356","title":"Multiprotocol Interconnect on X.25 and ISDN in the Packet Mode","authors":["A. Malis","D. Robinson","R. Ullmann"],"rawDate":"1992-08","status":"Draft Standard","obsoletes":["RFC0877"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1357":{"rfcNumber":"RFC1357","href":"https://www.rfc-editor.org/rfc/rfc1357","title":"A Format for E-mailing Bibliographic Records","authors":["D. Cohen"],"rawDate":"1992-07","status":"Informational","obsoletedBy":["RFC1807"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1358":{"rfcNumber":"RFC1358","href":"https://www.rfc-editor.org/rfc/rfc1358","title":"Charter of the Internet Architecture Board (IAB)","authors":["L. Chapin"],"rawDate":"1992-08","status":"Informational","obsoletedBy":["RFC1601"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1359":{"rfcNumber":"RFC1359","href":"https://www.rfc-editor.org/rfc/rfc1359","title":"Connecting to the Internet - What Connecting Institutions Should Anticipate","authors":["ACM SIGUCCS"],"rawDate":"1992-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc136":{"aliasOf":"rfc0136"},"rfc1360":{"rfcNumber":"RFC1360","href":"https://www.rfc-editor.org/rfc/rfc1360","title":"IAB Official Protocol Standards","authors":["J. Postel"],"rawDate":"1992-09","status":"Historic","obsoletedBy":["RFC1410"],"obsoletes":["RFC1280"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1361":{"rfcNumber":"RFC1361","href":"https://www.rfc-editor.org/rfc/rfc1361","title":"Simple Network Time Protocol (SNTP)","authors":["D. Mills"],"rawDate":"1992-08","status":"Informational","obsoletedBy":["RFC1769"],"seeAlso":["RFC1305"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1361","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1362":{"rfcNumber":"RFC1362","href":"https://www.rfc-editor.org/rfc/rfc1362","title":"Novell IPX over Various WAN Media (IPXWAN)","authors":["M. Allen"],"rawDate":"1992-09","status":"Informational","obsoletedBy":["RFC1634"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1363":{"rfcNumber":"RFC1363","href":"https://www.rfc-editor.org/rfc/rfc1363","title":"A Proposed Flow Specification","authors":["C. Partridge"],"rawDate":"1992-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1364":{"rfcNumber":"RFC1364","href":"https://www.rfc-editor.org/rfc/rfc1364","title":"BGP OSPF Interaction","authors":["K. Varadhan"],"rawDate":"1992-09","status":"Proposed Standard","obsoletedBy":["RFC1403"],"seeAlso":["RFC1247","RFC1267"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1365":{"rfcNumber":"RFC1365","href":"https://www.rfc-editor.org/rfc/rfc1365","title":"An IP Address Extension Proposal","authors":["K. Siyan"],"rawDate":"1992-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1365","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1366":{"rfcNumber":"RFC1366","href":"https://www.rfc-editor.org/rfc/rfc1366","title":"Guidelines for Management of IP Address Space","authors":["E. Gerich"],"rawDate":"1992-10","status":"Informational","obsoletedBy":["RFC1466"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1367":{"rfcNumber":"RFC1367","href":"https://www.rfc-editor.org/rfc/rfc1367","title":"Schedule for IP Address Space Management Guidelines","authors":["C. Topolcic"],"rawDate":"1992-10","status":"Informational","obsoletedBy":["RFC1467"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1368":{"rfcNumber":"RFC1368","href":"https://www.rfc-editor.org/rfc/rfc1368","title":"Definition of Managed Objects for IEEE 802.3 Repeater Devices","authors":["D. McMaster","K. McCloghrie"],"rawDate":"1992-10","status":"Proposed Standard","obsoletedBy":["RFC1516"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1369":{"rfcNumber":"RFC1369","href":"https://www.rfc-editor.org/rfc/rfc1369","title":"Implementation Notes and Experience for the Internet Ethernet MIB","authors":["F. Kastenholz"],"rawDate":"1992-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc137":{"aliasOf":"rfc0137"},"rfc1370":{"rfcNumber":"RFC1370","href":"https://www.rfc-editor.org/rfc/rfc1370","title":"Applicability Statement for OSPF","authors":["Internet Architecture Board","L. Chapin"],"rawDate":"1992-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1371":{"rfcNumber":"RFC1371","href":"https://www.rfc-editor.org/rfc/rfc1371","title":"Choosing a Common IGP for the IP Internet","authors":["P. Gross"],"rawDate":"1992-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1372":{"rfcNumber":"RFC1372","href":"https://www.rfc-editor.org/rfc/rfc1372","title":"Telnet Remote Flow Control Option","authors":["C. Hedrick","D. Borman"],"rawDate":"1992-10","status":"Proposed Standard","obsoletes":["RFC1080"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1373":{"rfcNumber":"RFC1373","href":"https://www.rfc-editor.org/rfc/rfc1373","title":"Portable DUAs","authors":["T. Tignor"],"rawDate":"1992-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1374":{"rfcNumber":"RFC1374","href":"https://www.rfc-editor.org/rfc/rfc1374","title":"IP and ARP on HIPPI","authors":["J. Renwick","A. Nicholson"],"rawDate":"1992-10","status":"Proposed Standard","obsoletedBy":["RFC2834"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1375":{"rfcNumber":"RFC1375","href":"https://www.rfc-editor.org/rfc/rfc1375","title":"Suggestion for New Classes of IP Addresses","authors":["P. Robinson"],"rawDate":"1992-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1376":{"rfcNumber":"RFC1376","href":"https://www.rfc-editor.org/rfc/rfc1376","title":"The PPP DECnet Phase IV Control Protocol (DNCP)","authors":["S. Senum"],"rawDate":"1992-11","status":"Proposed Standard","obsoletedBy":["RFC1762"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1377":{"rfcNumber":"RFC1377","href":"https://www.rfc-editor.org/rfc/rfc1377","title":"The PPP OSI Network Layer Control Protocol (OSINLCP)","authors":["D. Katz"],"rawDate":"1992-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1378":{"rfcNumber":"RFC1378","href":"https://www.rfc-editor.org/rfc/rfc1378","title":"The PPP AppleTalk Control Protocol (ATCP)","authors":["B. Parker"],"rawDate":"1992-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1379":{"rfcNumber":"RFC1379","href":"https://www.rfc-editor.org/rfc/rfc1379","title":"Extending TCP for Transactions -- Concepts","authors":["R. Braden"],"rawDate":"1992-11","status":"Historic","updatedBy":["RFC1644"],"obsoletedBy":["RFC6247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc138":{"aliasOf":"rfc0138"},"rfc1380":{"rfcNumber":"RFC1380","href":"https://www.rfc-editor.org/rfc/rfc1380","title":"IESG Deliberations on Routing and Addressing","authors":["P. Gross","P. Almquist"],"rawDate":"1992-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1381":{"rfcNumber":"RFC1381","href":"https://www.rfc-editor.org/rfc/rfc1381","title":"SNMP MIB Extension for X.25 LAPB","authors":["D. Throop","F. Baker"],"rawDate":"1992-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1382":{"rfcNumber":"RFC1382","href":"https://www.rfc-editor.org/rfc/rfc1382","title":"SNMP MIB Extension for the X.25 Packet Layer","authors":["D. Throop, Ed."],"rawDate":"1992-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1383":{"rfcNumber":"RFC1383","href":"https://www.rfc-editor.org/rfc/rfc1383","title":"An Experiment in DNS Based IP Routing","authors":["C. Huitema"],"rawDate":"1992-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1384":{"rfcNumber":"RFC1384","href":"https://www.rfc-editor.org/rfc/rfc1384","title":"Naming Guidelines for Directory Pilots","authors":["P. Barker","S.E. Hardcastle-Kille"],"rawDate":"1993-01","status":"Informational","obsoletedBy":["rfc1617"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1385":{"rfcNumber":"RFC1385","href":"https://www.rfc-editor.org/rfc/rfc1385","title":"EIP: The Extended Internet Protocol","authors":["Z. Wang"],"rawDate":"1992-11","status":"Historic","obsoletedBy":["RFC6814"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1386":{"rfcNumber":"RFC1386","href":"https://www.rfc-editor.org/rfc/rfc1386","title":"The US Domain","authors":["A. Cooper","J. Postel"],"rawDate":"1992-12","status":"Informational","obsoletedBy":["RFC1480"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1387":{"rfcNumber":"RFC1387","href":"https://www.rfc-editor.org/rfc/rfc1387","title":"RIP Version 2 Protocol Analysis","authors":["G. Malkin"],"rawDate":"1993-01","status":"Informational","obsoletedBy":["RFC1721"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1388":{"rfcNumber":"RFC1388","href":"https://www.rfc-editor.org/rfc/rfc1388","title":"RIP Version 2 Carrying Additional Information","authors":["G. Malkin"],"rawDate":"1993-01","status":"Proposed Standard","obsoletedBy":["RFC1723"],"updates":["RFC1058"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1389":{"rfcNumber":"RFC1389","href":"https://www.rfc-editor.org/rfc/rfc1389","title":"RIP Version 2 MIB Extensions","authors":["G. Malkin","F. Baker"],"rawDate":"1993-01","status":"Proposed Standard","obsoletedBy":["RFC1724"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc139":{"aliasOf":"rfc0139"},"rfc1390":{"rfcNumber":"RFC1390","href":"https://www.rfc-editor.org/rfc/rfc1390","title":"Transmission of IP and ARP over FDDI Networks","authors":["D. Katz"],"rawDate":"1993-01","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1391":{"rfcNumber":"RFC1391","href":"https://www.rfc-editor.org/rfc/rfc1391","title":"The Tao of the IETF: A Guide for New Attendees of the Internet Engineering Task Force","authors":["G. Malkin"],"rawDate":"1993-01","status":"Informational","obsoletedBy":["RFC1539"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1392":{"rfcNumber":"RFC1392","href":"https://www.rfc-editor.org/rfc/rfc1392","title":"Internet Users' Glossary","authors":["G. Malkin","T. LaQuey Parker"],"rawDate":"1993-01","status":"Informational","obsoletedBy":["RFC1983"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1393":{"rfcNumber":"RFC1393","href":"https://www.rfc-editor.org/rfc/rfc1393","title":"Traceroute Using an IP Option","authors":["G. Malkin"],"rawDate":"1993-01","status":"Historic","obsoletedBy":["RFC6814"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1394":{"rfcNumber":"RFC1394","href":"https://www.rfc-editor.org/rfc/rfc1394","title":"Relationship of Telex Answerback Codes to Internet Domains","authors":["P. Robinson"],"rawDate":"1993-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1395":{"rfcNumber":"RFC1395","href":"https://www.rfc-editor.org/rfc/rfc1395","title":"BOOTP Vendor Information Extensions","authors":["J. Reynolds"],"rawDate":"1993-01","status":"Draft Standard","obsoletedBy":["RFC1497","RFC1533"],"updates":["RFC0951"],"obsoletes":["RFC1084","RFC1048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1396":{"rfcNumber":"RFC1396","href":"https://www.rfc-editor.org/rfc/rfc1396","title":"The Process for Organization of Internet Standards Working Group (POISED)","authors":["S. Crocker"],"rawDate":"1993-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1397":{"rfcNumber":"RFC1397","href":"https://www.rfc-editor.org/rfc/rfc1397","title":"Default Route Advertisement In BGP2 and BGP3 Version of The Border Gateway Protocol","authors":["D. Haskin"],"rawDate":"1993-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1398":{"rfcNumber":"RFC1398","href":"https://www.rfc-editor.org/rfc/rfc1398","title":"Definitions of Managed Objects for the Ethernet-Like Interface Types","authors":["F. Kastenholz"],"rawDate":"1993-01","status":"Draft Standard","obsoletedBy":["RFC1623"],"obsoletes":["RFC1284"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1399":{"rfcNumber":"RFC1399","href":"https://www.rfc-editor.org/rfc/rfc1399","title":"Summary of 1300-1399","authors":["J. Elliott"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc140":{"aliasOf":"rfc0140"},"rfc1400":{"rfcNumber":"RFC1400","href":"https://www.rfc-editor.org/rfc/rfc1400","title":"Transition and Modernization of the Internet Registration Service","authors":["S. Williamson"],"rawDate":"1993-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1401":{"rfcNumber":"RFC1401","href":"https://www.rfc-editor.org/rfc/rfc1401","title":"Correspondence between the IAB and DISA on the use of DNS","authors":["Internet Architecture Board"],"rawDate":"1993-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1402":{"rfcNumber":"RFC1402","href":"https://www.rfc-editor.org/rfc/rfc1402","title":"There's Gold in them thar Networks! or Searching for Treasure in all the Wrong Places","authors":["J. Martin"],"rawDate":"1993-01","status":"Informational","obsoletes":["RFC1290"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1403":{"rfcNumber":"RFC1403","href":"https://www.rfc-editor.org/rfc/rfc1403","title":"BGP OSPF Interaction","authors":["K. Varadhan"],"rawDate":"1993-01","status":"Historic","obsoletes":["RFC1364"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1403","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1404":{"rfcNumber":"RFC1404","href":"https://www.rfc-editor.org/rfc/rfc1404","title":"A Model for Common Operational Statistics","authors":["B. Stockman"],"rawDate":"1993-01","status":"Informational","obsoletedBy":["RFC1857"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1405":{"rfcNumber":"RFC1405","href":"https://www.rfc-editor.org/rfc/rfc1405","title":"Mapping between X.400(1984/1988) and Mail-11 (DECnet mail)","authors":["C. Allocchio"],"rawDate":"1993-01","status":"Experimental","obsoletedBy":["RFC2162"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1406":{"rfcNumber":"RFC1406","href":"https://www.rfc-editor.org/rfc/rfc1406","title":"Definitions of Managed Objects for the DS1 and E1 Interface Types","authors":["F. Baker, Ed.","J. Watt, Ed."],"rawDate":"1993-01","status":"Proposed Standard","obsoletedBy":["RFC2495"],"obsoletes":["RFC1232"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1407":{"rfcNumber":"RFC1407","href":"https://www.rfc-editor.org/rfc/rfc1407","title":"Definitions of Managed Objects for the DS3/E3 Interface Type","authors":["T. Cox","K. Tesink"],"rawDate":"1993-01","status":"Proposed Standard","obsoletedBy":["RFC2496"],"obsoletes":["RFC1233"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1408":{"rfcNumber":"RFC1408","href":"https://www.rfc-editor.org/rfc/rfc1408","title":"Telnet Environment Option","authors":["D. Borman, Ed."],"rawDate":"1993-01","status":"Historic","updatedBy":["RFC1571"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1409":{"rfcNumber":"RFC1409","href":"https://www.rfc-editor.org/rfc/rfc1409","title":"Telnet Authentication Option","authors":["D. Borman, Ed."],"rawDate":"1993-01","status":"Experimental","obsoletedBy":["RFC1416"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc141":{"aliasOf":"rfc0141"},"rfc1410":{"rfcNumber":"RFC1410","href":"https://www.rfc-editor.org/rfc/rfc1410","title":"IAB Official Protocol Standards","authors":["J. Postel, Ed."],"rawDate":"1993-03","status":"Historic","obsoletedBy":["RFC1500"],"obsoletes":["RFC1360"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1411":{"rfcNumber":"RFC1411","href":"https://www.rfc-editor.org/rfc/rfc1411","title":"Telnet Authentication: Kerberos Version 4","authors":["D. Borman, Ed."],"rawDate":"1993-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1412":{"rfcNumber":"RFC1412","href":"https://www.rfc-editor.org/rfc/rfc1412","title":"Telnet Authentication: SPX","authors":["K. Alagappan"],"rawDate":"1993-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1413":{"rfcNumber":"RFC1413","href":"https://www.rfc-editor.org/rfc/rfc1413","title":"Identification Protocol","authors":["M. St. Johns"],"rawDate":"1993-02","status":"Proposed Standard","obsoletes":["RFC0931"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1413","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1414":{"rfcNumber":"RFC1414","href":"https://www.rfc-editor.org/rfc/rfc1414","title":"Identification MIB","authors":["M. St. Johns","M. Rose"],"rawDate":"1993-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1415":{"rfcNumber":"RFC1415","href":"https://www.rfc-editor.org/rfc/rfc1415","title":"FTP-FTAM Gateway Specification","authors":["J. Mindel","R. Slaski"],"rawDate":"1993-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1416":{"rfcNumber":"RFC1416","href":"https://www.rfc-editor.org/rfc/rfc1416","title":"Telnet Authentication Option","authors":["D. Borman, Ed."],"rawDate":"1993-02","status":"Experimental","obsoletedBy":["RFC2941"],"obsoletes":["RFC1409"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1417":{"rfcNumber":"RFC1417","href":"https://www.rfc-editor.org/rfc/rfc1417","title":"NADF Standing Documents: A Brief Overview","authors":["The North American Directory Forum"],"rawDate":"1993-02","status":"Informational","obsoletedBy":["RFC1758"],"obsoletes":["RFC1295","RFC1255","RFC1218"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1418":{"rfcNumber":"RFC1418","href":"https://www.rfc-editor.org/rfc/rfc1418","title":"SNMP over OSI","authors":["M. Rose"],"rawDate":"1993-03","status":"Historic","obsoletes":["RFC1161","RFC1283"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1419":{"rfcNumber":"RFC1419","href":"https://www.rfc-editor.org/rfc/rfc1419","title":"SNMP over AppleTalk","authors":["G. Minshall","M. Ritter"],"rawDate":"1993-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc142":{"aliasOf":"rfc0142"},"rfc1420":{"rfcNumber":"RFC1420","href":"https://www.rfc-editor.org/rfc/rfc1420","title":"SNMP over IPX","authors":["S. Bostock"],"rawDate":"1993-03","status":"Proposed Standard","obsoletes":["RFC1298"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1421":{"rfcNumber":"RFC1421","href":"https://www.rfc-editor.org/rfc/rfc1421","title":"Privacy Enhancement for Internet Electronic Mail: Part I: Message Encryption and Authentication Procedures","authors":["J. Linn"],"rawDate":"1993-02","status":"Historic","obsoletes":["RFC1113"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1422":{"rfcNumber":"RFC1422","href":"https://www.rfc-editor.org/rfc/rfc1422","title":"Privacy Enhancement for Internet Electronic Mail: Part II: Certificate-Based Key Management","authors":["S. Kent"],"rawDate":"1993-02","status":"Historic","obsoletes":["RFC1114"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1423":{"rfcNumber":"RFC1423","href":"https://www.rfc-editor.org/rfc/rfc1423","title":"Privacy Enhancement for Internet Electronic Mail: Part III: Algorithms, Modes, and Identifiers","authors":["D. Balenson"],"rawDate":"1993-02","status":"Historic","obsoletes":["RFC1115"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1424":{"rfcNumber":"RFC1424","href":"https://www.rfc-editor.org/rfc/rfc1424","title":"Privacy Enhancement for Internet Electronic Mail: Part IV: Key Certification and Related Services","authors":["B. Kaliski"],"rawDate":"1993-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1425":{"rfcNumber":"RFC1425","href":"https://www.rfc-editor.org/rfc/rfc1425","title":"SMTP Service Extensions","authors":["J. Klensin","N. Freed, Ed.","M. Rose","E. Stefferud","D. Crocker"],"rawDate":"1993-02","status":"Proposed Standard","obsoletedBy":["RFC1651"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1426":{"rfcNumber":"RFC1426","href":"https://www.rfc-editor.org/rfc/rfc1426","title":"SMTP Service Extension for 8bit-MIMEtransport","authors":["J. Klensin","N. Freed, Ed.","M. Rose","E. Stefferud","D. Crocker"],"rawDate":"1993-02","status":"Proposed Standard","obsoletedBy":["RFC1652"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1427":{"rfcNumber":"RFC1427","href":"https://www.rfc-editor.org/rfc/rfc1427","title":"SMTP Service Extension for Message Size Declaration","authors":["J. Klensin","N. Freed, Ed.","K. Moore"],"rawDate":"1993-02","status":"Proposed Standard","obsoletedBy":["RFC1653"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1428":{"rfcNumber":"RFC1428","href":"https://www.rfc-editor.org/rfc/rfc1428","title":"Transition of Internet Mail from Just-Send-8 to 8bit-SMTP/MIME","authors":["G. Vaudreuil"],"rawDate":"1993-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1429":{"rfcNumber":"RFC1429","href":"https://www.rfc-editor.org/rfc/rfc1429","title":"Listserv Distribute Protocol","authors":["E. Thomas"],"rawDate":"1993-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc143":{"aliasOf":"rfc0143"},"rfc1430":{"rfcNumber":"RFC1430","href":"https://www.rfc-editor.org/rfc/rfc1430","title":"A Strategic Plan for Deploying an Internet X.500 Directory Service","authors":["S. Hardcastle-Kille","E. Huizer","V. Cerf","R. Hobby","S. Kent"],"rawDate":"1993-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1431":{"rfcNumber":"RFC1431","href":"https://www.rfc-editor.org/rfc/rfc1431","title":"DUA Metrics (OSI-DS 33 (v2))","authors":["P. Barker"],"rawDate":"1993-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1432":{"rfcNumber":"RFC1432","href":"https://www.rfc-editor.org/rfc/rfc1432","title":"Recent Internet Books","authors":["J. Quarterman"],"rawDate":"1993-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1433":{"rfcNumber":"RFC1433","href":"https://www.rfc-editor.org/rfc/rfc1433","title":"Directed ARP","authors":["J. Garrett","J. Hagan","J. Wong"],"rawDate":"1993-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1434":{"rfcNumber":"RFC1434","href":"https://www.rfc-editor.org/rfc/rfc1434","title":"Data Link Switching: Switch-to-Switch Protocol","authors":["R. Dixon","D. Kushi"],"rawDate":"1993-03","status":"Informational","obsoletedBy":["RFC1795"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1435":{"rfcNumber":"RFC1435","href":"https://www.rfc-editor.org/rfc/rfc1435","title":"IESG Advice from Experience with Path MTU Discovery","authors":["S. Knowles"],"rawDate":"1993-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1436":{"rfcNumber":"RFC1436","href":"https://www.rfc-editor.org/rfc/rfc1436","title":"The Internet Gopher Protocol (a distributed document search and retrieval protocol)","authors":["F. Anklesaria","M. McCahill","P. Lindner","D. Johnson","D. Torrey","B. Albert"],"rawDate":"1993-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1436","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1437":{"rfcNumber":"RFC1437","href":"https://www.rfc-editor.org/rfc/rfc1437","title":"The Extension of MIME Content-Types to a New Medium","authors":["N. Borenstein","M. Linimon"],"rawDate":"1993-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1438":{"rfcNumber":"RFC1438","href":"https://www.rfc-editor.org/rfc/rfc1438","title":"Internet Engineering Task Force Statements Of Boredom (SOBs)","authors":["A. Lyman Chapin","C. Huitema"],"rawDate":"1993-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1438","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1439":{"rfcNumber":"RFC1439","href":"https://www.rfc-editor.org/rfc/rfc1439","title":"The Uniqueness of Unique Identifiers","authors":["C. Finseth"],"rawDate":"1993-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc144":{"aliasOf":"rfc0144"},"rfc1440":{"rfcNumber":"RFC1440","href":"https://www.rfc-editor.org/rfc/rfc1440","title":"SIFT/UFT: Sender-Initiated/Unsolicited File Transfer","authors":["R. Troth"],"rawDate":"1993-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1441":{"rfcNumber":"RFC1441","href":"https://www.rfc-editor.org/rfc/rfc1441","title":"Introduction to version 2 of the Internet-standard Network Management Framework","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1442":{"rfcNumber":"RFC1442","href":"https://www.rfc-editor.org/rfc/rfc1442","title":"Structure of Management Information for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1902"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1443":{"rfcNumber":"RFC1443","href":"https://www.rfc-editor.org/rfc/rfc1443","title":"Textual Conventions for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1903"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1444":{"rfcNumber":"RFC1444","href":"https://www.rfc-editor.org/rfc/rfc1444","title":"Conformance Statements for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1904"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1445":{"rfcNumber":"RFC1445","href":"https://www.rfc-editor.org/rfc/rfc1445","title":"Administrative Model for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Galvin","K. McCloghrie"],"rawDate":"1993-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1446":{"rfcNumber":"RFC1446","href":"https://www.rfc-editor.org/rfc/rfc1446","title":"Security Protocols for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Galvin","K. McCloghrie"],"rawDate":"1993-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1447":{"rfcNumber":"RFC1447","href":"https://www.rfc-editor.org/rfc/rfc1447","title":"Party MIB for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["K. McCloghrie","J. Galvin"],"rawDate":"1993-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1448":{"rfcNumber":"RFC1448","href":"https://www.rfc-editor.org/rfc/rfc1448","title":"Protocol Operations for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1905"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1449":{"rfcNumber":"RFC1449","href":"https://www.rfc-editor.org/rfc/rfc1449","title":"Transport Mappings for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1906"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc145":{"aliasOf":"rfc0145"},"rfc1450":{"rfcNumber":"RFC1450","href":"https://www.rfc-editor.org/rfc/rfc1450","title":"Management Information Base for version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1907"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1451":{"rfcNumber":"RFC1451","href":"https://www.rfc-editor.org/rfc/rfc1451","title":"Manager-to-Manager Management Information Base","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1452":{"rfcNumber":"RFC1452","href":"https://www.rfc-editor.org/rfc/rfc1452","title":"Coexistence between version 1 and version 2 of the Internet-standard Network Management Framework","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1993-04","status":"Proposed Standard","obsoletedBy":["RFC1908"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1453":{"rfcNumber":"RFC1453","href":"https://www.rfc-editor.org/rfc/rfc1453","title":"A Comment on Packet Video Remote Conferencing and the Transport/Network Layers","authors":["W. Chimiak"],"rawDate":"1993-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1454":{"rfcNumber":"RFC1454","href":"https://www.rfc-editor.org/rfc/rfc1454","title":"Comparison of Proposals for Next Version of IP","authors":["T. Dixon"],"rawDate":"1993-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1455":{"rfcNumber":"RFC1455","href":"https://www.rfc-editor.org/rfc/rfc1455","title":"Physical Link Security Type of Service","authors":["D. Eastlake 3rd"],"rawDate":"1993-05","status":"Experimental","obsoletedBy":["RFC2474"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1456":{"rfcNumber":"RFC1456","href":"https://www.rfc-editor.org/rfc/rfc1456","title":"Conventions for Encoding the Vietnamese Language VISCII: VIetnamese Standard Code for Information Interchange VIQR: VIetnamese Quoted-Readable Specification","authors":["Vietnamese Standardization Working Group"],"rawDate":"1993-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1457":{"rfcNumber":"RFC1457","href":"https://www.rfc-editor.org/rfc/rfc1457","title":"Security Label Framework for the Internet","authors":["R. Housley"],"rawDate":"1993-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1458":{"rfcNumber":"RFC1458","href":"https://www.rfc-editor.org/rfc/rfc1458","title":"Requirements for Multicast Protocols","authors":["R. Braudes","S. Zabele"],"rawDate":"1993-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1459":{"rfcNumber":"RFC1459","href":"https://www.rfc-editor.org/rfc/rfc1459","title":"Internet Relay Chat Protocol","authors":["J. Oikarinen","D. Reed"],"rawDate":"1993-05","status":"Experimental","updatedBy":["RFC2810","RFC2811","RFC2812","RFC2813","RFC7194"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1459","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc146":{"aliasOf":"rfc0146"},"rfc1460":{"rfcNumber":"RFC1460","href":"https://www.rfc-editor.org/rfc/rfc1460","title":"Post Office Protocol - Version 3","authors":["M. Rose"],"rawDate":"1993-06","status":"Draft Standard","obsoletedBy":["RFC1725"],"obsoletes":["RFC1225"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1461":{"rfcNumber":"RFC1461","href":"https://www.rfc-editor.org/rfc/rfc1461","title":"SNMP MIB extension for Multiprotocol Interconnect over X.25","authors":["D. Throop"],"rawDate":"1993-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1462":{"rfcNumber":"RFC1462","href":"https://www.rfc-editor.org/rfc/rfc1462","title":"FYI on \"What is the Internet?\"","authors":["E. Krol","E. Hoffman"],"rawDate":"1993-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1463":{"rfcNumber":"RFC1463","href":"https://www.rfc-editor.org/rfc/rfc1463","title":"FYI on Introducing the Internet-- A Short Bibliography of Introductory Internetworking Readings","authors":["E. Hoffman","L. Jackson"],"rawDate":"1993-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1464":{"rfcNumber":"RFC1464","href":"https://www.rfc-editor.org/rfc/rfc1464","title":"Using the Domain Name System To Store Arbitrary String Attributes","authors":["R. Rosenbaum"],"rawDate":"1993-05","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1464","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1465":{"rfcNumber":"RFC1465","href":"https://www.rfc-editor.org/rfc/rfc1465","title":"Routing Coordination for X.400 MHS Services Within a Multi Protocol / Multi Network Environment Table Format V3 for Static Routing","authors":["D. Eppenberger"],"rawDate":"1993-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1466":{"rfcNumber":"RFC1466","href":"https://www.rfc-editor.org/rfc/rfc1466","title":"Guidelines for Management of IP Address Space","authors":["E. Gerich"],"rawDate":"1993-05","status":"Informational","obsoletedBy":["RFC2050"],"obsoletes":["RFC1366"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1467":{"rfcNumber":"RFC1467","href":"https://www.rfc-editor.org/rfc/rfc1467","title":"Status of CIDR Deployment in the Internet","authors":["C. Topolcic"],"rawDate":"1993-08","status":"Historic","obsoletes":["RFC1367"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1468":{"rfcNumber":"RFC1468","href":"https://www.rfc-editor.org/rfc/rfc1468","title":"Japanese Character Encoding for Internet Messages","authors":["J. Murai","M. Crispin","E. van der Poel"],"rawDate":"1993-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1469":{"rfcNumber":"RFC1469","href":"https://www.rfc-editor.org/rfc/rfc1469","title":"IP Multicast over Token-Ring Local Area Networks","authors":["T. Pusateri"],"rawDate":"1993-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc147":{"aliasOf":"rfc0147"},"rfc1470":{"rfcNumber":"RFC1470","href":"https://www.rfc-editor.org/rfc/rfc1470","title":"FYI on a Network Management Tool Catalog: Tools for Monitoring and Debugging TCP/IP Internets and Interconnected Devices","authors":["R. Enger","J. Reynolds"],"rawDate":"1993-06","status":"Informational","obsoletes":["RFC1147"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1471":{"rfcNumber":"RFC1471","href":"https://www.rfc-editor.org/rfc/rfc1471","title":"The Definitions of Managed Objects for the Link Control Protocol of the Point-to-Point Protocol","authors":["F. Kastenholz"],"rawDate":"1993-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1472":{"rfcNumber":"RFC1472","href":"https://www.rfc-editor.org/rfc/rfc1472","title":"The Definitions of Managed Objects for the Security Protocols of the Point-to-Point Protocol","authors":["F. Kastenholz"],"rawDate":"1993-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1473":{"rfcNumber":"RFC1473","href":"https://www.rfc-editor.org/rfc/rfc1473","title":"The Definitions of Managed Objects for the IP Network Control Protocol of the Point-to-Point Protocol","authors":["F. Kastenholz"],"rawDate":"1993-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1474":{"rfcNumber":"RFC1474","href":"https://www.rfc-editor.org/rfc/rfc1474","title":"The Definitions of Managed Objects for the Bridge Network Control Protocol of the Point-to-Point Protocol","authors":["F. Kastenholz"],"rawDate":"1993-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1475":{"rfcNumber":"RFC1475","href":"https://www.rfc-editor.org/rfc/rfc1475","title":"TP/IX: The Next Internet","authors":["R. Ullmann"],"rawDate":"1993-06","status":"Historic","obsoletedBy":["RFC6814"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1476":{"rfcNumber":"RFC1476","href":"https://www.rfc-editor.org/rfc/rfc1476","title":"RAP: Internet Route Access Protocol","authors":["R. Ullmann"],"rawDate":"1993-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1477":{"rfcNumber":"RFC1477","href":"https://www.rfc-editor.org/rfc/rfc1477","title":"IDPR as a Proposed Standard","authors":["M. Steenstrup"],"rawDate":"1993-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1478":{"rfcNumber":"RFC1478","href":"https://www.rfc-editor.org/rfc/rfc1478","title":"An Architecture for Inter-Domain Policy Routing","authors":["M. Steenstrup"],"rawDate":"1993-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1479":{"rfcNumber":"RFC1479","href":"https://www.rfc-editor.org/rfc/rfc1479","title":"Inter-Domain Policy Routing Protocol Specification: Version 1","authors":["M. Steenstrup"],"rawDate":"1993-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc148":{"aliasOf":"rfc0148"},"rfc1480":{"rfcNumber":"RFC1480","href":"https://www.rfc-editor.org/rfc/rfc1480","title":"The US Domain","authors":["A. Cooper","J. Postel"],"rawDate":"1993-06","status":"Informational","obsoletes":["RFC1386"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1481":{"rfcNumber":"RFC1481","href":"https://www.rfc-editor.org/rfc/rfc1481","title":"IAB Recommendation for an Intermediate Strategy to Address the Issue of Scaling","authors":["C. Huitema"],"rawDate":"1993-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1482":{"rfcNumber":"RFC1482","href":"https://www.rfc-editor.org/rfc/rfc1482","title":"Aggregation Support in the NSFNET Policy-Based Routing Database","authors":["M. Knopper","S. Richardson"],"rawDate":"1993-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1483":{"rfcNumber":"RFC1483","href":"https://www.rfc-editor.org/rfc/rfc1483","title":"Multiprotocol Encapsulation over ATM Adaptation Layer 5","authors":["J. Heinanen"],"rawDate":"1993-07","status":"Proposed Standard","obsoletedBy":["RFC2684"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1484":{"rfcNumber":"RFC1484","href":"https://www.rfc-editor.org/rfc/rfc1484","title":"Using the OSI Directory to achieve User Friendly Naming (OSI-DS 24 (v1.2))","authors":["S. Hardcastle-Kille"],"rawDate":"1993-07","status":"Historic","obsoletedBy":["RFC1781","RFC3494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1485":{"rfcNumber":"RFC1485","href":"https://www.rfc-editor.org/rfc/rfc1485","title":"A String Representation of Distinguished Names (OSI-DS 23 (v5))","authors":["S. Hardcastle-Kille"],"rawDate":"1993-07","status":"Historic","obsoletedBy":["RFC1779","RFC3494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1486":{"rfcNumber":"RFC1486","href":"https://www.rfc-editor.org/rfc/rfc1486","title":"An Experiment in Remote Printing","authors":["M. Rose","C. Malamud"],"rawDate":"1993-07","status":"Experimental","obsoletedBy":["RFC1528","RFC1529"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1487":{"rfcNumber":"RFC1487","href":"https://www.rfc-editor.org/rfc/rfc1487","title":"X.500 Lightweight Directory Access Protocol","authors":["W. Yeong","T. Howes","S. Kille"],"rawDate":"1993-07","status":"Historic","obsoletedBy":["RFC1777","RFC3494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1488":{"rfcNumber":"RFC1488","href":"https://www.rfc-editor.org/rfc/rfc1488","title":"The X.500 String Representation of Standard Attribute Syntaxes","authors":["T. Howes","S. Kille","W. Yeong","C. Robbins"],"rawDate":"1993-07","status":"Proposed Standard","obsoletedBy":["RFC1778"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1489":{"rfcNumber":"RFC1489","href":"https://www.rfc-editor.org/rfc/rfc1489","title":"Registration of a Cyrillic Character Set","authors":["A. Chernov"],"rawDate":"1993-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc149":{"aliasOf":"rfc0149"},"rfc1490":{"rfcNumber":"RFC1490","href":"https://www.rfc-editor.org/rfc/rfc1490","title":"Multiprotocol Interconnect over Frame Relay","authors":["T. Bradley","C. Brown","A. Malis"],"rawDate":"1993-07","status":"Draft Standard","obsoletedBy":["RFC2427"],"obsoletes":["RFC1294"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1491":{"rfcNumber":"RFC1491","href":"https://www.rfc-editor.org/rfc/rfc1491","title":"A Survey of Advanced Usages of X.500","authors":["C. Weider","R. Wright"],"rawDate":"1993-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1492":{"rfcNumber":"RFC1492","href":"https://www.rfc-editor.org/rfc/rfc1492","title":"An Access Control Protocol, Sometimes Called TACACS","authors":["C. Finseth"],"rawDate":"1993-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1493":{"rfcNumber":"RFC1493","href":"https://www.rfc-editor.org/rfc/rfc1493","title":"Definitions of Managed Objects for Bridges","authors":["E. Decker","P. Langille","A. Rijsinghani","K. McCloghrie"],"rawDate":"1993-07","status":"Draft Standard","obsoletedBy":["RFC4188"],"obsoletes":["RFC1286"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1494":{"rfcNumber":"RFC1494","href":"https://www.rfc-editor.org/rfc/rfc1494","title":"Equivalences between 1988 X.400 and RFC-822 Message Bodies","authors":["H. Alvestrand","S. Thompson"],"rawDate":"1993-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1495":{"rfcNumber":"RFC1495","href":"https://www.rfc-editor.org/rfc/rfc1495","title":"Mapping between X.400 and RFC-822 Message Bodies","authors":["H. Alvestrand","S. Kille","R. Miles","M. Rose","S. Thompson"],"rawDate":"1993-08","status":"Proposed Standard","obsoletedBy":["RFC2156"],"updates":["RFC1327"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1496":{"rfcNumber":"RFC1496","href":"https://www.rfc-editor.org/rfc/rfc1496","title":"Rules for downgrading messages from X.400/88 to X.400/84 when MIME content-types are present in the messages","authors":["H. Alvestrand","J. Romaguera","K. Jordan"],"rawDate":"1993-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1497":{"rfcNumber":"RFC1497","href":"https://www.rfc-editor.org/rfc/rfc1497","title":"BOOTP Vendor Information Extensions","authors":["J. Reynolds"],"rawDate":"1993-08","status":"Draft Standard","obsoletedBy":["RFC1533"],"updates":["RFC0951"],"obsoletes":["RFC1395","RFC1084","RFC1048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1498":{"rfcNumber":"RFC1498","href":"https://www.rfc-editor.org/rfc/rfc1498","title":"On the Naming and Binding of Network Destinations","authors":["J. Saltzer"],"rawDate":"1993-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1498","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1499":{"rfcNumber":"RFC1499","href":"https://www.rfc-editor.org/rfc/rfc1499","title":"Summary of 1400-1499","authors":["J. Elliott"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc15":{"aliasOf":"rfc0015"},"rfc150":{"aliasOf":"rfc0150"},"rfc1500":{"rfcNumber":"RFC1500","href":"https://www.rfc-editor.org/rfc/rfc1500","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1993-08","status":"Historic","obsoletedBy":["RFC1540"],"obsoletes":["RFC1410"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1501":{"rfcNumber":"RFC1501","href":"https://www.rfc-editor.org/rfc/rfc1501","title":"OS/2 User Group","authors":["E. Brunsen"],"rawDate":"1993-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1502":{"rfcNumber":"RFC1502","href":"https://www.rfc-editor.org/rfc/rfc1502","title":"X.400 Use of Extended Character Sets","authors":["H. Alvestrand"],"rawDate":"1993-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1503":{"rfcNumber":"RFC1503","href":"https://www.rfc-editor.org/rfc/rfc1503","title":"Algorithms for Automating Administration in SNMPv2 Managers","authors":["K. McCloghrie","M. Rose"],"rawDate":"1993-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1504":{"rfcNumber":"RFC1504","href":"https://www.rfc-editor.org/rfc/rfc1504","title":"Appletalk Update-Based Routing Protocol: Enhanced Appletalk Routing","authors":["A. Oppenheimer"],"rawDate":"1993-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1505":{"rfcNumber":"RFC1505","href":"https://www.rfc-editor.org/rfc/rfc1505","title":"Encoding Header Field for Internet Messages","authors":["A. Costanzo","D. Robinson","R. Ullmann"],"rawDate":"1993-08","status":"Experimental","obsoletes":["RFC1154"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1506":{"rfcNumber":"RFC1506","href":"https://www.rfc-editor.org/rfc/rfc1506","title":"A Tutorial on Gatewaying between X.400 and Internet Mail","authors":["J. Houttuin"],"rawDate":"1993-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1507":{"rfcNumber":"RFC1507","href":"https://www.rfc-editor.org/rfc/rfc1507","title":"DASS - Distributed Authentication Security Service","authors":["C. Kaufman"],"rawDate":"1993-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1508":{"rfcNumber":"RFC1508","href":"https://www.rfc-editor.org/rfc/rfc1508","title":"Generic Security Service Application Program Interface","authors":["J. Linn"],"rawDate":"1993-09","status":"Proposed Standard","obsoletedBy":["RFC2078"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1509":{"rfcNumber":"RFC1509","href":"https://www.rfc-editor.org/rfc/rfc1509","title":"Generic Security Service API : C-bindings","authors":["J. Wray"],"rawDate":"1993-09","status":"Proposed Standard","obsoletedBy":["RFC2744"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc151":{"aliasOf":"rfc0151"},"rfc1510":{"rfcNumber":"RFC1510","href":"https://www.rfc-editor.org/rfc/rfc1510","title":"The Kerberos Network Authentication Service (V5)","authors":["J. Kohl","C. Neuman"],"rawDate":"1993-09","status":"Historic","obsoletedBy":["RFC4120","RFC6649"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1510","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1511":{"rfcNumber":"RFC1511","href":"https://www.rfc-editor.org/rfc/rfc1511","title":"Common Authentication Technology Overview","authors":["J. Linn"],"rawDate":"1993-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1512":{"rfcNumber":"RFC1512","href":"https://www.rfc-editor.org/rfc/rfc1512","title":"FDDI Management Information Base","authors":["J. Case","A. Rijsinghani"],"rawDate":"1993-09","status":"Historic","updates":["RFC1285"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1513":{"rfcNumber":"RFC1513","href":"https://www.rfc-editor.org/rfc/rfc1513","title":"Token Ring Extensions to the Remote Network Monitoring MIB","authors":["S. Waldbusser"],"rawDate":"1993-09","status":"Historic","updates":["RFC1271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1514":{"rfcNumber":"RFC1514","href":"https://www.rfc-editor.org/rfc/rfc1514","title":"Host Resources MIB","authors":["P. Grillo","S. Waldbusser"],"rawDate":"1993-09","status":"Proposed Standard","obsoletedBy":["RFC2790"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1515":{"rfcNumber":"RFC1515","href":"https://www.rfc-editor.org/rfc/rfc1515","title":"Definitions of Managed Objects for IEEE 802.3 Medium Attachment Units (MAUs)","authors":["D. McMaster","K. McCloghrie","S. Roberts"],"rawDate":"1993-09","status":"Proposed Standard","obsoletedBy":["RFC3636"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1516":{"rfcNumber":"RFC1516","href":"https://www.rfc-editor.org/rfc/rfc1516","title":"Definitions of Managed Objects for IEEE 802.3 Repeater Devices","authors":["D. McMaster","K. McCloghrie"],"rawDate":"1993-09","status":"Draft Standard","obsoletedBy":["RFC2108"],"obsoletes":["RFC1368"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1517":{"rfcNumber":"RFC1517","href":"https://www.rfc-editor.org/rfc/rfc1517","title":"Applicability Statement for the Implementation of Classless Inter-Domain Routing (CIDR)","authors":["Internet Engineering Steering Group","R. Hinden"],"rawDate":"1993-09","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1517","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1518":{"rfcNumber":"RFC1518","href":"https://www.rfc-editor.org/rfc/rfc1518","title":"An Architecture for IP Address Allocation with CIDR","authors":["Y. Rekhter","T. Li"],"rawDate":"1993-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1519":{"rfcNumber":"RFC1519","href":"https://www.rfc-editor.org/rfc/rfc1519","title":"Classless Inter-Domain Routing (CIDR): an Address Assignment and Aggregation Strategy","authors":["V. Fuller","T. Li","J. Yu","K. Varadhan"],"rawDate":"1993-09","status":"Proposed Standard","obsoletedBy":["RFC4632"],"obsoletes":["RFC1338"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc152":{"aliasOf":"rfc0152"},"rfc1520":{"rfcNumber":"RFC1520","href":"https://www.rfc-editor.org/rfc/rfc1520","title":"Exchanging Routing Information Across Provider Boundaries in the CIDR Environment","authors":["Y. Rekhter","C. Topolcic"],"rawDate":"1993-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1521":{"rfcNumber":"RFC1521","href":"https://www.rfc-editor.org/rfc/rfc1521","title":"MIME (Multipurpose Internet Mail Extensions) Part One: Mechanisms for Specifying and Describing the Format of Internet Message Bodies","authors":["N. Borenstein","N. Freed"],"rawDate":"1993-09","status":"Draft Standard","updatedBy":["RFC1590"],"obsoletedBy":["RFC2045","RFC2046","RFC2047","RFC2048","RFC2049"],"obsoletes":["RFC1341"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1522":{"rfcNumber":"RFC1522","href":"https://www.rfc-editor.org/rfc/rfc1522","title":"MIME (Multipurpose Internet Mail Extensions) Part Two: Message Header Extensions for Non-ASCII Text","authors":["K. Moore"],"rawDate":"1993-09","status":"Draft Standard","obsoletedBy":["RFC2045","RFC2046","RFC2047","RFC2048","RFC2049"],"obsoletes":["RFC1342"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1522","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1523":{"rfcNumber":"RFC1523","href":"https://www.rfc-editor.org/rfc/rfc1523","title":"The text/enriched MIME Content-type","authors":["N. Borenstein"],"rawDate":"1993-09","status":"Informational","obsoletedBy":["RFC1563","RFC1896"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1524":{"rfcNumber":"RFC1524","href":"https://www.rfc-editor.org/rfc/rfc1524","title":"A User Agent Configuration Mechanism For Multimedia Mail Format Information","authors":["N. Borenstein"],"rawDate":"1993-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1524","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1525":{"rfcNumber":"RFC1525","href":"https://www.rfc-editor.org/rfc/rfc1525","title":"Definitions of Managed Objects for Source Routing Bridges","authors":["E. Decker","K. McCloghrie","P. Langille","A. Rijsinghani"],"rawDate":"1993-09","status":"Historic","obsoletes":["RFC1286"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1526":{"rfcNumber":"RFC1526","href":"https://www.rfc-editor.org/rfc/rfc1526","title":"Assignment of System Identifiers for TUBA/CLNP Hosts","authors":["D. Piscitello"],"rawDate":"1993-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1527":{"rfcNumber":"RFC1527","href":"https://www.rfc-editor.org/rfc/rfc1527","title":"What Should We Plan Given the Dilemma of the Network?","authors":["G. Cook"],"rawDate":"1993-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1528":{"rfcNumber":"RFC1528","href":"https://www.rfc-editor.org/rfc/rfc1528","title":"Principles of Operation for the TPC.INT Subdomain: Remote Printing -- Technical Procedures","authors":["C. Malamud","M. Rose"],"rawDate":"1993-10","status":"Historic","obsoletedBy":["RFC9121"],"obsoletes":["RFC1486"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1529":{"rfcNumber":"RFC1529","href":"https://www.rfc-editor.org/rfc/rfc1529","title":"Principles of Operation for the TPC.INT Subdomain: Remote Printing -- Administrative Policies","authors":["C. Malamud","M. Rose"],"rawDate":"1993-10","status":"Informational","obsoletes":["RFC1486"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc153":{"aliasOf":"rfc0153"},"rfc1530":{"rfcNumber":"RFC1530","href":"https://www.rfc-editor.org/rfc/rfc1530","title":"Principles of Operation for the TPC.INT Subdomain: General Principles and Policy","authors":["C. Malamud","M. Rose"],"rawDate":"1993-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1531":{"rfcNumber":"RFC1531","href":"https://www.rfc-editor.org/rfc/rfc1531","title":"Dynamic Host Configuration Protocol","authors":["R. Droms"],"rawDate":"1993-10","status":"Proposed Standard","obsoletedBy":["RFC1541"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1531","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1532":{"rfcNumber":"RFC1532","href":"https://www.rfc-editor.org/rfc/rfc1532","title":"Clarifications and Extensions for the Bootstrap Protocol","authors":["W. Wimer"],"rawDate":"1993-10","status":"Proposed Standard","obsoletedBy":["RFC1542"],"updates":["RFC0951"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1533":{"rfcNumber":"RFC1533","href":"https://www.rfc-editor.org/rfc/rfc1533","title":"DHCP Options and BOOTP Vendor Extensions","authors":["S. Alexander","R. Droms"],"rawDate":"1993-10","status":"Proposed Standard","obsoletedBy":["RFC2132"],"obsoletes":["RFC1497","RFC1395","RFC1084","RFC1048"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1533","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1534":{"rfcNumber":"RFC1534","href":"https://www.rfc-editor.org/rfc/rfc1534","title":"Interoperation Between DHCP and BOOTP","authors":["R. Droms"],"rawDate":"1993-10","status":"Draft Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1534","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1535":{"rfcNumber":"RFC1535","href":"https://www.rfc-editor.org/rfc/rfc1535","title":"A Security Problem and Proposed Correction With Widely Deployed DNS Software","authors":["E. Gavron"],"rawDate":"1993-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1535","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1536":{"rfcNumber":"RFC1536","href":"https://www.rfc-editor.org/rfc/rfc1536","title":"Common DNS Implementation Errors and Suggested Fixes","authors":["A. Kumar","J. Postel","C. Neuman","P. Danzig","S. Miller"],"rawDate":"1993-10","status":"Informational","updatedBy":["RFC9210"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1537":{"rfcNumber":"RFC1537","href":"https://www.rfc-editor.org/rfc/rfc1537","title":"Common DNS Data File Configuration Errors","authors":["P. Beertema"],"rawDate":"1993-10","status":"Informational","obsoletedBy":["RFC1912"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1538":{"rfcNumber":"RFC1538","href":"https://www.rfc-editor.org/rfc/rfc1538","title":"Advanced SNA/IP : A Simple SNA Transport Protocol","authors":["W. Behl","B. Sterling","W. Teskey"],"rawDate":"1993-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1539":{"rfcNumber":"RFC1539","href":"https://www.rfc-editor.org/rfc/rfc1539","title":"The Tao of IETF - A Guide for New Attendees of the Internet Engineering Task Force","authors":["G. Malkin"],"rawDate":"1993-10","status":"Informational","obsoletedBy":["RFC1718"],"obsoletes":["RFC1391"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc154":{"aliasOf":"rfc0154"},"rfc1540":{"rfcNumber":"RFC1540","href":"https://www.rfc-editor.org/rfc/rfc1540","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1993-10","status":"Historic","obsoletedBy":["RFC1600"],"obsoletes":["RFC1500"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1541":{"rfcNumber":"RFC1541","href":"https://www.rfc-editor.org/rfc/rfc1541","title":"Dynamic Host Configuration Protocol","authors":["R. Droms"],"rawDate":"1993-10","status":"Proposed Standard","obsoletedBy":["RFC2131"],"obsoletes":["RFC1531"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1542":{"rfcNumber":"RFC1542","href":"https://www.rfc-editor.org/rfc/rfc1542","title":"Clarifications and Extensions for the Bootstrap Protocol","authors":["W. Wimer"],"rawDate":"1993-10","status":"Draft Standard","updates":["RFC0951"],"obsoletes":["RFC1532"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1542","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1543":{"rfcNumber":"RFC1543","href":"https://www.rfc-editor.org/rfc/rfc1543","title":"Instructions to RFC Authors","authors":["J. Postel"],"rawDate":"1993-10","status":"Informational","obsoletedBy":["RFC2223"],"obsoletes":["RFC1111","RFC0825"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1544":{"rfcNumber":"RFC1544","href":"https://www.rfc-editor.org/rfc/rfc1544","title":"The Content-MD5 Header Field","authors":["M. Rose"],"rawDate":"1993-11","status":"Proposed Standard","obsoletedBy":["RFC1864"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1545":{"rfcNumber":"RFC1545","href":"https://www.rfc-editor.org/rfc/rfc1545","title":"FTP Operation Over Big Address Records (FOOBAR)","authors":["D. Piscitello"],"rawDate":"1993-11","status":"Experimental","obsoletedBy":["RFC1639"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1546":{"rfcNumber":"RFC1546","href":"https://www.rfc-editor.org/rfc/rfc1546","title":"Host Anycasting Service","authors":["C. Partridge","T. Mendez","W. Milliken"],"rawDate":"1993-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1547":{"rfcNumber":"RFC1547","href":"https://www.rfc-editor.org/rfc/rfc1547","title":"Requirements for an Internet Standard Point-to-Point Protocol","authors":["D. Perkins"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1548":{"rfcNumber":"RFC1548","href":"https://www.rfc-editor.org/rfc/rfc1548","title":"The Point-to-Point Protocol (PPP)","authors":["W. Simpson"],"rawDate":"1993-12","status":"Draft Standard","updatedBy":["RFC1570"],"obsoletedBy":["RFC1661"],"obsoletes":["RFC1331"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1549":{"rfcNumber":"RFC1549","href":"https://www.rfc-editor.org/rfc/rfc1549","title":"PPP in HDLC Framing","authors":["W. Simpson, Ed."],"rawDate":"1993-12","status":"Draft Standard","obsoletedBy":["RFC1662"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc155":{"aliasOf":"rfc0155"},"rfc1550":{"rfcNumber":"RFC1550","href":"https://www.rfc-editor.org/rfc/rfc1550","title":"IP: Next Generation (IPng) White Paper Solicitation","authors":["S. Bradner","A. Mankin"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1551":{"rfcNumber":"RFC1551","href":"https://www.rfc-editor.org/rfc/rfc1551","title":"Novell IPX Over Various WAN Media (IPXWAN)","authors":["M. Allen"],"rawDate":"1993-12","status":"Informational","obsoletedBy":["RFC1634"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1552":{"rfcNumber":"RFC1552","href":"https://www.rfc-editor.org/rfc/rfc1552","title":"The PPP Internetworking Packet Exchange Control Protocol (IPXCP)","authors":["W. Simpson"],"rawDate":"1993-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1553":{"rfcNumber":"RFC1553","href":"https://www.rfc-editor.org/rfc/rfc1553","title":"Compressing IPX Headers Over WAN Media (CIPX)","authors":["S. Mathur","M. Lewis"],"rawDate":"1993-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1554":{"rfcNumber":"RFC1554","href":"https://www.rfc-editor.org/rfc/rfc1554","title":"ISO-2022-JP-2: Multilingual Extension of ISO-2022-JP","authors":["M. Ohta","K. Handa"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1555":{"rfcNumber":"RFC1555","href":"https://www.rfc-editor.org/rfc/rfc1555","title":"Hebrew Character Encoding for Internet Messages","authors":["H. Nussbacher","Y. Bourvine"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1556":{"rfcNumber":"RFC1556","href":"https://www.rfc-editor.org/rfc/rfc1556","title":"Handling of Bi-directional Texts in MIME","authors":["H. Nussbacher"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1557":{"rfcNumber":"RFC1557","href":"https://www.rfc-editor.org/rfc/rfc1557","title":"Korean Character Encoding for Internet Messages","authors":["U. Choi","K. Chon","H. Park"],"rawDate":"1993-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1557","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1558":{"rfcNumber":"RFC1558","href":"https://www.rfc-editor.org/rfc/rfc1558","title":"A String Representation of LDAP Search Filters","authors":["T. Howes"],"rawDate":"1993-12","status":"Informational","obsoletedBy":["RFC1960"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1559":{"rfcNumber":"RFC1559","href":"https://www.rfc-editor.org/rfc/rfc1559","title":"DECnet Phase IV MIB Extensions","authors":["J. Saperia"],"rawDate":"1993-12","status":"Draft Standard","obsoletes":["RFC1289"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc156":{"aliasOf":"rfc0156"},"rfc1560":{"rfcNumber":"RFC1560","href":"https://www.rfc-editor.org/rfc/rfc1560","title":"The MultiProtocol Internet","authors":["B. Leiner","Y. Rekhter"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1561":{"rfcNumber":"RFC1561","href":"https://www.rfc-editor.org/rfc/rfc1561","title":"Use of ISO CLNP in TUBA Environments","authors":["D. Piscitello"],"rawDate":"1993-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1562":{"rfcNumber":"RFC1562","href":"https://www.rfc-editor.org/rfc/rfc1562","title":"Naming Guidelines for the AARNet X.500 Directory Service","authors":["G. Michaelson","M. Prior"],"rawDate":"1993-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1563":{"rfcNumber":"RFC1563","href":"https://www.rfc-editor.org/rfc/rfc1563","title":"The text/enriched MIME Content-type","authors":["N. Borenstein"],"rawDate":"1994-01","status":"Informational","obsoletedBy":["RFC1896"],"obsoletes":["RFC1523"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1564":{"rfcNumber":"RFC1564","href":"https://www.rfc-editor.org/rfc/rfc1564","title":"DSA Metrics (OSI-DS 34 (v3))","authors":["P. Barker","R. Hedberg"],"rawDate":"1994-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1565":{"rfcNumber":"RFC1565","href":"https://www.rfc-editor.org/rfc/rfc1565","title":"Network Services Monitoring MIB","authors":["S. Kille","N. Freed"],"rawDate":"1994-01","status":"Proposed Standard","obsoletedBy":["RFC2248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1566":{"rfcNumber":"RFC1566","href":"https://www.rfc-editor.org/rfc/rfc1566","title":"Mail Monitoring MIB","authors":["S. Kille","N. Freed"],"rawDate":"1994-01","status":"Proposed Standard","obsoletedBy":["RFC2249","RFC2789"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1567":{"rfcNumber":"RFC1567","href":"https://www.rfc-editor.org/rfc/rfc1567","title":"X.500 Directory Monitoring MIB","authors":["G. Mansfield","S. Kille"],"rawDate":"1994-01","status":"Proposed Standard","obsoletedBy":["RFC2605"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1568":{"rfcNumber":"RFC1568","href":"https://www.rfc-editor.org/rfc/rfc1568","title":"Simple Network Paging Protocol - Version 1(b)","authors":["A. Gwinn"],"rawDate":"1994-01","status":"Informational","obsoletedBy":["RFC1645"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1569":{"rfcNumber":"RFC1569","href":"https://www.rfc-editor.org/rfc/rfc1569","title":"Principles of Operation for the TPC.INT Subdomain: Radio Paging -- Technical Procedures","authors":["M. Rose"],"rawDate":"1994-01","status":"Informational","obsoletedBy":["RFC1703"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc157":{"aliasOf":"rfc0157"},"rfc1570":{"rfcNumber":"RFC1570","href":"https://www.rfc-editor.org/rfc/rfc1570","title":"PPP LCP Extensions","authors":["W. Simpson, Ed."],"rawDate":"1994-01","status":"Proposed Standard","updatedBy":["RFC2484"],"updates":["RFC1548"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1571":{"rfcNumber":"RFC1571","href":"https://www.rfc-editor.org/rfc/rfc1571","title":"Telnet Environment Option Interoperability Issues","authors":["D. Borman"],"rawDate":"1994-01","status":"Informational","updates":["RFC1408"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1572":{"rfcNumber":"RFC1572","href":"https://www.rfc-editor.org/rfc/rfc1572","title":"Telnet Environment Option","authors":["S. Alexander, Ed."],"rawDate":"1994-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1573":{"rfcNumber":"RFC1573","href":"https://www.rfc-editor.org/rfc/rfc1573","title":"Evolution of the Interfaces Group of MIB-II","authors":["K. McCloghrie","F. Kastenholz"],"rawDate":"1994-01","status":"Proposed Standard","obsoletedBy":["RFC2233"],"obsoletes":["RFC1229"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1574":{"rfcNumber":"RFC1574","href":"https://www.rfc-editor.org/rfc/rfc1574","title":"Essential Tools for the OSI Internet","authors":["S. Hares","C. Wittbrodt"],"rawDate":"1994-02","status":"Informational","obsoletes":["RFC1139"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1575":{"rfcNumber":"RFC1575","href":"https://www.rfc-editor.org/rfc/rfc1575","title":"An Echo Function for CLNP (ISO 8473)","authors":["S. Hares","C. Wittbrodt"],"rawDate":"1994-02","status":"Draft Standard","obsoletes":["RFC1139"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1576":{"rfcNumber":"RFC1576","href":"https://www.rfc-editor.org/rfc/rfc1576","title":"TN3270 Current Practices","authors":["J. Penner"],"rawDate":"1994-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1577":{"rfcNumber":"RFC1577","href":"https://www.rfc-editor.org/rfc/rfc1577","title":"Classical IP and ARP over ATM","authors":["M. Laubach"],"rawDate":"1994-01","status":"Proposed Standard","obsoletedBy":["RFC2225"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1578":{"rfcNumber":"RFC1578","href":"https://www.rfc-editor.org/rfc/rfc1578","title":"FYI on Questions and Answers - Answers to Commonly Asked \"Primary and Secondary School Internet User\" Questions","authors":["J. Sellers"],"rawDate":"1994-02","status":"Informational","obsoletedBy":["RFC1941"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1579":{"rfcNumber":"RFC1579","href":"https://www.rfc-editor.org/rfc/rfc1579","title":"Firewall-Friendly FTP","authors":["S. Bellovin"],"rawDate":"1994-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc158":{"aliasOf":"rfc0158"},"rfc1580":{"rfcNumber":"RFC1580","href":"https://www.rfc-editor.org/rfc/rfc1580","title":"Guide to Network Resource Tools","authors":["EARN Staff"],"rawDate":"1994-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1581":{"rfcNumber":"RFC1581","href":"https://www.rfc-editor.org/rfc/rfc1581","title":"Protocol Analysis for Extensions to RIP to Support Demand Circuits","authors":["G. Meyer"],"rawDate":"1994-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1582":{"rfcNumber":"RFC1582","href":"https://www.rfc-editor.org/rfc/rfc1582","title":"Extensions to RIP to Support Demand Circuits","authors":["G. Meyer"],"rawDate":"1994-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1583":{"rfcNumber":"RFC1583","href":"https://www.rfc-editor.org/rfc/rfc1583","title":"OSPF Version 2","authors":["J. Moy"],"rawDate":"1994-03","status":"Draft Standard","obsoletedBy":["RFC2178"],"obsoletes":["RFC1247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1584":{"rfcNumber":"RFC1584","href":"https://www.rfc-editor.org/rfc/rfc1584","title":"Multicast Extensions to OSPF","authors":["J. Moy"],"rawDate":"1994-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1585":{"rfcNumber":"RFC1585","href":"https://www.rfc-editor.org/rfc/rfc1585","title":"MOSPF: Analysis and Experience","authors":["J. Moy"],"rawDate":"1994-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1586":{"rfcNumber":"RFC1586","href":"https://www.rfc-editor.org/rfc/rfc1586","title":"Guidelines for Running OSPF Over Frame Relay Networks","authors":["O. deSouza","M. Rodrigues"],"rawDate":"1994-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1587":{"rfcNumber":"RFC1587","href":"https://www.rfc-editor.org/rfc/rfc1587","title":"The OSPF NSSA Option","authors":["R. Coltun","V. Fuller"],"rawDate":"1994-03","status":"Proposed Standard","obsoletedBy":["RFC3101"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1588":{"rfcNumber":"RFC1588","href":"https://www.rfc-editor.org/rfc/rfc1588","title":"White Pages Meeting Report","authors":["J. Postel","C. Anderson"],"rawDate":"1994-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1589":{"rfcNumber":"RFC1589","href":"https://www.rfc-editor.org/rfc/rfc1589","title":"A Kernel Model for Precision Timekeeping","authors":["D. Mills"],"rawDate":"1994-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1590":{"rfcNumber":"RFC1590","href":"https://www.rfc-editor.org/rfc/rfc1590","title":"Media Type Registration Procedure","authors":["J. Postel"],"rawDate":"1994-03","status":"Informational","obsoletedBy":["RFC2045","RFC2046","RFC2047","RFC2048","RFC2049"],"updates":["RFC1521"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1591":{"rfcNumber":"RFC1591","href":"https://www.rfc-editor.org/rfc/rfc1591","title":"Domain Name System Structure and Delegation","authors":["J. Postel"],"rawDate":"1994-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1592":{"rfcNumber":"RFC1592","href":"https://www.rfc-editor.org/rfc/rfc1592","title":"Simple Network Management Protocol Distributed Protocol Interface Version 2.0","authors":["B. Wijnen","G. Carpenter","K. Curran","A. Sehgal","G. Waters"],"rawDate":"1994-03","status":"Experimental","obsoletes":["RFC1228"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1593":{"rfcNumber":"RFC1593","href":"https://www.rfc-editor.org/rfc/rfc1593","title":"SNA APPN Node MIB","authors":["W. McKenzie","J. Cheng"],"rawDate":"1994-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1594":{"rfcNumber":"RFC1594","href":"https://www.rfc-editor.org/rfc/rfc1594","title":"FYI on Questions and Answers - Answers to Commonly asked \"New Internet User\" Questions","authors":["A. Marine","J. Reynolds","G. Malkin"],"rawDate":"1994-03","status":"Informational","obsoletedBy":["RFC2664"],"obsoletes":["RFC1325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1595":{"rfcNumber":"RFC1595","href":"https://www.rfc-editor.org/rfc/rfc1595","title":"Definitions of Managed Objects for the SONET/SDH Interface Type","authors":["T. Brown","K. Tesink"],"rawDate":"1994-03","status":"Proposed Standard","obsoletedBy":["RFC2558"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1596":{"rfcNumber":"RFC1596","href":"https://www.rfc-editor.org/rfc/rfc1596","title":"Definitions of Managed Objects for Frame Relay Service","authors":["T. Brown, Ed."],"rawDate":"1994-03","status":"Proposed Standard","obsoletedBy":["RFC1604"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1597":{"rfcNumber":"RFC1597","href":"https://www.rfc-editor.org/rfc/rfc1597","title":"Address Allocation for Private Internets","authors":["Y. Rekhter","B. Moskowitz","D. Karrenberg","G. de Groot"],"rawDate":"1994-03","status":"Informational","obsoletedBy":["RFC1918"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1598":{"rfcNumber":"RFC1598","href":"https://www.rfc-editor.org/rfc/rfc1598","title":"PPP in X.25","authors":["W. Simpson"],"rawDate":"1994-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1599":{"rfcNumber":"RFC1599","href":"https://www.rfc-editor.org/rfc/rfc1599","title":"Summary of 1500-1599","authors":["M. Kennedy"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc16":{"aliasOf":"rfc0016"},"rfc160":{"aliasOf":"rfc0160"},"rfc1600":{"rfcNumber":"RFC1600","href":"https://www.rfc-editor.org/rfc/rfc1600","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1994-03","status":"Historic","obsoletedBy":["RFC1610"],"obsoletes":["RFC1540"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1601":{"rfcNumber":"RFC1601","href":"https://www.rfc-editor.org/rfc/rfc1601","title":"Charter of the Internet Architecture Board (IAB)","authors":["C. Huitema"],"rawDate":"1994-03","status":"Informational","obsoletedBy":["RFC2850"],"obsoletes":["RFC1358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1602":{"rfcNumber":"RFC1602","href":"https://www.rfc-editor.org/rfc/rfc1602","title":"The Internet Standards Process -- Revision 2","authors":["Internet Architecture Board","Internet Engineering Steering Group"],"rawDate":"1994-03","status":"Informational","updatedBy":["RFC1871"],"obsoletedBy":["RFC2026"],"obsoletes":["RFC1310"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1603":{"rfcNumber":"RFC1603","href":"https://www.rfc-editor.org/rfc/rfc1603","title":"IETF Working Group Guidelines and Procedures","authors":["E. Huizer","D. Crocker"],"rawDate":"1994-03","status":"Informational","updatedBy":["RFC1871"],"obsoletedBy":["RFC2418"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1604":{"rfcNumber":"RFC1604","href":"https://www.rfc-editor.org/rfc/rfc1604","title":"Definitions of Managed Objects for Frame Relay Service","authors":["T. Brown, Ed."],"rawDate":"1994-03","status":"Proposed Standard","obsoletedBy":["RFC2954"],"obsoletes":["RFC1596"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1605":{"rfcNumber":"RFC1605","href":"https://www.rfc-editor.org/rfc/rfc1605","title":"SONET to Sonnet Translation","authors":["W. Shakespeare"],"rawDate":"1994-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1606":{"rfcNumber":"RFC1606","href":"https://www.rfc-editor.org/rfc/rfc1606","title":"A Historical Perspective On The Usage Of IP Version 9","authors":["J. Onions"],"rawDate":"1994-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1606","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1607":{"rfcNumber":"RFC1607","href":"https://www.rfc-editor.org/rfc/rfc1607","title":"A VIEW FROM THE 21ST CENTURY","authors":["V. Cerf"],"rawDate":"1994-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1608":{"rfcNumber":"RFC1608","href":"https://www.rfc-editor.org/rfc/rfc1608","title":"Representing IP Information in the X.500 Directory","authors":["T. Johannsen","G. Mansfield","M. Kosters","S. Sataluri"],"rawDate":"1994-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1609":{"rfcNumber":"RFC1609","href":"https://www.rfc-editor.org/rfc/rfc1609","title":"Charting Networks in the X.500 Directory","authors":["G. Mansfield","T. Johannsen","M. Knopper"],"rawDate":"1994-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1609","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc161":{"aliasOf":"rfc0161"},"rfc1610":{"rfcNumber":"RFC1610","href":"https://www.rfc-editor.org/rfc/rfc1610","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1994-07","status":"Historic","obsoletedBy":["RFC1720"],"obsoletes":["RFC1600"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1611":{"rfcNumber":"RFC1611","href":"https://www.rfc-editor.org/rfc/rfc1611","title":"DNS Server MIB Extensions","authors":["R. Austein","J. Saperia"],"rawDate":"1994-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1612":{"rfcNumber":"RFC1612","href":"https://www.rfc-editor.org/rfc/rfc1612","title":"DNS Resolver MIB Extensions","authors":["R. Austein","J. Saperia"],"rawDate":"1994-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1613":{"rfcNumber":"RFC1613","href":"https://www.rfc-editor.org/rfc/rfc1613","title":"cisco Systems X.25 over TCP (XOT)","authors":["J. Forster","G. Satz","G. Glick","R. Day"],"rawDate":"1994-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1614":{"rfcNumber":"RFC1614","href":"https://www.rfc-editor.org/rfc/rfc1614","title":"Network Access to Multimedia Information","authors":["C. Adie"],"rawDate":"1994-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1615":{"rfcNumber":"RFC1615","href":"https://www.rfc-editor.org/rfc/rfc1615","title":"Migrating from X.400(84) to X.400(88)","authors":["J. Houttuin","J. Craigie"],"rawDate":"1994-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1616":{"rfcNumber":"RFC1616","href":"https://www.rfc-editor.org/rfc/rfc1616","title":"X.400(1988) for the Academic and Research Community in Europe","authors":["RARE WG-MSG Task Force 88","E. Huizer, Ed.","J. Romaguera, Ed."],"rawDate":"1994-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1617":{"rfcNumber":"RFC1617","href":"https://www.rfc-editor.org/rfc/rfc1617","title":"Naming and Structuring Guidelines for X.500 Directory Pilots","authors":["P. Barker","S. Kille","T. Lenggenhager"],"rawDate":"1994-05","status":"Informational","obsoletes":["RFC1384"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1618":{"rfcNumber":"RFC1618","href":"https://www.rfc-editor.org/rfc/rfc1618","title":"PPP over ISDN","authors":["W. Simpson"],"rawDate":"1994-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1619":{"rfcNumber":"RFC1619","href":"https://www.rfc-editor.org/rfc/rfc1619","title":"PPP over SONET/SDH","authors":["W. Simpson"],"rawDate":"1994-05","status":"Proposed Standard","obsoletedBy":["RFC2615"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc162":{"aliasOf":"rfc0162"},"rfc1620":{"rfcNumber":"RFC1620","href":"https://www.rfc-editor.org/rfc/rfc1620","title":"Internet Architecture Extensions for Shared Media","authors":["B. Braden","J. Postel","Y. Rekhter"],"rawDate":"1994-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1621":{"rfcNumber":"RFC1621","href":"https://www.rfc-editor.org/rfc/rfc1621","title":"Pip Near-term Architecture","authors":["P. Francis"],"rawDate":"1994-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1622":{"rfcNumber":"RFC1622","href":"https://www.rfc-editor.org/rfc/rfc1622","title":"Pip Header Processing","authors":["P. Francis"],"rawDate":"1994-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1623":{"rfcNumber":"RFC1623","href":"https://www.rfc-editor.org/rfc/rfc1623","title":"Definitions of Managed Objects for the Ethernet-like Interface Types","authors":["F. Kastenholz"],"rawDate":"1994-05","status":"Historic","obsoletedBy":["RFC1643"],"obsoletes":["RFC1398"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1624":{"rfcNumber":"RFC1624","href":"https://www.rfc-editor.org/rfc/rfc1624","title":"Computation of the Internet Checksum via Incremental Update","authors":["A. Rijsinghani, Ed."],"rawDate":"1994-05","status":"Informational","updates":["RFC1141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1624","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1625":{"rfcNumber":"RFC1625","href":"https://www.rfc-editor.org/rfc/rfc1625","title":"WAIS over Z39.50-1988","authors":["M. St. Pierre","J. Fullton","K. Gamiel","J. Goldman","B. Kahle","J. Kunze","H. Morris","F. Schiettecatte"],"rawDate":"1994-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1626":{"rfcNumber":"RFC1626","href":"https://www.rfc-editor.org/rfc/rfc1626","title":"Default IP MTU for use over ATM AAL5","authors":["R. Atkinson"],"rawDate":"1994-05","status":"Proposed Standard","obsoletedBy":["RFC2225"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1627":{"rfcNumber":"RFC1627","href":"https://www.rfc-editor.org/rfc/rfc1627","title":"Network 10 Considered Harmful (Some Practices Shouldn't be Codified)","authors":["E. Lear","E. Fair","D. Crocker","T. Kessler"],"rawDate":"1994-07","status":"Informational","obsoletedBy":["RFC1918"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1628":{"rfcNumber":"RFC1628","href":"https://www.rfc-editor.org/rfc/rfc1628","title":"UPS Management Information Base","authors":["J. Case, Ed."],"rawDate":"1994-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1628","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1629":{"rfcNumber":"RFC1629","href":"https://www.rfc-editor.org/rfc/rfc1629","title":"Guidelines for OSI NSAP Allocation in the Internet","authors":["R. Colella","R. Callon","E. Gardner","Y. Rekhter"],"rawDate":"1994-05","status":"Draft Standard","obsoletes":["RFC1237"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc163":{"aliasOf":"rfc0163"},"rfc1630":{"rfcNumber":"RFC1630","href":"https://www.rfc-editor.org/rfc/rfc1630","title":"Universal Resource Identifiers in WWW: A Unifying Syntax for the Expression of Names and Addresses of Objects on the Network as used in the World-Wide Web","authors":["T. Berners-Lee"],"rawDate":"1994-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1630","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1631":{"rfcNumber":"RFC1631","href":"https://www.rfc-editor.org/rfc/rfc1631","title":"The IP Network Address Translator (NAT)","authors":["K. Egevang","P. Francis"],"rawDate":"1994-05","status":"Informational","obsoletedBy":["RFC3022"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1632":{"rfcNumber":"RFC1632","href":"https://www.rfc-editor.org/rfc/rfc1632","title":"A Revised Catalog of Available X.500 Implementations","authors":["A. Getchell, Ed.","S. Sataluri, Ed."],"rawDate":"1994-05","status":"Informational","obsoletedBy":["RFC2116"],"obsoletes":["RFC1292"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1633":{"rfcNumber":"RFC1633","href":"https://www.rfc-editor.org/rfc/rfc1633","title":"Integrated Services in the Internet Architecture: an Overview","authors":["R. Braden","D. Clark","S. Shenker"],"rawDate":"1994-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1633","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1634":{"rfcNumber":"RFC1634","href":"https://www.rfc-editor.org/rfc/rfc1634","title":"Novell IPX Over Various WAN Media (IPXWAN)","authors":["M. Allen"],"rawDate":"1994-05","status":"Informational","obsoletes":["RFC1551","RFC1362"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1635":{"rfcNumber":"RFC1635","href":"https://www.rfc-editor.org/rfc/rfc1635","title":"How to Use Anonymous FTP","authors":["P. Deutsch","A. Emtage","A. Marine"],"rawDate":"1994-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1636":{"rfcNumber":"RFC1636","href":"https://www.rfc-editor.org/rfc/rfc1636","title":"Report of IAB Workshop on Security in the Internet Architecture - February 8-10, 1994","authors":["R. Braden","D. Clark","S. Crocker","C. Huitema"],"rawDate":"1994-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1637":{"rfcNumber":"RFC1637","href":"https://www.rfc-editor.org/rfc/rfc1637","title":"DNS NSAP Resource Records","authors":["B. Manning","R. Colella"],"rawDate":"1994-06","status":"Experimental","obsoletedBy":["RFC1706"],"obsoletes":["RFC1348"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1638":{"rfcNumber":"RFC1638","href":"https://www.rfc-editor.org/rfc/rfc1638","title":"PPP Bridging Control Protocol (BCP)","authors":["F. Baker","R. Bowen"],"rawDate":"1994-06","status":"Proposed Standard","obsoletedBy":["RFC2878"],"obsoletes":["RFC1220"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1639":{"rfcNumber":"RFC1639","href":"https://www.rfc-editor.org/rfc/rfc1639","title":"FTP Operation Over Big Address Records (FOOBAR)","authors":["D. Piscitello"],"rawDate":"1994-06","status":"Experimental","obsoletes":["RFC1545"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc164":{"aliasOf":"rfc0164"},"rfc1640":{"rfcNumber":"RFC1640","href":"https://www.rfc-editor.org/rfc/rfc1640","title":"The Process for Organization of Internet Standards Working Group (POISED)","authors":["S. Crocker"],"rawDate":"1994-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1641":{"rfcNumber":"RFC1641","href":"https://www.rfc-editor.org/rfc/rfc1641","title":"Using Unicode with MIME","authors":["D. Goldsmith","M. Davis"],"rawDate":"1994-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1642":{"rfcNumber":"RFC1642","href":"https://www.rfc-editor.org/rfc/rfc1642","title":"UTF-7 - A Mail-Safe Transformation Format of Unicode","authors":["D. Goldsmith","M. Davis"],"rawDate":"1994-07","status":"Experimental","obsoletedBy":["RFC2152"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1643":{"rfcNumber":"RFC1643","href":"https://www.rfc-editor.org/rfc/rfc1643","title":"Definitions of Managed Objects for the Ethernet-like Interface Types","authors":["F. Kastenholz"],"rawDate":"1994-07","status":"Historic","obsoletedBy":["RFC3638"],"obsoletes":["RFC1623"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1644":{"rfcNumber":"RFC1644","href":"https://www.rfc-editor.org/rfc/rfc1644","title":"T/TCP -- TCP Extensions for Transactions Functional Specification","authors":["R. Braden"],"rawDate":"1994-07","status":"Historic","obsoletedBy":["RFC6247"],"updates":["RFC1379"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1645":{"rfcNumber":"RFC1645","href":"https://www.rfc-editor.org/rfc/rfc1645","title":"Simple Network Paging Protocol - Version 2","authors":["A. Gwinn"],"rawDate":"1994-07","status":"Informational","obsoletedBy":["RFC1861"],"obsoletes":["RFC1568"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1646":{"rfcNumber":"RFC1646","href":"https://www.rfc-editor.org/rfc/rfc1646","title":"TN3270 Extensions for LUname and Printer Selection","authors":["C. Graves","T. Butts","M. Angel"],"rawDate":"1994-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1647":{"rfcNumber":"RFC1647","href":"https://www.rfc-editor.org/rfc/rfc1647","title":"TN3270 Enhancements","authors":["B. Kelly"],"rawDate":"1994-07","status":"Proposed Standard","obsoletedBy":["RFC2355"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1648":{"rfcNumber":"RFC1648","href":"https://www.rfc-editor.org/rfc/rfc1648","title":"Postmaster Convention for X.400 Operations","authors":["A. Cargille"],"rawDate":"1994-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1649":{"rfcNumber":"RFC1649","href":"https://www.rfc-editor.org/rfc/rfc1649","title":"Operational Requirements for X.400 Management Domains in the GO-MHS Community","authors":["R. Hagens","A. Hansen"],"rawDate":"1994-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc165":{"aliasOf":"rfc0165"},"rfc1650":{"rfcNumber":"RFC1650","href":"https://www.rfc-editor.org/rfc/rfc1650","title":"Definitions of Managed Objects for the Ethernet-like Interface Types using SMIv2","authors":["F. Kastenholz"],"rawDate":"1994-08","status":"Proposed Standard","obsoletedBy":["RFC2358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1651":{"rfcNumber":"RFC1651","href":"https://www.rfc-editor.org/rfc/rfc1651","title":"SMTP Service Extensions","authors":["J. Klensin","N. Freed","M. Rose","E. Stefferud","D. Crocker"],"rawDate":"1994-07","status":"Draft Standard","obsoletedBy":["RFC1869"],"obsoletes":["RFC1425"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1652":{"rfcNumber":"RFC1652","href":"https://www.rfc-editor.org/rfc/rfc1652","title":"SMTP Service Extension for 8bit-MIMEtransport","authors":["J. Klensin","N. Freed","M. Rose","E. Stefferud","D. Crocker"],"rawDate":"1994-07","status":"Draft Standard","obsoletedBy":["RFC6152"],"obsoletes":["RFC1426"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1653":{"rfcNumber":"RFC1653","href":"https://www.rfc-editor.org/rfc/rfc1653","title":"SMTP Service Extension for Message Size Declaration","authors":["J. Klensin","N. Freed","K. Moore"],"rawDate":"1994-07","status":"Draft Standard","obsoletedBy":["RFC1870"],"obsoletes":["RFC1427"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1654":{"rfcNumber":"RFC1654","href":"https://www.rfc-editor.org/rfc/rfc1654","title":"A Border Gateway Protocol 4 (BGP-4)","authors":["Y. Rekhter, Ed.","T. Li, Ed."],"rawDate":"1994-07","status":"Proposed Standard","obsoletedBy":["RFC1771"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1655":{"rfcNumber":"RFC1655","href":"https://www.rfc-editor.org/rfc/rfc1655","title":"Application of the Border Gateway Protocol in the Internet","authors":["Y. Rekhter, Ed.","P. Gross, Ed."],"rawDate":"1994-07","status":"Proposed Standard","obsoletedBy":["RFC1772"],"obsoletes":["RFC1268"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1656":{"rfcNumber":"RFC1656","href":"https://www.rfc-editor.org/rfc/rfc1656","title":"BGP-4 Protocol Document Roadmap and Implementation Experience","authors":["P. Traina"],"rawDate":"1994-07","status":"Informational","obsoletedBy":["RFC1773"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1657":{"rfcNumber":"RFC1657","href":"https://www.rfc-editor.org/rfc/rfc1657","title":"Definitions of Managed Objects for the Fourth Version of the Border Gateway Protocol (BGP-4) using SMIv2","authors":["S. Willis","J. Burruss","J. Chu, Ed."],"rawDate":"1994-07","status":"Draft Standard","obsoletedBy":["RFC4273"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1658":{"rfcNumber":"RFC1658","href":"https://www.rfc-editor.org/rfc/rfc1658","title":"Definitions of Managed Objects for Character Stream Devices using SMIv2","authors":["B. Stewart"],"rawDate":"1994-07","status":"Draft Standard","obsoletes":["RFC1316"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1659":{"rfcNumber":"RFC1659","href":"https://www.rfc-editor.org/rfc/rfc1659","title":"Definitions of Managed Objects for RS-232-like Hardware Devices using SMIv2","authors":["B. Stewart"],"rawDate":"1994-07","status":"Draft Standard","obsoletes":["RFC1317"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc166":{"aliasOf":"rfc0166"},"rfc1660":{"rfcNumber":"RFC1660","href":"https://www.rfc-editor.org/rfc/rfc1660","title":"Definitions of Managed Objects for Parallel-printer-like Hardware Devices using SMIv2","authors":["B. Stewart"],"rawDate":"1994-07","status":"Draft Standard","obsoletes":["RFC1318"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1661":{"rfcNumber":"RFC1661","href":"https://www.rfc-editor.org/rfc/rfc1661","title":"The Point-to-Point Protocol (PPP)","authors":["W. Simpson, Ed."],"rawDate":"1994-07","status":"Internet Standard","updatedBy":["RFC2153"],"obsoletes":["RFC1548"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1661","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1662":{"rfcNumber":"RFC1662","href":"https://www.rfc-editor.org/rfc/rfc1662","title":"PPP in HDLC-like Framing","authors":["W. Simpson, Ed."],"rawDate":"1994-07","status":"Internet Standard","obsoletes":["RFC1549"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1662","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1663":{"rfcNumber":"RFC1663","href":"https://www.rfc-editor.org/rfc/rfc1663","title":"PPP Reliable Transmission","authors":["D. Rand"],"rawDate":"1994-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1664":{"rfcNumber":"RFC1664","href":"https://www.rfc-editor.org/rfc/rfc1664","title":"Using the Internet DNS to Distribute RFC1327 Mail Address Mapping Tables","authors":["C. Allocchio","A. Bonito","B. Cole","S. Giordano","R. Hagens"],"rawDate":"1994-08","status":"Experimental","obsoletedBy":["RFC2163"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1665":{"rfcNumber":"RFC1665","href":"https://www.rfc-editor.org/rfc/rfc1665","title":"Definitions of Managed Objects for SNA NAUs using SMIv2","authors":["Z. Kielczewski, Ed.","D. Kostick, Ed.","K. Shih, Ed."],"rawDate":"1994-07","status":"Proposed Standard","obsoletedBy":["RFC1666"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1666":{"rfcNumber":"RFC1666","href":"https://www.rfc-editor.org/rfc/rfc1666","title":"Definitions of Managed Objects for SNA NAUs using SMIv2","authors":["Z. Kielczewski, Ed.","D. Kostick, Ed.","K. Shih, Ed."],"rawDate":"1994-08","status":"Historic","obsoletes":["RFC1665"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1667":{"rfcNumber":"RFC1667","href":"https://www.rfc-editor.org/rfc/rfc1667","title":"Modeling and Simulation Requirements for IPng","authors":["S. Symington","D. Wood","M. Pullen"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1668":{"rfcNumber":"RFC1668","href":"https://www.rfc-editor.org/rfc/rfc1668","title":"Unified Routing Requirements for IPng","authors":["D. Estrin","T. Li","Y. Rekhter"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1669":{"rfcNumber":"RFC1669","href":"https://www.rfc-editor.org/rfc/rfc1669","title":"Market Viability as a IPng Criteria","authors":["J. Curran"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc167":{"aliasOf":"rfc0167"},"rfc1670":{"rfcNumber":"RFC1670","href":"https://www.rfc-editor.org/rfc/rfc1670","title":"Input to IPng Engineering Considerations","authors":["D. Heagerty"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1671":{"rfcNumber":"RFC1671","href":"https://www.rfc-editor.org/rfc/rfc1671","title":"IPng White Paper on Transition and Other Considerations","authors":["B. Carpenter"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1672":{"rfcNumber":"RFC1672","href":"https://www.rfc-editor.org/rfc/rfc1672","title":"Accounting Requirements for IPng","authors":["N. Brownlee"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1673":{"rfcNumber":"RFC1673","href":"https://www.rfc-editor.org/rfc/rfc1673","title":"Electric Power Research Institute Comments on IPng","authors":["R. Skelton"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1674":{"rfcNumber":"RFC1674","href":"https://www.rfc-editor.org/rfc/rfc1674","title":"A Cellular Industry View of IPng","authors":["M. Taylor"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1675":{"rfcNumber":"RFC1675","href":"https://www.rfc-editor.org/rfc/rfc1675","title":"Security Concerns for IPng","authors":["S. Bellovin"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1676":{"rfcNumber":"RFC1676","href":"https://www.rfc-editor.org/rfc/rfc1676","title":"INFN Requirements for an IPng","authors":["A. Ghiselli","D. Salomoni","C. Vistoli"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1677":{"rfcNumber":"RFC1677","href":"https://www.rfc-editor.org/rfc/rfc1677","title":"Tactical Radio Frequency Communication Requirements for IPng","authors":["B. Adamson"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1678":{"rfcNumber":"RFC1678","href":"https://www.rfc-editor.org/rfc/rfc1678","title":"IPng Requirements of Large Corporate Networks","authors":["E. Britton","J. Tavs"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1679":{"rfcNumber":"RFC1679","href":"https://www.rfc-editor.org/rfc/rfc1679","title":"HPN Working Group Input to the IPng Requirements Solicitation","authors":["D. Green","P. Irey","D. Marlow","K. O'Donoghue"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc168":{"aliasOf":"rfc0168"},"rfc1680":{"rfcNumber":"RFC1680","href":"https://www.rfc-editor.org/rfc/rfc1680","title":"IPng Support for ATM Services","authors":["C. Brazdziunas"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1681":{"rfcNumber":"RFC1681","href":"https://www.rfc-editor.org/rfc/rfc1681","title":"On Many Addresses per Host","authors":["S. Bellovin"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1682":{"rfcNumber":"RFC1682","href":"https://www.rfc-editor.org/rfc/rfc1682","title":"IPng BSD Host Implementation Analysis","authors":["J. Bound"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1683":{"rfcNumber":"RFC1683","href":"https://www.rfc-editor.org/rfc/rfc1683","title":"Multiprotocol Interoperability In IPng","authors":["R. Clark","M. Ammar","K. Calvert"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1684":{"rfcNumber":"RFC1684","href":"https://www.rfc-editor.org/rfc/rfc1684","title":"Introduction to White Pages Services based on X.500","authors":["P. Jurg"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1685":{"rfcNumber":"RFC1685","href":"https://www.rfc-editor.org/rfc/rfc1685","title":"Writing X.400 O/R Names","authors":["H. Alvestrand"],"rawDate":"1994-08","status":"Informational","seeAlso":["RTR0012"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1685","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1686":{"rfcNumber":"RFC1686","href":"https://www.rfc-editor.org/rfc/rfc1686","title":"IPng Requirements: A Cable Television Industry Viewpoint","authors":["M. Vecchi"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1687":{"rfcNumber":"RFC1687","href":"https://www.rfc-editor.org/rfc/rfc1687","title":"A Large Corporate User's View of IPng","authors":["E. Fleischman"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1688":{"rfcNumber":"RFC1688","href":"https://www.rfc-editor.org/rfc/rfc1688","title":"IPng Mobility Considerations","authors":["W. Simpson"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1689":{"rfcNumber":"RFC1689","href":"https://www.rfc-editor.org/rfc/rfc1689","title":"A Status Report on Networked Information Retrieval: Tools and Groups","authors":["J. Foster, Ed."],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc169":{"aliasOf":"rfc0169"},"rfc1690":{"rfcNumber":"RFC1690","href":"https://www.rfc-editor.org/rfc/rfc1690","title":"Introducing the Internet Engineering and Planning Group (IEPG)","authors":["G. Huston"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1691":{"rfcNumber":"RFC1691","href":"https://www.rfc-editor.org/rfc/rfc1691","title":"The Document Architecture for the Cornell Digital Library","authors":["W. Turner"],"rawDate":"1994-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1692":{"rfcNumber":"RFC1692","href":"https://www.rfc-editor.org/rfc/rfc1692","title":"Transport Multiplexing Protocol (TMux)","authors":["P. Cameron","D. Crocker","D. Cohen","J. Postel"],"rawDate":"1994-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1693":{"rfcNumber":"RFC1693","href":"https://www.rfc-editor.org/rfc/rfc1693","title":"An Extension to TCP : Partial Order Service","authors":["T. Connolly","P. Amer","P. Conrad"],"rawDate":"1994-11","status":"Historic","obsoletedBy":["RFC6247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1694":{"rfcNumber":"RFC1694","href":"https://www.rfc-editor.org/rfc/rfc1694","title":"Definitions of Managed Objects for SMDS Interfaces using SMIv2","authors":["T. Brown, Ed.","K. Tesink, Ed."],"rawDate":"1994-08","status":"Draft Standard","obsoletes":["RFC1304"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1695":{"rfcNumber":"RFC1695","href":"https://www.rfc-editor.org/rfc/rfc1695","title":"Definitions of Managed Objects for ATM Management Version 8.0 using SMIv2","authors":["M. Ahmed, Ed.","K. Tesink, Ed."],"rawDate":"1994-08","status":"Proposed Standard","obsoletedBy":["RFC2515"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1696":{"rfcNumber":"RFC1696","href":"https://www.rfc-editor.org/rfc/rfc1696","title":"Modem Management Information Base (MIB) using SMIv2","authors":["J. Barnes","L. Brown","R. Royston","S. Waldbusser"],"rawDate":"1994-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1697":{"rfcNumber":"RFC1697","href":"https://www.rfc-editor.org/rfc/rfc1697","title":"Relational Database Management System (RDBMS) Management Information Base (MIB) using SMIv2","authors":["D. Brower, Ed.","B. Purvy","A. Daniel","M. Sinykin","J. Smith"],"rawDate":"1994-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1698":{"rfcNumber":"RFC1698","href":"https://www.rfc-editor.org/rfc/rfc1698","title":"Octet Sequences for Upper-Layer OSI to Support Basic Communications Applications","authors":["P. Furniss"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1699":{"rfcNumber":"RFC1699","href":"https://www.rfc-editor.org/rfc/rfc1699","title":"Summary of 1600-1699","authors":["J. Elliott"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc17":{"aliasOf":"rfc0017"},"rfc170":{"aliasOf":"rfc0170"},"rfc1700":{"rfcNumber":"RFC1700","href":"https://www.rfc-editor.org/rfc/rfc1700","title":"Assigned Numbers","authors":["J. Reynolds","J. Postel"],"rawDate":"1994-10","status":"Historic","obsoletedBy":["RFC3232"],"obsoletes":["RFC1340"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1701":{"rfcNumber":"RFC1701","href":"https://www.rfc-editor.org/rfc/rfc1701","title":"Generic Routing Encapsulation (GRE)","authors":["S. Hanks","T. Li","D. Farinacci","P. Traina"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1702":{"rfcNumber":"RFC1702","href":"https://www.rfc-editor.org/rfc/rfc1702","title":"Generic Routing Encapsulation over IPv4 networks","authors":["S. Hanks","T. Li","D. Farinacci","P. Traina"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1703":{"rfcNumber":"RFC1703","href":"https://www.rfc-editor.org/rfc/rfc1703","title":"Principles of Operation for the TPC.INT Subdomain: Radio Paging -- Technical Procedures","authors":["M. Rose"],"rawDate":"1994-10","status":"Informational","obsoletes":["RFC1569"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1704":{"rfcNumber":"RFC1704","href":"https://www.rfc-editor.org/rfc/rfc1704","title":"On Internet Authentication","authors":["N. Haller","R. Atkinson"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1705":{"rfcNumber":"RFC1705","href":"https://www.rfc-editor.org/rfc/rfc1705","title":"Six Virtual Inches to the Left: The Problem with IPng","authors":["R. Carlson","D. Ficarella"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1706":{"rfcNumber":"RFC1706","href":"https://www.rfc-editor.org/rfc/rfc1706","title":"DNS NSAP Resource Records","authors":["B. Manning","R. Colella"],"rawDate":"1994-10","status":"Historic","updatedBy":["RFC9121"],"obsoletes":["RFC1637"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1707":{"rfcNumber":"RFC1707","href":"https://www.rfc-editor.org/rfc/rfc1707","title":"CATNIP: Common Architecture for the Internet","authors":["M. McGovern","R. Ullmann"],"rawDate":"1994-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1708":{"rfcNumber":"RFC1708","href":"https://www.rfc-editor.org/rfc/rfc1708","title":"NTP PICS PROFORMA - For the Network Time Protocol Version 3","authors":["D. Gowin"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1709":{"rfcNumber":"RFC1709","href":"https://www.rfc-editor.org/rfc/rfc1709","title":"K-12 Internetworking Guidelines","authors":["J. Gargano","D. Wasley"],"rawDate":"1994-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc171":{"aliasOf":"rfc0171"},"rfc1710":{"rfcNumber":"RFC1710","href":"https://www.rfc-editor.org/rfc/rfc1710","title":"Simple Internet Protocol Plus White Paper","authors":["R. Hinden"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1711":{"rfcNumber":"RFC1711","href":"https://www.rfc-editor.org/rfc/rfc1711","title":"Classifications in E-mail Routing","authors":["J. Houttuin"],"rawDate":"1994-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1712":{"rfcNumber":"RFC1712","href":"https://www.rfc-editor.org/rfc/rfc1712","title":"DNS Encoding of Geographical Location","authors":["C. Farrell","M. Schulze","S. Pleitner","D. Baldoni"],"rawDate":"1994-11","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1712","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1713":{"rfcNumber":"RFC1713","href":"https://www.rfc-editor.org/rfc/rfc1713","title":"Tools for DNS debugging","authors":["A. Romao"],"rawDate":"1994-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1714":{"rfcNumber":"RFC1714","href":"https://www.rfc-editor.org/rfc/rfc1714","title":"Referral Whois Protocol (RWhois)","authors":["S. Williamson","M. Kosters"],"rawDate":"1994-11","status":"Informational","obsoletedBy":["RFC2167"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1715":{"rfcNumber":"RFC1715","href":"https://www.rfc-editor.org/rfc/rfc1715","title":"The H Ratio for Address Assignment Efficiency","authors":["C. Huitema"],"rawDate":"1994-11","status":"Informational","updatedBy":["RFC3194"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1716":{"rfcNumber":"RFC1716","href":"https://www.rfc-editor.org/rfc/rfc1716","title":"Towards Requirements for IP Routers","authors":["P. Almquist","F. Kastenholz"],"rawDate":"1994-11","status":"Informational","obsoletedBy":["RFC1812"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1717":{"rfcNumber":"RFC1717","href":"https://www.rfc-editor.org/rfc/rfc1717","title":"The PPP Multilink Protocol (MP)","authors":["K. Sklower","B. Lloyd","G. McGregor","D. Carr"],"rawDate":"1994-11","status":"Proposed Standard","obsoletedBy":["RFC1990"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1718":{"rfcNumber":"RFC1718","href":"https://www.rfc-editor.org/rfc/rfc1718","title":"The Tao of IETF - A Guide for New Attendees of the Internet Engineering Task Force","authors":["IETF Secretariat","G. Malkin"],"rawDate":"1994-11","status":"Informational","obsoletedBy":["RFC3160"],"obsoletes":["RFC1539"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1719":{"rfcNumber":"RFC1719","href":"https://www.rfc-editor.org/rfc/rfc1719","title":"A Direction for IPng","authors":["P. Gross"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc172":{"aliasOf":"rfc0172"},"rfc1720":{"rfcNumber":"RFC1720","href":"https://www.rfc-editor.org/rfc/rfc1720","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1994-11","status":"Historic","obsoletedBy":["RFC1780"],"obsoletes":["RFC1610"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1721":{"rfcNumber":"RFC1721","href":"https://www.rfc-editor.org/rfc/rfc1721","title":"RIP Version 2 Protocol Analysis","authors":["G. Malkin"],"rawDate":"1994-11","status":"Informational","obsoletes":["RFC1387"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1722":{"rfcNumber":"RFC1722","href":"https://www.rfc-editor.org/rfc/rfc1722","title":"RIP Version 2 Protocol Applicability Statement","authors":["G. Malkin"],"rawDate":"1994-11","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1723":{"rfcNumber":"RFC1723","href":"https://www.rfc-editor.org/rfc/rfc1723","title":"RIP Version 2 - Carrying Additional Information","authors":["G. Malkin"],"rawDate":"1994-11","status":"Internet Standard","obsoletedBy":["RFC2453"],"updates":["RFC1058"],"obsoletes":["RFC1388"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1724":{"rfcNumber":"RFC1724","href":"https://www.rfc-editor.org/rfc/rfc1724","title":"RIP Version 2 MIB Extension","authors":["G. Malkin","F. Baker"],"rawDate":"1994-11","status":"Draft Standard","obsoletes":["RFC1389"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1724","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1725":{"rfcNumber":"RFC1725","href":"https://www.rfc-editor.org/rfc/rfc1725","title":"Post Office Protocol - Version 3","authors":["J. Myers","M. Rose"],"rawDate":"1994-11","status":"Internet Standard","obsoletedBy":["RFC1939"],"obsoletes":["RFC1460"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1725","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1726":{"rfcNumber":"RFC1726","href":"https://www.rfc-editor.org/rfc/rfc1726","title":"Technical Criteria for Choosing IP The Next Generation (IPng)","authors":["C. Partridge","F. Kastenholz"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1727":{"rfcNumber":"RFC1727","href":"https://www.rfc-editor.org/rfc/rfc1727","title":"A Vision of an Integrated Internet Information Service","authors":["C. Weider","P. Deutsch"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1728":{"rfcNumber":"RFC1728","href":"https://www.rfc-editor.org/rfc/rfc1728","title":"Resource Transponders","authors":["C. Weider"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1729":{"rfcNumber":"RFC1729","href":"https://www.rfc-editor.org/rfc/rfc1729","title":"Using the Z39.50 Information Retrieval Protocol","authors":["C. Lynch"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc173":{"aliasOf":"rfc0173"},"rfc1730":{"rfcNumber":"RFC1730","href":"https://www.rfc-editor.org/rfc/rfc1730","title":"Internet Message Access Protocol - Version 4","authors":["M. Crispin"],"rawDate":"1994-12","status":"Proposed Standard","obsoletedBy":["RFC2060","RFC2061"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1731":{"rfcNumber":"RFC1731","href":"https://www.rfc-editor.org/rfc/rfc1731","title":"IMAP4 Authentication Mechanisms","authors":["J. Myers"],"rawDate":"1994-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1732":{"rfcNumber":"RFC1732","href":"https://www.rfc-editor.org/rfc/rfc1732","title":"IMAP4 Compatibility with IMAP2 and IMAP2bis","authors":["M. Crispin"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1733":{"rfcNumber":"RFC1733","href":"https://www.rfc-editor.org/rfc/rfc1733","title":"Distributed Electronic Mail Models in IMAP4","authors":["M. Crispin"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1734":{"rfcNumber":"RFC1734","href":"https://www.rfc-editor.org/rfc/rfc1734","title":"POP3 AUTHentication command","authors":["J. Myers"],"rawDate":"1994-12","status":"Proposed Standard","obsoletedBy":["RFC5034"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1735":{"rfcNumber":"RFC1735","href":"https://www.rfc-editor.org/rfc/rfc1735","title":"NBMA Address Resolution Protocol (NARP)","authors":["J. Heinanen","R. Govindan"],"rawDate":"1994-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1736":{"rfcNumber":"RFC1736","href":"https://www.rfc-editor.org/rfc/rfc1736","title":"Functional Recommendations for Internet Resource Locators","authors":["J. Kunze"],"rawDate":"1995-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1737":{"rfcNumber":"RFC1737","href":"https://www.rfc-editor.org/rfc/rfc1737","title":"Functional Requirements for Uniform Resource Names","authors":["K. Sollins","L. Masinter"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1738":{"rfcNumber":"RFC1738","href":"https://www.rfc-editor.org/rfc/rfc1738","title":"Uniform Resource Locators (URL)","authors":["T. Berners-Lee","L. Masinter","M. McCahill"],"rawDate":"1994-12","status":"Proposed Standard","updatedBy":["RFC1808","RFC2368","RFC2396","RFC3986","RFC6196","RFC6270","RFC8089"],"obsoletedBy":["RFC4248","RFC4266"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1738","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1739":{"rfcNumber":"RFC1739","href":"https://www.rfc-editor.org/rfc/rfc1739","title":"A Primer On Internet and TCP/IP Tools","authors":["G. Kessler","S. Shepard"],"rawDate":"1994-12","status":"Informational","obsoletedBy":["RFC2151"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc174":{"aliasOf":"rfc0174"},"rfc1740":{"rfcNumber":"RFC1740","href":"https://www.rfc-editor.org/rfc/rfc1740","title":"MIME Encapsulation of Macintosh Files - MacMIME","authors":["P. Faltstrom","D. Crocker","E. Fair"],"rawDate":"1994-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1741":{"rfcNumber":"RFC1741","href":"https://www.rfc-editor.org/rfc/rfc1741","title":"MIME Content Type for BinHex Encoded Files","authors":["P. Faltstrom","D. Crocker","E. Fair"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1742":{"rfcNumber":"RFC1742","href":"https://www.rfc-editor.org/rfc/rfc1742","title":"AppleTalk Management Information Base II","authors":["S. Waldbusser","K. Frisa"],"rawDate":"1995-01","status":"Historic","obsoletes":["RFC1243"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1743":{"rfcNumber":"RFC1743","href":"https://www.rfc-editor.org/rfc/rfc1743","title":"IEEE 802.5 MIB using SMIv2","authors":["K. McCloghrie","E. Decker"],"rawDate":"1994-12","status":"Draft Standard","obsoletedBy":["RFC1748"],"obsoletes":["RFC1231"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1744":{"rfcNumber":"RFC1744","href":"https://www.rfc-editor.org/rfc/rfc1744","title":"Observations on the Management of the Internet Address Space","authors":["G. Huston"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1745":{"rfcNumber":"RFC1745","href":"https://www.rfc-editor.org/rfc/rfc1745","title":"BGP4/IDRP for IP---OSPF Interaction","authors":["K. Varadhan","S. Hares","Y. Rekhter"],"rawDate":"1994-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1746":{"rfcNumber":"RFC1746","href":"https://www.rfc-editor.org/rfc/rfc1746","title":"Ways to Define User Expectations","authors":["B. Manning","D. Perkins"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1747":{"rfcNumber":"RFC1747","href":"https://www.rfc-editor.org/rfc/rfc1747","title":"Definitions of Managed Objects for SNA Data Link Control (SDLC) using SMIv2","authors":["J. Hilgeman","S. Nix","A. Bartky","W. Clark, Ed."],"rawDate":"1995-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1748":{"rfcNumber":"RFC1748","href":"https://www.rfc-editor.org/rfc/rfc1748","title":"IEEE 802.5 MIB using SMIv2","authors":["K. McCloghrie","E. Decker"],"rawDate":"1994-12","status":"Draft Standard","updatedBy":["RFC1749"],"obsoletes":["RFC1743","RFC1231"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1749":{"rfcNumber":"RFC1749","href":"https://www.rfc-editor.org/rfc/rfc1749","title":"IEEE 802.5 Station Source Routing MIB using SMIv2","authors":["K. McCloghrie","F. Baker","E. Decker"],"rawDate":"1994-12","status":"Historic","updates":["RFC1748"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc175":{"aliasOf":"rfc0175"},"rfc1750":{"rfcNumber":"RFC1750","href":"https://www.rfc-editor.org/rfc/rfc1750","title":"Randomness Recommendations for Security","authors":["D. Eastlake 3rd","S. Crocker","J. Schiller"],"rawDate":"1994-12","status":"Informational","obsoletedBy":["RFC4086"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1751":{"rfcNumber":"RFC1751","href":"https://www.rfc-editor.org/rfc/rfc1751","title":"A Convention for Human-Readable 128-bit Keys","authors":["D. McDonald"],"rawDate":"1994-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1751","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1752":{"rfcNumber":"RFC1752","href":"https://www.rfc-editor.org/rfc/rfc1752","title":"The Recommendation for the IP Next Generation Protocol","authors":["S. Bradner","A. Mankin"],"rawDate":"1995-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1753":{"rfcNumber":"RFC1753","href":"https://www.rfc-editor.org/rfc/rfc1753","title":"IPng Technical Requirements Of the Nimrod Routing and Addressing Architecture","authors":["N. Chiappa"],"rawDate":"1994-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1754":{"rfcNumber":"RFC1754","href":"https://www.rfc-editor.org/rfc/rfc1754","title":"IP over ATM Working Group's Recommendations for the ATM Forum's Multiprotocol BOF Version 1","authors":["M. Laubach"],"rawDate":"1995-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1755":{"rfcNumber":"RFC1755","href":"https://www.rfc-editor.org/rfc/rfc1755","title":"ATM Signaling Support for IP over ATM","authors":["M. Perez","F. Liaw","A. Mankin","E. Hoffman","D. Grossman","A. Malis"],"rawDate":"1995-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1756":{"rfcNumber":"RFC1756","href":"https://www.rfc-editor.org/rfc/rfc1756","title":"Remote Write Protocol - Version 1.0","authors":["T. Rinne"],"rawDate":"1995-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1757":{"rfcNumber":"RFC1757","href":"https://www.rfc-editor.org/rfc/rfc1757","title":"Remote Network Monitoring Management Information Base","authors":["S. Waldbusser"],"rawDate":"1995-02","status":"Draft Standard","obsoletedBy":["RFC2819"],"obsoletes":["RFC1271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1758":{"rfcNumber":"RFC1758","href":"https://www.rfc-editor.org/rfc/rfc1758","title":"NADF Standing Documents: A Brief Overview","authors":["The North American Directory Forum"],"rawDate":"1995-02","status":"Informational","obsoletes":["RFC1417"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1759":{"rfcNumber":"RFC1759","href":"https://www.rfc-editor.org/rfc/rfc1759","title":"Printer MIB","authors":["R. Smith","F. Wright","T. Hastings","S. Zilles","J. Gyllenskog"],"rawDate":"1995-03","status":"Proposed Standard","obsoletedBy":["RFC3805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc176":{"aliasOf":"rfc0176"},"rfc1760":{"rfcNumber":"RFC1760","href":"https://www.rfc-editor.org/rfc/rfc1760","title":"The S/KEY One-Time Password System","authors":["N. Haller"],"rawDate":"1995-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1760","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1761":{"rfcNumber":"RFC1761","href":"https://www.rfc-editor.org/rfc/rfc1761","title":"Snoop Version 2 Packet Capture File Format","authors":["B. Callaghan","R. Gilligan"],"rawDate":"1995-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1762":{"rfcNumber":"RFC1762","href":"https://www.rfc-editor.org/rfc/rfc1762","title":"The PPP DECnet Phase IV Control Protocol (DNCP)","authors":["S. Senum"],"rawDate":"1995-03","status":"Draft Standard","obsoletes":["RFC1376"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1763":{"rfcNumber":"RFC1763","href":"https://www.rfc-editor.org/rfc/rfc1763","title":"The PPP Banyan Vines Control Protocol (BVCP)","authors":["S. Senum"],"rawDate":"1995-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1764":{"rfcNumber":"RFC1764","href":"https://www.rfc-editor.org/rfc/rfc1764","title":"The PPP XNS IDP Control Protocol (XNSCP)","authors":["S. Senum"],"rawDate":"1995-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1765":{"rfcNumber":"RFC1765","href":"https://www.rfc-editor.org/rfc/rfc1765","title":"OSPF Database Overflow","authors":["J. Moy"],"rawDate":"1995-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1766":{"rfcNumber":"RFC1766","href":"https://www.rfc-editor.org/rfc/rfc1766","title":"Tags for the Identification of Languages","authors":["H. Alvestrand"],"rawDate":"1995-03","status":"Proposed Standard","obsoletedBy":["RFC3066","RFC3282"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1767":{"rfcNumber":"RFC1767","href":"https://www.rfc-editor.org/rfc/rfc1767","title":"MIME Encapsulation of EDI Objects","authors":["D. Crocker"],"rawDate":"1995-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1768":{"rfcNumber":"RFC1768","href":"https://www.rfc-editor.org/rfc/rfc1768","title":"Host Group Extensions for CLNP Multicasting","authors":["D. Marlow"],"rawDate":"1995-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1769":{"rfcNumber":"RFC1769","href":"https://www.rfc-editor.org/rfc/rfc1769","title":"Simple Network Time Protocol (SNTP)","authors":["D. Mills"],"rawDate":"1995-03","status":"Informational","obsoletedBy":["RFC2030","RFC4330"],"obsoletes":["RFC1361"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc177":{"aliasOf":"rfc0177"},"rfc1770":{"rfcNumber":"RFC1770","href":"https://www.rfc-editor.org/rfc/rfc1770","title":"IPv4 Option for Sender Directed Multi-Destination Delivery","authors":["C. Graff"],"rawDate":"1995-03","status":"Historic","obsoletedBy":["RFC6814"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1771":{"rfcNumber":"RFC1771","href":"https://www.rfc-editor.org/rfc/rfc1771","title":"A Border Gateway Protocol 4 (BGP-4)","authors":["Y. Rekhter","T. Li"],"rawDate":"1995-03","status":"Draft Standard","obsoletedBy":["RFC4271"],"obsoletes":["RFC1654"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1771","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1772":{"rfcNumber":"RFC1772","href":"https://www.rfc-editor.org/rfc/rfc1772","title":"Application of the Border Gateway Protocol in the Internet","authors":["Y. Rekhter","P. Gross"],"rawDate":"1995-03","status":"Draft Standard","obsoletes":["RFC1655"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1773":{"rfcNumber":"RFC1773","href":"https://www.rfc-editor.org/rfc/rfc1773","title":"Experience with the BGP-4 protocol","authors":["P. Traina"],"rawDate":"1995-03","status":"Informational","obsoletes":["RFC1656"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1774":{"rfcNumber":"RFC1774","href":"https://www.rfc-editor.org/rfc/rfc1774","title":"BGP-4 Protocol Analysis","authors":["P. Traina, Ed."],"rawDate":"1995-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1774","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1775":{"rfcNumber":"RFC1775","href":"https://www.rfc-editor.org/rfc/rfc1775","title":"To Be \"On\" the Internet","authors":["D. Crocker"],"rawDate":"1995-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1776":{"rfcNumber":"RFC1776","href":"https://www.rfc-editor.org/rfc/rfc1776","title":"The Address is the Message","authors":["S. Crocker"],"rawDate":"1995-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1777":{"rfcNumber":"RFC1777","href":"https://www.rfc-editor.org/rfc/rfc1777","title":"Lightweight Directory Access Protocol","authors":["W. Yeong","T. Howes","S. Kille"],"rawDate":"1995-03","status":"Historic","obsoletedBy":["RFC3494"],"obsoletes":["RFC1487"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1778":{"rfcNumber":"RFC1778","href":"https://www.rfc-editor.org/rfc/rfc1778","title":"The String Representation of Standard Attribute Syntaxes","authors":["T. Howes","S. Kille","W. Yeong","C. Robbins"],"rawDate":"1995-03","status":"Historic","updatedBy":["RFC2559"],"obsoletedBy":["RFC3494"],"obsoletes":["RFC1488"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1779":{"rfcNumber":"RFC1779","href":"https://www.rfc-editor.org/rfc/rfc1779","title":"A String Representation of Distinguished Names","authors":["S. Kille"],"rawDate":"1995-03","status":"Historic","obsoletedBy":["RFC2253","RFC3494"],"obsoletes":["RFC1485"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc178":{"aliasOf":"rfc0178"},"rfc1780":{"rfcNumber":"RFC1780","href":"https://www.rfc-editor.org/rfc/rfc1780","title":"Internet Official Protocol Standards","authors":["J. Postel, Ed."],"rawDate":"1995-03","status":"Historic","obsoletedBy":["RFC1800"],"obsoletes":["RFC1720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1781":{"rfcNumber":"RFC1781","href":"https://www.rfc-editor.org/rfc/rfc1781","title":"Using the OSI Directory to Achieve User Friendly Naming","authors":["S. Kille"],"rawDate":"1995-03","status":"Historic","obsoletedBy":["RFC3494"],"obsoletes":["RFC1484"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1782":{"rfcNumber":"RFC1782","href":"https://www.rfc-editor.org/rfc/rfc1782","title":"TFTP Option Extension","authors":["G. Malkin","A. Harkin"],"rawDate":"1995-03","status":"Proposed Standard","obsoletedBy":["RFC2347"],"updates":["RFC1350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1783":{"rfcNumber":"RFC1783","href":"https://www.rfc-editor.org/rfc/rfc1783","title":"TFTP Blocksize Option","authors":["G. Malkin","A. Harkin"],"rawDate":"1995-03","status":"Proposed Standard","obsoletedBy":["RFC2348"],"updates":["RFC1350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1784":{"rfcNumber":"RFC1784","href":"https://www.rfc-editor.org/rfc/rfc1784","title":"TFTP Timeout Interval and Transfer Size Options","authors":["G. Malkin","A. Harkin"],"rawDate":"1995-03","status":"Proposed Standard","obsoletedBy":["RFC2349"],"updates":["RFC1350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1785":{"rfcNumber":"RFC1785","href":"https://www.rfc-editor.org/rfc/rfc1785","title":"TFTP Option Negotiation Analysis","authors":["G. Malkin","A. Harkin"],"rawDate":"1995-03","status":"Informational","updates":["RFC1350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1786":{"rfcNumber":"RFC1786","href":"https://www.rfc-editor.org/rfc/rfc1786","title":"Representation of IP Routing Policies in a Routing Registry (ripe-81++)","authors":["T. Bates","E. Gerich","L. Joncheray","J-M. Jouanigot","D. Karrenberg","M. Terpstra","J. Yu"],"rawDate":"1995-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1787":{"rfcNumber":"RFC1787","href":"https://www.rfc-editor.org/rfc/rfc1787","title":"Routing in a Multi-provider Internet","authors":["Y. Rekhter"],"rawDate":"1995-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1788":{"rfcNumber":"RFC1788","href":"https://www.rfc-editor.org/rfc/rfc1788","title":"ICMP Domain Name Messages","authors":["W. Simpson"],"rawDate":"1995-04","status":"Historic","obsoletedBy":["RFC6918"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1789":{"rfcNumber":"RFC1789","href":"https://www.rfc-editor.org/rfc/rfc1789","title":"INETPhone: Telephone Services and Servers on Internet","authors":["C. Yang"],"rawDate":"1995-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc179":{"aliasOf":"rfc0179"},"rfc1790":{"rfcNumber":"RFC1790","href":"https://www.rfc-editor.org/rfc/rfc1790","title":"An Agreement between the Internet Society and Sun Microsystems, Inc. in the Matter of ONC RPC and XDR Protocols","authors":["V. Cerf"],"rawDate":"1995-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1791":{"rfcNumber":"RFC1791","href":"https://www.rfc-editor.org/rfc/rfc1791","title":"TCP And UDP Over IPX Networks With Fixed Path MTU","authors":["T. Sung"],"rawDate":"1995-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1792":{"rfcNumber":"RFC1792","href":"https://www.rfc-editor.org/rfc/rfc1792","title":"TCP/IPX Connection Mib Specification","authors":["T. Sung"],"rawDate":"1995-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1793":{"rfcNumber":"RFC1793","href":"https://www.rfc-editor.org/rfc/rfc1793","title":"Extending OSPF to Support Demand Circuits","authors":["J. Moy"],"rawDate":"1995-04","status":"Proposed Standard","updatedBy":["RFC3883"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1794":{"rfcNumber":"RFC1794","href":"https://www.rfc-editor.org/rfc/rfc1794","title":"DNS Support for Load Balancing","authors":["T. Brisco"],"rawDate":"1995-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1795":{"rfcNumber":"RFC1795","href":"https://www.rfc-editor.org/rfc/rfc1795","title":"Data Link Switching: Switch-to-Switch Protocol AIW DLSw RIG: DLSw Closed Pages, DLSw Standard Version 1","authors":["L. Wells","A. Bartky, Ed."],"rawDate":"1995-04","status":"Informational","obsoletes":["RFC1434"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1796":{"rfcNumber":"RFC1796","href":"https://www.rfc-editor.org/rfc/rfc1796","title":"Not All RFCs are Standards","authors":["C. Huitema","J. Postel","S. Crocker"],"rawDate":"1995-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1797":{"rfcNumber":"RFC1797","href":"https://www.rfc-editor.org/rfc/rfc1797","title":"Class A Subnet Experiment","authors":["Internet Assigned Numbers Authority (IANA)"],"rawDate":"1995-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1798":{"rfcNumber":"RFC1798","href":"https://www.rfc-editor.org/rfc/rfc1798","title":"Connection-less Lightweight X.500 Directory Access Protocol","authors":["A. Young"],"rawDate":"1995-06","status":"Historic","obsoletedBy":["RFC3352"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1799":{"rfcNumber":"RFC1799","href":"https://www.rfc-editor.org/rfc/rfc1799","title":"Request for Comments Summary RFC Numbers 1700-1799","authors":["M. Kennedy"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc18":{"aliasOf":"rfc0018"},"rfc180":{"aliasOf":"rfc0180"},"rfc1800":{"rfcNumber":"RFC1800","href":"https://www.rfc-editor.org/rfc/rfc1800","title":"Internet Official Protocol Standards","authors":["J. Postel, Ed."],"rawDate":"1995-07","status":"Historic","obsoletedBy":["RFC1880"],"obsoletes":["RFC1780"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1801":{"rfcNumber":"RFC1801","href":"https://www.rfc-editor.org/rfc/rfc1801","title":"MHS use of the X.500 Directory to support MHS Routing","authors":["S. Kille"],"rawDate":"1995-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1802":{"rfcNumber":"RFC1802","href":"https://www.rfc-editor.org/rfc/rfc1802","title":"Introducing Project Long Bud: Internet Pilot Project for the Deployment of X.500 Directory Information in Support of X.400 Routing","authors":["H. Alvestrand","K. Jordan","S. Langlois","J. Romaguera"],"rawDate":"1995-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1803":{"rfcNumber":"RFC1803","href":"https://www.rfc-editor.org/rfc/rfc1803","title":"Recommendations for an X.500 Production Directory Service","authors":["R. Wright","A. Getchell","T. Howes","S. Sataluri","P. Yee","W. Yeong"],"rawDate":"1995-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1804":{"rfcNumber":"RFC1804","href":"https://www.rfc-editor.org/rfc/rfc1804","title":"Schema Publishing in X.500 Directory","authors":["G. Mansfield","P. Rajeev","S. Raghavan","T. Howes"],"rawDate":"1995-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1805":{"rfcNumber":"RFC1805","href":"https://www.rfc-editor.org/rfc/rfc1805","title":"Location-Independent Data/Software Integrity Protocol","authors":["A. Rubin"],"rawDate":"1995-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1806":{"rfcNumber":"RFC1806","href":"https://www.rfc-editor.org/rfc/rfc1806","title":"Communicating Presentation Information in Internet Messages: The Content-Disposition Header","authors":["R. Troost","S. Dorner"],"rawDate":"1995-06","status":"Experimental","obsoletedBy":["RFC2183"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1807":{"rfcNumber":"RFC1807","href":"https://www.rfc-editor.org/rfc/rfc1807","title":"A Format for Bibliographic Records","authors":["R. Lasher","D. Cohen"],"rawDate":"1995-06","status":"Informational","obsoletes":["RFC1357"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1808":{"rfcNumber":"RFC1808","href":"https://www.rfc-editor.org/rfc/rfc1808","title":"Relative Uniform Resource Locators","authors":["R. Fielding"],"rawDate":"1995-06","status":"Proposed Standard","updatedBy":["RFC2368","RFC2396"],"obsoletedBy":["RFC3986"],"updates":["RFC1738"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1809":{"rfcNumber":"RFC1809","href":"https://www.rfc-editor.org/rfc/rfc1809","title":"Using the Flow Label Field in IPv6","authors":["C. Partridge"],"rawDate":"1995-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc181":{"aliasOf":"rfc0181"},"rfc1810":{"rfcNumber":"RFC1810","href":"https://www.rfc-editor.org/rfc/rfc1810","title":"Report on MD5 Performance","authors":["J. Touch"],"rawDate":"1995-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1810","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1811":{"rfcNumber":"RFC1811","href":"https://www.rfc-editor.org/rfc/rfc1811","title":"U.S. Government Internet Domain Names","authors":["Federal Networking Council"],"rawDate":"1995-06","status":"Informational","obsoletedBy":["RFC1816"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1812":{"rfcNumber":"RFC1812","href":"https://www.rfc-editor.org/rfc/rfc1812","title":"Requirements for IP Version 4 Routers","authors":["F. Baker, Ed."],"rawDate":"1995-06","status":"Proposed Standard","updatedBy":["RFC2644","RFC6633"],"obsoletes":["RFC1716","RFC1009"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1812","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1813":{"rfcNumber":"RFC1813","href":"https://www.rfc-editor.org/rfc/rfc1813","title":"NFS Version 3 Protocol Specification","authors":["B. Callaghan","B. Pawlowski","P. Staubach"],"rawDate":"1995-06","status":"Informational","seeAlso":["RFC1094"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1814":{"rfcNumber":"RFC1814","href":"https://www.rfc-editor.org/rfc/rfc1814","title":"Unique Addresses are Good","authors":["E. Gerich"],"rawDate":"1995-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1815":{"rfcNumber":"RFC1815","href":"https://www.rfc-editor.org/rfc/rfc1815","title":"Character Sets ISO-10646 and ISO-10646-J-1","authors":["M. Ohta"],"rawDate":"1995-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1816":{"rfcNumber":"RFC1816","href":"https://www.rfc-editor.org/rfc/rfc1816","title":"U.S. Government Internet Domain Names","authors":["Federal Networking Council"],"rawDate":"1995-08","status":"Informational","obsoletedBy":["RFC2146"],"obsoletes":["RFC1811"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1817":{"rfcNumber":"RFC1817","href":"https://www.rfc-editor.org/rfc/rfc1817","title":"CIDR and Classful Routing","authors":["Y. Rekhter"],"rawDate":"1995-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1818":{"rfcNumber":"RFC1818","href":"https://www.rfc-editor.org/rfc/rfc1818","title":"Best Current Practices","authors":["J. Postel","T. Li","Y. Rekhter"],"rawDate":"1995-08","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1818","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1819":{"rfcNumber":"RFC1819","href":"https://www.rfc-editor.org/rfc/rfc1819","title":"Internet Stream Protocol Version 2 (ST2) Protocol Specification - Version ST2+","authors":["L. Delgrossi, Ed.","L. Berger, Ed."],"rawDate":"1995-08","status":"Historic","obsoletes":["RFC1190","IEN119"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc182":{"aliasOf":"rfc0182"},"rfc1820":{"rfcNumber":"RFC1820","href":"https://www.rfc-editor.org/rfc/rfc1820","title":"Multimedia E-mail (MIME) User Agent Checklist","authors":["E. Huizer"],"rawDate":"1995-08","status":"Informational","obsoletedBy":["RFC1844"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1821":{"rfcNumber":"RFC1821","href":"https://www.rfc-editor.org/rfc/rfc1821","title":"Integration of Real-time Services in an IP-ATM Network Architecture","authors":["M. Borden","E. Crawley","B. Davie","S. Batsell"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1822":{"rfcNumber":"RFC1822","href":"https://www.rfc-editor.org/rfc/rfc1822","title":"A Grant of Rights to Use a Specific IBM patent with Photuris","authors":["J. Lowe"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1823":{"rfcNumber":"RFC1823","href":"https://www.rfc-editor.org/rfc/rfc1823","title":"The LDAP Application Program Interface","authors":["T. Howes","M. Smith"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1824":{"rfcNumber":"RFC1824","href":"https://www.rfc-editor.org/rfc/rfc1824","title":"The Exponential Security System TESS: An Identity-Based Cryptographic Protocol for Authenticated Key-Exchange (E.I.S.S.-Report 1995/4)","authors":["H. Danisch"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1825":{"rfcNumber":"RFC1825","href":"https://www.rfc-editor.org/rfc/rfc1825","title":"Security Architecture for the Internet Protocol","authors":["R. Atkinson"],"rawDate":"1995-08","status":"Proposed Standard","obsoletedBy":["RFC2401"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1826":{"rfcNumber":"RFC1826","href":"https://www.rfc-editor.org/rfc/rfc1826","title":"IP Authentication Header","authors":["R. Atkinson"],"rawDate":"1995-08","status":"Proposed Standard","obsoletedBy":["RFC2402"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1827":{"rfcNumber":"RFC1827","href":"https://www.rfc-editor.org/rfc/rfc1827","title":"IP Encapsulating Security Payload (ESP)","authors":["R. Atkinson"],"rawDate":"1995-08","status":"Proposed Standard","obsoletedBy":["RFC2406"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1828":{"rfcNumber":"RFC1828","href":"https://www.rfc-editor.org/rfc/rfc1828","title":"IP Authentication using Keyed MD5","authors":["P. Metzger","W. Simpson"],"rawDate":"1995-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1829":{"rfcNumber":"RFC1829","href":"https://www.rfc-editor.org/rfc/rfc1829","title":"The ESP DES-CBC Transform","authors":["P. Karn","P. Metzger","W. Simpson"],"rawDate":"1995-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc183":{"aliasOf":"rfc0183"},"rfc1830":{"rfcNumber":"RFC1830","href":"https://www.rfc-editor.org/rfc/rfc1830","title":"SMTP Service Extensions for Transmission of Large and Binary MIME Messages","authors":["G. Vaudreuil"],"rawDate":"1995-08","status":"Experimental","obsoletedBy":["RFC3030"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1831":{"rfcNumber":"RFC1831","href":"https://www.rfc-editor.org/rfc/rfc1831","title":"RPC: Remote Procedure Call Protocol Specification Version 2","authors":["R. Srinivasan"],"rawDate":"1995-08","status":"Proposed Standard","obsoletedBy":["RFC5531"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1832":{"rfcNumber":"RFC1832","href":"https://www.rfc-editor.org/rfc/rfc1832","title":"XDR: External Data Representation Standard","authors":["R. Srinivasan"],"rawDate":"1995-08","status":"Draft Standard","obsoletedBy":["RFC4506"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1833":{"rfcNumber":"RFC1833","href":"https://www.rfc-editor.org/rfc/rfc1833","title":"Binding Protocols for ONC RPC Version 2","authors":["R. Srinivasan"],"rawDate":"1995-08","status":"Proposed Standard","updatedBy":["RFC5665"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1834":{"rfcNumber":"RFC1834","href":"https://www.rfc-editor.org/rfc/rfc1834","title":"Whois and Network Information Lookup Service, Whois++","authors":["J. Gargano","K. Weiss"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1835":{"rfcNumber":"RFC1835","href":"https://www.rfc-editor.org/rfc/rfc1835","title":"Architecture of the WHOIS++ service","authors":["P. Deutsch","R. Schoultz","P. Faltstrom","C. Weider"],"rawDate":"1995-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1836":{"rfcNumber":"RFC1836","href":"https://www.rfc-editor.org/rfc/rfc1836","title":"Representing the O/R Address hierarchy in the X.500 Directory Information Tree","authors":["S. Kille"],"rawDate":"1995-08","status":"Experimental","obsoletedBy":["RFC2294"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1837":{"rfcNumber":"RFC1837","href":"https://www.rfc-editor.org/rfc/rfc1837","title":"Representing Tables and Subtrees in the X.500 Directory","authors":["S. Kille"],"rawDate":"1995-08","status":"Experimental","obsoletedBy":["RFC2293"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1838":{"rfcNumber":"RFC1838","href":"https://www.rfc-editor.org/rfc/rfc1838","title":"Use of the X.500 Directory to support mapping between X.400 and RFC 822 Addresses","authors":["S. Kille"],"rawDate":"1995-08","status":"Experimental","obsoletedBy":["RFC2164"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc184":{"aliasOf":"rfc0184"},"rfc1841":{"rfcNumber":"RFC1841","href":"https://www.rfc-editor.org/rfc/rfc1841","title":"PPP Network Control Protocol for LAN Extension","authors":["J. Chapman","D. Coli","A. Harvey","B. Jensen","K. Rowett"],"rawDate":"1995-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1842":{"rfcNumber":"RFC1842","href":"https://www.rfc-editor.org/rfc/rfc1842","title":"ASCII Printable Characters-Based Chinese Character Encoding for Internet Messages","authors":["Y. Wei","Y. Zhang","J. Li","J. Ding","Y. Jiang"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1843":{"rfcNumber":"RFC1843","href":"https://www.rfc-editor.org/rfc/rfc1843","title":"HZ - A Data Format for Exchanging Files of Arbitrarily Mixed Chinese and ASCII characters","authors":["F. Lee"],"rawDate":"1995-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1844":{"rfcNumber":"RFC1844","href":"https://www.rfc-editor.org/rfc/rfc1844","title":"Multimedia E-mail (MIME) User Agent Checklist","authors":["E. Huizer"],"rawDate":"1995-08","status":"Informational","obsoletes":["RFC1820"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1845":{"rfcNumber":"RFC1845","href":"https://www.rfc-editor.org/rfc/rfc1845","title":"SMTP Service Extension for Checkpoint/Restart","authors":["D. Crocker","N. Freed","A. Cargille"],"rawDate":"1995-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1846":{"rfcNumber":"RFC1846","href":"https://www.rfc-editor.org/rfc/rfc1846","title":"SMTP 521 Reply Code","authors":["A. Durand","F. Dupont"],"rawDate":"1995-09","status":"Experimental","updatedBy":["RFC7504"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1847":{"rfcNumber":"RFC1847","href":"https://www.rfc-editor.org/rfc/rfc1847","title":"Security Multiparts for MIME: Multipart/Signed and Multipart/Encrypted","authors":["J. Galvin","S. Murphy","S. Crocker","N. Freed"],"rawDate":"1995-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1848":{"rfcNumber":"RFC1848","href":"https://www.rfc-editor.org/rfc/rfc1848","title":"MIME Object Security Services","authors":["S. Crocker","N. Freed","J. Galvin","S. Murphy"],"rawDate":"1995-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1849":{"rfcNumber":"RFC1849","href":"https://www.rfc-editor.org/rfc/rfc1849","title":"\"Son of 1036\": News Article Format and Transmission","authors":["H. Spencer"],"rawDate":"2010-03","status":"Historic","obsoletedBy":["RFC5536","RFC5537"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc185":{"aliasOf":"rfc0185"},"rfc1850":{"rfcNumber":"RFC1850","href":"https://www.rfc-editor.org/rfc/rfc1850","title":"OSPF Version 2 Management Information Base","authors":["F. Baker","R. Coltun"],"rawDate":"1995-11","status":"Draft Standard","obsoletedBy":["RFC4750"],"obsoletes":["RFC1253"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1851":{"rfcNumber":"RFC1851","href":"https://www.rfc-editor.org/rfc/rfc1851","title":"The ESP Triple DES Transform","authors":["P. Karn","P. Metzger","W. Simpson"],"rawDate":"1995-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1852":{"rfcNumber":"RFC1852","href":"https://www.rfc-editor.org/rfc/rfc1852","title":"IP Authentication using Keyed SHA","authors":["P. Metzger","W. Simpson"],"rawDate":"1995-09","status":"Experimental","obsoletedBy":["RFC2841"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1853":{"rfcNumber":"RFC1853","href":"https://www.rfc-editor.org/rfc/rfc1853","title":"IP in IP Tunneling","authors":["W. Simpson"],"rawDate":"1995-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1854":{"rfcNumber":"RFC1854","href":"https://www.rfc-editor.org/rfc/rfc1854","title":"SMTP Service Extension for Command Pipelining","authors":["N. Freed"],"rawDate":"1995-10","status":"Proposed Standard","obsoletedBy":["RFC2197"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1855":{"rfcNumber":"RFC1855","href":"https://www.rfc-editor.org/rfc/rfc1855","title":"Netiquette Guidelines","authors":["S. Hambridge"],"rawDate":"1995-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1855","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1856":{"rfcNumber":"RFC1856","href":"https://www.rfc-editor.org/rfc/rfc1856","title":"The Opstat Client-Server Model for Statistics Retrieval","authors":["H. Clark"],"rawDate":"1995-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1857":{"rfcNumber":"RFC1857","href":"https://www.rfc-editor.org/rfc/rfc1857","title":"A Model for Common Operational Statistics","authors":["M. Lambert"],"rawDate":"1995-10","status":"Informational","obsoletes":["RFC1404"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1858":{"rfcNumber":"RFC1858","href":"https://www.rfc-editor.org/rfc/rfc1858","title":"Security Considerations for IP Fragment Filtering","authors":["G. Ziemba","D. Reed","P. Traina"],"rawDate":"1995-10","status":"Informational","updatedBy":["RFC3128"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1859":{"rfcNumber":"RFC1859","href":"https://www.rfc-editor.org/rfc/rfc1859","title":"ISO Transport Class 2 Non-use of Explicit Flow Control over TCP RFC1006 extension","authors":["Y. Pouffary"],"rawDate":"1995-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc186":{"aliasOf":"rfc0186"},"rfc1860":{"rfcNumber":"RFC1860","href":"https://www.rfc-editor.org/rfc/rfc1860","title":"Variable Length Subnet Table For IPv4","authors":["T. Pummill","B. Manning"],"rawDate":"1995-10","status":"Informational","obsoletedBy":["RFC1878"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1861":{"rfcNumber":"RFC1861","href":"https://www.rfc-editor.org/rfc/rfc1861","title":"Simple Network Paging Protocol - Version 3 -Two-Way Enhanced","authors":["A. Gwinn"],"rawDate":"1995-10","status":"Informational","obsoletes":["RFC1645"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1862":{"rfcNumber":"RFC1862","href":"https://www.rfc-editor.org/rfc/rfc1862","title":"Report of the IAB Workshop on Internet Information Infrastructure, October 12-14, 1994","authors":["M. McCahill","J. Romkey","M. Schwartz","K. Sollins","T. Verschuren","C. Weider"],"rawDate":"1995-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1863":{"rfcNumber":"RFC1863","href":"https://www.rfc-editor.org/rfc/rfc1863","title":"A BGP/IDRP Route Server alternative to a full mesh routing","authors":["D. Haskin"],"rawDate":"1995-10","status":"Historic","obsoletedBy":["RFC4223"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1864":{"rfcNumber":"RFC1864","href":"https://www.rfc-editor.org/rfc/rfc1864","title":"The Content-MD5 Header Field","authors":["J. Myers","M. Rose"],"rawDate":"1995-10","status":"Draft Standard","obsoletes":["RFC1544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1865":{"rfcNumber":"RFC1865","href":"https://www.rfc-editor.org/rfc/rfc1865","title":"EDI Meets the Internet Frequently Asked Questions about Electronic Data Interchange (EDI) on the Internet","authors":["W. Houser","J. Griffin","C. Hage"],"rawDate":"1996-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1865","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1866":{"rfcNumber":"RFC1866","href":"https://www.rfc-editor.org/rfc/rfc1866","title":"Hypertext Markup Language - 2.0","authors":["T. Berners-Lee","D. Connolly"],"rawDate":"1995-11","status":"Historic","obsoletedBy":["RFC2854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1867":{"rfcNumber":"RFC1867","href":"https://www.rfc-editor.org/rfc/rfc1867","title":"Form-based File Upload in HTML","authors":["E. Nebel","L. Masinter"],"rawDate":"1995-11","status":"Historic","obsoletedBy":["RFC2854"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1867","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1868":{"rfcNumber":"RFC1868","href":"https://www.rfc-editor.org/rfc/rfc1868","title":"ARP Extension - UNARP","authors":["G. Malkin"],"rawDate":"1995-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1869":{"rfcNumber":"RFC1869","href":"https://www.rfc-editor.org/rfc/rfc1869","title":"SMTP Service Extensions","authors":["J. Klensin","N. Freed","M. Rose","E. Stefferud","D. Crocker"],"rawDate":"1995-11","status":"Internet Standard","obsoletedBy":["RFC2821"],"obsoletes":["RFC1651"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc187":{"aliasOf":"rfc0187"},"rfc1870":{"rfcNumber":"RFC1870","href":"https://www.rfc-editor.org/rfc/rfc1870","title":"SMTP Service Extension for Message Size Declaration","authors":["J. Klensin","N. Freed","K. Moore"],"rawDate":"1995-11","status":"Internet Standard","obsoletes":["RFC1653"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1871":{"rfcNumber":"RFC1871","href":"https://www.rfc-editor.org/rfc/rfc1871","title":"Addendum to RFC 1602 -- Variance Procedure","authors":["J. Postel"],"rawDate":"1995-11","status":"Historic","obsoletedBy":["RFC2026"],"updates":["RFC1602","RFC1603"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1872":{"rfcNumber":"RFC1872","href":"https://www.rfc-editor.org/rfc/rfc1872","title":"The MIME Multipart/Related Content-type","authors":["E. Levinson"],"rawDate":"1995-12","status":"Experimental","obsoletedBy":["RFC2112"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1873":{"rfcNumber":"RFC1873","href":"https://www.rfc-editor.org/rfc/rfc1873","title":"Message/External-Body Content-ID Access Type","authors":["E. Levinson"],"rawDate":"1995-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1874":{"rfcNumber":"RFC1874","href":"https://www.rfc-editor.org/rfc/rfc1874","title":"SGML Media Types","authors":["E. Levinson"],"rawDate":"1995-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1875":{"rfcNumber":"RFC1875","href":"https://www.rfc-editor.org/rfc/rfc1875","title":"UNINETT PCA Policy Statements","authors":["N. Berge"],"rawDate":"1995-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1876":{"rfcNumber":"RFC1876","href":"https://www.rfc-editor.org/rfc/rfc1876","title":"A Means for Expressing Location Information in the Domain Name System","authors":["C. Davis","P. Vixie","T. Goodwin","I. Dickinson"],"rawDate":"1996-01","status":"Experimental","updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1877":{"rfcNumber":"RFC1877","href":"https://www.rfc-editor.org/rfc/rfc1877","title":"PPP Internet Protocol Control Protocol Extensions for Name Server Addresses","authors":["S. Cobb"],"rawDate":"1995-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1878":{"rfcNumber":"RFC1878","href":"https://www.rfc-editor.org/rfc/rfc1878","title":"Variable Length Subnet Table For IPv4","authors":["T. Pummill","B. Manning"],"rawDate":"1995-12","status":"Historic","obsoletes":["RFC1860"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1878","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1879":{"rfcNumber":"RFC1879","href":"https://www.rfc-editor.org/rfc/rfc1879","title":"Class A Subnet Experiment Results and Recommendations","authors":["B. Manning, Ed."],"rawDate":"1996-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc188":{"aliasOf":"rfc0188"},"rfc1880":{"rfcNumber":"RFC1880","href":"https://www.rfc-editor.org/rfc/rfc1880","title":"Internet Official Protocol Standards","authors":["J. Postel, Ed."],"rawDate":"1995-11","status":"Historic","obsoletedBy":["RFC1920"],"obsoletes":["RFC1800"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1881":{"rfcNumber":"RFC1881","href":"https://www.rfc-editor.org/rfc/rfc1881","title":"IPv6 Address Allocation Management","authors":["IAB","IESG"],"rawDate":"1995-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1882":{"rfcNumber":"RFC1882","href":"https://www.rfc-editor.org/rfc/rfc1882","title":"The 12-Days of Technology Before Christmas","authors":["B. Hancock"],"rawDate":"1995-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1883":{"rfcNumber":"RFC1883","href":"https://www.rfc-editor.org/rfc/rfc1883","title":"Internet Protocol, Version 6 (IPv6) Specification","authors":["S. Deering","R. Hinden"],"rawDate":"1995-12","status":"Proposed Standard","obsoletedBy":["RFC2460"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1884":{"rfcNumber":"RFC1884","href":"https://www.rfc-editor.org/rfc/rfc1884","title":"IP Version 6 Addressing Architecture","authors":["R. Hinden, Ed.","S. Deering, Ed."],"rawDate":"1995-12","status":"Historic","obsoletedBy":["RFC2373"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1885":{"rfcNumber":"RFC1885","href":"https://www.rfc-editor.org/rfc/rfc1885","title":"Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6)","authors":["A. Conta","S. Deering"],"rawDate":"1995-12","status":"Proposed Standard","obsoletedBy":["RFC2463"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1886":{"rfcNumber":"RFC1886","href":"https://www.rfc-editor.org/rfc/rfc1886","title":"DNS Extensions to support IP version 6","authors":["S. Thomson","C. Huitema"],"rawDate":"1995-12","status":"Proposed Standard","updatedBy":["RFC2874","RFC3152"],"obsoletedBy":["RFC3596"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1887":{"rfcNumber":"RFC1887","href":"https://www.rfc-editor.org/rfc/rfc1887","title":"An Architecture for IPv6 Unicast Address Allocation","authors":["Y. Rekhter, Ed.","T. Li, Ed."],"rawDate":"1995-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1888":{"rfcNumber":"RFC1888","href":"https://www.rfc-editor.org/rfc/rfc1888","title":"OSI NSAPs and IPv6","authors":["J. Bound","B. Carpenter","D. Harrington","J. Houldsworth","A. Lloyd"],"rawDate":"1996-08","status":"Historic","updatedBy":["RFC4548"],"obsoletedBy":["RFC4048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1889":{"rfcNumber":"RFC1889","href":"https://www.rfc-editor.org/rfc/rfc1889","title":"RTP: A Transport Protocol for Real-Time Applications","authors":["Audio-Video Transport Working Group","H. Schulzrinne","S. Casner","R. Frederick","V. Jacobson"],"rawDate":"1996-01","status":"Proposed Standard","obsoletedBy":["RFC3550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc189":{"aliasOf":"rfc0189"},"rfc1890":{"rfcNumber":"RFC1890","href":"https://www.rfc-editor.org/rfc/rfc1890","title":"RTP Profile for Audio and Video Conferences with Minimal Control","authors":["Audio-Video Transport Working Group","H. Schulzrinne"],"rawDate":"1996-01","status":"Proposed Standard","obsoletedBy":["RFC3551"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1891":{"rfcNumber":"RFC1891","href":"https://www.rfc-editor.org/rfc/rfc1891","title":"SMTP Service Extension for Delivery Status Notifications","authors":["K. Moore"],"rawDate":"1996-01","status":"Proposed Standard","obsoletedBy":["RFC3461"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1891","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1892":{"rfcNumber":"RFC1892","href":"https://www.rfc-editor.org/rfc/rfc1892","title":"The Multipart/Report Content Type for the Reporting of Mail System Administrative Messages","authors":["G. Vaudreuil"],"rawDate":"1996-01","status":"Proposed Standard","obsoletedBy":["RFC3462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1893":{"rfcNumber":"RFC1893","href":"https://www.rfc-editor.org/rfc/rfc1893","title":"Enhanced Mail System Status Codes","authors":["G. Vaudreuil"],"rawDate":"1996-01","status":"Proposed Standard","obsoletedBy":["RFC3463"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1894":{"rfcNumber":"RFC1894","href":"https://www.rfc-editor.org/rfc/rfc1894","title":"An Extensible Message Format for Delivery Status Notifications","authors":["K. Moore","G. Vaudreuil"],"rawDate":"1996-01","status":"Proposed Standard","updatedBy":["RFC2852"],"obsoletedBy":["RFC3464"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1894","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1895":{"rfcNumber":"RFC1895","href":"https://www.rfc-editor.org/rfc/rfc1895","title":"The Application/CALS-1840 Content-type","authors":["E. Levinson"],"rawDate":"1996-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1896":{"rfcNumber":"RFC1896","href":"https://www.rfc-editor.org/rfc/rfc1896","title":"The text/enriched MIME Content-type","authors":["P. Resnick","A. Walker"],"rawDate":"1996-02","status":"Informational","obsoletes":["RFC1523","RFC1563"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1897":{"rfcNumber":"RFC1897","href":"https://www.rfc-editor.org/rfc/rfc1897","title":"IPv6 Testing Address Allocation","authors":["R. Hinden","J. Postel"],"rawDate":"1996-01","status":"Experimental","obsoletedBy":["RFC2471"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1898":{"rfcNumber":"RFC1898","href":"https://www.rfc-editor.org/rfc/rfc1898","title":"CyberCash Credit Card Protocol Version 0.8","authors":["D. Eastlake 3rd","B. Boesch","S. Crocker","M. Yesil"],"rawDate":"1996-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1899":{"rfcNumber":"RFC1899","href":"https://www.rfc-editor.org/rfc/rfc1899","title":"Request for Comments Summary RFC Numbers 1800-1899","authors":["J. Elliott"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc19":{"aliasOf":"rfc0019"},"rfc190":{"aliasOf":"rfc0190"},"rfc1900":{"rfcNumber":"RFC1900","href":"https://www.rfc-editor.org/rfc/rfc1900","title":"Renumbering Needs Work","authors":["B. Carpenter","Y. Rekhter"],"rawDate":"1996-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1901":{"rfcNumber":"RFC1901","href":"https://www.rfc-editor.org/rfc/rfc1901","title":"Introduction to Community-based SNMPv2","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1902":{"rfcNumber":"RFC1902","href":"https://www.rfc-editor.org/rfc/rfc1902","title":"Structure of Management Information for Version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC2578"],"obsoletes":["RFC1442"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1903":{"rfcNumber":"RFC1903","href":"https://www.rfc-editor.org/rfc/rfc1903","title":"Textual Conventions for Version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC2579"],"obsoletes":["RFC1443"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1904":{"rfcNumber":"RFC1904","href":"https://www.rfc-editor.org/rfc/rfc1904","title":"Conformance Statements for Version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC2580"],"obsoletes":["RFC1444"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1905":{"rfcNumber":"RFC1905","href":"https://www.rfc-editor.org/rfc/rfc1905","title":"Protocol Operations for Version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC3416"],"obsoletes":["RFC1448"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1906":{"rfcNumber":"RFC1906","href":"https://www.rfc-editor.org/rfc/rfc1906","title":"Transport Mappings for Version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC3417"],"obsoletes":["RFC1449"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1907":{"rfcNumber":"RFC1907","href":"https://www.rfc-editor.org/rfc/rfc1907","title":"Management Information Base for Version 2 of the Simple Network Management Protocol (SNMPv2)","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC3418"],"obsoletes":["RFC1450"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1908":{"rfcNumber":"RFC1908","href":"https://www.rfc-editor.org/rfc/rfc1908","title":"Coexistence between Version 1 and Version 2 of the Internet-standard Network Management Framework","authors":["J. Case","K. McCloghrie","M. Rose","S. Waldbusser"],"rawDate":"1996-01","status":"Draft Standard","obsoletedBy":["RFC2576"],"obsoletes":["RFC1452"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1909":{"rfcNumber":"RFC1909","href":"https://www.rfc-editor.org/rfc/rfc1909","title":"An Administrative Infrastructure for SNMPv2","authors":["K. McCloghrie, Ed."],"rawDate":"1996-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc191":{"aliasOf":"rfc0191"},"rfc1910":{"rfcNumber":"RFC1910","href":"https://www.rfc-editor.org/rfc/rfc1910","title":"User-based Security Model for SNMPv2","authors":["G. Waters, Ed."],"rawDate":"1996-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1911":{"rfcNumber":"RFC1911","href":"https://www.rfc-editor.org/rfc/rfc1911","title":"Voice Profile for Internet Mail","authors":["G. Vaudreuil"],"rawDate":"1996-02","status":"Experimental","obsoletedBy":["RFC2421","RFC2422","RFC2423"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1912":{"rfcNumber":"RFC1912","href":"https://www.rfc-editor.org/rfc/rfc1912","title":"Common DNS Operational and Configuration Errors","authors":["D. Barr"],"rawDate":"1996-02","status":"Informational","obsoletes":["RFC1537"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1912","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1913":{"rfcNumber":"RFC1913","href":"https://www.rfc-editor.org/rfc/rfc1913","title":"Architecture of the Whois++ Index Service","authors":["C. Weider","J. Fullton","S. Spero"],"rawDate":"1996-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1914":{"rfcNumber":"RFC1914","href":"https://www.rfc-editor.org/rfc/rfc1914","title":"How to Interact with a Whois++ Mesh","authors":["P. Faltstrom","R. Schoultz","C. Weider"],"rawDate":"1996-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1915":{"rfcNumber":"RFC1915","href":"https://www.rfc-editor.org/rfc/rfc1915","title":"Variance for The PPP Compression Control Protocol and The PPP Encryption Control Protocol","authors":["F. Kastenholz"],"rawDate":"1996-02","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1915","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1916":{"rfcNumber":"RFC1916","href":"https://www.rfc-editor.org/rfc/rfc1916","title":"Enterprise Renumbering: Experience and Information Solicitation","authors":["H. Berkowitz","P. Ferguson","W. Leland","P. Nesser"],"rawDate":"1996-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1917":{"rfcNumber":"RFC1917","href":"https://www.rfc-editor.org/rfc/rfc1917","title":"An Appeal to the Internet Community to Return Unused IP Networks (Prefixes) to the IANA","authors":["P. Nesser II"],"rawDate":"1996-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1918":{"rfcNumber":"RFC1918","href":"https://www.rfc-editor.org/rfc/rfc1918","title":"Address Allocation for Private Internets","authors":["Y. Rekhter","B. Moskowitz","D. Karrenberg","G. J. de Groot","E. Lear"],"rawDate":"1996-02","status":"Best Current Practice","updatedBy":["RFC6761"],"obsoletes":["RFC1627","RFC1597"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1918","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1919":{"rfcNumber":"RFC1919","href":"https://www.rfc-editor.org/rfc/rfc1919","title":"Classical versus Transparent IP Proxies","authors":["M. Chatel"],"rawDate":"1996-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc192":{"aliasOf":"rfc0192"},"rfc1920":{"rfcNumber":"RFC1920","href":"https://www.rfc-editor.org/rfc/rfc1920","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1996-03","status":"Historic","obsoletedBy":["RFC2000"],"obsoletes":["RFC1880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1921":{"rfcNumber":"RFC1921","href":"https://www.rfc-editor.org/rfc/rfc1921","title":"TNVIP Protocol","authors":["J. Dujonc"],"rawDate":"1996-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1922":{"rfcNumber":"RFC1922","href":"https://www.rfc-editor.org/rfc/rfc1922","title":"Chinese Character Encoding for Internet Messages","authors":["HF. Zhu","DY. Hu","ZG. Wang","TC. Kao","WCH. Chang","M. Crispin"],"rawDate":"1996-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1923":{"rfcNumber":"RFC1923","href":"https://www.rfc-editor.org/rfc/rfc1923","title":"RIPv1 Applicability Statement for Historic Status","authors":["J. Halpern","S. Bradner"],"rawDate":"1996-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1924":{"rfcNumber":"RFC1924","href":"https://www.rfc-editor.org/rfc/rfc1924","title":"A Compact Representation of IPv6 Addresses","authors":["R. Elz"],"rawDate":"1996-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1925":{"rfcNumber":"RFC1925","href":"https://www.rfc-editor.org/rfc/rfc1925","title":"The Twelve Networking Truths","authors":["R. Callon"],"rawDate":"1996-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1925","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1926":{"rfcNumber":"RFC1926","href":"https://www.rfc-editor.org/rfc/rfc1926","title":"An Experimental Encapsulation of IP Datagrams on Top of ATM","authors":["J. Eriksson"],"rawDate":"1996-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1927":{"rfcNumber":"RFC1927","href":"https://www.rfc-editor.org/rfc/rfc1927","title":"Suggested Additional MIME Types for Associating Documents","authors":["C. Rogers"],"rawDate":"1996-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1927","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1928":{"rfcNumber":"RFC1928","href":"https://www.rfc-editor.org/rfc/rfc1928","title":"SOCKS Protocol Version 5","authors":["M. Leech","M. Ganis","Y. Lee","R. Kuris","D. Koblas","L. Jones"],"rawDate":"1996-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1928","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1929":{"rfcNumber":"RFC1929","href":"https://www.rfc-editor.org/rfc/rfc1929","title":"Username/Password Authentication for SOCKS V5","authors":["M. Leech"],"rawDate":"1996-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc193":{"aliasOf":"rfc0193"},"rfc1930":{"rfcNumber":"RFC1930","href":"https://www.rfc-editor.org/rfc/rfc1930","title":"Guidelines for creation, selection, and registration of an Autonomous System (AS)","authors":["J. Hawkinson","T. Bates"],"rawDate":"1996-03","status":"Best Current Practice","updatedBy":["RFC6996","RFC7300"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1931":{"rfcNumber":"RFC1931","href":"https://www.rfc-editor.org/rfc/rfc1931","title":"Dynamic RARP Extensions for Automatic Network Address Acquisition","authors":["D. Brownell"],"rawDate":"1996-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1932":{"rfcNumber":"RFC1932","href":"https://www.rfc-editor.org/rfc/rfc1932","title":"IP over ATM: A Framework Document","authors":["R. Cole","D. Shur","C. Villamizar"],"rawDate":"1996-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1933":{"rfcNumber":"RFC1933","href":"https://www.rfc-editor.org/rfc/rfc1933","title":"Transition Mechanisms for IPv6 Hosts and Routers","authors":["R. Gilligan","E. Nordmark"],"rawDate":"1996-04","status":"Proposed Standard","obsoletedBy":["RFC2893"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1934":{"rfcNumber":"RFC1934","href":"https://www.rfc-editor.org/rfc/rfc1934","title":"Ascend's Multilink Protocol Plus (MP+)","authors":["K. Smith"],"rawDate":"1996-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1935":{"rfcNumber":"RFC1935","href":"https://www.rfc-editor.org/rfc/rfc1935","title":"What is the Internet, Anyway?","authors":["J. Quarterman","S. Carl-Mitchell"],"rawDate":"1996-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1936":{"rfcNumber":"RFC1936","href":"https://www.rfc-editor.org/rfc/rfc1936","title":"Implementing the Internet Checksum in Hardware","authors":["J. Touch","B. Parham"],"rawDate":"1996-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1936","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1937":{"rfcNumber":"RFC1937","href":"https://www.rfc-editor.org/rfc/rfc1937","title":"\"Local/Remote\" Forwarding Decision in Switched Data Link Subnetworks","authors":["Y. Rekhter","D. Kandlur"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1938":{"rfcNumber":"RFC1938","href":"https://www.rfc-editor.org/rfc/rfc1938","title":"A One-Time Password System","authors":["N. Haller","C. Metz"],"rawDate":"1996-05","status":"Proposed Standard","obsoletedBy":["RFC2289"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1939":{"rfcNumber":"RFC1939","href":"https://www.rfc-editor.org/rfc/rfc1939","title":"Post Office Protocol - Version 3","authors":["J. Myers","M. Rose"],"rawDate":"1996-05","status":"Internet Standard","updatedBy":["RFC1957","RFC2449","RFC6186","RFC8314"],"obsoletes":["RFC1725"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1939","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc194":{"aliasOf":"rfc0194"},"rfc1940":{"rfcNumber":"RFC1940","href":"https://www.rfc-editor.org/rfc/rfc1940","title":"Source Demand Routing: Packet Format and Forwarding Specification (Version 1)","authors":["D. Estrin","T. Li","Y. Rekhter","K. Varadhan","D. Zappala"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1941":{"rfcNumber":"RFC1941","href":"https://www.rfc-editor.org/rfc/rfc1941","title":"Frequently Asked Questions for Schools","authors":["J. Sellers","J. Robichaux"],"rawDate":"1996-05","status":"Informational","obsoletes":["RFC1578"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1942":{"rfcNumber":"RFC1942","href":"https://www.rfc-editor.org/rfc/rfc1942","title":"HTML Tables","authors":["D. Raggett"],"rawDate":"1996-05","status":"Historic","obsoletedBy":["RFC2854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1943":{"rfcNumber":"RFC1943","href":"https://www.rfc-editor.org/rfc/rfc1943","title":"Building an X.500 Directory Service in the US","authors":["B. Jennings"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1944":{"rfcNumber":"RFC1944","href":"https://www.rfc-editor.org/rfc/rfc1944","title":"Benchmarking Methodology for Network Interconnect Devices","authors":["S. Bradner","J. McQuaid"],"rawDate":"1996-05","status":"Informational","obsoletedBy":["RFC2544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1945":{"rfcNumber":"RFC1945","href":"https://www.rfc-editor.org/rfc/rfc1945","title":"Hypertext Transfer Protocol -- HTTP/1.0","authors":["T. Berners-Lee","R. Fielding","H. Frystyk"],"rawDate":"1996-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1945","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1946":{"rfcNumber":"RFC1946","href":"https://www.rfc-editor.org/rfc/rfc1946","title":"Native ATM Support for ST2+","authors":["S. Jackowski"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1947":{"rfcNumber":"RFC1947","href":"https://www.rfc-editor.org/rfc/rfc1947","title":"Greek Character Encoding for Electronic Mail Messages","authors":["D. Spinellis"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1948":{"rfcNumber":"RFC1948","href":"https://www.rfc-editor.org/rfc/rfc1948","title":"Defending Against Sequence Number Attacks","authors":["S. Bellovin"],"rawDate":"1996-05","status":"Informational","obsoletedBy":["RFC6528"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1948","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1949":{"rfcNumber":"RFC1949","href":"https://www.rfc-editor.org/rfc/rfc1949","title":"Scalable Multicast Key Distribution","authors":["A. Ballardie"],"rawDate":"1996-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc195":{"aliasOf":"rfc0195"},"rfc1950":{"rfcNumber":"RFC1950","href":"https://www.rfc-editor.org/rfc/rfc1950","title":"ZLIB Compressed Data Format Specification version 3.3","authors":["P. Deutsch","J-L. Gailly"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1951":{"rfcNumber":"RFC1951","href":"https://www.rfc-editor.org/rfc/rfc1951","title":"DEFLATE Compressed Data Format Specification version 1.3","authors":["P. Deutsch"],"rawDate":"1996-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1951","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1952":{"rfcNumber":"RFC1952","href":"https://www.rfc-editor.org/rfc/rfc1952","title":"GZIP file format specification version 4.3","authors":["P. Deutsch"],"rawDate":"1996-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1952","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1953":{"rfcNumber":"RFC1953","href":"https://www.rfc-editor.org/rfc/rfc1953","title":"Ipsilon Flow Management Protocol Specification for IPv4 Version 1.0","authors":["P. Newman","W. Edwards","R. Hinden","E. Hoffman","F. Ching Liaw","T. Lyon","G. Minshall"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1954":{"rfcNumber":"RFC1954","href":"https://www.rfc-editor.org/rfc/rfc1954","title":"Transmission of Flow Labelled IPv4 on ATM Data Links Ipsilon Version 1.0","authors":["P. Newman","W. Edwards","R. Hinden","E. Hoffman","F. Ching Liaw","T. Lyon","G. Minshall"],"rawDate":"1996-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1955":{"rfcNumber":"RFC1955","href":"https://www.rfc-editor.org/rfc/rfc1955","title":"New Scheme for Internet Routing and Addressing (ENCAPS) for IPNG","authors":["R. Hinden"],"rawDate":"1996-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1956":{"rfcNumber":"RFC1956","href":"https://www.rfc-editor.org/rfc/rfc1956","title":"Registration in the MIL Domain","authors":["D. Engebretson","R. Plzak"],"rawDate":"1996-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1957":{"rfcNumber":"RFC1957","href":"https://www.rfc-editor.org/rfc/rfc1957","title":"Some Observations on Implementations of the Post Office Protocol (POP3)","authors":["R. Nelson"],"rawDate":"1996-06","status":"Informational","updates":["RFC1939"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1958":{"rfcNumber":"RFC1958","href":"https://www.rfc-editor.org/rfc/rfc1958","title":"Architectural Principles of the Internet","authors":["B. Carpenter, Ed."],"rawDate":"1996-06","status":"Informational","updatedBy":["RFC3439"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1959":{"rfcNumber":"RFC1959","href":"https://www.rfc-editor.org/rfc/rfc1959","title":"An LDAP URL Format","authors":["T. Howes","M. Smith"],"rawDate":"1996-06","status":"Proposed Standard","obsoletedBy":["RFC2255"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1959","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc196":{"aliasOf":"rfc0196"},"rfc1960":{"rfcNumber":"RFC1960","href":"https://www.rfc-editor.org/rfc/rfc1960","title":"A String Representation of LDAP Search Filters","authors":["T. Howes"],"rawDate":"1996-06","status":"Proposed Standard","obsoletedBy":["RFC2254"],"obsoletes":["RFC1558"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1961":{"rfcNumber":"RFC1961","href":"https://www.rfc-editor.org/rfc/rfc1961","title":"GSS-API Authentication Method for SOCKS Version 5","authors":["P. McMahon"],"rawDate":"1996-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1962":{"rfcNumber":"RFC1962","href":"https://www.rfc-editor.org/rfc/rfc1962","title":"The PPP Compression Control Protocol (CCP)","authors":["D. Rand"],"rawDate":"1996-06","status":"Proposed Standard","updatedBy":["RFC2153"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1963":{"rfcNumber":"RFC1963","href":"https://www.rfc-editor.org/rfc/rfc1963","title":"PPP Serial Data Transport Protocol (SDTP)","authors":["K. Schneider","S. Venters"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1964":{"rfcNumber":"RFC1964","href":"https://www.rfc-editor.org/rfc/rfc1964","title":"The Kerberos Version 5 GSS-API Mechanism","authors":["J. Linn"],"rawDate":"1996-06","status":"Proposed Standard","updatedBy":["RFC4121","RFC6649"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1964","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1965":{"rfcNumber":"RFC1965","href":"https://www.rfc-editor.org/rfc/rfc1965","title":"Autonomous System Confederations for BGP","authors":["P. Traina"],"rawDate":"1996-06","status":"Experimental","obsoletedBy":["RFC3065"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1966":{"rfcNumber":"RFC1966","href":"https://www.rfc-editor.org/rfc/rfc1966","title":"BGP Route Reflection An alternative to full mesh IBGP","authors":["T. Bates","R. Chandra"],"rawDate":"1996-06","status":"Experimental","updatedBy":["RFC2796"],"obsoletedBy":["RFC4456"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1967":{"rfcNumber":"RFC1967","href":"https://www.rfc-editor.org/rfc/rfc1967","title":"PPP LZS-DCP Compression Protocol (LZS-DCP)","authors":["K. Schneider","R. Friend"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1968":{"rfcNumber":"RFC1968","href":"https://www.rfc-editor.org/rfc/rfc1968","title":"The PPP Encryption Control Protocol (ECP)","authors":["G. Meyer"],"rawDate":"1996-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1969":{"rfcNumber":"RFC1969","href":"https://www.rfc-editor.org/rfc/rfc1969","title":"The PPP DES Encryption Protocol (DESE)","authors":["K. Sklower","G. Meyer"],"rawDate":"1996-06","status":"Informational","obsoletedBy":["RFC2419"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc197":{"aliasOf":"rfc0197"},"rfc1970":{"rfcNumber":"RFC1970","href":"https://www.rfc-editor.org/rfc/rfc1970","title":"Neighbor Discovery for IP Version 6 (IPv6)","authors":["T. Narten","E. Nordmark","W. Simpson"],"rawDate":"1996-08","status":"Proposed Standard","obsoletedBy":["RFC2461"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1971":{"rfcNumber":"RFC1971","href":"https://www.rfc-editor.org/rfc/rfc1971","title":"IPv6 Stateless Address Autoconfiguration","authors":["S. Thomson","T. Narten"],"rawDate":"1996-08","status":"Proposed Standard","obsoletedBy":["RFC2462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1972":{"rfcNumber":"RFC1972","href":"https://www.rfc-editor.org/rfc/rfc1972","title":"A Method for the Transmission of IPv6 Packets over Ethernet Networks","authors":["M. Crawford"],"rawDate":"1996-08","status":"Proposed Standard","obsoletedBy":["RFC2464"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1973":{"rfcNumber":"RFC1973","href":"https://www.rfc-editor.org/rfc/rfc1973","title":"PPP in Frame Relay","authors":["W. Simpson"],"rawDate":"1996-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1974":{"rfcNumber":"RFC1974","href":"https://www.rfc-editor.org/rfc/rfc1974","title":"PPP Stac LZS Compression Protocol","authors":["R. Friend","W. Simpson"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1975":{"rfcNumber":"RFC1975","href":"https://www.rfc-editor.org/rfc/rfc1975","title":"PPP Magnalink Variable Resource Compression","authors":["D. Schremp","J. Black","J. Weiss"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1976":{"rfcNumber":"RFC1976","href":"https://www.rfc-editor.org/rfc/rfc1976","title":"PPP for Data Compression in Data Circuit-Terminating Equipment (DCE)","authors":["K. Schneider","S. Venters"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1977":{"rfcNumber":"RFC1977","href":"https://www.rfc-editor.org/rfc/rfc1977","title":"PPP BSD Compression Protocol","authors":["V. Schryver"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1978":{"rfcNumber":"RFC1978","href":"https://www.rfc-editor.org/rfc/rfc1978","title":"PPP Predictor Compression Protocol","authors":["D. Rand"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1979":{"rfcNumber":"RFC1979","href":"https://www.rfc-editor.org/rfc/rfc1979","title":"PPP Deflate Protocol","authors":["J. Woods"],"rawDate":"1996-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1979","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc198":{"aliasOf":"rfc0198"},"rfc1980":{"rfcNumber":"RFC1980","href":"https://www.rfc-editor.org/rfc/rfc1980","title":"A Proposed Extension to HTML : Client-Side Image Maps","authors":["J. Seidman"],"rawDate":"1996-08","status":"Historic","obsoletedBy":["RFC2854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1981":{"rfcNumber":"RFC1981","href":"https://www.rfc-editor.org/rfc/rfc1981","title":"Path MTU Discovery for IP version 6","authors":["J. McCann","S. Deering","J. Mogul"],"rawDate":"1996-08","status":"Draft Standard","obsoletedBy":["RFC8201"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1981","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1982":{"rfcNumber":"RFC1982","href":"https://www.rfc-editor.org/rfc/rfc1982","title":"Serial Number Arithmetic","authors":["R. Elz","R. Bush"],"rawDate":"1996-08","status":"Proposed Standard","updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1983":{"rfcNumber":"RFC1983","href":"https://www.rfc-editor.org/rfc/rfc1983","title":"Internet Users' Glossary","authors":["G. Malkin, Ed."],"rawDate":"1996-08","status":"Informational","obsoletes":["RFC1392"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1984":{"rfcNumber":"RFC1984","href":"https://www.rfc-editor.org/rfc/rfc1984","title":"IAB and IESG Statement on Cryptographic Technology and the Internet","authors":["IAB","IESG"],"rawDate":"1996-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1985":{"rfcNumber":"RFC1985","href":"https://www.rfc-editor.org/rfc/rfc1985","title":"SMTP Service Extension for Remote Message Queue Starting","authors":["J. De Winter"],"rawDate":"1996-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1985","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1986":{"rfcNumber":"RFC1986","href":"https://www.rfc-editor.org/rfc/rfc1986","title":"Experiments with a Simple File Transfer Protocol for Radio Links using Enhanced Trivial File Transfer Protocol (ETFTP)","authors":["W. Polites","W. Wollman","D. Woo","R. Langan"],"rawDate":"1996-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1987":{"rfcNumber":"RFC1987","href":"https://www.rfc-editor.org/rfc/rfc1987","title":"Ipsilon's General Switch Management Protocol Specification Version 1.1","authors":["P. Newman","W. Edwards","R. Hinden","E. Hoffman","F. Ching Liaw","T. Lyon","G. Minshall"],"rawDate":"1996-08","status":"Informational","updatedBy":["RFC2297"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1988":{"rfcNumber":"RFC1988","href":"https://www.rfc-editor.org/rfc/rfc1988","title":"Conditional Grant of Rights to Specific Hewlett-Packard Patents In Conjunction With the Internet Engineering Task Force's Internet-Standard Network Management Framework","authors":["G. McAnally","D. Gilbert","J. Flick"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1989":{"rfcNumber":"RFC1989","href":"https://www.rfc-editor.org/rfc/rfc1989","title":"PPP Link Quality Monitoring","authors":["W. Simpson"],"rawDate":"1996-08","status":"Draft Standard","obsoletes":["RFC1333"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc199":{"aliasOf":"rfc0199"},"rfc1990":{"rfcNumber":"RFC1990","href":"https://www.rfc-editor.org/rfc/rfc1990","title":"The PPP Multilink Protocol (MP)","authors":["K. Sklower","B. Lloyd","G. McGregor","D. Carr","T. Coradetti"],"rawDate":"1996-08","status":"Draft Standard","obsoletes":["RFC1717"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1991":{"rfcNumber":"RFC1991","href":"https://www.rfc-editor.org/rfc/rfc1991","title":"PGP Message Exchange Formats","authors":["D. Atkins","W. Stallings","P. Zimmermann"],"rawDate":"1996-08","status":"Informational","obsoletedBy":["RFC4880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1992":{"rfcNumber":"RFC1992","href":"https://www.rfc-editor.org/rfc/rfc1992","title":"The Nimrod Routing Architecture","authors":["I. Castineyra","N. Chiappa","M. Steenstrup"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1993":{"rfcNumber":"RFC1993","href":"https://www.rfc-editor.org/rfc/rfc1993","title":"PPP Gandalf FZA Compression Protocol","authors":["A. Barbir","D. Carr","W. Simpson"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1994":{"rfcNumber":"RFC1994","href":"https://www.rfc-editor.org/rfc/rfc1994","title":"PPP Challenge Handshake Authentication Protocol (CHAP)","authors":["W. Simpson"],"rawDate":"1996-08","status":"Draft Standard","updatedBy":["RFC2484"],"obsoletes":["RFC1334"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1995":{"rfcNumber":"RFC1995","href":"https://www.rfc-editor.org/rfc/rfc1995","title":"Incremental Zone Transfer in DNS","authors":["M. Ohta"],"rawDate":"1996-08","status":"Proposed Standard","updatedBy":["RFC9103"],"updates":["RFC1035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1995","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1996":{"rfcNumber":"RFC1996","href":"https://www.rfc-editor.org/rfc/rfc1996","title":"A Mechanism for Prompt Notification of Zone Changes (DNS NOTIFY)","authors":["P. Vixie"],"rawDate":"1996-08","status":"Proposed Standard","updates":["RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1997":{"rfcNumber":"RFC1997","href":"https://www.rfc-editor.org/rfc/rfc1997","title":"BGP Communities Attribute","authors":["R. Chandra","P. Traina","T. Li"],"rawDate":"1996-08","status":"Proposed Standard","updatedBy":["RFC7606","RFC8642"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=1997","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1998":{"rfcNumber":"RFC1998","href":"https://www.rfc-editor.org/rfc/rfc1998","title":"An Application of the BGP Community Attribute in Multi-home Routing","authors":["E. Chen","T. Bates"],"rawDate":"1996-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc1999":{"rfcNumber":"RFC1999","href":"https://www.rfc-editor.org/rfc/rfc1999","title":"Request for Comments Summary RFC Numbers 1900-1999","authors":["J. Elliott"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2":{"aliasOf":"rfc0002"},"rfc20":{"aliasOf":"rfc0020"},"rfc200":{"aliasOf":"rfc0200"},"rfc2000":{"rfcNumber":"RFC2000","href":"https://www.rfc-editor.org/rfc/rfc2000","title":"Internet Official Protocol Standards","authors":["J. Postel, Ed."],"rawDate":"1997-02","status":"Historic","obsoletedBy":["RFC2200"],"obsoletes":["RFC1920"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2001":{"rfcNumber":"RFC2001","href":"https://www.rfc-editor.org/rfc/rfc2001","title":"TCP Slow Start, Congestion Avoidance, Fast Retransmit, and Fast Recovery Algorithms","authors":["W. Stevens"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2581"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2002":{"rfcNumber":"RFC2002","href":"https://www.rfc-editor.org/rfc/rfc2002","title":"IP Mobility Support","authors":["C. Perkins, Ed."],"rawDate":"1996-10","status":"Proposed Standard","updatedBy":["RFC2290"],"obsoletedBy":["RFC3220"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2003":{"rfcNumber":"RFC2003","href":"https://www.rfc-editor.org/rfc/rfc2003","title":"IP Encapsulation within IP","authors":["C. Perkins"],"rawDate":"1996-10","status":"Proposed Standard","updatedBy":["RFC3168","RFC6864"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2003","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2004":{"rfcNumber":"RFC2004","href":"https://www.rfc-editor.org/rfc/rfc2004","title":"Minimal Encapsulation within IP","authors":["C. Perkins"],"rawDate":"1996-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2004","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2005":{"rfcNumber":"RFC2005","href":"https://www.rfc-editor.org/rfc/rfc2005","title":"Applicability Statement for IP Mobility Support","authors":["J. Solomon"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2006":{"rfcNumber":"RFC2006","href":"https://www.rfc-editor.org/rfc/rfc2006","title":"The Definitions of Managed Objects for IP Mobility Support using SMIv2","authors":["D. Cong","M. Hamlen","C. Perkins"],"rawDate":"1996-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2006","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2007":{"rfcNumber":"RFC2007","href":"https://www.rfc-editor.org/rfc/rfc2007","title":"Catalogue of Network Training Materials","authors":["J. Foster","M. Isaacs","M. Prior"],"rawDate":"1996-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2008":{"rfcNumber":"RFC2008","href":"https://www.rfc-editor.org/rfc/rfc2008","title":"Implications of Various Address Allocation Policies for Internet Routing","authors":["Y. Rekhter","T. Li"],"rawDate":"1996-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2009":{"rfcNumber":"RFC2009","href":"https://www.rfc-editor.org/rfc/rfc2009","title":"GPS-Based Addressing and Routing","authors":["T. Imielinski","J. Navas"],"rawDate":"1996-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2010":{"rfcNumber":"RFC2010","href":"https://www.rfc-editor.org/rfc/rfc2010","title":"Operational Criteria for Root Name Servers","authors":["B. Manning","P. Vixie"],"rawDate":"1996-10","status":"Informational","obsoletedBy":["RFC2870"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2011":{"rfcNumber":"RFC2011","href":"https://www.rfc-editor.org/rfc/rfc2011","title":"SNMPv2 Management Information Base for the Internet Protocol using SMIv2","authors":["K. McCloghrie, Ed."],"rawDate":"1996-11","status":"Proposed Standard","obsoletedBy":["RFC4293"],"updates":["RFC1213"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2012":{"rfcNumber":"RFC2012","href":"https://www.rfc-editor.org/rfc/rfc2012","title":"SNMPv2 Management Information Base for the Transmission Control Protocol using SMIv2","authors":["K. McCloghrie, Ed."],"rawDate":"1996-11","status":"Proposed Standard","obsoletedBy":["RFC4022"],"updates":["RFC1213"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2013":{"rfcNumber":"RFC2013","href":"https://www.rfc-editor.org/rfc/rfc2013","title":"SNMPv2 Management Information Base for the User Datagram Protocol using SMIv2","authors":["K. McCloghrie, Ed."],"rawDate":"1996-11","status":"Proposed Standard","obsoletedBy":["RFC4113"],"updates":["RFC1213"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2014":{"rfcNumber":"RFC2014","href":"https://www.rfc-editor.org/rfc/rfc2014","title":"IRTF Research Group Guidelines and Procedures","authors":["A. Weinrib","J. Postel"],"rawDate":"1996-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2015":{"rfcNumber":"RFC2015","href":"https://www.rfc-editor.org/rfc/rfc2015","title":"MIME Security with Pretty Good Privacy (PGP)","authors":["M. Elkins"],"rawDate":"1996-10","status":"Proposed Standard","updatedBy":["RFC3156"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2015","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2016":{"rfcNumber":"RFC2016","href":"https://www.rfc-editor.org/rfc/rfc2016","title":"Uniform Resource Agents (URAs)","authors":["L. Daigle","P. Deutsch","B. Heelan","C. Alpaugh","M. Maclachlan"],"rawDate":"1996-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2017":{"rfcNumber":"RFC2017","href":"https://www.rfc-editor.org/rfc/rfc2017","title":"Definition of the URL MIME External-Body Access-Type","authors":["N. Freed","K. Moore","A. Cargille"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2018":{"rfcNumber":"RFC2018","href":"https://www.rfc-editor.org/rfc/rfc2018","title":"TCP Selective Acknowledgment Options","authors":["M. Mathis","J. Mahdavi","S. Floyd","A. Romanow"],"rawDate":"1996-10","status":"Proposed Standard","obsoletes":["RFC1072"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2018","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2019":{"rfcNumber":"RFC2019","href":"https://www.rfc-editor.org/rfc/rfc2019","title":"Transmission of IPv6 Packets Over FDDI","authors":["M. Crawford"],"rawDate":"1996-10","status":"Proposed Standard","obsoletedBy":["RFC2467"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc202":{"aliasOf":"rfc0202"},"rfc2020":{"rfcNumber":"RFC2020","href":"https://www.rfc-editor.org/rfc/rfc2020","title":"IEEE 802.12 Interface MIB","authors":["J. Flick"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2021":{"rfcNumber":"RFC2021","href":"https://www.rfc-editor.org/rfc/rfc2021","title":"Remote Network Monitoring Management Information Base Version 2 using SMIv2","authors":["S. Waldbusser"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC4502"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2021","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2022":{"rfcNumber":"RFC2022","href":"https://www.rfc-editor.org/rfc/rfc2022","title":"Support for Multicast over UNI 3.0/3.1 based ATM Networks","authors":["G. Armitage"],"rawDate":"1996-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2023":{"rfcNumber":"RFC2023","href":"https://www.rfc-editor.org/rfc/rfc2023","title":"IP Version 6 over PPP","authors":["D. Haskin","E. Allen"],"rawDate":"1996-10","status":"Proposed Standard","obsoletedBy":["RFC2472"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2024":{"rfcNumber":"RFC2024","href":"https://www.rfc-editor.org/rfc/rfc2024","title":"Definitions of Managed Objects for Data Link Switching using SMIv2","authors":["D. Chen, Ed.","P. Gayek","S. Nix"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2025":{"rfcNumber":"RFC2025","href":"https://www.rfc-editor.org/rfc/rfc2025","title":"The Simple Public-Key GSS-API Mechanism (SPKM)","authors":["C. Adams"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2026":{"rfcNumber":"RFC2026","href":"https://www.rfc-editor.org/rfc/rfc2026","title":"The Internet Standards Process -- Revision 3","authors":["S. Bradner"],"rawDate":"1996-10","status":"Best Current Practice","updatedBy":["RFC3667","RFC3668","RFC3932","RFC3978","RFC3979","RFC5378","RFC5657","RFC5742","RFC6410","RFC7100","RFC7127","RFC7475","RFC8179","RFC8789","RFC9282"],"obsoletes":["RFC1602","RFC1871"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2026","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2027":{"rfcNumber":"RFC2027","href":"https://www.rfc-editor.org/rfc/rfc2027","title":"IAB and IESG Selection, Confirmation, and Recall Process: Operation of the Nominating and Recall Committees","authors":["J. Galvin"],"rawDate":"1996-10","status":"Informational","obsoletedBy":["RFC2282"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2028":{"rfcNumber":"RFC2028","href":"https://www.rfc-editor.org/rfc/rfc2028","title":"The Organizations Involved in the IETF Standards Process","authors":["R. Hovey","S. Bradner"],"rawDate":"1996-10","status":"Best Current Practice","updatedBy":["RFC3668","RFC3979","RFC8717"],"obsoletedBy":["RFC9281"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2028","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2029":{"rfcNumber":"RFC2029","href":"https://www.rfc-editor.org/rfc/rfc2029","title":"RTP Payload Format of Sun's CellB Video Encoding","authors":["M. Speer","D. Hoffman"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc203":{"aliasOf":"rfc0203"},"rfc2030":{"rfcNumber":"RFC2030","href":"https://www.rfc-editor.org/rfc/rfc2030","title":"Simple Network Time Protocol (SNTP) Version 4 for IPv4, IPv6 and OSI","authors":["D. Mills"],"rawDate":"1996-10","status":"Informational","obsoletedBy":["RFC4330"],"obsoletes":["RFC1769"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2030","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2031":{"rfcNumber":"RFC2031","href":"https://www.rfc-editor.org/rfc/rfc2031","title":"IETF-ISOC relationship","authors":["E. Huizer"],"rawDate":"1996-10","status":"Informational","obsoletedBy":["RFC8712"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2032":{"rfcNumber":"RFC2032","href":"https://www.rfc-editor.org/rfc/rfc2032","title":"RTP Payload Format for H.261 Video Streams","authors":["T. Turletti","C. Huitema"],"rawDate":"1996-10","status":"Proposed Standard","obsoletedBy":["RFC4587"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2033":{"rfcNumber":"RFC2033","href":"https://www.rfc-editor.org/rfc/rfc2033","title":"Local Mail Transfer Protocol","authors":["J. Myers"],"rawDate":"1996-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2034":{"rfcNumber":"RFC2034","href":"https://www.rfc-editor.org/rfc/rfc2034","title":"SMTP Service Extension for Returning Enhanced Error Codes","authors":["N. Freed"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2035":{"rfcNumber":"RFC2035","href":"https://www.rfc-editor.org/rfc/rfc2035","title":"RTP Payload Format for JPEG-compressed Video","authors":["L. Berc","W. Fenner","R. Frederick","S. McCanne"],"rawDate":"1996-10","status":"Proposed Standard","obsoletedBy":["RFC2435"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2036":{"rfcNumber":"RFC2036","href":"https://www.rfc-editor.org/rfc/rfc2036","title":"Observations on the use of Components of the Class A Address Space within the Internet","authors":["G. Huston"],"rawDate":"1996-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2037":{"rfcNumber":"RFC2037","href":"https://www.rfc-editor.org/rfc/rfc2037","title":"Entity MIB using SMIv2","authors":["K. McCloghrie","A. Bierman"],"rawDate":"1996-10","status":"Proposed Standard","obsoletedBy":["RFC2737"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2038":{"rfcNumber":"RFC2038","href":"https://www.rfc-editor.org/rfc/rfc2038","title":"RTP Payload Format for MPEG1/MPEG2 Video","authors":["D. Hoffman","G. Fernando","V. Goyal"],"rawDate":"1996-10","status":"Proposed Standard","obsoletedBy":["RFC2250"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2039":{"rfcNumber":"RFC2039","href":"https://www.rfc-editor.org/rfc/rfc2039","title":"Applicability of Standards Track MIBs to Management of World Wide Web Servers","authors":["C. Kalbfleisch"],"rawDate":"1996-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc204":{"aliasOf":"rfc0204"},"rfc2040":{"rfcNumber":"RFC2040","href":"https://www.rfc-editor.org/rfc/rfc2040","title":"The RC5, RC5-CBC, RC5-CBC-Pad, and RC5-CTS Algorithms","authors":["R. Baldwin","R. Rivest"],"rawDate":"1996-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2040","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2041":{"rfcNumber":"RFC2041","href":"https://www.rfc-editor.org/rfc/rfc2041","title":"Mobile Network Tracing","authors":["B. Noble","G. Nguyen","M. Satyanarayanan","R. Katz"],"rawDate":"1996-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2042":{"rfcNumber":"RFC2042","href":"https://www.rfc-editor.org/rfc/rfc2042","title":"Registering New BGP Attribute Types","authors":["B. Manning"],"rawDate":"1997-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2042","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2043":{"rfcNumber":"RFC2043","href":"https://www.rfc-editor.org/rfc/rfc2043","title":"The PPP SNA Control Protocol (SNACP)","authors":["A. Fuqua"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2044":{"rfcNumber":"RFC2044","href":"https://www.rfc-editor.org/rfc/rfc2044","title":"UTF-8, a transformation format of Unicode and ISO 10646","authors":["F. Yergeau"],"rawDate":"1996-10","status":"Informational","obsoletedBy":["RFC2279"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2045":{"rfcNumber":"RFC2045","href":"https://www.rfc-editor.org/rfc/rfc2045","title":"Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies","authors":["N. Freed","N. Borenstein"],"rawDate":"1996-11","status":"Draft Standard","updatedBy":["RFC2184","RFC2231","RFC5335","RFC6532"],"obsoletes":["RFC1521","RFC1522","RFC1590"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2045","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2046":{"rfcNumber":"RFC2046","href":"https://www.rfc-editor.org/rfc/rfc2046","title":"Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types","authors":["N. Freed","N. Borenstein"],"rawDate":"1996-11","status":"Draft Standard","updatedBy":["RFC2646","RFC3798","RFC5147","RFC6657","RFC8098"],"obsoletes":["RFC1521","RFC1522","RFC1590"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2046","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2047":{"rfcNumber":"RFC2047","href":"https://www.rfc-editor.org/rfc/rfc2047","title":"MIME (Multipurpose Internet Mail Extensions) Part Three: Message Header Extensions for Non-ASCII Text","authors":["K. Moore"],"rawDate":"1996-11","status":"Draft Standard","updatedBy":["RFC2184","RFC2231"],"obsoletes":["RFC1521","RFC1522","RFC1590"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2047","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2048":{"rfcNumber":"RFC2048","href":"https://www.rfc-editor.org/rfc/rfc2048","title":"Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures","authors":["N. Freed","J. Klensin","J. Postel"],"rawDate":"1996-11","status":"Best Current Practice","updatedBy":["RFC3023"],"obsoletedBy":["RFC4288","RFC4289"],"obsoletes":["RFC1521","RFC1522","RFC1590"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2049":{"rfcNumber":"RFC2049","href":"https://www.rfc-editor.org/rfc/rfc2049","title":"Multipurpose Internet Mail Extensions (MIME) Part Five: Conformance Criteria and Examples","authors":["N. Freed","N. Borenstein"],"rawDate":"1996-11","status":"Draft Standard","obsoletes":["RFC1521","RFC1522","RFC1590"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2049","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc205":{"aliasOf":"rfc0205"},"rfc2050":{"rfcNumber":"RFC2050","href":"https://www.rfc-editor.org/rfc/rfc2050","title":"Internet Registry IP Allocation Guidelines","authors":["K. Hubbard","M. Kosters","D. Conrad","D. Karrenberg","J. Postel"],"rawDate":"1996-11","status":"Historic","obsoletedBy":["RFC7020"],"obsoletes":["RFC1466"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2051":{"rfcNumber":"RFC2051","href":"https://www.rfc-editor.org/rfc/rfc2051","title":"Definitions of Managed Objects for APPC using SMIv2","authors":["M. Allen","B. Clouston","Z. Kielczewski","W. Kwan","B. Moore"],"rawDate":"1996-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2052":{"rfcNumber":"RFC2052","href":"https://www.rfc-editor.org/rfc/rfc2052","title":"A DNS RR for specifying the location of services (DNS SRV)","authors":["A. Gulbrandsen","P. Vixie"],"rawDate":"1996-10","status":"Experimental","obsoletedBy":["RFC2782"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2053":{"rfcNumber":"RFC2053","href":"https://www.rfc-editor.org/rfc/rfc2053","title":"The AM (Armenia) Domain","authors":["E. Der-Danieliantz"],"rawDate":"1996-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2054":{"rfcNumber":"RFC2054","href":"https://www.rfc-editor.org/rfc/rfc2054","title":"WebNFS Client Specification","authors":["B. Callaghan"],"rawDate":"1996-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2055":{"rfcNumber":"RFC2055","href":"https://www.rfc-editor.org/rfc/rfc2055","title":"WebNFS Server Specification","authors":["B. Callaghan"],"rawDate":"1996-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2056":{"rfcNumber":"RFC2056","href":"https://www.rfc-editor.org/rfc/rfc2056","title":"Uniform Resource Locators for Z39.50","authors":["R. Denenberg","J. Kunze","D. Lynch"],"rawDate":"1996-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2057":{"rfcNumber":"RFC2057","href":"https://www.rfc-editor.org/rfc/rfc2057","title":"Source Directed Access Control on the Internet","authors":["S. Bradner"],"rawDate":"1996-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2058":{"rfcNumber":"RFC2058","href":"https://www.rfc-editor.org/rfc/rfc2058","title":"Remote Authentication Dial In User Service (RADIUS)","authors":["C. Rigney","A. Rubens","W. Simpson","S. Willens"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2138"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2059":{"rfcNumber":"RFC2059","href":"https://www.rfc-editor.org/rfc/rfc2059","title":"RADIUS Accounting","authors":["C. Rigney"],"rawDate":"1997-01","status":"Informational","obsoletedBy":["RFC2139"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc206":{"aliasOf":"rfc0206"},"rfc2060":{"rfcNumber":"RFC2060","href":"https://www.rfc-editor.org/rfc/rfc2060","title":"Internet Message Access Protocol - Version 4rev1","authors":["M. Crispin"],"rawDate":"1996-12","status":"Proposed Standard","obsoletedBy":["RFC3501"],"obsoletes":["RFC1730"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2060","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2061":{"rfcNumber":"RFC2061","href":"https://www.rfc-editor.org/rfc/rfc2061","title":"IMAP4 Compatibility with IMAP2bis","authors":["M. Crispin"],"rawDate":"1996-12","status":"Informational","obsoletes":["RFC1730"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2062":{"rfcNumber":"RFC2062","href":"https://www.rfc-editor.org/rfc/rfc2062","title":"Internet Message Access Protocol - Obsolete Syntax","authors":["M. Crispin"],"rawDate":"1996-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2063":{"rfcNumber":"RFC2063","href":"https://www.rfc-editor.org/rfc/rfc2063","title":"Traffic Flow Measurement: Architecture","authors":["N. Brownlee","C. Mills","G. Ruth"],"rawDate":"1997-01","status":"Experimental","obsoletedBy":["RFC2722"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2064":{"rfcNumber":"RFC2064","href":"https://www.rfc-editor.org/rfc/rfc2064","title":"Traffic Flow Measurement: Meter MIB","authors":["N. Brownlee"],"rawDate":"1997-01","status":"Experimental","obsoletedBy":["RFC2720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2065":{"rfcNumber":"RFC2065","href":"https://www.rfc-editor.org/rfc/rfc2065","title":"Domain Name System Security Extensions","authors":["D. Eastlake 3rd","C. Kaufman"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2535"],"updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2066":{"rfcNumber":"RFC2066","href":"https://www.rfc-editor.org/rfc/rfc2066","title":"TELNET CHARSET Option","authors":["R. Gellens"],"rawDate":"1997-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2067":{"rfcNumber":"RFC2067","href":"https://www.rfc-editor.org/rfc/rfc2067","title":"IP over HIPPI","authors":["J. Renwick"],"rawDate":"1997-01","status":"Draft Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2068":{"rfcNumber":"RFC2068","href":"https://www.rfc-editor.org/rfc/rfc2068","title":"Hypertext Transfer Protocol -- HTTP/1.1","authors":["R. Fielding","J. Gettys","J. Mogul","H. Frystyk","T. Berners-Lee"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2616"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2069":{"rfcNumber":"RFC2069","href":"https://www.rfc-editor.org/rfc/rfc2069","title":"An Extension to HTTP : Digest Access Authentication","authors":["J. Franks","P. Hallam-Baker","J. Hostetler","P. Leach","A. Luotonen","E. Sink","L. Stewart"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2617"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2069","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc207":{"aliasOf":"rfc0207"},"rfc2070":{"rfcNumber":"RFC2070","href":"https://www.rfc-editor.org/rfc/rfc2070","title":"Internationalization of the Hypertext Markup Language","authors":["F. Yergeau","G. Nicol","G. Adams","M. Duerst"],"rawDate":"1997-01","status":"Historic","obsoletedBy":["RFC2854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2071":{"rfcNumber":"RFC2071","href":"https://www.rfc-editor.org/rfc/rfc2071","title":"Network Renumbering Overview: Why would I want it and what is it anyway?","authors":["P. Ferguson","H. Berkowitz"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2072":{"rfcNumber":"RFC2072","href":"https://www.rfc-editor.org/rfc/rfc2072","title":"Router Renumbering Guide","authors":["H. Berkowitz"],"rawDate":"1997-01","status":"Informational","updatedBy":["RFC4192"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2073":{"rfcNumber":"RFC2073","href":"https://www.rfc-editor.org/rfc/rfc2073","title":"An IPv6 Provider-Based Unicast Address Format","authors":["Y. Rekhter","P. Lothberg","R. Hinden","S. Deering","J. Postel"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2374"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2074":{"rfcNumber":"RFC2074","href":"https://www.rfc-editor.org/rfc/rfc2074","title":"Remote Network Monitoring MIB Protocol Identifiers","authors":["A. Bierman","R. Iddon"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2895"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2075":{"rfcNumber":"RFC2075","href":"https://www.rfc-editor.org/rfc/rfc2075","title":"IP Echo Host Service","authors":["C. Partridge"],"rawDate":"1997-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2076":{"rfcNumber":"RFC2076","href":"https://www.rfc-editor.org/rfc/rfc2076","title":"Common Internet Message Headers","authors":["J. Palme"],"rawDate":"1997-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2076","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2077":{"rfcNumber":"RFC2077","href":"https://www.rfc-editor.org/rfc/rfc2077","title":"The Model Primary Content Type for Multipurpose Internet Mail Extensions","authors":["S. Nelson","C. Parks","Mitra"],"rawDate":"1997-01","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2078":{"rfcNumber":"RFC2078","href":"https://www.rfc-editor.org/rfc/rfc2078","title":"Generic Security Service Application Program Interface, Version 2","authors":["J. Linn"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2743"],"obsoletes":["RFC1508"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2079":{"rfcNumber":"RFC2079","href":"https://www.rfc-editor.org/rfc/rfc2079","title":"Definition of an X.500 Attribute Type and an Object Class to Hold Uniform Resource Identifiers (URIs)","authors":["M. Smith"],"rawDate":"1997-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc208":{"aliasOf":"rfc0208"},"rfc2080":{"rfcNumber":"RFC2080","href":"https://www.rfc-editor.org/rfc/rfc2080","title":"RIPng for IPv6","authors":["G. Malkin","R. Minnear"],"rawDate":"1997-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2081":{"rfcNumber":"RFC2081","href":"https://www.rfc-editor.org/rfc/rfc2081","title":"RIPng Protocol Applicability Statement","authors":["G. Malkin"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2082":{"rfcNumber":"RFC2082","href":"https://www.rfc-editor.org/rfc/rfc2082","title":"RIP-2 MD5 Authentication","authors":["F. Baker","R. Atkinson"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC4822"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2083":{"rfcNumber":"RFC2083","href":"https://www.rfc-editor.org/rfc/rfc2083","title":"PNG (Portable Network Graphics) Specification Version 1.0","authors":["T. Boutell"],"rawDate":"1997-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2084":{"rfcNumber":"RFC2084","href":"https://www.rfc-editor.org/rfc/rfc2084","title":"Considerations for Web Transaction Security","authors":["G. Bossert","S. Cooper","W. Drummond"],"rawDate":"1997-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2085":{"rfcNumber":"RFC2085","href":"https://www.rfc-editor.org/rfc/rfc2085","title":"HMAC-MD5 IP Authentication with Replay Prevention","authors":["M. Oehler","R. Glenn"],"rawDate":"1997-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2086":{"rfcNumber":"RFC2086","href":"https://www.rfc-editor.org/rfc/rfc2086","title":"IMAP4 ACL extension","authors":["J. Myers"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC4314"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2087":{"rfcNumber":"RFC2087","href":"https://www.rfc-editor.org/rfc/rfc2087","title":"IMAP4 QUOTA extension","authors":["J. Myers"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC9208"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2088":{"rfcNumber":"RFC2088","href":"https://www.rfc-editor.org/rfc/rfc2088","title":"IMAP4 non-synchronizing literals","authors":["J. Myers"],"rawDate":"1997-01","status":"Proposed Standard","updatedBy":["RFC4466"],"obsoletedBy":["RFC7888"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2089":{"rfcNumber":"RFC2089","href":"https://www.rfc-editor.org/rfc/rfc2089","title":"V2ToV1 Mapping SNMPv2 onto SNMPv1 within a bi-lingual SNMP agent","authors":["B. Wijnen","D. Levi"],"rawDate":"1997-01","status":"Informational","obsoletedBy":["RFC2576"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc209":{"aliasOf":"rfc0209"},"rfc2090":{"rfcNumber":"RFC2090","href":"https://www.rfc-editor.org/rfc/rfc2090","title":"TFTP Multicast Option","authors":["A. Emberson"],"rawDate":"1997-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2091":{"rfcNumber":"RFC2091","href":"https://www.rfc-editor.org/rfc/rfc2091","title":"Triggered Extensions to RIP to Support Demand Circuits","authors":["G. Meyer","S. Sherry"],"rawDate":"1997-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2092":{"rfcNumber":"RFC2092","href":"https://www.rfc-editor.org/rfc/rfc2092","title":"Protocol Analysis for Triggered RIP","authors":["S. Sherry","G. Meyer"],"rawDate":"1997-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2092","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2093":{"rfcNumber":"RFC2093","href":"https://www.rfc-editor.org/rfc/rfc2093","title":"Group Key Management Protocol (GKMP) Specification","authors":["H. Harney","C. Muckenhirn"],"rawDate":"1997-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2094":{"rfcNumber":"RFC2094","href":"https://www.rfc-editor.org/rfc/rfc2094","title":"Group Key Management Protocol (GKMP) Architecture","authors":["H. Harney","C. Muckenhirn"],"rawDate":"1997-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2095":{"rfcNumber":"RFC2095","href":"https://www.rfc-editor.org/rfc/rfc2095","title":"IMAP/POP AUTHorize Extension for Simple Challenge/Response","authors":["J. Klensin","R. Catoe","P. Krumviede"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC2195"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2096":{"rfcNumber":"RFC2096","href":"https://www.rfc-editor.org/rfc/rfc2096","title":"IP Forwarding Table MIB","authors":["F. Baker"],"rawDate":"1997-01","status":"Proposed Standard","obsoletedBy":["RFC4292"],"obsoletes":["RFC1354"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2097":{"rfcNumber":"RFC2097","href":"https://www.rfc-editor.org/rfc/rfc2097","title":"The PPP NetBIOS Frames Control Protocol (NBFCP)","authors":["G. Pall"],"rawDate":"1997-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2098":{"rfcNumber":"RFC2098","href":"https://www.rfc-editor.org/rfc/rfc2098","title":"Toshiba's Router Architecture Extensions for ATM : Overview","authors":["Y. Katsube","K. Nagami","H. Esaki"],"rawDate":"1997-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2099":{"rfcNumber":"RFC2099","href":"https://www.rfc-editor.org/rfc/rfc2099","title":"Request for Comments Summary RFC Numbers 2000-2099","authors":["J. Elliott"],"rawDate":"1997-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc21":{"aliasOf":"rfc0021"},"rfc210":{"aliasOf":"rfc0210"},"rfc2100":{"rfcNumber":"RFC2100","href":"https://www.rfc-editor.org/rfc/rfc2100","title":"The Naming of Hosts","authors":["J. Ashworth"],"rawDate":"1997-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2100","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2101":{"rfcNumber":"RFC2101","href":"https://www.rfc-editor.org/rfc/rfc2101","title":"IPv4 Address Behaviour Today","authors":["B. Carpenter","J. Crowcroft","Y. Rekhter"],"rawDate":"1997-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2102":{"rfcNumber":"RFC2102","href":"https://www.rfc-editor.org/rfc/rfc2102","title":"Multicast Support for Nimrod : Requirements and Solution Approaches","authors":["R. Ramanathan"],"rawDate":"1997-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2103":{"rfcNumber":"RFC2103","href":"https://www.rfc-editor.org/rfc/rfc2103","title":"Mobility Support for Nimrod : Challenges and Solution Approaches","authors":["R. Ramanathan"],"rawDate":"1997-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2104":{"rfcNumber":"RFC2104","href":"https://www.rfc-editor.org/rfc/rfc2104","title":"HMAC: Keyed-Hashing for Message Authentication","authors":["H. Krawczyk","M. Bellare","R. Canetti"],"rawDate":"1997-02","status":"Informational","updatedBy":["RFC6151"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2104","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2105":{"rfcNumber":"RFC2105","href":"https://www.rfc-editor.org/rfc/rfc2105","title":"Cisco Systems' Tag Switching Architecture Overview","authors":["Y. Rekhter","B. Davie","D. Katz","E. Rosen","G. Swallow"],"rawDate":"1997-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2106":{"rfcNumber":"RFC2106","href":"https://www.rfc-editor.org/rfc/rfc2106","title":"Data Link Switching Remote Access Protocol","authors":["S. Chiang","J. Lee","H. Yasuda"],"rawDate":"1997-02","status":"Informational","obsoletedBy":["RFC2114"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2107":{"rfcNumber":"RFC2107","href":"https://www.rfc-editor.org/rfc/rfc2107","title":"Ascend Tunnel Management Protocol - ATMP","authors":["K. Hamzeh"],"rawDate":"1997-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2108":{"rfcNumber":"RFC2108","href":"https://www.rfc-editor.org/rfc/rfc2108","title":"Definitions of Managed Objects for IEEE 802.3 Repeater Devices using SMIv2","authors":["K. de Graaf","D. Romascanu","D. McMaster","K. McCloghrie"],"rawDate":"1997-02","status":"Proposed Standard","obsoletes":["RFC1516"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2109":{"rfcNumber":"RFC2109","href":"https://www.rfc-editor.org/rfc/rfc2109","title":"HTTP State Management Mechanism","authors":["D. Kristol","L. Montulli"],"rawDate":"1997-02","status":"Historic","obsoletedBy":["RFC2965"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc211":{"aliasOf":"rfc0211"},"rfc2110":{"rfcNumber":"RFC2110","href":"https://www.rfc-editor.org/rfc/rfc2110","title":"MIME E-mail Encapsulation of Aggregate Documents, such as HTML (MHTML)","authors":["J. Palme","A. Hopmann"],"rawDate":"1997-03","status":"Proposed Standard","obsoletedBy":["RFC2557"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2111":{"rfcNumber":"RFC2111","href":"https://www.rfc-editor.org/rfc/rfc2111","title":"Content-ID and Message-ID Uniform Resource Locators","authors":["E. Levinson"],"rawDate":"1997-03","status":"Proposed Standard","obsoletedBy":["RFC2392"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2112":{"rfcNumber":"RFC2112","href":"https://www.rfc-editor.org/rfc/rfc2112","title":"The MIME Multipart/Related Content-type","authors":["E. Levinson"],"rawDate":"1997-03","status":"Proposed Standard","obsoletedBy":["RFC2387"],"obsoletes":["RFC1872"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2113":{"rfcNumber":"RFC2113","href":"https://www.rfc-editor.org/rfc/rfc2113","title":"IP Router Alert Option","authors":["D. Katz"],"rawDate":"1997-02","status":"Proposed Standard","updatedBy":["RFC5350","RFC6398"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2114":{"rfcNumber":"RFC2114","href":"https://www.rfc-editor.org/rfc/rfc2114","title":"Data Link Switching Client Access Protocol","authors":["S. Chiang","J. Lee","H. Yasuda"],"rawDate":"1997-02","status":"Informational","obsoletes":["RFC2106"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2115":{"rfcNumber":"RFC2115","href":"https://www.rfc-editor.org/rfc/rfc2115","title":"Management Information Base for Frame Relay DTEs Using SMIv2","authors":["C. Brown","F. Baker"],"rawDate":"1997-09","status":"Draft Standard","obsoletes":["RFC1315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2116":{"rfcNumber":"RFC2116","href":"https://www.rfc-editor.org/rfc/rfc2116","title":"X.500 Implementations Catalog-96","authors":["C. Apple","K. Rossen"],"rawDate":"1997-04","status":"Informational","obsoletes":["RFC1632"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2117":{"rfcNumber":"RFC2117","href":"https://www.rfc-editor.org/rfc/rfc2117","title":"Protocol Independent Multicast-Sparse Mode (PIM-SM): Protocol Specification","authors":["D. Estrin","D. Farinacci","A. Helmy","D. Thaler","S. Deering","M. Handley","V. Jacobson","C. Liu","P. Sharma","L. Wei"],"rawDate":"1997-06","status":"Experimental","obsoletedBy":["RFC2362"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2118":{"rfcNumber":"RFC2118","href":"https://www.rfc-editor.org/rfc/rfc2118","title":"Microsoft Point-To-Point Compression (MPPC) Protocol","authors":["G. Pall"],"rawDate":"1997-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2119":{"rfcNumber":"RFC2119","href":"https://www.rfc-editor.org/rfc/rfc2119","title":"Key words for use in RFCs to Indicate Requirement Levels","authors":["S. Bradner"],"rawDate":"1997-03","status":"Best Current Practice","updatedBy":["RFC8174"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2119","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc212":{"aliasOf":"rfc0212"},"rfc2120":{"rfcNumber":"RFC2120","href":"https://www.rfc-editor.org/rfc/rfc2120","title":"Managing the X.500 Root Naming Context","authors":["D. Chadwick"],"rawDate":"1997-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2121":{"rfcNumber":"RFC2121","href":"https://www.rfc-editor.org/rfc/rfc2121","title":"Issues affecting MARS Cluster Size","authors":["G. Armitage"],"rawDate":"1997-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2122":{"rfcNumber":"RFC2122","href":"https://www.rfc-editor.org/rfc/rfc2122","title":"VEMMI URL Specification","authors":["D. Mavrakis","H. Layec","K. Kartmann"],"rawDate":"1997-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2123":{"rfcNumber":"RFC2123","href":"https://www.rfc-editor.org/rfc/rfc2123","title":"Traffic Flow Measurement: Experiences with NeTraMet","authors":["N. Brownlee"],"rawDate":"1997-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2124":{"rfcNumber":"RFC2124","href":"https://www.rfc-editor.org/rfc/rfc2124","title":"Cabletron's Light-weight Flow Admission Protocol Specification Version 1.0","authors":["P. Amsden","J. Amweg","P. Calato","S. Bensley","G. Lyons"],"rawDate":"1997-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2125":{"rfcNumber":"RFC2125","href":"https://www.rfc-editor.org/rfc/rfc2125","title":"The PPP Bandwidth Allocation Protocol (BAP) / The PPP Bandwidth Allocation Control Protocol (BACP)","authors":["C. Richards","K. Smith"],"rawDate":"1997-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2126":{"rfcNumber":"RFC2126","href":"https://www.rfc-editor.org/rfc/rfc2126","title":"ISO Transport Service on top of TCP (ITOT)","authors":["Y. Pouffary","A. Young"],"rawDate":"1997-03","status":"Proposed Standard","updates":["RFC1006"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2126","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2127":{"rfcNumber":"RFC2127","href":"https://www.rfc-editor.org/rfc/rfc2127","title":"ISDN Management Information Base using SMIv2","authors":["G. Roeck, Ed."],"rawDate":"1997-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2127","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2128":{"rfcNumber":"RFC2128","href":"https://www.rfc-editor.org/rfc/rfc2128","title":"Dial Control Management Information Base using SMIv2","authors":["G. Roeck, Ed."],"rawDate":"1997-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2129":{"rfcNumber":"RFC2129","href":"https://www.rfc-editor.org/rfc/rfc2129","title":"Toshiba's Flow Attribute Notification Protocol (FANP) Specification","authors":["K. Nagami","Y. Katsube","Y. Shobatake","A. Mogi","S. Matsuzawa","T. Jinmei","H. Esaki"],"rawDate":"1997-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc213":{"aliasOf":"rfc0213"},"rfc2130":{"rfcNumber":"RFC2130","href":"https://www.rfc-editor.org/rfc/rfc2130","title":"The Report of the IAB Character Set Workshop held 29 February - 1 March, 1996","authors":["C. Weider","C. Preston","K. Simonsen","H. Alvestrand","R. Atkinson","M. Crispin","P. Svanberg"],"rawDate":"1997-04","status":"Informational","updatedBy":["RFC6055"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2131":{"rfcNumber":"RFC2131","href":"https://www.rfc-editor.org/rfc/rfc2131","title":"Dynamic Host Configuration Protocol","authors":["R. Droms"],"rawDate":"1997-03","status":"Draft Standard","updatedBy":["RFC3396","RFC4361","RFC5494","RFC6842"],"obsoletes":["RFC1541"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2131","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2132":{"rfcNumber":"RFC2132","href":"https://www.rfc-editor.org/rfc/rfc2132","title":"DHCP Options and BOOTP Vendor Extensions","authors":["S. Alexander","R. Droms"],"rawDate":"1997-03","status":"Draft Standard","updatedBy":["RFC3442","RFC3942","RFC4361","RFC4833","RFC5494"],"obsoletes":["RFC1533"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2132","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2133":{"rfcNumber":"RFC2133","href":"https://www.rfc-editor.org/rfc/rfc2133","title":"Basic Socket Interface Extensions for IPv6","authors":["R. Gilligan","S. Thomson","J. Bound","W. Stevens"],"rawDate":"1997-04","status":"Informational","obsoletedBy":["RFC2553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2134":{"rfcNumber":"RFC2134","href":"https://www.rfc-editor.org/rfc/rfc2134","title":"Articles of Incorporation of Internet Society","authors":["ISOC Board of Trustees"],"rawDate":"1997-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2135":{"rfcNumber":"RFC2135","href":"https://www.rfc-editor.org/rfc/rfc2135","title":"Internet Society By-Laws","authors":["ISOC Board of Trustees"],"rawDate":"1997-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2136":{"rfcNumber":"RFC2136","href":"https://www.rfc-editor.org/rfc/rfc2136","title":"Dynamic Updates in the Domain Name System (DNS UPDATE)","authors":["P. Vixie, Ed.","S. Thomson","Y. Rekhter","J. Bound"],"rawDate":"1997-04","status":"Proposed Standard","updatedBy":["RFC3007","RFC4035","RFC4033","RFC4034"],"updates":["RFC1035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2136","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2137":{"rfcNumber":"RFC2137","href":"https://www.rfc-editor.org/rfc/rfc2137","title":"Secure Domain Name System Dynamic Update","authors":["D. Eastlake 3rd"],"rawDate":"1997-04","status":"Proposed Standard","obsoletedBy":["RFC3007"],"updates":["RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2138":{"rfcNumber":"RFC2138","href":"https://www.rfc-editor.org/rfc/rfc2138","title":"Remote Authentication Dial In User Service (RADIUS)","authors":["C. Rigney","A. Rubens","W. Simpson","S. Willens"],"rawDate":"1997-04","status":"Proposed Standard","obsoletedBy":["RFC2865"],"obsoletes":["RFC2058"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2139":{"rfcNumber":"RFC2139","href":"https://www.rfc-editor.org/rfc/rfc2139","title":"RADIUS Accounting","authors":["C. Rigney"],"rawDate":"1997-04","status":"Informational","obsoletedBy":["RFC2866"],"obsoletes":["RFC2059"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc214":{"aliasOf":"rfc0214"},"rfc2140":{"rfcNumber":"RFC2140","href":"https://www.rfc-editor.org/rfc/rfc2140","title":"TCP Control Block Interdependence","authors":["J. Touch"],"rawDate":"1997-04","status":"Informational","obsoletedBy":["RFC9040"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2141":{"rfcNumber":"RFC2141","href":"https://www.rfc-editor.org/rfc/rfc2141","title":"URN Syntax","authors":["R. Moats"],"rawDate":"1997-05","status":"Proposed Standard","obsoletedBy":["RFC8141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2141","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2142":{"rfcNumber":"RFC2142","href":"https://www.rfc-editor.org/rfc/rfc2142","title":"Mailbox Names for Common Services, Roles and Functions","authors":["D. Crocker"],"rawDate":"1997-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2142","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2143":{"rfcNumber":"RFC2143","href":"https://www.rfc-editor.org/rfc/rfc2143","title":"Encapsulating IP with the Small Computer System Interface","authors":["B. Elliston"],"rawDate":"1997-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2144":{"rfcNumber":"RFC2144","href":"https://www.rfc-editor.org/rfc/rfc2144","title":"The CAST-128 Encryption Algorithm","authors":["C. Adams"],"rawDate":"1997-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2145":{"rfcNumber":"RFC2145","href":"https://www.rfc-editor.org/rfc/rfc2145","title":"Use and Interpretation of HTTP Version Numbers","authors":["J. C. Mogul","R. Fielding","J. Gettys","H. Frystyk"],"rawDate":"1997-05","status":"Informational","obsoletedBy":["RFC7230"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2146":{"rfcNumber":"RFC2146","href":"https://www.rfc-editor.org/rfc/rfc2146","title":"U.S. Government Internet Domain Names","authors":["Federal Networking Council"],"rawDate":"1997-05","status":"Informational","obsoletes":["RFC1816"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2147":{"rfcNumber":"RFC2147","href":"https://www.rfc-editor.org/rfc/rfc2147","title":"TCP and UDP over IPv6 Jumbograms","authors":["D. Borman"],"rawDate":"1997-05","status":"Proposed Standard","obsoletedBy":["RFC2675"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2148":{"rfcNumber":"RFC2148","href":"https://www.rfc-editor.org/rfc/rfc2148","title":"Deployment of the Internet White Pages Service","authors":["H. Alvestrand","P. Jurg"],"rawDate":"1997-09","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2149":{"rfcNumber":"RFC2149","href":"https://www.rfc-editor.org/rfc/rfc2149","title":"Multicast Server Architectures for MARS-based ATM multicasting","authors":["R. Talpade","M. Ammar"],"rawDate":"1997-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc215":{"aliasOf":"rfc0215"},"rfc2150":{"rfcNumber":"RFC2150","href":"https://www.rfc-editor.org/rfc/rfc2150","title":"Humanities and Arts: Sharing Center Stage on the Internet","authors":["J. Max","W. Stickle"],"rawDate":"1997-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2151":{"rfcNumber":"RFC2151","href":"https://www.rfc-editor.org/rfc/rfc2151","title":"A Primer On Internet and TCP/IP Tools and Utilities","authors":["G. Kessler","S. Shepard"],"rawDate":"1997-06","status":"Informational","obsoletes":["RFC1739"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2152":{"rfcNumber":"RFC2152","href":"https://www.rfc-editor.org/rfc/rfc2152","title":"UTF-7 A Mail-Safe Transformation Format of Unicode","authors":["D. Goldsmith","M. Davis"],"rawDate":"1997-05","status":"Informational","obsoletes":["RFC1642"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2152","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2153":{"rfcNumber":"RFC2153","href":"https://www.rfc-editor.org/rfc/rfc2153","title":"PPP Vendor Extensions","authors":["W. Simpson"],"rawDate":"1997-05","status":"Informational","updatedBy":["RFC5342","RFC7042"],"updates":["RFC1661","RFC1962"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2154":{"rfcNumber":"RFC2154","href":"https://www.rfc-editor.org/rfc/rfc2154","title":"OSPF with Digital Signatures","authors":["S. Murphy","M. Badger","B. Wellington"],"rawDate":"1997-06","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2154","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2155":{"rfcNumber":"RFC2155","href":"https://www.rfc-editor.org/rfc/rfc2155","title":"Definitions of Managed Objects for APPN using SMIv2","authors":["B. Clouston","B. Moore"],"rawDate":"1997-06","status":"Proposed Standard","obsoletedBy":["RFC2455"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2156":{"rfcNumber":"RFC2156","href":"https://www.rfc-editor.org/rfc/rfc2156","title":"MIXER (Mime Internet X.400 Enhanced Relay): Mapping between X.400 and RFC 822/MIME","authors":["S. Kille"],"rawDate":"1998-01","status":"Proposed Standard","updates":["RFC0822"],"obsoletes":["RFC0987","RFC1026","RFC1138","RFC1148","RFC1327","RFC1495"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2157":{"rfcNumber":"RFC2157","href":"https://www.rfc-editor.org/rfc/rfc2157","title":"Mapping between X.400 and RFC-822/MIME Message Bodies","authors":["H. Alvestrand"],"rawDate":"1998-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2157","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2158":{"rfcNumber":"RFC2158","href":"https://www.rfc-editor.org/rfc/rfc2158","title":"X.400 Image Body Parts","authors":["H. Alvestrand"],"rawDate":"1998-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2159":{"rfcNumber":"RFC2159","href":"https://www.rfc-editor.org/rfc/rfc2159","title":"A MIME Body Part for FAX","authors":["H. Alvestrand"],"rawDate":"1998-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc216":{"aliasOf":"rfc0216"},"rfc2160":{"rfcNumber":"RFC2160","href":"https://www.rfc-editor.org/rfc/rfc2160","title":"Carrying PostScript in X.400 and MIME","authors":["H. Alvestrand"],"rawDate":"1998-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2161":{"rfcNumber":"RFC2161","href":"https://www.rfc-editor.org/rfc/rfc2161","title":"A MIME Body Part for ODA","authors":["H. Alvestrand"],"rawDate":"1998-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2162":{"rfcNumber":"RFC2162","href":"https://www.rfc-editor.org/rfc/rfc2162","title":"MaXIM-11 - Mapping between X.400 / Internet mail and Mail-11 mail","authors":["C. Allocchio"],"rawDate":"1998-01","status":"Experimental","obsoletes":["RFC1405"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2163":{"rfcNumber":"RFC2163","href":"https://www.rfc-editor.org/rfc/rfc2163","title":"Using the Internet DNS to Distribute MIXER Conformant Global Address Mapping (MCGAM)","authors":["C. Allocchio"],"rawDate":"1998-01","status":"Proposed Standard","updatedBy":["RFC3597"],"obsoletes":["RFC1664"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2164":{"rfcNumber":"RFC2164","href":"https://www.rfc-editor.org/rfc/rfc2164","title":"Use of an X.500/LDAP directory to support MIXER address mapping","authors":["S. Kille"],"rawDate":"1998-01","status":"Proposed Standard","obsoletes":["RFC1838"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2165":{"rfcNumber":"RFC2165","href":"https://www.rfc-editor.org/rfc/rfc2165","title":"Service Location Protocol","authors":["J. Veizades","E. Guttman","C. Perkins","S. Kaplan"],"rawDate":"1997-06","status":"Proposed Standard","updatedBy":["RFC2608","RFC2609"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2166":{"rfcNumber":"RFC2166","href":"https://www.rfc-editor.org/rfc/rfc2166","title":"APPN Implementer's Workshop Closed Pages Document DLSw v2.0 Enhancements","authors":["D. Bryant","P. Brittain"],"rawDate":"1997-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2167":{"rfcNumber":"RFC2167","href":"https://www.rfc-editor.org/rfc/rfc2167","title":"Referral Whois (RWhois) Protocol V1.5","authors":["S. Williamson","M. Kosters","D. Blacka","J. Singh","K. Zeilstra"],"rawDate":"1997-06","status":"Informational","obsoletes":["RFC1714"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2168":{"rfcNumber":"RFC2168","href":"https://www.rfc-editor.org/rfc/rfc2168","title":"Resolution of Uniform Resource Identifiers using the Domain Name System","authors":["R. Daniel","M. Mealling"],"rawDate":"1997-06","status":"Experimental","updatedBy":["RFC2915"],"obsoletedBy":["RFC3401","RFC3402","RFC3403","RFC3404"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2169":{"rfcNumber":"RFC2169","href":"https://www.rfc-editor.org/rfc/rfc2169","title":"A Trivial Convention for using HTTP in URN Resolution","authors":["R. Daniel"],"rawDate":"1997-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc217":{"aliasOf":"rfc0217"},"rfc2170":{"rfcNumber":"RFC2170","href":"https://www.rfc-editor.org/rfc/rfc2170","title":"Application REQuested IP over ATM (AREQUIPA)","authors":["W. Almesberger","J. Le Boudec","P. Oechslin"],"rawDate":"1997-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2171":{"rfcNumber":"RFC2171","href":"https://www.rfc-editor.org/rfc/rfc2171","title":"MAPOS - Multiple Access Protocol over SONET/SDH Version 1","authors":["K. Murakami","M. Maruyama"],"rawDate":"1997-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2172":{"rfcNumber":"RFC2172","href":"https://www.rfc-editor.org/rfc/rfc2172","title":"MAPOS Version 1 Assigned Numbers","authors":["M. Maruyama","K. Murakami"],"rawDate":"1997-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2173":{"rfcNumber":"RFC2173","href":"https://www.rfc-editor.org/rfc/rfc2173","title":"A MAPOS version 1 Extension - Node Switch Protocol","authors":["K. Murakami","M. Maruyama"],"rawDate":"1997-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2174":{"rfcNumber":"RFC2174","href":"https://www.rfc-editor.org/rfc/rfc2174","title":"A MAPOS version 1 Extension - Switch-Switch Protocol","authors":["K. Murakami","M. Maruyama"],"rawDate":"1997-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2175":{"rfcNumber":"RFC2175","href":"https://www.rfc-editor.org/rfc/rfc2175","title":"MAPOS 16 - Multiple Access Protocol over SONET/SDH with 16 Bit Addressing","authors":["K. Murakami","M. Maruyama"],"rawDate":"1997-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2176":{"rfcNumber":"RFC2176","href":"https://www.rfc-editor.org/rfc/rfc2176","title":"IPv4 over MAPOS Version 1","authors":["K. Murakami","M. Maruyama"],"rawDate":"1997-06","status":"Informational","updatedBy":["RFC5494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2177":{"rfcNumber":"RFC2177","href":"https://www.rfc-editor.org/rfc/rfc2177","title":"IMAP4 IDLE command","authors":["B. Leiba"],"rawDate":"1997-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2178":{"rfcNumber":"RFC2178","href":"https://www.rfc-editor.org/rfc/rfc2178","title":"OSPF Version 2","authors":["J. Moy"],"rawDate":"1997-07","status":"Draft Standard","obsoletedBy":["RFC2328"],"obsoletes":["RFC1583"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2179":{"rfcNumber":"RFC2179","href":"https://www.rfc-editor.org/rfc/rfc2179","title":"Network Security For Trade Shows","authors":["A. Gwinn"],"rawDate":"1997-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc218":{"aliasOf":"rfc0218"},"rfc2180":{"rfcNumber":"RFC2180","href":"https://www.rfc-editor.org/rfc/rfc2180","title":"IMAP4 Multi-Accessed Mailbox Practice","authors":["M. Gahrns"],"rawDate":"1997-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2181":{"rfcNumber":"RFC2181","href":"https://www.rfc-editor.org/rfc/rfc2181","title":"Clarifications to the DNS Specification","authors":["R. Elz","R. Bush"],"rawDate":"1997-07","status":"Proposed Standard","updatedBy":["RFC4035","RFC2535","RFC4343","RFC4033","RFC4034","RFC5452","RFC8767"],"updates":["RFC1034","RFC1035","RFC1123"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2181","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2182":{"rfcNumber":"RFC2182","href":"https://www.rfc-editor.org/rfc/rfc2182","title":"Selection and Operation of Secondary DNS Servers","authors":["R. Elz","R. Bush","S. Bradner","M. Patton"],"rawDate":"1997-07","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2182","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2183":{"rfcNumber":"RFC2183","href":"https://www.rfc-editor.org/rfc/rfc2183","title":"Communicating Presentation Information in Internet Messages: The Content-Disposition Header Field","authors":["R. Troost","S. Dorner","K. Moore, Ed."],"rawDate":"1997-08","status":"Proposed Standard","updatedBy":["RFC2184","RFC2231"],"obsoletes":["RFC1806"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2183","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2184":{"rfcNumber":"RFC2184","href":"https://www.rfc-editor.org/rfc/rfc2184","title":"MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations","authors":["N. Freed","K. Moore"],"rawDate":"1997-08","status":"Proposed Standard","obsoletedBy":["RFC2231"],"updates":["RFC2045","RFC2047","RFC2183"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2184","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2185":{"rfcNumber":"RFC2185","href":"https://www.rfc-editor.org/rfc/rfc2185","title":"Routing Aspects of IPv6 Transition","authors":["R. Callon","D. Haskin"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2186":{"rfcNumber":"RFC2186","href":"https://www.rfc-editor.org/rfc/rfc2186","title":"Internet Cache Protocol (ICP), version 2","authors":["D. Wessels","K. Claffy"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2187":{"rfcNumber":"RFC2187","href":"https://www.rfc-editor.org/rfc/rfc2187","title":"Application of Internet Cache Protocol (ICP), version 2","authors":["D. Wessels","K. Claffy"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2188":{"rfcNumber":"RFC2188","href":"https://www.rfc-editor.org/rfc/rfc2188","title":"AT&T/Neda's Efficient Short Remote Operations (ESRO) Protocol Specification Version 1.2","authors":["M. Banan","M. Taylor","J. Cheng"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2189":{"rfcNumber":"RFC2189","href":"https://www.rfc-editor.org/rfc/rfc2189","title":"Core Based Trees (CBT version 2) Multicast Routing -- Protocol Specification --","authors":["A. Ballardie"],"rawDate":"1997-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc219":{"aliasOf":"rfc0219"},"rfc2190":{"rfcNumber":"RFC2190","href":"https://www.rfc-editor.org/rfc/rfc2190","title":"RTP Payload Format for H.263 Video Streams","authors":["C. Zhu"],"rawDate":"1997-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2191":{"rfcNumber":"RFC2191","href":"https://www.rfc-editor.org/rfc/rfc2191","title":"VENUS - Very Extensive Non-Unicast Service","authors":["G. Armitage"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2192":{"rfcNumber":"RFC2192","href":"https://www.rfc-editor.org/rfc/rfc2192","title":"IMAP URL Scheme","authors":["C. Newman"],"rawDate":"1997-09","status":"Proposed Standard","obsoletedBy":["RFC5092"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2192","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2193":{"rfcNumber":"RFC2193","href":"https://www.rfc-editor.org/rfc/rfc2193","title":"IMAP4 Mailbox Referrals","authors":["M. Gahrns"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2194":{"rfcNumber":"RFC2194","href":"https://www.rfc-editor.org/rfc/rfc2194","title":"Review of Roaming Implementations","authors":["B. Aboba","J. Lu","J. Alsop","J. Ding","W. Wang"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2195":{"rfcNumber":"RFC2195","href":"https://www.rfc-editor.org/rfc/rfc2195","title":"IMAP/POP AUTHorize Extension for Simple Challenge/Response","authors":["J. Klensin","R. Catoe","P. Krumviede"],"rawDate":"1997-09","status":"Proposed Standard","obsoletes":["RFC2095"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2196":{"rfcNumber":"RFC2196","href":"https://www.rfc-editor.org/rfc/rfc2196","title":"Site Security Handbook","authors":["B. Fraser"],"rawDate":"1997-09","status":"Informational","obsoletes":["RFC1244"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2196","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2197":{"rfcNumber":"RFC2197","href":"https://www.rfc-editor.org/rfc/rfc2197","title":"SMTP Service Extension for Command Pipelining","authors":["N. Freed"],"rawDate":"1997-09","status":"Draft Standard","obsoletedBy":["RFC2920"],"obsoletes":["RFC1854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2198":{"rfcNumber":"RFC2198","href":"https://www.rfc-editor.org/rfc/rfc2198","title":"RTP Payload for Redundant Audio Data","authors":["C. Perkins","I. Kouvelas","O. Hodson","V. Hardman","M. Handley","J.C. Bolot","A. Vega-Garcia","S. Fosse-Parisis"],"rawDate":"1997-09","status":"Proposed Standard","updatedBy":["RFC6354"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2199":{"rfcNumber":"RFC2199","href":"https://www.rfc-editor.org/rfc/rfc2199","title":"Request for Comments Summary RFC Numbers 2100-2199","authors":["A. Ramos"],"rawDate":"1998-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc22":{"aliasOf":"rfc0022"},"rfc2200":{"rfcNumber":"RFC2200","href":"https://www.rfc-editor.org/rfc/rfc2200","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1997-06","status":"Historic","obsoletedBy":["RFC2300"],"obsoletes":["RFC1250","RFC2000"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2201":{"rfcNumber":"RFC2201","href":"https://www.rfc-editor.org/rfc/rfc2201","title":"Core Based Trees (CBT) Multicast Routing Architecture","authors":["A. Ballardie"],"rawDate":"1997-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2202":{"rfcNumber":"RFC2202","href":"https://www.rfc-editor.org/rfc/rfc2202","title":"Test Cases for HMAC-MD5 and HMAC-SHA-1","authors":["P. Cheng","R. Glenn"],"rawDate":"1997-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2202","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2203":{"rfcNumber":"RFC2203","href":"https://www.rfc-editor.org/rfc/rfc2203","title":"RPCSEC_GSS Protocol Specification","authors":["M. Eisler","A. Chiu","L. Ling"],"rawDate":"1997-09","status":"Proposed Standard","updatedBy":["RFC5403"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2203","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2204":{"rfcNumber":"RFC2204","href":"https://www.rfc-editor.org/rfc/rfc2204","title":"ODETTE File Transfer Protocol","authors":["D. Nash"],"rawDate":"1997-09","status":"Informational","obsoletedBy":["RFC5024"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2205":{"rfcNumber":"RFC2205","href":"https://www.rfc-editor.org/rfc/rfc2205","title":"Resource ReSerVation Protocol (RSVP) -- Version 1 Functional Specification","authors":["R. Braden, Ed.","L. Zhang","S. Berson","S. Herzog","S. Jamin"],"rawDate":"1997-09","status":"Proposed Standard","updatedBy":["RFC2750","RFC3936","RFC4495","RFC5946","RFC6437","RFC6780"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2205","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2206":{"rfcNumber":"RFC2206","href":"https://www.rfc-editor.org/rfc/rfc2206","title":"RSVP Management Information Base using SMIv2","authors":["F. Baker","J. Krawczyk","A. Sastry"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2207":{"rfcNumber":"RFC2207","href":"https://www.rfc-editor.org/rfc/rfc2207","title":"RSVP Extensions for IPSEC Data Flows","authors":["L. Berger","T. O'Malley"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2208":{"rfcNumber":"RFC2208","href":"https://www.rfc-editor.org/rfc/rfc2208","title":"Resource ReSerVation Protocol (RSVP) -- Version 1 Applicability Statement Some Guidelines on Deployment","authors":["A. Mankin, Ed.","F. Baker","B. Braden","S. Bradner","M. O'Dell","A. Romanow","A. Weinrib","L. Zhang"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2209":{"rfcNumber":"RFC2209","href":"https://www.rfc-editor.org/rfc/rfc2209","title":"Resource ReSerVation Protocol (RSVP) -- Version 1 Message Processing Rules","authors":["R. Braden","L. Zhang"],"rawDate":"1997-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2209","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc221":{"aliasOf":"rfc0221"},"rfc2210":{"rfcNumber":"RFC2210","href":"https://www.rfc-editor.org/rfc/rfc2210","title":"The Use of RSVP with IETF Integrated Services","authors":["J. Wroclawski"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2211":{"rfcNumber":"RFC2211","href":"https://www.rfc-editor.org/rfc/rfc2211","title":"Specification of the Controlled-Load Network Element Service","authors":["J. Wroclawski"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2212":{"rfcNumber":"RFC2212","href":"https://www.rfc-editor.org/rfc/rfc2212","title":"Specification of Guaranteed Quality of Service","authors":["S. Shenker","C. Partridge","R. Guerin"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2213":{"rfcNumber":"RFC2213","href":"https://www.rfc-editor.org/rfc/rfc2213","title":"Integrated Services Management Information Base using SMIv2","authors":["F. Baker","J. Krawczyk","A. Sastry"],"rawDate":"1997-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2213","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2214":{"rfcNumber":"RFC2214","href":"https://www.rfc-editor.org/rfc/rfc2214","title":"Integrated Services Management Information Base Guaranteed Service Extensions using SMIv2","authors":["F. Baker","J. Krawczyk","A. Sastry"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2215":{"rfcNumber":"RFC2215","href":"https://www.rfc-editor.org/rfc/rfc2215","title":"General Characterization Parameters for Integrated Service Network Elements","authors":["S. Shenker","J. Wroclawski"],"rawDate":"1997-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2216":{"rfcNumber":"RFC2216","href":"https://www.rfc-editor.org/rfc/rfc2216","title":"Network Element Service Specification Template","authors":["S. Shenker","J. Wroclawski"],"rawDate":"1997-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2217":{"rfcNumber":"RFC2217","href":"https://www.rfc-editor.org/rfc/rfc2217","title":"Telnet Com Port Control Option","authors":["G. Clark"],"rawDate":"1997-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2217","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2218":{"rfcNumber":"RFC2218","href":"https://www.rfc-editor.org/rfc/rfc2218","title":"A Common Schema for the Internet White Pages Service","authors":["T. Genovese","B. Jennings"],"rawDate":"1997-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2219":{"rfcNumber":"RFC2219","href":"https://www.rfc-editor.org/rfc/rfc2219","title":"Use of DNS Aliases for Network Services","authors":["M. Hamilton","R. Wright"],"rawDate":"1997-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc222":{"aliasOf":"rfc0222"},"rfc2220":{"rfcNumber":"RFC2220","href":"https://www.rfc-editor.org/rfc/rfc2220","title":"The Application/MARC Content-type","authors":["R. Guenther"],"rawDate":"1997-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2221":{"rfcNumber":"RFC2221","href":"https://www.rfc-editor.org/rfc/rfc2221","title":"IMAP4 Login Referrals","authors":["M. Gahrns"],"rawDate":"1997-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2222":{"rfcNumber":"RFC2222","href":"https://www.rfc-editor.org/rfc/rfc2222","title":"Simple Authentication and Security Layer (SASL)","authors":["J. Myers"],"rawDate":"1997-10","status":"Proposed Standard","updatedBy":["RFC2444"],"obsoletedBy":["RFC4422","RFC4752"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2222","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2223":{"rfcNumber":"RFC2223","href":"https://www.rfc-editor.org/rfc/rfc2223","title":"Instructions to RFC Authors","authors":["J. Postel","J. Reynolds"],"rawDate":"1997-10","status":"Informational","updatedBy":["RFC5741","RFC6949"],"obsoletedBy":["RFC7322"],"obsoletes":["RFC1543","RFC1111","RFC0825"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2224":{"rfcNumber":"RFC2224","href":"https://www.rfc-editor.org/rfc/rfc2224","title":"NFS URL Scheme","authors":["B. Callaghan"],"rawDate":"1997-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2225":{"rfcNumber":"RFC2225","href":"https://www.rfc-editor.org/rfc/rfc2225","title":"Classical IP and ARP over ATM","authors":["M. Laubach","J. Halpern"],"rawDate":"1998-04","status":"Proposed Standard","updatedBy":["RFC5494"],"obsoletes":["RFC1626","RFC1577"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2226":{"rfcNumber":"RFC2226","href":"https://www.rfc-editor.org/rfc/rfc2226","title":"IP Broadcast over ATM Networks","authors":["T. Smith","G. Armitage"],"rawDate":"1997-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2227":{"rfcNumber":"RFC2227","href":"https://www.rfc-editor.org/rfc/rfc2227","title":"Simple Hit-Metering and Usage-Limiting for HTTP","authors":["J. Mogul","P. Leach"],"rawDate":"1997-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2228":{"rfcNumber":"RFC2228","href":"https://www.rfc-editor.org/rfc/rfc2228","title":"FTP Security Extensions","authors":["M. Horowitz","S. Lunt"],"rawDate":"1997-10","status":"Proposed Standard","updates":["RFC0959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2229":{"rfcNumber":"RFC2229","href":"https://www.rfc-editor.org/rfc/rfc2229","title":"A Dictionary Server Protocol","authors":["R. Faith","B. Martin"],"rawDate":"1997-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2229","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc223":{"aliasOf":"rfc0223"},"rfc2230":{"rfcNumber":"RFC2230","href":"https://www.rfc-editor.org/rfc/rfc2230","title":"Key Exchange Delegation Record for the DNS","authors":["R. Atkinson"],"rawDate":"1997-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2231":{"rfcNumber":"RFC2231","href":"https://www.rfc-editor.org/rfc/rfc2231","title":"MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations","authors":["N. Freed","K. Moore"],"rawDate":"1997-11","status":"Proposed Standard","updates":["RFC2045","RFC2047","RFC2183"],"obsoletes":["RFC2184"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2231","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2232":{"rfcNumber":"RFC2232","href":"https://www.rfc-editor.org/rfc/rfc2232","title":"Definitions of Managed Objects for DLUR using SMIv2","authors":["B. Clouston, Ed.","B. Moore, Ed."],"rawDate":"1997-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2233":{"rfcNumber":"RFC2233","href":"https://www.rfc-editor.org/rfc/rfc2233","title":"The Interfaces Group MIB using SMIv2","authors":["K. McCloghrie","F. Kastenholz"],"rawDate":"1997-11","status":"Proposed Standard","obsoletedBy":["RFC2863"],"obsoletes":["RFC1573"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2234":{"rfcNumber":"RFC2234","href":"https://www.rfc-editor.org/rfc/rfc2234","title":"Augmented BNF for Syntax Specifications: ABNF","authors":["D. Crocker, Ed.","P. Overell"],"rawDate":"1997-11","status":"Proposed Standard","obsoletedBy":["RFC4234"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2234","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2235":{"rfcNumber":"RFC2235","href":"https://www.rfc-editor.org/rfc/rfc2235","title":"Hobbes' Internet Timeline","authors":["R. Zakon"],"rawDate":"1997-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2236":{"rfcNumber":"RFC2236","href":"https://www.rfc-editor.org/rfc/rfc2236","title":"Internet Group Management Protocol, Version 2","authors":["W. Fenner"],"rawDate":"1997-11","status":"Proposed Standard","updatedBy":["RFC3376"],"updates":["RFC1112"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2236","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2237":{"rfcNumber":"RFC2237","href":"https://www.rfc-editor.org/rfc/rfc2237","title":"Japanese Character Encoding for Internet Messages","authors":["K. Tamaru"],"rawDate":"1997-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2238":{"rfcNumber":"RFC2238","href":"https://www.rfc-editor.org/rfc/rfc2238","title":"Definitions of Managed Objects for HPR using SMIv2","authors":["B. Clouston, Ed.","B. Moore, Ed."],"rawDate":"1997-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2239":{"rfcNumber":"RFC2239","href":"https://www.rfc-editor.org/rfc/rfc2239","title":"Definitions of Managed Objects for IEEE 802.3 Medium Attachment Units (MAUs) using SMIv2","authors":["K. de Graaf","D. Romascanu","D. McMaster","K. McCloghrie","S. Roberts"],"rawDate":"1997-11","status":"Proposed Standard","obsoletedBy":["RFC2668"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc224":{"aliasOf":"rfc0224"},"rfc2240":{"rfcNumber":"RFC2240","href":"https://www.rfc-editor.org/rfc/rfc2240","title":"A Legal Basis for Domain Name Allocation","authors":["O. Vaughan"],"rawDate":"1997-11","status":"Informational","obsoletedBy":["RFC2352"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2241":{"rfcNumber":"RFC2241","href":"https://www.rfc-editor.org/rfc/rfc2241","title":"DHCP Options for Novell Directory Services","authors":["D. Provan"],"rawDate":"1997-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2242":{"rfcNumber":"RFC2242","href":"https://www.rfc-editor.org/rfc/rfc2242","title":"NetWare/IP Domain Name and Information","authors":["R. Droms","K. Fong"],"rawDate":"1997-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2243":{"rfcNumber":"RFC2243","href":"https://www.rfc-editor.org/rfc/rfc2243","title":"OTP Extended Responses","authors":["C. Metz"],"rawDate":"1997-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2244":{"rfcNumber":"RFC2244","href":"https://www.rfc-editor.org/rfc/rfc2244","title":"ACAP -- Application Configuration Access Protocol","authors":["C. Newman","J. G. Myers"],"rawDate":"1997-11","status":"Proposed Standard","updatedBy":["RFC6075"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2244","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2245":{"rfcNumber":"RFC2245","href":"https://www.rfc-editor.org/rfc/rfc2245","title":"Anonymous SASL Mechanism","authors":["C. Newman"],"rawDate":"1997-11","status":"Proposed Standard","obsoletedBy":["RFC4505"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2246":{"rfcNumber":"RFC2246","href":"https://www.rfc-editor.org/rfc/rfc2246","title":"The TLS Protocol Version 1.0","authors":["T. Dierks","C. Allen"],"rawDate":"1999-01","status":"Historic","updatedBy":["RFC3546","RFC5746","RFC6176","RFC7465","RFC7507","RFC7919"],"obsoletedBy":["RFC4346"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2246","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2247":{"rfcNumber":"RFC2247","href":"https://www.rfc-editor.org/rfc/rfc2247","title":"Using Domains in LDAP/X.500 Distinguished Names","authors":["S. Kille","M. Wahl","A. Grimstad","R. Huber","S. Sataluri"],"rawDate":"1998-01","status":"Proposed Standard","updatedBy":["RFC4519","RFC4524"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2248":{"rfcNumber":"RFC2248","href":"https://www.rfc-editor.org/rfc/rfc2248","title":"Network Services Monitoring MIB","authors":["N. Freed","S. Kille"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2788"],"obsoletes":["RFC1565"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2249":{"rfcNumber":"RFC2249","href":"https://www.rfc-editor.org/rfc/rfc2249","title":"Mail Monitoring MIB","authors":["N. Freed","S. Kille"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2789"],"obsoletes":["RFC1566"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc225":{"aliasOf":"rfc0225"},"rfc2250":{"rfcNumber":"RFC2250","href":"https://www.rfc-editor.org/rfc/rfc2250","title":"RTP Payload Format for MPEG1/MPEG2 Video","authors":["D. Hoffman","G. Fernando","V. Goyal","M. Civanlar"],"rawDate":"1998-01","status":"Proposed Standard","obsoletes":["RFC2038"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2250","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2251":{"rfcNumber":"RFC2251","href":"https://www.rfc-editor.org/rfc/rfc2251","title":"Lightweight Directory Access Protocol (v3)","authors":["M. Wahl","T. Howes","S. Kille"],"rawDate":"1997-12","status":"Proposed Standard","updatedBy":["RFC3377","RFC3771"],"obsoletedBy":["RFC4510","RFC4511","RFC4513","RFC4512"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2252":{"rfcNumber":"RFC2252","href":"https://www.rfc-editor.org/rfc/rfc2252","title":"Lightweight Directory Access Protocol (v3): Attribute Syntax Definitions","authors":["M. Wahl","A. Coulbeck","T. Howes","S. Kille"],"rawDate":"1997-12","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4510","RFC4517","RFC4523","RFC4512"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2252","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2253":{"rfcNumber":"RFC2253","href":"https://www.rfc-editor.org/rfc/rfc2253","title":"Lightweight Directory Access Protocol (v3): UTF-8 String Representation of Distinguished Names","authors":["M. Wahl","S. Kille","T. Howes"],"rawDate":"1997-12","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4510","RFC4514"],"obsoletes":["RFC1779"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2253","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2254":{"rfcNumber":"RFC2254","href":"https://www.rfc-editor.org/rfc/rfc2254","title":"The String Representation of LDAP Search Filters","authors":["T. Howes"],"rawDate":"1997-12","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4510","RFC4515"],"obsoletes":["RFC1960"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2254","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2255":{"rfcNumber":"RFC2255","href":"https://www.rfc-editor.org/rfc/rfc2255","title":"The LDAP URL Format","authors":["T. Howes","M. Smith"],"rawDate":"1997-12","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4510","RFC4516"],"obsoletes":["RFC1959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2256":{"rfcNumber":"RFC2256","href":"https://www.rfc-editor.org/rfc/rfc2256","title":"A Summary of the X.500(96) User Schema for use with LDAPv3","authors":["M. Wahl"],"rawDate":"1997-12","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4517","RFC4519","RFC4523","RFC4512","RFC4510"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2257":{"rfcNumber":"RFC2257","href":"https://www.rfc-editor.org/rfc/rfc2257","title":"Agent Extensibility (AgentX) Protocol Version 1","authors":["M. Daniele","B. Wijnen","D. Francisco"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2741"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2258":{"rfcNumber":"RFC2258","href":"https://www.rfc-editor.org/rfc/rfc2258","title":"Internet Nomenclator Project","authors":["J. Ordille"],"rawDate":"1998-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2259":{"rfcNumber":"RFC2259","href":"https://www.rfc-editor.org/rfc/rfc2259","title":"Simple Nomenclator Query Protocol (SNQP)","authors":["J. Elliott","J. Ordille"],"rawDate":"1998-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc226":{"aliasOf":"rfc0226"},"rfc2260":{"rfcNumber":"RFC2260","href":"https://www.rfc-editor.org/rfc/rfc2260","title":"Scalable Support for Multi-homed Multi-provider Connectivity","authors":["T. Bates","Y. Rekhter"],"rawDate":"1998-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2260","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2261":{"rfcNumber":"RFC2261","href":"https://www.rfc-editor.org/rfc/rfc2261","title":"An Architecture for Describing SNMP Management Frameworks","authors":["D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2262":{"rfcNumber":"RFC2262","href":"https://www.rfc-editor.org/rfc/rfc2262","title":"Message Processing and Dispatching for the Simple Network Management Protocol (SNMP)","authors":["J. Case","D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2272"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2263":{"rfcNumber":"RFC2263","href":"https://www.rfc-editor.org/rfc/rfc2263","title":"SNMPv3 Applications","authors":["D. Levi","P. Meyer","B. Stewart"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2273"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2264":{"rfcNumber":"RFC2264","href":"https://www.rfc-editor.org/rfc/rfc2264","title":"User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3)","authors":["U. Blumenthal","B. Wijnen"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2274"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2265":{"rfcNumber":"RFC2265","href":"https://www.rfc-editor.org/rfc/rfc2265","title":"View-based Access Control Model (VACM) for the Simple Network Management Protocol (SNMP)","authors":["B. Wijnen","R. Presuhn","K. McCloghrie"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2275"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2266":{"rfcNumber":"RFC2266","href":"https://www.rfc-editor.org/rfc/rfc2266","title":"Definitions of Managed Objects for IEEE 802.12 Repeater Devices","authors":["J. Flick"],"rawDate":"1998-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2267":{"rfcNumber":"RFC2267","href":"https://www.rfc-editor.org/rfc/rfc2267","title":"Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing","authors":["P. Ferguson","D. Senie"],"rawDate":"1998-01","status":"Informational","obsoletedBy":["RFC2827"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2268":{"rfcNumber":"RFC2268","href":"https://www.rfc-editor.org/rfc/rfc2268","title":"A Description of the RC2(r) Encryption Algorithm","authors":["R. Rivest"],"rawDate":"1998-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2268","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2269":{"rfcNumber":"RFC2269","href":"https://www.rfc-editor.org/rfc/rfc2269","title":"Using the MARS Model in non-ATM NBMA Networks","authors":["G. Armitage"],"rawDate":"1998-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc227":{"aliasOf":"rfc0227"},"rfc2270":{"rfcNumber":"RFC2270","href":"https://www.rfc-editor.org/rfc/rfc2270","title":"Using a Dedicated AS for Sites Homed to a Single Provider","authors":["J. Stewart","T. Bates","R. Chandra","E. Chen"],"rawDate":"1998-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2271":{"rfcNumber":"RFC2271","href":"https://www.rfc-editor.org/rfc/rfc2271","title":"An Architecture for Describing SNMP Management Frameworks","authors":["D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2571"],"obsoletes":["RFC2261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2272":{"rfcNumber":"RFC2272","href":"https://www.rfc-editor.org/rfc/rfc2272","title":"Message Processing and Dispatching for the Simple Network Management Protocol (SNMP)","authors":["J. Case","D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2572"],"obsoletes":["RFC2262"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2273":{"rfcNumber":"RFC2273","href":"https://www.rfc-editor.org/rfc/rfc2273","title":"SNMPv3 Applications","authors":["D. Levi","P. Meyer","B. Stewart"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2573"],"obsoletes":["RFC2263"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2274":{"rfcNumber":"RFC2274","href":"https://www.rfc-editor.org/rfc/rfc2274","title":"User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3)","authors":["U. Blumenthal","B. Wijnen"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2574"],"obsoletes":["RFC2264"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2275":{"rfcNumber":"RFC2275","href":"https://www.rfc-editor.org/rfc/rfc2275","title":"View-based Access Control Model (VACM) for the Simple Network Management Protocol (SNMP)","authors":["B. Wijnen","R. Presuhn","K. McCloghrie"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2575"],"obsoletes":["RFC2265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2276":{"rfcNumber":"RFC2276","href":"https://www.rfc-editor.org/rfc/rfc2276","title":"Architectural Principles of Uniform Resource Name Resolution","authors":["K. Sollins"],"rawDate":"1998-01","status":"Informational","updatedBy":["RFC3401"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2277":{"rfcNumber":"RFC2277","href":"https://www.rfc-editor.org/rfc/rfc2277","title":"IETF Policy on Character Sets and Languages","authors":["H. Alvestrand"],"rawDate":"1998-01","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2277","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2278":{"rfcNumber":"RFC2278","href":"https://www.rfc-editor.org/rfc/rfc2278","title":"IANA Charset Registration Procedures","authors":["N. Freed","J. Postel"],"rawDate":"1998-01","status":"Informational","obsoletedBy":["RFC2978"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2279":{"rfcNumber":"RFC2279","href":"https://www.rfc-editor.org/rfc/rfc2279","title":"UTF-8, a transformation format of ISO 10646","authors":["F. Yergeau"],"rawDate":"1998-01","status":"Draft Standard","obsoletedBy":["RFC3629"],"obsoletes":["RFC2044"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc228":{"aliasOf":"rfc0228"},"rfc2280":{"rfcNumber":"RFC2280","href":"https://www.rfc-editor.org/rfc/rfc2280","title":"Routing Policy Specification Language (RPSL)","authors":["C. Alaettinoglu","T. Bates","E. Gerich","D. Karrenberg","D. Meyer","M. Terpstra","C. Villamizar"],"rawDate":"1998-01","status":"Proposed Standard","obsoletedBy":["RFC2622"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2281":{"rfcNumber":"RFC2281","href":"https://www.rfc-editor.org/rfc/rfc2281","title":"Cisco Hot Standby Router Protocol (HSRP)","authors":["T. Li","B. Cole","P. Morton","D. Li"],"rawDate":"1998-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2281","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2282":{"rfcNumber":"RFC2282","href":"https://www.rfc-editor.org/rfc/rfc2282","title":"IAB and IESG Selection, Confirmation, and Recall Process: Operation of the Nominating and Recall Committees","authors":["J. Galvin"],"rawDate":"1998-02","status":"Informational","obsoletedBy":["RFC2727"],"obsoletes":["RFC2027"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2283":{"rfcNumber":"RFC2283","href":"https://www.rfc-editor.org/rfc/rfc2283","title":"Multiprotocol Extensions for BGP-4","authors":["T. Bates","R. Chandra","D. Katz","Y. Rekhter"],"rawDate":"1998-02","status":"Proposed Standard","obsoletedBy":["RFC2858"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2284":{"rfcNumber":"RFC2284","href":"https://www.rfc-editor.org/rfc/rfc2284","title":"PPP Extensible Authentication Protocol (EAP)","authors":["L. Blunk","J. Vollbrecht"],"rawDate":"1998-03","status":"Proposed Standard","updatedBy":["RFC2484"],"obsoletedBy":["RFC3748"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2285":{"rfcNumber":"RFC2285","href":"https://www.rfc-editor.org/rfc/rfc2285","title":"Benchmarking Terminology for LAN Switching Devices","authors":["R. Mandeville"],"rawDate":"1998-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2286":{"rfcNumber":"RFC2286","href":"https://www.rfc-editor.org/rfc/rfc2286","title":"Test Cases for HMAC-RIPEMD160 and HMAC-RIPEMD128","authors":["J. Kapp"],"rawDate":"1998-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2286","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2287":{"rfcNumber":"RFC2287","href":"https://www.rfc-editor.org/rfc/rfc2287","title":"Definitions of System-Level Managed Objects for Applications","authors":["C. Krupczak","J. Saperia"],"rawDate":"1998-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2288":{"rfcNumber":"RFC2288","href":"https://www.rfc-editor.org/rfc/rfc2288","title":"Using Existing Bibliographic Identifiers as Uniform Resource Names","authors":["C. Lynch","C. Preston","R. Daniel"],"rawDate":"1998-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2288","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2289":{"rfcNumber":"RFC2289","href":"https://www.rfc-editor.org/rfc/rfc2289","title":"A One-Time Password System","authors":["N. Haller","C. Metz","P. Nesser","M. Straw"],"rawDate":"1998-02","status":"Internet Standard","obsoletes":["RFC1938"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc229":{"aliasOf":"rfc0229"},"rfc2290":{"rfcNumber":"RFC2290","href":"https://www.rfc-editor.org/rfc/rfc2290","title":"Mobile-IPv4 Configuration Option for PPP IPCP","authors":["J. Solomon","S. Glass"],"rawDate":"1998-02","status":"Proposed Standard","updatedBy":["RFC2794"],"updates":["RFC2002"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2291":{"rfcNumber":"RFC2291","href":"https://www.rfc-editor.org/rfc/rfc2291","title":"Requirements for a Distributed Authoring and Versioning Protocol for the World Wide Web","authors":["J. Slein","F. Vitali","E. Whitehead","D. Durand"],"rawDate":"1998-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2292":{"rfcNumber":"RFC2292","href":"https://www.rfc-editor.org/rfc/rfc2292","title":"Advanced Sockets API for IPv6","authors":["W. Stevens","M. Thomas"],"rawDate":"1998-02","status":"Informational","obsoletedBy":["RFC3542"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2293":{"rfcNumber":"RFC2293","href":"https://www.rfc-editor.org/rfc/rfc2293","title":"Representing Tables and Subtrees in the X.500 Directory","authors":["S. Kille"],"rawDate":"1998-03","status":"Proposed Standard","obsoletes":["RFC1837"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2294":{"rfcNumber":"RFC2294","href":"https://www.rfc-editor.org/rfc/rfc2294","title":"Representing the O/R Address hierarchy in the X.500 Directory Information Tree","authors":["S. Kille"],"rawDate":"1998-03","status":"Proposed Standard","obsoletes":["RFC1836"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2295":{"rfcNumber":"RFC2295","href":"https://www.rfc-editor.org/rfc/rfc2295","title":"Transparent Content Negotiation in HTTP","authors":["K. Holtman","A. Mutz"],"rawDate":"1998-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2296":{"rfcNumber":"RFC2296","href":"https://www.rfc-editor.org/rfc/rfc2296","title":"HTTP Remote Variant Selection Algorithm -- RVSA/1.0","authors":["K. Holtman","A. Mutz"],"rawDate":"1998-03","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2296","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2297":{"rfcNumber":"RFC2297","href":"https://www.rfc-editor.org/rfc/rfc2297","title":"Ipsilon's General Switch Management Protocol Specification Version 2.0","authors":["P. Newman","W. Edwards","R. Hinden","E. Hoffman","F. Ching Liaw","T. Lyon","G. Minshall"],"rawDate":"1998-03","status":"Informational","updates":["RFC1987"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2298":{"rfcNumber":"RFC2298","href":"https://www.rfc-editor.org/rfc/rfc2298","title":"An Extensible Message Format for Message Disposition Notifications","authors":["R. Fajman"],"rawDate":"1998-03","status":"Proposed Standard","obsoletedBy":["RFC3798"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2299":{"rfcNumber":"RFC2299","href":"https://www.rfc-editor.org/rfc/rfc2299","title":"Request for Comments Summary","authors":["A. Ramos"],"rawDate":"1999-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc23":{"aliasOf":"rfc0023"},"rfc230":{"aliasOf":"rfc0230"},"rfc2300":{"rfcNumber":"RFC2300","href":"https://www.rfc-editor.org/rfc/rfc2300","title":"Internet Official Protocol Standards","authors":["J. Postel"],"rawDate":"1998-05","status":"Historic","obsoletedBy":["RFC2400"],"obsoletes":["RFC2200"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2301":{"rfcNumber":"RFC2301","href":"https://www.rfc-editor.org/rfc/rfc2301","title":"File Format for Internet Fax","authors":["L. McIntyre","S. Zilles","R. Buckley","D. Venable","G. Parsons","J. Rafferty"],"rawDate":"1998-03","status":"Proposed Standard","obsoletedBy":["RFC3949"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2302":{"rfcNumber":"RFC2302","href":"https://www.rfc-editor.org/rfc/rfc2302","title":"Tag Image File Format (TIFF) - image/tiff MIME Sub-type Registration","authors":["G. Parsons","J. Rafferty","S. Zilles"],"rawDate":"1998-03","status":"Proposed Standard","obsoletedBy":["RFC3302"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2303":{"rfcNumber":"RFC2303","href":"https://www.rfc-editor.org/rfc/rfc2303","title":"Minimal PSTN address format in Internet Mail","authors":["C. Allocchio"],"rawDate":"1998-03","status":"Proposed Standard","obsoletedBy":["RFC3191"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2304":{"rfcNumber":"RFC2304","href":"https://www.rfc-editor.org/rfc/rfc2304","title":"Minimal FAX address format in Internet Mail","authors":["C. Allocchio"],"rawDate":"1998-03","status":"Proposed Standard","obsoletedBy":["RFC3192"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2305":{"rfcNumber":"RFC2305","href":"https://www.rfc-editor.org/rfc/rfc2305","title":"A Simple Mode of Facsimile Using Internet Mail","authors":["K. Toyoda","H. Ohno","J. Murai","D. Wing"],"rawDate":"1998-03","status":"Proposed Standard","obsoletedBy":["RFC3965"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2306":{"rfcNumber":"RFC2306","href":"https://www.rfc-editor.org/rfc/rfc2306","title":"Tag Image File Format (TIFF) - F Profile for Facsimile","authors":["G. Parsons","J. Rafferty"],"rawDate":"1998-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2307":{"rfcNumber":"RFC2307","href":"https://www.rfc-editor.org/rfc/rfc2307","title":"An Approach for Using LDAP as a Network Information Service","authors":["L. Howard"],"rawDate":"1998-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2307","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2308":{"rfcNumber":"RFC2308","href":"https://www.rfc-editor.org/rfc/rfc2308","title":"Negative Caching of DNS Queries (DNS NCACHE)","authors":["M. Andrews"],"rawDate":"1998-03","status":"Proposed Standard","updatedBy":["RFC4035","RFC4033","RFC4034","RFC6604","RFC8020","RFC8499","RFC9520"],"updates":["RFC1034","RFC1035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2308","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2309":{"rfcNumber":"RFC2309","href":"https://www.rfc-editor.org/rfc/rfc2309","title":"Recommendations on Queue Management and Congestion Avoidance in the Internet","authors":["B. Braden","D. Clark","J. Crowcroft","B. Davie","S. Deering","D. Estrin","S. Floyd","V. Jacobson","G. Minshall","C. Partridge","L. Peterson","K. Ramakrishnan","S. Shenker","J. Wroclawski","L. Zhang"],"rawDate":"1998-04","status":"Informational","updatedBy":["RFC7141"],"obsoletedBy":["RFC7567"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc231":{"aliasOf":"rfc0231"},"rfc2310":{"rfcNumber":"RFC2310","href":"https://www.rfc-editor.org/rfc/rfc2310","title":"The Safe Response Header Field","authors":["K. Holtman"],"rawDate":"1998-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2311":{"rfcNumber":"RFC2311","href":"https://www.rfc-editor.org/rfc/rfc2311","title":"S/MIME Version 2 Message Specification","authors":["S. Dusse","P. Hoffman","B. Ramsdell","L. Lundblade","L. Repka"],"rawDate":"1998-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2312":{"rfcNumber":"RFC2312","href":"https://www.rfc-editor.org/rfc/rfc2312","title":"S/MIME Version 2 Certificate Handling","authors":["S. Dusse","P. Hoffman","B. Ramsdell","J. Weinstein"],"rawDate":"1998-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2313":{"rfcNumber":"RFC2313","href":"https://www.rfc-editor.org/rfc/rfc2313","title":"PKCS #1: RSA Encryption Version 1.5","authors":["B. Kaliski"],"rawDate":"1998-03","status":"Informational","obsoletedBy":["RFC2437"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2314":{"rfcNumber":"RFC2314","href":"https://www.rfc-editor.org/rfc/rfc2314","title":"PKCS #10: Certification Request Syntax Version 1.5","authors":["B. Kaliski"],"rawDate":"1998-03","status":"Informational","obsoletedBy":["RFC2986"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2315":{"rfcNumber":"RFC2315","href":"https://www.rfc-editor.org/rfc/rfc2315","title":"PKCS #7: Cryptographic Message Syntax Version 1.5","authors":["B. Kaliski"],"rawDate":"1998-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2316":{"rfcNumber":"RFC2316","href":"https://www.rfc-editor.org/rfc/rfc2316","title":"Report of the IAB Security Architecture Workshop","authors":["S. Bellovin"],"rawDate":"1998-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2317":{"rfcNumber":"RFC2317","href":"https://www.rfc-editor.org/rfc/rfc2317","title":"Classless IN-ADDR.ARPA delegation","authors":["H. Eidnes","G. de Groot","P. Vixie"],"rawDate":"1998-03","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2317","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2318":{"rfcNumber":"RFC2318","href":"https://www.rfc-editor.org/rfc/rfc2318","title":"The text/css Media Type","authors":["H. Lie","B. Bos","C. Lilley"],"rawDate":"1998-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2319":{"rfcNumber":"RFC2319","href":"https://www.rfc-editor.org/rfc/rfc2319","title":"Ukrainian Character Set KOI8-U","authors":["KOI8-U Working Group"],"rawDate":"1998-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2319","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc232":{"aliasOf":"rfc0232"},"rfc2320":{"rfcNumber":"RFC2320","href":"https://www.rfc-editor.org/rfc/rfc2320","title":"Definitions of Managed Objects for Classical IP and ARP Over ATM Using SMIv2 (IPOA-MIB)","authors":["M. Greene","J. Luciani","K. White","T. Kuo"],"rawDate":"1998-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2321":{"rfcNumber":"RFC2321","href":"https://www.rfc-editor.org/rfc/rfc2321","title":"RITA -- The Reliable Internetwork Troubleshooting Agent","authors":["A. Bressen"],"rawDate":"1998-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2322":{"rfcNumber":"RFC2322","href":"https://www.rfc-editor.org/rfc/rfc2322","title":"Management of IP numbers by peg-dhcp","authors":["K. van den Hout","A. Koopal","R. van Mook"],"rawDate":"1998-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2322","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2323":{"rfcNumber":"RFC2323","href":"https://www.rfc-editor.org/rfc/rfc2323","title":"IETF Identification and Security Guidelines","authors":["A. Ramos"],"rawDate":"1998-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2324":{"rfcNumber":"RFC2324","href":"https://www.rfc-editor.org/rfc/rfc2324","title":"Hyper Text Coffee Pot Control Protocol (HTCPCP/1.0)","authors":["L. Masinter"],"rawDate":"1998-04-01","status":"Informational","updatedBy":["RFC7168"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2324","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2325":{"rfcNumber":"RFC2325","href":"https://www.rfc-editor.org/rfc/rfc2325","title":"Definitions of Managed Objects for Drip-Type Heated Beverage Hardware Devices using SMIv2","authors":["M. Slavitch"],"rawDate":"1998-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2325","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2326":{"rfcNumber":"RFC2326","href":"https://www.rfc-editor.org/rfc/rfc2326","title":"Real Time Streaming Protocol (RTSP)","authors":["H. Schulzrinne","A. Rao","R. Lanphier"],"rawDate":"1998-04","status":"Proposed Standard","obsoletedBy":["RFC7826"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2326","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2327":{"rfcNumber":"RFC2327","href":"https://www.rfc-editor.org/rfc/rfc2327","title":"SDP: Session Description Protocol","authors":["M. Handley","V. Jacobson"],"rawDate":"1998-04","status":"Proposed Standard","updatedBy":["RFC3266"],"obsoletedBy":["RFC4566"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2327","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2328":{"rfcNumber":"RFC2328","href":"https://www.rfc-editor.org/rfc/rfc2328","title":"OSPF Version 2","authors":["J. Moy"],"rawDate":"1998-04","status":"Internet Standard","updatedBy":["RFC5709","RFC6549","RFC6845","RFC6860","RFC7474","RFC8042","RFC9355","RFC9454"],"obsoletes":["RFC2178"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2328","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2329":{"rfcNumber":"RFC2329","href":"https://www.rfc-editor.org/rfc/rfc2329","title":"OSPF Standardization Report","authors":["J. Moy"],"rawDate":"1998-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc233":{"aliasOf":"rfc0233"},"rfc2330":{"rfcNumber":"RFC2330","href":"https://www.rfc-editor.org/rfc/rfc2330","title":"Framework for IP Performance Metrics","authors":["V. Paxson","G. Almes","J. Mahdavi","M. Mathis"],"rawDate":"1998-05","status":"Informational","updatedBy":["RFC7312","RFC8468","RFC9198"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2331":{"rfcNumber":"RFC2331","href":"https://www.rfc-editor.org/rfc/rfc2331","title":"ATM Signalling Support for IP over ATM - UNI Signalling 4.0 Update","authors":["M. Maher"],"rawDate":"1998-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2332":{"rfcNumber":"RFC2332","href":"https://www.rfc-editor.org/rfc/rfc2332","title":"NBMA Next Hop Resolution Protocol (NHRP)","authors":["J. Luciani","D. Katz","D. Piscitello","B. Cole","N. Doraswamy"],"rawDate":"1998-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2333":{"rfcNumber":"RFC2333","href":"https://www.rfc-editor.org/rfc/rfc2333","title":"NHRP Protocol Applicability Statement","authors":["D. Cansever"],"rawDate":"1998-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2334":{"rfcNumber":"RFC2334","href":"https://www.rfc-editor.org/rfc/rfc2334","title":"Server Cache Synchronization Protocol (SCSP)","authors":["J. Luciani","G. Armitage","J. Halpern","N. Doraswamy"],"rawDate":"1998-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2334","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2335":{"rfcNumber":"RFC2335","href":"https://www.rfc-editor.org/rfc/rfc2335","title":"A Distributed NHRP Service Using SCSP","authors":["J. Luciani"],"rawDate":"1998-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2336":{"rfcNumber":"RFC2336","href":"https://www.rfc-editor.org/rfc/rfc2336","title":"Classical IP and ARP over ATM to NHRP Transition","authors":["J. Luciani"],"rawDate":"1998-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2337":{"rfcNumber":"RFC2337","href":"https://www.rfc-editor.org/rfc/rfc2337","title":"Intra-LIS IP multicast among routers over ATM using Sparse Mode PIM","authors":["D. Farinacci","D. Meyer","Y. Rekhter"],"rawDate":"1998-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2338":{"rfcNumber":"RFC2338","href":"https://www.rfc-editor.org/rfc/rfc2338","title":"Virtual Router Redundancy Protocol","authors":["S. Knight","D. Weaver","D. Whipple","R. Hinden","D. Mitzel","P. Hunt","P. Higginson","M. Shand","A. Lindem"],"rawDate":"1998-04","status":"Proposed Standard","obsoletedBy":["RFC3768"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2339":{"rfcNumber":"RFC2339","href":"https://www.rfc-editor.org/rfc/rfc2339","title":"An Agreement Between the Internet Society, the IETF, and Sun Microsystems, Inc. in the matter of NFS V.4 Protocols","authors":["The Internet Society","Sun Microsystems"],"rawDate":"1998-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc234":{"aliasOf":"rfc0234"},"rfc2340":{"rfcNumber":"RFC2340","href":"https://www.rfc-editor.org/rfc/rfc2340","title":"Nortel's Virtual Network Switching (VNS) Overview","authors":["B. Jamoussi","D. Jamieson","D. Williston","S. Gabe"],"rawDate":"1998-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2341":{"rfcNumber":"RFC2341","href":"https://www.rfc-editor.org/rfc/rfc2341","title":"Cisco Layer Two Forwarding (Protocol) \"L2F\"","authors":["A. Valencia","M. Littlewood","T. Kolar"],"rawDate":"1998-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2342":{"rfcNumber":"RFC2342","href":"https://www.rfc-editor.org/rfc/rfc2342","title":"IMAP4 Namespace","authors":["M. Gahrns","C. Newman"],"rawDate":"1998-05","status":"Proposed Standard","updatedBy":["RFC4466"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2343":{"rfcNumber":"RFC2343","href":"https://www.rfc-editor.org/rfc/rfc2343","title":"RTP Payload Format for Bundled MPEG","authors":["M. Civanlar","G. Cash","B. Haskell"],"rawDate":"1998-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2344":{"rfcNumber":"RFC2344","href":"https://www.rfc-editor.org/rfc/rfc2344","title":"Reverse Tunneling for Mobile IP","authors":["G. Montenegro, Ed."],"rawDate":"1998-05","status":"Proposed Standard","obsoletedBy":["RFC3024"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2345":{"rfcNumber":"RFC2345","href":"https://www.rfc-editor.org/rfc/rfc2345","title":"Domain Names and Company Name Retrieval","authors":["J. Klensin","T. Wolf","G. Oglesby"],"rawDate":"1998-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2346":{"rfcNumber":"RFC2346","href":"https://www.rfc-editor.org/rfc/rfc2346","title":"Making Postscript and PDF International","authors":["J. Palme"],"rawDate":"1998-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2347":{"rfcNumber":"RFC2347","href":"https://www.rfc-editor.org/rfc/rfc2347","title":"TFTP Option Extension","authors":["G. Malkin","A. Harkin"],"rawDate":"1998-05","status":"Draft Standard","updates":["RFC1350"],"obsoletes":["RFC1782"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2347","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2348":{"rfcNumber":"RFC2348","href":"https://www.rfc-editor.org/rfc/rfc2348","title":"TFTP Blocksize Option","authors":["G. Malkin","A. Harkin"],"rawDate":"1998-05","status":"Draft Standard","updates":["RFC1350"],"obsoletes":["RFC1783"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2349":{"rfcNumber":"RFC2349","href":"https://www.rfc-editor.org/rfc/rfc2349","title":"TFTP Timeout Interval and Transfer Size Options","authors":["G. Malkin","A. Harkin"],"rawDate":"1998-05","status":"Draft Standard","updates":["RFC1350"],"obsoletes":["RFC1784"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc235":{"aliasOf":"rfc0235"},"rfc2350":{"rfcNumber":"RFC2350","href":"https://www.rfc-editor.org/rfc/rfc2350","title":"Expectations for Computer Security Incident Response","authors":["N. Brownlee","E. Guttman"],"rawDate":"1998-06","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2350","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2351":{"rfcNumber":"RFC2351","href":"https://www.rfc-editor.org/rfc/rfc2351","title":"Mapping of Airline Reservation, Ticketing, and Messaging Traffic over IP","authors":["A. Robert"],"rawDate":"1998-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2352":{"rfcNumber":"RFC2352","href":"https://www.rfc-editor.org/rfc/rfc2352","title":"A Convention For Using Legal Names as Domain Names","authors":["O. Vaughan"],"rawDate":"1998-05","status":"Informational","obsoletes":["RFC2240"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2353":{"rfcNumber":"RFC2353","href":"https://www.rfc-editor.org/rfc/rfc2353","title":"APPN/HPR in IP Networks APPN Implementers' Workshop Closed Pages Document","authors":["G. Dudley"],"rawDate":"1998-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2354":{"rfcNumber":"RFC2354","href":"https://www.rfc-editor.org/rfc/rfc2354","title":"Options for Repair of Streaming Media","authors":["C. Perkins","O. Hodson"],"rawDate":"1998-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2355":{"rfcNumber":"RFC2355","href":"https://www.rfc-editor.org/rfc/rfc2355","title":"TN3270 Enhancements","authors":["B. Kelly"],"rawDate":"1998-06","status":"Draft Standard","updatedBy":["RFC6270"],"obsoletes":["RFC1647"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2356":{"rfcNumber":"RFC2356","href":"https://www.rfc-editor.org/rfc/rfc2356","title":"Sun's SKIP Firewall Traversal for Mobile IP","authors":["G. Montenegro","V. Gupta"],"rawDate":"1998-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2357":{"rfcNumber":"RFC2357","href":"https://www.rfc-editor.org/rfc/rfc2357","title":"IETF Criteria for Evaluating Reliable Multicast Transport and Application Protocols","authors":["A. Mankin","A. Romanow","S. Bradner","V. Paxson"],"rawDate":"1998-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2358":{"rfcNumber":"RFC2358","href":"https://www.rfc-editor.org/rfc/rfc2358","title":"Definitions of Managed Objects for the Ethernet-like Interface Types","authors":["J. Flick","J. Johnson"],"rawDate":"1998-06","status":"Proposed Standard","obsoletedBy":["RFC2665"],"obsoletes":["RFC1650"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2359":{"rfcNumber":"RFC2359","href":"https://www.rfc-editor.org/rfc/rfc2359","title":"IMAP4 UIDPLUS extension","authors":["J. Myers"],"rawDate":"1998-06","status":"Proposed Standard","obsoletedBy":["RFC4315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc236":{"aliasOf":"rfc0236"},"rfc2360":{"rfcNumber":"RFC2360","href":"https://www.rfc-editor.org/rfc/rfc2360","title":"Guide for Internet Standards Writers","authors":["G. Scott"],"rawDate":"1998-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2361":{"rfcNumber":"RFC2361","href":"https://www.rfc-editor.org/rfc/rfc2361","title":"WAVE and AVI Codec Registries","authors":["E. Fleischman"],"rawDate":"1998-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2361","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2362":{"rfcNumber":"RFC2362","href":"https://www.rfc-editor.org/rfc/rfc2362","title":"Protocol Independent Multicast-Sparse Mode (PIM-SM): Protocol Specification","authors":["D. Estrin","D. Farinacci","A. Helmy","D. Thaler","S. Deering","M. Handley","V. Jacobson","C. Liu","P. Sharma","L. Wei"],"rawDate":"1998-06","status":"Experimental","obsoletedBy":["RFC4601","RFC5059"],"obsoletes":["RFC2117"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2362","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2363":{"rfcNumber":"RFC2363","href":"https://www.rfc-editor.org/rfc/rfc2363","title":"PPP Over FUNI","authors":["G. Gross","M. Kaycee","A. Li","A. Malis","J. Stephens"],"rawDate":"1998-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2364":{"rfcNumber":"RFC2364","href":"https://www.rfc-editor.org/rfc/rfc2364","title":"PPP Over AAL5","authors":["G. Gross","M. Kaycee","A. Li","A. Malis","J. Stephens"],"rawDate":"1998-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2365":{"rfcNumber":"RFC2365","href":"https://www.rfc-editor.org/rfc/rfc2365","title":"Administratively Scoped IP Multicast","authors":["D. Meyer"],"rawDate":"1998-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2366":{"rfcNumber":"RFC2366","href":"https://www.rfc-editor.org/rfc/rfc2366","title":"Definitions of Managed Objects for Multicast over UNI 3.0/3.1 based ATM Networks","authors":["C. Chung","M. Greene"],"rawDate":"1998-07","status":"Proposed Standard","obsoletedBy":["RFC2417"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2367":{"rfcNumber":"RFC2367","href":"https://www.rfc-editor.org/rfc/rfc2367","title":"PF_KEY Key Management API, Version 2","authors":["D. McDonald","C. Metz","B. Phan"],"rawDate":"1998-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2367","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2368":{"rfcNumber":"RFC2368","href":"https://www.rfc-editor.org/rfc/rfc2368","title":"The mailto URL scheme","authors":["P. Hoffman","L. Masinter","J. Zawinski"],"rawDate":"1998-07","status":"Proposed Standard","obsoletedBy":["RFC6068"],"updates":["RFC1738","RFC1808"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2369":{"rfcNumber":"RFC2369","href":"https://www.rfc-editor.org/rfc/rfc2369","title":"The Use of URLs as Meta-Syntax for Core Mail List Commands and their Transport through Message Header Fields","authors":["G. Neufeld","J. Baer"],"rawDate":"1998-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc237":{"aliasOf":"rfc0237"},"rfc2370":{"rfcNumber":"RFC2370","href":"https://www.rfc-editor.org/rfc/rfc2370","title":"The OSPF Opaque LSA Option","authors":["R. Coltun"],"rawDate":"1998-07","status":"Proposed Standard","updatedBy":["RFC3630"],"obsoletedBy":["RFC5250"],"seeAlso":["RFC2328"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2371":{"rfcNumber":"RFC2371","href":"https://www.rfc-editor.org/rfc/rfc2371","title":"Transaction Internet Protocol Version 3.0","authors":["J. Lyon","K. Evans","J. Klein"],"rawDate":"1998-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2372":{"rfcNumber":"RFC2372","href":"https://www.rfc-editor.org/rfc/rfc2372","title":"Transaction Internet Protocol - Requirements and Supplemental Information","authors":["K. Evans","J. Klein","J. Lyon"],"rawDate":"1998-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2373":{"rfcNumber":"RFC2373","href":"https://www.rfc-editor.org/rfc/rfc2373","title":"IP Version 6 Addressing Architecture","authors":["R. Hinden","S. Deering"],"rawDate":"1998-07","status":"Proposed Standard","obsoletedBy":["RFC3513"],"obsoletes":["RFC1884"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2373","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2374":{"rfcNumber":"RFC2374","href":"https://www.rfc-editor.org/rfc/rfc2374","title":"An IPv6 Aggregatable Global Unicast Address Format","authors":["R. Hinden","M. O'Dell","S. Deering"],"rawDate":"1998-07","status":"Historic","obsoletedBy":["RFC3587"],"obsoletes":["RFC2073"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2375":{"rfcNumber":"RFC2375","href":"https://www.rfc-editor.org/rfc/rfc2375","title":"IPv6 Multicast Address Assignments","authors":["R. Hinden","S. Deering"],"rawDate":"1998-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2376":{"rfcNumber":"RFC2376","href":"https://www.rfc-editor.org/rfc/rfc2376","title":"XML Media Types","authors":["E. Whitehead","M. Murata"],"rawDate":"1998-07","status":"Informational","obsoletedBy":["RFC3023"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2377":{"rfcNumber":"RFC2377","href":"https://www.rfc-editor.org/rfc/rfc2377","title":"Naming Plan for Internet Directory-Enabled Applications","authors":["A. Grimstad","R. Huber","S. Sataluri","M. Wahl"],"rawDate":"1998-09","status":"Informational","updatedBy":["RFC4519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2378":{"rfcNumber":"RFC2378","href":"https://www.rfc-editor.org/rfc/rfc2378","title":"The CCSO Nameserver (Ph) Architecture","authors":["R. Hedberg","P. Pomes"],"rawDate":"1998-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2379":{"rfcNumber":"RFC2379","href":"https://www.rfc-editor.org/rfc/rfc2379","title":"RSVP over ATM Implementation Guidelines","authors":["L. Berger"],"rawDate":"1998-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc238":{"aliasOf":"rfc0238"},"rfc2380":{"rfcNumber":"RFC2380","href":"https://www.rfc-editor.org/rfc/rfc2380","title":"RSVP over ATM Implementation Requirements","authors":["L. Berger"],"rawDate":"1998-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2381":{"rfcNumber":"RFC2381","href":"https://www.rfc-editor.org/rfc/rfc2381","title":"Interoperation of Controlled-Load Service and Guaranteed Service with ATM","authors":["M. Garrett","M. Borden"],"rawDate":"1998-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2382":{"rfcNumber":"RFC2382","href":"https://www.rfc-editor.org/rfc/rfc2382","title":"A Framework for Integrated Services and RSVP over ATM","authors":["E. Crawley, Ed.","L. Berger","S. Berson","F. Baker","M. Borden","J. Krawczyk"],"rawDate":"1998-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2383":{"rfcNumber":"RFC2383","href":"https://www.rfc-editor.org/rfc/rfc2383","title":"ST2+ over ATM Protocol Specification - UNI 3.1 Version","authors":["M. Suzuki"],"rawDate":"1998-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2384":{"rfcNumber":"RFC2384","href":"https://www.rfc-editor.org/rfc/rfc2384","title":"POP URL Scheme","authors":["R. Gellens"],"rawDate":"1998-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2384","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2385":{"rfcNumber":"RFC2385","href":"https://www.rfc-editor.org/rfc/rfc2385","title":"Protection of BGP Sessions via the TCP MD5 Signature Option","authors":["A. Heffernan"],"rawDate":"1998-08","status":"Proposed Standard","updatedBy":["RFC6691"],"obsoletedBy":["RFC5925"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2385","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2386":{"rfcNumber":"RFC2386","href":"https://www.rfc-editor.org/rfc/rfc2386","title":"A Framework for QoS-based Routing in the Internet","authors":["E. Crawley","R. Nair","B. Rajagopalan","H. Sandick"],"rawDate":"1998-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2387":{"rfcNumber":"RFC2387","href":"https://www.rfc-editor.org/rfc/rfc2387","title":"The MIME Multipart/Related Content-type","authors":["E. Levinson"],"rawDate":"1998-08","status":"Proposed Standard","obsoletes":["RFC2112"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2387","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2388":{"rfcNumber":"RFC2388","href":"https://www.rfc-editor.org/rfc/rfc2388","title":"Returning Values from Forms: multipart/form-data","authors":["L. Masinter"],"rawDate":"1998-08","status":"Proposed Standard","obsoletedBy":["RFC7578"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2388","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2389":{"rfcNumber":"RFC2389","href":"https://www.rfc-editor.org/rfc/rfc2389","title":"Feature negotiation mechanism for the File Transfer Protocol","authors":["P. Hethmon","R. Elz"],"rawDate":"1998-08","status":"Proposed Standard","seeAlso":["RFC0959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc239":{"aliasOf":"rfc0239"},"rfc2390":{"rfcNumber":"RFC2390","href":"https://www.rfc-editor.org/rfc/rfc2390","title":"Inverse Address Resolution Protocol","authors":["T. Bradley","C. Brown","A. Malis"],"rawDate":"1998-09","status":"Draft Standard","obsoletes":["RFC1293"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2391":{"rfcNumber":"RFC2391","href":"https://www.rfc-editor.org/rfc/rfc2391","title":"Load Sharing using IP Network Address Translation (LSNAT)","authors":["P. Srisuresh","D. Gan"],"rawDate":"1998-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2391","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2392":{"rfcNumber":"RFC2392","href":"https://www.rfc-editor.org/rfc/rfc2392","title":"Content-ID and Message-ID Uniform Resource Locators","authors":["E. Levinson"],"rawDate":"1998-08","status":"Proposed Standard","obsoletes":["RFC2111"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2392","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2393":{"rfcNumber":"RFC2393","href":"https://www.rfc-editor.org/rfc/rfc2393","title":"IP Payload Compression Protocol (IPComp)","authors":["A. Shacham","R. Monsour","R. Pereira","M. Thomas"],"rawDate":"1998-12","status":"Proposed Standard","obsoletedBy":["RFC3173"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2394":{"rfcNumber":"RFC2394","href":"https://www.rfc-editor.org/rfc/rfc2394","title":"IP Payload Compression Using DEFLATE","authors":["R. Pereira"],"rawDate":"1998-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2395":{"rfcNumber":"RFC2395","href":"https://www.rfc-editor.org/rfc/rfc2395","title":"IP Payload Compression Using LZS","authors":["R. Friend","R. Monsour"],"rawDate":"1998-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2395","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2396":{"rfcNumber":"RFC2396","href":"https://www.rfc-editor.org/rfc/rfc2396","title":"Uniform Resource Identifiers (URI): Generic Syntax","authors":["T. Berners-Lee","R. Fielding","L. Masinter"],"rawDate":"1998-08","status":"Draft Standard","updatedBy":["RFC2732"],"obsoletedBy":["RFC3986"],"updates":["RFC1808","RFC1738"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2396","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2397":{"rfcNumber":"RFC2397","href":"https://www.rfc-editor.org/rfc/rfc2397","title":"The \"data\" URL scheme","authors":["L. Masinter"],"rawDate":"1998-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2397","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2398":{"rfcNumber":"RFC2398","href":"https://www.rfc-editor.org/rfc/rfc2398","title":"Some Testing Tools for TCP Implementors","authors":["S. Parker","C. Schmechel"],"rawDate":"1998-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2399":{"rfcNumber":"RFC2399","href":"https://www.rfc-editor.org/rfc/rfc2399","title":"Request for Comments Summary","authors":["A. Ramos"],"rawDate":"1999-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc24":{"aliasOf":"rfc0024"},"rfc240":{"aliasOf":"rfc0240"},"rfc2400":{"rfcNumber":"RFC2400","href":"https://www.rfc-editor.org/rfc/rfc2400","title":"Internet Official Protocol Standards","authors":["J. Postel","J. Reynolds"],"rawDate":"1998-09","status":"Historic","obsoletedBy":["RFC2500"],"obsoletes":["RFC2300"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2401":{"rfcNumber":"RFC2401","href":"https://www.rfc-editor.org/rfc/rfc2401","title":"Security Architecture for the Internet Protocol","authors":["S. Kent","R. Atkinson"],"rawDate":"1998-11","status":"Proposed Standard","updatedBy":["RFC3168"],"obsoletedBy":["RFC4301"],"obsoletes":["RFC1825"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2402":{"rfcNumber":"RFC2402","href":"https://www.rfc-editor.org/rfc/rfc2402","title":"IP Authentication Header","authors":["S. Kent","R. Atkinson"],"rawDate":"1998-11","status":"Proposed Standard","obsoletedBy":["RFC4302","RFC4305"],"obsoletes":["RFC1826"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2402","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2403":{"rfcNumber":"RFC2403","href":"https://www.rfc-editor.org/rfc/rfc2403","title":"The Use of HMAC-MD5-96 within ESP and AH","authors":["C. Madson","R. Glenn"],"rawDate":"1998-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2404":{"rfcNumber":"RFC2404","href":"https://www.rfc-editor.org/rfc/rfc2404","title":"The Use of HMAC-SHA-1-96 within ESP and AH","authors":["C. Madson","R. Glenn"],"rawDate":"1998-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2405":{"rfcNumber":"RFC2405","href":"https://www.rfc-editor.org/rfc/rfc2405","title":"The ESP DES-CBC Cipher Algorithm With Explicit IV","authors":["C. Madson","N. Doraswamy"],"rawDate":"1998-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2406":{"rfcNumber":"RFC2406","href":"https://www.rfc-editor.org/rfc/rfc2406","title":"IP Encapsulating Security Payload (ESP)","authors":["S. Kent","R. Atkinson"],"rawDate":"1998-11","status":"Proposed Standard","obsoletedBy":["RFC4303","RFC4305"],"obsoletes":["RFC1827"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2407":{"rfcNumber":"RFC2407","href":"https://www.rfc-editor.org/rfc/rfc2407","title":"The Internet IP Security Domain of Interpretation for ISAKMP","authors":["D. Piper"],"rawDate":"1998-11","status":"Historic","obsoletedBy":["RFC4306"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2407","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2408":{"rfcNumber":"RFC2408","href":"https://www.rfc-editor.org/rfc/rfc2408","title":"Internet Security Association and Key Management Protocol (ISAKMP)","authors":["D. Maughan","M. Schertler","M. Schneider","J. Turner"],"rawDate":"1998-11","status":"Historic","obsoletedBy":["RFC4306"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2408","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2409":{"rfcNumber":"RFC2409","href":"https://www.rfc-editor.org/rfc/rfc2409","title":"The Internet Key Exchange (IKE)","authors":["D. Harkins","D. Carrel"],"rawDate":"1998-11","status":"Historic","updatedBy":["RFC4109"],"obsoletedBy":["RFC4306"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2409","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc241":{"aliasOf":"rfc0241"},"rfc2410":{"rfcNumber":"RFC2410","href":"https://www.rfc-editor.org/rfc/rfc2410","title":"The NULL Encryption Algorithm and Its Use With IPsec","authors":["R. Glenn","S. Kent"],"rawDate":"1998-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2410","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2411":{"rfcNumber":"RFC2411","href":"https://www.rfc-editor.org/rfc/rfc2411","title":"IP Security Document Roadmap","authors":["R. Thayer","N. Doraswamy","R. Glenn"],"rawDate":"1998-11","status":"Informational","obsoletedBy":["RFC6071"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2412":{"rfcNumber":"RFC2412","href":"https://www.rfc-editor.org/rfc/rfc2412","title":"The OAKLEY Key Determination Protocol","authors":["H. Orman"],"rawDate":"1998-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2412","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2413":{"rfcNumber":"RFC2413","href":"https://www.rfc-editor.org/rfc/rfc2413","title":"Dublin Core Metadata for Resource Discovery","authors":["S. Weibel","J. Kunze","C. Lagoze","M. Wolf"],"rawDate":"1998-09","status":"Informational","obsoletedBy":["RFC5013"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2414":{"rfcNumber":"RFC2414","href":"https://www.rfc-editor.org/rfc/rfc2414","title":"Increasing TCP's Initial Window","authors":["M. Allman","S. Floyd","C. Partridge"],"rawDate":"1998-09","status":"Experimental","obsoletedBy":["RFC3390"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2415":{"rfcNumber":"RFC2415","href":"https://www.rfc-editor.org/rfc/rfc2415","title":"Simulation Studies of Increased Initial TCP Window Size","authors":["K. Poduri","K. Nichols"],"rawDate":"1998-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2416":{"rfcNumber":"RFC2416","href":"https://www.rfc-editor.org/rfc/rfc2416","title":"When TCP Starts Up With Four Packets Into Only Three Buffers","authors":["T. Shepard","C. Partridge"],"rawDate":"1998-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2417":{"rfcNumber":"RFC2417","href":"https://www.rfc-editor.org/rfc/rfc2417","title":"Definitions of Managed Objects for Multicast over UNI 3.0/3.1 based ATM Networks","authors":["C. Chung","M. Greene"],"rawDate":"1998-09","status":"Proposed Standard","obsoletes":["RFC2366"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2417","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2418":{"rfcNumber":"RFC2418","href":"https://www.rfc-editor.org/rfc/rfc2418","title":"IETF Working Group Guidelines and Procedures","authors":["S. Bradner"],"rawDate":"1998-09","status":"Best Current Practice","updatedBy":["RFC3934","RFC7475","RFC7776","RFC8717","RFC9141"],"obsoletes":["RFC1603"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2418","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2419":{"rfcNumber":"RFC2419","href":"https://www.rfc-editor.org/rfc/rfc2419","title":"The PPP DES Encryption Protocol, Version 2 (DESE-bis)","authors":["K. Sklower","G. Meyer"],"rawDate":"1998-09","status":"Proposed Standard","obsoletes":["RFC1969"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc242":{"aliasOf":"rfc0242"},"rfc2420":{"rfcNumber":"RFC2420","href":"https://www.rfc-editor.org/rfc/rfc2420","title":"The PPP Triple-DES Encryption Protocol (3DESE)","authors":["H. Kummert"],"rawDate":"1998-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2421":{"rfcNumber":"RFC2421","href":"https://www.rfc-editor.org/rfc/rfc2421","title":"Voice Profile for Internet Mail - version 2","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"1998-09","status":"Proposed Standard","obsoletedBy":["RFC3801"],"obsoletes":["RFC1911"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2421","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2422":{"rfcNumber":"RFC2422","href":"https://www.rfc-editor.org/rfc/rfc2422","title":"Toll Quality Voice - 32 kbit/s ADPCM MIME Sub-type Registration","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"1998-09","status":"Proposed Standard","obsoletedBy":["RFC3802"],"obsoletes":["RFC1911"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2423":{"rfcNumber":"RFC2423","href":"https://www.rfc-editor.org/rfc/rfc2423","title":"VPIM Voice Message MIME Sub-type Registration","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"1998-09","status":"Proposed Standard","obsoletedBy":["RFC3801"],"obsoletes":["RFC1911"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2424":{"rfcNumber":"RFC2424","href":"https://www.rfc-editor.org/rfc/rfc2424","title":"Content Duration MIME Header Definition","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"1998-09","status":"Proposed Standard","obsoletedBy":["RFC3803"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2425":{"rfcNumber":"RFC2425","href":"https://www.rfc-editor.org/rfc/rfc2425","title":"A MIME Content-Type for Directory Information","authors":["T. Howes","M. Smith","F. Dawson"],"rawDate":"1998-09","status":"Proposed Standard","obsoletedBy":["RFC6350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2426":{"rfcNumber":"RFC2426","href":"https://www.rfc-editor.org/rfc/rfc2426","title":"vCard MIME Directory Profile","authors":["F. Dawson","T. Howes"],"rawDate":"1998-09","status":"Proposed Standard","obsoletedBy":["RFC6350"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2426","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2427":{"rfcNumber":"RFC2427","href":"https://www.rfc-editor.org/rfc/rfc2427","title":"Multiprotocol Interconnect over Frame Relay","authors":["C. Brown","A. Malis"],"rawDate":"1998-09","status":"Internet Standard","obsoletes":["RFC1490","RFC1294"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2428":{"rfcNumber":"RFC2428","href":"https://www.rfc-editor.org/rfc/rfc2428","title":"FTP Extensions for IPv6 and NATs","authors":["M. Allman","S. Ostermann","C. Metz"],"rawDate":"1998-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2428","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2429":{"rfcNumber":"RFC2429","href":"https://www.rfc-editor.org/rfc/rfc2429","title":"RTP Payload Format for the 1998 Version of ITU-T Rec. H.263 Video (H.263+)","authors":["C. Bormann","L. Cline","G. Deisher","T. Gardos","C. Maciocco","D. Newell","J. Ott","G. Sullivan","S. Wenger","C. Zhu"],"rawDate":"1998-10","status":"Proposed Standard","obsoletedBy":["RFC4629"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc243":{"aliasOf":"rfc0243"},"rfc2430":{"rfcNumber":"RFC2430","href":"https://www.rfc-editor.org/rfc/rfc2430","title":"A Provider Architecture for Differentiated Services and Traffic Engineering (PASTE)","authors":["T. Li","Y. Rekhter"],"rawDate":"1998-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2431":{"rfcNumber":"RFC2431","href":"https://www.rfc-editor.org/rfc/rfc2431","title":"RTP Payload Format for BT.656 Video Encoding","authors":["D. Tynan"],"rawDate":"1998-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2432":{"rfcNumber":"RFC2432","href":"https://www.rfc-editor.org/rfc/rfc2432","title":"Terminology for IP Multicast Benchmarking","authors":["K. Dubray"],"rawDate":"1998-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2433":{"rfcNumber":"RFC2433","href":"https://www.rfc-editor.org/rfc/rfc2433","title":"Microsoft PPP CHAP Extensions","authors":["G. Zorn","S. Cobb"],"rawDate":"1998-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2433","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2434":{"rfcNumber":"RFC2434","href":"https://www.rfc-editor.org/rfc/rfc2434","title":"Guidelines for Writing an IANA Considerations Section in RFCs","authors":["T. Narten","H. Alvestrand"],"rawDate":"1998-10","status":"Best Current Practice","updatedBy":["RFC3692"],"obsoletedBy":["RFC5226"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2435":{"rfcNumber":"RFC2435","href":"https://www.rfc-editor.org/rfc/rfc2435","title":"RTP Payload Format for JPEG-compressed Video","authors":["L. Berc","W. Fenner","R. Frederick","S. McCanne","P. Stewart"],"rawDate":"1998-10","status":"Proposed Standard","obsoletes":["RFC2035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2435","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2436":{"rfcNumber":"RFC2436","href":"https://www.rfc-editor.org/rfc/rfc2436","title":"Collaboration between ISOC/IETF and ITU-T","authors":["R. Brett","S. Bradner","G. Parsons"],"rawDate":"1998-10","status":"Informational","obsoletedBy":["RFC3356"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2437":{"rfcNumber":"RFC2437","href":"https://www.rfc-editor.org/rfc/rfc2437","title":"PKCS #1: RSA Cryptography Specifications Version 2.0","authors":["B. Kaliski","J. Staddon"],"rawDate":"1998-10","status":"Informational","obsoletedBy":["RFC3447"],"obsoletes":["RFC2313"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2438":{"rfcNumber":"RFC2438","href":"https://www.rfc-editor.org/rfc/rfc2438","title":"Advancement of MIB specifications on the IETF Standards Track","authors":["M. O'Dell","H. Alvestrand","B. Wijnen","S. Bradner"],"rawDate":"1998-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2439":{"rfcNumber":"RFC2439","href":"https://www.rfc-editor.org/rfc/rfc2439","title":"BGP Route Flap Damping","authors":["C. Villamizar","R. Chandra","R. Govindan"],"rawDate":"1998-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2439","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2440":{"rfcNumber":"RFC2440","href":"https://www.rfc-editor.org/rfc/rfc2440","title":"OpenPGP Message Format","authors":["J. Callas","L. Donnerhacke","H. Finney","R. Thayer"],"rawDate":"1998-11","status":"Proposed Standard","obsoletedBy":["RFC4880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2441":{"rfcNumber":"RFC2441","href":"https://www.rfc-editor.org/rfc/rfc2441","title":"Working with Jon, Tribute delivered at UCLA, October 30, 1998","authors":["D. Cohen"],"rawDate":"1998-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2442":{"rfcNumber":"RFC2442","href":"https://www.rfc-editor.org/rfc/rfc2442","title":"The Batch SMTP Media Type","authors":["N. Freed","D. Newman","J. Belissent","M. Hoy"],"rawDate":"1998-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2443":{"rfcNumber":"RFC2443","href":"https://www.rfc-editor.org/rfc/rfc2443","title":"A Distributed MARS Service Using SCSP","authors":["J. Luciani","A. Gallo"],"rawDate":"1998-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2444":{"rfcNumber":"RFC2444","href":"https://www.rfc-editor.org/rfc/rfc2444","title":"The One-Time-Password SASL Mechanism","authors":["C. Newman"],"rawDate":"1998-10","status":"Proposed Standard","updates":["RFC2222"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2445":{"rfcNumber":"RFC2445","href":"https://www.rfc-editor.org/rfc/rfc2445","title":"Internet Calendaring and Scheduling Core Object Specification (iCalendar)","authors":["F. Dawson","D. Stenerson"],"rawDate":"1998-11","status":"Proposed Standard","obsoletedBy":["RFC5545"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2445","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2446":{"rfcNumber":"RFC2446","href":"https://www.rfc-editor.org/rfc/rfc2446","title":"iCalendar Transport-Independent Interoperability Protocol (iTIP) Scheduling Events, BusyTime, To-dos and Journal Entries","authors":["S. Silverberg","S. Mansour","F. Dawson","R. Hopson"],"rawDate":"1998-11","status":"Proposed Standard","obsoletedBy":["RFC5546"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2446","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2447":{"rfcNumber":"RFC2447","href":"https://www.rfc-editor.org/rfc/rfc2447","title":"iCalendar Message-Based Interoperability Protocol (iMIP)","authors":["F. Dawson","S. Mansour","S. Silverberg"],"rawDate":"1998-11","status":"Proposed Standard","obsoletedBy":["RFC6047"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2448":{"rfcNumber":"RFC2448","href":"https://www.rfc-editor.org/rfc/rfc2448","title":"AT&T's Error Resilient Video Transmission Technique","authors":["M. Civanlar","G. Cash","B. Haskell"],"rawDate":"1998-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2449":{"rfcNumber":"RFC2449","href":"https://www.rfc-editor.org/rfc/rfc2449","title":"POP3 Extension Mechanism","authors":["R. Gellens","C. Newman","L. Lundblade"],"rawDate":"1998-11","status":"Proposed Standard","updatedBy":["RFC5034"],"updates":["RFC1939"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc245":{"aliasOf":"rfc0245"},"rfc2450":{"rfcNumber":"RFC2450","href":"https://www.rfc-editor.org/rfc/rfc2450","title":"Proposed TLA and NLA Assignment Rule","authors":["R. Hinden"],"rawDate":"1998-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2451":{"rfcNumber":"RFC2451","href":"https://www.rfc-editor.org/rfc/rfc2451","title":"The ESP CBC-Mode Cipher Algorithms","authors":["R. Pereira","R. Adams"],"rawDate":"1998-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2452":{"rfcNumber":"RFC2452","href":"https://www.rfc-editor.org/rfc/rfc2452","title":"IP Version 6 Management Information Base for the Transmission Control Protocol","authors":["M. Daniele"],"rawDate":"1998-12","status":"Historic","obsoletedBy":["RFC4022","RFC8096"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2453":{"rfcNumber":"RFC2453","href":"https://www.rfc-editor.org/rfc/rfc2453","title":"RIP Version 2","authors":["G. Malkin"],"rawDate":"1998-11","status":"Internet Standard","updatedBy":["RFC4822"],"obsoletes":["RFC1723"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2453","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2454":{"rfcNumber":"RFC2454","href":"https://www.rfc-editor.org/rfc/rfc2454","title":"IP Version 6 Management Information Base for the User Datagram Protocol","authors":["M. Daniele"],"rawDate":"1998-12","status":"Historic","obsoletedBy":["RFC4113","RFC8096"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2455":{"rfcNumber":"RFC2455","href":"https://www.rfc-editor.org/rfc/rfc2455","title":"Definitions of Managed Objects for APPN","authors":["B. Clouston","B. Moore"],"rawDate":"1998-11","status":"Proposed Standard","obsoletes":["RFC2155"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2456":{"rfcNumber":"RFC2456","href":"https://www.rfc-editor.org/rfc/rfc2456","title":"Definitions of Managed Objects for APPN TRAPS","authors":["B. Clouston","B. Moore"],"rawDate":"1998-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2457":{"rfcNumber":"RFC2457","href":"https://www.rfc-editor.org/rfc/rfc2457","title":"Definitions of Managed Objects for Extended Border Node","authors":["B. Clouston","B. Moore"],"rawDate":"1998-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2458":{"rfcNumber":"RFC2458","href":"https://www.rfc-editor.org/rfc/rfc2458","title":"Toward the PSTN/Internet Inter-Networking--Pre-PINT Implementations","authors":["H. Lu","M. Krishnaswamy","L. Conroy","S. Bellovin","F. Burg","A. DeSimone","K. Tewani","P. Davidson","H. Schulzrinne","K. Vishwanathan"],"rawDate":"1998-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2459":{"rfcNumber":"RFC2459","href":"https://www.rfc-editor.org/rfc/rfc2459","title":"Internet X.509 Public Key Infrastructure Certificate and CRL Profile","authors":["R. Housley","W. Ford","W. Polk","D. Solo"],"rawDate":"1999-01","status":"Proposed Standard","obsoletedBy":["RFC3280"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2459","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc246":{"aliasOf":"rfc0246"},"rfc2460":{"rfcNumber":"RFC2460","href":"https://www.rfc-editor.org/rfc/rfc2460","title":"Internet Protocol, Version 6 (IPv6) Specification","authors":["S. Deering","R. Hinden"],"rawDate":"1998-12","status":"Draft Standard","updatedBy":["RFC5095","RFC5722","RFC5871","RFC6437","RFC6564","RFC6935","RFC6946","RFC7045","RFC7112"],"obsoletedBy":["RFC8200"],"obsoletes":["RFC1883"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2460","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2461":{"rfcNumber":"RFC2461","href":"https://www.rfc-editor.org/rfc/rfc2461","title":"Neighbor Discovery for IP Version 6 (IPv6)","authors":["T. Narten","E. Nordmark","W. Simpson"],"rawDate":"1998-12","status":"Draft Standard","updatedBy":["RFC4311"],"obsoletedBy":["RFC4861"],"obsoletes":["RFC1970"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2462":{"rfcNumber":"RFC2462","href":"https://www.rfc-editor.org/rfc/rfc2462","title":"IPv6 Stateless Address Autoconfiguration","authors":["S. Thomson","T. Narten"],"rawDate":"1998-12","status":"Draft Standard","obsoletedBy":["RFC4862"],"obsoletes":["RFC1971"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2462","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2463":{"rfcNumber":"RFC2463","href":"https://www.rfc-editor.org/rfc/rfc2463","title":"Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification","authors":["A. Conta","S. Deering"],"rawDate":"1998-12","status":"Draft Standard","obsoletedBy":["RFC4443"],"obsoletes":["RFC1885"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2464":{"rfcNumber":"RFC2464","href":"https://www.rfc-editor.org/rfc/rfc2464","title":"Transmission of IPv6 Packets over Ethernet Networks","authors":["M. Crawford"],"rawDate":"1998-12","status":"Proposed Standard","updatedBy":["RFC6085","RFC8064"],"obsoletes":["RFC1972"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2464","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2465":{"rfcNumber":"RFC2465","href":"https://www.rfc-editor.org/rfc/rfc2465","title":"Management Information Base for IP Version 6: Textual Conventions and General Group","authors":["D. Haskin","S. Onishi"],"rawDate":"1998-12","status":"Historic","obsoletedBy":["RFC4293","RFC8096"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2466":{"rfcNumber":"RFC2466","href":"https://www.rfc-editor.org/rfc/rfc2466","title":"Management Information Base for IP Version 6: ICMPv6 Group","authors":["D. Haskin","S. Onishi"],"rawDate":"1998-12","status":"Historic","obsoletedBy":["RFC4293","RFC8096"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2467":{"rfcNumber":"RFC2467","href":"https://www.rfc-editor.org/rfc/rfc2467","title":"Transmission of IPv6 Packets over FDDI Networks","authors":["M. Crawford"],"rawDate":"1998-12","status":"Proposed Standard","updatedBy":["RFC8064"],"obsoletes":["RFC2019"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2468":{"rfcNumber":"RFC2468","href":"https://www.rfc-editor.org/rfc/rfc2468","title":"I REMEMBER IANA","authors":["V. Cerf"],"rawDate":"1998-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2469":{"rfcNumber":"RFC2469","href":"https://www.rfc-editor.org/rfc/rfc2469","title":"A Caution On The Canonical Ordering Of Link-Layer Addresses","authors":["T. Narten","C. Burton"],"rawDate":"1998-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc247":{"aliasOf":"rfc0247"},"rfc2470":{"rfcNumber":"RFC2470","href":"https://www.rfc-editor.org/rfc/rfc2470","title":"Transmission of IPv6 Packets over Token Ring Networks","authors":["M. Crawford","T. Narten","S. Thomas"],"rawDate":"1998-12","status":"Proposed Standard","updatedBy":["RFC8064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2471":{"rfcNumber":"RFC2471","href":"https://www.rfc-editor.org/rfc/rfc2471","title":"IPv6 Testing Address Allocation","authors":["R. Hinden","R. Fink","J. Postel"],"rawDate":"1998-12","status":"Historic","obsoletedBy":["RFC3701"],"obsoletes":["RFC1897"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2472":{"rfcNumber":"RFC2472","href":"https://www.rfc-editor.org/rfc/rfc2472","title":"IP Version 6 over PPP","authors":["D. Haskin","E. Allen"],"rawDate":"1998-12","status":"Proposed Standard","obsoletedBy":["RFC5072","RFC5172"],"obsoletes":["RFC2023"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2473":{"rfcNumber":"RFC2473","href":"https://www.rfc-editor.org/rfc/rfc2473","title":"Generic Packet Tunneling in IPv6 Specification","authors":["A. Conta","S. Deering"],"rawDate":"1998-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2474":{"rfcNumber":"RFC2474","href":"https://www.rfc-editor.org/rfc/rfc2474","title":"Definition of the Differentiated Services Field (DS Field) in the IPv4 and IPv6 Headers","authors":["K. Nichols","S. Blake","F. Baker","D. Black"],"rawDate":"1998-12","status":"Proposed Standard","updatedBy":["RFC3168","RFC3260","RFC8436"],"updates":["RFC0791"],"obsoletes":["RFC1455","RFC1349"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2474","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2475":{"rfcNumber":"RFC2475","href":"https://www.rfc-editor.org/rfc/rfc2475","title":"An Architecture for Differentiated Services","authors":["S. Blake","D. Black","M. Carlson","E. Davies","Z. Wang","W. Weiss"],"rawDate":"1998-12","status":"Informational","updatedBy":["RFC3260"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2476":{"rfcNumber":"RFC2476","href":"https://www.rfc-editor.org/rfc/rfc2476","title":"Message Submission","authors":["R. Gellens","J. Klensin"],"rawDate":"1998-12","status":"Proposed Standard","obsoletedBy":["RFC4409"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2477":{"rfcNumber":"RFC2477","href":"https://www.rfc-editor.org/rfc/rfc2477","title":"Criteria for Evaluating Roaming Protocols","authors":["B. Aboba","G. Zorn"],"rawDate":"1999-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2478":{"rfcNumber":"RFC2478","href":"https://www.rfc-editor.org/rfc/rfc2478","title":"The Simple and Protected GSS-API Negotiation Mechanism","authors":["E. Baize","D. Pinkas"],"rawDate":"1998-12","status":"Proposed Standard","obsoletedBy":["RFC4178"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2479":{"rfcNumber":"RFC2479","href":"https://www.rfc-editor.org/rfc/rfc2479","title":"Independent Data Unit Protection Generic Security Service Application Program Interface (IDUP-GSS-API)","authors":["C. Adams"],"rawDate":"1998-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2480":{"rfcNumber":"RFC2480","href":"https://www.rfc-editor.org/rfc/rfc2480","title":"Gateways and MIME Security Multiparts","authors":["N. Freed"],"rawDate":"1999-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2481":{"rfcNumber":"RFC2481","href":"https://www.rfc-editor.org/rfc/rfc2481","title":"A Proposal to add Explicit Congestion Notification (ECN) to IP","authors":["K. Ramakrishnan","S. Floyd"],"rawDate":"1999-01","status":"Experimental","obsoletedBy":["RFC3168"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2482":{"rfcNumber":"RFC2482","href":"https://www.rfc-editor.org/rfc/rfc2482","title":"Language Tagging in Unicode Plain Text","authors":["K. Whistler","G. Adams"],"rawDate":"1999-01","status":"Historic","obsoletedBy":["RFC6082"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2483":{"rfcNumber":"RFC2483","href":"https://www.rfc-editor.org/rfc/rfc2483","title":"URI Resolution Services Necessary for URN Resolution","authors":["M. Mealling","R. Daniel"],"rawDate":"1999-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2484":{"rfcNumber":"RFC2484","href":"https://www.rfc-editor.org/rfc/rfc2484","title":"PPP LCP Internationalization Configuration Option","authors":["G. Zorn"],"rawDate":"1999-01","status":"Proposed Standard","updates":["RFC2284","RFC1994","RFC1570"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2485":{"rfcNumber":"RFC2485","href":"https://www.rfc-editor.org/rfc/rfc2485","title":"DHCP Option for The Open Group's User Authentication Protocol","authors":["S. Drach"],"rawDate":"1999-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2486":{"rfcNumber":"RFC2486","href":"https://www.rfc-editor.org/rfc/rfc2486","title":"The Network Access Identifier","authors":["B. Aboba","M. Beadles"],"rawDate":"1999-01","status":"Proposed Standard","obsoletedBy":["RFC4282"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2486","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2487":{"rfcNumber":"RFC2487","href":"https://www.rfc-editor.org/rfc/rfc2487","title":"SMTP Service Extension for Secure SMTP over TLS","authors":["P. Hoffman"],"rawDate":"1999-01","status":"Proposed Standard","obsoletedBy":["RFC3207"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2488":{"rfcNumber":"RFC2488","href":"https://www.rfc-editor.org/rfc/rfc2488","title":"Enhancing TCP Over Satellite Channels using Standard Mechanisms","authors":["M. Allman","D. Glover","L. Sanchez"],"rawDate":"1999-01","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2488","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2489":{"rfcNumber":"RFC2489","href":"https://www.rfc-editor.org/rfc/rfc2489","title":"Procedure for Defining New DHCP Options","authors":["R. Droms"],"rawDate":"1999-01","status":"Best Current Practice","obsoletedBy":["RFC2939"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2489","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc249":{"aliasOf":"rfc0249"},"rfc2490":{"rfcNumber":"RFC2490","href":"https://www.rfc-editor.org/rfc/rfc2490","title":"A Simulation Model for IP Multicast with RSVP","authors":["M. Pullen","R. Malghan","L. Lavu","G. Duan","J. Ma","H. Nah"],"rawDate":"1999-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2491":{"rfcNumber":"RFC2491","href":"https://www.rfc-editor.org/rfc/rfc2491","title":"IPv6 over Non-Broadcast Multiple Access (NBMA) networks","authors":["G. Armitage","P. Schulter","M. Jork","G. Harter"],"rawDate":"1999-01","status":"Proposed Standard","updatedBy":["RFC8064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2492":{"rfcNumber":"RFC2492","href":"https://www.rfc-editor.org/rfc/rfc2492","title":"IPv6 over ATM Networks","authors":["G. Armitage","P. Schulter","M. Jork"],"rawDate":"1999-01","status":"Proposed Standard","updatedBy":["RFC8064"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2492","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2493":{"rfcNumber":"RFC2493","href":"https://www.rfc-editor.org/rfc/rfc2493","title":"Textual Conventions for MIB Modules Using Performance History Based on 15 Minute Intervals","authors":["K. Tesink, Ed."],"rawDate":"1999-01","status":"Proposed Standard","obsoletedBy":["RFC3593"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2494":{"rfcNumber":"RFC2494","href":"https://www.rfc-editor.org/rfc/rfc2494","title":"Definitions of Managed Objects for the DS0 and DS0 Bundle Interface Type","authors":["D. Fowler, Ed."],"rawDate":"1999-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2495":{"rfcNumber":"RFC2495","href":"https://www.rfc-editor.org/rfc/rfc2495","title":"Definitions of Managed Objects for the DS1, E1, DS2 and E2 Interface Types","authors":["D. Fowler, Ed."],"rawDate":"1999-01","status":"Proposed Standard","obsoletedBy":["RFC3895"],"obsoletes":["RFC1406"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2496":{"rfcNumber":"RFC2496","href":"https://www.rfc-editor.org/rfc/rfc2496","title":"Definitions of Managed Object for the DS3/E3 Interface Type","authors":["D. Fowler, Ed."],"rawDate":"1999-01","status":"Proposed Standard","obsoletedBy":["RFC3896"],"obsoletes":["RFC1407"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2497":{"rfcNumber":"RFC2497","href":"https://www.rfc-editor.org/rfc/rfc2497","title":"Transmission of IPv6 Packets over ARCnet Networks","authors":["I. Souvatzis"],"rawDate":"1999-01","status":"Proposed Standard","updatedBy":["RFC8064"],"seeAlso":["RFC1201"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2498":{"rfcNumber":"RFC2498","href":"https://www.rfc-editor.org/rfc/rfc2498","title":"IPPM Metrics for Measuring Connectivity","authors":["J. Mahdavi","V. Paxson"],"rawDate":"1999-01","status":"Experimental","obsoletedBy":["RFC2678"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2499":{"rfcNumber":"RFC2499","href":"https://www.rfc-editor.org/rfc/rfc2499","title":"Request for Comments Summary","authors":["A. Ramos"],"rawDate":"1999-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc25":{"aliasOf":"rfc0025"},"rfc250":{"aliasOf":"rfc0250"},"rfc2500":{"rfcNumber":"RFC2500","href":"https://www.rfc-editor.org/rfc/rfc2500","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden"],"rawDate":"1999-06","status":"Historic","obsoletedBy":["RFC2600"],"obsoletes":["RFC2400"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2501":{"rfcNumber":"RFC2501","href":"https://www.rfc-editor.org/rfc/rfc2501","title":"Mobile Ad hoc Networking (MANET): Routing Protocol Performance Issues and Evaluation Considerations","authors":["S. Corson","J. Macker"],"rawDate":"1999-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2502":{"rfcNumber":"RFC2502","href":"https://www.rfc-editor.org/rfc/rfc2502","title":"Limitations of Internet Protocol Suite for Distributed Simulation the Large Multicast Environment","authors":["M. Pullen","M. Myjak","C. Bouwens"],"rawDate":"1999-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2503":{"rfcNumber":"RFC2503","href":"https://www.rfc-editor.org/rfc/rfc2503","title":"MIME Types for Use with the ISO ILL Protocol","authors":["R. Moulton","M. Needleman"],"rawDate":"1999-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2504":{"rfcNumber":"RFC2504","href":"https://www.rfc-editor.org/rfc/rfc2504","title":"Users' Security Handbook","authors":["E. Guttman","L. Leong","G. Malkin"],"rawDate":"1999-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2505":{"rfcNumber":"RFC2505","href":"https://www.rfc-editor.org/rfc/rfc2505","title":"Anti-Spam Recommendations for SMTP MTAs","authors":["G. Lindberg"],"rawDate":"1999-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2506":{"rfcNumber":"RFC2506","href":"https://www.rfc-editor.org/rfc/rfc2506","title":"Media Feature Tag Registration Procedure","authors":["K. Holtman","A. Mutz","T. Hardie"],"rawDate":"1999-03","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2507":{"rfcNumber":"RFC2507","href":"https://www.rfc-editor.org/rfc/rfc2507","title":"IP Header Compression","authors":["M. Degermark","B. Nordgren","S. Pink"],"rawDate":"1999-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2508":{"rfcNumber":"RFC2508","href":"https://www.rfc-editor.org/rfc/rfc2508","title":"Compressing IP/UDP/RTP Headers for Low-Speed Serial Links","authors":["S. Casner","V. Jacobson"],"rawDate":"1999-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2509":{"rfcNumber":"RFC2509","href":"https://www.rfc-editor.org/rfc/rfc2509","title":"IP Header Compression over PPP","authors":["M. Engan","S. Casner","C. Bormann"],"rawDate":"1999-02","status":"Proposed Standard","obsoletedBy":["RFC3544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc251":{"aliasOf":"rfc0251"},"rfc2510":{"rfcNumber":"RFC2510","href":"https://www.rfc-editor.org/rfc/rfc2510","title":"Internet X.509 Public Key Infrastructure Certificate Management Protocols","authors":["C. Adams","S. Farrell"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC4210"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2511":{"rfcNumber":"RFC2511","href":"https://www.rfc-editor.org/rfc/rfc2511","title":"Internet X.509 Certificate Request Message Format","authors":["M. Myers","C. Adams","D. Solo","D. Kemp"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC4211"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2512":{"rfcNumber":"RFC2512","href":"https://www.rfc-editor.org/rfc/rfc2512","title":"Accounting Information for ATM Networks","authors":["K. McCloghrie","J. Heinanen","W. Greene","A. Prasad"],"rawDate":"1999-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2513":{"rfcNumber":"RFC2513","href":"https://www.rfc-editor.org/rfc/rfc2513","title":"Managed Objects for Controlling the Collection and Storage of Accounting Information for Connection-Oriented Networks","authors":["K. McCloghrie","J. Heinanen","W. Greene","A. Prasad"],"rawDate":"1999-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2514":{"rfcNumber":"RFC2514","href":"https://www.rfc-editor.org/rfc/rfc2514","title":"Definitions of Textual Conventions and OBJECT-IDENTITIES for ATM Management","authors":["M. Noto","E. Spiegel","K. Tesink"],"rawDate":"1999-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2515":{"rfcNumber":"RFC2515","href":"https://www.rfc-editor.org/rfc/rfc2515","title":"Definitions of Managed Objects for ATM Management","authors":["K. Tesink, Ed."],"rawDate":"1999-02","status":"Proposed Standard","obsoletes":["RFC1695"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2516":{"rfcNumber":"RFC2516","href":"https://www.rfc-editor.org/rfc/rfc2516","title":"A Method for Transmitting PPP Over Ethernet (PPPoE)","authors":["L. Mamakos","K. Lidl","J. Evarts","D. Carrel","D. Simone","R. Wheeler"],"rawDate":"1999-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2516","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2517":{"rfcNumber":"RFC2517","href":"https://www.rfc-editor.org/rfc/rfc2517","title":"Building Directories from DNS: Experiences from WWWSeeker","authors":["R. Moats","R. Huber"],"rawDate":"1999-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2518":{"rfcNumber":"RFC2518","href":"https://www.rfc-editor.org/rfc/rfc2518","title":"HTTP Extensions for Distributed Authoring -- WEBDAV","authors":["Y. Goland","E. Whitehead","A. Faizi","S. Carter","D. Jensen"],"rawDate":"1999-02","status":"Proposed Standard","obsoletedBy":["RFC4918"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2518","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2519":{"rfcNumber":"RFC2519","href":"https://www.rfc-editor.org/rfc/rfc2519","title":"A Framework for Inter-Domain Route Aggregation","authors":["E. Chen","J. Stewart"],"rawDate":"1999-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc252":{"aliasOf":"rfc0252"},"rfc2520":{"rfcNumber":"RFC2520","href":"https://www.rfc-editor.org/rfc/rfc2520","title":"NHRP with Mobile NHCs","authors":["J. Luciani","H. Suzuki","N. Doraswamy","D. Horton"],"rawDate":"1999-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2521":{"rfcNumber":"RFC2521","href":"https://www.rfc-editor.org/rfc/rfc2521","title":"ICMP Security Failures Messages","authors":["P. Karn","W. Simpson"],"rawDate":"1999-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2522":{"rfcNumber":"RFC2522","href":"https://www.rfc-editor.org/rfc/rfc2522","title":"Photuris: Session-Key Management Protocol","authors":["P. Karn","W. Simpson"],"rawDate":"1999-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2523":{"rfcNumber":"RFC2523","href":"https://www.rfc-editor.org/rfc/rfc2523","title":"Photuris: Extended Schemes and Attributes","authors":["P. Karn","W. Simpson"],"rawDate":"1999-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2524":{"rfcNumber":"RFC2524","href":"https://www.rfc-editor.org/rfc/rfc2524","title":"Neda's Efficient Mail Submission and Delivery (EMSD) Protocol Specification Version 1.3","authors":["M. Banan"],"rawDate":"1999-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2525":{"rfcNumber":"RFC2525","href":"https://www.rfc-editor.org/rfc/rfc2525","title":"Known TCP Implementation Problems","authors":["V. Paxson","M. Allman","S. Dawson","W. Fenner","J. Griner","I. Heavens","K. Lahey","J. Semke","B. Volz"],"rawDate":"1999-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2526":{"rfcNumber":"RFC2526","href":"https://www.rfc-editor.org/rfc/rfc2526","title":"Reserved IPv6 Subnet Anycast Addresses","authors":["D. Johnson","S. Deering"],"rawDate":"1999-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2526","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2527":{"rfcNumber":"RFC2527","href":"https://www.rfc-editor.org/rfc/rfc2527","title":"Internet X.509 Public Key Infrastructure Certificate Policy and Certification Practices Framework","authors":["S. Chokhani","W. Ford"],"rawDate":"1999-03","status":"Informational","obsoletedBy":["RFC3647"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2527","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2528":{"rfcNumber":"RFC2528","href":"https://www.rfc-editor.org/rfc/rfc2528","title":"Internet X.509 Public Key Infrastructure Representation of Key Exchange Algorithm (KEA) Keys in Internet X.509 Public Key Infrastructure Certificates","authors":["R. Housley","W. Polk"],"rawDate":"1999-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2529":{"rfcNumber":"RFC2529","href":"https://www.rfc-editor.org/rfc/rfc2529","title":"Transmission of IPv6 over IPv4 Domains without Explicit Tunnels","authors":["B. Carpenter","C. Jung"],"rawDate":"1999-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc253":{"aliasOf":"rfc0253"},"rfc2530":{"rfcNumber":"RFC2530","href":"https://www.rfc-editor.org/rfc/rfc2530","title":"Indicating Supported Media Features Using Extensions to DSN and MDN","authors":["D. Wing"],"rawDate":"1999-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2531":{"rfcNumber":"RFC2531","href":"https://www.rfc-editor.org/rfc/rfc2531","title":"Content Feature Schema for Internet Fax","authors":["G. Klyne","L. McIntyre"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC2879"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2532":{"rfcNumber":"RFC2532","href":"https://www.rfc-editor.org/rfc/rfc2532","title":"Extended Facsimile Using Internet Mail","authors":["L. Masinter","D. Wing"],"rawDate":"1999-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2533":{"rfcNumber":"RFC2533","href":"https://www.rfc-editor.org/rfc/rfc2533","title":"A Syntax for Describing Media Feature Sets","authors":["G. Klyne"],"rawDate":"1999-03","status":"Proposed Standard","updatedBy":["RFC2738","RFC2938"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2534":{"rfcNumber":"RFC2534","href":"https://www.rfc-editor.org/rfc/rfc2534","title":"Media Features for Display, Print, and Fax","authors":["L. Masinter","D. Wing","A. Mutz","K. Holtman"],"rawDate":"1999-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2535":{"rfcNumber":"RFC2535","href":"https://www.rfc-editor.org/rfc/rfc2535","title":"Domain Name System Security Extensions","authors":["D. Eastlake 3rd"],"rawDate":"1999-03","status":"Proposed Standard","updatedBy":["RFC2931","RFC3007","RFC3008","RFC3090","RFC3226","RFC3445","RFC3597","RFC3655","RFC3658","RFC3755","RFC3757","RFC3845"],"obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC2181","RFC1035","RFC1034"],"obsoletes":["RFC2065"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2535","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2536":{"rfcNumber":"RFC2536","href":"https://www.rfc-editor.org/rfc/rfc2536","title":"DSA KEYs and SIGs in the Domain Name System (DNS)","authors":["D. Eastlake 3rd"],"rawDate":"1999-03","status":"Proposed Standard","updatedBy":["RFC6944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2537":{"rfcNumber":"RFC2537","href":"https://www.rfc-editor.org/rfc/rfc2537","title":"RSA/MD5 KEYs and SIGs in the Domain Name System (DNS)","authors":["D. Eastlake 3rd"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC3110"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2538":{"rfcNumber":"RFC2538","href":"https://www.rfc-editor.org/rfc/rfc2538","title":"Storing Certificates in the Domain Name System (DNS)","authors":["D. Eastlake 3rd","O. Gudmundsson"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC4398"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2539":{"rfcNumber":"RFC2539","href":"https://www.rfc-editor.org/rfc/rfc2539","title":"Storage of Diffie-Hellman Keys in the Domain Name System (DNS)","authors":["D. Eastlake 3rd"],"rawDate":"1999-03","status":"Proposed Standard","updatedBy":["RFC6944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc254":{"aliasOf":"rfc0254"},"rfc2540":{"rfcNumber":"RFC2540","href":"https://www.rfc-editor.org/rfc/rfc2540","title":"Detached Domain Name System (DNS) Information","authors":["D. Eastlake 3rd"],"rawDate":"1999-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2541":{"rfcNumber":"RFC2541","href":"https://www.rfc-editor.org/rfc/rfc2541","title":"DNS Security Operational Considerations","authors":["D. Eastlake 3rd"],"rawDate":"1999-03","status":"Informational","obsoletedBy":["RFC4641"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2542":{"rfcNumber":"RFC2542","href":"https://www.rfc-editor.org/rfc/rfc2542","title":"Terminology and Goals for Internet Fax","authors":["L. Masinter"],"rawDate":"1999-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2543":{"rfcNumber":"RFC2543","href":"https://www.rfc-editor.org/rfc/rfc2543","title":"SIP: Session Initiation Protocol","authors":["M. Handley","H. Schulzrinne","E. Schooler","J. Rosenberg"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC3261","RFC3262","RFC3263","RFC3264","RFC3265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2544":{"rfcNumber":"RFC2544","href":"https://www.rfc-editor.org/rfc/rfc2544","title":"Benchmarking Methodology for Network Interconnect Devices","authors":["S. Bradner","J. McQuaid"],"rawDate":"1999-03","status":"Informational","updatedBy":["RFC6201","RFC6815","RFC9004"],"obsoletes":["RFC1944"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2544","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2545":{"rfcNumber":"RFC2545","href":"https://www.rfc-editor.org/rfc/rfc2545","title":"Use of BGP-4 Multiprotocol Extensions for IPv6 Inter-Domain Routing","authors":["P. Marques","F. Dupont"],"rawDate":"1999-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2546":{"rfcNumber":"RFC2546","href":"https://www.rfc-editor.org/rfc/rfc2546","title":"6Bone Routing Practice","authors":["A. Durand","B. Buclin"],"rawDate":"1999-03","status":"Informational","obsoletedBy":["RFC2772"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2547":{"rfcNumber":"RFC2547","href":"https://www.rfc-editor.org/rfc/rfc2547","title":"BGP/MPLS VPNs","authors":["E. Rosen","Y. Rekhter"],"rawDate":"1999-03","status":"Informational","obsoletedBy":["RFC4364"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2548":{"rfcNumber":"RFC2548","href":"https://www.rfc-editor.org/rfc/rfc2548","title":"Microsoft Vendor-specific RADIUS Attributes","authors":["G. Zorn"],"rawDate":"1999-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2548","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2549":{"rfcNumber":"RFC2549","href":"https://www.rfc-editor.org/rfc/rfc2549","title":"IP over Avian Carriers with Quality of Service","authors":["D. Waitzman"],"rawDate":"1999-04-01","status":"Informational","updates":["RFC1149"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2549","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc255":{"aliasOf":"rfc0255"},"rfc2550":{"rfcNumber":"RFC2550","href":"https://www.rfc-editor.org/rfc/rfc2550","title":"Y10K and Beyond","authors":["S. Glassman","M. Manasse","J. Mogul"],"rawDate":"1999-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2550","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2551":{"rfcNumber":"RFC2551","href":"https://www.rfc-editor.org/rfc/rfc2551","title":"The Roman Standards Process -- Revision III","authors":["S. Bradner"],"rawDate":"1999-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2552":{"rfcNumber":"RFC2552","href":"https://www.rfc-editor.org/rfc/rfc2552","title":"Architecture for the Information Brokerage in the ACTS Project GAIA","authors":["M. Blinov","M. Bessonov","C. Clissmann"],"rawDate":"1999-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2553":{"rfcNumber":"RFC2553","href":"https://www.rfc-editor.org/rfc/rfc2553","title":"Basic Socket Interface Extensions for IPv6","authors":["R. Gilligan","S. Thomson","J. Bound","W. Stevens"],"rawDate":"1999-03","status":"Informational","updatedBy":["RFC3152"],"obsoletedBy":["RFC3493"],"obsoletes":["RFC2133"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2554":{"rfcNumber":"RFC2554","href":"https://www.rfc-editor.org/rfc/rfc2554","title":"SMTP Service Extension for Authentication","authors":["J. Myers"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC4954"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2555":{"rfcNumber":"RFC2555","href":"https://www.rfc-editor.org/rfc/rfc2555","title":"30 Years of RFCs","authors":["RFC Editor, et al."],"rawDate":"1999-04","status":"Informational","updatedBy":["RFC8700"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2556":{"rfcNumber":"RFC2556","href":"https://www.rfc-editor.org/rfc/rfc2556","title":"OSI connectionless transport services on top of UDP Applicability Statement for Historic Status","authors":["S. Bradner"],"rawDate":"1999-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2557":{"rfcNumber":"RFC2557","href":"https://www.rfc-editor.org/rfc/rfc2557","title":"MIME Encapsulation of Aggregate Documents, such as HTML (MHTML)","authors":["J. Palme","A. Hopmann","N. Shelness"],"rawDate":"1999-03","status":"Proposed Standard","obsoletes":["RFC2110"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2557","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2558":{"rfcNumber":"RFC2558","href":"https://www.rfc-editor.org/rfc/rfc2558","title":"Definitions of Managed Objects for the SONET/SDH Interface Type","authors":["K. Tesink"],"rawDate":"1999-03","status":"Proposed Standard","obsoletedBy":["RFC3592"],"obsoletes":["RFC1595"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2559":{"rfcNumber":"RFC2559","href":"https://www.rfc-editor.org/rfc/rfc2559","title":"Internet X.509 Public Key Infrastructure Operational Protocols - LDAPv2","authors":["S. Boeyen","T. Howes","P. Richard"],"rawDate":"1999-04","status":"Historic","obsoletedBy":["RFC3494"],"updates":["RFC1778"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc256":{"aliasOf":"rfc0256"},"rfc2560":{"rfcNumber":"RFC2560","href":"https://www.rfc-editor.org/rfc/rfc2560","title":"X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP","authors":["M. Myers","R. Ankney","A. Malpani","S. Galperin","C. Adams"],"rawDate":"1999-06","status":"Proposed Standard","updatedBy":["RFC6277"],"obsoletedBy":["RFC6960"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2560","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2561":{"rfcNumber":"RFC2561","href":"https://www.rfc-editor.org/rfc/rfc2561","title":"Base Definitions of Managed Objects for TN3270E Using SMIv2","authors":["K. White","R. Moore"],"rawDate":"1999-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2562":{"rfcNumber":"RFC2562","href":"https://www.rfc-editor.org/rfc/rfc2562","title":"Definitions of Protocol and Managed Objects for TN3270E Response Time Collection Using SMIv2 (TN3270E-RT-MIB)","authors":["K. White","R. Moore"],"rawDate":"1999-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2563":{"rfcNumber":"RFC2563","href":"https://www.rfc-editor.org/rfc/rfc2563","title":"DHCP Option to Disable Stateless Auto-Configuration in IPv4 Clients","authors":["R. Troll"],"rawDate":"1999-05","status":"Proposed Standard","updatedBy":["RFC8925"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2564":{"rfcNumber":"RFC2564","href":"https://www.rfc-editor.org/rfc/rfc2564","title":"Application Management MIB","authors":["C. Kalbfleisch","C. Krupczak","R. Presuhn","J. Saperia"],"rawDate":"1999-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2565":{"rfcNumber":"RFC2565","href":"https://www.rfc-editor.org/rfc/rfc2565","title":"Internet Printing Protocol/1.0: Encoding and Transport","authors":["R. Herriot, Ed.","S. Butler","P. Moore","R. Turner"],"rawDate":"1999-04","status":"Experimental","obsoletedBy":["RFC2910"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2565","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2566":{"rfcNumber":"RFC2566","href":"https://www.rfc-editor.org/rfc/rfc2566","title":"Internet Printing Protocol/1.0: Model and Semantics","authors":["R. deBry","T. Hastings","R. Herriot","S. Isaacson","P. Powell"],"rawDate":"1999-04","status":"Experimental","obsoletedBy":["RFC2911"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2567":{"rfcNumber":"RFC2567","href":"https://www.rfc-editor.org/rfc/rfc2567","title":"Design Goals for an Internet Printing Protocol","authors":["F. Wright"],"rawDate":"1999-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2568":{"rfcNumber":"RFC2568","href":"https://www.rfc-editor.org/rfc/rfc2568","title":"Rationale for the Structure of the Model and Protocol for the Internet Printing Protocol","authors":["S. Zilles"],"rawDate":"1999-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2569":{"rfcNumber":"RFC2569","href":"https://www.rfc-editor.org/rfc/rfc2569","title":"Mapping between LPD and IPP Protocols","authors":["R. Herriot, Ed.","T. Hastings","N. Jacobs","J. Martin"],"rawDate":"1999-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2570":{"rfcNumber":"RFC2570","href":"https://www.rfc-editor.org/rfc/rfc2570","title":"Introduction to Version 3 of the Internet-standard Network Management Framework","authors":["J. Case","R. Mundy","D. Partain","B. Stewart"],"rawDate":"1999-04","status":"Informational","obsoletedBy":["RFC3410"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2571":{"rfcNumber":"RFC2571","href":"https://www.rfc-editor.org/rfc/rfc2571","title":"An Architecture for Describing SNMP Management Frameworks","authors":["B. Wijnen","D. Harrington","R. Presuhn"],"rawDate":"1999-04","status":"Draft Standard","obsoletedBy":["RFC3411"],"obsoletes":["RFC2271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2572":{"rfcNumber":"RFC2572","href":"https://www.rfc-editor.org/rfc/rfc2572","title":"Message Processing and Dispatching for the Simple Network Management Protocol (SNMP)","authors":["J. Case","D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"1999-04","status":"Draft Standard","obsoletedBy":["RFC3412"],"obsoletes":["RFC2272"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2573":{"rfcNumber":"RFC2573","href":"https://www.rfc-editor.org/rfc/rfc2573","title":"SNMP Applications","authors":["D. Levi","P. Meyer","B. Stewart"],"rawDate":"1999-04","status":"Draft Standard","obsoletedBy":["RFC3413"],"obsoletes":["RFC2273"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2574":{"rfcNumber":"RFC2574","href":"https://www.rfc-editor.org/rfc/rfc2574","title":"User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3)","authors":["U. Blumenthal","B. Wijnen"],"rawDate":"1999-04","status":"Draft Standard","obsoletedBy":["RFC3414"],"obsoletes":["RFC2274"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2575":{"rfcNumber":"RFC2575","href":"https://www.rfc-editor.org/rfc/rfc2575","title":"View-based Access Control Model (VACM) for the Simple Network Management Protocol (SNMP)","authors":["B. Wijnen","R. Presuhn","K. McCloghrie"],"rawDate":"1999-04","status":"Draft Standard","obsoletedBy":["RFC3415"],"obsoletes":["RFC2275"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2576":{"rfcNumber":"RFC2576","href":"https://www.rfc-editor.org/rfc/rfc2576","title":"Coexistence between Version 1, Version 2, and Version 3 of the Internet-standard Network Management Framework","authors":["R. Frye","D. Levi","S. Routhier","B. Wijnen"],"rawDate":"2000-03","status":"Proposed Standard","obsoletedBy":["RFC3584"],"obsoletes":["RFC1908","RFC2089"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2576","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2577":{"rfcNumber":"RFC2577","href":"https://www.rfc-editor.org/rfc/rfc2577","title":"FTP Security Considerations","authors":["M. Allman","S. Ostermann"],"rawDate":"1999-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2578":{"rfcNumber":"RFC2578","href":"https://www.rfc-editor.org/rfc/rfc2578","title":"Structure of Management Information Version 2 (SMIv2)","authors":["K. McCloghrie, Ed.","D. Perkins, Ed.","J. Schoenwaelder, Ed."],"rawDate":"1999-04","status":"Internet Standard","obsoletes":["RFC1902"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2579":{"rfcNumber":"RFC2579","href":"https://www.rfc-editor.org/rfc/rfc2579","title":"Textual Conventions for SMIv2","authors":["K. McCloghrie, Ed.","D. Perkins, Ed.","J. Schoenwaelder, Ed."],"rawDate":"1999-04","status":"Internet Standard","obsoletes":["RFC1903"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2579","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2580":{"rfcNumber":"RFC2580","href":"https://www.rfc-editor.org/rfc/rfc2580","title":"Conformance Statements for SMIv2","authors":["K. McCloghrie, Ed.","D. Perkins, Ed.","J. Schoenwaelder, Ed."],"rawDate":"1999-04","status":"Internet Standard","obsoletes":["RFC1904"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2581":{"rfcNumber":"RFC2581","href":"https://www.rfc-editor.org/rfc/rfc2581","title":"TCP Congestion Control","authors":["M. Allman","V. Paxson","W. Stevens"],"rawDate":"1999-04","status":"Proposed Standard","updatedBy":["RFC3390"],"obsoletedBy":["RFC5681"],"obsoletes":["RFC2001"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2581","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2582":{"rfcNumber":"RFC2582","href":"https://www.rfc-editor.org/rfc/rfc2582","title":"The NewReno Modification to TCP's Fast Recovery Algorithm","authors":["S. Floyd","T. Henderson"],"rawDate":"1999-04","status":"Experimental","obsoletedBy":["RFC3782"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2583":{"rfcNumber":"RFC2583","href":"https://www.rfc-editor.org/rfc/rfc2583","title":"Guidelines for Next Hop Client (NHC) Developers","authors":["R. Carlson","L. Winkler"],"rawDate":"1999-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2584":{"rfcNumber":"RFC2584","href":"https://www.rfc-editor.org/rfc/rfc2584","title":"Definitions of Managed Objects for APPN/HPR in IP Networks","authors":["B. Clouston","B. Moore"],"rawDate":"1999-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2585":{"rfcNumber":"RFC2585","href":"https://www.rfc-editor.org/rfc/rfc2585","title":"Internet X.509 Public Key Infrastructure Operational Protocols: FTP and HTTP","authors":["R. Housley","P. Hoffman"],"rawDate":"1999-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2585","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2586":{"rfcNumber":"RFC2586","href":"https://www.rfc-editor.org/rfc/rfc2586","title":"The Audio/L16 MIME content type","authors":["J. Salsman","H. Alvestrand"],"rawDate":"1999-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2587":{"rfcNumber":"RFC2587","href":"https://www.rfc-editor.org/rfc/rfc2587","title":"Internet X.509 Public Key Infrastructure LDAPv2 Schema","authors":["S. Boeyen","T. Howes","P. Richard"],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC4523"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2588":{"rfcNumber":"RFC2588","href":"https://www.rfc-editor.org/rfc/rfc2588","title":"IP Multicast and Firewalls","authors":["R. Finlayson"],"rawDate":"1999-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2589":{"rfcNumber":"RFC2589","href":"https://www.rfc-editor.org/rfc/rfc2589","title":"Lightweight Directory Access Protocol (v3): Extensions for Dynamic Directory Services","authors":["Y. Yaacovi","M. Wahl","T. Genovese"],"rawDate":"1999-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2590":{"rfcNumber":"RFC2590","href":"https://www.rfc-editor.org/rfc/rfc2590","title":"Transmission of IPv6 Packets over Frame Relay Networks Specification","authors":["A. Conta","A. Malis","M. Mueller"],"rawDate":"1999-05","status":"Proposed Standard","updatedBy":["RFC8064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2591":{"rfcNumber":"RFC2591","href":"https://www.rfc-editor.org/rfc/rfc2591","title":"Definitions of Managed Objects for Scheduling Management Operations","authors":["D. Levi","J. Schoenwaelder"],"rawDate":"1999-05","status":"Proposed Standard","obsoletedBy":["RFC3231"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2592":{"rfcNumber":"RFC2592","href":"https://www.rfc-editor.org/rfc/rfc2592","title":"Definitions of Managed Objects for the Delegation of Management Script","authors":["D. Levi","J. Schoenwaelder"],"rawDate":"1999-05","status":"Proposed Standard","obsoletedBy":["RFC3165"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2593":{"rfcNumber":"RFC2593","href":"https://www.rfc-editor.org/rfc/rfc2593","title":"Script MIB Extensibility Protocol Version 1.0","authors":["J. Schoenwaelder","J. Quittek"],"rawDate":"1999-05","status":"Experimental","obsoletedBy":["RFC3179"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2594":{"rfcNumber":"RFC2594","href":"https://www.rfc-editor.org/rfc/rfc2594","title":"Definitions of Managed Objects for WWW Services","authors":["H. Hazewinkel","C. Kalbfleisch","J. Schoenwaelder"],"rawDate":"1999-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2595":{"rfcNumber":"RFC2595","href":"https://www.rfc-editor.org/rfc/rfc2595","title":"Using TLS with IMAP, POP3 and ACAP","authors":["C. Newman"],"rawDate":"1999-06","status":"Proposed Standard","updatedBy":["RFC4616","RFC7817","RFC8314"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2595","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2596":{"rfcNumber":"RFC2596","href":"https://www.rfc-editor.org/rfc/rfc2596","title":"Use of Language Codes in LDAP","authors":["M. Wahl","T. Howes"],"rawDate":"1999-05","status":"Proposed Standard","obsoletedBy":["RFC3866"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2597":{"rfcNumber":"RFC2597","href":"https://www.rfc-editor.org/rfc/rfc2597","title":"Assured Forwarding PHB Group","authors":["J. Heinanen","F. Baker","W. Weiss","J. Wroclawski"],"rawDate":"1999-06","status":"Proposed Standard","updatedBy":["RFC3260"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2597","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2598":{"rfcNumber":"RFC2598","href":"https://www.rfc-editor.org/rfc/rfc2598","title":"An Expedited Forwarding PHB","authors":["V. Jacobson","K. Nichols","K. Poduri"],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC3246"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2598","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2599":{"rfcNumber":"RFC2599","href":"https://www.rfc-editor.org/rfc/rfc2599","title":"Request for Comments Summary RFC Numbers 2500-2599","authors":["A. DeLaCruz"],"rawDate":"2000-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2600":{"rfcNumber":"RFC2600","href":"https://www.rfc-editor.org/rfc/rfc2600","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden"],"rawDate":"2000-03","status":"Historic","obsoletedBy":["RFC2700"],"obsoletes":["RFC2500"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2601":{"rfcNumber":"RFC2601","href":"https://www.rfc-editor.org/rfc/rfc2601","title":"ILMI-Based Server Discovery for ATMARP","authors":["M. Davison"],"rawDate":"1999-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2602":{"rfcNumber":"RFC2602","href":"https://www.rfc-editor.org/rfc/rfc2602","title":"ILMI-Based Server Discovery for MARS","authors":["M. Davison"],"rawDate":"1999-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2603":{"rfcNumber":"RFC2603","href":"https://www.rfc-editor.org/rfc/rfc2603","title":"ILMI-Based Server Discovery for NHRP","authors":["M. Davison"],"rawDate":"1999-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2604":{"rfcNumber":"RFC2604","href":"https://www.rfc-editor.org/rfc/rfc2604","title":"Wireless Device Configuration (OTASP/OTAPA) via ACAP","authors":["R. Gellens"],"rawDate":"1999-06","status":"Informational","obsoletedBy":["RFC2636"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2605":{"rfcNumber":"RFC2605","href":"https://www.rfc-editor.org/rfc/rfc2605","title":"Directory Server Monitoring MIB","authors":["G. Mansfield","S. Kille"],"rawDate":"1999-06","status":"Proposed Standard","obsoletes":["RFC1567"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2606":{"rfcNumber":"RFC2606","href":"https://www.rfc-editor.org/rfc/rfc2606","title":"Reserved Top Level DNS Names","authors":["D. Eastlake 3rd","A. Panitz"],"rawDate":"1999-06","status":"Best Current Practice","updatedBy":["RFC6761"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2606","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2607":{"rfcNumber":"RFC2607","href":"https://www.rfc-editor.org/rfc/rfc2607","title":"Proxy Chaining and Policy Implementation in Roaming","authors":["B. Aboba","J. Vollbrecht"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2608":{"rfcNumber":"RFC2608","href":"https://www.rfc-editor.org/rfc/rfc2608","title":"Service Location Protocol, Version 2","authors":["E. Guttman","C. Perkins","J. Veizades","M. Day"],"rawDate":"1999-06","status":"Proposed Standard","updatedBy":["RFC3224"],"updates":["RFC2165"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2608","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2609":{"rfcNumber":"RFC2609","href":"https://www.rfc-editor.org/rfc/rfc2609","title":"Service Templates and Service: Schemes","authors":["E. Guttman","C. Perkins","J. Kempf"],"rawDate":"1999-06","status":"Proposed Standard","updates":["RFC2165"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2610":{"rfcNumber":"RFC2610","href":"https://www.rfc-editor.org/rfc/rfc2610","title":"DHCP Options for Service Location Protocol","authors":["C. Perkins","E. Guttman"],"rawDate":"1999-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2611":{"rfcNumber":"RFC2611","href":"https://www.rfc-editor.org/rfc/rfc2611","title":"URN Namespace Definition Mechanisms","authors":["L. Daigle","D. van Gulik","R. Iannella","P. Faltstrom"],"rawDate":"1999-06","status":"Best Current Practice","obsoletedBy":["RFC3406"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2612":{"rfcNumber":"RFC2612","href":"https://www.rfc-editor.org/rfc/rfc2612","title":"The CAST-256 Encryption Algorithm","authors":["C. Adams","J. Gilchrist"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2613":{"rfcNumber":"RFC2613","href":"https://www.rfc-editor.org/rfc/rfc2613","title":"Remote Network Monitoring MIB Extensions for Switched Networks Version 1.0","authors":["R. Waterman","B. Lahaye","D. Romascanu","S. Waldbusser"],"rawDate":"1999-06","status":"Draft Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2614":{"rfcNumber":"RFC2614","href":"https://www.rfc-editor.org/rfc/rfc2614","title":"An API for Service Location","authors":["J. Kempf","E. Guttman"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2615":{"rfcNumber":"RFC2615","href":"https://www.rfc-editor.org/rfc/rfc2615","title":"PPP over SONET/SDH","authors":["A. Malis","W. Simpson"],"rawDate":"1999-06","status":"Proposed Standard","obsoletes":["RFC1619"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2616":{"rfcNumber":"RFC2616","href":"https://www.rfc-editor.org/rfc/rfc2616","title":"Hypertext Transfer Protocol -- HTTP/1.1","authors":["R. Fielding","J. Gettys","J. Mogul","H. Frystyk","L. Masinter","P. Leach","T. Berners-Lee"],"rawDate":"1999-06","status":"Draft Standard","updatedBy":["RFC2817","RFC5785","RFC6266","RFC6585"],"obsoletedBy":["RFC7230","RFC7231","RFC7232","RFC7233","RFC7234","RFC7235"],"obsoletes":["RFC2068"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2616","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2617":{"rfcNumber":"RFC2617","href":"https://www.rfc-editor.org/rfc/rfc2617","title":"HTTP Authentication: Basic and Digest Access Authentication","authors":["J. Franks","P. Hallam-Baker","J. Hostetler","S. Lawrence","P. Leach","A. Luotonen","L. Stewart"],"rawDate":"1999-06","status":"Draft Standard","obsoletedBy":["RFC7235","RFC7615","RFC7616","RFC7617"],"obsoletes":["RFC2069"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2617","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2618":{"rfcNumber":"RFC2618","href":"https://www.rfc-editor.org/rfc/rfc2618","title":"RADIUS Authentication Client MIB","authors":["B. Aboba","G. Zorn"],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC4668"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2619":{"rfcNumber":"RFC2619","href":"https://www.rfc-editor.org/rfc/rfc2619","title":"RADIUS Authentication Server MIB","authors":["G. Zorn","B. Aboba"],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC4669"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2620":{"rfcNumber":"RFC2620","href":"https://www.rfc-editor.org/rfc/rfc2620","title":"RADIUS Accounting Client MIB","authors":["B. Aboba","G. Zorn"],"rawDate":"1999-06","status":"Informational","obsoletedBy":["RFC4670"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2621":{"rfcNumber":"RFC2621","href":"https://www.rfc-editor.org/rfc/rfc2621","title":"RADIUS Accounting Server MIB","authors":["G. Zorn","B. Aboba"],"rawDate":"1999-06","status":"Informational","obsoletedBy":["RFC4671"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2622":{"rfcNumber":"RFC2622","href":"https://www.rfc-editor.org/rfc/rfc2622","title":"Routing Policy Specification Language (RPSL)","authors":["C. Alaettinoglu","C. Villamizar","E. Gerich","D. Kessens","D. Meyer","T. Bates","D. Karrenberg","M. Terpstra"],"rawDate":"1999-06","status":"Proposed Standard","updatedBy":["RFC4012","RFC7909"],"obsoletes":["RFC2280"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2622","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2623":{"rfcNumber":"RFC2623","href":"https://www.rfc-editor.org/rfc/rfc2623","title":"NFS Version 2 and Version 3 Security Issues and the NFS Protocol's Use of RPCSEC_GSS and Kerberos V5","authors":["M. Eisler"],"rawDate":"1999-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2624":{"rfcNumber":"RFC2624","href":"https://www.rfc-editor.org/rfc/rfc2624","title":"NFS Version 4 Design Considerations","authors":["S. Shepler"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2625":{"rfcNumber":"RFC2625","href":"https://www.rfc-editor.org/rfc/rfc2625","title":"IP and ARP over Fibre Channel","authors":["M. Rajagopal","R. Bhagwat","W. Rickard"],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC4338"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2625","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2626":{"rfcNumber":"RFC2626","href":"https://www.rfc-editor.org/rfc/rfc2626","title":"The Internet and the Millennium Problem (Year 2000)","authors":["P. Nesser II"],"rawDate":"1999-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2626","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2627":{"rfcNumber":"RFC2627","href":"https://www.rfc-editor.org/rfc/rfc2627","title":"Key Management for Multicast: Issues and Architectures","authors":["D. Wallner","E. Harder","R. Agee"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2628":{"rfcNumber":"RFC2628","href":"https://www.rfc-editor.org/rfc/rfc2628","title":"Simple Cryptographic Program Interface (Crypto API)","authors":["V. Smyslov"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2629":{"rfcNumber":"RFC2629","href":"https://www.rfc-editor.org/rfc/rfc2629","title":"Writing I-Ds and RFCs using XML","authors":["M. Rose"],"rawDate":"1999-06","status":"Informational","obsoletedBy":["RFC7749"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc263":{"aliasOf":"rfc0263"},"rfc2630":{"rfcNumber":"RFC2630","href":"https://www.rfc-editor.org/rfc/rfc2630","title":"Cryptographic Message Syntax","authors":["R. Housley"],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC3369","RFC3370"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2630","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2631":{"rfcNumber":"RFC2631","href":"https://www.rfc-editor.org/rfc/rfc2631","title":"Diffie-Hellman Key Agreement Method","authors":["E. Rescorla"],"rawDate":"1999-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2631","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2632":{"rfcNumber":"RFC2632","href":"https://www.rfc-editor.org/rfc/rfc2632","title":"S/MIME Version 3 Certificate Handling","authors":["B. Ramsdell, Ed."],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC3850"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2633":{"rfcNumber":"RFC2633","href":"https://www.rfc-editor.org/rfc/rfc2633","title":"S/MIME Version 3 Message Specification","authors":["B. Ramsdell, Ed."],"rawDate":"1999-06","status":"Proposed Standard","obsoletedBy":["RFC3851"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2633","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2634":{"rfcNumber":"RFC2634","href":"https://www.rfc-editor.org/rfc/rfc2634","title":"Enhanced Security Services for S/MIME","authors":["P. Hoffman, Ed."],"rawDate":"1999-06","status":"Proposed Standard","updatedBy":["RFC5035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2634","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2635":{"rfcNumber":"RFC2635","href":"https://www.rfc-editor.org/rfc/rfc2635","title":"DON'T SPEW A Set of Guidelines for Mass Unsolicited Mailings and Postings (spam*)","authors":["S. Hambridge","A. Lunde"],"rawDate":"1999-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2636":{"rfcNumber":"RFC2636","href":"https://www.rfc-editor.org/rfc/rfc2636","title":"Wireless Device Configuration (OTASP/OTAPA) via ACAP","authors":["R. Gellens"],"rawDate":"1999-07","status":"Informational","obsoletes":["RFC2604"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2637":{"rfcNumber":"RFC2637","href":"https://www.rfc-editor.org/rfc/rfc2637","title":"Point-to-Point Tunneling Protocol (PPTP)","authors":["K. Hamzeh","G. Pall","W. Verthein","J. Taarud","W. Little","G. Zorn"],"rawDate":"1999-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2637","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2638":{"rfcNumber":"RFC2638","href":"https://www.rfc-editor.org/rfc/rfc2638","title":"A Two-bit Differentiated Services Architecture for the Internet","authors":["K. Nichols","V. Jacobson","L. Zhang"],"rawDate":"1999-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2638","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2639":{"rfcNumber":"RFC2639","href":"https://www.rfc-editor.org/rfc/rfc2639","title":"Internet Printing Protocol/1.0: Implementer's Guide","authors":["T. Hastings","C. Manros"],"rawDate":"1999-07","status":"Informational","obsoletedBy":["RFC3196"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc264":{"aliasOf":"rfc0264"},"rfc2640":{"rfcNumber":"RFC2640","href":"https://www.rfc-editor.org/rfc/rfc2640","title":"Internationalization of the File Transfer Protocol","authors":["B. Curtin"],"rawDate":"1999-07","status":"Proposed Standard","updates":["RFC0959"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2640","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2641":{"rfcNumber":"RFC2641","href":"https://www.rfc-editor.org/rfc/rfc2641","title":"Cabletron's VlanHello Protocol Specification Version 4","authors":["D. Hamilton","D. Ruffen"],"rawDate":"1999-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2642":{"rfcNumber":"RFC2642","href":"https://www.rfc-editor.org/rfc/rfc2642","title":"Cabletron's VLS Protocol Specification","authors":["L. Kane"],"rawDate":"1999-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2643":{"rfcNumber":"RFC2643","href":"https://www.rfc-editor.org/rfc/rfc2643","title":"Cabletron's SecureFast VLAN Operational Model","authors":["D. Ruffen","T. Len","J. Yanacek"],"rawDate":"1999-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2644":{"rfcNumber":"RFC2644","href":"https://www.rfc-editor.org/rfc/rfc2644","title":"Changing the Default for Directed Broadcasts in Routers","authors":["D. Senie"],"rawDate":"1999-08","status":"Best Current Practice","updates":["RFC1812"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2645":{"rfcNumber":"RFC2645","href":"https://www.rfc-editor.org/rfc/rfc2645","title":"ON-DEMAND MAIL RELAY (ODMR) SMTP with Dynamic IP Addresses","authors":["R. Gellens"],"rawDate":"1999-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2645","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2646":{"rfcNumber":"RFC2646","href":"https://www.rfc-editor.org/rfc/rfc2646","title":"The Text/Plain Format Parameter","authors":["R. Gellens, Ed."],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC3676"],"updates":["RFC2046"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2647":{"rfcNumber":"RFC2647","href":"https://www.rfc-editor.org/rfc/rfc2647","title":"Benchmarking Terminology for Firewall Performance","authors":["D. Newman"],"rawDate":"1999-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2648":{"rfcNumber":"RFC2648","href":"https://www.rfc-editor.org/rfc/rfc2648","title":"A URN Namespace for IETF Documents","authors":["R. Moats"],"rawDate":"1999-08","status":"Informational","updatedBy":["RFC6924","RFC9141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2648","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2649":{"rfcNumber":"RFC2649","href":"https://www.rfc-editor.org/rfc/rfc2649","title":"An LDAP Control and Schema for Holding Operation Signatures","authors":["B. Greenblatt","P. Richard"],"rawDate":"1999-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc265":{"aliasOf":"rfc0265"},"rfc2650":{"rfcNumber":"RFC2650","href":"https://www.rfc-editor.org/rfc/rfc2650","title":"Using RPSL in Practice","authors":["D. Meyer","J. Schmitz","C. Orange","M. Prior","C. Alaettinoglu"],"rawDate":"1999-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2651":{"rfcNumber":"RFC2651","href":"https://www.rfc-editor.org/rfc/rfc2651","title":"The Architecture of the Common Indexing Protocol (CIP)","authors":["J. Allen","M. Mealling"],"rawDate":"1999-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2652":{"rfcNumber":"RFC2652","href":"https://www.rfc-editor.org/rfc/rfc2652","title":"MIME Object Definitions for the Common Indexing Protocol (CIP)","authors":["J. Allen","M. Mealling"],"rawDate":"1999-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2653":{"rfcNumber":"RFC2653","href":"https://www.rfc-editor.org/rfc/rfc2653","title":"CIP Transport Protocols","authors":["J. Allen","P. Leach","R. Hedberg"],"rawDate":"1999-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2654":{"rfcNumber":"RFC2654","href":"https://www.rfc-editor.org/rfc/rfc2654","title":"A Tagged Index Object for use in the Common Indexing Protocol","authors":["R. Hedberg","B. Greenblatt","R. Moats","M. Wahl"],"rawDate":"1999-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2655":{"rfcNumber":"RFC2655","href":"https://www.rfc-editor.org/rfc/rfc2655","title":"CIP Index Object Format for SOIF Objects","authors":["T. Hardie","M. Bowman","D. Hardy","M. Schwartz","D. Wessels"],"rawDate":"1999-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2655","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2656":{"rfcNumber":"RFC2656","href":"https://www.rfc-editor.org/rfc/rfc2656","title":"Registration Procedures for SOIF Template Types","authors":["T. Hardie"],"rawDate":"1999-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2656","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2657":{"rfcNumber":"RFC2657","href":"https://www.rfc-editor.org/rfc/rfc2657","title":"LDAPv2 Client vs. the Index Mesh","authors":["R. Hedberg"],"rawDate":"1999-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2658":{"rfcNumber":"RFC2658","href":"https://www.rfc-editor.org/rfc/rfc2658","title":"RTP Payload Format for PureVoice(tm) Audio","authors":["K. McKay"],"rawDate":"1999-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2659":{"rfcNumber":"RFC2659","href":"https://www.rfc-editor.org/rfc/rfc2659","title":"Security Extensions For HTML","authors":["E. Rescorla","A. Schiffman"],"rawDate":"1999-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc266":{"aliasOf":"rfc0266"},"rfc2660":{"rfcNumber":"RFC2660","href":"https://www.rfc-editor.org/rfc/rfc2660","title":"The Secure HyperText Transfer Protocol","authors":["E. Rescorla","A. Schiffman"],"rawDate":"1999-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2661":{"rfcNumber":"RFC2661","href":"https://www.rfc-editor.org/rfc/rfc2661","title":"Layer Two Tunneling Protocol \"L2TP\"","authors":["W. Townsley","A. Valencia","A. Rubens","G. Pall","G. Zorn","B. Palter"],"rawDate":"1999-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2661","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2662":{"rfcNumber":"RFC2662","href":"https://www.rfc-editor.org/rfc/rfc2662","title":"Definitions of Managed Objects for the ADSL Lines","authors":["G. Bathrick","F. Ly"],"rawDate":"1999-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2662","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2663":{"rfcNumber":"RFC2663","href":"https://www.rfc-editor.org/rfc/rfc2663","title":"IP Network Address Translator (NAT) Terminology and Considerations","authors":["P. Srisuresh","M. Holdrege"],"rawDate":"1999-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2663","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2664":{"rfcNumber":"RFC2664","href":"https://www.rfc-editor.org/rfc/rfc2664","title":"FYI on Questions and Answers - Answers to Commonly Asked \"New Internet User\" Questions","authors":["R. Plzak","A. Wells","E. Krol"],"rawDate":"1999-08","status":"Informational","obsoletes":["RFC1594"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2665":{"rfcNumber":"RFC2665","href":"https://www.rfc-editor.org/rfc/rfc2665","title":"Definitions of Managed Objects for the Ethernet-like Interface Types","authors":["J. Flick","J. Johnson"],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC3635"],"obsoletes":["RFC2358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2666":{"rfcNumber":"RFC2666","href":"https://www.rfc-editor.org/rfc/rfc2666","title":"Definitions of Object Identifiers for Identifying Ethernet Chip Sets","authors":["J. Flick"],"rawDate":"1999-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2667":{"rfcNumber":"RFC2667","href":"https://www.rfc-editor.org/rfc/rfc2667","title":"IP Tunnel MIB","authors":["D. Thaler"],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC4087"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2668":{"rfcNumber":"RFC2668","href":"https://www.rfc-editor.org/rfc/rfc2668","title":"Definitions of Managed Objects for IEEE 802.3 Medium Attachment Units (MAUs)","authors":["A. Smith","J. Flick","K. de Graaf","D. Romascanu","D. McMaster","K. McCloghrie","S. Roberts"],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC3636"],"obsoletes":["RFC2239"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2669":{"rfcNumber":"RFC2669","href":"https://www.rfc-editor.org/rfc/rfc2669","title":"DOCSIS Cable Device MIB Cable Device Management Information Base for DOCSIS compliant Cable Modems and Cable Modem Termination Systems","authors":["M. St. Johns, Ed."],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC4639"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc267":{"aliasOf":"rfc0267"},"rfc2670":{"rfcNumber":"RFC2670","href":"https://www.rfc-editor.org/rfc/rfc2670","title":"Radio Frequency (RF) Interface Management Information Base for MCNS/DOCSIS compliant RF interfaces","authors":["M. St. Johns, Ed."],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC4546"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2671":{"rfcNumber":"RFC2671","href":"https://www.rfc-editor.org/rfc/rfc2671","title":"Extension Mechanisms for DNS (EDNS0)","authors":["P. Vixie"],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC6891"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2672":{"rfcNumber":"RFC2672","href":"https://www.rfc-editor.org/rfc/rfc2672","title":"Non-Terminal DNS Name Redirection","authors":["M. Crawford"],"rawDate":"1999-08","status":"Proposed Standard","updatedBy":["RFC4592","RFC6604"],"obsoletedBy":["RFC6672"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2673":{"rfcNumber":"RFC2673","href":"https://www.rfc-editor.org/rfc/rfc2673","title":"Binary Labels in the Domain Name System","authors":["M. Crawford"],"rawDate":"1999-08","status":"Historic","updatedBy":["RFC3363","RFC3364"],"obsoletedBy":["RFC6891"],"updates":["RFC1035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2673","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2674":{"rfcNumber":"RFC2674","href":"https://www.rfc-editor.org/rfc/rfc2674","title":"Definitions of Managed Objects for Bridges with Traffic Classes, Multicast Filtering and Virtual LAN Extensions","authors":["E. Bell","A. Smith","P. Langille","A. Rijhsinghani","K. McCloghrie"],"rawDate":"1999-08","status":"Proposed Standard","obsoletedBy":["RFC4363"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2675":{"rfcNumber":"RFC2675","href":"https://www.rfc-editor.org/rfc/rfc2675","title":"IPv6 Jumbograms","authors":["D. Borman","S. Deering","R. Hinden"],"rawDate":"1999-08","status":"Proposed Standard","obsoletes":["RFC2147"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2675","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2676":{"rfcNumber":"RFC2676","href":"https://www.rfc-editor.org/rfc/rfc2676","title":"QoS Routing Mechanisms and OSPF Extensions","authors":["G. Apostolopoulos","S. Kama","D. Williams","R. Guerin","A. Orda","T. Przygienda"],"rawDate":"1999-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2676","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2677":{"rfcNumber":"RFC2677","href":"https://www.rfc-editor.org/rfc/rfc2677","title":"Definitions of Managed Objects for the NBMA Next Hop Resolution Protocol (NHRP)","authors":["M. Greene","J. Cucchiara","J. Luciani"],"rawDate":"1999-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2678":{"rfcNumber":"RFC2678","href":"https://www.rfc-editor.org/rfc/rfc2678","title":"IPPM Metrics for Measuring Connectivity","authors":["J. Mahdavi","V. Paxson"],"rawDate":"1999-09","status":"Proposed Standard","obsoletes":["RFC2498"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2679":{"rfcNumber":"RFC2679","href":"https://www.rfc-editor.org/rfc/rfc2679","title":"A One-way Delay Metric for IPPM","authors":["G. Almes","S. Kalidindi","M. Zekauskas"],"rawDate":"1999-09","status":"Proposed Standard","obsoletedBy":["RFC7679"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2679","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc268":{"aliasOf":"rfc0268"},"rfc2680":{"rfcNumber":"RFC2680","href":"https://www.rfc-editor.org/rfc/rfc2680","title":"A One-way Packet Loss Metric for IPPM","authors":["G. Almes","S. Kalidindi","M. Zekauskas"],"rawDate":"1999-09","status":"Proposed Standard","obsoletedBy":["RFC7680"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2680","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2681":{"rfcNumber":"RFC2681","href":"https://www.rfc-editor.org/rfc/rfc2681","title":"A Round-trip Delay Metric for IPPM","authors":["G. Almes","S. Kalidindi","M. Zekauskas"],"rawDate":"1999-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2681","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2682":{"rfcNumber":"RFC2682","href":"https://www.rfc-editor.org/rfc/rfc2682","title":"Performance Issues in VC-Merge Capable ATM LSRs","authors":["I. Widjaja","A. Elwalid"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2683":{"rfcNumber":"RFC2683","href":"https://www.rfc-editor.org/rfc/rfc2683","title":"IMAP4 Implementation Recommendations","authors":["B. Leiba"],"rawDate":"1999-09","status":"Informational","updatedBy":["RFC7162"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2683","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2684":{"rfcNumber":"RFC2684","href":"https://www.rfc-editor.org/rfc/rfc2684","title":"Multiprotocol Encapsulation over ATM Adaptation Layer 5","authors":["D. Grossman","J. Heinanen"],"rawDate":"1999-09","status":"Proposed Standard","obsoletes":["RFC1483"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2685":{"rfcNumber":"RFC2685","href":"https://www.rfc-editor.org/rfc/rfc2685","title":"Virtual Private Networks Identifier","authors":["B. Fox","B. Gleeson"],"rawDate":"1999-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2686":{"rfcNumber":"RFC2686","href":"https://www.rfc-editor.org/rfc/rfc2686","title":"The Multi-Class Extension to Multi-Link PPP","authors":["C. Bormann"],"rawDate":"1999-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2687":{"rfcNumber":"RFC2687","href":"https://www.rfc-editor.org/rfc/rfc2687","title":"PPP in a Real-time Oriented HDLC-like Framing","authors":["C. Bormann"],"rawDate":"1999-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2688":{"rfcNumber":"RFC2688","href":"https://www.rfc-editor.org/rfc/rfc2688","title":"Integrated Services Mappings for Low Speed Networks","authors":["S. Jackowski","D. Putzolu","E. Crawley","B. Davie"],"rawDate":"1999-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2689":{"rfcNumber":"RFC2689","href":"https://www.rfc-editor.org/rfc/rfc2689","title":"Providing Integrated Services over Low-bitrate Links","authors":["C. Bormann"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc269":{"aliasOf":"rfc0269"},"rfc2690":{"rfcNumber":"RFC2690","href":"https://www.rfc-editor.org/rfc/rfc2690","title":"A Proposal for an MOU-Based ICANN Protocol Support Organization","authors":["S. Bradner"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2691":{"rfcNumber":"RFC2691","href":"https://www.rfc-editor.org/rfc/rfc2691","title":"A Memorandum of Understanding for an ICANN Protocol Support Organization","authors":["S. Bradner"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2692":{"rfcNumber":"RFC2692","href":"https://www.rfc-editor.org/rfc/rfc2692","title":"SPKI Requirements","authors":["C. Ellison"],"rawDate":"1999-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2693":{"rfcNumber":"RFC2693","href":"https://www.rfc-editor.org/rfc/rfc2693","title":"SPKI Certificate Theory","authors":["C. Ellison","B. Frantz","B. Lampson","R. Rivest","B. Thomas","T. Ylonen"],"rawDate":"1999-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2694":{"rfcNumber":"RFC2694","href":"https://www.rfc-editor.org/rfc/rfc2694","title":"DNS extensions to Network Address Translators (DNS_ALG)","authors":["P. Srisuresh","G. Tsirtsis","P. Akkiraju","A. Heffernan"],"rawDate":"1999-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2694","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2695":{"rfcNumber":"RFC2695","href":"https://www.rfc-editor.org/rfc/rfc2695","title":"Authentication Mechanisms for ONC RPC","authors":["A. Chiu"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2696":{"rfcNumber":"RFC2696","href":"https://www.rfc-editor.org/rfc/rfc2696","title":"LDAP Control Extension for Simple Paged Results Manipulation","authors":["C. Weider","A. Herron","A. Anantha","T. Howes"],"rawDate":"1999-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2696","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2697":{"rfcNumber":"RFC2697","href":"https://www.rfc-editor.org/rfc/rfc2697","title":"A Single Rate Three Color Marker","authors":["J. Heinanen","R. Guerin"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2698":{"rfcNumber":"RFC2698","href":"https://www.rfc-editor.org/rfc/rfc2698","title":"A Two Rate Three Color Marker","authors":["J. Heinanen","R. Guerin"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2699":{"rfcNumber":"RFC2699","href":"https://www.rfc-editor.org/rfc/rfc2699","title":"Request for Comments Summary RFC Numbers 2600-2699","authors":["S. Ginoza"],"rawDate":"2000-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc27":{"aliasOf":"rfc0027"},"rfc270":{"aliasOf":"rfc0270"},"rfc2700":{"rfcNumber":"RFC2700","href":"https://www.rfc-editor.org/rfc/rfc2700","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden"],"rawDate":"2000-08","status":"Historic","obsoletedBy":["RFC2800"],"obsoletes":["RFC2600"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2700","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2701":{"rfcNumber":"RFC2701","href":"https://www.rfc-editor.org/rfc/rfc2701","title":"Nortel Networks Multi-link Multi-node PPP Bundle Discovery Protocol","authors":["G. Malkin"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2702":{"rfcNumber":"RFC2702","href":"https://www.rfc-editor.org/rfc/rfc2702","title":"Requirements for Traffic Engineering Over MPLS","authors":["D. Awduche","J. Malcolm","J. Agogbua","M. O'Dell","J. McManus"],"rawDate":"1999-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2702","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2703":{"rfcNumber":"RFC2703","href":"https://www.rfc-editor.org/rfc/rfc2703","title":"Protocol-independent Content Negotiation Framework","authors":["G. Klyne"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2704":{"rfcNumber":"RFC2704","href":"https://www.rfc-editor.org/rfc/rfc2704","title":"The KeyNote Trust-Management System Version 2","authors":["M. Blaze","J. Feigenbaum","J. Ioannidis","A. Keromytis"],"rawDate":"1999-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2705":{"rfcNumber":"RFC2705","href":"https://www.rfc-editor.org/rfc/rfc2705","title":"Media Gateway Control Protocol (MGCP) Version 1.0","authors":["M. Arango","A. Dugan","I. Elliott","C. Huitema","S. Pickett"],"rawDate":"1999-10","status":"Informational","updatedBy":["RFC3660"],"obsoletedBy":["RFC3435"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2706":{"rfcNumber":"RFC2706","href":"https://www.rfc-editor.org/rfc/rfc2706","title":"ECML v1: Field Names for E-Commerce","authors":["D. Eastlake 3rd","T. Goldstein"],"rawDate":"1999-10","status":"Informational","obsoletedBy":["RFC3106"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2707":{"rfcNumber":"RFC2707","href":"https://www.rfc-editor.org/rfc/rfc2707","title":"Job Monitoring MIB - V1.0","authors":["R. Bergman","T. Hastings","S. Isaacson","H. Lewis"],"rawDate":"1999-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2708":{"rfcNumber":"RFC2708","href":"https://www.rfc-editor.org/rfc/rfc2708","title":"Job Submission Protocol Mapping Recommendations for the Job Monitoring MIB","authors":["R. Bergman"],"rawDate":"1999-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2709":{"rfcNumber":"RFC2709","href":"https://www.rfc-editor.org/rfc/rfc2709","title":"Security Model with Tunnel-mode IPsec for NAT Domains","authors":["P. Srisuresh"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc271":{"aliasOf":"rfc0271"},"rfc2710":{"rfcNumber":"RFC2710","href":"https://www.rfc-editor.org/rfc/rfc2710","title":"Multicast Listener Discovery (MLD) for IPv6","authors":["S. Deering","W. Fenner","B. Haberman"],"rawDate":"1999-10","status":"Proposed Standard","updatedBy":["RFC3590","RFC3810"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2711":{"rfcNumber":"RFC2711","href":"https://www.rfc-editor.org/rfc/rfc2711","title":"IPv6 Router Alert Option","authors":["C. Partridge","A. Jackson"],"rawDate":"1999-10","status":"Proposed Standard","updatedBy":["RFC6398"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2712":{"rfcNumber":"RFC2712","href":"https://www.rfc-editor.org/rfc/rfc2712","title":"Addition of Kerberos Cipher Suites to Transport Layer Security (TLS)","authors":["A. Medvinsky","M. Hur"],"rawDate":"1999-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2712","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2713":{"rfcNumber":"RFC2713","href":"https://www.rfc-editor.org/rfc/rfc2713","title":"Schema for Representing Java(tm) Objects in an LDAP Directory","authors":["V. Ryan","S. Seligman","R. Lee"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2714":{"rfcNumber":"RFC2714","href":"https://www.rfc-editor.org/rfc/rfc2714","title":"Schema for Representing CORBA Object References in an LDAP Directory","authors":["V. Ryan","R. Lee","S. Seligman"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2715":{"rfcNumber":"RFC2715","href":"https://www.rfc-editor.org/rfc/rfc2715","title":"Interoperability Rules for Multicast Routing Protocols","authors":["D. Thaler"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2716":{"rfcNumber":"RFC2716","href":"https://www.rfc-editor.org/rfc/rfc2716","title":"PPP EAP TLS Authentication Protocol","authors":["B. Aboba","D. Simon"],"rawDate":"1999-10","status":"Experimental","obsoletedBy":["RFC5216"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2717":{"rfcNumber":"RFC2717","href":"https://www.rfc-editor.org/rfc/rfc2717","title":"Registration Procedures for URL Scheme Names","authors":["R. Petke","I. King"],"rawDate":"1999-11","status":"Best Current Practice","obsoletedBy":["RFC4395"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2718":{"rfcNumber":"RFC2718","href":"https://www.rfc-editor.org/rfc/rfc2718","title":"Guidelines for new URL Schemes","authors":["L. Masinter","H. Alvestrand","D. Zigmond","R. Petke"],"rawDate":"1999-11","status":"Informational","obsoletedBy":["RFC4395"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2719":{"rfcNumber":"RFC2719","href":"https://www.rfc-editor.org/rfc/rfc2719","title":"Framework Architecture for Signaling Transport","authors":["L. Ong","I. Rytina","M. Garcia","H. Schwarzbauer","L. Coene","H. Lin","I. Juhasz","M. Holdrege","C. Sharp"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2720":{"rfcNumber":"RFC2720","href":"https://www.rfc-editor.org/rfc/rfc2720","title":"Traffic Flow Measurement: Meter MIB","authors":["N. Brownlee"],"rawDate":"1999-10","status":"Proposed Standard","obsoletes":["RFC2064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2721":{"rfcNumber":"RFC2721","href":"https://www.rfc-editor.org/rfc/rfc2721","title":"RTFM: Applicability Statement","authors":["N. Brownlee"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2722":{"rfcNumber":"RFC2722","href":"https://www.rfc-editor.org/rfc/rfc2722","title":"Traffic Flow Measurement: Architecture","authors":["N. Brownlee","C. Mills","G. Ruth"],"rawDate":"1999-10","status":"Informational","obsoletes":["RFC2063"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2723":{"rfcNumber":"RFC2723","href":"https://www.rfc-editor.org/rfc/rfc2723","title":"SRL: A Language for Describing Traffic Flows and Specifying Actions for Flow Groups","authors":["N. Brownlee"],"rawDate":"1999-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2724":{"rfcNumber":"RFC2724","href":"https://www.rfc-editor.org/rfc/rfc2724","title":"RTFM: New Attributes for Traffic Flow Measurement","authors":["S. Handelman","S. Stibler","N. Brownlee","G. Ruth"],"rawDate":"1999-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2725":{"rfcNumber":"RFC2725","href":"https://www.rfc-editor.org/rfc/rfc2725","title":"Routing Policy System Security","authors":["C. Villamizar","C. Alaettinoglu","D. Meyer","S. Murphy"],"rawDate":"1999-12","status":"Proposed Standard","updatedBy":["RFC4012"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2726":{"rfcNumber":"RFC2726","href":"https://www.rfc-editor.org/rfc/rfc2726","title":"PGP Authentication for RIPE Database Updates","authors":["J. Zsako"],"rawDate":"1999-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2727":{"rfcNumber":"RFC2727","href":"https://www.rfc-editor.org/rfc/rfc2727","title":"IAB and IESG Selection, Confirmation, and Recall Process: Operation of the Nominating and Recall Committees","authors":["J. Galvin"],"rawDate":"2000-02","status":"Best Current Practice","obsoletedBy":["RFC3777"],"obsoletes":["RFC2282"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2728":{"rfcNumber":"RFC2728","href":"https://www.rfc-editor.org/rfc/rfc2728","title":"The Transmission of IP Over the Vertical Blanking Interval of a Television Signal","authors":["R. Panabaker","S. Wegerif","D. Zigmond"],"rawDate":"1999-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2729":{"rfcNumber":"RFC2729","href":"https://www.rfc-editor.org/rfc/rfc2729","title":"Taxonomy of Communication Requirements for Large-scale Multicast Applications","authors":["P. Bagnall","R. Briscoe","A. Poppitt"],"rawDate":"1999-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc273":{"aliasOf":"rfc0273"},"rfc2730":{"rfcNumber":"RFC2730","href":"https://www.rfc-editor.org/rfc/rfc2730","title":"Multicast Address Dynamic Client Allocation Protocol (MADCAP)","authors":["S. Hanna","B. Patel","M. Shah"],"rawDate":"1999-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2731":{"rfcNumber":"RFC2731","href":"https://www.rfc-editor.org/rfc/rfc2731","title":"Encoding Dublin Core Metadata in HTML","authors":["J. Kunze"],"rawDate":"1999-12","status":"Informational","obsoletedBy":["RFC5791"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2731","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2732":{"rfcNumber":"RFC2732","href":"https://www.rfc-editor.org/rfc/rfc2732","title":"Format for Literal IPv6 Addresses in URL's","authors":["R. Hinden","B. Carpenter","L. Masinter"],"rawDate":"1999-12","status":"Proposed Standard","obsoletedBy":["RFC3986"],"updates":["RFC2396"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2732","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2733":{"rfcNumber":"RFC2733","href":"https://www.rfc-editor.org/rfc/rfc2733","title":"An RTP Payload Format for Generic Forward Error Correction","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"1999-12","status":"Proposed Standard","obsoletedBy":["RFC5109"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2734":{"rfcNumber":"RFC2734","href":"https://www.rfc-editor.org/rfc/rfc2734","title":"IPv4 over IEEE 1394","authors":["P. Johansson"],"rawDate":"1999-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2735":{"rfcNumber":"RFC2735","href":"https://www.rfc-editor.org/rfc/rfc2735","title":"NHRP Support for Virtual Private Networks","authors":["B. Fox","B. Petri"],"rawDate":"1999-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2736":{"rfcNumber":"RFC2736","href":"https://www.rfc-editor.org/rfc/rfc2736","title":"Guidelines for Writers of RTP Payload Format Specifications","authors":["M. Handley","C. Perkins"],"rawDate":"1999-12","status":"Best Current Practice","updatedBy":["RFC8088"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2737":{"rfcNumber":"RFC2737","href":"https://www.rfc-editor.org/rfc/rfc2737","title":"Entity MIB (Version 2)","authors":["K. McCloghrie","A. Bierman"],"rawDate":"1999-12","status":"Proposed Standard","obsoletedBy":["RFC4133"],"obsoletes":["RFC2037"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2737","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2738":{"rfcNumber":"RFC2738","href":"https://www.rfc-editor.org/rfc/rfc2738","title":"Corrections to \"A Syntax for Describing Media Feature Sets\"","authors":["G. Klyne"],"rawDate":"1999-12","status":"Proposed Standard","updates":["RFC2533"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2739":{"rfcNumber":"RFC2739","href":"https://www.rfc-editor.org/rfc/rfc2739","title":"Calendar Attributes for vCard and LDAP","authors":["T. Small","D. Hennessy","F. Dawson"],"rawDate":"2000-01","status":"Proposed Standard","updatedBy":["RFC6350"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2739","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc274":{"aliasOf":"rfc0274"},"rfc2740":{"rfcNumber":"RFC2740","href":"https://www.rfc-editor.org/rfc/rfc2740","title":"OSPF for IPv6","authors":["R. Coltun","D. Ferguson","J. Moy"],"rawDate":"1999-12","status":"Proposed Standard","obsoletedBy":["RFC5340"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2740","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2741":{"rfcNumber":"RFC2741","href":"https://www.rfc-editor.org/rfc/rfc2741","title":"Agent Extensibility (AgentX) Protocol Version 1","authors":["M. Daniele","B. Wijnen","M. Ellison","D. Francisco"],"rawDate":"2000-01","status":"Draft Standard","obsoletes":["RFC2257"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2742":{"rfcNumber":"RFC2742","href":"https://www.rfc-editor.org/rfc/rfc2742","title":"Definitions of Managed Objects for Extensible SNMP Agents","authors":["L. Heintz","S. Gudur","M. Ellison"],"rawDate":"2000-01","status":"Draft Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2743":{"rfcNumber":"RFC2743","href":"https://www.rfc-editor.org/rfc/rfc2743","title":"Generic Security Service Application Program Interface Version 2, Update 1","authors":["J. Linn"],"rawDate":"2000-01","status":"Proposed Standard","updatedBy":["RFC5554","RFC5896"],"obsoletes":["RFC2078"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2743","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2744":{"rfcNumber":"RFC2744","href":"https://www.rfc-editor.org/rfc/rfc2744","title":"Generic Security Service API Version 2 : C-bindings","authors":["J. Wray"],"rawDate":"2000-01","status":"Proposed Standard","updatedBy":["RFC5896"],"obsoletes":["RFC1509"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2744","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2745":{"rfcNumber":"RFC2745","href":"https://www.rfc-editor.org/rfc/rfc2745","title":"RSVP Diagnostic Messages","authors":["A. Terzis","B. Braden","S. Vincent","L. Zhang"],"rawDate":"2000-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2746":{"rfcNumber":"RFC2746","href":"https://www.rfc-editor.org/rfc/rfc2746","title":"RSVP Operation Over IP Tunnels","authors":["A. Terzis","J. Krawczyk","J. Wroclawski","L. Zhang"],"rawDate":"2000-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2747":{"rfcNumber":"RFC2747","href":"https://www.rfc-editor.org/rfc/rfc2747","title":"RSVP Cryptographic Authentication","authors":["F. Baker","B. Lindell","M. Talwar"],"rawDate":"2000-01","status":"Proposed Standard","updatedBy":["RFC3097"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2747","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2748":{"rfcNumber":"RFC2748","href":"https://www.rfc-editor.org/rfc/rfc2748","title":"The COPS (Common Open Policy Service) Protocol","authors":["D. Durham, Ed.","J. Boyle","R. Cohen","S. Herzog","R. Rajan","A. Sastry"],"rawDate":"2000-01","status":"Proposed Standard","updatedBy":["RFC4261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2749":{"rfcNumber":"RFC2749","href":"https://www.rfc-editor.org/rfc/rfc2749","title":"COPS usage for RSVP","authors":["S. Herzog, Ed.","J. Boyle","R. Cohen","D. Durham","R. Rajan","A. Sastry"],"rawDate":"2000-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2750":{"rfcNumber":"RFC2750","href":"https://www.rfc-editor.org/rfc/rfc2750","title":"RSVP Extensions for Policy Control","authors":["S. Herzog"],"rawDate":"2000-01","status":"Proposed Standard","updates":["RFC2205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2751":{"rfcNumber":"RFC2751","href":"https://www.rfc-editor.org/rfc/rfc2751","title":"Signaled Preemption Priority Policy Element","authors":["S. Herzog"],"rawDate":"2000-01","status":"Proposed Standard","obsoletedBy":["RFC3181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2752":{"rfcNumber":"RFC2752","href":"https://www.rfc-editor.org/rfc/rfc2752","title":"Identity Representation for RSVP","authors":["S. Yadav","R. Yavatkar","R. Pabbati","P. Ford","T. Moore","S. Herzog"],"rawDate":"2000-01","status":"Proposed Standard","obsoletedBy":["RFC3182"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2753":{"rfcNumber":"RFC2753","href":"https://www.rfc-editor.org/rfc/rfc2753","title":"A Framework for Policy-based Admission Control","authors":["R. Yavatkar","D. Pendarakis","R. Guerin"],"rawDate":"2000-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2754":{"rfcNumber":"RFC2754","href":"https://www.rfc-editor.org/rfc/rfc2754","title":"RPS IANA Issues","authors":["C. Alaettinoglu","C. Villamizar","R. Govindan"],"rawDate":"2000-01","status":"Historic","obsoletedBy":["RFC6254"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2755":{"rfcNumber":"RFC2755","href":"https://www.rfc-editor.org/rfc/rfc2755","title":"Security Negotiation for WebNFS","authors":["A. Chiu","M. Eisler","B. Callaghan"],"rawDate":"2000-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2756":{"rfcNumber":"RFC2756","href":"https://www.rfc-editor.org/rfc/rfc2756","title":"Hyper Text Caching Protocol (HTCP/0.0)","authors":["P. Vixie","D. Wessels"],"rawDate":"2000-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2757":{"rfcNumber":"RFC2757","href":"https://www.rfc-editor.org/rfc/rfc2757","title":"Long Thin Networks","authors":["G. Montenegro","S. Dawkins","M. Kojo","V. Magret","N. Vaidya"],"rawDate":"2000-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2758":{"rfcNumber":"RFC2758","href":"https://www.rfc-editor.org/rfc/rfc2758","title":"Definitions of Managed Objects for Service Level Agreements Performance Monitoring","authors":["K. White"],"rawDate":"2000-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2759":{"rfcNumber":"RFC2759","href":"https://www.rfc-editor.org/rfc/rfc2759","title":"Microsoft PPP CHAP Extensions, Version 2","authors":["G. Zorn"],"rawDate":"2000-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2759","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc276":{"aliasOf":"rfc0276"},"rfc2760":{"rfcNumber":"RFC2760","href":"https://www.rfc-editor.org/rfc/rfc2760","title":"Ongoing TCP Research Related to Satellites","authors":["M. Allman, Ed.","S. Dawkins","D. Glover","J. Griner","D. Tran","T. Henderson","J. Heidemann","J. Touch","H. Kruse","S. Ostermann","K. Scott","J. Semke"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2761":{"rfcNumber":"RFC2761","href":"https://www.rfc-editor.org/rfc/rfc2761","title":"Terminology for ATM Benchmarking","authors":["J. Dunn","C. Martin"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2762":{"rfcNumber":"RFC2762","href":"https://www.rfc-editor.org/rfc/rfc2762","title":"Sampling of the Group Membership in RTP","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2000-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2763":{"rfcNumber":"RFC2763","href":"https://www.rfc-editor.org/rfc/rfc2763","title":"Dynamic Hostname Exchange Mechanism for IS-IS","authors":["N. Shen","H. Smit"],"rawDate":"2000-02","status":"Informational","obsoletedBy":["RFC5301"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2763","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2764":{"rfcNumber":"RFC2764","href":"https://www.rfc-editor.org/rfc/rfc2764","title":"A Framework for IP Based Virtual Private Networks","authors":["B. Gleeson","A. Lin","J. Heinanen","G. Armitage","A. Malis"],"rawDate":"2000-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2764","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2765":{"rfcNumber":"RFC2765","href":"https://www.rfc-editor.org/rfc/rfc2765","title":"Stateless IP/ICMP Translation Algorithm (SIIT)","authors":["E. Nordmark"],"rawDate":"2000-02","status":"Proposed Standard","obsoletedBy":["RFC6145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2766":{"rfcNumber":"RFC2766","href":"https://www.rfc-editor.org/rfc/rfc2766","title":"Network Address Translation - Protocol Translation (NAT-PT)","authors":["G. Tsirtsis","P. Srisuresh"],"rawDate":"2000-02","status":"Historic","updatedBy":["RFC3152"],"obsoletedBy":["RFC4966"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2767":{"rfcNumber":"RFC2767","href":"https://www.rfc-editor.org/rfc/rfc2767","title":"Dual Stack Hosts using the \"Bump-In-the-Stack\" Technique (BIS)","authors":["K. Tsuchiya","H. Higuchi","Y. Atarashi"],"rawDate":"2000-02","status":"Informational","obsoletedBy":["RFC6535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2768":{"rfcNumber":"RFC2768","href":"https://www.rfc-editor.org/rfc/rfc2768","title":"Network Policy and Services: A Report of a Workshop on Middleware","authors":["B. Aiken","J. Strassner","B. Carpenter","I. Foster","C. Lynch","J. Mambretti","R. Moore","B. Teitelbaum"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2769":{"rfcNumber":"RFC2769","href":"https://www.rfc-editor.org/rfc/rfc2769","title":"Routing Policy System Replication","authors":["C. Villamizar","C. Alaettinoglu","R. Govindan","D. Meyer"],"rawDate":"2000-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2770":{"rfcNumber":"RFC2770","href":"https://www.rfc-editor.org/rfc/rfc2770","title":"GLOP Addressing in 233/8","authors":["D. Meyer","P. Lothberg"],"rawDate":"2000-02","status":"Experimental","obsoletedBy":["RFC3180"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2771":{"rfcNumber":"RFC2771","href":"https://www.rfc-editor.org/rfc/rfc2771","title":"An Abstract API for Multicast Address Allocation","authors":["R. Finlayson"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2772":{"rfcNumber":"RFC2772","href":"https://www.rfc-editor.org/rfc/rfc2772","title":"6Bone Backbone Routing Guidelines","authors":["R. Rockell","R. Fink"],"rawDate":"2000-02","status":"Informational","updatedBy":["RFC3152"],"obsoletes":["RFC2546"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2773":{"rfcNumber":"RFC2773","href":"https://www.rfc-editor.org/rfc/rfc2773","title":"Encryption using KEA and SKIPJACK","authors":["R. Housley","P. Yee","W. Nace"],"rawDate":"2000-02","status":"Experimental","updates":["RFC0959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2774":{"rfcNumber":"RFC2774","href":"https://www.rfc-editor.org/rfc/rfc2774","title":"An HTTP Extension Framework","authors":["H. Nielsen","P. Leach","S. Lawrence"],"rawDate":"2000-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2775":{"rfcNumber":"RFC2775","href":"https://www.rfc-editor.org/rfc/rfc2775","title":"Internet Transparency","authors":["B. Carpenter"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2776":{"rfcNumber":"RFC2776","href":"https://www.rfc-editor.org/rfc/rfc2776","title":"Multicast-Scope Zone Announcement Protocol (MZAP)","authors":["M. Handley","D. Thaler","R. Kermode"],"rawDate":"2000-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2777":{"rfcNumber":"RFC2777","href":"https://www.rfc-editor.org/rfc/rfc2777","title":"Publicly Verifiable Nomcom Random Selection","authors":["D. Eastlake 3rd"],"rawDate":"2000-02","status":"Informational","obsoletedBy":["RFC3797"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2778":{"rfcNumber":"RFC2778","href":"https://www.rfc-editor.org/rfc/rfc2778","title":"A Model for Presence and Instant Messaging","authors":["M. Day","J. Rosenberg","H. Sugano"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2779":{"rfcNumber":"RFC2779","href":"https://www.rfc-editor.org/rfc/rfc2779","title":"Instant Messaging / Presence Protocol Requirements","authors":["M. Day","S. Aggarwal","G. Mohr","J. Vincent"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc278":{"aliasOf":"rfc0278"},"rfc2780":{"rfcNumber":"RFC2780","href":"https://www.rfc-editor.org/rfc/rfc2780","title":"IANA Allocation Guidelines For Values In the Internet Protocol and Related Headers","authors":["S. Bradner","V. Paxson"],"rawDate":"2000-03","status":"Best Current Practice","updatedBy":["RFC4443","RFC5237","RFC5771","RFC6335","RFC7045"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2781":{"rfcNumber":"RFC2781","href":"https://www.rfc-editor.org/rfc/rfc2781","title":"UTF-16, an encoding of ISO 10646","authors":["P. Hoffman","F. Yergeau"],"rawDate":"2000-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2782":{"rfcNumber":"RFC2782","href":"https://www.rfc-editor.org/rfc/rfc2782","title":"A DNS RR for specifying the location of services (DNS SRV)","authors":["A. Gulbrandsen","P. Vixie","L. Esibov"],"rawDate":"2000-02","status":"Proposed Standard","updatedBy":["RFC6335","RFC8553"],"obsoletes":["RFC2052"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2782","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2783":{"rfcNumber":"RFC2783","href":"https://www.rfc-editor.org/rfc/rfc2783","title":"Pulse-Per-Second API for UNIX-like Operating Systems, Version 1.0","authors":["J. Mogul","D. Mills","J. Brittenson","J. Stone","U. Windl"],"rawDate":"2000-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2784":{"rfcNumber":"RFC2784","href":"https://www.rfc-editor.org/rfc/rfc2784","title":"Generic Routing Encapsulation (GRE)","authors":["D. Farinacci","T. Li","S. Hanks","D. Meyer","P. Traina"],"rawDate":"2000-03","status":"Proposed Standard","updatedBy":["RFC2890"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2784","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2785":{"rfcNumber":"RFC2785","href":"https://www.rfc-editor.org/rfc/rfc2785","title":"Methods for Avoiding the \"Small-Subgroup\" Attacks on the Diffie-Hellman Key Agreement Method for S/MIME","authors":["R. Zuccherato"],"rawDate":"2000-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2786":{"rfcNumber":"RFC2786","href":"https://www.rfc-editor.org/rfc/rfc2786","title":"Diffie-Helman USM Key Management Information Base and Textual Convention","authors":["M. St. Johns"],"rawDate":"2000-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2786","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2787":{"rfcNumber":"RFC2787","href":"https://www.rfc-editor.org/rfc/rfc2787","title":"Definitions of Managed Objects for the Virtual Router Redundancy Protocol","authors":["B. Jewell","D. Chuang"],"rawDate":"2000-03","status":"Proposed Standard","obsoletedBy":["RFC6527"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2788":{"rfcNumber":"RFC2788","href":"https://www.rfc-editor.org/rfc/rfc2788","title":"Network Services Monitoring MIB","authors":["N. Freed","S. Kille"],"rawDate":"2000-03","status":"Proposed Standard","obsoletes":["RFC2248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2789":{"rfcNumber":"RFC2789","href":"https://www.rfc-editor.org/rfc/rfc2789","title":"Mail Monitoring MIB","authors":["N. Freed","S. Kille"],"rawDate":"2000-03","status":"Proposed Standard","obsoletes":["RFC2249","RFC1566"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2790":{"rfcNumber":"RFC2790","href":"https://www.rfc-editor.org/rfc/rfc2790","title":"Host Resources MIB","authors":["S. Waldbusser","P. Grillo"],"rawDate":"2000-03","status":"Draft Standard","obsoletes":["RFC1514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2791":{"rfcNumber":"RFC2791","href":"https://www.rfc-editor.org/rfc/rfc2791","title":"Scalable Routing Design Principles","authors":["J. Yu"],"rawDate":"2000-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2792":{"rfcNumber":"RFC2792","href":"https://www.rfc-editor.org/rfc/rfc2792","title":"DSA and RSA Key and Signature Encoding for the KeyNote Trust Management System","authors":["M. Blaze","J. Ioannidis","A. Keromytis"],"rawDate":"2000-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2793":{"rfcNumber":"RFC2793","href":"https://www.rfc-editor.org/rfc/rfc2793","title":"RTP Payload for Text Conversation","authors":["G. Hellstrom"],"rawDate":"2000-05","status":"Proposed Standard","obsoletedBy":["RFC4103"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2794":{"rfcNumber":"RFC2794","href":"https://www.rfc-editor.org/rfc/rfc2794","title":"Mobile IP Network Access Identifier Extension for IPv4","authors":["P. Calhoun","C. Perkins"],"rawDate":"2000-03","status":"Proposed Standard","updates":["RFC2290"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2795":{"rfcNumber":"RFC2795","href":"https://www.rfc-editor.org/rfc/rfc2795","title":"The Infinite Monkey Protocol Suite (IMPS)","authors":["S. Christey"],"rawDate":"2000-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2796":{"rfcNumber":"RFC2796","href":"https://www.rfc-editor.org/rfc/rfc2796","title":"BGP Route Reflection - An Alternative to Full Mesh IBGP","authors":["T. Bates","R. Chandra","E. Chen"],"rawDate":"2000-04","status":"Proposed Standard","obsoletedBy":["RFC4456"],"updates":["RFC1966"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2797":{"rfcNumber":"RFC2797","href":"https://www.rfc-editor.org/rfc/rfc2797","title":"Certificate Management Messages over CMS","authors":["M. Myers","X. Liu","J. Schaad","J. Weinstein"],"rawDate":"2000-04","status":"Proposed Standard","obsoletedBy":["RFC5272"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2797","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2798":{"rfcNumber":"RFC2798","href":"https://www.rfc-editor.org/rfc/rfc2798","title":"Definition of the inetOrgPerson LDAP Object Class","authors":["M. Smith"],"rawDate":"2000-04","status":"Informational","updatedBy":["RFC3698","RFC4519","RFC4524"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2799":{"rfcNumber":"RFC2799","href":"https://www.rfc-editor.org/rfc/rfc2799","title":"Request for Comments Summary RFC Numbers 2700-2799","authors":["S. Ginoza"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc28":{"aliasOf":"rfc0028"},"rfc280":{"aliasOf":"rfc0280"},"rfc2800":{"rfcNumber":"RFC2800","href":"https://www.rfc-editor.org/rfc/rfc2800","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden","S. Ginoza"],"rawDate":"2001-05","status":"Historic","obsoletedBy":["RFC2900"],"obsoletes":["RFC2700"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2801":{"rfcNumber":"RFC2801","href":"https://www.rfc-editor.org/rfc/rfc2801","title":"Internet Open Trading Protocol - IOTP Version 1.0","authors":["D. Burdett"],"rawDate":"2000-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2802":{"rfcNumber":"RFC2802","href":"https://www.rfc-editor.org/rfc/rfc2802","title":"Digital Signatures for the v1.0 Internet Open Trading Protocol (IOTP)","authors":["K. Davidson","Y. Kawatsura"],"rawDate":"2000-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2802","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2803":{"rfcNumber":"RFC2803","href":"https://www.rfc-editor.org/rfc/rfc2803","title":"Digest Values for DOM (DOMHASH)","authors":["H. Maruyama","K. Tamura","N. Uramoto"],"rawDate":"2000-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2804":{"rfcNumber":"RFC2804","href":"https://www.rfc-editor.org/rfc/rfc2804","title":"IETF Policy on Wiretapping","authors":["IAB","IESG"],"rawDate":"2000-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2804","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2805":{"rfcNumber":"RFC2805","href":"https://www.rfc-editor.org/rfc/rfc2805","title":"Media Gateway Control Protocol Architecture and Requirements","authors":["N. Greene","M. Ramalho","B. Rosen"],"rawDate":"2000-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2806":{"rfcNumber":"RFC2806","href":"https://www.rfc-editor.org/rfc/rfc2806","title":"URLs for Telephone Calls","authors":["A. Vaha-Sipila"],"rawDate":"2000-04","status":"Proposed Standard","obsoletedBy":["RFC3966"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2807":{"rfcNumber":"RFC2807","href":"https://www.rfc-editor.org/rfc/rfc2807","title":"XML Signature Requirements","authors":["J. Reagle"],"rawDate":"2000-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2808":{"rfcNumber":"RFC2808","href":"https://www.rfc-editor.org/rfc/rfc2808","title":"The SecurID(r) SASL Mechanism","authors":["M. Nystrom"],"rawDate":"2000-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2809":{"rfcNumber":"RFC2809","href":"https://www.rfc-editor.org/rfc/rfc2809","title":"Implementation of L2TP Compulsory Tunneling via RADIUS","authors":["B. Aboba","G. Zorn"],"rawDate":"2000-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc281":{"aliasOf":"rfc0281"},"rfc2810":{"rfcNumber":"RFC2810","href":"https://www.rfc-editor.org/rfc/rfc2810","title":"Internet Relay Chat: Architecture","authors":["C. Kalt"],"rawDate":"2000-04","status":"Informational","updates":["RFC1459"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2810","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2811":{"rfcNumber":"RFC2811","href":"https://www.rfc-editor.org/rfc/rfc2811","title":"Internet Relay Chat: Channel Management","authors":["C. Kalt"],"rawDate":"2000-04","status":"Informational","updates":["RFC1459"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2812":{"rfcNumber":"RFC2812","href":"https://www.rfc-editor.org/rfc/rfc2812","title":"Internet Relay Chat: Client Protocol","authors":["C. Kalt"],"rawDate":"2000-04","status":"Informational","updates":["RFC1459"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2812","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2813":{"rfcNumber":"RFC2813","href":"https://www.rfc-editor.org/rfc/rfc2813","title":"Internet Relay Chat: Server Protocol","authors":["C. Kalt"],"rawDate":"2000-04","status":"Informational","updates":["RFC1459"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2813","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2814":{"rfcNumber":"RFC2814","href":"https://www.rfc-editor.org/rfc/rfc2814","title":"SBM (Subnet Bandwidth Manager): A Protocol for RSVP-based Admission Control over IEEE 802-style networks","authors":["R. Yavatkar","D. Hoffman","Y. Bernet","F. Baker","M. Speer"],"rawDate":"2000-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2815":{"rfcNumber":"RFC2815","href":"https://www.rfc-editor.org/rfc/rfc2815","title":"Integrated Service Mappings on IEEE 802 Networks","authors":["M. Seaman","A. Smith","E. Crawley","J. Wroclawski"],"rawDate":"2000-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2816":{"rfcNumber":"RFC2816","href":"https://www.rfc-editor.org/rfc/rfc2816","title":"A Framework for Integrated Services Over Shared and Switched IEEE 802 LAN Technologies","authors":["A. Ghanwani","J. Pace","V. Srinivasan","A. Smith","M. Seaman"],"rawDate":"2000-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2817":{"rfcNumber":"RFC2817","href":"https://www.rfc-editor.org/rfc/rfc2817","title":"Upgrading to TLS Within HTTP/1.1","authors":["R. Khare","S. Lawrence"],"rawDate":"2000-05","status":"Proposed Standard","updatedBy":["RFC7230","RFC7231"],"updates":["RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2817","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2818":{"rfcNumber":"RFC2818","href":"https://httpwg.org/specs/rfc2818.html","title":"HTTP Over TLS","authors":["E. Rescorla"],"rawDate":"2000-05","status":"Informational","updatedBy":["RFC5785","RFC7230"],"obsoletedBy":["RFC9110"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2818","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2819":{"rfcNumber":"RFC2819","href":"https://www.rfc-editor.org/rfc/rfc2819","title":"Remote Network Monitoring Management Information Base","authors":["S. Waldbusser"],"rawDate":"2000-05","status":"Internet Standard","obsoletes":["RFC1757"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2819","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc282":{"aliasOf":"rfc0282"},"rfc2820":{"rfcNumber":"RFC2820","href":"https://www.rfc-editor.org/rfc/rfc2820","title":"Access Control Requirements for LDAP","authors":["E. Stokes","D. Byrne","B. Blakley","P. Behera"],"rawDate":"2000-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2820","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2821":{"rfcNumber":"RFC2821","href":"https://www.rfc-editor.org/rfc/rfc2821","title":"Simple Mail Transfer Protocol","authors":["J. Klensin, Ed."],"rawDate":"2001-04","status":"Proposed Standard","updatedBy":["RFC5336"],"obsoletedBy":["RFC5321"],"obsoletes":["RFC0821","RFC0974","RFC1869"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2821","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2822":{"rfcNumber":"RFC2822","href":"https://www.rfc-editor.org/rfc/rfc2822","title":"Internet Message Format","authors":["P. Resnick, Ed."],"rawDate":"2001-04","status":"Proposed Standard","updatedBy":["RFC5335","RFC5336"],"obsoletedBy":["RFC5322"],"obsoletes":["RFC0822"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2822","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2823":{"rfcNumber":"RFC2823","href":"https://www.rfc-editor.org/rfc/rfc2823","title":"PPP over Simple Data Link (SDL) using SONET/SDH with ATM-like framing","authors":["J. Carlson","P. Langner","E. Hernandez-Valencia","J. Manchester"],"rawDate":"2000-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2824":{"rfcNumber":"RFC2824","href":"https://www.rfc-editor.org/rfc/rfc2824","title":"Call Processing Language Framework and Requirements","authors":["J. Lennox","H. Schulzrinne"],"rawDate":"2000-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2825":{"rfcNumber":"RFC2825","href":"https://www.rfc-editor.org/rfc/rfc2825","title":"A Tangled Web: Issues of I18N, Domain Names, and the Other Internet protocols","authors":["IAB","L. Daigle, Ed."],"rawDate":"2000-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2825","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2826":{"rfcNumber":"RFC2826","href":"https://www.rfc-editor.org/rfc/rfc2826","title":"IAB Technical Comment on the Unique DNS Root","authors":["Internet Architecture Board"],"rawDate":"2000-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2826","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2827":{"rfcNumber":"RFC2827","href":"https://www.rfc-editor.org/rfc/rfc2827","title":"Network Ingress Filtering: Defeating Denial of Service Attacks which employ IP Source Address Spoofing","authors":["P. Ferguson","D. Senie"],"rawDate":"2000-05","status":"Best Current Practice","updatedBy":["RFC3704"],"obsoletes":["RFC2267"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2827","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2828":{"rfcNumber":"RFC2828","href":"https://www.rfc-editor.org/rfc/rfc2828","title":"Internet Security Glossary","authors":["R. Shirey"],"rawDate":"2000-05","status":"Informational","obsoletedBy":["RFC4949"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2829":{"rfcNumber":"RFC2829","href":"https://www.rfc-editor.org/rfc/rfc2829","title":"Authentication Methods for LDAP","authors":["M. Wahl","H. Alvestrand","J. Hodges","R. Morgan"],"rawDate":"2000-05","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4513","RFC4510"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc283":{"aliasOf":"rfc0283"},"rfc2830":{"rfcNumber":"RFC2830","href":"https://www.rfc-editor.org/rfc/rfc2830","title":"Lightweight Directory Access Protocol (v3): Extension for Transport Layer Security","authors":["J. Hodges","R. Morgan","M. Wahl"],"rawDate":"2000-05","status":"Proposed Standard","updatedBy":["RFC3377"],"obsoletedBy":["RFC4511","RFC4513","RFC4510"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2831":{"rfcNumber":"RFC2831","href":"https://www.rfc-editor.org/rfc/rfc2831","title":"Using Digest Authentication as a SASL Mechanism","authors":["P. Leach","C. Newman"],"rawDate":"2000-05","status":"Historic","obsoletedBy":["RFC6331"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2832":{"rfcNumber":"RFC2832","href":"https://www.rfc-editor.org/rfc/rfc2832","title":"NSI Registry Registrar Protocol (RRP) Version 1.1.0","authors":["S. Hollenbeck","M. Srivastava"],"rawDate":"2000-05","status":"Informational","updatedBy":["RFC3632"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2833":{"rfcNumber":"RFC2833","href":"https://www.rfc-editor.org/rfc/rfc2833","title":"RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals","authors":["H. Schulzrinne","S. Petrack"],"rawDate":"2000-05","status":"Proposed Standard","obsoletedBy":["RFC4733","RFC4734"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2834":{"rfcNumber":"RFC2834","href":"https://www.rfc-editor.org/rfc/rfc2834","title":"ARP and IP Broadcast over HIPPI-800","authors":["J.-M. Pittet"],"rawDate":"2000-05","status":"Proposed Standard","updatedBy":["RFC5494"],"obsoletes":["RFC1374"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2834","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2835":{"rfcNumber":"RFC2835","href":"https://www.rfc-editor.org/rfc/rfc2835","title":"IP and ARP over HIPPI-6400 (GSN)","authors":["J.-M. Pittet"],"rawDate":"2000-05","status":"Proposed Standard","updatedBy":["RFC5494"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2836":{"rfcNumber":"RFC2836","href":"https://www.rfc-editor.org/rfc/rfc2836","title":"Per Hop Behavior Identification Codes","authors":["S. Brim","B. Carpenter","F. Le Faucheur"],"rawDate":"2000-05","status":"Proposed Standard","obsoletedBy":["RFC3140"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2837":{"rfcNumber":"RFC2837","href":"https://www.rfc-editor.org/rfc/rfc2837","title":"Definitions of Managed Objects for the Fabric Element in Fibre Channel Standard","authors":["K. Teow"],"rawDate":"2000-05","status":"Proposed Standard","obsoletedBy":["RFC4044"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2838":{"rfcNumber":"RFC2838","href":"https://www.rfc-editor.org/rfc/rfc2838","title":"Uniform Resource Identifiers for Television Broadcasts","authors":["D. Zigmond","M. Vickers"],"rawDate":"2000-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2839":{"rfcNumber":"RFC2839","href":"https://www.rfc-editor.org/rfc/rfc2839","title":"Internet Kermit Service","authors":["F. da Cruz","J. Altman"],"rawDate":"2000-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2839","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2840":{"rfcNumber":"RFC2840","href":"https://www.rfc-editor.org/rfc/rfc2840","title":"TELNET KERMIT OPTION","authors":["J. Altman","F. da Cruz"],"rawDate":"2000-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2841":{"rfcNumber":"RFC2841","href":"https://www.rfc-editor.org/rfc/rfc2841","title":"IP Authentication using Keyed SHA1 with Interleaved Padding (IP-MAC)","authors":["P. Metzger","W. Simpson"],"rawDate":"2000-11","status":"Historic","obsoletes":["RFC1852"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2842":{"rfcNumber":"RFC2842","href":"https://www.rfc-editor.org/rfc/rfc2842","title":"Capabilities Advertisement with BGP-4","authors":["R. Chandra","J. Scudder"],"rawDate":"2000-05","status":"Proposed Standard","obsoletedBy":["RFC3392"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2843":{"rfcNumber":"RFC2843","href":"https://www.rfc-editor.org/rfc/rfc2843","title":"Proxy-PAR","authors":["P. Droz","T. Przygienda"],"rawDate":"2000-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2844":{"rfcNumber":"RFC2844","href":"https://www.rfc-editor.org/rfc/rfc2844","title":"OSPF over ATM and Proxy-PAR","authors":["T. Przygienda","P. Droz","R. Haas"],"rawDate":"2000-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2845":{"rfcNumber":"RFC2845","href":"https://www.rfc-editor.org/rfc/rfc2845","title":"Secret Key Transaction Authentication for DNS (TSIG)","authors":["P. Vixie","O. Gudmundsson","D. Eastlake 3rd","B. Wellington"],"rawDate":"2000-05","status":"Proposed Standard","updatedBy":["RFC3645","RFC4635","RFC6895"],"obsoletedBy":["RFC8945"],"updates":["RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2846":{"rfcNumber":"RFC2846","href":"https://www.rfc-editor.org/rfc/rfc2846","title":"GSTN Address Element Extensions in E-mail Services","authors":["C. Allocchio"],"rawDate":"2000-06","status":"Proposed Standard","updatedBy":["RFC3191","RFC3192"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2846","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2847":{"rfcNumber":"RFC2847","href":"https://www.rfc-editor.org/rfc/rfc2847","title":"LIPKEY - A Low Infrastructure Public Key Mechanism Using SPKM","authors":["M. Eisler"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2848":{"rfcNumber":"RFC2848","href":"https://www.rfc-editor.org/rfc/rfc2848","title":"The PINT Service Protocol: Extensions to SIP and SDP for IP Access to Telephone Call Services","authors":["S. Petrack","L. Conroy"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2849":{"rfcNumber":"RFC2849","href":"https://www.rfc-editor.org/rfc/rfc2849","title":"The LDAP Data Interchange Format (LDIF) - Technical Specification","authors":["G. Good"],"rawDate":"2000-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2849","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc285":{"aliasOf":"rfc0285"},"rfc2850":{"rfcNumber":"RFC2850","href":"https://www.rfc-editor.org/rfc/rfc2850","title":"Charter of the Internet Architecture Board (IAB)","authors":["Internet Architecture Board","B. Carpenter, Ed."],"rawDate":"2000-05","status":"Best Current Practice","updatedBy":["RFC9283"],"obsoletes":["RFC1601"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2851":{"rfcNumber":"RFC2851","href":"https://www.rfc-editor.org/rfc/rfc2851","title":"Textual Conventions for Internet Network Addresses","authors":["M. Daniele","B. Haberman","S. Routhier","J. Schoenwaelder"],"rawDate":"2000-06","status":"Proposed Standard","obsoletedBy":["RFC3291"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2852":{"rfcNumber":"RFC2852","href":"https://www.rfc-editor.org/rfc/rfc2852","title":"Deliver By SMTP Service Extension","authors":["D. Newman"],"rawDate":"2000-06","status":"Proposed Standard","updates":["RFC1894"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2852","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2853":{"rfcNumber":"RFC2853","href":"https://www.rfc-editor.org/rfc/rfc2853","title":"Generic Security Service API Version 2 : Java Bindings","authors":["J. Kabat","M. Upadhyay"],"rawDate":"2000-06","status":"Proposed Standard","obsoletedBy":["RFC5653"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2854":{"rfcNumber":"RFC2854","href":"https://www.rfc-editor.org/rfc/rfc2854","title":"The 'text/html' Media Type","authors":["D. Connolly","L. Masinter"],"rawDate":"2000-06","status":"Informational","obsoletes":["RFC2070","RFC1980","RFC1942","RFC1867","RFC1866"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2855":{"rfcNumber":"RFC2855","href":"https://www.rfc-editor.org/rfc/rfc2855","title":"DHCP for IEEE 1394","authors":["K. Fujisawa"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2856":{"rfcNumber":"RFC2856","href":"https://www.rfc-editor.org/rfc/rfc2856","title":"Textual Conventions for Additional High Capacity Data Types","authors":["A. Bierman","K. McCloghrie","R. Presuhn"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2857":{"rfcNumber":"RFC2857","href":"https://www.rfc-editor.org/rfc/rfc2857","title":"The Use of HMAC-RIPEMD-160-96 within ESP and AH","authors":["A. Keromytis","N. Provos"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2858":{"rfcNumber":"RFC2858","href":"https://www.rfc-editor.org/rfc/rfc2858","title":"Multiprotocol Extensions for BGP-4","authors":["T. Bates","Y. Rekhter","R. Chandra","D. Katz"],"rawDate":"2000-06","status":"Proposed Standard","obsoletedBy":["RFC4760"],"obsoletes":["RFC2283"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2858","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2859":{"rfcNumber":"RFC2859","href":"https://www.rfc-editor.org/rfc/rfc2859","title":"A Time Sliding Window Three Colour Marker (TSWTCM)","authors":["W. Fang","N. Seddigh","B. Nandy"],"rawDate":"2000-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc286":{"aliasOf":"rfc0286"},"rfc2860":{"rfcNumber":"RFC2860","href":"https://www.rfc-editor.org/rfc/rfc2860","title":"Memorandum of Understanding Concerning the Technical Work of the Internet Assigned Numbers Authority","authors":["B. Carpenter","F. Baker","M. Roberts"],"rawDate":"2000-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2861":{"rfcNumber":"RFC2861","href":"https://www.rfc-editor.org/rfc/rfc2861","title":"TCP Congestion Window Validation","authors":["M. Handley","J. Padhye","S. Floyd"],"rawDate":"2000-06","status":"Historic","obsoletedBy":["RFC7661"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2861","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2862":{"rfcNumber":"RFC2862","href":"https://www.rfc-editor.org/rfc/rfc2862","title":"RTP Payload Format for Real-Time Pointers","authors":["M. Civanlar","G. Cash"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2863":{"rfcNumber":"RFC2863","href":"https://www.rfc-editor.org/rfc/rfc2863","title":"The Interfaces Group MIB","authors":["K. McCloghrie","F. Kastenholz"],"rawDate":"2000-06","status":"Draft Standard","updatedBy":["RFC8892"],"obsoletes":["RFC2233"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2863","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2864":{"rfcNumber":"RFC2864","href":"https://www.rfc-editor.org/rfc/rfc2864","title":"The Inverted Stack Table Extension to the Interfaces Group MIB","authors":["K. McCloghrie","G. Hanson"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2865":{"rfcNumber":"RFC2865","href":"https://www.rfc-editor.org/rfc/rfc2865","title":"Remote Authentication Dial In User Service (RADIUS)","authors":["C. Rigney","S. Willens","A. Rubens","W. Simpson"],"rawDate":"2000-06","status":"Draft Standard","updatedBy":["RFC2868","RFC3575","RFC5080","RFC6929","RFC8044"],"obsoletes":["RFC2138"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2865","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2866":{"rfcNumber":"RFC2866","href":"https://www.rfc-editor.org/rfc/rfc2866","title":"RADIUS Accounting","authors":["C. Rigney"],"rawDate":"2000-06","status":"Informational","updatedBy":["RFC2867","RFC5080","RFC5997"],"obsoletes":["RFC2139"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2866","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2867":{"rfcNumber":"RFC2867","href":"https://www.rfc-editor.org/rfc/rfc2867","title":"RADIUS Accounting Modifications for Tunnel Protocol Support","authors":["G. Zorn","B. Aboba","D. Mitton"],"rawDate":"2000-06","status":"Informational","updates":["RFC2866"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2867","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2868":{"rfcNumber":"RFC2868","href":"https://www.rfc-editor.org/rfc/rfc2868","title":"RADIUS Attributes for Tunnel Protocol Support","authors":["G. Zorn","D. Leifer","A. Rubens","J. Shriver","M. Holdrege","I. Goyret"],"rawDate":"2000-06","status":"Informational","updatedBy":["RFC3575"],"updates":["RFC2865"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2868","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2869":{"rfcNumber":"RFC2869","href":"https://www.rfc-editor.org/rfc/rfc2869","title":"RADIUS Extensions","authors":["C. Rigney","W. Willats","P. Calhoun"],"rawDate":"2000-06","status":"Informational","updatedBy":["RFC3579","RFC5080"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc287":{"aliasOf":"rfc0287"},"rfc2870":{"rfcNumber":"RFC2870","href":"https://www.rfc-editor.org/rfc/rfc2870","title":"Root Name Server Operational Requirements","authors":["R. Bush","D. Karrenberg","M. Kosters","R. Plzak"],"rawDate":"2000-06","status":"Best Current Practice","obsoletedBy":["RFC7720"],"obsoletes":["RFC2010"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2871":{"rfcNumber":"RFC2871","href":"https://www.rfc-editor.org/rfc/rfc2871","title":"A Framework for Telephony Routing over IP","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2000-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2872":{"rfcNumber":"RFC2872","href":"https://www.rfc-editor.org/rfc/rfc2872","title":"Application and Sub Application Identity Policy Element for Use with RSVP","authors":["Y. Bernet","R. Pabbati"],"rawDate":"2000-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2873":{"rfcNumber":"RFC2873","href":"https://www.rfc-editor.org/rfc/rfc2873","title":"TCP Processing of the IPv4 Precedence Field","authors":["X. Xiao","A. Hannan","V. Paxson","E. Crabbe"],"rawDate":"2000-06","status":"Proposed Standard","obsoletedBy":["RFC9293"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2873","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2874":{"rfcNumber":"RFC2874","href":"https://www.rfc-editor.org/rfc/rfc2874","title":"DNS Extensions to Support IPv6 Address Aggregation and Renumbering","authors":["M. Crawford","C. Huitema"],"rawDate":"2000-07","status":"Historic","updatedBy":["RFC3152","RFC3226","RFC3363","RFC3364"],"updates":["RFC1886"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2875":{"rfcNumber":"RFC2875","href":"https://www.rfc-editor.org/rfc/rfc2875","title":"Diffie-Hellman Proof-of-Possession Algorithms","authors":["H. Prafullchandra","J. Schaad"],"rawDate":"2000-07","status":"Proposed Standard","obsoletedBy":["RFC6955"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2876":{"rfcNumber":"RFC2876","href":"https://www.rfc-editor.org/rfc/rfc2876","title":"Use of the KEA and SKIPJACK Algorithms in CMS","authors":["J. Pawling"],"rawDate":"2000-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2876","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2877":{"rfcNumber":"RFC2877","href":"https://www.rfc-editor.org/rfc/rfc2877","title":"5250 Telnet Enhancements","authors":["T. Murphy Jr.","P. Rieth","J. Stevens"],"rawDate":"2000-07","status":"Informational","obsoletedBy":["RFC4777"],"updates":["RFC1205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2878":{"rfcNumber":"RFC2878","href":"https://www.rfc-editor.org/rfc/rfc2878","title":"PPP Bridging Control Protocol (BCP)","authors":["M. Higashiyama","F. Baker"],"rawDate":"2000-07","status":"Proposed Standard","obsoletedBy":["RFC3518"],"obsoletes":["RFC1638"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2879":{"rfcNumber":"RFC2879","href":"https://www.rfc-editor.org/rfc/rfc2879","title":"Content Feature Schema for Internet Fax (V2)","authors":["G. Klyne","L. McIntyre"],"rawDate":"2000-08","status":"Proposed Standard","obsoletes":["RFC2531"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc288":{"aliasOf":"rfc0288"},"rfc2880":{"rfcNumber":"RFC2880","href":"https://www.rfc-editor.org/rfc/rfc2880","title":"Internet Fax T.30 Feature Mapping","authors":["L. McIntyre","G. Klyne"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2881":{"rfcNumber":"RFC2881","href":"https://www.rfc-editor.org/rfc/rfc2881","title":"Network Access Server Requirements Next Generation (NASREQNG) NAS Model","authors":["D. Mitton","M. Beadles"],"rawDate":"2000-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2882":{"rfcNumber":"RFC2882","href":"https://www.rfc-editor.org/rfc/rfc2882","title":"Network Access Servers Requirements: Extended RADIUS Practices","authors":["D. Mitton"],"rawDate":"2000-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2883":{"rfcNumber":"RFC2883","href":"https://www.rfc-editor.org/rfc/rfc2883","title":"An Extension to the Selective Acknowledgement (SACK) Option for TCP","authors":["S. Floyd","J. Mahdavi","M. Mathis","M. Podolsky"],"rawDate":"2000-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2883","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2884":{"rfcNumber":"RFC2884","href":"https://www.rfc-editor.org/rfc/rfc2884","title":"Performance Evaluation of Explicit Congestion Notification (ECN) in IP Networks","authors":["J. Hadi Salim","U. Ahmed"],"rawDate":"2000-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2885":{"rfcNumber":"RFC2885","href":"https://www.rfc-editor.org/rfc/rfc2885","title":"Megaco Protocol version 0.8","authors":["F. Cuervo","N. Greene","C. Huitema","A. Rayhan","B. Rosen","J. Segers"],"rawDate":"2000-08","status":"Historic","obsoletedBy":["RFC3015"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2886":{"rfcNumber":"RFC2886","href":"https://www.rfc-editor.org/rfc/rfc2886","title":"Megaco Errata","authors":["T. Taylor"],"rawDate":"2000-08","status":"Historic","obsoletedBy":["RFC3015"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2887":{"rfcNumber":"RFC2887","href":"https://www.rfc-editor.org/rfc/rfc2887","title":"The Reliable Multicast Design Space for Bulk Data Transfer","authors":["M. Handley","S. Floyd","B. Whetten","R. Kermode","L. Vicisano","M. Luby"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2888":{"rfcNumber":"RFC2888","href":"https://www.rfc-editor.org/rfc/rfc2888","title":"Secure Remote Access with L2TP","authors":["P. Srisuresh"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2889":{"rfcNumber":"RFC2889","href":"https://www.rfc-editor.org/rfc/rfc2889","title":"Benchmarking Methodology for LAN Switching Devices","authors":["R. Mandeville","J. Perser"],"rawDate":"2000-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2889","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc289":{"aliasOf":"rfc0289"},"rfc2890":{"rfcNumber":"RFC2890","href":"https://www.rfc-editor.org/rfc/rfc2890","title":"Key and Sequence Number Extensions to GRE","authors":["G. Dommety"],"rawDate":"2000-09","status":"Proposed Standard","updates":["RFC2784"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2891":{"rfcNumber":"RFC2891","href":"https://www.rfc-editor.org/rfc/rfc2891","title":"LDAP Control Extension for Server Side Sorting of Search Results","authors":["T. Howes","M. Wahl","A. Anantha"],"rawDate":"2000-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2892":{"rfcNumber":"RFC2892","href":"https://www.rfc-editor.org/rfc/rfc2892","title":"The Cisco SRP MAC Layer Protocol","authors":["D. Tsiang","G. Suwala"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2893":{"rfcNumber":"RFC2893","href":"https://www.rfc-editor.org/rfc/rfc2893","title":"Transition Mechanisms for IPv6 Hosts and Routers","authors":["R. Gilligan","E. Nordmark"],"rawDate":"2000-08","status":"Proposed Standard","obsoletedBy":["RFC4213"],"obsoletes":["RFC1933"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2894":{"rfcNumber":"RFC2894","href":"https://www.rfc-editor.org/rfc/rfc2894","title":"Router Renumbering for IPv6","authors":["M. Crawford"],"rawDate":"2000-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2895":{"rfcNumber":"RFC2895","href":"https://www.rfc-editor.org/rfc/rfc2895","title":"Remote Network Monitoring MIB Protocol Identifier Reference","authors":["A. Bierman","C. Bucci","R. Iddon"],"rawDate":"2000-08","status":"Draft Standard","updatedBy":["RFC3395"],"obsoletes":["RFC2074"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2896":{"rfcNumber":"RFC2896","href":"https://www.rfc-editor.org/rfc/rfc2896","title":"Remote Network Monitoring MIB Protocol Identifier Macros","authors":["A. Bierman","C. Bucci","R. Iddon"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2897":{"rfcNumber":"RFC2897","href":"https://www.rfc-editor.org/rfc/rfc2897","title":"Proposal for an MGCP Advanced Audio Package","authors":["D. Cromwell"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2898":{"rfcNumber":"RFC2898","href":"https://www.rfc-editor.org/rfc/rfc2898","title":"PKCS #5: Password-Based Cryptography Specification Version 2.0","authors":["B. Kaliski"],"rawDate":"2000-09","status":"Informational","obsoletedBy":["RFC8018"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2898","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2899":{"rfcNumber":"RFC2899","href":"https://www.rfc-editor.org/rfc/rfc2899","title":"Request for Comments Summary RFC Numbers 2800-2899","authors":["S. Ginoza"],"rawDate":"2001-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc29":{"aliasOf":"rfc0029"},"rfc290":{"aliasOf":"rfc0290"},"rfc2900":{"rfcNumber":"RFC2900","href":"https://www.rfc-editor.org/rfc/rfc2900","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden","S. Ginoza"],"rawDate":"2001-08","status":"Historic","obsoletedBy":["RFC3000"],"obsoletes":["RFC2800"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2901":{"rfcNumber":"RFC2901","href":"https://www.rfc-editor.org/rfc/rfc2901","title":"Guide to Administrative Procedures of the Internet Infrastructure","authors":["Z. Wenzel","J. Klensin","R. Bush","S. Huter"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2902":{"rfcNumber":"RFC2902","href":"https://www.rfc-editor.org/rfc/rfc2902","title":"Overview of the 1998 IAB Routing Workshop","authors":["S. Deering","S. Hares","C. Perkins","R. Perlman"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2903":{"rfcNumber":"RFC2903","href":"https://www.rfc-editor.org/rfc/rfc2903","title":"Generic AAA Architecture","authors":["C. de Laat","G. Gross","L. Gommans","J. Vollbrecht","D. Spence"],"rawDate":"2000-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2904":{"rfcNumber":"RFC2904","href":"https://www.rfc-editor.org/rfc/rfc2904","title":"AAA Authorization Framework","authors":["J. Vollbrecht","P. Calhoun","S. Farrell","L. Gommans","G. Gross","B. de Bruijn","C. de Laat","M. Holdrege","D. Spence"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2905":{"rfcNumber":"RFC2905","href":"https://www.rfc-editor.org/rfc/rfc2905","title":"AAA Authorization Application Examples","authors":["J. Vollbrecht","P. Calhoun","S. Farrell","L. Gommans","G. Gross","B. de Bruijn","C. de Laat","M. Holdrege","D. Spence"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2906":{"rfcNumber":"RFC2906","href":"https://www.rfc-editor.org/rfc/rfc2906","title":"AAA Authorization Requirements","authors":["S. Farrell","J. Vollbrecht","P. Calhoun","L. Gommans","G. Gross","B. de Bruijn","C. de Laat","M. Holdrege","D. Spence"],"rawDate":"2000-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2907":{"rfcNumber":"RFC2907","href":"https://www.rfc-editor.org/rfc/rfc2907","title":"MADCAP Multicast Scope Nesting State Option","authors":["R. Kermode"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2908":{"rfcNumber":"RFC2908","href":"https://www.rfc-editor.org/rfc/rfc2908","title":"The Internet Multicast Address Allocation Architecture","authors":["D. Thaler","M. Handley","D. Estrin"],"rawDate":"2000-09","status":"Historic","obsoletedBy":["RFC6308"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2909":{"rfcNumber":"RFC2909","href":"https://www.rfc-editor.org/rfc/rfc2909","title":"The Multicast Address-Set Claim (MASC) Protocol","authors":["P. Radoslavov","D. Estrin","R. Govindan","M. Handley","S. Kumar","D. Thaler"],"rawDate":"2000-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc291":{"aliasOf":"rfc0291"},"rfc2910":{"rfcNumber":"RFC2910","href":"https://www.rfc-editor.org/rfc/rfc2910","title":"Internet Printing Protocol/1.1: Encoding and Transport","authors":["R. Herriot, Ed.","S. Butler","P. Moore","R. Turner","J. Wenn"],"rawDate":"2000-09","status":"Proposed Standard","updatedBy":["RFC3380","RFC3381","RFC3382","RFC3510","RFC3995","RFC7472"],"obsoletedBy":["RFC8010"],"obsoletes":["RFC2565"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2910","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2911":{"rfcNumber":"RFC2911","href":"https://www.rfc-editor.org/rfc/rfc2911","title":"Internet Printing Protocol/1.1: Model and Semantics","authors":["T. Hastings, Ed.","R. Herriot","R. deBry","S. Isaacson","P. Powell"],"rawDate":"2000-09","status":"Proposed Standard","updatedBy":["RFC3380","RFC3382","RFC3996","RFC3995","RFC7472"],"obsoletedBy":["RFC8011"],"obsoletes":["RFC2566"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2911","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2912":{"rfcNumber":"RFC2912","href":"https://www.rfc-editor.org/rfc/rfc2912","title":"Indicating Media Features for MIME Content","authors":["G. Klyne"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2913":{"rfcNumber":"RFC2913","href":"https://www.rfc-editor.org/rfc/rfc2913","title":"MIME Content Types in Media Feature Expressions","authors":["G. Klyne"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2914":{"rfcNumber":"RFC2914","href":"https://www.rfc-editor.org/rfc/rfc2914","title":"Congestion Control Principles","authors":["S. Floyd"],"rawDate":"2000-09","status":"Best Current Practice","updatedBy":["RFC7141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2915":{"rfcNumber":"RFC2915","href":"https://www.rfc-editor.org/rfc/rfc2915","title":"The Naming Authority Pointer (NAPTR) DNS Resource Record","authors":["M. Mealling","R. Daniel"],"rawDate":"2000-09","status":"Proposed Standard","obsoletedBy":["RFC3401","RFC3402","RFC3403","RFC3404"],"updates":["RFC2168"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2916":{"rfcNumber":"RFC2916","href":"https://www.rfc-editor.org/rfc/rfc2916","title":"E.164 number and DNS","authors":["P. Faltstrom"],"rawDate":"2000-09","status":"Proposed Standard","obsoletedBy":["RFC3761"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2916","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2917":{"rfcNumber":"RFC2917","href":"https://www.rfc-editor.org/rfc/rfc2917","title":"A Core MPLS IP VPN Architecture","authors":["K. Muthukrishnan","A. Malis"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2918":{"rfcNumber":"RFC2918","href":"https://www.rfc-editor.org/rfc/rfc2918","title":"Route Refresh Capability for BGP-4","authors":["E. Chen"],"rawDate":"2000-09","status":"Proposed Standard","updatedBy":["RFC7313"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2919":{"rfcNumber":"RFC2919","href":"https://www.rfc-editor.org/rfc/rfc2919","title":"List-Id: A Structured Field and Namespace for the Identification of Mailing Lists","authors":["R. Chandhok","G. Wenger"],"rawDate":"2001-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2919","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc292":{"aliasOf":"rfc0292"},"rfc2920":{"rfcNumber":"RFC2920","href":"https://www.rfc-editor.org/rfc/rfc2920","title":"SMTP Service Extension for Command Pipelining","authors":["N. Freed"],"rawDate":"2000-09","status":"Internet Standard","obsoletes":["RFC2197"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2921":{"rfcNumber":"RFC2921","href":"https://www.rfc-editor.org/rfc/rfc2921","title":"6BONE pTLA and pNLA Formats (pTLA)","authors":["B. Fink"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2922":{"rfcNumber":"RFC2922","href":"https://www.rfc-editor.org/rfc/rfc2922","title":"Physical Topology MIB","authors":["A. Bierman","K. Jones"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2923":{"rfcNumber":"RFC2923","href":"https://www.rfc-editor.org/rfc/rfc2923","title":"TCP Problems with Path MTU Discovery","authors":["K. Lahey"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2924":{"rfcNumber":"RFC2924","href":"https://www.rfc-editor.org/rfc/rfc2924","title":"Accounting Attributes and Record Formats","authors":["N. Brownlee","A. Blount"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2925":{"rfcNumber":"RFC2925","href":"https://www.rfc-editor.org/rfc/rfc2925","title":"Definitions of Managed Objects for Remote Ping, Traceroute, and Lookup Operations","authors":["K. White"],"rawDate":"2000-09","status":"Proposed Standard","obsoletedBy":["RFC4560"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2925","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2926":{"rfcNumber":"RFC2926","href":"https://www.rfc-editor.org/rfc/rfc2926","title":"Conversion of LDAP Schemas to and from SLP Templates","authors":["J. Kempf","R. Moats","P. St. Pierre"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2927":{"rfcNumber":"RFC2927","href":"https://www.rfc-editor.org/rfc/rfc2927","title":"MIME Directory Profile for LDAP Schema","authors":["M. Wahl"],"rawDate":"2000-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2927","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2928":{"rfcNumber":"RFC2928","href":"https://www.rfc-editor.org/rfc/rfc2928","title":"Initial IPv6 Sub-TLA ID Assignments","authors":["R. Hinden","S. Deering","R. Fink","T. Hain"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2929":{"rfcNumber":"RFC2929","href":"https://www.rfc-editor.org/rfc/rfc2929","title":"Domain Name System (DNS) IANA Considerations","authors":["D. Eastlake 3rd","E. Brunner-Williams","B. Manning"],"rawDate":"2000-09","status":"Best Current Practice","obsoletedBy":["RFC5395"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc293":{"aliasOf":"rfc0293"},"rfc2930":{"rfcNumber":"RFC2930","href":"https://www.rfc-editor.org/rfc/rfc2930","title":"Secret Key Establishment for DNS (TKEY RR)","authors":["D. Eastlake 3rd"],"rawDate":"2000-09","status":"Proposed Standard","updatedBy":["RFC6895"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2931":{"rfcNumber":"RFC2931","href":"https://www.rfc-editor.org/rfc/rfc2931","title":"DNS Request and Transaction Signatures ( SIG(0)s )","authors":["D. Eastlake 3rd"],"rawDate":"2000-09","status":"Proposed Standard","updates":["RFC2535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2932":{"rfcNumber":"RFC2932","href":"https://www.rfc-editor.org/rfc/rfc2932","title":"IPv4 Multicast Routing MIB","authors":["K. McCloghrie","D. Farinacci","D. Thaler"],"rawDate":"2000-10","status":"Proposed Standard","obsoletedBy":["RFC5132"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2933":{"rfcNumber":"RFC2933","href":"https://www.rfc-editor.org/rfc/rfc2933","title":"Internet Group Management Protocol MIB","authors":["K. McCloghrie","D. Farinacci","D. Thaler"],"rawDate":"2000-10","status":"Proposed Standard","obsoletedBy":["RFC5519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2934":{"rfcNumber":"RFC2934","href":"https://www.rfc-editor.org/rfc/rfc2934","title":"Protocol Independent Multicast MIB for IPv4","authors":["K. McCloghrie","D. Farinacci","D. Thaler","B. Fenner"],"rawDate":"2000-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2935":{"rfcNumber":"RFC2935","href":"https://www.rfc-editor.org/rfc/rfc2935","title":"Internet Open Trading Protocol (IOTP) HTTP Supplement","authors":["D. Eastlake 3rd","C. Smith"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2936":{"rfcNumber":"RFC2936","href":"https://www.rfc-editor.org/rfc/rfc2936","title":"HTTP MIME Type Handler Detection","authors":["D. Eastlake 3rd","C. Smith","D. Soroka"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2937":{"rfcNumber":"RFC2937","href":"https://www.rfc-editor.org/rfc/rfc2937","title":"The Name Service Search Option for DHCP","authors":["C. Smith"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2938":{"rfcNumber":"RFC2938","href":"https://www.rfc-editor.org/rfc/rfc2938","title":"Identifying Composite Media Features","authors":["G. Klyne","L. Masinter"],"rawDate":"2000-09","status":"Proposed Standard","updates":["RFC2533"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2938","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2939":{"rfcNumber":"RFC2939","href":"https://www.rfc-editor.org/rfc/rfc2939","title":"Procedures and IANA Guidelines for Definition of New DHCP Options and Message Types","authors":["R. Droms"],"rawDate":"2000-09","status":"Best Current Practice","obsoletes":["RFC2489"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2939","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc294":{"aliasOf":"rfc0294"},"rfc2940":{"rfcNumber":"RFC2940","href":"https://www.rfc-editor.org/rfc/rfc2940","title":"Definitions of Managed Objects for Common Open Policy Service (COPS) Protocol Clients","authors":["A. Smith","D. Partain","J. Seligson"],"rawDate":"2000-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2941":{"rfcNumber":"RFC2941","href":"https://www.rfc-editor.org/rfc/rfc2941","title":"Telnet Authentication Option","authors":["T. Ts'o, Ed.","J. Altman"],"rawDate":"2000-09","status":"Proposed Standard","obsoletes":["RFC1416"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2942":{"rfcNumber":"RFC2942","href":"https://www.rfc-editor.org/rfc/rfc2942","title":"Telnet Authentication: Kerberos Version 5","authors":["T. Ts'o"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2943":{"rfcNumber":"RFC2943","href":"https://www.rfc-editor.org/rfc/rfc2943","title":"TELNET Authentication Using DSA","authors":["R. Housley","T. Horting","P. Yee"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2944":{"rfcNumber":"RFC2944","href":"https://www.rfc-editor.org/rfc/rfc2944","title":"Telnet Authentication: SRP","authors":["T. Wu"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2945":{"rfcNumber":"RFC2945","href":"https://www.rfc-editor.org/rfc/rfc2945","title":"The SRP Authentication and Key Exchange System","authors":["T. Wu"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2946":{"rfcNumber":"RFC2946","href":"https://www.rfc-editor.org/rfc/rfc2946","title":"Telnet Data Encryption Option","authors":["T. Ts'o"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2947":{"rfcNumber":"RFC2947","href":"https://www.rfc-editor.org/rfc/rfc2947","title":"Telnet Encryption: DES3 64 bit Cipher Feedback","authors":["J. Altman"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2948":{"rfcNumber":"RFC2948","href":"https://www.rfc-editor.org/rfc/rfc2948","title":"Telnet Encryption: DES3 64 bit Output Feedback","authors":["J. Altman"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2949":{"rfcNumber":"RFC2949","href":"https://www.rfc-editor.org/rfc/rfc2949","title":"Telnet Encryption: CAST-128 64 bit Output Feedback","authors":["J. Altman"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc295":{"aliasOf":"rfc0295"},"rfc2950":{"rfcNumber":"RFC2950","href":"https://www.rfc-editor.org/rfc/rfc2950","title":"Telnet Encryption: CAST-128 64 bit Cipher Feedback","authors":["J. Altman"],"rawDate":"2000-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2951":{"rfcNumber":"RFC2951","href":"https://www.rfc-editor.org/rfc/rfc2951","title":"TELNET Authentication Using KEA and SKIPJACK","authors":["R. Housley","T. Horting","P. Yee"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2952":{"rfcNumber":"RFC2952","href":"https://www.rfc-editor.org/rfc/rfc2952","title":"Telnet Encryption: DES 64 bit Cipher Feedback","authors":["T. Ts'o"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2953":{"rfcNumber":"RFC2953","href":"https://www.rfc-editor.org/rfc/rfc2953","title":"Telnet Encryption: DES 64 bit Output Feedback","authors":["T. Ts'o"],"rawDate":"2000-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2954":{"rfcNumber":"RFC2954","href":"https://www.rfc-editor.org/rfc/rfc2954","title":"Definitions of Managed Objects for Frame Relay Service","authors":["K. Rehbehn","D. Fowler"],"rawDate":"2000-10","status":"Proposed Standard","updatedBy":["RFC9141"],"obsoletes":["RFC1604"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2955":{"rfcNumber":"RFC2955","href":"https://www.rfc-editor.org/rfc/rfc2955","title":"Definitions of Managed Objects for Monitoring and Controlling the Frame Relay/ATM PVC Service Interworking Function","authors":["K. Rehbehn","O. Nicklass","G. Mouradian"],"rawDate":"2000-10","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2956":{"rfcNumber":"RFC2956","href":"https://www.rfc-editor.org/rfc/rfc2956","title":"Overview of 1999 IAB Network Layer Workshop","authors":["M. Kaat"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2957":{"rfcNumber":"RFC2957","href":"https://www.rfc-editor.org/rfc/rfc2957","title":"The application/whoispp-query Content-Type","authors":["L. Daigle","P. Faltstrom"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2958":{"rfcNumber":"RFC2958","href":"https://www.rfc-editor.org/rfc/rfc2958","title":"The application/whoispp-response Content-type","authors":["L. Daigle","P. Faltstrom"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2959":{"rfcNumber":"RFC2959","href":"https://www.rfc-editor.org/rfc/rfc2959","title":"Real-Time Transport Protocol Management Information Base","authors":["M. Baugher","B. Strahm","I. Suconick"],"rawDate":"2000-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc296":{"aliasOf":"rfc0296"},"rfc2960":{"rfcNumber":"RFC2960","href":"https://www.rfc-editor.org/rfc/rfc2960","title":"Stream Control Transmission Protocol","authors":["R. Stewart","Q. Xie","K. Morneault","C. Sharp","H. Schwarzbauer","T. Taylor","I. Rytina","M. Kalla","L. Zhang","V. Paxson"],"rawDate":"2000-10","status":"Proposed Standard","updatedBy":["RFC3309"],"obsoletedBy":["RFC4960"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2960","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2961":{"rfcNumber":"RFC2961","href":"https://www.rfc-editor.org/rfc/rfc2961","title":"RSVP Refresh Overhead Reduction Extensions","authors":["L. Berger","D. Gan","G. Swallow","P. Pan","F. Tommasi","S. Molendini"],"rawDate":"2001-04","status":"Proposed Standard","updatedBy":["RFC5063"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2962":{"rfcNumber":"RFC2962","href":"https://www.rfc-editor.org/rfc/rfc2962","title":"An SNMP Application Level Gateway for Payload Address Translation","authors":["D. Raz","J. Schoenwaelder","B. Sugla"],"rawDate":"2000-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2962","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2963":{"rfcNumber":"RFC2963","href":"https://www.rfc-editor.org/rfc/rfc2963","title":"A Rate Adaptive Shaper for Differentiated Services","authors":["O. Bonaventure","S. De Cnodder"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2964":{"rfcNumber":"RFC2964","href":"https://www.rfc-editor.org/rfc/rfc2964","title":"Use of HTTP State Management","authors":["K. Moore","N. Freed"],"rawDate":"2000-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2965":{"rfcNumber":"RFC2965","href":"https://www.rfc-editor.org/rfc/rfc2965","title":"HTTP State Management Mechanism","authors":["D. Kristol","L. Montulli"],"rawDate":"2000-10","status":"Historic","obsoletedBy":["RFC6265"],"obsoletes":["RFC2109"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2965","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2966":{"rfcNumber":"RFC2966","href":"https://www.rfc-editor.org/rfc/rfc2966","title":"Domain-wide Prefix Distribution with Two-Level IS-IS","authors":["T. Li","T. Przygienda","H. Smit"],"rawDate":"2000-10","status":"Informational","obsoletedBy":["RFC5302"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2967":{"rfcNumber":"RFC2967","href":"https://www.rfc-editor.org/rfc/rfc2967","title":"TISDAG - Technical Infrastructure for Swedish Directory Access Gateways","authors":["L. Daigle","R. Hedberg"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2968":{"rfcNumber":"RFC2968","href":"https://www.rfc-editor.org/rfc/rfc2968","title":"Mesh of Multiple DAG servers - Results from TISDAG","authors":["L. Daigle","T. Eklof"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2969":{"rfcNumber":"RFC2969","href":"https://www.rfc-editor.org/rfc/rfc2969","title":"Wide Area Directory Deployment - Experiences from TISDAG","authors":["T. Eklof","L. Daigle"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc297":{"aliasOf":"rfc0297"},"rfc2970":{"rfcNumber":"RFC2970","href":"https://www.rfc-editor.org/rfc/rfc2970","title":"Architecture for Integrated Directory Services - Result from TISDAG","authors":["L. Daigle","T. Eklof"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2971":{"rfcNumber":"RFC2971","href":"https://www.rfc-editor.org/rfc/rfc2971","title":"IMAP4 ID extension","authors":["T. Showalter"],"rawDate":"2000-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2972":{"rfcNumber":"RFC2972","href":"https://www.rfc-editor.org/rfc/rfc2972","title":"Context and Goals for Common Name Resolution","authors":["N. Popp","M. Mealling","L. Masinter","K. Sollins"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2973":{"rfcNumber":"RFC2973","href":"https://www.rfc-editor.org/rfc/rfc2973","title":"IS-IS Mesh Groups","authors":["R. Balay","D. Katz","J. Parker"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2974":{"rfcNumber":"RFC2974","href":"https://www.rfc-editor.org/rfc/rfc2974","title":"Session Announcement Protocol","authors":["M. Handley","C. Perkins","E. Whelan"],"rawDate":"2000-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2975":{"rfcNumber":"RFC2975","href":"https://www.rfc-editor.org/rfc/rfc2975","title":"Introduction to Accounting Management","authors":["B. Aboba","J. Arkko","D. Harrington"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2976":{"rfcNumber":"RFC2976","href":"https://www.rfc-editor.org/rfc/rfc2976","title":"The SIP INFO Method","authors":["S. Donovan"],"rawDate":"2000-10","status":"Proposed Standard","obsoletedBy":["RFC6086"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2977":{"rfcNumber":"RFC2977","href":"https://www.rfc-editor.org/rfc/rfc2977","title":"Mobile IP Authentication, Authorization, and Accounting Requirements","authors":["S. Glass","T. Hiller","S. Jacobs","C. Perkins"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2978":{"rfcNumber":"RFC2978","href":"https://www.rfc-editor.org/rfc/rfc2978","title":"IANA Charset Registration Procedures","authors":["N. Freed","J. Postel"],"rawDate":"2000-10","status":"Best Current Practice","obsoletes":["RFC2278"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2978","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2979":{"rfcNumber":"RFC2979","href":"https://www.rfc-editor.org/rfc/rfc2979","title":"Behavior of and Requirements for Internet Firewalls","authors":["N. Freed"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc298":{"aliasOf":"rfc0298"},"rfc2980":{"rfcNumber":"RFC2980","href":"https://www.rfc-editor.org/rfc/rfc2980","title":"Common NNTP Extensions","authors":["S. Barber"],"rawDate":"2000-10","status":"Informational","updatedBy":["RFC3977","RFC4643","RFC4644","RFC6048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2981":{"rfcNumber":"RFC2981","href":"https://www.rfc-editor.org/rfc/rfc2981","title":"Event MIB","authors":["R. Kavasseri, Ed."],"rawDate":"2000-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2981","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2982":{"rfcNumber":"RFC2982","href":"https://www.rfc-editor.org/rfc/rfc2982","title":"Distributed Management Expression MIB","authors":["R. Kavasseri, Ed."],"rawDate":"2000-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2983":{"rfcNumber":"RFC2983","href":"https://www.rfc-editor.org/rfc/rfc2983","title":"Differentiated Services and Tunnels","authors":["D. Black"],"rawDate":"2000-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2984":{"rfcNumber":"RFC2984","href":"https://www.rfc-editor.org/rfc/rfc2984","title":"Use of the CAST-128 Encryption Algorithm in CMS","authors":["C. Adams"],"rawDate":"2000-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2985":{"rfcNumber":"RFC2985","href":"https://www.rfc-editor.org/rfc/rfc2985","title":"PKCS #9: Selected Object Classes and Attribute Types Version 2.0","authors":["M. Nystrom","B. Kaliski"],"rawDate":"2000-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2985","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2986":{"rfcNumber":"RFC2986","href":"https://www.rfc-editor.org/rfc/rfc2986","title":"PKCS #10: Certification Request Syntax Specification Version 1.7","authors":["M. Nystrom","B. Kaliski"],"rawDate":"2000-11","status":"Informational","updatedBy":["RFC5967"],"obsoletes":["RFC2314"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2987":{"rfcNumber":"RFC2987","href":"https://www.rfc-editor.org/rfc/rfc2987","title":"Registration of Charset and Languages Media Features Tags","authors":["P. Hoffman"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2988":{"rfcNumber":"RFC2988","href":"https://www.rfc-editor.org/rfc/rfc2988","title":"Computing TCP's Retransmission Timer","authors":["V. Paxson","M. Allman"],"rawDate":"2000-11","status":"Proposed Standard","obsoletedBy":["RFC6298"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=2988","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2989":{"rfcNumber":"RFC2989","href":"https://www.rfc-editor.org/rfc/rfc2989","title":"Criteria for Evaluating AAA Protocols for Network Access","authors":["B. Aboba","P. Calhoun","S. Glass","T. Hiller","P. McCann","H. Shiino","P. Walsh","G. Zorn","G. Dommety","C. Perkins","B. Patil","D. Mitton","S. Manning","M. Beadles","X. Chen","S. Sivalingham","A. Hameed","M. Munson","S. Jacobs","B. Lim","B. Hirschman","R. Hsu","H. Koo","M. Lipford","E. Campbell","Y. Xu","S. Baba","E. Jaques"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc299":{"aliasOf":"rfc0299"},"rfc2990":{"rfcNumber":"RFC2990","href":"https://www.rfc-editor.org/rfc/rfc2990","title":"Next Steps for the IP QoS Architecture","authors":["G. Huston"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2991":{"rfcNumber":"RFC2991","href":"https://www.rfc-editor.org/rfc/rfc2991","title":"Multipath Issues in Unicast and Multicast Next-Hop Selection","authors":["D. Thaler","C. Hopps"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2992":{"rfcNumber":"RFC2992","href":"https://www.rfc-editor.org/rfc/rfc2992","title":"Analysis of an Equal-Cost Multi-Path Algorithm","authors":["C. Hopps"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2993":{"rfcNumber":"RFC2993","href":"https://www.rfc-editor.org/rfc/rfc2993","title":"Architectural Implications of NAT","authors":["T. Hain"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2994":{"rfcNumber":"RFC2994","href":"https://www.rfc-editor.org/rfc/rfc2994","title":"A Description of the MISTY1 Encryption Algorithm","authors":["H. Ohta","M. Matsui"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2995":{"rfcNumber":"RFC2995","href":"https://www.rfc-editor.org/rfc/rfc2995","title":"Pre-Spirits Implementations of PSTN-initiated Services","authors":["H. Lu, Ed.","I. Faynberg","J. Voelker","M. Weissman","W. Zhang","S. Rhim","J. Hwang","S. Ago","S. Moeenuddin","S. Hadvani","S. Nyckelgard","J. Yoakum","L. Robart"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2996":{"rfcNumber":"RFC2996","href":"https://www.rfc-editor.org/rfc/rfc2996","title":"Format of the RSVP DCLASS Object","authors":["Y. Bernet"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2997":{"rfcNumber":"RFC2997","href":"https://www.rfc-editor.org/rfc/rfc2997","title":"Specification of the Null Service Type","authors":["Y. Bernet","A. Smith","B. Davie"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2998":{"rfcNumber":"RFC2998","href":"https://www.rfc-editor.org/rfc/rfc2998","title":"A Framework for Integrated Services Operation over Diffserv Networks","authors":["Y. Bernet","P. Ford","R. Yavatkar","F. Baker","L. Zhang","M. Speer","R. Braden","B. Davie","J. Wroclawski","E. Felstaine"],"rawDate":"2000-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc2999":{"rfcNumber":"RFC2999","href":"https://www.rfc-editor.org/rfc/rfc2999","title":"Request for Comments Summary RFC Numbers 2900-2999","authors":["S. Ginoza"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3":{"aliasOf":"rfc0003"},"rfc30":{"aliasOf":"rfc0030"},"rfc300":{"aliasOf":"rfc0300"},"rfc3000":{"rfcNumber":"RFC3000","href":"https://www.rfc-editor.org/rfc/rfc3000","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden","S. Ginoza","L. Shiota"],"rawDate":"2001-11","status":"Historic","obsoletedBy":["RFC3300"],"obsoletes":["RFC2900"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3001":{"rfcNumber":"RFC3001","href":"https://www.rfc-editor.org/rfc/rfc3001","title":"A URN Namespace of Object Identifiers","authors":["M. Mealling"],"rawDate":"2000-11","status":"Informational","obsoletedBy":["RFC3061"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3002":{"rfcNumber":"RFC3002","href":"https://www.rfc-editor.org/rfc/rfc3002","title":"Overview of 2000 IAB Wireless Internetworking Workshop","authors":["D. Mitzel"],"rawDate":"2000-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3003":{"rfcNumber":"RFC3003","href":"https://www.rfc-editor.org/rfc/rfc3003","title":"The audio/mpeg Media Type","authors":["M. Nilsson"],"rawDate":"2000-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3003","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3004":{"rfcNumber":"RFC3004","href":"https://www.rfc-editor.org/rfc/rfc3004","title":"The User Class Option for DHCP","authors":["G. Stump","R. Droms","Y. Gu","R. Vyaghrapuri","A. Demirtjis","B. Beser","J. Privat"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3005":{"rfcNumber":"RFC3005","href":"https://www.rfc-editor.org/rfc/rfc3005","title":"IETF Discussion List Charter","authors":["S. Harris"],"rawDate":"2000-11","status":"Best Current Practice","updatedBy":["RFC8717"],"obsoletedBy":["RFC9245"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3006":{"rfcNumber":"RFC3006","href":"https://www.rfc-editor.org/rfc/rfc3006","title":"Integrated Services in the Presence of Compressible Flows","authors":["B. Davie","C. Iturralde","D. Oran","S. Casner","J. Wroclawski"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3007":{"rfcNumber":"RFC3007","href":"https://www.rfc-editor.org/rfc/rfc3007","title":"Secure Domain Name System (DNS) Dynamic Update","authors":["B. Wellington"],"rawDate":"2000-11","status":"Proposed Standard","updates":["RFC2535","RFC2136"],"obsoletes":["RFC2137"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3008":{"rfcNumber":"RFC3008","href":"https://www.rfc-editor.org/rfc/rfc3008","title":"Domain Name System Security (DNSSEC) Signing Authority","authors":["B. Wellington"],"rawDate":"2000-11","status":"Proposed Standard","updatedBy":["RFC3658"],"obsoletedBy":["RFC4035","RFC4033","RFC4034"],"updates":["RFC2535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3009":{"rfcNumber":"RFC3009","href":"https://www.rfc-editor.org/rfc/rfc3009","title":"Registration of parityfec MIME types","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2000-11","status":"Proposed Standard","obsoletedBy":["RFC5109"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc301":{"aliasOf":"rfc0301"},"rfc3010":{"rfcNumber":"RFC3010","href":"https://www.rfc-editor.org/rfc/rfc3010","title":"NFS version 4 Protocol","authors":["S. Shepler","B. Callaghan","D. Robinson","R. Thurlow","C. Beame","M. Eisler","D. Noveck"],"rawDate":"2000-12","status":"Proposed Standard","obsoletedBy":["RFC3530"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3010","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3011":{"rfcNumber":"RFC3011","href":"https://www.rfc-editor.org/rfc/rfc3011","title":"The IPv4 Subnet Selection Option for DHCP","authors":["G. Waters"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3012":{"rfcNumber":"RFC3012","href":"https://www.rfc-editor.org/rfc/rfc3012","title":"Mobile IPv4 Challenge/Response Extensions","authors":["C. Perkins","P. Calhoun"],"rawDate":"2000-11","status":"Proposed Standard","obsoletedBy":["RFC4721"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3013":{"rfcNumber":"RFC3013","href":"https://www.rfc-editor.org/rfc/rfc3013","title":"Recommended Internet Service Provider Security Services and Procedures","authors":["T. Killalea"],"rawDate":"2000-11","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3014":{"rfcNumber":"RFC3014","href":"https://www.rfc-editor.org/rfc/rfc3014","title":"Notification Log MIB","authors":["R. Kavasseri"],"rawDate":"2000-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3015":{"rfcNumber":"RFC3015","href":"https://www.rfc-editor.org/rfc/rfc3015","title":"Megaco Protocol Version 1.0","authors":["F. Cuervo","N. Greene","A. Rayhan","C. Huitema","B. Rosen","J. Segers"],"rawDate":"2000-11","status":"Proposed Standard","obsoletedBy":["RFC3525"],"obsoletes":["RFC2885","RFC2886"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3015","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3016":{"rfcNumber":"RFC3016","href":"https://www.rfc-editor.org/rfc/rfc3016","title":"RTP Payload Format for MPEG-4 Audio/Visual Streams","authors":["Y. Kikuchi","T. Nomura","S. Fukunaga","Y. Matsui","H. Kimata"],"rawDate":"2000-11","status":"Proposed Standard","obsoletedBy":["RFC6416"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3017":{"rfcNumber":"RFC3017","href":"https://www.rfc-editor.org/rfc/rfc3017","title":"XML DTD for Roaming Access Phone Book","authors":["M. Riegel","G. Zorn"],"rawDate":"2000-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3018":{"rfcNumber":"RFC3018","href":"https://www.rfc-editor.org/rfc/rfc3018","title":"Unified Memory Space Protocol Specification","authors":["A. Bogdanov"],"rawDate":"2000-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3019":{"rfcNumber":"RFC3019","href":"https://www.rfc-editor.org/rfc/rfc3019","title":"IP Version 6 Management Information Base for The Multicast Listener Discovery Protocol","authors":["B. Haberman","R. Worzella"],"rawDate":"2001-01","status":"Proposed Standard","obsoletedBy":["RFC5519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc302":{"aliasOf":"rfc0302"},"rfc3020":{"rfcNumber":"RFC3020","href":"https://www.rfc-editor.org/rfc/rfc3020","title":"Definitions of Managed Objects for Monitoring and Controlling the UNI/NNI Multilink Frame Relay Function","authors":["P. Pate","B. Lynch","K. Rehbehn"],"rawDate":"2000-12","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3021":{"rfcNumber":"RFC3021","href":"https://www.rfc-editor.org/rfc/rfc3021","title":"Using 31-Bit Prefixes on IPv4 Point-to-Point Links","authors":["A. Retana","R. White","V. Fuller","D. McPherson"],"rawDate":"2000-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3022":{"rfcNumber":"RFC3022","href":"https://www.rfc-editor.org/rfc/rfc3022","title":"Traditional IP Network Address Translator (Traditional NAT)","authors":["P. Srisuresh","K. Egevang"],"rawDate":"2001-01","status":"Informational","obsoletes":["RFC1631"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3022","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3023":{"rfcNumber":"RFC3023","href":"https://www.rfc-editor.org/rfc/rfc3023","title":"XML Media Types","authors":["M. Murata","S. St. Laurent","D. Kohn"],"rawDate":"2001-01","status":"Proposed Standard","updatedBy":["RFC6839"],"obsoletedBy":["RFC7303"],"updates":["RFC2048"],"obsoletes":["RFC2376"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3023","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3024":{"rfcNumber":"RFC3024","href":"https://www.rfc-editor.org/rfc/rfc3024","title":"Reverse Tunneling for Mobile IP, revised","authors":["G. Montenegro, Ed."],"rawDate":"2001-01","status":"Proposed Standard","obsoletes":["RFC2344"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3024","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3025":{"rfcNumber":"RFC3025","href":"https://www.rfc-editor.org/rfc/rfc3025","title":"Mobile IP Vendor/Organization-Specific Extensions","authors":["G. Dommety","K. Leung"],"rawDate":"2001-02","status":"Proposed Standard","obsoletedBy":["RFC3115"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3026":{"rfcNumber":"RFC3026","href":"https://www.rfc-editor.org/rfc/rfc3026","title":"Liaison to IETF/ISOC on ENUM","authors":["R. Blane"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3027":{"rfcNumber":"RFC3027","href":"https://www.rfc-editor.org/rfc/rfc3027","title":"Protocol Complications with the IP Network Address Translator","authors":["M. Holdrege","P. Srisuresh"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3028":{"rfcNumber":"RFC3028","href":"https://www.rfc-editor.org/rfc/rfc3028","title":"Sieve: A Mail Filtering Language","authors":["T. Showalter"],"rawDate":"2001-01","status":"Proposed Standard","obsoletedBy":["RFC5228","RFC5429"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3028","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3029":{"rfcNumber":"RFC3029","href":"https://www.rfc-editor.org/rfc/rfc3029","title":"Internet X.509 Public Key Infrastructure Data Validation and Certification Server Protocols","authors":["C. Adams","P. Sylvester","M. Zolotarev","R. Zuccherato"],"rawDate":"2001-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3029","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc303":{"aliasOf":"rfc0303"},"rfc3030":{"rfcNumber":"RFC3030","href":"https://www.rfc-editor.org/rfc/rfc3030","title":"SMTP Service Extensions for Transmission of Large and Binary MIME Messages","authors":["G. Vaudreuil"],"rawDate":"2000-12","status":"Proposed Standard","obsoletes":["RFC1830"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3030","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3031":{"rfcNumber":"RFC3031","href":"https://www.rfc-editor.org/rfc/rfc3031","title":"Multiprotocol Label Switching Architecture","authors":["E. Rosen","A. Viswanathan","R. Callon"],"rawDate":"2001-01","status":"Proposed Standard","updatedBy":["RFC6178","RFC6790"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3031","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3032":{"rfcNumber":"RFC3032","href":"https://www.rfc-editor.org/rfc/rfc3032","title":"MPLS Label Stack Encoding","authors":["E. Rosen","D. Tappan","G. Fedorkow","Y. Rekhter","D. Farinacci","T. Li","A. Conta"],"rawDate":"2001-01","status":"Proposed Standard","updatedBy":["RFC3443","RFC4182","RFC5332","RFC3270","RFC5129","RFC5462","RFC5586","RFC7274","RFC9017"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3032","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3033":{"rfcNumber":"RFC3033","href":"https://www.rfc-editor.org/rfc/rfc3033","title":"The Assignment of the Information Field and Protocol Identifier in the Q.2941 Generic Identifier and Q.2957 User-to-user Signaling for the Internet Protocol","authors":["M. Suzuki"],"rawDate":"2001-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3034":{"rfcNumber":"RFC3034","href":"https://www.rfc-editor.org/rfc/rfc3034","title":"Use of Label Switching on Frame Relay Networks Specification","authors":["A. Conta","P. Doolan","A. Malis"],"rawDate":"2001-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3035":{"rfcNumber":"RFC3035","href":"https://www.rfc-editor.org/rfc/rfc3035","title":"MPLS using LDP and ATM VC Switching","authors":["B. Davie","J. Lawrence","K. McCloghrie","E. Rosen","G. Swallow","Y. Rekhter","P. Doolan"],"rawDate":"2001-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3036":{"rfcNumber":"RFC3036","href":"https://www.rfc-editor.org/rfc/rfc3036","title":"LDP Specification","authors":["L. Andersson","P. Doolan","N. Feldman","A. Fredette","B. Thomas"],"rawDate":"2001-01","status":"Proposed Standard","obsoletedBy":["RFC5036"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3036","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3037":{"rfcNumber":"RFC3037","href":"https://www.rfc-editor.org/rfc/rfc3037","title":"LDP Applicability","authors":["B. Thomas","E. Gray"],"rawDate":"2001-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3037","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3038":{"rfcNumber":"RFC3038","href":"https://www.rfc-editor.org/rfc/rfc3038","title":"VCID Notification over ATM link for LDP","authors":["K. Nagami","Y. Katsube","N. Demizu","H. Esaki","P. Doolan"],"rawDate":"2001-01","status":"Proposed Standard","updatedBy":["RFC7274"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3039":{"rfcNumber":"RFC3039","href":"https://www.rfc-editor.org/rfc/rfc3039","title":"Internet X.509 Public Key Infrastructure Qualified Certificates Profile","authors":["S. Santesson","W. Polk","P. Barzin","M. Nystrom"],"rawDate":"2001-01","status":"Proposed Standard","obsoletedBy":["RFC3739"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc304":{"aliasOf":"rfc0304"},"rfc3040":{"rfcNumber":"RFC3040","href":"https://www.rfc-editor.org/rfc/rfc3040","title":"Internet Web Replication and Caching Taxonomy","authors":["I. Cooper","I. Melve","G. Tomlinson"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3041":{"rfcNumber":"RFC3041","href":"https://www.rfc-editor.org/rfc/rfc3041","title":"Privacy Extensions for Stateless Address Autoconfiguration in IPv6","authors":["T. Narten","R. Draves"],"rawDate":"2001-01","status":"Proposed Standard","obsoletedBy":["RFC4941"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3041","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3042":{"rfcNumber":"RFC3042","href":"https://www.rfc-editor.org/rfc/rfc3042","title":"Enhancing TCP's Loss Recovery Using Limited Transmit","authors":["M. Allman","H. Balakrishnan","S. Floyd"],"rawDate":"2001-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3043":{"rfcNumber":"RFC3043","href":"https://www.rfc-editor.org/rfc/rfc3043","title":"The Network Solutions Personal Internet Name (PIN): A URN Namespace for People and Organizations","authors":["M. Mealling"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3044":{"rfcNumber":"RFC3044","href":"https://www.rfc-editor.org/rfc/rfc3044","title":"Using The ISSN (International Serial Standard Number) as URN (Uniform Resource Names) within an ISSN-URN Namespace","authors":["S. Rozenfeld"],"rawDate":"2001-01","status":"Historic","obsoletedBy":["RFC8254"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3045":{"rfcNumber":"RFC3045","href":"https://www.rfc-editor.org/rfc/rfc3045","title":"Storing Vendor Information in the LDAP root DSE","authors":["M. Meredith"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3046":{"rfcNumber":"RFC3046","href":"https://www.rfc-editor.org/rfc/rfc3046","title":"DHCP Relay Agent Information Option","authors":["M. Patrick"],"rawDate":"2001-01","status":"Proposed Standard","updatedBy":["RFC6607"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3047":{"rfcNumber":"RFC3047","href":"https://www.rfc-editor.org/rfc/rfc3047","title":"RTP Payload Format for ITU-T Recommendation G.722.1","authors":["P. Luthi"],"rawDate":"2001-01","status":"Proposed Standard","obsoletedBy":["RFC5577"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3047","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3048":{"rfcNumber":"RFC3048","href":"https://www.rfc-editor.org/rfc/rfc3048","title":"Reliable Multicast Transport Building Blocks for One-to-Many Bulk-Data Transfer","authors":["B. Whetten","L. Vicisano","R. Kermode","M. Handley","S. Floyd","M. Luby"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3049":{"rfcNumber":"RFC3049","href":"https://www.rfc-editor.org/rfc/rfc3049","title":"TN3270E Service Location and Session Balancing","authors":["J. Naugle","K. Kasthurirangan","G. Ledford"],"rawDate":"2001-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc305":{"aliasOf":"rfc0305"},"rfc3050":{"rfcNumber":"RFC3050","href":"https://www.rfc-editor.org/rfc/rfc3050","title":"Common Gateway Interface for SIP","authors":["J. Lennox","H. Schulzrinne","J. Rosenberg"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3051":{"rfcNumber":"RFC3051","href":"https://www.rfc-editor.org/rfc/rfc3051","title":"IP Payload Compression Using ITU-T V.44 Packet Method","authors":["J. Heath","J. Border"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3052":{"rfcNumber":"RFC3052","href":"https://www.rfc-editor.org/rfc/rfc3052","title":"Service Management Architectures Issues and Review","authors":["M. Eder","S. Nag"],"rawDate":"2001-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3052","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3053":{"rfcNumber":"RFC3053","href":"https://www.rfc-editor.org/rfc/rfc3053","title":"IPv6 Tunnel Broker","authors":["A. Durand","P. Fasano","I. Guardini","D. Lento"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3054":{"rfcNumber":"RFC3054","href":"https://www.rfc-editor.org/rfc/rfc3054","title":"Megaco IP Phone Media Gateway Application Profile","authors":["P. Blatherwick","R. Bell","P. Holland"],"rawDate":"2001-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3055":{"rfcNumber":"RFC3055","href":"https://www.rfc-editor.org/rfc/rfc3055","title":"Management Information Base for the PINT Services Architecture","authors":["M. Krishnaswamy","D. Romascanu"],"rawDate":"2001-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3056":{"rfcNumber":"RFC3056","href":"https://www.rfc-editor.org/rfc/rfc3056","title":"Connection of IPv6 Domains via IPv4 Clouds","authors":["B. Carpenter","K. Moore"],"rawDate":"2001-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3056","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3057":{"rfcNumber":"RFC3057","href":"https://www.rfc-editor.org/rfc/rfc3057","title":"ISDN Q.921-User Adaptation Layer","authors":["K. Morneault","S. Rengasami","M. Kalla","G. Sidebottom"],"rawDate":"2001-02","status":"Proposed Standard","updatedBy":["RFC3807"],"obsoletedBy":["RFC4233"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3058":{"rfcNumber":"RFC3058","href":"https://www.rfc-editor.org/rfc/rfc3058","title":"Use of the IDEA Encryption Algorithm in CMS","authors":["S. Teiwes","P. Hartmann","D. Kuenzi"],"rawDate":"2001-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3058","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3059":{"rfcNumber":"RFC3059","href":"https://www.rfc-editor.org/rfc/rfc3059","title":"Attribute List Extension for the Service Location Protocol","authors":["E. Guttman"],"rawDate":"2001-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc306":{"aliasOf":"rfc0306"},"rfc3060":{"rfcNumber":"RFC3060","href":"https://www.rfc-editor.org/rfc/rfc3060","title":"Policy Core Information Model -- Version 1 Specification","authors":["B. Moore","E. Ellesson","J. Strassner","A. Westerinen"],"rawDate":"2001-02","status":"Proposed Standard","updatedBy":["RFC3460"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3061":{"rfcNumber":"RFC3061","href":"https://www.rfc-editor.org/rfc/rfc3061","title":"A URN Namespace of Object Identifiers","authors":["M. Mealling"],"rawDate":"2001-02","status":"Informational","obsoletes":["RFC3001"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3061","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3062":{"rfcNumber":"RFC3062","href":"https://www.rfc-editor.org/rfc/rfc3062","title":"LDAP Password Modify Extended Operation","authors":["K. Zeilenga"],"rawDate":"2001-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3062","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3063":{"rfcNumber":"RFC3063","href":"https://www.rfc-editor.org/rfc/rfc3063","title":"MPLS Loop Prevention Mechanism","authors":["Y. Ohba","Y. Katsube","E. Rosen","P. Doolan"],"rawDate":"2001-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3064":{"rfcNumber":"RFC3064","href":"https://www.rfc-editor.org/rfc/rfc3064","title":"MGCP CAS Packages","authors":["B. Foster"],"rawDate":"2001-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3065":{"rfcNumber":"RFC3065","href":"https://www.rfc-editor.org/rfc/rfc3065","title":"Autonomous System Confederations for BGP","authors":["P. Traina","D. McPherson","J. Scudder"],"rawDate":"2001-02","status":"Proposed Standard","obsoletedBy":["RFC5065"],"obsoletes":["RFC1965"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3065","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3066":{"rfcNumber":"RFC3066","href":"https://www.rfc-editor.org/rfc/rfc3066","title":"Tags for the Identification of Languages","authors":["H. Alvestrand"],"rawDate":"2001-01","status":"Best Current Practice","obsoletedBy":["RFC4646","RFC4647"],"obsoletes":["RFC1766"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3066","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3067":{"rfcNumber":"RFC3067","href":"https://www.rfc-editor.org/rfc/rfc3067","title":"TERENA'S Incident Object Description and Exchange Format Requirements","authors":["J. Arvidsson","A. Cormack","Y. Demchenko","J. Meijer"],"rawDate":"2001-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3068":{"rfcNumber":"RFC3068","href":"https://www.rfc-editor.org/rfc/rfc3068","title":"An Anycast Prefix for 6to4 Relay Routers","authors":["C. Huitema"],"rawDate":"2001-06","status":"Historic","obsoletedBy":["RFC7526"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3069":{"rfcNumber":"RFC3069","href":"https://www.rfc-editor.org/rfc/rfc3069","title":"VLAN Aggregation for Efficient IP Address Allocation","authors":["D. McPherson","B. Dykes"],"rawDate":"2001-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3069","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc307":{"aliasOf":"rfc0307"},"rfc3070":{"rfcNumber":"RFC3070","href":"https://www.rfc-editor.org/rfc/rfc3070","title":"Layer Two Tunneling Protocol (L2TP) over Frame Relay","authors":["V. Rawat","R. Tio","S. Nanji","R. Verma"],"rawDate":"2001-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3071":{"rfcNumber":"RFC3071","href":"https://www.rfc-editor.org/rfc/rfc3071","title":"Reflections on the DNS, RFC 1591, and Categories of Domains","authors":["J. Klensin"],"rawDate":"2001-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3072":{"rfcNumber":"RFC3072","href":"https://www.rfc-editor.org/rfc/rfc3072","title":"Structured Data Exchange Format (SDXF)","authors":["M. Wildgrube"],"rawDate":"2001-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3073":{"rfcNumber":"RFC3073","href":"https://www.rfc-editor.org/rfc/rfc3073","title":"Portable Font Resource (PFR) - application/font-tdpfr MIME Sub-type Registration","authors":["J. Collins"],"rawDate":"2001-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3074":{"rfcNumber":"RFC3074","href":"https://www.rfc-editor.org/rfc/rfc3074","title":"DHC Load Balancing Algorithm","authors":["B. Volz","S. Gonczi","T. Lemon","R. Stevens"],"rawDate":"2001-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3075":{"rfcNumber":"RFC3075","href":"https://www.rfc-editor.org/rfc/rfc3075","title":"XML-Signature Syntax and Processing","authors":["D. Eastlake 3rd","J. Reagle","D. Solo"],"rawDate":"2001-03","status":"Proposed Standard","obsoletedBy":["RFC3275"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3076":{"rfcNumber":"RFC3076","href":"https://www.rfc-editor.org/rfc/rfc3076","title":"Canonical XML Version 1.0","authors":["J. Boyer"],"rawDate":"2001-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3077":{"rfcNumber":"RFC3077","href":"https://www.rfc-editor.org/rfc/rfc3077","title":"A Link-Layer Tunneling Mechanism for Unidirectional Links","authors":["E. Duros","W. Dabbous","H. Izumiyama","N. Fujii","Y. Zhang"],"rawDate":"2001-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3078":{"rfcNumber":"RFC3078","href":"https://www.rfc-editor.org/rfc/rfc3078","title":"Microsoft Point-To-Point Encryption (MPPE) Protocol","authors":["G. Pall","G. Zorn"],"rawDate":"2001-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3079":{"rfcNumber":"RFC3079","href":"https://www.rfc-editor.org/rfc/rfc3079","title":"Deriving Keys for use with Microsoft Point-to-Point Encryption (MPPE)","authors":["G. Zorn"],"rawDate":"2001-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc308":{"aliasOf":"rfc0308"},"rfc3080":{"rfcNumber":"RFC3080","href":"https://www.rfc-editor.org/rfc/rfc3080","title":"The Blocks Extensible Exchange Protocol Core","authors":["M. Rose"],"rawDate":"2001-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3080","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3081":{"rfcNumber":"RFC3081","href":"https://www.rfc-editor.org/rfc/rfc3081","title":"Mapping the BEEP Core onto TCP","authors":["M. Rose"],"rawDate":"2001-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3082":{"rfcNumber":"RFC3082","href":"https://www.rfc-editor.org/rfc/rfc3082","title":"Notification and Subscription for SLP","authors":["J. Kempf","J. Goldschmidt"],"rawDate":"2001-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3083":{"rfcNumber":"RFC3083","href":"https://www.rfc-editor.org/rfc/rfc3083","title":"Baseline Privacy Interface Management Information Base for DOCSIS Compliant Cable Modems and Cable Modem Termination Systems","authors":["R. Woundy"],"rawDate":"2001-03","status":"Informational","updatedBy":["RFC9141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3083","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3084":{"rfcNumber":"RFC3084","href":"https://www.rfc-editor.org/rfc/rfc3084","title":"COPS Usage for Policy Provisioning (COPS-PR)","authors":["K. Chan","J. Seligson","D. Durham","S. Gai","K. McCloghrie","S. Herzog","F. Reichmeyer","R. Yavatkar","A. Smith"],"rawDate":"2001-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3085":{"rfcNumber":"RFC3085","href":"https://www.rfc-editor.org/rfc/rfc3085","title":"URN Namespace for NewsML Resources","authors":["A. Coates","D. Allen","D. Rivers-Moore"],"rawDate":"2001-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3086":{"rfcNumber":"RFC3086","href":"https://www.rfc-editor.org/rfc/rfc3086","title":"Definition of Differentiated Services Per Domain Behaviors and Rules for their Specification","authors":["K. Nichols","B. Carpenter"],"rawDate":"2001-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3087":{"rfcNumber":"RFC3087","href":"https://www.rfc-editor.org/rfc/rfc3087","title":"Control of Service Context using SIP Request-URI","authors":["B. Campbell","R. Sparks"],"rawDate":"2001-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3088":{"rfcNumber":"RFC3088","href":"https://www.rfc-editor.org/rfc/rfc3088","title":"OpenLDAP Root Service An experimental LDAP referral service","authors":["K. Zeilenga"],"rawDate":"2001-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3089":{"rfcNumber":"RFC3089","href":"https://www.rfc-editor.org/rfc/rfc3089","title":"A SOCKS-based IPv6/IPv4 Gateway Mechanism","authors":["H. Kitamura"],"rawDate":"2001-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc309":{"aliasOf":"rfc0309"},"rfc3090":{"rfcNumber":"RFC3090","href":"https://www.rfc-editor.org/rfc/rfc3090","title":"DNS Security Extension Clarification on Zone Status","authors":["E. Lewis"],"rawDate":"2001-03","status":"Proposed Standard","updatedBy":["RFC3658"],"obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC2535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3091":{"rfcNumber":"RFC3091","href":"https://www.rfc-editor.org/rfc/rfc3091","title":"Pi Digit Generation Protocol","authors":["H. Kennedy"],"rawDate":"2001-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3091","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3092":{"rfcNumber":"RFC3092","href":"https://www.rfc-editor.org/rfc/rfc3092","title":"Etymology of \"Foo\"","authors":["D. Eastlake 3rd","C. Manros","E. Raymond"],"rawDate":"2001-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3092","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3093":{"rfcNumber":"RFC3093","href":"https://www.rfc-editor.org/rfc/rfc3093","title":"Firewall Enhancement Protocol (FEP)","authors":["M. Gaynor","S. Bradner"],"rawDate":"2001-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3094":{"rfcNumber":"RFC3094","href":"https://www.rfc-editor.org/rfc/rfc3094","title":"Tekelec's Transport Adapter Layer Interface","authors":["D. Sprague","R. Benedyk","D. Brendes","J. Keller"],"rawDate":"2001-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3095":{"rfcNumber":"RFC3095","href":"https://www.rfc-editor.org/rfc/rfc3095","title":"RObust Header Compression (ROHC): Framework and four profiles: RTP, UDP, ESP, and uncompressed","authors":["C. Bormann","C. Burmeister","M. Degermark","H. Fukushima","H. Hannu","L-E. Jonsson","R. Hakenberg","T. Koren","K. Le","Z. Liu","A. Martensson","A. Miyazaki","K. Svanbro","T. Wiebke","T. Yoshimura","H. Zheng"],"rawDate":"2001-07","status":"Proposed Standard","updatedBy":["RFC3759","RFC4815"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3096":{"rfcNumber":"RFC3096","href":"https://www.rfc-editor.org/rfc/rfc3096","title":"Requirements for robust IP/UDP/RTP header compression","authors":["M. Degermark, Ed."],"rawDate":"2001-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3097":{"rfcNumber":"RFC3097","href":"https://www.rfc-editor.org/rfc/rfc3097","title":"RSVP Cryptographic Authentication -- Updated Message Type Value","authors":["R. Braden","L. Zhang"],"rawDate":"2001-04","status":"Proposed Standard","updates":["RFC2747"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3098":{"rfcNumber":"RFC3098","href":"https://www.rfc-editor.org/rfc/rfc3098","title":"How to Advertise Responsibly Using E-Mail and Newsgroups or - how NOT to $$$$$ MAKE ENEMIES FAST! $$$$$","authors":["T. Gavin","D. Eastlake 3rd","S. Hambridge"],"rawDate":"2001-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3099":{"rfcNumber":"RFC3099","href":"https://www.rfc-editor.org/rfc/rfc3099","title":"Request for Comments Summary RFC Numbers 3000-3099","authors":["S. Ginoza"],"rawDate":"2001-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc31":{"aliasOf":"rfc0031"},"rfc310":{"aliasOf":"rfc0310"},"rfc3101":{"rfcNumber":"RFC3101","href":"https://www.rfc-editor.org/rfc/rfc3101","title":"The OSPF Not-So-Stubby Area (NSSA) Option","authors":["P. Murphy"],"rawDate":"2003-01","status":"Proposed Standard","obsoletes":["RFC1587"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3101","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3102":{"rfcNumber":"RFC3102","href":"https://www.rfc-editor.org/rfc/rfc3102","title":"Realm Specific IP: Framework","authors":["M. Borella","J. Lo","D. Grabelsky","G. Montenegro"],"rawDate":"2001-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3103":{"rfcNumber":"RFC3103","href":"https://www.rfc-editor.org/rfc/rfc3103","title":"Realm Specific IP: Protocol Specification","authors":["M. Borella","D. Grabelsky","J. Lo","K. Taniguchi"],"rawDate":"2001-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3104":{"rfcNumber":"RFC3104","href":"https://www.rfc-editor.org/rfc/rfc3104","title":"RSIP Support for End-to-end IPsec","authors":["G. Montenegro","M. Borella"],"rawDate":"2001-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3104","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3105":{"rfcNumber":"RFC3105","href":"https://www.rfc-editor.org/rfc/rfc3105","title":"Finding an RSIP Server with SLP","authors":["J. Kempf","G. Montenegro"],"rawDate":"2001-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3106":{"rfcNumber":"RFC3106","href":"https://www.rfc-editor.org/rfc/rfc3106","title":"ECML v1.1: Field Specifications for E-Commerce","authors":["D. Eastlake 3rd","T. Goldstein"],"rawDate":"2001-04","status":"Informational","updatedBy":["RFC4112"],"obsoletes":["RFC2706"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3107":{"rfcNumber":"RFC3107","href":"https://www.rfc-editor.org/rfc/rfc3107","title":"Carrying Label Information in BGP-4","authors":["Y. Rekhter","E. Rosen"],"rawDate":"2001-05","status":"Proposed Standard","updatedBy":["RFC6790"],"obsoletedBy":["RFC8277"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3107","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3108":{"rfcNumber":"RFC3108","href":"https://www.rfc-editor.org/rfc/rfc3108","title":"Conventions for the use of the Session Description Protocol (SDP) for ATM Bearer Connections","authors":["R. Kumar","M. Mostafa"],"rawDate":"2001-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3108","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3109":{"rfcNumber":"RFC3109","href":"https://www.rfc-editor.org/rfc/rfc3109","title":"Request to Move STD 39 to Historic Status","authors":["R. Braden","R. Bush","J. Klensin"],"rawDate":"2001-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc311":{"aliasOf":"rfc0311"},"rfc3110":{"rfcNumber":"RFC3110","href":"https://www.rfc-editor.org/rfc/rfc3110","title":"RSA/SHA-1 SIGs and RSA KEYs in the Domain Name System (DNS)","authors":["D. Eastlake 3rd"],"rawDate":"2001-05","status":"Proposed Standard","updatedBy":["RFC6944"],"obsoletes":["RFC2537"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3110","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3111":{"rfcNumber":"RFC3111","href":"https://www.rfc-editor.org/rfc/rfc3111","title":"Service Location Protocol Modifications for IPv6","authors":["E. Guttman"],"rawDate":"2001-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3112":{"rfcNumber":"RFC3112","href":"https://www.rfc-editor.org/rfc/rfc3112","title":"LDAP Authentication Password Schema","authors":["K. Zeilenga"],"rawDate":"2001-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3113":{"rfcNumber":"RFC3113","href":"https://www.rfc-editor.org/rfc/rfc3113","title":"3GPP-IETF Standardization Collaboration","authors":["K. Rosenbrock","R. Sanmugam","S. Bradner","J. Klensin"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3114":{"rfcNumber":"RFC3114","href":"https://www.rfc-editor.org/rfc/rfc3114","title":"Implementing Company Classification Policy with the S/MIME Security Label","authors":["W. Nicolls"],"rawDate":"2002-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3115":{"rfcNumber":"RFC3115","href":"https://www.rfc-editor.org/rfc/rfc3115","title":"Mobile IP Vendor/Organization-Specific Extensions","authors":["G. Dommety","K. Leung"],"rawDate":"2001-04","status":"Proposed Standard","obsoletes":["RFC3025"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3116":{"rfcNumber":"RFC3116","href":"https://www.rfc-editor.org/rfc/rfc3116","title":"Methodology for ATM Benchmarking","authors":["J. Dunn","C. Martin"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3117":{"rfcNumber":"RFC3117","href":"https://www.rfc-editor.org/rfc/rfc3117","title":"On the Design of Application Protocols","authors":["M. Rose"],"rawDate":"2001-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3118":{"rfcNumber":"RFC3118","href":"https://www.rfc-editor.org/rfc/rfc3118","title":"Authentication for DHCP Messages","authors":["R. Droms, Ed.","W. Arbaugh, Ed."],"rawDate":"2001-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3118","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3119":{"rfcNumber":"RFC3119","href":"https://www.rfc-editor.org/rfc/rfc3119","title":"A More Loss-Tolerant RTP Payload Format for MP3 Audio","authors":["R. Finlayson"],"rawDate":"2001-06","status":"Proposed Standard","obsoletedBy":["RFC5219"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3119","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc312":{"aliasOf":"rfc0312"},"rfc3120":{"rfcNumber":"RFC3120","href":"https://www.rfc-editor.org/rfc/rfc3120","title":"A URN Namespace for XML.org","authors":["K. Best","N. Walsh"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3121":{"rfcNumber":"RFC3121","href":"https://www.rfc-editor.org/rfc/rfc3121","title":"A URN Namespace for OASIS","authors":["K. Best","N. Walsh"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3122":{"rfcNumber":"RFC3122","href":"https://www.rfc-editor.org/rfc/rfc3122","title":"Extensions to IPv6 Neighbor Discovery for Inverse Discovery Specification","authors":["A. Conta"],"rawDate":"2001-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3122","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3123":{"rfcNumber":"RFC3123","href":"https://www.rfc-editor.org/rfc/rfc3123","title":"A DNS RR Type for Lists of Address Prefixes (APL RR)","authors":["P. Koch"],"rawDate":"2001-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3124":{"rfcNumber":"RFC3124","href":"https://www.rfc-editor.org/rfc/rfc3124","title":"The Congestion Manager","authors":["H. Balakrishnan","S. Seshan"],"rawDate":"2001-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3125":{"rfcNumber":"RFC3125","href":"https://www.rfc-editor.org/rfc/rfc3125","title":"Electronic Signature Policies","authors":["J. Ross","D. Pinkas","N. Pope"],"rawDate":"2001-09","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3125","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3126":{"rfcNumber":"RFC3126","href":"https://www.rfc-editor.org/rfc/rfc3126","title":"Electronic Signature Formats for long term electronic signatures","authors":["D. Pinkas","J. Ross","N. Pope"],"rawDate":"2001-09","status":"Informational","obsoletedBy":["RFC5126"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3126","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3127":{"rfcNumber":"RFC3127","href":"https://www.rfc-editor.org/rfc/rfc3127","title":"Authentication, Authorization, and Accounting: Protocol Evaluation","authors":["D. Mitton","M. St.Johns","S. Barkley","D. Nelson","B. Patil","M. Stevens","B. Wolff"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3128":{"rfcNumber":"RFC3128","href":"https://www.rfc-editor.org/rfc/rfc3128","title":"Protection Against a Variant of the Tiny Fragment Attack (RFC 1858)","authors":["I. Miller"],"rawDate":"2001-06","status":"Informational","updates":["RFC1858"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3129":{"rfcNumber":"RFC3129","href":"https://www.rfc-editor.org/rfc/rfc3129","title":"Requirements for Kerberized Internet Negotiation of Keys","authors":["M. Thomas"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc313":{"aliasOf":"rfc0313"},"rfc3130":{"rfcNumber":"RFC3130","href":"https://www.rfc-editor.org/rfc/rfc3130","title":"Notes from the State-Of-The-Technology: DNSSEC","authors":["E. Lewis"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3131":{"rfcNumber":"RFC3131","href":"https://www.rfc-editor.org/rfc/rfc3131","title":"3GPP2-IETF Standardization Collaboration","authors":["S. Bradner","P. Calhoun","H. Cuschieri","S. Dennett","G. Flynn","M. Lipford","M. McPheters"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3132":{"rfcNumber":"RFC3132","href":"https://www.rfc-editor.org/rfc/rfc3132","title":"Dormant Mode Host Alerting (\"IP Paging\") Problem Statement","authors":["J. Kempf"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3133":{"rfcNumber":"RFC3133","href":"https://www.rfc-editor.org/rfc/rfc3133","title":"Terminology for Frame Relay Benchmarking","authors":["J. Dunn","C. Martin"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3134":{"rfcNumber":"RFC3134","href":"https://www.rfc-editor.org/rfc/rfc3134","title":"Terminology for ATM ABR Benchmarking","authors":["J. Dunn","C. Martin"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3135":{"rfcNumber":"RFC3135","href":"https://www.rfc-editor.org/rfc/rfc3135","title":"Performance Enhancing Proxies Intended to Mitigate Link-Related Degradations","authors":["J. Border","M. Kojo","J. Griner","G. Montenegro","Z. Shelby"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3136":{"rfcNumber":"RFC3136","href":"https://www.rfc-editor.org/rfc/rfc3136","title":"The SPIRITS Architecture","authors":["L. Slutsman, Ed.","I. Faynberg","H. Lu","M. Weissman"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3137":{"rfcNumber":"RFC3137","href":"https://www.rfc-editor.org/rfc/rfc3137","title":"OSPF Stub Router Advertisement","authors":["A. Retana","L. Nguyen","R. White","A. Zinin","D. McPherson"],"rawDate":"2001-06","status":"Informational","obsoletedBy":["RFC6987"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3138":{"rfcNumber":"RFC3138","href":"https://www.rfc-editor.org/rfc/rfc3138","title":"Extended Assignments in 233/8","authors":["D. Meyer"],"rawDate":"2001-06","status":"Informational","obsoletedBy":["RFC5771"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3139":{"rfcNumber":"RFC3139","href":"https://www.rfc-editor.org/rfc/rfc3139","title":"Requirements for Configuration Management of IP-based Networks","authors":["L. Sanchez","K. McCloghrie","J. Saperia"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc314":{"aliasOf":"rfc0314"},"rfc3140":{"rfcNumber":"RFC3140","href":"https://www.rfc-editor.org/rfc/rfc3140","title":"Per Hop Behavior Identification Codes","authors":["D. Black","S. Brim","B. Carpenter","F. Le Faucheur"],"rawDate":"2001-06","status":"Proposed Standard","obsoletes":["RFC2836"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3141":{"rfcNumber":"RFC3141","href":"https://www.rfc-editor.org/rfc/rfc3141","title":"CDMA2000 Wireless Data Requirements for AAA","authors":["T. Hiller","P. Walsh","X. Chen","M. Munson","G. Dommety","S. Sivalingham","B. Lim","P. McCann","H. Shiino","B. Hirschman","S. Manning","R. Hsu","H. Koo","M. Lipford","P. Calhoun","C. Lo","E. Jaques","E. Campbell","Y. Xu","S. Baba","T. Ayaki","T. Seki","A. Hameed"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3142":{"rfcNumber":"RFC3142","href":"https://www.rfc-editor.org/rfc/rfc3142","title":"An IPv6-to-IPv4 Transport Relay Translator","authors":["J. Hagino","K. Yamamoto"],"rawDate":"2001-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3143":{"rfcNumber":"RFC3143","href":"https://www.rfc-editor.org/rfc/rfc3143","title":"Known HTTP Proxy/Caching Problems","authors":["I. Cooper","J. Dilley"],"rawDate":"2001-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3143","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3144":{"rfcNumber":"RFC3144","href":"https://www.rfc-editor.org/rfc/rfc3144","title":"Remote Monitoring MIB Extensions for Interface Parameters Monitoring","authors":["D. Romascanu"],"rawDate":"2001-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3145":{"rfcNumber":"RFC3145","href":"https://www.rfc-editor.org/rfc/rfc3145","title":"L2TP Disconnect Cause Information","authors":["R. Verma","M. Verma","J. Carlson"],"rawDate":"2001-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3146":{"rfcNumber":"RFC3146","href":"https://www.rfc-editor.org/rfc/rfc3146","title":"Transmission of IPv6 Packets over IEEE 1394 Networks","authors":["K. Fujisawa","A. Onoe"],"rawDate":"2001-10","status":"Proposed Standard","updatedBy":["RFC8064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3147":{"rfcNumber":"RFC3147","href":"https://www.rfc-editor.org/rfc/rfc3147","title":"Generic Routing Encapsulation over CLNS Networks","authors":["P. Christian"],"rawDate":"2001-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3148":{"rfcNumber":"RFC3148","href":"https://www.rfc-editor.org/rfc/rfc3148","title":"A Framework for Defining Empirical Bulk Transfer Capacity Metrics","authors":["M. Mathis","M. Allman"],"rawDate":"2001-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3149":{"rfcNumber":"RFC3149","href":"https://www.rfc-editor.org/rfc/rfc3149","title":"MGCP Business Phone Packages","authors":["A. Srinath","G. Levendel","K. Fritz","R. Kalyanaram"],"rawDate":"2001-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc315":{"aliasOf":"rfc0315"},"rfc3150":{"rfcNumber":"RFC3150","href":"https://www.rfc-editor.org/rfc/rfc3150","title":"End-to-end Performance Implications of Slow Links","authors":["S. Dawkins","G. Montenegro","M. Kojo","V. Magret"],"rawDate":"2001-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3151":{"rfcNumber":"RFC3151","href":"https://www.rfc-editor.org/rfc/rfc3151","title":"A URN Namespace for Public Identifiers","authors":["N. Walsh","J. Cowan","P. Grosso"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3152":{"rfcNumber":"RFC3152","href":"https://www.rfc-editor.org/rfc/rfc3152","title":"Delegation of IP6.ARPA","authors":["R. Bush"],"rawDate":"2001-08","status":"Best Current Practice","obsoletedBy":["RFC3596"],"updates":["RFC2874","RFC2772","RFC2766","RFC2553","RFC1886"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3153":{"rfcNumber":"RFC3153","href":"https://www.rfc-editor.org/rfc/rfc3153","title":"PPP Multiplexing","authors":["R. Pazhyannur","I. Ali","C. Fox"],"rawDate":"2001-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3154":{"rfcNumber":"RFC3154","href":"https://www.rfc-editor.org/rfc/rfc3154","title":"Requirements and Functional Architecture for an IP Host Alerting Protocol","authors":["J. Kempf","C. Castelluccia","P. Mutaf","N. Nakajima","Y. Ohba","R. Ramjee","Y. Saifullah","B. Sarikaya","X. Xu"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3155":{"rfcNumber":"RFC3155","href":"https://www.rfc-editor.org/rfc/rfc3155","title":"End-to-end Performance Implications of Links with Errors","authors":["S. Dawkins","G. Montenegro","M. Kojo","V. Magret","N. Vaidya"],"rawDate":"2001-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3156":{"rfcNumber":"RFC3156","href":"https://www.rfc-editor.org/rfc/rfc3156","title":"MIME Security with OpenPGP","authors":["M. Elkins","D. Del Torto","R. Levien","T. Roessler"],"rawDate":"2001-08","status":"Proposed Standard","updates":["RFC2015"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3156","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3157":{"rfcNumber":"RFC3157","href":"https://www.rfc-editor.org/rfc/rfc3157","title":"Securely Available Credentials - Requirements","authors":["A. Arsenault","S. Farrell"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3158":{"rfcNumber":"RFC3158","href":"https://www.rfc-editor.org/rfc/rfc3158","title":"RTP Testing Strategies","authors":["C. Perkins","J. Rosenberg","H. Schulzrinne"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3159":{"rfcNumber":"RFC3159","href":"https://www.rfc-editor.org/rfc/rfc3159","title":"Structure of Policy Provisioning Information (SPPI)","authors":["K. McCloghrie","M. Fine","J. Seligson","K. Chan","S. Hahn","R. Sahita","A. Smith","F. Reichmeyer"],"rawDate":"2001-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc316":{"aliasOf":"rfc0316"},"rfc3160":{"rfcNumber":"RFC3160","href":"https://www.rfc-editor.org/rfc/rfc3160","title":"The Tao of IETF - A Novice's Guide to the Internet Engineering Task Force","authors":["S. Harris"],"rawDate":"2001-08","status":"Informational","obsoletedBy":["RFC4677"],"obsoletes":["RFC1718"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3161":{"rfcNumber":"RFC3161","href":"https://www.rfc-editor.org/rfc/rfc3161","title":"Internet X.509 Public Key Infrastructure Time-Stamp Protocol (TSP)","authors":["C. Adams","P. Cain","D. Pinkas","R. Zuccherato"],"rawDate":"2001-08","status":"Proposed Standard","updatedBy":["RFC5816"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3161","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3162":{"rfcNumber":"RFC3162","href":"https://www.rfc-editor.org/rfc/rfc3162","title":"RADIUS and IPv6","authors":["B. Aboba","G. Zorn","D. Mitton"],"rawDate":"2001-08","status":"Proposed Standard","updatedBy":["RFC8044"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3162","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3163":{"rfcNumber":"RFC3163","href":"https://www.rfc-editor.org/rfc/rfc3163","title":"ISO/IEC 9798-3 Authentication SASL Mechanism","authors":["R. Zuccherato","M. Nystrom"],"rawDate":"2001-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3164":{"rfcNumber":"RFC3164","href":"https://www.rfc-editor.org/rfc/rfc3164","title":"The BSD Syslog Protocol","authors":["C. Lonvick"],"rawDate":"2001-08","status":"Informational","obsoletedBy":["RFC5424"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3165":{"rfcNumber":"RFC3165","href":"https://www.rfc-editor.org/rfc/rfc3165","title":"Definitions of Managed Objects for the Delegation of Management Scripts","authors":["D. Levi","J. Schoenwaelder"],"rawDate":"2001-08","status":"Proposed Standard","obsoletes":["RFC2592"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3165","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3166":{"rfcNumber":"RFC3166","href":"https://www.rfc-editor.org/rfc/rfc3166","title":"Request to Move RFC 1403 to Historic Status","authors":["D. Meyer","J. Scudder"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3167":{"rfcNumber":"RFC3167","href":"https://www.rfc-editor.org/rfc/rfc3167","title":"Request to Move RFC 1745 to Historic Status","authors":["D. Meyer","J. Scudder"],"rawDate":"2001-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3168":{"rfcNumber":"RFC3168","href":"https://www.rfc-editor.org/rfc/rfc3168","title":"The Addition of Explicit Congestion Notification (ECN) to IP","authors":["K. Ramakrishnan","S. Floyd","D. Black"],"rawDate":"2001-09","status":"Proposed Standard","updatedBy":["RFC4301","RFC6040","RFC8311"],"updates":["RFC2003","RFC2474","RFC2401","RFC0793"],"obsoletes":["RFC2481"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3168","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3169":{"rfcNumber":"RFC3169","href":"https://www.rfc-editor.org/rfc/rfc3169","title":"Criteria for Evaluating Network Access Server Protocols","authors":["M. Beadles","D. Mitton"],"rawDate":"2001-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc317":{"aliasOf":"rfc0317"},"rfc3170":{"rfcNumber":"RFC3170","href":"https://www.rfc-editor.org/rfc/rfc3170","title":"IP Multicast Applications: Challenges and Solutions","authors":["B. Quinn","K. Almeroth"],"rawDate":"2001-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3171":{"rfcNumber":"RFC3171","href":"https://www.rfc-editor.org/rfc/rfc3171","title":"IANA Guidelines for IPv4 Multicast Address Assignments","authors":["Z. Albanna","K. Almeroth","D. Meyer","M. Schipper"],"rawDate":"2001-08","status":"Best Current Practice","obsoletedBy":["RFC5771"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3171","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3172":{"rfcNumber":"RFC3172","href":"https://www.rfc-editor.org/rfc/rfc3172","title":"Management Guidelines & Operational Requirements for the Address and Routing Parameter Area Domain (\"arpa\")","authors":["G. Huston, Ed."],"rawDate":"2001-09","status":"Best Current Practice","updatedBy":["RFC9120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3173":{"rfcNumber":"RFC3173","href":"https://www.rfc-editor.org/rfc/rfc3173","title":"IP Payload Compression Protocol (IPComp)","authors":["A. Shacham","B. Monsour","R. Pereira","M. Thomas"],"rawDate":"2001-09","status":"Proposed Standard","obsoletes":["RFC2393"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3174":{"rfcNumber":"RFC3174","href":"https://www.rfc-editor.org/rfc/rfc3174","title":"US Secure Hash Algorithm 1 (SHA1)","authors":["D. Eastlake 3rd","P. Jones"],"rawDate":"2001-09","status":"Informational","updatedBy":["RFC4634","RFC6234"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3174","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3175":{"rfcNumber":"RFC3175","href":"https://www.rfc-editor.org/rfc/rfc3175","title":"Aggregation of RSVP for IPv4 and IPv6 Reservations","authors":["F. Baker","C. Iturralde","F. Le Faucheur","B. Davie"],"rawDate":"2001-09","status":"Proposed Standard","updatedBy":["RFC5350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3176":{"rfcNumber":"RFC3176","href":"https://www.rfc-editor.org/rfc/rfc3176","title":"InMon Corporation's sFlow: A Method for Monitoring Traffic in Switched and Routed Networks","authors":["P. Phaal","S. Panchen","N. McKee"],"rawDate":"2001-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3177":{"rfcNumber":"RFC3177","href":"https://www.rfc-editor.org/rfc/rfc3177","title":"IAB/IESG Recommendations on IPv6 Address Allocations to Sites","authors":["IAB","IESG"],"rawDate":"2001-09","status":"Informational","obsoletedBy":["RFC6177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3178":{"rfcNumber":"RFC3178","href":"https://www.rfc-editor.org/rfc/rfc3178","title":"IPv6 Multihoming Support at Site Exit Routers","authors":["J. Hagino","H. Snyder"],"rawDate":"2001-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3179":{"rfcNumber":"RFC3179","href":"https://www.rfc-editor.org/rfc/rfc3179","title":"Script MIB Extensibility Protocol Version 1.1","authors":["J. Schoenwaelder","J. Quittek"],"rawDate":"2001-10","status":"Experimental","obsoletes":["RFC2593"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc318":{"aliasOf":"rfc0318"},"rfc3180":{"rfcNumber":"RFC3180","href":"https://www.rfc-editor.org/rfc/rfc3180","title":"GLOP Addressing in 233/8","authors":["D. Meyer","P. Lothberg"],"rawDate":"2001-09","status":"Best Current Practice","obsoletes":["RFC2770"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3180","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3181":{"rfcNumber":"RFC3181","href":"https://www.rfc-editor.org/rfc/rfc3181","title":"Signaled Preemption Priority Policy Element","authors":["S. Herzog"],"rawDate":"2001-10","status":"Proposed Standard","obsoletes":["RFC2751"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3182":{"rfcNumber":"RFC3182","href":"https://www.rfc-editor.org/rfc/rfc3182","title":"Identity Representation for RSVP","authors":["S. Yadav","R. Yavatkar","R. Pabbati","P. Ford","T. Moore","S. Herzog","R. Hess"],"rawDate":"2001-10","status":"Proposed Standard","obsoletes":["RFC2752"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3182","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3183":{"rfcNumber":"RFC3183","href":"https://www.rfc-editor.org/rfc/rfc3183","title":"Domain Security Services using S/MIME","authors":["T. Dean","W. Ottaway"],"rawDate":"2001-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3183","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3184":{"rfcNumber":"RFC3184","href":"https://www.rfc-editor.org/rfc/rfc3184","title":"IETF Guidelines for Conduct","authors":["S. Harris"],"rawDate":"2001-10","status":"Best Current Practice","obsoletedBy":["RFC7154"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3185":{"rfcNumber":"RFC3185","href":"https://www.rfc-editor.org/rfc/rfc3185","title":"Reuse of CMS Content Encryption Keys","authors":["S. Farrell","S. Turner"],"rawDate":"2001-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3186":{"rfcNumber":"RFC3186","href":"https://www.rfc-editor.org/rfc/rfc3186","title":"MAPOS/PPP Tunneling mode","authors":["S. Shimizu","T. Kawano","K. Murakami","E. Beier"],"rawDate":"2001-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3187":{"rfcNumber":"RFC3187","href":"https://www.rfc-editor.org/rfc/rfc3187","title":"Using International Standard Book Numbers as Uniform Resource Names","authors":["J. Hakala","H. Walravens"],"rawDate":"2001-10","status":"Historic","obsoletedBy":["RFC8254"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3188":{"rfcNumber":"RFC3188","href":"https://www.rfc-editor.org/rfc/rfc3188","title":"Using National Bibliography Numbers as Uniform Resource Names","authors":["J. Hakala"],"rawDate":"2001-10","status":"Informational","obsoletedBy":["RFC8458"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3189":{"rfcNumber":"RFC3189","href":"https://www.rfc-editor.org/rfc/rfc3189","title":"RTP Payload Format for DV (IEC 61834) Video","authors":["K. Kobayashi","A. Ogawa","S. Casner","C. Bormann"],"rawDate":"2002-01","status":"Proposed Standard","obsoletedBy":["RFC6469"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3189","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc319":{"aliasOf":"rfc0319"},"rfc3190":{"rfcNumber":"RFC3190","href":"https://www.rfc-editor.org/rfc/rfc3190","title":"RTP Payload Format for 12-bit DAT Audio and 20- and 24-bit Linear Sampled Audio","authors":["K. Kobayashi","A. Ogawa","S. Casner","C. Bormann"],"rawDate":"2002-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3191":{"rfcNumber":"RFC3191","href":"https://www.rfc-editor.org/rfc/rfc3191","title":"Minimal GSTN address format in Internet Mail","authors":["C. Allocchio"],"rawDate":"2001-10","status":"Draft Standard","updates":["RFC2846"],"obsoletes":["RFC2303"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3192":{"rfcNumber":"RFC3192","href":"https://www.rfc-editor.org/rfc/rfc3192","title":"Minimal FAX address format in Internet Mail","authors":["C. Allocchio"],"rawDate":"2001-10","status":"Draft Standard","updates":["RFC2846"],"obsoletes":["RFC2304"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3193":{"rfcNumber":"RFC3193","href":"https://www.rfc-editor.org/rfc/rfc3193","title":"Securing L2TP using IPsec","authors":["B. Patel","B. Aboba","W. Dixon","G. Zorn","S. Booth"],"rawDate":"2001-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3194":{"rfcNumber":"RFC3194","href":"https://www.rfc-editor.org/rfc/rfc3194","title":"The H-Density Ratio for Address Assignment Efficiency An Update on the H ratio","authors":["A. Durand","C. Huitema"],"rawDate":"2001-11","status":"Informational","updates":["RFC1715"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3195":{"rfcNumber":"RFC3195","href":"https://www.rfc-editor.org/rfc/rfc3195","title":"Reliable Delivery for syslog","authors":["D. New","M. Rose"],"rawDate":"2001-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3196":{"rfcNumber":"RFC3196","href":"https://www.rfc-editor.org/rfc/rfc3196","title":"Internet Printing Protocol/1.1: Implementor's Guide","authors":["T. Hastings","C. Manros","P. Zehler","C. Kugler","H. Holst"],"rawDate":"2001-11","status":"Informational","obsoletes":["RFC2639"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3196","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3197":{"rfcNumber":"RFC3197","href":"https://www.rfc-editor.org/rfc/rfc3197","title":"Applicability Statement for DNS MIB Extensions","authors":["R. Austein"],"rawDate":"2001-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3198":{"rfcNumber":"RFC3198","href":"https://www.rfc-editor.org/rfc/rfc3198","title":"Terminology for Policy-Based Management","authors":["A. Westerinen","J. Schnizlein","J. Strassner","M. Scherling","B. Quinn","S. Herzog","A. Huynh","M. Carlson","J. Perry","S. Waldbusser"],"rawDate":"2001-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3199":{"rfcNumber":"RFC3199","href":"https://www.rfc-editor.org/rfc/rfc3199","title":"Request for Comments Summary RFC Numbers 3100-3199","authors":["S. Ginoza"],"rawDate":"2003-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc32":{"aliasOf":"rfc0032"},"rfc320":{"aliasOf":"rfc0320"},"rfc3201":{"rfcNumber":"RFC3201","href":"https://www.rfc-editor.org/rfc/rfc3201","title":"Definitions of Managed Objects for Circuit to Interface Translation","authors":["R. Steinberger","O. Nicklass"],"rawDate":"2002-01","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3202":{"rfcNumber":"RFC3202","href":"https://www.rfc-editor.org/rfc/rfc3202","title":"Definitions of Managed Objects for Frame Relay Service Level Definitions","authors":["R. Steinberger","O. Nicklass"],"rawDate":"2002-01","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3203":{"rfcNumber":"RFC3203","href":"https://www.rfc-editor.org/rfc/rfc3203","title":"DHCP reconfigure extension","authors":["Y. T'Joens","C. Hublet","P. De Schrijver"],"rawDate":"2001-12","status":"Proposed Standard","updatedBy":["RFC6704"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3204":{"rfcNumber":"RFC3204","href":"https://www.rfc-editor.org/rfc/rfc3204","title":"MIME media types for ISUP and QSIG Objects","authors":["E. Zimmerer","J. Peterson","A. Vemuri","L. Ong","F. Audet","M. Watson","M. Zonoun"],"rawDate":"2001-12","status":"Proposed Standard","updatedBy":["RFC3459","RFC5621"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3204","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3205":{"rfcNumber":"RFC3205","href":"https://www.rfc-editor.org/rfc/rfc3205","title":"On the use of HTTP as a Substrate","authors":["K. Moore"],"rawDate":"2002-02","status":"Best Current Practice","obsoletedBy":["RFC9205"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3205","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3206":{"rfcNumber":"RFC3206","href":"https://www.rfc-editor.org/rfc/rfc3206","title":"The SYS and AUTH POP Response Codes","authors":["R. Gellens"],"rawDate":"2002-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3207":{"rfcNumber":"RFC3207","href":"https://www.rfc-editor.org/rfc/rfc3207","title":"SMTP Service Extension for Secure SMTP over Transport Layer Security","authors":["P. Hoffman"],"rawDate":"2002-02","status":"Proposed Standard","updatedBy":["RFC7817"],"obsoletes":["RFC2487"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3207","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3208":{"rfcNumber":"RFC3208","href":"https://www.rfc-editor.org/rfc/rfc3208","title":"PGM Reliable Transport Protocol Specification","authors":["T. Speakman","J. Crowcroft","J. Gemmell","D. Farinacci","S. Lin","D. Leshchiner","M. Luby","T. Montgomery","L. Rizzo","A. Tweedly","N. Bhaskar","R. Edmonstone","R. Sumanasekera","L. Vicisano"],"rawDate":"2001-12","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3208","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3209":{"rfcNumber":"RFC3209","href":"https://www.rfc-editor.org/rfc/rfc3209","title":"RSVP-TE: Extensions to RSVP for LSP Tunnels","authors":["D. Awduche","L. Berger","D. Gan","T. Li","V. Srinivasan","G. Swallow"],"rawDate":"2001-12","status":"Proposed Standard","updatedBy":["RFC3936","RFC4420","RFC4874","RFC5151","RFC5420","RFC5711","RFC6780","RFC6790","RFC7274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3209","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc321":{"aliasOf":"rfc0321"},"rfc3210":{"rfcNumber":"RFC3210","href":"https://www.rfc-editor.org/rfc/rfc3210","title":"Applicability Statement for Extensions to RSVP for LSP-Tunnels","authors":["D. Awduche","A. Hannan","X. Xiao"],"rawDate":"2001-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3211":{"rfcNumber":"RFC3211","href":"https://www.rfc-editor.org/rfc/rfc3211","title":"Password-based Encryption for CMS","authors":["P. Gutmann"],"rawDate":"2001-12","status":"Proposed Standard","obsoletedBy":["RFC3369","RFC3370"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3212":{"rfcNumber":"RFC3212","href":"https://www.rfc-editor.org/rfc/rfc3212","title":"Constraint-Based LSP Setup using LDP","authors":["B. Jamoussi, Ed.","L. Andersson","R. Callon","R. Dantu","L. Wu","P. Doolan","T. Worster","N. Feldman","A. Fredette","M. Girish","E. Gray","J. Heinanen","T. Kilty","A. Malis"],"rawDate":"2002-01","status":"Proposed Standard","updatedBy":["RFC3468","RFC7358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3213":{"rfcNumber":"RFC3213","href":"https://www.rfc-editor.org/rfc/rfc3213","title":"Applicability Statement for CR-LDP","authors":["J. Ash","M. Girish","E. Gray","B. Jamoussi","G. Wright"],"rawDate":"2002-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3214":{"rfcNumber":"RFC3214","href":"https://www.rfc-editor.org/rfc/rfc3214","title":"LSP Modification Using CR-LDP","authors":["J. Ash","Y. Lee","P. Ashwood-Smith","B. Jamoussi","D. Fedyk","D. Skalecki","L. Li"],"rawDate":"2002-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3215":{"rfcNumber":"RFC3215","href":"https://www.rfc-editor.org/rfc/rfc3215","title":"LDP State Machine","authors":["C. Boscher","P. Cheval","L. Wu","E. Gray"],"rawDate":"2002-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3216":{"rfcNumber":"RFC3216","href":"https://www.rfc-editor.org/rfc/rfc3216","title":"SMIng Objectives","authors":["C. Elliott","D. Harrington","J. Jason","J. Schoenwaelder","F. Strauss","W. Weiss"],"rawDate":"2001-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3217":{"rfcNumber":"RFC3217","href":"https://www.rfc-editor.org/rfc/rfc3217","title":"Triple-DES and RC2 Key Wrapping","authors":["R. Housley"],"rawDate":"2001-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3217","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3218":{"rfcNumber":"RFC3218","href":"https://www.rfc-editor.org/rfc/rfc3218","title":"Preventing the Million Message Attack on Cryptographic Message Syntax","authors":["E. Rescorla"],"rawDate":"2002-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3218","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3219":{"rfcNumber":"RFC3219","href":"https://www.rfc-editor.org/rfc/rfc3219","title":"Telephony Routing over IP (TRIP)","authors":["J. Rosenberg","H. Salama","M. Squire"],"rawDate":"2002-01","status":"Proposed Standard","updatedBy":["RFC8602"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3219","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc322":{"aliasOf":"rfc0322"},"rfc3220":{"rfcNumber":"RFC3220","href":"https://www.rfc-editor.org/rfc/rfc3220","title":"IP Mobility Support for IPv4","authors":["C. Perkins, Ed."],"rawDate":"2002-01","status":"Proposed Standard","obsoletedBy":["RFC3344"],"obsoletes":["RFC2002"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3220","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3221":{"rfcNumber":"RFC3221","href":"https://www.rfc-editor.org/rfc/rfc3221","title":"Commentary on Inter-Domain Routing in the Internet","authors":["G. Huston"],"rawDate":"2001-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3222":{"rfcNumber":"RFC3222","href":"https://www.rfc-editor.org/rfc/rfc3222","title":"Terminology for Forwarding Information Base (FIB) based Router Performance","authors":["G. Trotter"],"rawDate":"2001-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3224":{"rfcNumber":"RFC3224","href":"https://www.rfc-editor.org/rfc/rfc3224","title":"Vendor Extensions for Service Location Protocol, Version 2","authors":["E. Guttman"],"rawDate":"2002-01","status":"Proposed Standard","updates":["RFC2608"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3224","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3225":{"rfcNumber":"RFC3225","href":"https://www.rfc-editor.org/rfc/rfc3225","title":"Indicating Resolver Support of DNSSEC","authors":["D. Conrad"],"rawDate":"2001-12","status":"Proposed Standard","updatedBy":["RFC4033","RFC4034","RFC4035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3226":{"rfcNumber":"RFC3226","href":"https://www.rfc-editor.org/rfc/rfc3226","title":"DNSSEC and IPv6 A6 aware server/resolver message size requirements","authors":["O. Gudmundsson"],"rawDate":"2001-12","status":"Proposed Standard","updatedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC2535","RFC2874"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3226","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3227":{"rfcNumber":"RFC3227","href":"https://www.rfc-editor.org/rfc/rfc3227","title":"Guidelines for Evidence Collection and Archiving","authors":["D. Brezinski","T. Killalea"],"rawDate":"2002-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3228":{"rfcNumber":"RFC3228","href":"https://www.rfc-editor.org/rfc/rfc3228","title":"IANA Considerations for IPv4 Internet Group Management Protocol (IGMP)","authors":["B. Fenner"],"rawDate":"2002-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3229":{"rfcNumber":"RFC3229","href":"https://www.rfc-editor.org/rfc/rfc3229","title":"Delta encoding in HTTP","authors":["J. Mogul","B. Krishnamurthy","F. Douglis","A. Feldmann","Y. Goland","A. van Hoff","D. Hellerstein"],"rawDate":"2002-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc323":{"aliasOf":"rfc0323"},"rfc3230":{"rfcNumber":"RFC3230","href":"https://www.rfc-editor.org/rfc/rfc3230","title":"Instance Digests in HTTP","authors":["J. Mogul","A. Van Hoff"],"rawDate":"2002-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3231":{"rfcNumber":"RFC3231","href":"https://www.rfc-editor.org/rfc/rfc3231","title":"Definitions of Managed Objects for Scheduling Management Operations","authors":["D. Levi","J. Schoenwaelder"],"rawDate":"2002-01","status":"Proposed Standard","obsoletes":["RFC2591"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3232":{"rfcNumber":"RFC3232","href":"https://www.rfc-editor.org/rfc/rfc3232","title":"Assigned Numbers: RFC 1700 is Replaced by an On-line Database","authors":["J. Reynolds, Ed."],"rawDate":"2002-01","status":"Informational","obsoletes":["RFC1700"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3233":{"rfcNumber":"RFC3233","href":"https://www.rfc-editor.org/rfc/rfc3233","title":"Defining the IETF","authors":["P. Hoffman","S. Bradner"],"rawDate":"2002-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3234":{"rfcNumber":"RFC3234","href":"https://www.rfc-editor.org/rfc/rfc3234","title":"Middleboxes: Taxonomy and Issues","authors":["B. Carpenter","S. Brim"],"rawDate":"2002-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3235":{"rfcNumber":"RFC3235","href":"https://www.rfc-editor.org/rfc/rfc3235","title":"Network Address Translator (NAT)-Friendly Application Design Guidelines","authors":["D. Senie"],"rawDate":"2002-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3236":{"rfcNumber":"RFC3236","href":"https://www.rfc-editor.org/rfc/rfc3236","title":"The 'application/xhtml+xml' Media Type","authors":["M. Baker","P. Stark"],"rawDate":"2002-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3237":{"rfcNumber":"RFC3237","href":"https://www.rfc-editor.org/rfc/rfc3237","title":"Requirements for Reliable Server Pooling","authors":["M. Tuexen","Q. Xie","R. Stewart","M. Shore","L. Ong","J. Loughney","M. Stillman"],"rawDate":"2002-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3238":{"rfcNumber":"RFC3238","href":"https://www.rfc-editor.org/rfc/rfc3238","title":"IAB Architectural and Policy Considerations for Open Pluggable Edge Services","authors":["S. Floyd","L. Daigle"],"rawDate":"2002-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3239":{"rfcNumber":"RFC3239","href":"https://www.rfc-editor.org/rfc/rfc3239","title":"Internet Printing Protocol (IPP): Requirements for Job, Printer, and Device Administrative Operations","authors":["C. Kugler","H. Lewis","T. Hastings"],"rawDate":"2002-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc324":{"aliasOf":"rfc0324"},"rfc3240":{"rfcNumber":"RFC3240","href":"https://www.rfc-editor.org/rfc/rfc3240","title":"Digital Imaging and Communications in Medicine (DICOM) - Application/dicom MIME Sub-type Registration","authors":["D. Clunie","E. Cordonnier"],"rawDate":"2002-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3240","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3241":{"rfcNumber":"RFC3241","href":"https://www.rfc-editor.org/rfc/rfc3241","title":"Robust Header Compression (ROHC) over PPP","authors":["C. Bormann"],"rawDate":"2002-04","status":"Proposed Standard","updatedBy":["RFC4815"],"updates":["RFC1332"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3242":{"rfcNumber":"RFC3242","href":"https://www.rfc-editor.org/rfc/rfc3242","title":"RObust Header Compression (ROHC): A Link-Layer Assisted Profile for IP/UDP/RTP","authors":["L-E. Jonsson","G. Pelletier"],"rawDate":"2002-04","status":"Proposed Standard","obsoletedBy":["RFC4362"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3243":{"rfcNumber":"RFC3243","href":"https://www.rfc-editor.org/rfc/rfc3243","title":"RObust Header Compression (ROHC): Requirements and Assumptions for 0-byte IP/UDP/RTP Compression","authors":["L-E. Jonsson"],"rawDate":"2002-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3244":{"rfcNumber":"RFC3244","href":"https://www.rfc-editor.org/rfc/rfc3244","title":"Microsoft Windows 2000 Kerberos Change Password and Set Password Protocols","authors":["M. Swift","J. Trostle","J. Brezak"],"rawDate":"2002-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3245":{"rfcNumber":"RFC3245","href":"https://www.rfc-editor.org/rfc/rfc3245","title":"The History and Context of Telephone Number Mapping (ENUM) Operational Decisions: Informational Documents Contributed to ITU-T Study Group 2 (SG2)","authors":["J. Klensin, Ed.","IAB"],"rawDate":"2002-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3245","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3246":{"rfcNumber":"RFC3246","href":"https://www.rfc-editor.org/rfc/rfc3246","title":"An Expedited Forwarding PHB (Per-Hop Behavior)","authors":["B. Davie","A. Charny","J.C.R. Bennet","K. Benson","J.Y. Le Boudec","W. Courtney","S. Davari","V. Firoiu","D. Stiliadis"],"rawDate":"2002-03","status":"Proposed Standard","obsoletes":["RFC2598"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3247":{"rfcNumber":"RFC3247","href":"https://www.rfc-editor.org/rfc/rfc3247","title":"Supplemental Information for the New Definition of the EF PHB (Expedited Forwarding Per-Hop Behavior)","authors":["A. Charny","J. Bennet","K. Benson","J. Boudec","A. Chiu","W. Courtney","S. Davari","V. Firoiu","C. Kalmanek","K. Ramakrishnan"],"rawDate":"2002-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3247","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3248":{"rfcNumber":"RFC3248","href":"https://www.rfc-editor.org/rfc/rfc3248","title":"A Delay Bound alternative revision of RFC 2598","authors":["G. Armitage","B. Carpenter","A. Casati","J. Crowcroft","J. Halpern","B. Kumar","J. Schnizlein"],"rawDate":"2002-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3249":{"rfcNumber":"RFC3249","href":"https://www.rfc-editor.org/rfc/rfc3249","title":"Implementers Guide for Facsimile Using Internet Mail","authors":["V. Cancio","M. Moldovan","H. Tamura","D. Wing"],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc325":{"aliasOf":"rfc0325"},"rfc3250":{"rfcNumber":"RFC3250","href":"https://www.rfc-editor.org/rfc/rfc3250","title":"Tag Image File Format Fax eXtended (TIFF-FX) - image/tiff-fx MIME Sub-type Registration","authors":["L. McIntyre","G. Parsons","J. Rafferty"],"rawDate":"2002-09","status":"Proposed Standard","obsoletedBy":["RFC3950"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3251":{"rfcNumber":"RFC3251","href":"https://www.rfc-editor.org/rfc/rfc3251","title":"Electricity over IP","authors":["B. Rajagopalan"],"rawDate":"2002-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3252":{"rfcNumber":"RFC3252","href":"https://www.rfc-editor.org/rfc/rfc3252","title":"Binary Lexical Octet Ad-hoc Transport","authors":["H. Kennedy"],"rawDate":"2002-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3253":{"rfcNumber":"RFC3253","href":"https://www.rfc-editor.org/rfc/rfc3253","title":"Versioning Extensions to WebDAV (Web Distributed Authoring and Versioning)","authors":["G. Clemm","J. Amsden","T. Ellison","C. Kaler","J. Whitehead"],"rawDate":"2002-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3253","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3254":{"rfcNumber":"RFC3254","href":"https://www.rfc-editor.org/rfc/rfc3254","title":"Definitions for talking about directories","authors":["H. Alvestrand"],"rawDate":"2002-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3255":{"rfcNumber":"RFC3255","href":"https://www.rfc-editor.org/rfc/rfc3255","title":"Extending Point-to-Point Protocol (PPP) over Synchronous Optical NETwork/Synchronous Digital Hierarchy (SONET/SDH) with virtual concatenation, high order and low order payloads","authors":["N. Jones","C. Murton"],"rawDate":"2002-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3256":{"rfcNumber":"RFC3256","href":"https://www.rfc-editor.org/rfc/rfc3256","title":"The DOCSIS (Data-Over-Cable Service Interface Specifications) Device Class DHCP (Dynamic Host Configuration Protocol) Relay Agent Information Sub-option","authors":["D. Jones","R. Woundy"],"rawDate":"2002-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3257":{"rfcNumber":"RFC3257","href":"https://www.rfc-editor.org/rfc/rfc3257","title":"Stream Control Transmission Protocol Applicability Statement","authors":["L. Coene"],"rawDate":"2002-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3258":{"rfcNumber":"RFC3258","href":"https://www.rfc-editor.org/rfc/rfc3258","title":"Distributing Authoritative Name Servers via Shared Unicast Addresses","authors":["T. Hardie"],"rawDate":"2002-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3259":{"rfcNumber":"RFC3259","href":"https://www.rfc-editor.org/rfc/rfc3259","title":"A Message Bus for Local Coordination","authors":["J. Ott","C. Perkins","D. Kutscher"],"rawDate":"2002-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc326":{"aliasOf":"rfc0326"},"rfc3260":{"rfcNumber":"RFC3260","href":"https://www.rfc-editor.org/rfc/rfc3260","title":"New Terminology and Clarifications for Diffserv","authors":["D. Grossman"],"rawDate":"2002-04","status":"Informational","updates":["RFC2474","RFC2475","RFC2597"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3260","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3261":{"rfcNumber":"RFC3261","href":"https://www.rfc-editor.org/rfc/rfc3261","title":"SIP: Session Initiation Protocol","authors":["J. Rosenberg","H. Schulzrinne","G. Camarillo","A. Johnston","J. Peterson","R. Sparks","M. Handley","E. Schooler"],"rawDate":"2002-06","status":"Proposed Standard","updatedBy":["RFC3265","RFC3853","RFC4320","RFC4916","RFC5393","RFC5621","RFC5626","RFC5630","RFC5922","RFC5954","RFC6026","RFC6141","RFC6665","RFC6878","RFC7462","RFC7463","RFC8217","RFC8591","RFC8760","RFC8898","RFC8996"],"obsoletes":["RFC2543"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3261","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3262":{"rfcNumber":"RFC3262","href":"https://www.rfc-editor.org/rfc/rfc3262","title":"Reliability of Provisional Responses in Session Initiation Protocol (SIP)","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2002-06","status":"Proposed Standard","obsoletes":["RFC2543"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3262","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3263":{"rfcNumber":"RFC3263","href":"https://www.rfc-editor.org/rfc/rfc3263","title":"Session Initiation Protocol (SIP): Locating SIP Servers","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2002-06","status":"Proposed Standard","updatedBy":["RFC7984","RFC8553"],"obsoletes":["RFC2543"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3264":{"rfcNumber":"RFC3264","href":"https://www.rfc-editor.org/rfc/rfc3264","title":"An Offer/Answer Model with Session Description Protocol (SDP)","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2002-06","status":"Proposed Standard","updatedBy":["RFC6157","RFC8843","RFC9143"],"obsoletes":["RFC2543"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3264","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3265":{"rfcNumber":"RFC3265","href":"https://www.rfc-editor.org/rfc/rfc3265","title":"Session Initiation Protocol (SIP)-Specific Event Notification","authors":["A. B. Roach"],"rawDate":"2002-06","status":"Proposed Standard","updatedBy":["RFC5367","RFC5727","RFC6446"],"obsoletedBy":["RFC6665"],"updates":["RFC3261"],"obsoletes":["RFC2543"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3265","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3266":{"rfcNumber":"RFC3266","href":"https://www.rfc-editor.org/rfc/rfc3266","title":"Support for IPv6 in Session Description Protocol (SDP)","authors":["S. Olson","G. Camarillo","A. B. Roach"],"rawDate":"2002-06","status":"Proposed Standard","obsoletedBy":["RFC4566"],"updates":["RFC2327"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3266","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3267":{"rfcNumber":"RFC3267","href":"https://www.rfc-editor.org/rfc/rfc3267","title":"Real-Time Transport Protocol (RTP) Payload Format and File Storage Format for the Adaptive Multi-Rate (AMR) and Adaptive Multi-Rate Wideband (AMR-WB) Audio Codecs","authors":["J. Sjoberg","M. Westerlund","A. Lakaniemi","Q. Xie"],"rawDate":"2002-06","status":"Proposed Standard","obsoletedBy":["RFC4867"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3267","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3268":{"rfcNumber":"RFC3268","href":"https://www.rfc-editor.org/rfc/rfc3268","title":"Advanced Encryption Standard (AES) Ciphersuites for Transport Layer Security (TLS)","authors":["P. Chown"],"rawDate":"2002-06","status":"Proposed Standard","obsoletedBy":["RFC5246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3269":{"rfcNumber":"RFC3269","href":"https://www.rfc-editor.org/rfc/rfc3269","title":"Author Guidelines for Reliable Multicast Transport (RMT) Building Blocks and Protocol Instantiation documents","authors":["R. Kermode","L. Vicisano"],"rawDate":"2002-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc327":{"aliasOf":"rfc0327"},"rfc3270":{"rfcNumber":"RFC3270","href":"https://www.rfc-editor.org/rfc/rfc3270","title":"Multi-Protocol Label Switching (MPLS) Support of Differentiated Services","authors":["F. Le Faucheur, Ed.","L. Wu","B. Davie","S. Davari","P. Vaananen","R. Krishnan","P. Cheval","J. Heinanen"],"rawDate":"2002-05","status":"Proposed Standard","updatedBy":["RFC5462"],"updates":["RFC3032"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3270","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3271":{"rfcNumber":"RFC3271","href":"https://www.rfc-editor.org/rfc/rfc3271","title":"The Internet is for Everyone","authors":["V. Cerf"],"rawDate":"2002-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3271","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3272":{"rfcNumber":"RFC3272","href":"https://www.rfc-editor.org/rfc/rfc3272","title":"Overview and Principles of Internet Traffic Engineering","authors":["D. Awduche","A. Chiu","A. Elwalid","I. Widjaja","X. Xiao"],"rawDate":"2002-05","status":"Informational","updatedBy":["RFC5462"],"obsoletedBy":["RFC9522"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3272","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3273":{"rfcNumber":"RFC3273","href":"https://www.rfc-editor.org/rfc/rfc3273","title":"Remote Network Monitoring Management Information Base for High Capacity Networks","authors":["S. Waldbusser"],"rawDate":"2002-07","status":"Proposed Standard","updatedBy":["RFC4502"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3274":{"rfcNumber":"RFC3274","href":"https://www.rfc-editor.org/rfc/rfc3274","title":"Compressed Data Content Type for Cryptographic Message Syntax (CMS)","authors":["P. Gutmann"],"rawDate":"2002-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3275":{"rfcNumber":"RFC3275","href":"https://www.rfc-editor.org/rfc/rfc3275","title":"(Extensible Markup Language) XML-Signature Syntax and Processing","authors":["D. Eastlake 3rd","J. Reagle","D. Solo"],"rawDate":"2002-03","status":"Draft Standard","obsoletes":["RFC3075"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3275","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3276":{"rfcNumber":"RFC3276","href":"https://www.rfc-editor.org/rfc/rfc3276","title":"Definitions of Managed Objects for High Bit-Rate DSL - 2nd generation (HDSL2) and Single-Pair High-Speed Digital Subscriber Line (SHDSL) Lines Processing","authors":["B. Ray","R. Abbi"],"rawDate":"2002-05","status":"Proposed Standard","obsoletedBy":["RFC4319"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3277":{"rfcNumber":"RFC3277","href":"https://www.rfc-editor.org/rfc/rfc3277","title":"Intermediate System to Intermediate System (IS-IS) Transient Blackhole Avoidance","authors":["D. McPherson"],"rawDate":"2002-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3277","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3278":{"rfcNumber":"RFC3278","href":"https://www.rfc-editor.org/rfc/rfc3278","title":"Use of Elliptic Curve Cryptography (ECC) Algorithms in Cryptographic Message Syntax (CMS)","authors":["S. Blake-Wilson","D. Brown","P. Lambert"],"rawDate":"2002-04","status":"Informational","obsoletedBy":["RFC5753"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3278","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3279":{"rfcNumber":"RFC3279","href":"https://www.rfc-editor.org/rfc/rfc3279","title":"Algorithms and Identifiers for the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile","authors":["L. Bassham","W. Polk","R. Housley"],"rawDate":"2002-04","status":"Proposed Standard","updatedBy":["RFC4055","RFC4491","RFC5480","RFC5758","RFC8692"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3279","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc328":{"aliasOf":"rfc0328"},"rfc3280":{"rfcNumber":"RFC3280","href":"https://www.rfc-editor.org/rfc/rfc3280","title":"Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile","authors":["R. Housley","W. Polk","W. Ford","D. Solo"],"rawDate":"2002-04","status":"Proposed Standard","updatedBy":["RFC4325","RFC4630"],"obsoletedBy":["RFC5280"],"obsoletes":["RFC2459"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3280","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3281":{"rfcNumber":"RFC3281","href":"https://www.rfc-editor.org/rfc/rfc3281","title":"An Internet Attribute Certificate Profile for Authorization","authors":["S. Farrell","R. Housley"],"rawDate":"2002-04","status":"Proposed Standard","obsoletedBy":["RFC5755"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3281","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3282":{"rfcNumber":"RFC3282","href":"https://www.rfc-editor.org/rfc/rfc3282","title":"Content Language Headers","authors":["H. Alvestrand"],"rawDate":"2002-05","status":"Draft Standard","obsoletes":["RFC1766"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3283":{"rfcNumber":"RFC3283","href":"https://www.rfc-editor.org/rfc/rfc3283","title":"Guide to Internet Calendaring","authors":["B. Mahoney","G. Babics","A. Taler"],"rawDate":"2002-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3284":{"rfcNumber":"RFC3284","href":"https://www.rfc-editor.org/rfc/rfc3284","title":"The VCDIFF Generic Differencing and Compression Data Format","authors":["D. Korn","J. MacDonald","J. Mogul","K. Vo"],"rawDate":"2002-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3285":{"rfcNumber":"RFC3285","href":"https://www.rfc-editor.org/rfc/rfc3285","title":"Using Microsoft Word to create Internet Drafts and RFCs","authors":["M. Gahrns","T. Hain"],"rawDate":"2002-05","status":"Informational","obsoletedBy":["RFC5385"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3286":{"rfcNumber":"RFC3286","href":"https://www.rfc-editor.org/rfc/rfc3286","title":"An Introduction to the Stream Control Transmission Protocol (SCTP)","authors":["L. Ong","J. Yoakum"],"rawDate":"2002-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3287":{"rfcNumber":"RFC3287","href":"https://www.rfc-editor.org/rfc/rfc3287","title":"Remote Monitoring MIB Extensions for Differentiated Services","authors":["A. Bierman"],"rawDate":"2002-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3288":{"rfcNumber":"RFC3288","href":"https://www.rfc-editor.org/rfc/rfc3288","title":"Using the Simple Object Access Protocol (SOAP) in Blocks Extensible Exchange Protocol (BEEP)","authors":["E. O'Tuathail","M. Rose"],"rawDate":"2002-06","status":"Proposed Standard","obsoletedBy":["RFC4227"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3289":{"rfcNumber":"RFC3289","href":"https://www.rfc-editor.org/rfc/rfc3289","title":"Management Information Base for the Differentiated Services Architecture","authors":["F. Baker","K. Chan","A. Smith"],"rawDate":"2002-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3289","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc329":{"aliasOf":"rfc0329"},"rfc3290":{"rfcNumber":"RFC3290","href":"https://www.rfc-editor.org/rfc/rfc3290","title":"An Informal Management Model for Diffserv Routers","authors":["Y. Bernet","S. Blake","D. Grossman","A. Smith"],"rawDate":"2002-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3291":{"rfcNumber":"RFC3291","href":"https://www.rfc-editor.org/rfc/rfc3291","title":"Textual Conventions for Internet Network Addresses","authors":["M. Daniele","B. Haberman","S. Routhier","J. Schoenwaelder"],"rawDate":"2002-05","status":"Proposed Standard","obsoletedBy":["RFC4001"],"obsoletes":["RFC2851"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3292":{"rfcNumber":"RFC3292","href":"https://www.rfc-editor.org/rfc/rfc3292","title":"General Switch Management Protocol (GSMP) V3","authors":["A. Doria","F. Hellstrand","K. Sundell","T. Worster"],"rawDate":"2002-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3293":{"rfcNumber":"RFC3293","href":"https://www.rfc-editor.org/rfc/rfc3293","title":"General Switch Management Protocol (GSMP) Packet Encapsulations for Asynchronous Transfer Mode (ATM), Ethernet and Transmission Control Protocol (TCP)","authors":["T. Worster","A. Doria","J. Buerkle"],"rawDate":"2002-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3294":{"rfcNumber":"RFC3294","href":"https://www.rfc-editor.org/rfc/rfc3294","title":"General Switch Management Protocol (GSMP) Applicability","authors":["A. Doria","K. Sundell"],"rawDate":"2002-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3295":{"rfcNumber":"RFC3295","href":"https://www.rfc-editor.org/rfc/rfc3295","title":"Definitions of Managed Objects for the General Switch Management Protocol (GSMP)","authors":["H. Sjostrand","J. Buerkle","B. Srinivasan"],"rawDate":"2002-06","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3296":{"rfcNumber":"RFC3296","href":"https://www.rfc-editor.org/rfc/rfc3296","title":"Named Subordinate References in Lightweight Directory Access Protocol (LDAP) Directories","authors":["K. Zeilenga"],"rawDate":"2002-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3297":{"rfcNumber":"RFC3297","href":"https://www.rfc-editor.org/rfc/rfc3297","title":"Content Negotiation for Messaging Services based on Email","authors":["G. Klyne","R. Iwazaki","D. Crocker"],"rawDate":"2002-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3297","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3298":{"rfcNumber":"RFC3298","href":"https://www.rfc-editor.org/rfc/rfc3298","title":"Service in the Public Switched Telephone Network/Intelligent Network (PSTN/IN) Requesting InTernet Service (SPIRITS) Protocol Requirements","authors":["I. Faynberg","J. Gato","H. Lu","L. Slutsman"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3299":{"rfcNumber":"RFC3299","href":"https://www.rfc-editor.org/rfc/rfc3299","title":"Request for Comments Summary RFC Numbers 3200-3299","authors":["S. Ginoza"],"rawDate":"2003-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc33":{"aliasOf":"rfc0033"},"rfc330":{"aliasOf":"rfc0330"},"rfc3300":{"rfcNumber":"RFC3300","href":"https://www.rfc-editor.org/rfc/rfc3300","title":"Internet Official Protocol Standards","authors":["J. Reynolds","R. Braden","S. Ginoza","A. De La Cruz"],"rawDate":"2002-11","status":"Historic","obsoletedBy":["RFC3600"],"obsoletes":["RFC3000"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3300","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3301":{"rfcNumber":"RFC3301","href":"https://www.rfc-editor.org/rfc/rfc3301","title":"Layer Two Tunnelling Protocol (L2TP): ATM access network extensions","authors":["Y. T'Joens","P. Crivellari","B. Sales"],"rawDate":"2002-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3302":{"rfcNumber":"RFC3302","href":"https://www.rfc-editor.org/rfc/rfc3302","title":"Tag Image File Format (TIFF) - image/tiff MIME Sub-type Registration","authors":["G. Parsons","J. Rafferty"],"rawDate":"2002-09","status":"Draft Standard","obsoletes":["RFC2302"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3303":{"rfcNumber":"RFC3303","href":"https://www.rfc-editor.org/rfc/rfc3303","title":"Middlebox communication architecture and framework","authors":["P. Srisuresh","J. Kuthan","J. Rosenberg","A. Molitor","A. Rayhan"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3304":{"rfcNumber":"RFC3304","href":"https://www.rfc-editor.org/rfc/rfc3304","title":"Middlebox Communications (midcom) Protocol Requirements","authors":["R. P. Swale","P. A. Mart","P. Sijben","S. Brim","M. Shore"],"rawDate":"2002-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3304","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3305":{"rfcNumber":"RFC3305","href":"https://www.rfc-editor.org/rfc/rfc3305","title":"Report from the Joint W3C/IETF URI Planning Interest Group: Uniform Resource Identifiers (URIs), URLs, and Uniform Resource Names (URNs): Clarifications and Recommendations","authors":["M. Mealling, Ed.","R. Denenberg, Ed."],"rawDate":"2002-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3305","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3306":{"rfcNumber":"RFC3306","href":"https://www.rfc-editor.org/rfc/rfc3306","title":"Unicast-Prefix-based IPv6 Multicast Addresses","authors":["B. Haberman","D. Thaler"],"rawDate":"2002-08","status":"Proposed Standard","updatedBy":["RFC3956","RFC4489","RFC7371"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3307":{"rfcNumber":"RFC3307","href":"https://www.rfc-editor.org/rfc/rfc3307","title":"Allocation Guidelines for IPv6 Multicast Addresses","authors":["B. Haberman"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3308":{"rfcNumber":"RFC3308","href":"https://www.rfc-editor.org/rfc/rfc3308","title":"Layer Two Tunneling Protocol (L2TP) Differentiated Services Extension","authors":["P. Calhoun","W. Luo","D. McPherson","K. Peirce"],"rawDate":"2002-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3309":{"rfcNumber":"RFC3309","href":"https://www.rfc-editor.org/rfc/rfc3309","title":"Stream Control Transmission Protocol (SCTP) Checksum Change","authors":["J. Stone","R. Stewart","D. Otis"],"rawDate":"2002-09","status":"Proposed Standard","obsoletedBy":["RFC4960"],"updates":["RFC2960"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc331":{"aliasOf":"rfc0331"},"rfc3310":{"rfcNumber":"RFC3310","href":"https://www.rfc-editor.org/rfc/rfc3310","title":"Hypertext Transfer Protocol (HTTP) Digest Authentication Using Authentication and Key Agreement (AKA)","authors":["A. Niemi","J. Arkko","V. Torvinen"],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3311":{"rfcNumber":"RFC3311","href":"https://www.rfc-editor.org/rfc/rfc3311","title":"The Session Initiation Protocol (SIP) UPDATE Method","authors":["J. Rosenberg"],"rawDate":"2002-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3312":{"rfcNumber":"RFC3312","href":"https://www.rfc-editor.org/rfc/rfc3312","title":"Integration of Resource Management and Session Initiation Protocol (SIP)","authors":["G. Camarillo, Ed.","W. Marshall, Ed.","J. Rosenberg"],"rawDate":"2002-10","status":"Proposed Standard","updatedBy":["RFC4032","RFC5027"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3312","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3313":{"rfcNumber":"RFC3313","href":"https://www.rfc-editor.org/rfc/rfc3313","title":"Private Session Initiation Protocol (SIP) Extensions for Media Authorization","authors":["W. Marshall, Ed."],"rawDate":"2003-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3314":{"rfcNumber":"RFC3314","href":"https://www.rfc-editor.org/rfc/rfc3314","title":"Recommendations for IPv6 in Third Generation Partnership Project (3GPP) Standards","authors":["M. Wasserman, Ed."],"rawDate":"2002-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3314","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3315":{"rfcNumber":"RFC3315","href":"https://www.rfc-editor.org/rfc/rfc3315","title":"Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["R. Droms, Ed.","J. Bound","B. Volz","T. Lemon","C. Perkins","M. Carney"],"rawDate":"2003-07","status":"Proposed Standard","updatedBy":["RFC4361","RFC5494","RFC6221","RFC6422","RFC6644","RFC7083","RFC7227","RFC7283","RFC7550"],"obsoletedBy":["RFC8415"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3315","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3316":{"rfcNumber":"RFC3316","href":"https://www.rfc-editor.org/rfc/rfc3316","title":"Internet Protocol Version 6 (IPv6) for Some Second and Third Generation Cellular Hosts","authors":["J. Arkko","G. Kuijpers","H. Soliman","J. Loughney","J. Wiljakka"],"rawDate":"2003-04","status":"Informational","obsoletedBy":["RFC7066"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3317":{"rfcNumber":"RFC3317","href":"https://www.rfc-editor.org/rfc/rfc3317","title":"Differentiated Services Quality of Service Policy Information Base","authors":["K. Chan","R. Sahita","S. Hahn","K. McCloghrie"],"rawDate":"2003-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3318":{"rfcNumber":"RFC3318","href":"https://www.rfc-editor.org/rfc/rfc3318","title":"Framework Policy Information Base","authors":["R. Sahita, Ed.","S. Hahn","K. Chan","K. McCloghrie"],"rawDate":"2003-03","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3319":{"rfcNumber":"RFC3319","href":"https://www.rfc-editor.org/rfc/rfc3319","title":"Dynamic Host Configuration Protocol (DHCPv6) Options for Session Initiation Protocol (SIP) Servers","authors":["H. Schulzrinne","B. Volz"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc332":{"aliasOf":"rfc0332"},"rfc3320":{"rfcNumber":"RFC3320","href":"https://www.rfc-editor.org/rfc/rfc3320","title":"Signaling Compression (SigComp)","authors":["R. Price","C. Bormann","J. Christoffersson","H. Hannu","Z. Liu","J. Rosenberg"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC4896"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3321":{"rfcNumber":"RFC3321","href":"https://www.rfc-editor.org/rfc/rfc3321","title":"Signaling Compression (SigComp) - Extended Operations","authors":["H. Hannu","J. Christoffersson","S. Forsgren","K.-C. Leung","Z. Liu","R. Price"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC4896"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3322":{"rfcNumber":"RFC3322","href":"https://www.rfc-editor.org/rfc/rfc3322","title":"Signaling Compression (SigComp) Requirements & Assumptions","authors":["H. Hannu"],"rawDate":"2003-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3323":{"rfcNumber":"RFC3323","href":"https://www.rfc-editor.org/rfc/rfc3323","title":"A Privacy Mechanism for the Session Initiation Protocol (SIP)","authors":["J. Peterson"],"rawDate":"2002-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3323","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3324":{"rfcNumber":"RFC3324","href":"https://www.rfc-editor.org/rfc/rfc3324","title":"Short Term Requirements for Network Asserted Identity","authors":["M. Watson"],"rawDate":"2002-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3325":{"rfcNumber":"RFC3325","href":"https://www.rfc-editor.org/rfc/rfc3325","title":"Private Extensions to the Session Initiation Protocol (SIP) for Asserted Identity within Trusted Networks","authors":["C. Jennings","J. Peterson","M. Watson"],"rawDate":"2002-11","status":"Informational","updatedBy":["RFC5876","RFC8217"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3325","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3326":{"rfcNumber":"RFC3326","href":"https://www.rfc-editor.org/rfc/rfc3326","title":"The Reason Header Field for the Session Initiation Protocol (SIP)","authors":["H. Schulzrinne","D. Oran","G. Camarillo"],"rawDate":"2002-12","status":"Proposed Standard","updatedBy":["RFC8606","RFC9366"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3327":{"rfcNumber":"RFC3327","href":"https://www.rfc-editor.org/rfc/rfc3327","title":"Session Initiation Protocol (SIP) Extension Header Field for Registering Non-Adjacent Contacts","authors":["D. Willis","B. Hoeneisen"],"rawDate":"2002-12","status":"Proposed Standard","updatedBy":["RFC5626"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3327","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3329":{"rfcNumber":"RFC3329","href":"https://www.rfc-editor.org/rfc/rfc3329","title":"Security Mechanism Agreement for the Session Initiation Protocol (SIP)","authors":["J. Arkko","V. Torvinen","G. Camarillo","A. Niemi","T. Haukka"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3329","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc333":{"aliasOf":"rfc0333"},"rfc3330":{"rfcNumber":"RFC3330","href":"https://www.rfc-editor.org/rfc/rfc3330","title":"Special-Use IPv4 Addresses","authors":["IANA"],"rawDate":"2002-09","status":"Informational","obsoletedBy":["RFC5735"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3330","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3331":{"rfcNumber":"RFC3331","href":"https://www.rfc-editor.org/rfc/rfc3331","title":"Signaling System 7 (SS7) Message Transfer Part 2 (MTP2) - User Adaptation Layer","authors":["K. Morneault","R. Dantu","G. Sidebottom","B. Bidulock","J. Heitz"],"rawDate":"2002-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3331","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3332":{"rfcNumber":"RFC3332","href":"https://www.rfc-editor.org/rfc/rfc3332","title":"Signaling System 7 (SS7) Message Transfer Part 3 (MTP3) - User Adaptation Layer (M3UA)","authors":["G. Sidebottom, Ed.","K. Morneault, Ed.","J. Pastor-Balbas, Ed."],"rawDate":"2002-09","status":"Proposed Standard","obsoletedBy":["RFC4666"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3334":{"rfcNumber":"RFC3334","href":"https://www.rfc-editor.org/rfc/rfc3334","title":"Policy-Based Accounting","authors":["T. Zseby","S. Zander","C. Carle"],"rawDate":"2002-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3335":{"rfcNumber":"RFC3335","href":"https://www.rfc-editor.org/rfc/rfc3335","title":"MIME-based Secure Peer-to-Peer Business Data Interchange over the Internet","authors":["T. Harding","R. Drummond","C. Shih"],"rawDate":"2002-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3336":{"rfcNumber":"RFC3336","href":"https://www.rfc-editor.org/rfc/rfc3336","title":"PPP Over Asynchronous Transfer Mode Adaptation Layer 2 (AAL2)","authors":["B. Thompson","T. Koren","B. Buffam"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3337":{"rfcNumber":"RFC3337","href":"https://www.rfc-editor.org/rfc/rfc3337","title":"Class Extensions for PPP over Asynchronous Transfer Mode Adaptation Layer 2","authors":["B. Thompson","T. Koren","B. Buffam"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3338":{"rfcNumber":"RFC3338","href":"https://www.rfc-editor.org/rfc/rfc3338","title":"Dual Stack Hosts Using \"Bump-in-the-API\" (BIA)","authors":["S. Lee","M-K. Shin","Y-J. Kim","E. Nordmark","A. Durand"],"rawDate":"2002-10","status":"Experimental","obsoletedBy":["RFC6535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3339":{"rfcNumber":"RFC3339","href":"https://www.rfc-editor.org/rfc/rfc3339","title":"Date and Time on the Internet: Timestamps","authors":["G. Klyne","C. Newman"],"rawDate":"2002-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3339","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc334":{"aliasOf":"rfc0334"},"rfc3340":{"rfcNumber":"RFC3340","href":"https://www.rfc-editor.org/rfc/rfc3340","title":"The Application Exchange Core","authors":["M. Rose","G. Klyne","D. Crocker"],"rawDate":"2002-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3341":{"rfcNumber":"RFC3341","href":"https://www.rfc-editor.org/rfc/rfc3341","title":"The Application Exchange (APEX) Access Service","authors":["M. Rose","G. Klyne","D. Crocker"],"rawDate":"2002-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3342":{"rfcNumber":"RFC3342","href":"https://www.rfc-editor.org/rfc/rfc3342","title":"The Application Exchange (APEX) Option Party Pack, Part Deux!","authors":["E. Dixon","H. Franklin","J. Kint","G. Klyne","D. New","S. Pead","M. Rose","M. Schwartz"],"rawDate":"2002-07","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3343":{"rfcNumber":"RFC3343","href":"https://www.rfc-editor.org/rfc/rfc3343","title":"The Application Exchange (APEX) Presence Service","authors":["M. Rose","G. Klyne","D. Crocker"],"rawDate":"2003-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3344":{"rfcNumber":"RFC3344","href":"https://www.rfc-editor.org/rfc/rfc3344","title":"IP Mobility Support for IPv4","authors":["C. Perkins, Ed."],"rawDate":"2002-08","status":"Proposed Standard","updatedBy":["RFC4636","RFC4721"],"obsoletedBy":["RFC5944"],"obsoletes":["RFC3220"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3344","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3345":{"rfcNumber":"RFC3345","href":"https://www.rfc-editor.org/rfc/rfc3345","title":"Border Gateway Protocol (BGP) Persistent Route Oscillation Condition","authors":["D. McPherson","V. Gill","D. Walton","A. Retana"],"rawDate":"2002-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3345","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3346":{"rfcNumber":"RFC3346","href":"https://www.rfc-editor.org/rfc/rfc3346","title":"Applicability Statement for Traffic Engineering with MPLS","authors":["J. Boyle","V. Gill","A. Hannan","D. Cooper","D. Awduche","B. Christian","W.S. Lai"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3347":{"rfcNumber":"RFC3347","href":"https://www.rfc-editor.org/rfc/rfc3347","title":"Small Computer Systems Interface protocol over the Internet (iSCSI) Requirements and Design Considerations","authors":["M. Krueger","R. Haagens"],"rawDate":"2002-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3348":{"rfcNumber":"RFC3348","href":"https://www.rfc-editor.org/rfc/rfc3348","title":"The Internet Message Action Protocol (IMAP4) Child Mailbox Extension","authors":["M. Gahrns","R. Cheng"],"rawDate":"2002-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3348","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3349":{"rfcNumber":"RFC3349","href":"https://www.rfc-editor.org/rfc/rfc3349","title":"A Transient Prefix for Identifying Profiles under Development by the Working Groups of the Internet Engineering Task Force","authors":["M. Rose"],"rawDate":"2002-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc335":{"aliasOf":"rfc0335"},"rfc3351":{"rfcNumber":"RFC3351","href":"https://www.rfc-editor.org/rfc/rfc3351","title":"User Requirements for the Session Initiation Protocol (SIP) in Support of Deaf, Hard of Hearing and Speech-impaired Individuals","authors":["N. Charlton","M. Gasson","G. Gybels","M. Spanner","A. van Wijk"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3352":{"rfcNumber":"RFC3352","href":"https://www.rfc-editor.org/rfc/rfc3352","title":"Connection-less Lightweight Directory Access Protocol (CLDAP) to Historic Status","authors":["K. Zeilenga"],"rawDate":"2003-03","status":"Informational","obsoletes":["RFC1798"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3353":{"rfcNumber":"RFC3353","href":"https://www.rfc-editor.org/rfc/rfc3353","title":"Overview of IP Multicast in a Multi-Protocol Label Switching (MPLS) Environment","authors":["D. Ooms","B. Sales","W. Livens","A. Acharya","F. Griffoul","F. Ansari"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3354":{"rfcNumber":"RFC3354","href":"https://www.rfc-editor.org/rfc/rfc3354","title":"Internet Open Trading Protocol Version 2 Requirements","authors":["D. Eastlake 3rd"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3355":{"rfcNumber":"RFC3355","href":"https://www.rfc-editor.org/rfc/rfc3355","title":"Layer Two Tunnelling Protocol (L2TP) Over ATM Adaptation Layer 5 (AAL5)","authors":["A. Singh","R. Turner","R. Tio","S. Nanji"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3356":{"rfcNumber":"RFC3356","href":"https://www.rfc-editor.org/rfc/rfc3356","title":"Internet Engineering Task Force and International Telecommunication Union - Telecommunications Standardization Sector Collaboration Guidelines","authors":["G. Fishman","S. Bradner"],"rawDate":"2002-08","status":"Informational","obsoletedBy":["RFC6756"],"obsoletes":["RFC2436"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3357":{"rfcNumber":"RFC3357","href":"https://www.rfc-editor.org/rfc/rfc3357","title":"One-way Loss Pattern Sample Metrics","authors":["R. Koodli","R. Ravikanth"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3358":{"rfcNumber":"RFC3358","href":"https://www.rfc-editor.org/rfc/rfc3358","title":"Optional Checksums in Intermediate System to Intermediate System (ISIS)","authors":["T. Przygienda"],"rawDate":"2002-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3359":{"rfcNumber":"RFC3359","href":"https://www.rfc-editor.org/rfc/rfc3359","title":"Reserved Type, Length and Value (TLV) Codepoints in Intermediate System to Intermediate System","authors":["T. Przygienda"],"rawDate":"2002-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3359","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc336":{"aliasOf":"rfc0336"},"rfc3360":{"rfcNumber":"RFC3360","href":"https://www.rfc-editor.org/rfc/rfc3360","title":"Inappropriate TCP Resets Considered Harmful","authors":["S. Floyd"],"rawDate":"2002-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3361":{"rfcNumber":"RFC3361","href":"https://www.rfc-editor.org/rfc/rfc3361","title":"Dynamic Host Configuration Protocol (DHCP-for-IPv4) Option for Session Initiation Protocol (SIP) Servers","authors":["H. Schulzrinne"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3362":{"rfcNumber":"RFC3362","href":"https://www.rfc-editor.org/rfc/rfc3362","title":"Real-time Facsimile (T.38) - image/t38 MIME Sub-type Registration","authors":["G. Parsons"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3363":{"rfcNumber":"RFC3363","href":"https://www.rfc-editor.org/rfc/rfc3363","title":"Representing Internet Protocol version 6 (IPv6) Addresses in the Domain Name System (DNS)","authors":["R. Bush","A. Durand","B. Fink","O. Gudmundsson","T. Hain"],"rawDate":"2002-08","status":"Informational","updatedBy":["RFC6672"],"updates":["RFC2673","RFC2874"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3363","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3364":{"rfcNumber":"RFC3364","href":"https://www.rfc-editor.org/rfc/rfc3364","title":"Tradeoffs in Domain Name System (DNS) Support for Internet Protocol version 6 (IPv6)","authors":["R. Austein"],"rawDate":"2002-08","status":"Informational","updates":["RFC2673","RFC2874"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3364","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3365":{"rfcNumber":"RFC3365","href":"https://www.rfc-editor.org/rfc/rfc3365","title":"Strong Security Requirements for Internet Engineering Task Force Standard Protocols","authors":["J. Schiller"],"rawDate":"2002-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3366":{"rfcNumber":"RFC3366","href":"https://www.rfc-editor.org/rfc/rfc3366","title":"Advice to link designers on link Automatic Repeat reQuest (ARQ)","authors":["G. Fairhurst","L. Wood"],"rawDate":"2002-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3367":{"rfcNumber":"RFC3367","href":"https://www.rfc-editor.org/rfc/rfc3367","title":"Common Name Resolution Protocol (CNRP)","authors":["N. Popp","M. Mealling","M. Moseley"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3368":{"rfcNumber":"RFC3368","href":"https://www.rfc-editor.org/rfc/rfc3368","title":"The 'go' URI Scheme for the Common Name Resolution Protocol","authors":["M. Mealling"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3369":{"rfcNumber":"RFC3369","href":"https://www.rfc-editor.org/rfc/rfc3369","title":"Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2002-08","status":"Proposed Standard","obsoletedBy":["RFC3852"],"obsoletes":["RFC2630","RFC3211"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3369","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3370":{"rfcNumber":"RFC3370","href":"https://www.rfc-editor.org/rfc/rfc3370","title":"Cryptographic Message Syntax (CMS) Algorithms","authors":["R. Housley"],"rawDate":"2002-08","status":"Proposed Standard","updatedBy":["RFC5754","RFC8702"],"obsoletes":["RFC2630","RFC3211"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3370","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3371":{"rfcNumber":"RFC3371","href":"https://www.rfc-editor.org/rfc/rfc3371","title":"Layer Two Tunneling Protocol \"L2TP\" Management Information Base","authors":["E. Caves","P. Calhoun","R. Wheeler"],"rawDate":"2002-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3372":{"rfcNumber":"RFC3372","href":"https://www.rfc-editor.org/rfc/rfc3372","title":"Session Initiation Protocol for Telephones (SIP-T): Context and Architectures","authors":["A. Vemuri","J. Peterson"],"rawDate":"2002-09","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3372","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3373":{"rfcNumber":"RFC3373","href":"https://www.rfc-editor.org/rfc/rfc3373","title":"Three-Way Handshake for Intermediate System to Intermediate System (IS-IS) Point-to-Point Adjacencies","authors":["D. Katz","R. Saluja"],"rawDate":"2002-09","status":"Informational","obsoletedBy":["RFC5303"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3374":{"rfcNumber":"RFC3374","href":"https://www.rfc-editor.org/rfc/rfc3374","title":"Problem Description: Reasons For Performing Context Transfers Between Nodes in an IP Access Network","authors":["J. Kempf, Ed."],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3375":{"rfcNumber":"RFC3375","href":"https://www.rfc-editor.org/rfc/rfc3375","title":"Generic Registry-Registrar Protocol Requirements","authors":["S. Hollenbeck"],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3376":{"rfcNumber":"RFC3376","href":"https://www.rfc-editor.org/rfc/rfc3376","title":"Internet Group Management Protocol, Version 3","authors":["B. Cain","S. Deering","I. Kouvelas","B. Fenner","A. Thyagarajan"],"rawDate":"2002-10","status":"Proposed Standard","updatedBy":["RFC4604"],"updates":["RFC2236"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3376","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3377":{"rfcNumber":"RFC3377","href":"https://www.rfc-editor.org/rfc/rfc3377","title":"Lightweight Directory Access Protocol (v3): Technical Specification","authors":["J. Hodges","R. Morgan"],"rawDate":"2002-09","status":"Proposed Standard","obsoletedBy":["RFC4510"],"updates":["RFC2251","RFC2252","RFC2253","RFC2254","RFC2255","RFC2256","RFC2829","RFC2830"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3377","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3378":{"rfcNumber":"RFC3378","href":"https://www.rfc-editor.org/rfc/rfc3378","title":"EtherIP: Tunneling Ethernet Frames in IP Datagrams","authors":["R. Housley","S. Hollenbeck"],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3379":{"rfcNumber":"RFC3379","href":"https://www.rfc-editor.org/rfc/rfc3379","title":"Delegated Path Validation and Delegated Path Discovery Protocol Requirements","authors":["D. Pinkas","R. Housley"],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc338":{"aliasOf":"rfc0338"},"rfc3380":{"rfcNumber":"RFC3380","href":"https://www.rfc-editor.org/rfc/rfc3380","title":"Internet Printing Protocol (IPP): Job and Printer Set Operations","authors":["T. Hastings","R. Herriot","C. Kugler","H. Lewis"],"rawDate":"2002-09","status":"Proposed Standard","updates":["RFC2910","RFC2911"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3380","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3381":{"rfcNumber":"RFC3381","href":"https://www.rfc-editor.org/rfc/rfc3381","title":"Internet Printing Protocol (IPP): Job Progress Attributes","authors":["T. Hastings","H. Lewis","R. Bergman"],"rawDate":"2002-09","status":"Proposed Standard","obsoletedBy":["RFC8011"],"updates":["RFC2910"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3381","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3382":{"rfcNumber":"RFC3382","href":"https://www.rfc-editor.org/rfc/rfc3382","title":"Internet Printing Protocol (IPP): The 'collection' attribute syntax","authors":["R. deBry","T. Hastings","R. Herriot","K. Ocke","P. Zehler"],"rawDate":"2002-09","status":"Proposed Standard","obsoletedBy":["RFC8010","RFC8011"],"updates":["RFC2910","RFC2911"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3382","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3383":{"rfcNumber":"RFC3383","href":"https://www.rfc-editor.org/rfc/rfc3383","title":"Internet Assigned Numbers Authority (IANA) Considerations for the Lightweight Directory Access Protocol (LDAP)","authors":["K. Zeilenga"],"rawDate":"2002-09","status":"Best Current Practice","obsoletedBy":["RFC4520"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3384":{"rfcNumber":"RFC3384","href":"https://www.rfc-editor.org/rfc/rfc3384","title":"Lightweight Directory Access Protocol (version 3) Replication Requirements","authors":["E. Stokes","R. Weiser","R. Moats","R. Huber"],"rawDate":"2002-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3385":{"rfcNumber":"RFC3385","href":"https://www.rfc-editor.org/rfc/rfc3385","title":"Internet Protocol Small Computer System Interface (iSCSI) Cyclic Redundancy Check (CRC)/Checksum Considerations","authors":["D. Sheinwald","J. Satran","P. Thaler","V. Cavanna"],"rawDate":"2002-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3385","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3386":{"rfcNumber":"RFC3386","href":"https://www.rfc-editor.org/rfc/rfc3386","title":"Network Hierarchy and Multilayer Survivability","authors":["W. Lai, Ed.","D. McDysan, Ed."],"rawDate":"2002-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3387":{"rfcNumber":"RFC3387","href":"https://www.rfc-editor.org/rfc/rfc3387","title":"Considerations from the Service Management Research Group (SMRG) on Quality of Service (QoS) in the IP Network","authors":["M. Eder","H. Chaskar","S. Nag"],"rawDate":"2002-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3388":{"rfcNumber":"RFC3388","href":"https://www.rfc-editor.org/rfc/rfc3388","title":"Grouping of Media Lines in the Session Description Protocol (SDP)","authors":["G. Camarillo","G. Eriksson","J. Holler","H. Schulzrinne"],"rawDate":"2002-12","status":"Proposed Standard","obsoletedBy":["RFC5888"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3389":{"rfcNumber":"RFC3389","href":"https://www.rfc-editor.org/rfc/rfc3389","title":"Real-time Transport Protocol (RTP) Payload for Comfort Noise (CN)","authors":["R. Zopf"],"rawDate":"2002-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3389","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc339":{"aliasOf":"rfc0339"},"rfc3390":{"rfcNumber":"RFC3390","href":"https://www.rfc-editor.org/rfc/rfc3390","title":"Increasing TCP's Initial Window","authors":["M. Allman","S. Floyd","C. Partridge"],"rawDate":"2002-10","status":"Proposed Standard","updates":["RFC2581"],"obsoletes":["RFC2414"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3390","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3391":{"rfcNumber":"RFC3391","href":"https://www.rfc-editor.org/rfc/rfc3391","title":"The MIME Application/Vnd.pwg-multiplexed Content-Type","authors":["R. Herriot"],"rawDate":"2002-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3392":{"rfcNumber":"RFC3392","href":"https://www.rfc-editor.org/rfc/rfc3392","title":"Capabilities Advertisement with BGP-4","authors":["R. Chandra","J. Scudder"],"rawDate":"2002-11","status":"Draft Standard","obsoletedBy":["RFC5492"],"obsoletes":["RFC2842"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3393":{"rfcNumber":"RFC3393","href":"https://www.rfc-editor.org/rfc/rfc3393","title":"IP Packet Delay Variation Metric for IP Performance Metrics (IPPM)","authors":["C. Demichelis","P. Chimento"],"rawDate":"2002-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3393","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3394":{"rfcNumber":"RFC3394","href":"https://www.rfc-editor.org/rfc/rfc3394","title":"Advanced Encryption Standard (AES) Key Wrap Algorithm","authors":["J. Schaad","R. Housley"],"rawDate":"2002-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3394","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3395":{"rfcNumber":"RFC3395","href":"https://www.rfc-editor.org/rfc/rfc3395","title":"Remote Network Monitoring MIB Protocol Identifier Reference Extensions","authors":["A. Bierman","C. Bucci","R. Dietz","A. Warth"],"rawDate":"2002-09","status":"Proposed Standard","updates":["RFC2895"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3396":{"rfcNumber":"RFC3396","href":"https://www.rfc-editor.org/rfc/rfc3396","title":"Encoding Long Options in the Dynamic Host Configuration Protocol (DHCPv4)","authors":["T. Lemon","S. Cheshire"],"rawDate":"2002-11","status":"Proposed Standard","updates":["RFC2131"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3397":{"rfcNumber":"RFC3397","href":"https://www.rfc-editor.org/rfc/rfc3397","title":"Dynamic Host Configuration Protocol (DHCP) Domain Search Option","authors":["B. Aboba","S. Cheshire"],"rawDate":"2002-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3398":{"rfcNumber":"RFC3398","href":"https://www.rfc-editor.org/rfc/rfc3398","title":"Integrated Services Digital Network (ISDN) User Part (ISUP) to Session Initiation Protocol (SIP) Mapping","authors":["G. Camarillo","A. B. Roach","J. Peterson","L. Ong"],"rawDate":"2002-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3398","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc34":{"aliasOf":"rfc0034"},"rfc340":{"aliasOf":"rfc0340"},"rfc3401":{"rfcNumber":"RFC3401","href":"https://www.rfc-editor.org/rfc/rfc3401","title":"Dynamic Delegation Discovery System (DDDS) Part One: The Comprehensive DDDS","authors":["M. Mealling"],"rawDate":"2002-10","status":"Informational","updates":["RFC2276"],"obsoletes":["RFC2915","RFC2168"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3401","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3402":{"rfcNumber":"RFC3402","href":"https://www.rfc-editor.org/rfc/rfc3402","title":"Dynamic Delegation Discovery System (DDDS) Part Two: The Algorithm","authors":["M. Mealling"],"rawDate":"2002-10","status":"Proposed Standard","obsoletes":["RFC2915","RFC2168"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3402","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3403":{"rfcNumber":"RFC3403","href":"https://www.rfc-editor.org/rfc/rfc3403","title":"Dynamic Delegation Discovery System (DDDS) Part Three: The Domain Name System (DNS) Database","authors":["M. Mealling"],"rawDate":"2002-10","status":"Proposed Standard","obsoletes":["RFC2915","RFC2168"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3403","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3404":{"rfcNumber":"RFC3404","href":"https://www.rfc-editor.org/rfc/rfc3404","title":"Dynamic Delegation Discovery System (DDDS) Part Four: The Uniform Resource Identifiers (URI)","authors":["M. Mealling"],"rawDate":"2002-10","status":"Proposed Standard","obsoletes":["RFC2915","RFC2168"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3404","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3405":{"rfcNumber":"RFC3405","href":"https://www.rfc-editor.org/rfc/rfc3405","title":"Dynamic Delegation Discovery System (DDDS) Part Five: URI.ARPA Assignment Procedures","authors":["M. Mealling"],"rawDate":"2002-10","status":"Best Current Practice","updatedBy":["RFC8958"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3405","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3406":{"rfcNumber":"RFC3406","href":"https://www.rfc-editor.org/rfc/rfc3406","title":"Uniform Resource Names (URN) Namespace Definition Mechanisms","authors":["L. Daigle","D. van Gulik","R. Iannella","P. Faltstrom"],"rawDate":"2002-10","status":"Best Current Practice","obsoletedBy":["RFC8141"],"obsoletes":["RFC2611"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3406","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3407":{"rfcNumber":"RFC3407","href":"https://www.rfc-editor.org/rfc/rfc3407","title":"Session Description Protocol (SDP) Simple Capability Declaration","authors":["F. Andreasen"],"rawDate":"2002-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3407","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3408":{"rfcNumber":"RFC3408","href":"https://www.rfc-editor.org/rfc/rfc3408","title":"Zero-byte Support for Bidirectional Reliable Mode (R-mode) in Extended Link-Layer Assisted RObust Header Compression (ROHC) Profile","authors":["Z. Liu","K. Le"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3409":{"rfcNumber":"RFC3409","href":"https://www.rfc-editor.org/rfc/rfc3409","title":"Lower Layer Guidelines for Robust RTP/UDP/IP Header Compression","authors":["K. Svanbro"],"rawDate":"2002-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3410":{"rfcNumber":"RFC3410","href":"https://www.rfc-editor.org/rfc/rfc3410","title":"Introduction and Applicability Statements for Internet-Standard Management Framework","authors":["J. Case","R. Mundy","D. Partain","B. Stewart"],"rawDate":"2002-12","status":"Informational","obsoletes":["RFC2570"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3410","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3411":{"rfcNumber":"RFC3411","href":"https://www.rfc-editor.org/rfc/rfc3411","title":"An Architecture for Describing Simple Network Management Protocol (SNMP) Management Frameworks","authors":["D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"2002-12","status":"Internet Standard","updatedBy":["RFC5343","RFC5590"],"obsoletes":["RFC2571"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3412":{"rfcNumber":"RFC3412","href":"https://www.rfc-editor.org/rfc/rfc3412","title":"Message Processing and Dispatching for the Simple Network Management Protocol (SNMP)","authors":["J. Case","D. Harrington","R. Presuhn","B. Wijnen"],"rawDate":"2002-12","status":"Internet Standard","updatedBy":["RFC5590"],"obsoletes":["RFC2572"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3412","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3413":{"rfcNumber":"RFC3413","href":"https://www.rfc-editor.org/rfc/rfc3413","title":"Simple Network Management Protocol (SNMP) Applications","authors":["D. Levi","P. Meyer","B. Stewart"],"rawDate":"2002-12","status":"Internet Standard","obsoletes":["RFC2573"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3413","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3414":{"rfcNumber":"RFC3414","href":"https://www.rfc-editor.org/rfc/rfc3414","title":"User-based Security Model (USM) for version 3 of the Simple Network Management Protocol (SNMPv3)","authors":["U. Blumenthal","B. Wijnen"],"rawDate":"2002-12","status":"Internet Standard","updatedBy":["RFC5590"],"obsoletes":["RFC2574"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3414","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3415":{"rfcNumber":"RFC3415","href":"https://www.rfc-editor.org/rfc/rfc3415","title":"View-based Access Control Model (VACM) for the Simple Network Management Protocol (SNMP)","authors":["B. Wijnen","R. Presuhn","K. McCloghrie"],"rawDate":"2002-12","status":"Internet Standard","obsoletes":["RFC2575"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3415","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3416":{"rfcNumber":"RFC3416","href":"https://www.rfc-editor.org/rfc/rfc3416","title":"Version 2 of the Protocol Operations for the Simple Network Management Protocol (SNMP)","authors":["R. Presuhn, Ed."],"rawDate":"2002-12","status":"Internet Standard","obsoletes":["RFC1905"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3416","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3417":{"rfcNumber":"RFC3417","href":"https://www.rfc-editor.org/rfc/rfc3417","title":"Transport Mappings for the Simple Network Management Protocol (SNMP)","authors":["R. Presuhn, Ed."],"rawDate":"2002-12","status":"Internet Standard","updatedBy":["RFC4789","RFC5590"],"obsoletes":["RFC1906"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3418":{"rfcNumber":"RFC3418","href":"https://www.rfc-editor.org/rfc/rfc3418","title":"Management Information Base (MIB) for the Simple Network Management Protocol (SNMP)","authors":["R. Presuhn, Ed."],"rawDate":"2002-12","status":"Internet Standard","obsoletes":["RFC1907"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3418","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3419":{"rfcNumber":"RFC3419","href":"https://www.rfc-editor.org/rfc/rfc3419","title":"Textual Conventions for Transport Addresses","authors":["M. Daniele","J. Schoenwaelder"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc342":{"aliasOf":"rfc0342"},"rfc3420":{"rfcNumber":"RFC3420","href":"https://www.rfc-editor.org/rfc/rfc3420","title":"Internet Media Type message/sipfrag","authors":["R. Sparks"],"rawDate":"2002-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3420","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3421":{"rfcNumber":"RFC3421","href":"https://www.rfc-editor.org/rfc/rfc3421","title":"Select and Sort Extensions for the Service Location Protocol (SLP)","authors":["W. Zhao","H. Schulzrinne","E. Guttman","C. Bisdikian","W. Jerome"],"rawDate":"2002-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3422":{"rfcNumber":"RFC3422","href":"https://www.rfc-editor.org/rfc/rfc3422","title":"Forwarding Media Access Control (MAC) Frames over Multiple Access Protocol over Synchronous Optical Network/Synchronous Digital Hierarchy (MAPOS)","authors":["O. Okamoto","M. Maruyama","T. Sajima"],"rawDate":"2002-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3423":{"rfcNumber":"RFC3423","href":"https://www.rfc-editor.org/rfc/rfc3423","title":"XACCT's Common Reliable Accounting for Network Element (CRANE) Protocol Specification Version 1.0","authors":["K. Zhang","E. Elkin"],"rawDate":"2002-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3424":{"rfcNumber":"RFC3424","href":"https://www.rfc-editor.org/rfc/rfc3424","title":"IAB Considerations for UNilateral Self-Address Fixing (UNSAF) Across Network Address Translation","authors":["L. Daigle, Ed.","IAB"],"rawDate":"2002-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3424","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3425":{"rfcNumber":"RFC3425","href":"https://www.rfc-editor.org/rfc/rfc3425","title":"Obsoleting IQUERY","authors":["D. Lawrence"],"rawDate":"2002-11","status":"Proposed Standard","updates":["RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3426":{"rfcNumber":"RFC3426","href":"https://www.rfc-editor.org/rfc/rfc3426","title":"General Architectural and Policy Considerations","authors":["S. Floyd"],"rawDate":"2002-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3427":{"rfcNumber":"RFC3427","href":"https://www.rfc-editor.org/rfc/rfc3427","title":"Change Process for the Session Initiation Protocol (SIP)","authors":["A. Mankin","S. Bradner","R. Mahy","D. Willis","J. Ott","B. Rosen"],"rawDate":"2002-12","status":"Best Current Practice","updatedBy":["RFC3968","RFC3969"],"obsoletedBy":["RFC5727"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3428":{"rfcNumber":"RFC3428","href":"https://www.rfc-editor.org/rfc/rfc3428","title":"Session Initiation Protocol (SIP) Extension for Instant Messaging","authors":["B. Campbell, Ed.","J. Rosenberg","H. Schulzrinne","C. Huitema","D. Gurle"],"rawDate":"2002-12","status":"Proposed Standard","updatedBy":["RFC8591"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3428","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3429":{"rfcNumber":"RFC3429","href":"https://www.rfc-editor.org/rfc/rfc3429","title":"Assignment of the 'OAM Alert Label' for Multiprotocol Label Switching Architecture (MPLS) Operation and Maintenance (OAM) Functions","authors":["H. Ohta"],"rawDate":"2002-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc343":{"aliasOf":"rfc0343"},"rfc3430":{"rfcNumber":"RFC3430","href":"https://www.rfc-editor.org/rfc/rfc3430","title":"Simple Network Management Protocol Over Transmission Control Protocol Transport Mapping","authors":["J. Schoenwaelder"],"rawDate":"2002-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3431":{"rfcNumber":"RFC3431","href":"https://www.rfc-editor.org/rfc/rfc3431","title":"Sieve Extension: Relational Tests","authors":["W. Segmuller"],"rawDate":"2002-12","status":"Proposed Standard","obsoletedBy":["RFC5231"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3432":{"rfcNumber":"RFC3432","href":"https://www.rfc-editor.org/rfc/rfc3432","title":"Network performance measurement with periodic streams","authors":["V. Raisanen","G. Grotefeld","A. Morton"],"rawDate":"2002-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3433":{"rfcNumber":"RFC3433","href":"https://www.rfc-editor.org/rfc/rfc3433","title":"Entity Sensor Management Information Base","authors":["A. Bierman","D. Romascanu","K.C. Norseth"],"rawDate":"2002-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3433","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3434":{"rfcNumber":"RFC3434","href":"https://www.rfc-editor.org/rfc/rfc3434","title":"Remote Monitoring MIB Extensions for High Capacity Alarms","authors":["A. Bierman","K. McCloghrie"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3435":{"rfcNumber":"RFC3435","href":"https://www.rfc-editor.org/rfc/rfc3435","title":"Media Gateway Control Protocol (MGCP) Version 1.0","authors":["F. Andreasen","B. Foster"],"rawDate":"2003-01","status":"Informational","updatedBy":["RFC3661"],"obsoletes":["RFC2705"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3435","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3436":{"rfcNumber":"RFC3436","href":"https://www.rfc-editor.org/rfc/rfc3436","title":"Transport Layer Security over Stream Control Transmission Protocol","authors":["A. Jungmaier","E. Rescorla","M. Tuexen"],"rawDate":"2002-12","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3437":{"rfcNumber":"RFC3437","href":"https://www.rfc-editor.org/rfc/rfc3437","title":"Layer-Two Tunneling Protocol Extensions for PPP Link Control Protocol Negotiation","authors":["W. Palter","W. Townsley"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3438":{"rfcNumber":"RFC3438","href":"https://www.rfc-editor.org/rfc/rfc3438","title":"Layer Two Tunneling Protocol (L2TP) Internet Assigned Numbers Authority (IANA) Considerations Update","authors":["W. Townsley"],"rawDate":"2002-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3439":{"rfcNumber":"RFC3439","href":"https://www.rfc-editor.org/rfc/rfc3439","title":"Some Internet Architectural Guidelines and Philosophy","authors":["R. Bush","D. Meyer"],"rawDate":"2002-12","status":"Informational","updates":["RFC1958"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3439","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc344":{"aliasOf":"rfc0344"},"rfc3440":{"rfcNumber":"RFC3440","href":"https://www.rfc-editor.org/rfc/rfc3440","title":"Definitions of Extension Managed Objects for Asymmetric Digital Subscriber Lines","authors":["F. Ly","G. Bathrick"],"rawDate":"2002-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3441":{"rfcNumber":"RFC3441","href":"https://www.rfc-editor.org/rfc/rfc3441","title":"Asynchronous Transfer Mode (ATM) Package for the Media Gateway Control Protocol (MGCP)","authors":["R. Kumar"],"rawDate":"2003-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3442":{"rfcNumber":"RFC3442","href":"https://www.rfc-editor.org/rfc/rfc3442","title":"The Classless Static Route Option for Dynamic Host Configuration Protocol (DHCP) version 4","authors":["T. Lemon","S. Cheshire","B. Volz"],"rawDate":"2002-12","status":"Proposed Standard","updates":["RFC2132"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3443":{"rfcNumber":"RFC3443","href":"https://www.rfc-editor.org/rfc/rfc3443","title":"Time To Live (TTL) Processing in Multi-Protocol Label Switching (MPLS) Networks","authors":["P. Agarwal","B. Akyol"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC5462"],"updates":["RFC3032"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3444":{"rfcNumber":"RFC3444","href":"https://www.rfc-editor.org/rfc/rfc3444","title":"On the Difference between Information Models and Data Models","authors":["A. Pras","J. Schoenwaelder"],"rawDate":"2003-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3445":{"rfcNumber":"RFC3445","href":"https://www.rfc-editor.org/rfc/rfc3445","title":"Limiting the Scope of the KEY Resource Record (RR)","authors":["D. Massey","S. Rose"],"rawDate":"2002-12","status":"Proposed Standard","obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC2535"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3445","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3446":{"rfcNumber":"RFC3446","href":"https://www.rfc-editor.org/rfc/rfc3446","title":"Anycast Rendevous Point (RP) mechanism using Protocol Independent Multicast (PIM) and Multicast Source Discovery Protocol (MSDP)","authors":["D. Kim","D. Meyer","H. Kilmer","D. Farinacci"],"rawDate":"2003-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3447":{"rfcNumber":"RFC3447","href":"https://www.rfc-editor.org/rfc/rfc3447","title":"Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1","authors":["J. Jonsson","B. Kaliski"],"rawDate":"2003-02","status":"Informational","obsoletedBy":["RFC8017"],"obsoletes":["RFC2437"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3447","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3448":{"rfcNumber":"RFC3448","href":"https://www.rfc-editor.org/rfc/rfc3448","title":"TCP Friendly Rate Control (TFRC): Protocol Specification","authors":["M. Handley","S. Floyd","J. Padhye","J. Widmer"],"rawDate":"2003-01","status":"Proposed Standard","obsoletedBy":["RFC5348"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3448","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3449":{"rfcNumber":"RFC3449","href":"https://www.rfc-editor.org/rfc/rfc3449","title":"TCP Performance Implications of Network Path Asymmetry","authors":["H. Balakrishnan","V. Padmanabhan","G. Fairhurst","M. Sooriyabandara"],"rawDate":"2002-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc345":{"aliasOf":"rfc0345"},"rfc3450":{"rfcNumber":"RFC3450","href":"https://www.rfc-editor.org/rfc/rfc3450","title":"Asynchronous Layered Coding (ALC) Protocol Instantiation","authors":["M. Luby","J. Gemmell","L. Vicisano","L. Rizzo","J. Crowcroft"],"rawDate":"2002-12","status":"Experimental","obsoletedBy":["RFC5775"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3451":{"rfcNumber":"RFC3451","href":"https://www.rfc-editor.org/rfc/rfc3451","title":"Layered Coding Transport (LCT) Building Block","authors":["M. Luby","J. Gemmell","L. Vicisano","L. Rizzo","M. Handley","J. Crowcroft"],"rawDate":"2002-12","status":"Experimental","obsoletedBy":["RFC5651"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3452":{"rfcNumber":"RFC3452","href":"https://www.rfc-editor.org/rfc/rfc3452","title":"Forward Error Correction (FEC) Building Block","authors":["M. Luby","L. Vicisano","J. Gemmell","L. Rizzo","M. Handley","J. Crowcroft"],"rawDate":"2002-12","status":"Experimental","obsoletedBy":["RFC5052","RFC5445"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3453":{"rfcNumber":"RFC3453","href":"https://www.rfc-editor.org/rfc/rfc3453","title":"The Use of Forward Error Correction (FEC) in Reliable Multicast","authors":["M. Luby","L. Vicisano","J. Gemmell","L. Rizzo","M. Handley","J. Crowcroft"],"rawDate":"2002-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3454":{"rfcNumber":"RFC3454","href":"https://www.rfc-editor.org/rfc/rfc3454","title":"Preparation of Internationalized Strings (\"stringprep\")","authors":["P. Hoffman","M. Blanchet"],"rawDate":"2002-12","status":"Proposed Standard","obsoletedBy":["RFC7564"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3454","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3455":{"rfcNumber":"RFC3455","href":"https://www.rfc-editor.org/rfc/rfc3455","title":"Private Header (P-Header) Extensions to the Session Initiation Protocol (SIP) for the 3rd-Generation Partnership Project (3GPP)","authors":["M. Garcia-Martin","E. Henrikson","D. Mills"],"rawDate":"2003-01","status":"Informational","obsoletedBy":["RFC7315"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3455","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3456":{"rfcNumber":"RFC3456","href":"https://www.rfc-editor.org/rfc/rfc3456","title":"Dynamic Host Configuration Protocol (DHCPv4) Configuration of IPsec Tunnel Mode","authors":["B. Patel","B. Aboba","S. Kelly","V. Gupta"],"rawDate":"2003-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3457":{"rfcNumber":"RFC3457","href":"https://www.rfc-editor.org/rfc/rfc3457","title":"Requirements for IPsec Remote Access Scenarios","authors":["S. Kelly","S. Ramamoorthi"],"rawDate":"2003-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3458":{"rfcNumber":"RFC3458","href":"https://www.rfc-editor.org/rfc/rfc3458","title":"Message Context for Internet Mail","authors":["E. Burger","E. Candell","C. Eliot","G. Klyne"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC3938"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3458","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3459":{"rfcNumber":"RFC3459","href":"https://www.rfc-editor.org/rfc/rfc3459","title":"Critical Content Multi-purpose Internet Mail Extensions (MIME) Parameter","authors":["E. Burger"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC5621"],"updates":["RFC3204"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc346":{"aliasOf":"rfc0346"},"rfc3460":{"rfcNumber":"RFC3460","href":"https://www.rfc-editor.org/rfc/rfc3460","title":"Policy Core Information Model (PCIM) Extensions","authors":["B. Moore, Ed."],"rawDate":"2003-01","status":"Proposed Standard","updates":["RFC3060"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3461":{"rfcNumber":"RFC3461","href":"https://www.rfc-editor.org/rfc/rfc3461","title":"Simple Mail Transfer Protocol (SMTP) Service Extension for Delivery Status Notifications (DSNs)","authors":["K. Moore"],"rawDate":"2003-01","status":"Draft Standard","updatedBy":["RFC3798","RFC3885","RFC5337","RFC6533","RFC8098"],"obsoletes":["RFC1891"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3461","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3462":{"rfcNumber":"RFC3462","href":"https://www.rfc-editor.org/rfc/rfc3462","title":"The Multipart/Report Content Type for the Reporting of Mail System Administrative Messages","authors":["G. Vaudreuil"],"rawDate":"2003-01","status":"Draft Standard","updatedBy":["RFC5337"],"obsoletedBy":["RFC6522"],"obsoletes":["RFC1892"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3463":{"rfcNumber":"RFC3463","href":"https://www.rfc-editor.org/rfc/rfc3463","title":"Enhanced Mail System Status Codes","authors":["G. Vaudreuil"],"rawDate":"2003-01","status":"Draft Standard","updatedBy":["RFC3886","RFC4468","RFC4865","RFC4954","RFC5248"],"obsoletes":["RFC1893"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3463","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3464":{"rfcNumber":"RFC3464","href":"https://www.rfc-editor.org/rfc/rfc3464","title":"An Extensible Message Format for Delivery Status Notifications","authors":["K. Moore","G. Vaudreuil"],"rawDate":"2003-01","status":"Draft Standard","updatedBy":["RFC4865","RFC5337","RFC6533"],"obsoletes":["RFC1894"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3464","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3465":{"rfcNumber":"RFC3465","href":"https://www.rfc-editor.org/rfc/rfc3465","title":"TCP Congestion Control with Appropriate Byte Counting (ABC)","authors":["M. Allman"],"rawDate":"2003-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3466":{"rfcNumber":"RFC3466","href":"https://www.rfc-editor.org/rfc/rfc3466","title":"A Model for Content Internetworking (CDI)","authors":["M. Day","B. Cain","G. Tomlinson","P. Rzewski"],"rawDate":"2003-02","status":"Informational","obsoletedBy":["RFC7336"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3467":{"rfcNumber":"RFC3467","href":"https://www.rfc-editor.org/rfc/rfc3467","title":"Role of the Domain Name System (DNS)","authors":["J. Klensin"],"rawDate":"2003-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3468":{"rfcNumber":"RFC3468","href":"https://www.rfc-editor.org/rfc/rfc3468","title":"The Multiprotocol Label Switching (MPLS) Working Group decision on MPLS signaling protocols","authors":["L. Andersson","G. Swallow"],"rawDate":"2003-02","status":"Informational","updates":["RFC3212","RFC3472","RFC3475","RFC3476"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3468","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3469":{"rfcNumber":"RFC3469","href":"https://www.rfc-editor.org/rfc/rfc3469","title":"Framework for Multi-Protocol Label Switching (MPLS)-based Recovery","authors":["V. Sharma, Ed.","F. Hellstrand, Ed."],"rawDate":"2003-02","status":"Informational","updatedBy":["RFC5462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc347":{"aliasOf":"rfc0347"},"rfc3470":{"rfcNumber":"RFC3470","href":"https://www.rfc-editor.org/rfc/rfc3470","title":"Guidelines for the Use of Extensible Markup Language (XML) within IETF Protocols","authors":["S. Hollenbeck","M. Rose","L. Masinter"],"rawDate":"2003-01","status":"Best Current Practice","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3470","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3471":{"rfcNumber":"RFC3471","href":"https://www.rfc-editor.org/rfc/rfc3471","title":"Generalized Multi-Protocol Label Switching (GMPLS) Signaling Functional Description","authors":["L. Berger, Ed."],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC4201","RFC4328","RFC4872","RFC6002","RFC6003","RFC6205","RFC7074","RFC7699","RFC8359"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3471","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3472":{"rfcNumber":"RFC3472","href":"https://www.rfc-editor.org/rfc/rfc3472","title":"Generalized Multi-Protocol Label Switching (GMPLS) Signaling Constraint-based Routed Label Distribution Protocol (CR-LDP) Extensions","authors":["P. Ashwood-Smith, Ed.","L. Berger, Ed."],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC3468","RFC4201"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3473":{"rfcNumber":"RFC3473","href":"https://www.rfc-editor.org/rfc/rfc3473","title":"Generalized Multi-Protocol Label Switching (GMPLS) Signaling Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Extensions","authors":["L. Berger, Ed."],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC4003","RFC4201","RFC4420","RFC4783","RFC4874","RFC4873","RFC4974","RFC5063","RFC5151","RFC5420","RFC6002","RFC6003","RFC6780","RFC8359"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3473","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3474":{"rfcNumber":"RFC3474","href":"https://www.rfc-editor.org/rfc/rfc3474","title":"Documentation of IANA assignments for Generalized MultiProtocol Label Switching (GMPLS) Resource Reservation Protocol - Traffic Engineering (RSVP-TE) Usage and Extensions for Automatically Switched Optical Network (ASON)","authors":["Z. Lin","D. Pendarakis"],"rawDate":"2003-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3474","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3475":{"rfcNumber":"RFC3475","href":"https://www.rfc-editor.org/rfc/rfc3475","title":"Documentation of IANA assignments for Constraint-Based LSP setup using LDP (CR-LDP) Extensions for Automatic Switched Optical Network (ASON)","authors":["O. Aboul-Magd"],"rawDate":"2003-03","status":"Informational","updatedBy":["RFC3468"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3476":{"rfcNumber":"RFC3476","href":"https://www.rfc-editor.org/rfc/rfc3476","title":"Documentation of IANA Assignments for Label Distribution Protocol (LDP), Resource ReSerVation Protocol (RSVP), and Resource ReSerVation Protocol-Traffic Engineering (RSVP-TE) Extensions for Optical UNI Signaling","authors":["B. Rajagopalan"],"rawDate":"2003-03","status":"Informational","updatedBy":["RFC3468"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3477":{"rfcNumber":"RFC3477","href":"https://www.rfc-editor.org/rfc/rfc3477","title":"Signalling Unnumbered Links in Resource ReSerVation Protocol - Traffic Engineering (RSVP-TE)","authors":["K. Kompella","Y. Rekhter"],"rawDate":"2003-01","status":"Proposed Standard","updatedBy":["RFC6107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3478":{"rfcNumber":"RFC3478","href":"https://www.rfc-editor.org/rfc/rfc3478","title":"Graceful Restart Mechanism for Label Distribution Protocol","authors":["M. Leelanivas","Y. Rekhter","R. Aggarwal"],"rawDate":"2003-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3479":{"rfcNumber":"RFC3479","href":"https://www.rfc-editor.org/rfc/rfc3479","title":"Fault Tolerance for the Label Distribution Protocol (LDP)","authors":["A. Farrel, Ed."],"rawDate":"2003-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc348":{"aliasOf":"rfc0348"},"rfc3480":{"rfcNumber":"RFC3480","href":"https://www.rfc-editor.org/rfc/rfc3480","title":"Signalling Unnumbered Links in CR-LDP (Constraint-Routing Label Distribution Protocol)","authors":["K. Kompella","Y. Rekhter","A. Kullberg"],"rawDate":"2003-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3481":{"rfcNumber":"RFC3481","href":"https://www.rfc-editor.org/rfc/rfc3481","title":"TCP over Second (2.5G) and Third (3G) Generation Wireless Networks","authors":["H. Inamura, Ed.","G. Montenegro, Ed.","R. Ludwig","A. Gurtov","F. Khafizov"],"rawDate":"2003-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3482":{"rfcNumber":"RFC3482","href":"https://www.rfc-editor.org/rfc/rfc3482","title":"Number Portability in the Global Switched Telephone Network (GSTN): An Overview","authors":["M. Foster","T. McGarry","J. Yu"],"rawDate":"2003-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3483":{"rfcNumber":"RFC3483","href":"https://www.rfc-editor.org/rfc/rfc3483","title":"Framework for Policy Usage Feedback for Common Open Policy Service with Policy Provisioning (COPS-PR)","authors":["D. Rawlins","A. Kulkarni","M. Bokaemper","K. Chan"],"rawDate":"2003-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3484":{"rfcNumber":"RFC3484","href":"https://www.rfc-editor.org/rfc/rfc3484","title":"Default Address Selection for Internet Protocol version 6 (IPv6)","authors":["R. Draves"],"rawDate":"2003-02","status":"Proposed Standard","obsoletedBy":["RFC6724"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3485":{"rfcNumber":"RFC3485","href":"https://www.rfc-editor.org/rfc/rfc3485","title":"The Session Initiation Protocol (SIP) and Session Description Protocol (SDP) Static Dictionary for Signaling Compression (SigComp)","authors":["M. Garcia-Martin","C. Bormann","J. Ott","R. Price","A. B. Roach"],"rawDate":"2003-02","status":"Proposed Standard","updatedBy":["RFC4896"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3486":{"rfcNumber":"RFC3486","href":"https://www.rfc-editor.org/rfc/rfc3486","title":"Compressing the Session Initiation Protocol (SIP)","authors":["G. Camarillo"],"rawDate":"2003-02","status":"Proposed Standard","updatedBy":["RFC5049"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3487":{"rfcNumber":"RFC3487","href":"https://www.rfc-editor.org/rfc/rfc3487","title":"Requirements for Resource Priority Mechanisms for the Session Initiation Protocol (SIP)","authors":["H. Schulzrinne"],"rawDate":"2003-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3488":{"rfcNumber":"RFC3488","href":"https://www.rfc-editor.org/rfc/rfc3488","title":"Cisco Systems Router-port Group Management Protocol (RGMP)","authors":["I. Wu","T. Eckert"],"rawDate":"2003-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3489":{"rfcNumber":"RFC3489","href":"https://www.rfc-editor.org/rfc/rfc3489","title":"STUN - Simple Traversal of User Datagram Protocol (UDP) Through Network Address Translators (NATs)","authors":["J. Rosenberg","J. Weinberger","C. Huitema","R. Mahy"],"rawDate":"2003-03","status":"Proposed Standard","obsoletedBy":["RFC5389"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc349":{"aliasOf":"rfc0349"},"rfc3490":{"rfcNumber":"RFC3490","href":"https://www.rfc-editor.org/rfc/rfc3490","title":"Internationalizing Domain Names in Applications (IDNA)","authors":["P. Faltstrom","P. Hoffman","A. Costello"],"rawDate":"2003-03","status":"Proposed Standard","obsoletedBy":["RFC5890","RFC5891"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3490","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3491":{"rfcNumber":"RFC3491","href":"https://www.rfc-editor.org/rfc/rfc3491","title":"Nameprep: A Stringprep Profile for Internationalized Domain Names (IDN)","authors":["P. Hoffman","M. Blanchet"],"rawDate":"2003-03","status":"Proposed Standard","obsoletedBy":["RFC5891"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3492":{"rfcNumber":"RFC3492","href":"https://www.rfc-editor.org/rfc/rfc3492","title":"Punycode: A Bootstring encoding of Unicode for Internationalized Domain Names in Applications (IDNA)","authors":["A. Costello"],"rawDate":"2003-03","status":"Proposed Standard","updatedBy":["RFC5891"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3492","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3493":{"rfcNumber":"RFC3493","href":"https://www.rfc-editor.org/rfc/rfc3493","title":"Basic Socket Interface Extensions for IPv6","authors":["R. Gilligan","S. Thomson","J. Bound","J. McCann","W. Stevens"],"rawDate":"2003-02","status":"Informational","obsoletes":["RFC2553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3494":{"rfcNumber":"RFC3494","href":"https://www.rfc-editor.org/rfc/rfc3494","title":"Lightweight Directory Access Protocol version 2 (LDAPv2) to Historic Status","authors":["K. Zeilenga"],"rawDate":"2003-03","status":"Informational","obsoletes":["RFC1484","RFC1485","RFC1487","RFC1777","RFC1778","RFC1779","RFC1781","RFC2559"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3494","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3495":{"rfcNumber":"RFC3495","href":"https://www.rfc-editor.org/rfc/rfc3495","title":"Dynamic Host Configuration Protocol (DHCP) Option for CableLabs Client Configuration","authors":["B. Beser","P. Duffy, Ed."],"rawDate":"2003-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3495","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3496":{"rfcNumber":"RFC3496","href":"https://www.rfc-editor.org/rfc/rfc3496","title":"Protocol Extension for Support of Asynchronous Transfer Mode (ATM) Service Class-aware Multiprotocol Label Switching (MPLS) Traffic Engineering","authors":["A. G. Malis","T. Hsiao"],"rawDate":"2003-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3497":{"rfcNumber":"RFC3497","href":"https://www.rfc-editor.org/rfc/rfc3497","title":"RTP Payload Format for Society of Motion Picture and Television Engineers (SMPTE) 292M Video","authors":["L. Gharai","C. Perkins","G. Goncher","A. Mankin"],"rawDate":"2003-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3498":{"rfcNumber":"RFC3498","href":"https://www.rfc-editor.org/rfc/rfc3498","title":"Definitions of Managed Objects for Synchronous Optical Network (SONET) Linear Automatic Protection Switching (APS) Architectures","authors":["J. Kuhfeld","J. Johnson","M. Thatcher"],"rawDate":"2003-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3499":{"rfcNumber":"RFC3499","href":"https://www.rfc-editor.org/rfc/rfc3499","title":"Request for Comments Summary RFC Numbers 3400-3499","authors":["S. Ginoza"],"rawDate":"2003-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc35":{"aliasOf":"rfc0035"},"rfc350":{"aliasOf":"rfc0350"},"rfc3501":{"rfcNumber":"RFC3501","href":"https://www.rfc-editor.org/rfc/rfc3501","title":"INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1","authors":["M. Crispin"],"rawDate":"2003-03","status":"Proposed Standard","updatedBy":["RFC4466","RFC4469","RFC4551","RFC5032","RFC5182","RFC5738","RFC6186","RFC6858","RFC7817","RFC8314","RFC8437","RFC8474","RFC8996"],"obsoletedBy":["RFC9051"],"obsoletes":["RFC2060"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3501","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3502":{"rfcNumber":"RFC3502","href":"https://www.rfc-editor.org/rfc/rfc3502","title":"Internet Message Access Protocol (IMAP) - MULTIAPPEND Extension","authors":["M. Crispin"],"rawDate":"2003-03","status":"Proposed Standard","updatedBy":["RFC4466","RFC4469"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3503":{"rfcNumber":"RFC3503","href":"https://www.rfc-editor.org/rfc/rfc3503","title":"Message Disposition Notification (MDN) profile for Internet Message Access Protocol (IMAP)","authors":["A. Melnikov"],"rawDate":"2003-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3504":{"rfcNumber":"RFC3504","href":"https://www.rfc-editor.org/rfc/rfc3504","title":"Internet Open Trading Protocol (IOTP) Version 1, Errata","authors":["D. Eastlake"],"rawDate":"2003-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3504","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3505":{"rfcNumber":"RFC3505","href":"https://www.rfc-editor.org/rfc/rfc3505","title":"Electronic Commerce Modeling Language (ECML): Version 2 Requirements","authors":["D. Eastlake"],"rawDate":"2003-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3506":{"rfcNumber":"RFC3506","href":"https://www.rfc-editor.org/rfc/rfc3506","title":"Requirements and Design for Voucher Trading System (VTS)","authors":["K. Fujimura","D. Eastlake"],"rawDate":"2003-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3507":{"rfcNumber":"RFC3507","href":"https://www.rfc-editor.org/rfc/rfc3507","title":"Internet Content Adaptation Protocol (ICAP)","authors":["J. Elson","A. Cerpa"],"rawDate":"2003-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3507","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3508":{"rfcNumber":"RFC3508","href":"https://www.rfc-editor.org/rfc/rfc3508","title":"H.323 Uniform Resource Locator (URL) Scheme Registration","authors":["O. Levin"],"rawDate":"2003-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3509":{"rfcNumber":"RFC3509","href":"https://www.rfc-editor.org/rfc/rfc3509","title":"Alternative Implementations of OSPF Area Border Routers","authors":["A. Zinin","A. Lindem","D. Yeung"],"rawDate":"2003-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc351":{"aliasOf":"rfc0351"},"rfc3510":{"rfcNumber":"RFC3510","href":"https://www.rfc-editor.org/rfc/rfc3510","title":"Internet Printing Protocol/1.1: IPP URL Scheme","authors":["R. Herriot","I. McDonald"],"rawDate":"2003-04","status":"Proposed Standard","updates":["RFC2910"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3511":{"rfcNumber":"RFC3511","href":"https://www.rfc-editor.org/rfc/rfc3511","title":"Benchmarking Methodology for Firewall Performance","authors":["B. Hickman","D. Newman","S. Tadjudin","T. Martin"],"rawDate":"2003-04","status":"Informational","obsoletedBy":["RFC9411"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3512":{"rfcNumber":"RFC3512","href":"https://www.rfc-editor.org/rfc/rfc3512","title":"Configuring Networks and Devices with Simple Network Management Protocol (SNMP)","authors":["M. MacFaden","D. Partain","J. Saperia","W. Tackabury"],"rawDate":"2003-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3513":{"rfcNumber":"RFC3513","href":"https://www.rfc-editor.org/rfc/rfc3513","title":"Internet Protocol Version 6 (IPv6) Addressing Architecture","authors":["R. Hinden","S. Deering"],"rawDate":"2003-04","status":"Proposed Standard","obsoletedBy":["RFC4291"],"obsoletes":["RFC2373"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3514":{"rfcNumber":"RFC3514","href":"https://www.rfc-editor.org/rfc/rfc3514","title":"The Security Flag in the IPv4 Header","authors":["S. Bellovin"],"rawDate":"2003-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3514","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3515":{"rfcNumber":"RFC3515","href":"https://www.rfc-editor.org/rfc/rfc3515","title":"The Session Initiation Protocol (SIP) Refer Method","authors":["R. Sparks"],"rawDate":"2003-04","status":"Proposed Standard","updatedBy":["RFC7647","RFC8217"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3515","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3516":{"rfcNumber":"RFC3516","href":"https://www.rfc-editor.org/rfc/rfc3516","title":"IMAP4 Binary Content Extension","authors":["L. Nerenberg"],"rawDate":"2003-04","status":"Proposed Standard","updatedBy":["RFC4466"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3516","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3517":{"rfcNumber":"RFC3517","href":"https://www.rfc-editor.org/rfc/rfc3517","title":"A Conservative Selective Acknowledgment (SACK)-based Loss Recovery Algorithm for TCP","authors":["E. Blanton","M. Allman","K. Fall","L. Wang"],"rawDate":"2003-04","status":"Proposed Standard","obsoletedBy":["RFC6675"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3518":{"rfcNumber":"RFC3518","href":"https://www.rfc-editor.org/rfc/rfc3518","title":"Point-to-Point Protocol (PPP) Bridging Control Protocol (BCP)","authors":["M. Higashiyama","F. Baker","T. Liao"],"rawDate":"2003-04","status":"Proposed Standard","obsoletes":["RFC2878"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3519":{"rfcNumber":"RFC3519","href":"https://www.rfc-editor.org/rfc/rfc3519","title":"Mobile IP Traversal of Network Address Translation (NAT) Devices","authors":["H. Levkowetz","S. Vaarala"],"rawDate":"2003-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc352":{"aliasOf":"rfc0352"},"rfc3520":{"rfcNumber":"RFC3520","href":"https://www.rfc-editor.org/rfc/rfc3520","title":"Session Authorization Policy Element","authors":["L-N. Hamer","B. Gage","B. Kosinski","H. Shieh"],"rawDate":"2003-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3521":{"rfcNumber":"RFC3521","href":"https://www.rfc-editor.org/rfc/rfc3521","title":"Framework for Session Set-up with Media Authorization","authors":["L-N. Hamer","B. Gage","H. Shieh"],"rawDate":"2003-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3522":{"rfcNumber":"RFC3522","href":"https://www.rfc-editor.org/rfc/rfc3522","title":"The Eifel Detection Algorithm for TCP","authors":["R. Ludwig","M. Meyer"],"rawDate":"2003-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3523":{"rfcNumber":"RFC3523","href":"https://www.rfc-editor.org/rfc/rfc3523","title":"Internet Emergency Preparedness (IEPREP) Telephony Topology Terminology","authors":["J. Polk"],"rawDate":"2003-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3524":{"rfcNumber":"RFC3524","href":"https://www.rfc-editor.org/rfc/rfc3524","title":"Mapping of Media Streams to Resource Reservation Flows","authors":["G. Camarillo","A. Monrad"],"rawDate":"2003-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3525":{"rfcNumber":"RFC3525","href":"https://www.rfc-editor.org/rfc/rfc3525","title":"Gateway Control Protocol Version 1","authors":["C. Groves, Ed.","M. Pantaleo, Ed.","T. Anderson, Ed.","T. Taylor, Ed."],"rawDate":"2003-06","status":"Historic","obsoletedBy":["RFC5125"],"obsoletes":["RFC3015"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3525","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3526":{"rfcNumber":"RFC3526","href":"https://www.rfc-editor.org/rfc/rfc3526","title":"More Modular Exponential (MODP) Diffie-Hellman groups for Internet Key Exchange (IKE)","authors":["T. Kivinen","M. Kojo"],"rawDate":"2003-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3526","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3527":{"rfcNumber":"RFC3527","href":"https://www.rfc-editor.org/rfc/rfc3527","title":"Link Selection sub-option for the Relay Agent Information Option for DHCPv4","authors":["K. Kinnear","M. Stapp","R. Johnson","J. Kumarasamy"],"rawDate":"2003-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3528":{"rfcNumber":"RFC3528","href":"https://www.rfc-editor.org/rfc/rfc3528","title":"Mesh-enhanced Service Location Protocol (mSLP)","authors":["W. Zhao","H. Schulzrinne","E. Guttman"],"rawDate":"2003-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3529":{"rfcNumber":"RFC3529","href":"https://www.rfc-editor.org/rfc/rfc3529","title":"Using Extensible Markup Language-Remote Procedure Calling (XML-RPC) in Blocks Extensible Exchange Protocol (BEEP)","authors":["W. Harold"],"rawDate":"2003-04","status":"Experimental","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc353":{"aliasOf":"rfc0353"},"rfc3530":{"rfcNumber":"RFC3530","href":"https://www.rfc-editor.org/rfc/rfc3530","title":"Network File System (NFS) version 4 Protocol","authors":["S. Shepler","B. Callaghan","D. Robinson","R. Thurlow","C. Beame","M. Eisler","D. Noveck"],"rawDate":"2003-04","status":"Proposed Standard","obsoletedBy":["RFC7530"],"obsoletes":["RFC3010"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3530","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3531":{"rfcNumber":"RFC3531","href":"https://www.rfc-editor.org/rfc/rfc3531","title":"A Flexible Method for Managing the Assignment of Bits of an IPv6 Address Block","authors":["M. Blanchet"],"rawDate":"2003-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3532":{"rfcNumber":"RFC3532","href":"https://www.rfc-editor.org/rfc/rfc3532","title":"Requirements for the Dynamic Partitioning of Switching Elements","authors":["T. Anderson","J. Buerkle"],"rawDate":"2003-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3533":{"rfcNumber":"RFC3533","href":"https://www.rfc-editor.org/rfc/rfc3533","title":"The Ogg Encapsulation Format Version 0","authors":["S. Pfeiffer"],"rawDate":"2003-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3533","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3534":{"rfcNumber":"RFC3534","href":"https://www.rfc-editor.org/rfc/rfc3534","title":"The application/ogg Media Type","authors":["L. Walleij"],"rawDate":"2003-05","status":"Proposed Standard","obsoletedBy":["RFC5334"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3535":{"rfcNumber":"RFC3535","href":"https://www.rfc-editor.org/rfc/rfc3535","title":"Overview of the 2002 IAB Network Management Workshop","authors":["J. Schoenwaelder"],"rawDate":"2003-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3536":{"rfcNumber":"RFC3536","href":"https://www.rfc-editor.org/rfc/rfc3536","title":"Terminology Used in Internationalization in the IETF","authors":["P. Hoffman"],"rawDate":"2003-05","status":"Informational","obsoletedBy":["RFC6365"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3537":{"rfcNumber":"RFC3537","href":"https://www.rfc-editor.org/rfc/rfc3537","title":"Wrapping a Hashed Message Authentication Code (HMAC) key with a Triple-Data Encryption Standard (DES) Key or an Advanced Encryption Standard (AES) Key","authors":["J. Schaad","R. Housley"],"rawDate":"2003-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3537","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3538":{"rfcNumber":"RFC3538","href":"https://www.rfc-editor.org/rfc/rfc3538","title":"Secure Electronic Transaction (SET) Supplement for the v1.0 Internet Open Trading Protocol (IOTP)","authors":["Y. Kawatsura"],"rawDate":"2003-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3539":{"rfcNumber":"RFC3539","href":"https://www.rfc-editor.org/rfc/rfc3539","title":"Authentication, Authorization and Accounting (AAA) Transport Profile","authors":["B. Aboba","J. Wood"],"rawDate":"2003-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc354":{"aliasOf":"rfc0354"},"rfc3540":{"rfcNumber":"RFC3540","href":"https://www.rfc-editor.org/rfc/rfc3540","title":"Robust Explicit Congestion Notification (ECN) Signaling with Nonces","authors":["N. Spring","D. Wetherall","D. Ely"],"rawDate":"2003-06","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3541":{"rfcNumber":"RFC3541","href":"https://www.rfc-editor.org/rfc/rfc3541","title":"A Uniform Resource Name (URN) Namespace for the Web3D Consortium (Web3D)","authors":["A. Walsh"],"rawDate":"2003-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3542":{"rfcNumber":"RFC3542","href":"https://www.rfc-editor.org/rfc/rfc3542","title":"Advanced Sockets Application Program Interface (API) for IPv6","authors":["W. Stevens","M. Thomas","E. Nordmark","T. Jinmei"],"rawDate":"2003-05","status":"Informational","obsoletes":["RFC2292"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3542","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3543":{"rfcNumber":"RFC3543","href":"https://www.rfc-editor.org/rfc/rfc3543","title":"Registration Revocation in Mobile IPv4","authors":["S. Glass","M. Chandra"],"rawDate":"2003-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3544":{"rfcNumber":"RFC3544","href":"https://www.rfc-editor.org/rfc/rfc3544","title":"IP Header Compression over PPP","authors":["T. Koren","S. Casner","C. Bormann"],"rawDate":"2003-07","status":"Proposed Standard","obsoletes":["RFC2509"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3545":{"rfcNumber":"RFC3545","href":"https://www.rfc-editor.org/rfc/rfc3545","title":"Enhanced Compressed RTP (CRTP) for Links with High Delay, Packet Loss and Reordering","authors":["T. Koren","S. Casner","J. Geevarghese","B. Thompson","P. Ruddy"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3546":{"rfcNumber":"RFC3546","href":"https://www.rfc-editor.org/rfc/rfc3546","title":"Transport Layer Security (TLS) Extensions","authors":["S. Blake-Wilson","M. Nystrom","D. Hopwood","J. Mikkelsen","T. Wright"],"rawDate":"2003-06","status":"Proposed Standard","obsoletedBy":["RFC4366"],"updates":["RFC2246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3547":{"rfcNumber":"RFC3547","href":"https://www.rfc-editor.org/rfc/rfc3547","title":"The Group Domain of Interpretation","authors":["M. Baugher","B. Weis","T. Hardjono","H. Harney"],"rawDate":"2003-07","status":"Proposed Standard","obsoletedBy":["RFC6407"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3548":{"rfcNumber":"RFC3548","href":"https://www.rfc-editor.org/rfc/rfc3548","title":"The Base16, Base32, and Base64 Data Encodings","authors":["S. Josefsson, Ed."],"rawDate":"2003-07","status":"Informational","obsoletedBy":["RFC4648"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3548","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3549":{"rfcNumber":"RFC3549","href":"https://www.rfc-editor.org/rfc/rfc3549","title":"Linux Netlink as an IP Services Protocol","authors":["J. Salim","H. Khosravi","A. Kleen","A. Kuznetsov"],"rawDate":"2003-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3549","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc355":{"aliasOf":"rfc0355"},"rfc3550":{"rfcNumber":"RFC3550","href":"https://www.rfc-editor.org/rfc/rfc3550","title":"RTP: A Transport Protocol for Real-Time Applications","authors":["H. Schulzrinne","S. Casner","R. Frederick","V. Jacobson"],"rawDate":"2003-07","status":"Internet Standard","updatedBy":["RFC5506","RFC5761","RFC6051","RFC6222","RFC7022","RFC7160","RFC7164","RFC8083","RFC8108","RFC8860"],"obsoletes":["RFC1889"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3550","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3551":{"rfcNumber":"RFC3551","href":"https://www.rfc-editor.org/rfc/rfc3551","title":"RTP Profile for Audio and Video Conferences with Minimal Control","authors":["H. Schulzrinne","S. Casner"],"rawDate":"2003-07","status":"Internet Standard","updatedBy":["RFC5761","RFC7007","RFC8860"],"obsoletes":["RFC1890"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3552":{"rfcNumber":"RFC3552","href":"https://www.rfc-editor.org/rfc/rfc3552","title":"Guidelines for Writing RFC Text on Security Considerations","authors":["E. Rescorla","B. Korver"],"rawDate":"2003-07","status":"Best Current Practice","updatedBy":["RFC8996","RFC9416"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3552","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3553":{"rfcNumber":"RFC3553","href":"https://www.rfc-editor.org/rfc/rfc3553","title":"An IETF URN Sub-namespace for Registered Protocol Parameters","authors":["M. Mealling","L. Masinter","T. Hardie","G. Klyne"],"rawDate":"2003-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3554":{"rfcNumber":"RFC3554","href":"https://www.rfc-editor.org/rfc/rfc3554","title":"On the Use of Stream Control Transmission Protocol (SCTP) with IPsec","authors":["S. Bellovin","J. Ioannidis","A. Keromytis","R. Stewart"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3555":{"rfcNumber":"RFC3555","href":"https://www.rfc-editor.org/rfc/rfc3555","title":"MIME Type Registration of RTP Payload Formats","authors":["S. Casner","P. Hoschka"],"rawDate":"2003-07","status":"Proposed Standard","updatedBy":["RFC3625","RFC4629"],"obsoletedBy":["RFC4855","RFC4856"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3556":{"rfcNumber":"RFC3556","href":"https://www.rfc-editor.org/rfc/rfc3556","title":"Session Description Protocol (SDP) Bandwidth Modifiers for RTP Control Protocol (RTCP) Bandwidth","authors":["S. Casner"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3557":{"rfcNumber":"RFC3557","href":"https://www.rfc-editor.org/rfc/rfc3557","title":"RTP Payload Format for European Telecommunications Standards Institute (ETSI) European Standard ES 201 108 Distributed Speech Recognition Encoding","authors":["Q. Xie, Ed."],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3558":{"rfcNumber":"RFC3558","href":"https://www.rfc-editor.org/rfc/rfc3558","title":"RTP Payload Format for Enhanced Variable Rate Codecs (EVRC) and Selectable Mode Vocoders (SMV)","authors":["A. Li"],"rawDate":"2003-07","status":"Proposed Standard","updatedBy":["RFC4788"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3559":{"rfcNumber":"RFC3559","href":"https://www.rfc-editor.org/rfc/rfc3559","title":"Multicast Address Allocation MIB","authors":["D. Thaler"],"rawDate":"2003-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc356":{"aliasOf":"rfc0356"},"rfc3560":{"rfcNumber":"RFC3560","href":"https://www.rfc-editor.org/rfc/rfc3560","title":"Use of the RSAES-OAEP Key Transport Algorithm in Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3561":{"rfcNumber":"RFC3561","href":"https://www.rfc-editor.org/rfc/rfc3561","title":"Ad hoc On-Demand Distance Vector (AODV) Routing","authors":["C. Perkins","E. Belding-Royer","S. Das"],"rawDate":"2003-07","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3561","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3562":{"rfcNumber":"RFC3562","href":"https://www.rfc-editor.org/rfc/rfc3562","title":"Key Management Considerations for the TCP MD5 Signature Option","authors":["M. Leech"],"rawDate":"2003-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3563":{"rfcNumber":"RFC3563","href":"https://www.rfc-editor.org/rfc/rfc3563","title":"Cooperative Agreement Between the ISOC/IETF and ISO/IEC Joint Technical Committee 1/Sub Committee 6 (JTC1/SC6) on IS-IS Routing Protocol Development","authors":["A. Zinin"],"rawDate":"2003-07","status":"Informational","updatedBy":["RFC6233"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3564":{"rfcNumber":"RFC3564","href":"https://www.rfc-editor.org/rfc/rfc3564","title":"Requirements for Support of Differentiated Services-aware MPLS Traffic Engineering","authors":["F. Le Faucheur","W. Lai"],"rawDate":"2003-07","status":"Informational","updatedBy":["RFC5462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3565":{"rfcNumber":"RFC3565","href":"https://www.rfc-editor.org/rfc/rfc3565","title":"Use of the Advanced Encryption Standard (AES) Encryption Algorithm in Cryptographic Message Syntax (CMS)","authors":["J. Schaad"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3566":{"rfcNumber":"RFC3566","href":"https://www.rfc-editor.org/rfc/rfc3566","title":"The AES-XCBC-MAC-96 Algorithm and Its Use With IPsec","authors":["S. Frankel","H. Herbert"],"rawDate":"2003-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3567":{"rfcNumber":"RFC3567","href":"https://www.rfc-editor.org/rfc/rfc3567","title":"Intermediate System to Intermediate System (IS-IS) Cryptographic Authentication","authors":["T. Li","R. Atkinson"],"rawDate":"2003-07","status":"Informational","obsoletedBy":["RFC5304"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3568":{"rfcNumber":"RFC3568","href":"https://www.rfc-editor.org/rfc/rfc3568","title":"Known Content Network (CN) Request-Routing Mechanisms","authors":["A. Barbir","B. Cain","R. Nair","O. Spatscheck"],"rawDate":"2003-07","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3569":{"rfcNumber":"RFC3569","href":"https://www.rfc-editor.org/rfc/rfc3569","title":"An Overview of Source-Specific Multicast (SSM)","authors":["S. Bhattacharyya, Ed."],"rawDate":"2003-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc357":{"aliasOf":"rfc0357"},"rfc3570":{"rfcNumber":"RFC3570","href":"https://www.rfc-editor.org/rfc/rfc3570","title":"Content Internetworking (CDI) Scenarios","authors":["P. Rzewski","M. Day","D. Gilletti"],"rawDate":"2003-07","status":"Informational","obsoletedBy":["RFC6770"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3571":{"rfcNumber":"RFC3571","href":"https://www.rfc-editor.org/rfc/rfc3571","title":"Framework Policy Information Base for Usage Feedback","authors":["D. Rawlins","A. Kulkarni","K. Ho Chan","M. Bokaemper","D. Dutt"],"rawDate":"2003-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3572":{"rfcNumber":"RFC3572","href":"https://www.rfc-editor.org/rfc/rfc3572","title":"Internet Protocol Version 6 over MAPOS (Multiple Access Protocol Over SONET/SDH)","authors":["T. Ogura","M. Maruyama","T. Yoshida"],"rawDate":"2003-07","status":"Informational","updatedBy":["RFC8064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3573":{"rfcNumber":"RFC3573","href":"https://www.rfc-editor.org/rfc/rfc3573","title":"Signalling of Modem-On-Hold status in Layer 2 Tunneling Protocol (L2TP)","authors":["I. Goyret"],"rawDate":"2003-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3574":{"rfcNumber":"RFC3574","href":"https://www.rfc-editor.org/rfc/rfc3574","title":"Transition Scenarios for 3GPP Networks","authors":["J. Soininen, Ed."],"rawDate":"2003-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3575":{"rfcNumber":"RFC3575","href":"https://www.rfc-editor.org/rfc/rfc3575","title":"IANA Considerations for RADIUS (Remote Authentication Dial In User Service)","authors":["B. Aboba"],"rawDate":"2003-07","status":"Proposed Standard","updatedBy":["RFC6929"],"updates":["RFC2865","RFC2868"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3575","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3576":{"rfcNumber":"RFC3576","href":"https://www.rfc-editor.org/rfc/rfc3576","title":"Dynamic Authorization Extensions to Remote Authentication Dial In User Service (RADIUS)","authors":["M. Chiba","G. Dommety","M. Eklund","D. Mitton","B. Aboba"],"rawDate":"2003-07","status":"Informational","obsoletedBy":["RFC5176"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3577":{"rfcNumber":"RFC3577","href":"https://www.rfc-editor.org/rfc/rfc3577","title":"Introduction to the Remote Monitoring (RMON) Family of MIB Modules","authors":["S. Waldbusser","R. Cole","C. Kalbfleisch","D. Romascanu"],"rawDate":"2003-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3578":{"rfcNumber":"RFC3578","href":"https://www.rfc-editor.org/rfc/rfc3578","title":"Mapping of Integrated Services Digital Network (ISDN) User Part (ISUP) Overlap Signalling to the Session Initiation Protocol (SIP)","authors":["G. Camarillo","A. B. Roach","J. Peterson","L. Ong"],"rawDate":"2003-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3579":{"rfcNumber":"RFC3579","href":"https://www.rfc-editor.org/rfc/rfc3579","title":"RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)","authors":["B. Aboba","P. Calhoun"],"rawDate":"2003-09","status":"Informational","updatedBy":["RFC5080"],"updates":["RFC2869"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3579","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3580":{"rfcNumber":"RFC3580","href":"https://www.rfc-editor.org/rfc/rfc3580","title":"IEEE 802.1X Remote Authentication Dial In User Service (RADIUS) Usage Guidelines","authors":["P. Congdon","B. Aboba","A. Smith","G. Zorn","J. Roese"],"rawDate":"2003-09","status":"Informational","updatedBy":["RFC7268"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3580","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3581":{"rfcNumber":"RFC3581","href":"https://www.rfc-editor.org/rfc/rfc3581","title":"An Extension to the Session Initiation Protocol (SIP) for Symmetric Response Routing","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2003-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3582":{"rfcNumber":"RFC3582","href":"https://www.rfc-editor.org/rfc/rfc3582","title":"Goals for IPv6 Site-Multihoming Architectures","authors":["J. Abley","B. Black","V. Gill"],"rawDate":"2003-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3583":{"rfcNumber":"RFC3583","href":"https://www.rfc-editor.org/rfc/rfc3583","title":"Requirements of a Quality of Service (QoS) Solution for Mobile IP","authors":["H. Chaskar, Ed."],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3584":{"rfcNumber":"RFC3584","href":"https://www.rfc-editor.org/rfc/rfc3584","title":"Coexistence between Version 1, Version 2, and Version 3 of the Internet-standard Network Management Framework","authors":["R. Frye","D. Levi","S. Routhier","B. Wijnen"],"rawDate":"2003-08","status":"Best Current Practice","obsoletes":["RFC2576"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3585":{"rfcNumber":"RFC3585","href":"https://www.rfc-editor.org/rfc/rfc3585","title":"IPsec Configuration Policy Information Model","authors":["J. Jason","L. Rafalow","E. Vyncke"],"rawDate":"2003-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3586":{"rfcNumber":"RFC3586","href":"https://www.rfc-editor.org/rfc/rfc3586","title":"IP Security Policy (IPSP) Requirements","authors":["M. Blaze","A. Keromytis","M. Richardson","L. Sanchez"],"rawDate":"2003-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3587":{"rfcNumber":"RFC3587","href":"https://www.rfc-editor.org/rfc/rfc3587","title":"IPv6 Global Unicast Address Format","authors":["R. Hinden","S. Deering","E. Nordmark"],"rawDate":"2003-08","status":"Informational","obsoletes":["RFC2374"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3587","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3588":{"rfcNumber":"RFC3588","href":"https://www.rfc-editor.org/rfc/rfc3588","title":"Diameter Base Protocol","authors":["P. Calhoun","J. Loughney","E. Guttman","G. Zorn","J. Arkko"],"rawDate":"2003-09","status":"Proposed Standard","updatedBy":["RFC5729","RFC5719","RFC6408"],"obsoletedBy":["RFC6733"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3588","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3589":{"rfcNumber":"RFC3589","href":"https://www.rfc-editor.org/rfc/rfc3589","title":"Diameter Command Codes for Third Generation Partnership Project (3GPP) Release 5","authors":["J. Loughney"],"rawDate":"2003-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3589","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc359":{"aliasOf":"rfc0359"},"rfc3590":{"rfcNumber":"RFC3590","href":"https://www.rfc-editor.org/rfc/rfc3590","title":"Source Address Selection for the Multicast Listener Discovery (MLD) Protocol","authors":["B. Haberman"],"rawDate":"2003-09","status":"Proposed Standard","updates":["RFC2710"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3591":{"rfcNumber":"RFC3591","href":"https://www.rfc-editor.org/rfc/rfc3591","title":"Definitions of Managed Objects for the Optical Interface Type","authors":["H-K. Lam","M. Stewart","A. Huynh"],"rawDate":"2003-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3591","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3592":{"rfcNumber":"RFC3592","href":"https://www.rfc-editor.org/rfc/rfc3592","title":"Definitions of Managed Objects for the Synchronous Optical Network/Synchronous Digital Hierarchy (SONET/SDH) Interface Type","authors":["K. Tesink"],"rawDate":"2003-09","status":"Draft Standard","obsoletes":["RFC2558"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3592","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3593":{"rfcNumber":"RFC3593","href":"https://www.rfc-editor.org/rfc/rfc3593","title":"Textual Conventions for MIB Modules Using Performance History Based on 15 Minute Intervals","authors":["K. Tesink, Ed."],"rawDate":"2003-09","status":"Draft Standard","obsoletes":["RFC2493"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3594":{"rfcNumber":"RFC3594","href":"https://www.rfc-editor.org/rfc/rfc3594","title":"PacketCable Security Ticket Control Sub-Option for the DHCP CableLabs Client Configuration (CCC) Option","authors":["P. Duffy"],"rawDate":"2003-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3595":{"rfcNumber":"RFC3595","href":"https://www.rfc-editor.org/rfc/rfc3595","title":"Textual Conventions for IPv6 Flow Label","authors":["B. Wijnen"],"rawDate":"2003-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3596":{"rfcNumber":"RFC3596","href":"https://www.rfc-editor.org/rfc/rfc3596","title":"DNS Extensions to Support IP Version 6","authors":["S. Thomson","C. Huitema","V. Ksinant","M. Souissi"],"rawDate":"2003-10","status":"Internet Standard","obsoletes":["RFC3152","RFC1886"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3597":{"rfcNumber":"RFC3597","href":"https://www.rfc-editor.org/rfc/rfc3597","title":"Handling of Unknown DNS Resource Record (RR) Types","authors":["A. Gustafsson"],"rawDate":"2003-09","status":"Proposed Standard","updatedBy":["RFC4033","RFC4034","RFC4035","RFC5395","RFC6195","RFC6895"],"updates":["RFC2163","RFC2535"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3597","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3598":{"rfcNumber":"RFC3598","href":"https://www.rfc-editor.org/rfc/rfc3598","title":"Sieve Email Filtering -- Subaddress Extension","authors":["K. Murchison"],"rawDate":"2003-09","status":"Proposed Standard","obsoletedBy":["RFC5233"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3599":{"rfcNumber":"RFC3599","href":"https://www.rfc-editor.org/rfc/rfc3599","title":"Request for Comments Summary RFC Numbers 3500-3599","authors":["S. Ginoza"],"rawDate":"2003-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc36":{"aliasOf":"rfc0036"},"rfc360":{"aliasOf":"rfc0360"},"rfc3600":{"rfcNumber":"RFC3600","href":"https://www.rfc-editor.org/rfc/rfc3600","title":"Internet Official Protocol Standards","authors":["J. Reynolds, Ed.","S. Ginoza, Ed."],"rawDate":"2003-11","status":"Historic","obsoletedBy":["RFC3700"],"obsoletes":["RFC3300"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3600","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3601":{"rfcNumber":"RFC3601","href":"https://www.rfc-editor.org/rfc/rfc3601","title":"Text String Notation for Dial Sequences and Global Switched Telephone Network (GSTN) / E.164 Addresses","authors":["C. Allocchio"],"rawDate":"2003-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3602":{"rfcNumber":"RFC3602","href":"https://www.rfc-editor.org/rfc/rfc3602","title":"The AES-CBC Cipher Algorithm and Its Use with IPsec","authors":["S. Frankel","R. Glenn","S. Kelly"],"rawDate":"2003-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3603":{"rfcNumber":"RFC3603","href":"https://www.rfc-editor.org/rfc/rfc3603","title":"Private Session Initiation Protocol (SIP) Proxy-to-Proxy Extensions for Supporting the PacketCable Distributed Call Signaling Architecture","authors":["W. Marshall, Ed.","F. Andreasen, Ed."],"rawDate":"2003-10","status":"Informational","obsoletedBy":["RFC5503"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3604":{"rfcNumber":"RFC3604","href":"https://www.rfc-editor.org/rfc/rfc3604","title":"Requirements for Adding Optical Support to the General Switch Management Protocol version 3 (GSMPv3)","authors":["H. Khosravi","G. Kullgren","S. Shew","J. Sadler","A. Watanabe"],"rawDate":"2003-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3605":{"rfcNumber":"RFC3605","href":"https://www.rfc-editor.org/rfc/rfc3605","title":"Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP)","authors":["C. Huitema"],"rawDate":"2003-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3605","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3606":{"rfcNumber":"RFC3606","href":"https://www.rfc-editor.org/rfc/rfc3606","title":"Definitions of Supplemental Managed Objects for ATM Interface","authors":["F. Ly","M. Noto","A. Smith","E. Spiegel","K. Tesink"],"rawDate":"2003-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3607":{"rfcNumber":"RFC3607","href":"https://www.rfc-editor.org/rfc/rfc3607","title":"Chinese Lottery Cryptanalysis Revisited: The Internet as a Codebreaking Tool","authors":["M. Leech"],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3608":{"rfcNumber":"RFC3608","href":"https://www.rfc-editor.org/rfc/rfc3608","title":"Session Initiation Protocol (SIP) Extension Header Field for Service Route Discovery During Registration","authors":["D. Willis","B. Hoeneisen"],"rawDate":"2003-10","status":"Proposed Standard","updatedBy":["RFC5630"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3609":{"rfcNumber":"RFC3609","href":"https://www.rfc-editor.org/rfc/rfc3609","title":"Tracing Requirements for Generic Tunnels","authors":["R. Bonica","K. Kompella","D. Meyer"],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc361":{"aliasOf":"rfc0361"},"rfc3610":{"rfcNumber":"RFC3610","href":"https://www.rfc-editor.org/rfc/rfc3610","title":"Counter with CBC-MAC (CCM)","authors":["D. Whiting","R. Housley","N. Ferguson"],"rawDate":"2003-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3610","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3611":{"rfcNumber":"RFC3611","href":"https://www.rfc-editor.org/rfc/rfc3611","title":"RTP Control Protocol Extended Reports (RTCP XR)","authors":["T. Friedman, Ed.","R. Caceres, Ed.","A. Clark, Ed."],"rawDate":"2003-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3611","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3612":{"rfcNumber":"RFC3612","href":"https://www.rfc-editor.org/rfc/rfc3612","title":"Applicability Statement for Restart Mechanisms for the Label Distribution Protocol (LDP)","authors":["A. Farrel"],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3613":{"rfcNumber":"RFC3613","href":"https://www.rfc-editor.org/rfc/rfc3613","title":"Definition of a Uniform Resource Name (URN) Namespace for the Middleware Architecture Committee for Education (MACE)","authors":["R. Morgan","K. Hazelton"],"rawDate":"2003-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3614":{"rfcNumber":"RFC3614","href":"https://www.rfc-editor.org/rfc/rfc3614","title":"A Uniform Resource Name (URN) Namespace for the Motion Picture Experts Group (MPEG)","authors":["J. Smith"],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3615":{"rfcNumber":"RFC3615","href":"https://www.rfc-editor.org/rfc/rfc3615","title":"A Uniform Resource Name (URN) Namespace for SWIFT Financial Messaging","authors":["J. Gustin","A. Goyens"],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3616":{"rfcNumber":"RFC3616","href":"https://www.rfc-editor.org/rfc/rfc3616","title":"A Uniform Resource Name (URN) Namespace for Foundation for Intelligent Physical Agents (FIPA)","authors":["F. Bellifemine","I. Constantinescu","S. Willmott"],"rawDate":"2003-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3617":{"rfcNumber":"RFC3617","href":"https://www.rfc-editor.org/rfc/rfc3617","title":"Uniform Resource Identifier (URI) Scheme and Applicability Statement for the Trivial File Transfer Protocol (TFTP)","authors":["E. Lear"],"rawDate":"2003-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3618":{"rfcNumber":"RFC3618","href":"https://www.rfc-editor.org/rfc/rfc3618","title":"Multicast Source Discovery Protocol (MSDP)","authors":["B. Fenner, Ed.","D. Meyer, Ed."],"rawDate":"2003-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3618","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3619":{"rfcNumber":"RFC3619","href":"https://www.rfc-editor.org/rfc/rfc3619","title":"Extreme Networks' Ethernet Automatic Protection Switching (EAPS) Version 1","authors":["S. Shah","M. Yip"],"rawDate":"2003-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc362":{"aliasOf":"rfc0362"},"rfc3620":{"rfcNumber":"RFC3620","href":"https://www.rfc-editor.org/rfc/rfc3620","title":"The TUNNEL Profile","authors":["D. New"],"rawDate":"2003-10","status":"Proposed Standard","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3621":{"rfcNumber":"RFC3621","href":"https://www.rfc-editor.org/rfc/rfc3621","title":"Power Ethernet MIB","authors":["A. Berger","D. Romascanu"],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3622":{"rfcNumber":"RFC3622","href":"https://www.rfc-editor.org/rfc/rfc3622","title":"A Uniform Resource Name (URN) Namespace for the Liberty Alliance Project","authors":["M. Mealling"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3623":{"rfcNumber":"RFC3623","href":"https://www.rfc-editor.org/rfc/rfc3623","title":"Graceful OSPF Restart","authors":["J. Moy","P. Pillay-Esnault","A. Lindem"],"rawDate":"2003-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3624":{"rfcNumber":"RFC3624","href":"https://www.rfc-editor.org/rfc/rfc3624","title":"The Media Gateway Control Protocol (MGCP) Bulk Audit Package","authors":["B. Foster","D. Auerbach","F. Andreasen"],"rawDate":"2003-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3625":{"rfcNumber":"RFC3625","href":"https://www.rfc-editor.org/rfc/rfc3625","title":"The QCP File Format and Media Types for Speech Data","authors":["R. Gellens","H. Garudadri"],"rawDate":"2003-09","status":"Informational","updates":["RFC3555"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3625","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3626":{"rfcNumber":"RFC3626","href":"https://www.rfc-editor.org/rfc/rfc3626","title":"Optimized Link State Routing Protocol (OLSR)","authors":["T. Clausen, Ed.","P. Jacquet, Ed."],"rawDate":"2003-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3626","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3627":{"rfcNumber":"RFC3627","href":"https://www.rfc-editor.org/rfc/rfc3627","title":"Use of /127 Prefix Length Between Routers Considered Harmful","authors":["P. Savola"],"rawDate":"2003-09","status":"Historic","obsoletedBy":["RFC6547"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3627","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3628":{"rfcNumber":"RFC3628","href":"https://www.rfc-editor.org/rfc/rfc3628","title":"Policy Requirements for Time-Stamping Authorities (TSAs)","authors":["D. Pinkas","N. Pope","J. Ross"],"rawDate":"2003-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3629":{"rfcNumber":"RFC3629","href":"https://www.rfc-editor.org/rfc/rfc3629","title":"UTF-8, a transformation format of ISO 10646","authors":["F. Yergeau"],"rawDate":"2003-11","status":"Internet Standard","obsoletes":["RFC2279"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc363":{"aliasOf":"rfc0363"},"rfc3630":{"rfcNumber":"RFC3630","href":"https://www.rfc-editor.org/rfc/rfc3630","title":"Traffic Engineering (TE) Extensions to OSPF Version 2","authors":["D. Katz","K. Kompella","D. Yeung"],"rawDate":"2003-09","status":"Proposed Standard","updatedBy":["RFC4203","RFC5786"],"updates":["RFC2370"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3631":{"rfcNumber":"RFC3631","href":"https://www.rfc-editor.org/rfc/rfc3631","title":"Security Mechanisms for the Internet","authors":["S. Bellovin, Ed.","J. Schiller, Ed.","C. Kaufman, Ed."],"rawDate":"2003-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3632":{"rfcNumber":"RFC3632","href":"https://www.rfc-editor.org/rfc/rfc3632","title":"VeriSign Registry Registrar Protocol (RRP) Version 2.0.0","authors":["S. Hollenbeck","S. Veeramachaneni","S. Yalamanchilli"],"rawDate":"2003-11","status":"Informational","updates":["RFC2832"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3633":{"rfcNumber":"RFC3633","href":"https://www.rfc-editor.org/rfc/rfc3633","title":"IPv6 Prefix Options for Dynamic Host Configuration Protocol (DHCP) version 6","authors":["O. Troan","R. Droms"],"rawDate":"2003-12","status":"Proposed Standard","updatedBy":["RFC6603","RFC7550"],"obsoletedBy":["RFC8415"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3633","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3634":{"rfcNumber":"RFC3634","href":"https://www.rfc-editor.org/rfc/rfc3634","title":"Key Distribution Center (KDC) Server Address Sub-option for the Dynamic Host Configuration Protocol (DHCP) CableLabs Client Configuration (CCC) Option","authors":["K. Luehrs","R. Woundy","J. Bevilacqua","N. Davoust"],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3635":{"rfcNumber":"RFC3635","href":"https://www.rfc-editor.org/rfc/rfc3635","title":"Definitions of Managed Objects for the Ethernet-like Interface Types","authors":["J. Flick"],"rawDate":"2003-09","status":"Proposed Standard","obsoletes":["RFC2665"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3636":{"rfcNumber":"RFC3636","href":"https://www.rfc-editor.org/rfc/rfc3636","title":"Definitions of Managed Objects for IEEE 802.3 Medium Attachment Units (MAUs)","authors":["J. Flick"],"rawDate":"2003-09","status":"Proposed Standard","obsoletedBy":["RFC4836"],"obsoletes":["RFC2668","RFC1515"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3637":{"rfcNumber":"RFC3637","href":"https://www.rfc-editor.org/rfc/rfc3637","title":"Definitions of Managed Objects for the Ethernet WAN Interface Sublayer","authors":["C.M. Heard, Ed."],"rawDate":"2003-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3638":{"rfcNumber":"RFC3638","href":"https://www.rfc-editor.org/rfc/rfc3638","title":"Applicability Statement for Reclassification of RFC 1643 to Historic Status","authors":["J. Flick","C. M. Heard"],"rawDate":"2003-09","status":"Informational","obsoletes":["RFC1643"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3639":{"rfcNumber":"RFC3639","href":"https://www.rfc-editor.org/rfc/rfc3639","title":"Considerations on the use of a Service Identifier in Packet Headers","authors":["M. St. Johns, Ed.","G. Huston, Ed.","IAB"],"rawDate":"2003-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc364":{"aliasOf":"rfc0364"},"rfc3640":{"rfcNumber":"RFC3640","href":"https://www.rfc-editor.org/rfc/rfc3640","title":"RTP Payload Format for Transport of MPEG-4 Elementary Streams","authors":["J. van der Meer","D. Mackie","V. Swaminathan","D. Singer","P. Gentric"],"rawDate":"2003-11","status":"Proposed Standard","updatedBy":["RFC5691"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3641":{"rfcNumber":"RFC3641","href":"https://www.rfc-editor.org/rfc/rfc3641","title":"Generic String Encoding Rules (GSER) for ASN.1 Types","authors":["S. Legg"],"rawDate":"2003-10","status":"Proposed Standard","updatedBy":["RFC4792"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3642":{"rfcNumber":"RFC3642","href":"https://www.rfc-editor.org/rfc/rfc3642","title":"Common Elements of Generic String Encoding Rules (GSER) Encodings","authors":["S. Legg"],"rawDate":"2003-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3642","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3643":{"rfcNumber":"RFC3643","href":"https://www.rfc-editor.org/rfc/rfc3643","title":"Fibre Channel (FC) Frame Encapsulation","authors":["R. Weber","M. Rajagopal","F. Travostino","M. O'Donnell","C. Monia","M. Merhar"],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3644":{"rfcNumber":"RFC3644","href":"https://www.rfc-editor.org/rfc/rfc3644","title":"Policy Quality of Service (QoS) Information Model","authors":["Y. Snir","Y. Ramberg","J. Strassner","R. Cohen","B. Moore"],"rawDate":"2003-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3645":{"rfcNumber":"RFC3645","href":"https://www.rfc-editor.org/rfc/rfc3645","title":"Generic Security Service Algorithm for Secret Key Transaction Authentication for DNS (GSS-TSIG)","authors":["S. Kwan","P. Garg","J. Gilroy","L. Esibov","J. Westhead","R. Hall"],"rawDate":"2003-10","status":"Proposed Standard","updates":["RFC2845"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3646":{"rfcNumber":"RFC3646","href":"https://www.rfc-editor.org/rfc/rfc3646","title":"DNS Configuration options for Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["R. Droms, Ed."],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3647":{"rfcNumber":"RFC3647","href":"https://www.rfc-editor.org/rfc/rfc3647","title":"Internet X.509 Public Key Infrastructure Certificate Policy and Certification Practices Framework","authors":["S. Chokhani","W. Ford","R. Sabett","C. Merrill","S. Wu"],"rawDate":"2003-11","status":"Informational","obsoletes":["RFC2527"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3647","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3648":{"rfcNumber":"RFC3648","href":"https://www.rfc-editor.org/rfc/rfc3648","title":"Web Distributed Authoring and Versioning (WebDAV) Ordered Collections Protocol","authors":["J. Whitehead","J. Reschke, Ed."],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3649":{"rfcNumber":"RFC3649","href":"https://www.rfc-editor.org/rfc/rfc3649","title":"HighSpeed TCP for Large Congestion Windows","authors":["S. Floyd"],"rawDate":"2003-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc365":{"aliasOf":"rfc0365"},"rfc3650":{"rfcNumber":"RFC3650","href":"https://www.rfc-editor.org/rfc/rfc3650","title":"Handle System Overview","authors":["S. Sun","L. Lannom","B. Boesch"],"rawDate":"2003-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3650","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3651":{"rfcNumber":"RFC3651","href":"https://www.rfc-editor.org/rfc/rfc3651","title":"Handle System Namespace and Service Definition","authors":["S. Sun","S. Reilly","L. Lannom"],"rawDate":"2003-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3651","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3652":{"rfcNumber":"RFC3652","href":"https://www.rfc-editor.org/rfc/rfc3652","title":"Handle System Protocol (ver 2.1) Specification","authors":["S. Sun","S. Reilly","L. Lannom","J. Petrone"],"rawDate":"2003-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3653":{"rfcNumber":"RFC3653","href":"https://www.rfc-editor.org/rfc/rfc3653","title":"XML-Signature XPath Filter 2.0","authors":["J. Boyer","M. Hughes","J. Reagle"],"rawDate":"2003-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3654":{"rfcNumber":"RFC3654","href":"https://www.rfc-editor.org/rfc/rfc3654","title":"Requirements for Separation of IP Control and Forwarding","authors":["H. Khosravi, Ed.","T. Anderson, Ed."],"rawDate":"2003-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3655":{"rfcNumber":"RFC3655","href":"https://www.rfc-editor.org/rfc/rfc3655","title":"Redefinition of DNS Authenticated Data (AD) bit","authors":["B. Wellington","O. Gudmundsson"],"rawDate":"2003-11","status":"Proposed Standard","obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC2535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3656":{"rfcNumber":"RFC3656","href":"https://www.rfc-editor.org/rfc/rfc3656","title":"The Mailbox Update (MUPDATE) Distributed Mailbox Database Protocol","authors":["R. Siemborski"],"rawDate":"2003-12","status":"Experimental","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3657":{"rfcNumber":"RFC3657","href":"https://www.rfc-editor.org/rfc/rfc3657","title":"Use of the Camellia Encryption Algorithm in Cryptographic Message Syntax (CMS)","authors":["S. Moriai","A. Kato"],"rawDate":"2004-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3658":{"rfcNumber":"RFC3658","href":"https://www.rfc-editor.org/rfc/rfc3658","title":"Delegation Signer (DS) Resource Record (RR)","authors":["O. Gudmundsson"],"rawDate":"2003-12","status":"Proposed Standard","updatedBy":["RFC3755"],"obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC3090","RFC3008","RFC2535","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3659":{"rfcNumber":"RFC3659","href":"https://www.rfc-editor.org/rfc/rfc3659","title":"Extensions to FTP","authors":["P. Hethmon"],"rawDate":"2007-03","status":"Proposed Standard","updates":["RFC0959"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3659","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc366":{"aliasOf":"rfc0366"},"rfc3660":{"rfcNumber":"RFC3660","href":"https://www.rfc-editor.org/rfc/rfc3660","title":"Basic Media Gateway Control Protocol (MGCP) Packages","authors":["B. Foster","F. Andreasen"],"rawDate":"2003-12","status":"Informational","updates":["RFC2705"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3661":{"rfcNumber":"RFC3661","href":"https://www.rfc-editor.org/rfc/rfc3661","title":"Media Gateway Control Protocol (MGCP) Return Code Usage","authors":["B. Foster","C. Sivachelvan"],"rawDate":"2003-12","status":"Informational","updates":["RFC3435"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3662":{"rfcNumber":"RFC3662","href":"https://www.rfc-editor.org/rfc/rfc3662","title":"A Lower Effort Per-Domain Behavior (PDB) for Differentiated Services","authors":["R. Bless","K. Nichols","K. Wehrle"],"rawDate":"2003-12","status":"Informational","obsoletedBy":["RFC8622"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3663":{"rfcNumber":"RFC3663","href":"https://www.rfc-editor.org/rfc/rfc3663","title":"Domain Administrative Data in Lightweight Directory Access Protocol (LDAP)","authors":["A. Newton"],"rawDate":"2003-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3664":{"rfcNumber":"RFC3664","href":"https://www.rfc-editor.org/rfc/rfc3664","title":"The AES-XCBC-PRF-128 Algorithm for the Internet Key Exchange Protocol (IKE)","authors":["P. Hoffman"],"rawDate":"2004-01","status":"Proposed Standard","obsoletedBy":["RFC4434"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3665":{"rfcNumber":"RFC3665","href":"https://www.rfc-editor.org/rfc/rfc3665","title":"Session Initiation Protocol (SIP) Basic Call Flow Examples","authors":["A. Johnston","S. Donovan","R. Sparks","C. Cunningham","K. Summers"],"rawDate":"2003-12","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3665","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3666":{"rfcNumber":"RFC3666","href":"https://www.rfc-editor.org/rfc/rfc3666","title":"Session Initiation Protocol (SIP) Public Switched Telephone Network (PSTN) Call Flows","authors":["A. Johnston","S. Donovan","R. Sparks","C. Cunningham","K. Summers"],"rawDate":"2003-12","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3666","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3667":{"rfcNumber":"RFC3667","href":"https://www.rfc-editor.org/rfc/rfc3667","title":"IETF Rights in Contributions","authors":["S. Bradner"],"rawDate":"2004-02","status":"Best Current Practice","obsoletedBy":["RFC3978"],"updates":["RFC2026"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3668":{"rfcNumber":"RFC3668","href":"https://www.rfc-editor.org/rfc/rfc3668","title":"Intellectual Property Rights in IETF Technology","authors":["S. Bradner"],"rawDate":"2004-02","status":"Best Current Practice","obsoletedBy":["RFC3979"],"updates":["RFC2026","RFC2028"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3669":{"rfcNumber":"RFC3669","href":"https://www.rfc-editor.org/rfc/rfc3669","title":"Guidelines for Working Groups on Intellectual Property Issues","authors":["S. Brim"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc367":{"aliasOf":"rfc0367"},"rfc3670":{"rfcNumber":"RFC3670","href":"https://www.rfc-editor.org/rfc/rfc3670","title":"Information Model for Describing Network Device QoS Datapath Mechanisms","authors":["B. Moore","D. Durham","J. Strassner","A. Westerinen","W. Weiss"],"rawDate":"2004-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3671":{"rfcNumber":"RFC3671","href":"https://www.rfc-editor.org/rfc/rfc3671","title":"Collective Attributes in the Lightweight Directory Access Protocol (LDAP)","authors":["K. Zeilenga"],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3672":{"rfcNumber":"RFC3672","href":"https://www.rfc-editor.org/rfc/rfc3672","title":"Subentries in the Lightweight Directory Access Protocol (LDAP)","authors":["K. Zeilenga"],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3673":{"rfcNumber":"RFC3673","href":"https://www.rfc-editor.org/rfc/rfc3673","title":"Lightweight Directory Access Protocol version 3 (LDAPv3): All Operational Attributes","authors":["K. Zeilenga"],"rawDate":"2003-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3674":{"rfcNumber":"RFC3674","href":"https://www.rfc-editor.org/rfc/rfc3674","title":"Feature Discovery in Lightweight Directory Access Protocol (LDAP)","authors":["K. Zeilenga"],"rawDate":"2003-12","status":"Proposed Standard","obsoletedBy":["RFC4512"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3675":{"rfcNumber":"RFC3675","href":"https://www.rfc-editor.org/rfc/rfc3675","title":".sex Considered Dangerous","authors":["D. Eastlake 3rd"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3676":{"rfcNumber":"RFC3676","href":"https://www.rfc-editor.org/rfc/rfc3676","title":"The Text/Plain Format and DelSp Parameters","authors":["R. Gellens"],"rawDate":"2004-02","status":"Proposed Standard","obsoletes":["RFC2646"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3677":{"rfcNumber":"RFC3677","href":"https://www.rfc-editor.org/rfc/rfc3677","title":"IETF ISOC Board of Trustee Appointment Procedures","authors":["L. Daigle, Ed.","Internet Architecture Board"],"rawDate":"2003-12","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3677","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3678":{"rfcNumber":"RFC3678","href":"https://www.rfc-editor.org/rfc/rfc3678","title":"Socket Interface Extensions for Multicast Source Filters","authors":["D. Thaler","B. Fenner","B. Quinn"],"rawDate":"2004-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3678","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3679":{"rfcNumber":"RFC3679","href":"https://www.rfc-editor.org/rfc/rfc3679","title":"Unused Dynamic Host Configuration Protocol (DHCP) Option Codes","authors":["R. Droms"],"rawDate":"2004-01","status":"Informational","updatedBy":["RFC8910"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc368":{"aliasOf":"rfc0368"},"rfc3680":{"rfcNumber":"RFC3680","href":"https://www.rfc-editor.org/rfc/rfc3680","title":"A Session Initiation Protocol (SIP) Event Package for Registrations","authors":["J. Rosenberg"],"rawDate":"2004-03","status":"Proposed Standard","updatedBy":["RFC6140"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3680","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3681":{"rfcNumber":"RFC3681","href":"https://www.rfc-editor.org/rfc/rfc3681","title":"Delegation of E.F.F.3.IP6.ARPA","authors":["R. Bush","R. Fink"],"rawDate":"2004-01","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3682":{"rfcNumber":"RFC3682","href":"https://www.rfc-editor.org/rfc/rfc3682","title":"The Generalized TTL Security Mechanism (GTSM)","authors":["V. Gill","J. Heasley","D. Meyer"],"rawDate":"2004-02","status":"Experimental","obsoletedBy":["RFC5082"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3683":{"rfcNumber":"RFC3683","href":"https://www.rfc-editor.org/rfc/rfc3683","title":"A Practice for Revoking Posting Rights to IETF Mailing Lists","authors":["M. Rose"],"rawDate":"2004-03","status":"Best Current Practice","updatedBy":["RFC9245"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3684":{"rfcNumber":"RFC3684","href":"https://www.rfc-editor.org/rfc/rfc3684","title":"Topology Dissemination Based on Reverse-Path Forwarding (TBRPF)","authors":["R. Ogier","F. Templin","M. Lewis"],"rawDate":"2004-02","status":"Experimental","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3685":{"rfcNumber":"RFC3685","href":"https://www.rfc-editor.org/rfc/rfc3685","title":"SIEVE Email Filtering: Spamtest and VirusTest Extensions","authors":["C. Daboo"],"rawDate":"2004-02","status":"Proposed Standard","obsoletedBy":["RFC5235"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3686":{"rfcNumber":"RFC3686","href":"https://www.rfc-editor.org/rfc/rfc3686","title":"Using Advanced Encryption Standard (AES) Counter Mode With IPsec Encapsulating Security Payload (ESP)","authors":["R. Housley"],"rawDate":"2004-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3687":{"rfcNumber":"RFC3687","href":"https://www.rfc-editor.org/rfc/rfc3687","title":"Lightweight Directory Access Protocol (LDAP) and X.500 Component Matching Rules","authors":["S. Legg"],"rawDate":"2004-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3688":{"rfcNumber":"RFC3688","href":"https://www.rfc-editor.org/rfc/rfc3688","title":"The IETF XML Registry","authors":["M. Mealling"],"rawDate":"2004-01","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3689":{"rfcNumber":"RFC3689","href":"https://www.rfc-editor.org/rfc/rfc3689","title":"General Requirements for Emergency Telecommunication Service (ETS)","authors":["K. Carlberg","R. Atkinson"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc369":{"aliasOf":"rfc0369"},"rfc3690":{"rfcNumber":"RFC3690","href":"https://www.rfc-editor.org/rfc/rfc3690","title":"IP Telephony Requirements for Emergency Telecommunication Service (ETS)","authors":["K. Carlberg","R. Atkinson"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3691":{"rfcNumber":"RFC3691","href":"https://www.rfc-editor.org/rfc/rfc3691","title":"Internet Message Access Protocol (IMAP) UNSELECT command","authors":["A. Melnikov"],"rawDate":"2004-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3692":{"rfcNumber":"RFC3692","href":"https://www.rfc-editor.org/rfc/rfc3692","title":"Assigning Experimental and Testing Numbers Considered Useful","authors":["T. Narten"],"rawDate":"2004-01","status":"Best Current Practice","updates":["RFC2434"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3693":{"rfcNumber":"RFC3693","href":"https://www.rfc-editor.org/rfc/rfc3693","title":"Geopriv Requirements","authors":["J. Cuellar","J. Morris","D. Mulligan","J. Peterson","J. Polk"],"rawDate":"2004-02","status":"Informational","updatedBy":["RFC6280","RFC7459"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3693","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3694":{"rfcNumber":"RFC3694","href":"https://www.rfc-editor.org/rfc/rfc3694","title":"Threat Analysis of the Geopriv Protocol","authors":["M. Danley","D. Mulligan","J. Morris","J. Peterson"],"rawDate":"2004-02","status":"Informational","updatedBy":["RFC6280"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3695":{"rfcNumber":"RFC3695","href":"https://www.rfc-editor.org/rfc/rfc3695","title":"Compact Forward Error Correction (FEC) Schemes","authors":["M. Luby","L. Vicisano"],"rawDate":"2004-02","status":"Experimental","obsoletedBy":["RFC5445"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3696":{"rfcNumber":"RFC3696","href":"https://www.rfc-editor.org/rfc/rfc3696","title":"Application Techniques for Checking and Transformation of Names","authors":["J. Klensin"],"rawDate":"2004-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3696","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3697":{"rfcNumber":"RFC3697","href":"https://www.rfc-editor.org/rfc/rfc3697","title":"IPv6 Flow Label Specification","authors":["J. Rajahalme","A. Conta","B. Carpenter","S. Deering"],"rawDate":"2004-03","status":"Proposed Standard","obsoletedBy":["RFC6437"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3698":{"rfcNumber":"RFC3698","href":"https://www.rfc-editor.org/rfc/rfc3698","title":"Lightweight Directory Access Protocol (LDAP): Additional Matching Rules","authors":["K. Zeilenga, Ed."],"rawDate":"2004-02","status":"Proposed Standard","updatedBy":["RFC4517"],"updates":["RFC2798"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc37":{"aliasOf":"rfc0037"},"rfc370":{"aliasOf":"rfc0370"},"rfc3700":{"rfcNumber":"RFC3700","href":"https://www.rfc-editor.org/rfc/rfc3700","title":"Internet Official Protocol Standards","authors":["J. Reynolds, Ed.","S. Ginoza, Ed."],"rawDate":"2004-07","status":"Historic","obsoletedBy":["RFC5000"],"obsoletes":["RFC3600"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3700","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3701":{"rfcNumber":"RFC3701","href":"https://www.rfc-editor.org/rfc/rfc3701","title":"6bone (IPv6 Testing Address Allocation) Phaseout","authors":["R. Fink","R. Hinden"],"rawDate":"2004-03","status":"Informational","obsoletes":["RFC2471"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3702":{"rfcNumber":"RFC3702","href":"https://www.rfc-editor.org/rfc/rfc3702","title":"Authentication, Authorization, and Accounting Requirements for the Session Initiation Protocol (SIP)","authors":["J. Loughney","G. Camarillo"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3703":{"rfcNumber":"RFC3703","href":"https://www.rfc-editor.org/rfc/rfc3703","title":"Policy Core Lightweight Directory Access Protocol (LDAP) Schema","authors":["J. Strassner","B. Moore","R. Moats","E. Ellesson"],"rawDate":"2004-02","status":"Proposed Standard","updatedBy":["RFC4104"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3704":{"rfcNumber":"RFC3704","href":"https://www.rfc-editor.org/rfc/rfc3704","title":"Ingress Filtering for Multihomed Networks","authors":["F. Baker","P. Savola"],"rawDate":"2004-03","status":"Best Current Practice","updatedBy":["RFC8704"],"updates":["RFC2827"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3705":{"rfcNumber":"RFC3705","href":"https://www.rfc-editor.org/rfc/rfc3705","title":"High Capacity Textual Conventions for MIB Modules Using Performance History Based on 15 Minute Intervals","authors":["B. Ray","R. Abbi"],"rawDate":"2004-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3706":{"rfcNumber":"RFC3706","href":"https://www.rfc-editor.org/rfc/rfc3706","title":"A Traffic-Based Method of Detecting Dead Internet Key Exchange (IKE) Peers","authors":["G. Huang","S. Beaulieu","D. Rochefort"],"rawDate":"2004-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3706","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3707":{"rfcNumber":"RFC3707","href":"https://www.rfc-editor.org/rfc/rfc3707","title":"Cross Registry Internet Service Protocol (CRISP) Requirements","authors":["A. Newton"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3708":{"rfcNumber":"RFC3708","href":"https://www.rfc-editor.org/rfc/rfc3708","title":"Using TCP Duplicate Selective Acknowledgement (DSACKs) and Stream Control Transmission Protocol (SCTP) Duplicate Transmission Sequence Numbers (TSNs) to Detect Spurious Retransmissions","authors":["E. Blanton","M. Allman"],"rawDate":"2004-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3709":{"rfcNumber":"RFC3709","href":"https://www.rfc-editor.org/rfc/rfc3709","title":"Internet X.509 Public Key Infrastructure: Logotypes in X.509 Certificates","authors":["S. Santesson","R. Housley","T. Freeman"],"rawDate":"2004-02","status":"Proposed Standard","updatedBy":["RFC6170"],"obsoletedBy":["RFC9399"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3709","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc371":{"aliasOf":"rfc0371"},"rfc3710":{"rfcNumber":"RFC3710","href":"https://www.rfc-editor.org/rfc/rfc3710","title":"An IESG charter","authors":["H. Alvestrand"],"rawDate":"2004-02","status":"Informational","updatedBy":["RFC3932","RFC5742","RFC8717"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3711":{"rfcNumber":"RFC3711","href":"https://www.rfc-editor.org/rfc/rfc3711","title":"The Secure Real-time Transport Protocol (SRTP)","authors":["M. Baugher","D. McGrew","M. Naslund","E. Carrara","K. Norrman"],"rawDate":"2004-03","status":"Proposed Standard","updatedBy":["RFC5506","RFC6904","RFC9335"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3711","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3712":{"rfcNumber":"RFC3712","href":"https://www.rfc-editor.org/rfc/rfc3712","title":"Lightweight Directory Access Protocol (LDAP): Schema for Printer Services","authors":["P. Fleming","I. McDonald"],"rawDate":"2004-02","status":"Informational","obsoletedBy":["RFC7612"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3712","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3713":{"rfcNumber":"RFC3713","href":"https://www.rfc-editor.org/rfc/rfc3713","title":"A Description of the Camellia Encryption Algorithm","authors":["M. Matsui","J. Nakajima","S. Moriai"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3714":{"rfcNumber":"RFC3714","href":"https://www.rfc-editor.org/rfc/rfc3714","title":"IAB Concerns Regarding Congestion Control for Voice Traffic in the Internet","authors":["S. Floyd, Ed.","J. Kempf, Ed."],"rawDate":"2004-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3715":{"rfcNumber":"RFC3715","href":"https://www.rfc-editor.org/rfc/rfc3715","title":"IPsec-Network Address Translation (NAT) Compatibility Requirements","authors":["B. Aboba","W. Dixon"],"rawDate":"2004-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3715","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3716":{"rfcNumber":"RFC3716","href":"https://www.rfc-editor.org/rfc/rfc3716","title":"IETF in the Large: Administration and Execution","authors":["IAB Advisory Committee"],"rawDate":"2004-03","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3716","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3717":{"rfcNumber":"RFC3717","href":"https://www.rfc-editor.org/rfc/rfc3717","title":"IP over Optical Networks: A Framework","authors":["B. Rajagopalan","J. Luciani","D. Awduche"],"rawDate":"2004-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3718":{"rfcNumber":"RFC3718","href":"https://www.rfc-editor.org/rfc/rfc3718","title":"A Summary of Unicode Consortium Procedures, Policies, Stability, and Public Access","authors":["R. McGowan"],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3719":{"rfcNumber":"RFC3719","href":"https://www.rfc-editor.org/rfc/rfc3719","title":"Recommendations for Interoperable Networks using Intermediate System to Intermediate System (IS-IS)","authors":["J. Parker, Ed."],"rawDate":"2004-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc372":{"aliasOf":"rfc0372"},"rfc3720":{"rfcNumber":"RFC3720","href":"https://www.rfc-editor.org/rfc/rfc3720","title":"Internet Small Computer Systems Interface (iSCSI)","authors":["J. Satran","K. Meth","C. Sapuntzakis","M. Chadalapaka","E. Zeidner"],"rawDate":"2004-04","status":"Proposed Standard","updatedBy":["RFC3980","RFC4850","RFC5048","RFC7146"],"obsoletedBy":["RFC7143"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3720","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3721":{"rfcNumber":"RFC3721","href":"https://www.rfc-editor.org/rfc/rfc3721","title":"Internet Small Computer Systems Interface (iSCSI) Naming and Discovery","authors":["M. Bakke","J. Hafner","J. Hufferd","K. Voruganti","M. Krueger"],"rawDate":"2004-04","status":"Informational","updatedBy":["RFC7143"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3722":{"rfcNumber":"RFC3722","href":"https://www.rfc-editor.org/rfc/rfc3722","title":"String Profile for Internet Small Computer Systems Interface (iSCSI) Names","authors":["M. Bakke"],"rawDate":"2004-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3723":{"rfcNumber":"RFC3723","href":"https://www.rfc-editor.org/rfc/rfc3723","title":"Securing Block Storage Protocols over IP","authors":["B. Aboba","J. Tseng","J. Walker","V. Rangan","F. Travostino"],"rawDate":"2004-04","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3724":{"rfcNumber":"RFC3724","href":"https://www.rfc-editor.org/rfc/rfc3724","title":"The Rise of the Middle and the Future of End-to-End: Reflections on the Evolution of the Internet Architecture","authors":["J. Kempf, Ed.","R. Austein, Ed.","IAB"],"rawDate":"2004-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3725":{"rfcNumber":"RFC3725","href":"https://www.rfc-editor.org/rfc/rfc3725","title":"Best Current Practices for Third Party Call Control (3pcc) in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","J. Peterson","H. Schulzrinne","G. Camarillo"],"rawDate":"2004-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3726":{"rfcNumber":"RFC3726","href":"https://www.rfc-editor.org/rfc/rfc3726","title":"Requirements for Signaling Protocols","authors":["M. Brunner, Ed."],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3727":{"rfcNumber":"RFC3727","href":"https://www.rfc-editor.org/rfc/rfc3727","title":"ASN.1 Module Definition for the LDAP and X.500 Component Matching Rules","authors":["S. Legg"],"rawDate":"2004-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3728":{"rfcNumber":"RFC3728","href":"https://www.rfc-editor.org/rfc/rfc3728","title":"Definitions of Managed Objects for Very High Speed Digital Subscriber Lines (VDSL)","authors":["B. Ray","R. Abbi"],"rawDate":"2004-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3728","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3729":{"rfcNumber":"RFC3729","href":"https://www.rfc-editor.org/rfc/rfc3729","title":"Application Performance Measurement MIB","authors":["S. Waldbusser"],"rawDate":"2004-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc373":{"aliasOf":"rfc0373"},"rfc3730":{"rfcNumber":"RFC3730","href":"https://www.rfc-editor.org/rfc/rfc3730","title":"Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2004-03","status":"Proposed Standard","obsoletedBy":["RFC4930"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3730","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3731":{"rfcNumber":"RFC3731","href":"https://www.rfc-editor.org/rfc/rfc3731","title":"Extensible Provisioning Protocol (EPP) Domain Name Mapping","authors":["S. Hollenbeck"],"rawDate":"2004-03","status":"Proposed Standard","obsoletedBy":["RFC4931"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3732":{"rfcNumber":"RFC3732","href":"https://www.rfc-editor.org/rfc/rfc3732","title":"Extensible Provisioning Protocol (EPP) Host Mapping","authors":["S. Hollenbeck"],"rawDate":"2004-03","status":"Proposed Standard","obsoletedBy":["RFC4932"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3733":{"rfcNumber":"RFC3733","href":"https://www.rfc-editor.org/rfc/rfc3733","title":"Extensible Provisioning Protocol (EPP) Contact Mapping","authors":["S. Hollenbeck"],"rawDate":"2004-03","status":"Proposed Standard","obsoletedBy":["RFC4933"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3733","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3734":{"rfcNumber":"RFC3734","href":"https://www.rfc-editor.org/rfc/rfc3734","title":"Extensible Provisioning Protocol (EPP) Transport Over TCP","authors":["S. Hollenbeck"],"rawDate":"2004-03","status":"Proposed Standard","obsoletedBy":["RFC4934"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3735":{"rfcNumber":"RFC3735","href":"https://www.rfc-editor.org/rfc/rfc3735","title":"Guidelines for Extending the Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2004-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3736":{"rfcNumber":"RFC3736","href":"https://www.rfc-editor.org/rfc/rfc3736","title":"Stateless Dynamic Host Configuration Protocol (DHCP) Service for IPv6","authors":["R. Droms"],"rawDate":"2004-04","status":"Proposed Standard","obsoletedBy":["RFC8415"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3736","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3737":{"rfcNumber":"RFC3737","href":"https://www.rfc-editor.org/rfc/rfc3737","title":"IANA Guidelines for the Registry of Remote Monitoring (RMON) MIB modules","authors":["B. Wijnen","A. Bierman"],"rawDate":"2004-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3738":{"rfcNumber":"RFC3738","href":"https://www.rfc-editor.org/rfc/rfc3738","title":"Wave and Equation Based Rate Control (WEBRC) Building Block","authors":["M. Luby","V. Goyal"],"rawDate":"2004-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3739":{"rfcNumber":"RFC3739","href":"https://www.rfc-editor.org/rfc/rfc3739","title":"Internet X.509 Public Key Infrastructure: Qualified Certificates Profile","authors":["S. Santesson","M. Nystrom","T. Polk"],"rawDate":"2004-03","status":"Proposed Standard","obsoletes":["RFC3039"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3739","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc374":{"aliasOf":"rfc0374"},"rfc3740":{"rfcNumber":"RFC3740","href":"https://www.rfc-editor.org/rfc/rfc3740","title":"The Multicast Group Security Architecture","authors":["T. Hardjono","B. Weis"],"rawDate":"2004-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3741":{"rfcNumber":"RFC3741","href":"https://www.rfc-editor.org/rfc/rfc3741","title":"Exclusive XML Canonicalization, Version 1.0","authors":["J. Boyer","D. Eastlake 3rd","J. Reagle"],"rawDate":"2004-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3741","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3742":{"rfcNumber":"RFC3742","href":"https://www.rfc-editor.org/rfc/rfc3742","title":"Limited Slow-Start for TCP with Large Congestion Windows","authors":["S. Floyd"],"rawDate":"2004-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3742","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3743":{"rfcNumber":"RFC3743","href":"https://www.rfc-editor.org/rfc/rfc3743","title":"Joint Engineering Team (JET) Guidelines for Internationalized Domain Names (IDN) Registration and Administration for Chinese, Japanese, and Korean","authors":["K. Konishi","K. Huang","H. Qian","Y. Ko"],"rawDate":"2004-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3743","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3744":{"rfcNumber":"RFC3744","href":"https://www.rfc-editor.org/rfc/rfc3744","title":"Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol","authors":["G. Clemm","J. Reschke","E. Sedlar","J. Whitehead"],"rawDate":"2004-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3744","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3745":{"rfcNumber":"RFC3745","href":"https://www.rfc-editor.org/rfc/rfc3745","title":"MIME Type Registrations for JPEG 2000 (ISO/IEC 15444)","authors":["D. Singer","R. Clark","D. Lee"],"rawDate":"2004-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3746":{"rfcNumber":"RFC3746","href":"https://www.rfc-editor.org/rfc/rfc3746","title":"Forwarding and Control Element Separation (ForCES) Framework","authors":["L. Yang","R. Dantu","T. Anderson","R. Gopal"],"rawDate":"2004-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3746","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3747":{"rfcNumber":"RFC3747","href":"https://www.rfc-editor.org/rfc/rfc3747","title":"The Differentiated Services Configuration MIB","authors":["H. Hazewinkel, Ed.","D. Partain, Ed."],"rawDate":"2004-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3748":{"rfcNumber":"RFC3748","href":"https://www.rfc-editor.org/rfc/rfc3748","title":"Extensible Authentication Protocol (EAP)","authors":["B. Aboba","L. Blunk","J. Vollbrecht","J. Carlson","H. Levkowetz, Ed."],"rawDate":"2004-06","status":"Proposed Standard","updatedBy":["RFC5247","RFC7057"],"obsoletes":["RFC2284"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3748","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3749":{"rfcNumber":"RFC3749","href":"https://www.rfc-editor.org/rfc/rfc3749","title":"Transport Layer Security Protocol Compression Methods","authors":["S. Hollenbeck"],"rawDate":"2004-05","status":"Proposed Standard","updatedBy":["RFC8447","RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3750":{"rfcNumber":"RFC3750","href":"https://www.rfc-editor.org/rfc/rfc3750","title":"Unmanaged Networks IPv6 Transition Scenarios","authors":["C. Huitema","R. Austein","S. Satapati","R. van der Pol"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3751":{"rfcNumber":"RFC3751","href":"https://www.rfc-editor.org/rfc/rfc3751","title":"Omniscience Protocol Requirements","authors":["S. Bradner"],"rawDate":"2004-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3752":{"rfcNumber":"RFC3752","href":"https://www.rfc-editor.org/rfc/rfc3752","title":"Open Pluggable Edge Services (OPES) Use Cases and Deployment Scenarios","authors":["A. Barbir","E. Burger","R. Chen","S. McHenry","H. Orman","R. Penno"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3753":{"rfcNumber":"RFC3753","href":"https://www.rfc-editor.org/rfc/rfc3753","title":"Mobility Related Terminology","authors":["J. Manner, Ed.","M. Kojo, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3754":{"rfcNumber":"RFC3754","href":"https://www.rfc-editor.org/rfc/rfc3754","title":"IP Multicast in Differentiated Services (DS) Networks","authors":["R. Bless","K. Wehrle"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3755":{"rfcNumber":"RFC3755","href":"https://www.rfc-editor.org/rfc/rfc3755","title":"Legacy Resolver Compatibility for Delegation Signer (DS)","authors":["S. Weiler"],"rawDate":"2004-05","status":"Proposed Standard","updatedBy":["RFC3757","RFC3845"],"obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC3658","RFC2535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3756":{"rfcNumber":"RFC3756","href":"https://www.rfc-editor.org/rfc/rfc3756","title":"IPv6 Neighbor Discovery (ND) Trust Models and Threats","authors":["P. Nikander, Ed.","J. Kempf","E. Nordmark"],"rawDate":"2004-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3756","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3757":{"rfcNumber":"RFC3757","href":"https://www.rfc-editor.org/rfc/rfc3757","title":"Domain Name System KEY (DNSKEY) Resource Record (RR) Secure Entry Point (SEP) Flag","authors":["O. Kolkman","J. Schlyter","E. Lewis"],"rawDate":"2004-04","status":"Proposed Standard","obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC3755","RFC2535"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3757","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3758":{"rfcNumber":"RFC3758","href":"https://www.rfc-editor.org/rfc/rfc3758","title":"Stream Control Transmission Protocol (SCTP) Partial Reliability Extension","authors":["R. Stewart","M. Ramalho","Q. Xie","M. Tuexen","P. Conrad"],"rawDate":"2004-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3759":{"rfcNumber":"RFC3759","href":"https://www.rfc-editor.org/rfc/rfc3759","title":"RObust Header Compression (ROHC): Terminology and Channel Mapping Examples","authors":["L-E. Jonsson"],"rawDate":"2004-04","status":"Informational","updates":["RFC3095"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc376":{"aliasOf":"rfc0376"},"rfc3760":{"rfcNumber":"RFC3760","href":"https://www.rfc-editor.org/rfc/rfc3760","title":"Securely Available Credentials (SACRED) - Credential Server Framework","authors":["D. Gustafson","M. Just","M. Nystrom"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3761":{"rfcNumber":"RFC3761","href":"https://www.rfc-editor.org/rfc/rfc3761","title":"The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)","authors":["P. Faltstrom","M. Mealling"],"rawDate":"2004-04","status":"Proposed Standard","obsoletedBy":["RFC6116","RFC6117"],"obsoletes":["RFC2916"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3762":{"rfcNumber":"RFC3762","href":"https://www.rfc-editor.org/rfc/rfc3762","title":"Telephone Number Mapping (ENUM) Service Registration for H.323","authors":["O. Levin"],"rawDate":"2004-04","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3763":{"rfcNumber":"RFC3763","href":"https://www.rfc-editor.org/rfc/rfc3763","title":"One-way Active Measurement Protocol (OWAMP) Requirements","authors":["S. Shalunov","B. Teitelbaum"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3764":{"rfcNumber":"RFC3764","href":"https://www.rfc-editor.org/rfc/rfc3764","title":"enumservice registration for Session Initiation Protocol (SIP) Addresses-of-Record","authors":["J. Peterson"],"rawDate":"2004-04","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3765":{"rfcNumber":"RFC3765","href":"https://www.rfc-editor.org/rfc/rfc3765","title":"NOPEER Community for Border Gateway Protocol (BGP) Route Scope Control","authors":["G. Huston"],"rawDate":"2004-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3766":{"rfcNumber":"RFC3766","href":"https://www.rfc-editor.org/rfc/rfc3766","title":"Determining Strengths For Public Keys Used For Exchanging Symmetric Keys","authors":["H. Orman","P. Hoffman"],"rawDate":"2004-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3767":{"rfcNumber":"RFC3767","href":"https://www.rfc-editor.org/rfc/rfc3767","title":"Securely Available Credentials Protocol","authors":["S. Farrell, Ed."],"rawDate":"2004-06","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3768":{"rfcNumber":"RFC3768","href":"https://www.rfc-editor.org/rfc/rfc3768","title":"Virtual Router Redundancy Protocol (VRRP)","authors":["R. Hinden, Ed."],"rawDate":"2004-04","status":"Draft Standard","obsoletedBy":["RFC5798"],"obsoletes":["RFC2338"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3769":{"rfcNumber":"RFC3769","href":"https://www.rfc-editor.org/rfc/rfc3769","title":"Requirements for IPv6 Prefix Delegation","authors":["S. Miyakawa","R. Droms"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc377":{"aliasOf":"rfc0377"},"rfc3770":{"rfcNumber":"RFC3770","href":"https://www.rfc-editor.org/rfc/rfc3770","title":"Certificate Extensions and Attributes Supporting Authentication in Point-to-Point Protocol (PPP) and Wireless Local Area Networks (WLAN)","authors":["R. Housley","T. Moore"],"rawDate":"2004-05","status":"Proposed Standard","obsoletedBy":["RFC4334"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3770","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3771":{"rfcNumber":"RFC3771","href":"https://www.rfc-editor.org/rfc/rfc3771","title":"The Lightweight Directory Access Protocol (LDAP) Intermediate Response Message","authors":["R. Harrison","K. Zeilenga"],"rawDate":"2004-04","status":"Proposed Standard","obsoletedBy":["RFC4511","RFC4510"],"updates":["RFC2251"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3772":{"rfcNumber":"RFC3772","href":"https://www.rfc-editor.org/rfc/rfc3772","title":"Point-to-Point Protocol (PPP) Vendor Protocol","authors":["J. Carlson","R. Winslow"],"rawDate":"2004-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3773":{"rfcNumber":"RFC3773","href":"https://www.rfc-editor.org/rfc/rfc3773","title":"High-Level Requirements for Internet Voice Mail","authors":["E. Candell"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3774":{"rfcNumber":"RFC3774","href":"https://www.rfc-editor.org/rfc/rfc3774","title":"IETF Problem Statement","authors":["E. Davies, Ed."],"rawDate":"2004-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3775":{"rfcNumber":"RFC3775","href":"https://www.rfc-editor.org/rfc/rfc3775","title":"Mobility Support in IPv6","authors":["D. Johnson","C. Perkins","J. Arkko"],"rawDate":"2004-06","status":"Proposed Standard","obsoletedBy":["RFC6275"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3776":{"rfcNumber":"RFC3776","href":"https://www.rfc-editor.org/rfc/rfc3776","title":"Using IPsec to Protect Mobile IPv6 Signaling Between Mobile Nodes and Home Agents","authors":["J. Arkko","V. Devarapalli","F. Dupont"],"rawDate":"2004-06","status":"Proposed Standard","updatedBy":["RFC4877"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3777":{"rfcNumber":"RFC3777","href":"https://www.rfc-editor.org/rfc/rfc3777","title":"IAB and IESG Selection, Confirmation, and Recall Process: Operation of the Nominating and Recall Committees","authors":["J. Galvin, Ed."],"rawDate":"2004-06","status":"Best Current Practice","updatedBy":["RFC5078","RFC5633","RFC5680","RFC6859"],"obsoletedBy":["RFC7437"],"obsoletes":["RFC2727"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3777","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3778":{"rfcNumber":"RFC3778","href":"https://www.rfc-editor.org/rfc/rfc3778","title":"The application/pdf Media Type","authors":["E. Taft","J. Pravetz","S. Zilles","L. Masinter"],"rawDate":"2004-05","status":"Informational","obsoletedBy":["RFC8118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3779":{"rfcNumber":"RFC3779","href":"https://www.rfc-editor.org/rfc/rfc3779","title":"X.509 Extensions for IP Addresses and AS Identifiers","authors":["C. Lynn","S. Kent","K. Seo"],"rawDate":"2004-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3779","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc378":{"aliasOf":"rfc0378"},"rfc3780":{"rfcNumber":"RFC3780","href":"https://www.rfc-editor.org/rfc/rfc3780","title":"SMIng - Next Generation Structure of Management Information","authors":["F. Strauss","J. Schoenwaelder"],"rawDate":"2004-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3781":{"rfcNumber":"RFC3781","href":"https://www.rfc-editor.org/rfc/rfc3781","title":"Next Generation Structure of Management Information (SMIng) Mappings to the Simple Network Management Protocol (SNMP)","authors":["F. Strauss","J. Schoenwaelder"],"rawDate":"2004-05","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3781","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3782":{"rfcNumber":"RFC3782","href":"https://www.rfc-editor.org/rfc/rfc3782","title":"The NewReno Modification to TCP's Fast Recovery Algorithm","authors":["S. Floyd","T. Henderson","A. Gurtov"],"rawDate":"2004-04","status":"Proposed Standard","obsoletedBy":["RFC6582"],"obsoletes":["RFC2582"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3782","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3783":{"rfcNumber":"RFC3783","href":"https://www.rfc-editor.org/rfc/rfc3783","title":"Small Computer Systems Interface (SCSI) Command Ordering Considerations with iSCSI","authors":["M. Chadalapaka","R. Elliott"],"rawDate":"2004-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3783","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3784":{"rfcNumber":"RFC3784","href":"https://www.rfc-editor.org/rfc/rfc3784","title":"Intermediate System to Intermediate System (IS-IS) Extensions for Traffic Engineering (TE)","authors":["H. Smit","T. Li"],"rawDate":"2004-06","status":"Informational","updatedBy":["RFC4205"],"obsoletedBy":["RFC5305"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3785":{"rfcNumber":"RFC3785","href":"https://www.rfc-editor.org/rfc/rfc3785","title":"Use of Interior Gateway Protocol (IGP) Metric as a second MPLS Traffic Engineering (TE) Metric","authors":["F. Le Faucheur","R. Uppili","A. Vedrenne","P. Merckx","T. Telkamp"],"rawDate":"2004-05","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3786":{"rfcNumber":"RFC3786","href":"https://www.rfc-editor.org/rfc/rfc3786","title":"Extending the Number of Intermediate System to Intermediate System (IS-IS) Link State PDU (LSP) Fragments Beyond the 256 Limit","authors":["A. Hermelin","S. Previdi","M. Shand"],"rawDate":"2004-05","status":"Informational","obsoletedBy":["RFC5311"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3787":{"rfcNumber":"RFC3787","href":"https://www.rfc-editor.org/rfc/rfc3787","title":"Recommendations for Interoperable IP Networks using Intermediate System to Intermediate System (IS-IS)","authors":["J. Parker, Ed."],"rawDate":"2004-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3788":{"rfcNumber":"RFC3788","href":"https://www.rfc-editor.org/rfc/rfc3788","title":"Security Considerations for Signaling Transport (SIGTRAN) Protocols","authors":["J. Loughney","M. Tuexen, Ed.","J. Pastor-Balbas"],"rawDate":"2004-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3789":{"rfcNumber":"RFC3789","href":"https://www.rfc-editor.org/rfc/rfc3789","title":"Introduction to the Survey of IPv4 Addresses in Currently Deployed IETF Standards Track and Experimental Documents","authors":["P. Nesser, II","A. Bergstrom, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc379":{"aliasOf":"rfc0379"},"rfc3790":{"rfcNumber":"RFC3790","href":"https://www.rfc-editor.org/rfc/rfc3790","title":"Survey of IPv4 Addresses in Currently Deployed IETF Internet Area Standards Track and Experimental Documents","authors":["C. Mickles, Ed.","P. Nesser, II"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3791":{"rfcNumber":"RFC3791","href":"https://www.rfc-editor.org/rfc/rfc3791","title":"Survey of IPv4 Addresses in Currently Deployed IETF Routing Area Standards Track and Experimental Documents","authors":["C. Olvera","P. Nesser, II"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3792":{"rfcNumber":"RFC3792","href":"https://www.rfc-editor.org/rfc/rfc3792","title":"Survey of IPv4 Addresses in Currently Deployed IETF Security Area Standards Track and Experimental Documents","authors":["P. Nesser, II","A. Bergstrom, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3793":{"rfcNumber":"RFC3793","href":"https://www.rfc-editor.org/rfc/rfc3793","title":"Survey of IPv4 Addresses in Currently Deployed IETF Sub-IP Area Standards Track and Experimental Documents","authors":["P. Nesser, II","A. Bergstrom, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3794":{"rfcNumber":"RFC3794","href":"https://www.rfc-editor.org/rfc/rfc3794","title":"Survey of IPv4 Addresses in Currently Deployed IETF Transport Area Standards Track and Experimental Documents","authors":["P. Nesser, II","A. Bergstrom, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3795":{"rfcNumber":"RFC3795","href":"https://www.rfc-editor.org/rfc/rfc3795","title":"Survey of IPv4 Addresses in Currently Deployed IETF Application Area Standards Track and Experimental Documents","authors":["R. Sofia","P. Nesser, II"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3796":{"rfcNumber":"RFC3796","href":"https://www.rfc-editor.org/rfc/rfc3796","title":"Survey of IPv4 Addresses in Currently Deployed IETF Operations & Management Area Standards Track and Experimental Documents","authors":["P. Nesser, II","A. Bergstrom, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3797":{"rfcNumber":"RFC3797","href":"https://www.rfc-editor.org/rfc/rfc3797","title":"Publicly Verifiable Nominations Committee (NomCom) Random Selection","authors":["D. Eastlake 3rd"],"rawDate":"2004-06","status":"Informational","obsoletes":["RFC2777"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3797","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3798":{"rfcNumber":"RFC3798","href":"https://www.rfc-editor.org/rfc/rfc3798","title":"Message Disposition Notification","authors":["T. Hansen, Ed.","G. Vaudreuil, Ed."],"rawDate":"2004-05","status":"Draft Standard","updatedBy":["RFC5337","RFC6533"],"obsoletedBy":["RFC8098"],"updates":["RFC3461","RFC2046"],"obsoletes":["RFC2298"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3798","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc38":{"aliasOf":"rfc0038"},"rfc3801":{"rfcNumber":"RFC3801","href":"https://www.rfc-editor.org/rfc/rfc3801","title":"Voice Profile for Internet Mail - version 2 (VPIMv2)","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"2004-06","status":"Draft Standard","obsoletes":["RFC2421","RFC2423"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3802":{"rfcNumber":"RFC3802","href":"https://www.rfc-editor.org/rfc/rfc3802","title":"Toll Quality Voice - 32 kbit/s Adaptive Differential Pulse Code Modulation (ADPCM) MIME Sub-type Registration","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"2004-06","status":"Draft Standard","obsoletes":["RFC2422"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3803":{"rfcNumber":"RFC3803","href":"https://www.rfc-editor.org/rfc/rfc3803","title":"Content Duration MIME Header Definition","authors":["G. Vaudreuil","G. Parsons"],"rawDate":"2004-06","status":"Draft Standard","obsoletes":["RFC2424"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3804":{"rfcNumber":"RFC3804","href":"https://www.rfc-editor.org/rfc/rfc3804","title":"Voice Profile for Internet Mail (VPIM) Addressing","authors":["G. Parsons"],"rawDate":"2004-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3805":{"rfcNumber":"RFC3805","href":"https://www.rfc-editor.org/rfc/rfc3805","title":"Printer MIB v2","authors":["R. Bergman","H. Lewis","I. McDonald"],"rawDate":"2004-06","status":"Proposed Standard","obsoletes":["RFC1759"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3806":{"rfcNumber":"RFC3806","href":"https://www.rfc-editor.org/rfc/rfc3806","title":"Printer Finishing MIB","authors":["R. Bergman","H. Lewis","I. McDonald"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3807":{"rfcNumber":"RFC3807","href":"https://www.rfc-editor.org/rfc/rfc3807","title":"V5.2-User Adaptation Layer (V5UA)","authors":["E. Weilandt","N. Khanchandani","S. Rao"],"rawDate":"2004-06","status":"Proposed Standard","updates":["RFC3057"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3808":{"rfcNumber":"RFC3808","href":"https://www.rfc-editor.org/rfc/rfc3808","title":"IANA Charset MIB","authors":["I. McDonald"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3809":{"rfcNumber":"RFC3809","href":"https://www.rfc-editor.org/rfc/rfc3809","title":"Generic Requirements for Provider Provisioned Virtual Private Networks (PPVPN)","authors":["A. Nagarajan, Ed."],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc381":{"aliasOf":"rfc0381"},"rfc3810":{"rfcNumber":"RFC3810","href":"https://www.rfc-editor.org/rfc/rfc3810","title":"Multicast Listener Discovery Version 2 (MLDv2) for IPv6","authors":["R. Vida, Ed.","L. Costa, Ed."],"rawDate":"2004-06","status":"Proposed Standard","updatedBy":["RFC4604"],"updates":["RFC2710"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3810","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3811":{"rfcNumber":"RFC3811","href":"https://www.rfc-editor.org/rfc/rfc3811","title":"Definitions of Textual Conventions (TCs) for Multiprotocol Label Switching (MPLS) Management","authors":["T. Nadeau, Ed.","J. Cucchiara, Ed."],"rawDate":"2004-06","status":"Proposed Standard","updatedBy":["RFC7274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3811","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3812":{"rfcNumber":"RFC3812","href":"https://www.rfc-editor.org/rfc/rfc3812","title":"Multiprotocol Label Switching (MPLS) Traffic Engineering (TE) Management Information Base (MIB)","authors":["C. Srinivasan","A. Viswanathan","T. Nadeau"],"rawDate":"2004-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3813":{"rfcNumber":"RFC3813","href":"https://www.rfc-editor.org/rfc/rfc3813","title":"Multiprotocol Label Switching (MPLS) Label Switching Router (LSR) Management Information Base (MIB)","authors":["C. Srinivasan","A. Viswanathan","T. Nadeau"],"rawDate":"2004-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3813","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3814":{"rfcNumber":"RFC3814","href":"https://www.rfc-editor.org/rfc/rfc3814","title":"Multiprotocol Label Switching (MPLS) Forwarding Equivalence Class To Next Hop Label Forwarding Entry (FEC-To-NHLFE) Management Information Base (MIB)","authors":["T. Nadeau","C. Srinivasan","A. Viswanathan"],"rawDate":"2004-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3815":{"rfcNumber":"RFC3815","href":"https://www.rfc-editor.org/rfc/rfc3815","title":"Definitions of Managed Objects for the Multiprotocol Label Switching (MPLS), Label Distribution Protocol (LDP)","authors":["J. Cucchiara","H. Sjostrand","J. Luciani"],"rawDate":"2004-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3815","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3816":{"rfcNumber":"RFC3816","href":"https://www.rfc-editor.org/rfc/rfc3816","title":"Definitions of Managed Objects for RObust Header Compression (ROHC)","authors":["J. Quittek","M. Stiemerling","H. Hartenstein"],"rawDate":"2004-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3816","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3817":{"rfcNumber":"RFC3817","href":"https://www.rfc-editor.org/rfc/rfc3817","title":"Layer 2 Tunneling Protocol (L2TP) Active Discovery Relay for PPP over Ethernet (PPPoE)","authors":["W. Townsley","R. da Silva"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3818":{"rfcNumber":"RFC3818","href":"https://www.rfc-editor.org/rfc/rfc3818","title":"IANA Considerations for the Point-to-Point Protocol (PPP)","authors":["V. Schryver"],"rawDate":"2004-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3819":{"rfcNumber":"RFC3819","href":"https://www.rfc-editor.org/rfc/rfc3819","title":"Advice for Internet Subnetwork Designers","authors":["P. Karn, Ed.","C. Bormann","G. Fairhurst","D. Grossman","R. Ludwig","J. Mahdavi","G. Montenegro","J. Touch","L. Wood"],"rawDate":"2004-07","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3819","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc382":{"aliasOf":"rfc0382"},"rfc3820":{"rfcNumber":"RFC3820","href":"https://www.rfc-editor.org/rfc/rfc3820","title":"Internet X.509 Public Key Infrastructure (PKI) Proxy Certificate Profile","authors":["S. Tuecke","V. Welch","D. Engert","L. Pearlman","M. Thompson"],"rawDate":"2004-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3820","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3821":{"rfcNumber":"RFC3821","href":"https://www.rfc-editor.org/rfc/rfc3821","title":"Fibre Channel Over TCP/IP (FCIP)","authors":["M. Rajagopal","E. Rodriguez","R. Weber"],"rawDate":"2004-07","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3822":{"rfcNumber":"RFC3822","href":"https://www.rfc-editor.org/rfc/rfc3822","title":"Finding Fibre Channel over TCP/IP (FCIP) Entities Using Service Location Protocol version 2 (SLPv2)","authors":["D. Peterson"],"rawDate":"2004-07","status":"Proposed Standard","updatedBy":["RFC7146"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3822","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3823":{"rfcNumber":"RFC3823","href":"https://www.rfc-editor.org/rfc/rfc3823","title":"MIME Media Type for the Systems Biology Markup Language (SBML)","authors":["B. Kovitz"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3824":{"rfcNumber":"RFC3824","href":"https://www.rfc-editor.org/rfc/rfc3824","title":"Using E.164 numbers with the Session Initiation Protocol (SIP)","authors":["J. Peterson","H. Liu","J. Yu","B. Campbell"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3825":{"rfcNumber":"RFC3825","href":"https://www.rfc-editor.org/rfc/rfc3825","title":"Dynamic Host Configuration Protocol Option for Coordinate-based Location Configuration Information","authors":["J. Polk","J. Schnizlein","M. Linsner"],"rawDate":"2004-07","status":"Proposed Standard","obsoletedBy":["RFC6225"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3826":{"rfcNumber":"RFC3826","href":"https://www.rfc-editor.org/rfc/rfc3826","title":"The Advanced Encryption Standard (AES) Cipher Algorithm in the SNMP User-based Security Model","authors":["U. Blumenthal","F. Maino","K. McCloghrie"],"rawDate":"2004-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3827":{"rfcNumber":"RFC3827","href":"https://www.rfc-editor.org/rfc/rfc3827","title":"Additional Snoop Datalink Types","authors":["K. Sarcar"],"rawDate":"2004-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3828":{"rfcNumber":"RFC3828","href":"https://www.rfc-editor.org/rfc/rfc3828","title":"The Lightweight User Datagram Protocol (UDP-Lite)","authors":["L-A. Larzon","M. Degermark","S. Pink","L-E. Jonsson, Ed.","G. Fairhurst, Ed."],"rawDate":"2004-07","status":"Proposed Standard","updatedBy":["RFC6335"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3829":{"rfcNumber":"RFC3829","href":"https://www.rfc-editor.org/rfc/rfc3829","title":"Lightweight Directory Access Protocol (LDAP) Authorization Identity Request and Response Controls","authors":["R. Weltman","M. Smith","M. Wahl"],"rawDate":"2004-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3829","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3830":{"rfcNumber":"RFC3830","href":"https://www.rfc-editor.org/rfc/rfc3830","title":"MIKEY: Multimedia Internet KEYing","authors":["J. Arkko","E. Carrara","F. Lindholm","M. Naslund","K. Norrman"],"rawDate":"2004-08","status":"Proposed Standard","updatedBy":["RFC4738","RFC6309"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3830","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3831":{"rfcNumber":"RFC3831","href":"https://www.rfc-editor.org/rfc/rfc3831","title":"Transmission of IPv6 Packets over Fibre Channel","authors":["C. DeSanti"],"rawDate":"2004-07","status":"Proposed Standard","obsoletedBy":["RFC4338"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3832":{"rfcNumber":"RFC3832","href":"https://www.rfc-editor.org/rfc/rfc3832","title":"Remote Service Discovery in the Service Location Protocol (SLP) via DNS SRV","authors":["W. Zhao","H. Schulzrinne","E. Guttman","C. Bisdikian","W. Jerome"],"rawDate":"2004-07","status":"Experimental","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3833":{"rfcNumber":"RFC3833","href":"https://www.rfc-editor.org/rfc/rfc3833","title":"Threat Analysis of the Domain Name System (DNS)","authors":["D. Atkins","R. Austein"],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3834":{"rfcNumber":"RFC3834","href":"https://www.rfc-editor.org/rfc/rfc3834","title":"Recommendations for Automatic Responses to Electronic Mail","authors":["K. Moore"],"rawDate":"2004-08","status":"Proposed Standard","updatedBy":["RFC5436"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3834","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3835":{"rfcNumber":"RFC3835","href":"https://www.rfc-editor.org/rfc/rfc3835","title":"An Architecture for Open Pluggable Edge Services (OPES)","authors":["A. Barbir","R. Penno","R. Chen","M. Hofmann","H. Orman"],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3836":{"rfcNumber":"RFC3836","href":"https://www.rfc-editor.org/rfc/rfc3836","title":"Requirements for Open Pluggable Edge Services (OPES) Callout Protocols","authors":["A. Beck","M. Hofmann","H. Orman","R. Penno","A. Terzis"],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3837":{"rfcNumber":"RFC3837","href":"https://www.rfc-editor.org/rfc/rfc3837","title":"Security Threats and Risks for Open Pluggable Edge Services (OPES)","authors":["A. Barbir","O. Batuner","B. Srinivas","M. Hofmann","H. Orman"],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3838":{"rfcNumber":"RFC3838","href":"https://www.rfc-editor.org/rfc/rfc3838","title":"Policy, Authorization, and Enforcement Requirements of the Open Pluggable Edge Services (OPES)","authors":["A. Barbir","O. Batuner","A. Beck","T. Chan","H. Orman"],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3839":{"rfcNumber":"RFC3839","href":"https://www.rfc-editor.org/rfc/rfc3839","title":"MIME Type Registrations for 3rd Generation Partnership Project (3GPP) Multimedia files","authors":["R. Castagno","D. Singer"],"rawDate":"2004-07","status":"Proposed Standard","updatedBy":["RFC6381"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc384":{"aliasOf":"rfc0384"},"rfc3840":{"rfcNumber":"RFC3840","href":"https://www.rfc-editor.org/rfc/rfc3840","title":"Indicating User Agent Capabilities in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","H. Schulzrinne","P. Kyzivat"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3841":{"rfcNumber":"RFC3841","href":"https://www.rfc-editor.org/rfc/rfc3841","title":"Caller Preferences for the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","H. Schulzrinne","P. Kyzivat"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3842":{"rfcNumber":"RFC3842","href":"https://www.rfc-editor.org/rfc/rfc3842","title":"A Message Summary and Message Waiting Indication Event Package for the Session Initiation Protocol (SIP)","authors":["R. Mahy"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3843":{"rfcNumber":"RFC3843","href":"https://www.rfc-editor.org/rfc/rfc3843","title":"RObust Header Compression (ROHC): A Compression Profile for IP","authors":["L-E. Jonsson","G. Pelletier"],"rawDate":"2004-06","status":"Proposed Standard","updatedBy":["RFC4815"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3844":{"rfcNumber":"RFC3844","href":"https://www.rfc-editor.org/rfc/rfc3844","title":"IETF Problem Resolution Process","authors":["E. Davies, Ed.","J. Hofmann, Ed."],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3845":{"rfcNumber":"RFC3845","href":"https://www.rfc-editor.org/rfc/rfc3845","title":"DNS Security (DNSSEC) NextSECure (NSEC) RDATA Format","authors":["J. Schlyter, Ed."],"rawDate":"2004-08","status":"Proposed Standard","obsoletedBy":["RFC4033","RFC4034","RFC4035"],"updates":["RFC3755","RFC2535"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3846":{"rfcNumber":"RFC3846","href":"https://www.rfc-editor.org/rfc/rfc3846","title":"Mobile IPv4 Extension for Carrying Network Access Identifiers","authors":["F. Johansson","T. Johansson"],"rawDate":"2004-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3847":{"rfcNumber":"RFC3847","href":"https://www.rfc-editor.org/rfc/rfc3847","title":"Restart Signaling for Intermediate System to Intermediate System (IS-IS)","authors":["M. Shand","L. Ginsberg"],"rawDate":"2004-07","status":"Informational","obsoletedBy":["RFC5306"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3848":{"rfcNumber":"RFC3848","href":"https://www.rfc-editor.org/rfc/rfc3848","title":"ESMTP and LMTP Transmission Types Registration","authors":["C. Newman"],"rawDate":"2004-07","status":"Draft Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3849":{"rfcNumber":"RFC3849","href":"https://www.rfc-editor.org/rfc/rfc3849","title":"IPv6 Address Prefix Reserved for Documentation","authors":["G. Huston","A. Lord","P. Smith"],"rawDate":"2004-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc385":{"aliasOf":"rfc0385"},"rfc3850":{"rfcNumber":"RFC3850","href":"https://www.rfc-editor.org/rfc/rfc3850","title":"Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Certificate Handling","authors":["B. Ramsdell, Ed."],"rawDate":"2004-07","status":"Proposed Standard","obsoletedBy":["RFC5750"],"obsoletes":["RFC2632"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3851":{"rfcNumber":"RFC3851","href":"https://www.rfc-editor.org/rfc/rfc3851","title":"Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.1 Message Specification","authors":["B. Ramsdell, Ed."],"rawDate":"2004-07","status":"Proposed Standard","obsoletedBy":["RFC5751"],"obsoletes":["RFC2633"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3852":{"rfcNumber":"RFC3852","href":"https://www.rfc-editor.org/rfc/rfc3852","title":"Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2004-07","status":"Proposed Standard","updatedBy":["RFC4853","RFC5083"],"obsoletedBy":["RFC5652"],"obsoletes":["RFC3369"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3852","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3853":{"rfcNumber":"RFC3853","href":"https://www.rfc-editor.org/rfc/rfc3853","title":"S/MIME Advanced Encryption Standard (AES) Requirement for the Session Initiation Protocol (SIP)","authors":["J. Peterson"],"rawDate":"2004-07","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3854":{"rfcNumber":"RFC3854","href":"https://www.rfc-editor.org/rfc/rfc3854","title":"Securing X.400 Content with Secure/Multipurpose Internet Mail Extensions (S/MIME)","authors":["P. Hoffman","C. Bonatti","A. Eggen"],"rawDate":"2004-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3855":{"rfcNumber":"RFC3855","href":"https://www.rfc-editor.org/rfc/rfc3855","title":"Transporting Secure/Multipurpose Internet Mail Extensions (S/MIME) Objects in X.400","authors":["P. Hoffman","C. Bonatti"],"rawDate":"2004-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3855","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3856":{"rfcNumber":"RFC3856","href":"https://www.rfc-editor.org/rfc/rfc3856","title":"A Presence Event Package for the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2004-08","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3856","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3857":{"rfcNumber":"RFC3857","href":"https://www.rfc-editor.org/rfc/rfc3857","title":"A Watcher Information Event Template-Package for the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3858":{"rfcNumber":"RFC3858","href":"https://www.rfc-editor.org/rfc/rfc3858","title":"An Extensible Markup Language (XML) Based Format for Watcher Information","authors":["J. Rosenberg"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3859":{"rfcNumber":"RFC3859","href":"https://www.rfc-editor.org/rfc/rfc3859","title":"Common Profile for Presence (CPP)","authors":["J. Peterson"],"rawDate":"2004-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3859","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc386":{"aliasOf":"rfc0386"},"rfc3860":{"rfcNumber":"RFC3860","href":"https://www.rfc-editor.org/rfc/rfc3860","title":"Common Profile for Instant Messaging (CPIM)","authors":["J. Peterson"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3861":{"rfcNumber":"RFC3861","href":"https://www.rfc-editor.org/rfc/rfc3861","title":"Address Resolution for Instant Messaging and Presence","authors":["J. Peterson"],"rawDate":"2004-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3862":{"rfcNumber":"RFC3862","href":"https://www.rfc-editor.org/rfc/rfc3862","title":"Common Presence and Instant Messaging (CPIM): Message Format","authors":["G. Klyne","D. Atkins"],"rawDate":"2004-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3862","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3863":{"rfcNumber":"RFC3863","href":"https://www.rfc-editor.org/rfc/rfc3863","title":"Presence Information Data Format (PIDF)","authors":["H. Sugano","S. Fujimoto","G. Klyne","A. Bateman","W. Carr","J. Peterson"],"rawDate":"2004-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3863","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3864":{"rfcNumber":"RFC3864","href":"https://www.rfc-editor.org/rfc/rfc3864","title":"Registration Procedures for Message Header Fields","authors":["G. Klyne","M. Nottingham","J. Mogul"],"rawDate":"2004-09","status":"Best Current Practice","updatedBy":["RFC9110"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3865":{"rfcNumber":"RFC3865","href":"https://www.rfc-editor.org/rfc/rfc3865","title":"A No Soliciting Simple Mail Transfer Protocol (SMTP) Service Extension","authors":["C. Malamud"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3866":{"rfcNumber":"RFC3866","href":"https://www.rfc-editor.org/rfc/rfc3866","title":"Language Tags and Ranges in the Lightweight Directory Access Protocol (LDAP)","authors":["K. Zeilenga, Ed."],"rawDate":"2004-07","status":"Proposed Standard","obsoletes":["RFC2596"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3866","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3867":{"rfcNumber":"RFC3867","href":"https://www.rfc-editor.org/rfc/rfc3867","title":"Payment Application Programmers Interface (API) for v1.0 Internet Open Trading Protocol (IOTP)","authors":["Y. Kawatsura","M. Hiroya","H. Beykirch"],"rawDate":"2004-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3868":{"rfcNumber":"RFC3868","href":"https://www.rfc-editor.org/rfc/rfc3868","title":"Signalling Connection Control Part User Adaptation Layer (SUA)","authors":["J. Loughney, Ed.","G. Sidebottom","L. Coene","G. Verwimp","J. Keller","B. Bidulock"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3869":{"rfcNumber":"RFC3869","href":"https://www.rfc-editor.org/rfc/rfc3869","title":"IAB Concerns and Recommendations Regarding Internet Research and Evolution","authors":["R. Atkinson, Ed.","S. Floyd, Ed.","Internet Architecture Board"],"rawDate":"2004-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc387":{"aliasOf":"rfc0387"},"rfc3870":{"rfcNumber":"RFC3870","href":"https://www.rfc-editor.org/rfc/rfc3870","title":"application/rdf+xml Media Type Registration","authors":["A. Swartz"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3871":{"rfcNumber":"RFC3871","href":"https://www.rfc-editor.org/rfc/rfc3871","title":"Operational Security Requirements for Large Internet Service Provider (ISP) IP Network Infrastructure","authors":["G. Jones, Ed."],"rawDate":"2004-09","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3872":{"rfcNumber":"RFC3872","href":"https://www.rfc-editor.org/rfc/rfc3872","title":"Management Information Base for Telephony Routing over IP (TRIP)","authors":["D. Zinman","D. Walker","J. Jiang"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3873":{"rfcNumber":"RFC3873","href":"https://www.rfc-editor.org/rfc/rfc3873","title":"Stream Control Transmission Protocol (SCTP) Management Information Base (MIB)","authors":["J. Pastor","M. Belinchon"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3874":{"rfcNumber":"RFC3874","href":"https://www.rfc-editor.org/rfc/rfc3874","title":"A 224-bit One-way Hash Function: SHA-224","authors":["R. Housley"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3875":{"rfcNumber":"RFC3875","href":"https://www.rfc-editor.org/rfc/rfc3875","title":"The Common Gateway Interface (CGI) Version 1.1","authors":["D. Robinson","K. Coar"],"rawDate":"2004-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3875","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3876":{"rfcNumber":"RFC3876","href":"https://www.rfc-editor.org/rfc/rfc3876","title":"Returning Matched Values with the Lightweight Directory Access Protocol version 3 (LDAPv3)","authors":["D. Chadwick","S. Mullan"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3877":{"rfcNumber":"RFC3877","href":"https://www.rfc-editor.org/rfc/rfc3877","title":"Alarm Management Information Base (MIB)","authors":["S. Chisholm","D. Romascanu"],"rawDate":"2004-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3877","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3878":{"rfcNumber":"RFC3878","href":"https://www.rfc-editor.org/rfc/rfc3878","title":"Alarm Reporting Control Management Information Base (MIB)","authors":["H. Lam","A. Huynh","D. Perkins"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3879":{"rfcNumber":"RFC3879","href":"https://www.rfc-editor.org/rfc/rfc3879","title":"Deprecating Site Local Addresses","authors":["C. Huitema","B. Carpenter"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc388":{"aliasOf":"rfc0388"},"rfc3880":{"rfcNumber":"RFC3880","href":"https://www.rfc-editor.org/rfc/rfc3880","title":"Call Processing Language (CPL): A Language for User Control of Internet Telephony Services","authors":["J. Lennox","X. Wu","H. Schulzrinne"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3881":{"rfcNumber":"RFC3881","href":"https://www.rfc-editor.org/rfc/rfc3881","title":"Security Audit and Access Accountability Message XML Data Definitions for Healthcare Applications","authors":["G. Marshall"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3882":{"rfcNumber":"RFC3882","href":"https://www.rfc-editor.org/rfc/rfc3882","title":"Configuring BGP to Block Denial-of-Service Attacks","authors":["D. Turk"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3883":{"rfcNumber":"RFC3883","href":"https://www.rfc-editor.org/rfc/rfc3883","title":"Detecting Inactive Neighbors over OSPF Demand Circuits (DC)","authors":["S. Rao","A. Zinin","A. Roy"],"rawDate":"2004-10","status":"Proposed Standard","updates":["RFC1793"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3884":{"rfcNumber":"RFC3884","href":"https://www.rfc-editor.org/rfc/rfc3884","title":"Use of IPsec Transport Mode for Dynamic Routing","authors":["J. Touch","L. Eggert","Y. Wang"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3885":{"rfcNumber":"RFC3885","href":"https://www.rfc-editor.org/rfc/rfc3885","title":"SMTP Service Extension for Message Tracking","authors":["E. Allman","T. Hansen"],"rawDate":"2004-09","status":"Proposed Standard","updates":["RFC3461"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3886":{"rfcNumber":"RFC3886","href":"https://www.rfc-editor.org/rfc/rfc3886","title":"An Extensible Message Format for Message Tracking Responses","authors":["E. Allman"],"rawDate":"2004-09","status":"Proposed Standard","updates":["RFC3463"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3886","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3887":{"rfcNumber":"RFC3887","href":"https://www.rfc-editor.org/rfc/rfc3887","title":"Message Tracking Query Protocol","authors":["T. Hansen"],"rawDate":"2004-09","status":"Proposed Standard","updatedBy":["RFC8553","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3887","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3888":{"rfcNumber":"RFC3888","href":"https://www.rfc-editor.org/rfc/rfc3888","title":"Message Tracking Model and Requirements","authors":["T. Hansen"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc389":{"aliasOf":"rfc0389"},"rfc3890":{"rfcNumber":"RFC3890","href":"https://www.rfc-editor.org/rfc/rfc3890","title":"A Transport Independent Bandwidth Modifier for the Session Description Protocol (SDP)","authors":["M. Westerlund"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3891":{"rfcNumber":"RFC3891","href":"https://www.rfc-editor.org/rfc/rfc3891","title":"The Session Initiation Protocol (SIP) \"Replaces\" Header","authors":["R. Mahy","B. Biggs","R. Dean"],"rawDate":"2004-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3891","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3892":{"rfcNumber":"RFC3892","href":"https://www.rfc-editor.org/rfc/rfc3892","title":"The Session Initiation Protocol (SIP) Referred-By Mechanism","authors":["R. Sparks"],"rawDate":"2004-09","status":"Proposed Standard","updatedBy":["RFC8217"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3893":{"rfcNumber":"RFC3893","href":"https://www.rfc-editor.org/rfc/rfc3893","title":"Session Initiation Protocol (SIP) Authenticated Identity Body (AIB) Format","authors":["J. Peterson"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3894":{"rfcNumber":"RFC3894","href":"https://www.rfc-editor.org/rfc/rfc3894","title":"Sieve Extension: Copying Without Side Effects","authors":["J. Degener"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3895":{"rfcNumber":"RFC3895","href":"https://www.rfc-editor.org/rfc/rfc3895","title":"Definitions of Managed Objects for the DS1, E1, DS2, and E2 Interface Types","authors":["O. Nicklass, Ed."],"rawDate":"2004-09","status":"Proposed Standard","obsoletedBy":["RFC4805"],"obsoletes":["RFC2495"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3896":{"rfcNumber":"RFC3896","href":"https://www.rfc-editor.org/rfc/rfc3896","title":"Definitions of Managed Objects for the DS3/E3 Interface Type","authors":["O. Nicklass, Ed."],"rawDate":"2004-09","status":"Proposed Standard","obsoletes":["RFC2496"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3897":{"rfcNumber":"RFC3897","href":"https://www.rfc-editor.org/rfc/rfc3897","title":"Open Pluggable Edge Services (OPES) Entities and End Points Communication","authors":["A. Barbir"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3898":{"rfcNumber":"RFC3898","href":"https://www.rfc-editor.org/rfc/rfc3898","title":"Network Information Service (NIS) Configuration Options for Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["V. Kalusivalingam"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc39":{"aliasOf":"rfc0039"},"rfc390":{"aliasOf":"rfc0390"},"rfc3901":{"rfcNumber":"RFC3901","href":"https://www.rfc-editor.org/rfc/rfc3901","title":"DNS IPv6 Transport Operational Guidelines","authors":["A. Durand","J. Ihren"],"rawDate":"2004-09","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3902":{"rfcNumber":"RFC3902","href":"https://www.rfc-editor.org/rfc/rfc3902","title":"The \"application/soap+xml\" media type","authors":["M. Baker","M. Nottingham"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3903":{"rfcNumber":"RFC3903","href":"https://www.rfc-editor.org/rfc/rfc3903","title":"Session Initiation Protocol (SIP) Extension for Event State Publication","authors":["A. Niemi, Ed."],"rawDate":"2004-10","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3904":{"rfcNumber":"RFC3904","href":"https://www.rfc-editor.org/rfc/rfc3904","title":"Evaluation of IPv6 Transition Mechanisms for Unmanaged Networks","authors":["C. Huitema","R. Austein","S. Satapati","R. van der Pol"],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3905":{"rfcNumber":"RFC3905","href":"https://www.rfc-editor.org/rfc/rfc3905","title":"A Template for IETF Patent Disclosures and Licensing Declarations","authors":["V. See, Ed."],"rawDate":"2004-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3905","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3906":{"rfcNumber":"RFC3906","href":"https://www.rfc-editor.org/rfc/rfc3906","title":"Calculating Interior Gateway Protocol (IGP) Routes Over Traffic Engineering Tunnels","authors":["N. Shen","H. Smit"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3909":{"rfcNumber":"RFC3909","href":"https://www.rfc-editor.org/rfc/rfc3909","title":"Lightweight Directory Access Protocol (LDAP) Cancel Operation","authors":["K. Zeilenga"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc391":{"aliasOf":"rfc0391"},"rfc3910":{"rfcNumber":"RFC3910","href":"https://www.rfc-editor.org/rfc/rfc3910","title":"The SPIRITS (Services in PSTN requesting Internet Services) Protocol","authors":["V. Gurbani, Ed.","A. Brusilovsky","I. Faynberg","J. Gato","H. Lu","M. Unmehopa"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3911":{"rfcNumber":"RFC3911","href":"https://www.rfc-editor.org/rfc/rfc3911","title":"The Session Initiation Protocol (SIP) \"Join\" Header","authors":["R. Mahy","D. Petrie"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3912":{"rfcNumber":"RFC3912","href":"https://www.rfc-editor.org/rfc/rfc3912","title":"WHOIS Protocol Specification","authors":["L. Daigle"],"rawDate":"2004-09","status":"Draft Standard","obsoletes":["RFC0954","RFC0812"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3913":{"rfcNumber":"RFC3913","href":"https://www.rfc-editor.org/rfc/rfc3913","title":"Border Gateway Multicast Protocol (BGMP): Protocol Specification","authors":["D. Thaler"],"rawDate":"2004-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3914":{"rfcNumber":"RFC3914","href":"https://www.rfc-editor.org/rfc/rfc3914","title":"Open Pluggable Edge Services (OPES) Treatment of IAB Considerations","authors":["A. Barbir","A. Rousskov"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3915":{"rfcNumber":"RFC3915","href":"https://www.rfc-editor.org/rfc/rfc3915","title":"Domain Registry Grace Period Mapping for the Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2004-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3916":{"rfcNumber":"RFC3916","href":"https://www.rfc-editor.org/rfc/rfc3916","title":"Requirements for Pseudo-Wire Emulation Edge-to-Edge (PWE3)","authors":["X. Xiao, Ed.","D. McPherson, Ed.","P. Pate, Ed."],"rawDate":"2004-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3917":{"rfcNumber":"RFC3917","href":"https://www.rfc-editor.org/rfc/rfc3917","title":"Requirements for IP Flow Information Export (IPFIX)","authors":["J. Quittek","T. Zseby","B. Claise","S. Zander"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3918":{"rfcNumber":"RFC3918","href":"https://www.rfc-editor.org/rfc/rfc3918","title":"Methodology for IP Multicast Benchmarking","authors":["D. Stopp","B. Hickman"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3919":{"rfcNumber":"RFC3919","href":"https://www.rfc-editor.org/rfc/rfc3919","title":"Remote Network Monitoring (RMON) Protocol Identifiers for IPv6 and Multi Protocol Label Switching (MPLS)","authors":["E. Stephan","J. Palet"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc392":{"aliasOf":"rfc0392"},"rfc3920":{"rfcNumber":"RFC3920","href":"https://www.rfc-editor.org/rfc/rfc3920","title":"Extensible Messaging and Presence Protocol (XMPP): Core","authors":["P. Saint-Andre, Ed."],"rawDate":"2004-10","status":"Proposed Standard","updatedBy":["RFC6122"],"obsoletedBy":["RFC6120"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3920","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3921":{"rfcNumber":"RFC3921","href":"https://www.rfc-editor.org/rfc/rfc3921","title":"Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence","authors":["P. Saint-Andre, Ed."],"rawDate":"2004-10","status":"Proposed Standard","obsoletedBy":["RFC6121"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3922":{"rfcNumber":"RFC3922","href":"https://www.rfc-editor.org/rfc/rfc3922","title":"Mapping the Extensible Messaging and Presence Protocol (XMPP) to Common Presence and Instant Messaging (CPIM)","authors":["P. Saint-Andre"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3923":{"rfcNumber":"RFC3923","href":"https://www.rfc-editor.org/rfc/rfc3923","title":"End-to-End Signing and Object Encryption for the Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre"],"rawDate":"2004-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3923","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3924":{"rfcNumber":"RFC3924","href":"https://www.rfc-editor.org/rfc/rfc3924","title":"Cisco Architecture for Lawful Intercept in IP Networks","authors":["F. Baker","B. Foster","C. Sharp"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3925":{"rfcNumber":"RFC3925","href":"https://www.rfc-editor.org/rfc/rfc3925","title":"Vendor-Identifying Vendor Options for Dynamic Host Configuration Protocol version 4 (DHCPv4)","authors":["J. Littlefield"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3926":{"rfcNumber":"RFC3926","href":"https://www.rfc-editor.org/rfc/rfc3926","title":"FLUTE - File Delivery over Unidirectional Transport","authors":["T. Paila","M. Luby","R. Lehtonen","V. Roca","R. Walsh"],"rawDate":"2004-10","status":"Experimental","obsoletedBy":["RFC6726"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3926","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3927":{"rfcNumber":"RFC3927","href":"https://www.rfc-editor.org/rfc/rfc3927","title":"Dynamic Configuration of IPv4 Link-Local Addresses","authors":["S. Cheshire","B. Aboba","E. Guttman"],"rawDate":"2005-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3927","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3928":{"rfcNumber":"RFC3928","href":"https://www.rfc-editor.org/rfc/rfc3928","title":"Lightweight Directory Access Protocol (LDAP) Client Update Protocol (LCUP)","authors":["R. Megginson, Ed.","M. Smith","O. Natkovich","J. Parham"],"rawDate":"2004-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3929":{"rfcNumber":"RFC3929","href":"https://www.rfc-editor.org/rfc/rfc3929","title":"Alternative Decision Making Processes for Consensus-Blocked Decisions in the IETF","authors":["T. Hardie"],"rawDate":"2004-10","status":"Experimental","updatedBy":["RFC8717"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3929","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc393":{"aliasOf":"rfc0393"},"rfc3930":{"rfcNumber":"RFC3930","href":"https://www.rfc-editor.org/rfc/rfc3930","title":"The Protocol versus Document Points of View in Computer Protocols","authors":["D. Eastlake 3rd"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3931":{"rfcNumber":"RFC3931","href":"https://www.rfc-editor.org/rfc/rfc3931","title":"Layer Two Tunneling Protocol - Version 3 (L2TPv3)","authors":["J. Lau, Ed.","M. Townsley, Ed.","I. Goyret, Ed."],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC5641"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3931","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3932":{"rfcNumber":"RFC3932","href":"https://www.rfc-editor.org/rfc/rfc3932","title":"The IESG and RFC Editor Documents: Procedures","authors":["H. Alvestrand"],"rawDate":"2004-10","status":"Best Current Practice","obsoletedBy":["RFC5742"],"updates":["RFC2026","RFC3710"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3933":{"rfcNumber":"RFC3933","href":"https://www.rfc-editor.org/rfc/rfc3933","title":"A Model for IETF Process Experiments","authors":["J. Klensin","S. Dawkins"],"rawDate":"2004-11","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3933","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3934":{"rfcNumber":"RFC3934","href":"https://www.rfc-editor.org/rfc/rfc3934","title":"Updates to RFC 2418 Regarding the Management of IETF Mailing Lists","authors":["M. Wasserman"],"rawDate":"2004-10","status":"Best Current Practice","updates":["RFC2418"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3935":{"rfcNumber":"RFC3935","href":"https://www.rfc-editor.org/rfc/rfc3935","title":"A Mission Statement for the IETF","authors":["H. Alvestrand"],"rawDate":"2004-10","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3935","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3936":{"rfcNumber":"RFC3936","href":"https://www.rfc-editor.org/rfc/rfc3936","title":"Procedures for Modifying the Resource reSerVation Protocol (RSVP)","authors":["K. Kompella","J. Lang"],"rawDate":"2004-10","status":"Best Current Practice","updates":["RFC3209","RFC2205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3937":{"rfcNumber":"RFC3937","href":"https://www.rfc-editor.org/rfc/rfc3937","title":"A Uniform Resource Name (URN) Namespace for the International Press Telecommunications Council (IPTC)","authors":["M. Steidl"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3938":{"rfcNumber":"RFC3938","href":"https://www.rfc-editor.org/rfc/rfc3938","title":"Video-Message Message-Context","authors":["T. Hansen"],"rawDate":"2004-10","status":"Proposed Standard","updates":["RFC3458"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3939":{"rfcNumber":"RFC3939","href":"https://www.rfc-editor.org/rfc/rfc3939","title":"Calling Line Identification for Voice Mail Messages","authors":["G. Parsons","J. Maruszak"],"rawDate":"2004-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3939","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc394":{"aliasOf":"rfc0394"},"rfc3940":{"rfcNumber":"RFC3940","href":"https://www.rfc-editor.org/rfc/rfc3940","title":"Negative-acknowledgment (NACK)-Oriented Reliable Multicast (NORM) Protocol","authors":["B. Adamson","C. Bormann","M. Handley","J. Macker"],"rawDate":"2004-11","status":"Experimental","obsoletedBy":["RFC5740"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3941":{"rfcNumber":"RFC3941","href":"https://www.rfc-editor.org/rfc/rfc3941","title":"Negative-Acknowledgment (NACK)-Oriented Reliable Multicast (NORM) Building Blocks","authors":["B. Adamson","C. Bormann","M. Handley","J. Macker"],"rawDate":"2004-11","status":"Experimental","obsoletedBy":["RFC5401"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3942":{"rfcNumber":"RFC3942","href":"https://www.rfc-editor.org/rfc/rfc3942","title":"Reclassifying Dynamic Host Configuration Protocol version 4 (DHCPv4) Options","authors":["B. Volz"],"rawDate":"2004-11","status":"Proposed Standard","updates":["RFC2132"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3942","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3943":{"rfcNumber":"RFC3943","href":"https://www.rfc-editor.org/rfc/rfc3943","title":"Transport Layer Security (TLS) Protocol Compression Using Lempel-Ziv-Stac (LZS)","authors":["R. Friend"],"rawDate":"2004-11","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3944":{"rfcNumber":"RFC3944","href":"https://www.rfc-editor.org/rfc/rfc3944","title":"H.350 Directory Services","authors":["T. Johnson","S. Okubo","S. Campos"],"rawDate":"2004-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3944","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3945":{"rfcNumber":"RFC3945","href":"https://www.rfc-editor.org/rfc/rfc3945","title":"Generalized Multi-Protocol Label Switching (GMPLS) Architecture","authors":["E. Mannie, Ed."],"rawDate":"2004-10","status":"Proposed Standard","updatedBy":["RFC6002"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3945","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3946":{"rfcNumber":"RFC3946","href":"https://www.rfc-editor.org/rfc/rfc3946","title":"Generalized Multi-Protocol Label Switching (GMPLS) Extensions for Synchronous Optical Network (SONET) and Synchronous Digital Hierarchy (SDH) Control","authors":["E. Mannie","D. Papadimitriou"],"rawDate":"2004-10","status":"Proposed Standard","obsoletedBy":["RFC4606"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3947":{"rfcNumber":"RFC3947","href":"https://www.rfc-editor.org/rfc/rfc3947","title":"Negotiation of NAT-Traversal in the IKE","authors":["T. Kivinen","B. Swander","A. Huttunen","V. Volpe"],"rawDate":"2005-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3947","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3948":{"rfcNumber":"RFC3948","href":"https://www.rfc-editor.org/rfc/rfc3948","title":"UDP Encapsulation of IPsec ESP Packets","authors":["A. Huttunen","B. Swander","V. Volpe","L. DiBurro","M. Stenberg"],"rawDate":"2005-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3948","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3949":{"rfcNumber":"RFC3949","href":"https://www.rfc-editor.org/rfc/rfc3949","title":"File Format for Internet Fax","authors":["R. Buckley","D. Venable","L. McIntyre","G. Parsons","J. Rafferty"],"rawDate":"2005-02","status":"Draft Standard","obsoletes":["RFC2301"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc395":{"aliasOf":"rfc0395"},"rfc3950":{"rfcNumber":"RFC3950","href":"https://www.rfc-editor.org/rfc/rfc3950","title":"Tag Image File Format Fax eXtended (TIFF-FX) - image/tiff-fx MIME Sub-type Registration","authors":["L. McIntyre","G. Parsons","J. Rafferty"],"rawDate":"2005-02","status":"Draft Standard","obsoletes":["RFC3250"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3951":{"rfcNumber":"RFC3951","href":"https://www.rfc-editor.org/rfc/rfc3951","title":"Internet Low Bit Rate Codec (iLBC)","authors":["S. Andersen","A. Duric","H. Astrom","R. Hagen","W. Kleijn","J. Linden"],"rawDate":"2004-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3952":{"rfcNumber":"RFC3952","href":"https://www.rfc-editor.org/rfc/rfc3952","title":"Real-time Transport Protocol (RTP) Payload Format for internet Low Bit Rate Codec (iLBC) Speech","authors":["A. Duric","S. Andersen"],"rawDate":"2004-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3953":{"rfcNumber":"RFC3953","href":"https://www.rfc-editor.org/rfc/rfc3953","title":"Telephone Number Mapping (ENUM) Service Registration for Presence Services","authors":["J. Peterson"],"rawDate":"2005-01","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3954":{"rfcNumber":"RFC3954","href":"https://www.rfc-editor.org/rfc/rfc3954","title":"Cisco Systems NetFlow Services Export Version 9","authors":["B. Claise, Ed."],"rawDate":"2004-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3954","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3955":{"rfcNumber":"RFC3955","href":"https://www.rfc-editor.org/rfc/rfc3955","title":"Evaluation of Candidate Protocols for IP Flow Information Export (IPFIX)","authors":["S. Leinen"],"rawDate":"2004-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3956":{"rfcNumber":"RFC3956","href":"https://www.rfc-editor.org/rfc/rfc3956","title":"Embedding the Rendezvous Point (RP) Address in an IPv6 Multicast Address","authors":["P. Savola","B. Haberman"],"rawDate":"2004-11","status":"Proposed Standard","updatedBy":["RFC7371"],"updates":["RFC3306"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3957":{"rfcNumber":"RFC3957","href":"https://www.rfc-editor.org/rfc/rfc3957","title":"Authentication, Authorization, and Accounting (AAA) Registration Keys for Mobile IPv4","authors":["C. Perkins","P. Calhoun"],"rawDate":"2005-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3958":{"rfcNumber":"RFC3958","href":"https://www.rfc-editor.org/rfc/rfc3958","title":"Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS)","authors":["L. Daigle","A. Newton"],"rawDate":"2005-01","status":"Proposed Standard","updatedBy":["RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3958","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3959":{"rfcNumber":"RFC3959","href":"https://www.rfc-editor.org/rfc/rfc3959","title":"The Early Session Disposition Type for the Session Initiation Protocol (SIP)","authors":["G. Camarillo"],"rawDate":"2004-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3959","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc396":{"aliasOf":"rfc0396"},"rfc3960":{"rfcNumber":"RFC3960","href":"https://www.rfc-editor.org/rfc/rfc3960","title":"Early Media and Ringing Tone Generation in the Session Initiation Protocol (SIP)","authors":["G. Camarillo","H. Schulzrinne"],"rawDate":"2004-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3961":{"rfcNumber":"RFC3961","href":"https://www.rfc-editor.org/rfc/rfc3961","title":"Encryption and Checksum Specifications for Kerberos 5","authors":["K. Raeburn"],"rawDate":"2005-02","status":"Proposed Standard","updatedBy":["RFC8429"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3961","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3962":{"rfcNumber":"RFC3962","href":"https://www.rfc-editor.org/rfc/rfc3962","title":"Advanced Encryption Standard (AES) Encryption for Kerberos 5","authors":["K. Raeburn"],"rawDate":"2005-02","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3963":{"rfcNumber":"RFC3963","href":"https://www.rfc-editor.org/rfc/rfc3963","title":"Network Mobility (NEMO) Basic Support Protocol","authors":["V. Devarapalli","R. Wakikawa","A. Petrescu","P. Thubert"],"rawDate":"2005-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3964":{"rfcNumber":"RFC3964","href":"https://www.rfc-editor.org/rfc/rfc3964","title":"Security Considerations for 6to4","authors":["P. Savola","C. Patel"],"rawDate":"2004-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3964","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3965":{"rfcNumber":"RFC3965","href":"https://www.rfc-editor.org/rfc/rfc3965","title":"A Simple Mode of Facsimile Using Internet Mail","authors":["K. Toyoda","H. Ohno","J. Murai","D. Wing"],"rawDate":"2004-12","status":"Draft Standard","obsoletes":["RFC2305"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3965","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3966":{"rfcNumber":"RFC3966","href":"https://www.rfc-editor.org/rfc/rfc3966","title":"The tel URI for Telephone Numbers","authors":["H. Schulzrinne"],"rawDate":"2004-12","status":"Proposed Standard","updatedBy":["RFC5341"],"obsoletes":["RFC2806"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3966","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3967":{"rfcNumber":"RFC3967","href":"https://www.rfc-editor.org/rfc/rfc3967","title":"Clarifying when Standards Track Documents may Refer Normatively to Documents at a Lower Level","authors":["R. Bush","T. Narten"],"rawDate":"2004-12","status":"Best Current Practice","updatedBy":["RFC4897","RFC8067"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3967","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3968":{"rfcNumber":"RFC3968","href":"https://www.rfc-editor.org/rfc/rfc3968","title":"The Internet Assigned Number Authority (IANA) Header Field Parameter Registry for the Session Initiation Protocol (SIP)","authors":["G. Camarillo"],"rawDate":"2004-12","status":"Best Current Practice","updates":["RFC3427"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3969":{"rfcNumber":"RFC3969","href":"https://www.rfc-editor.org/rfc/rfc3969","title":"The Internet Assigned Number Authority (IANA) Uniform Resource Identifier (URI) Parameter Registry for the Session Initiation Protocol (SIP)","authors":["G. Camarillo"],"rawDate":"2004-12","status":"Best Current Practice","updatedBy":["RFC5727"],"updates":["RFC3427"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3970":{"rfcNumber":"RFC3970","href":"https://www.rfc-editor.org/rfc/rfc3970","title":"A Traffic Engineering (TE) MIB","authors":["K. Kompella"],"rawDate":"2005-01","status":"Proposed Standard","updatedBy":["RFC9141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3970","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3971":{"rfcNumber":"RFC3971","href":"https://www.rfc-editor.org/rfc/rfc3971","title":"SEcure Neighbor Discovery (SEND)","authors":["J. Arkko, Ed.","J. Kempf","B. Zill","P. Nikander"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC6494","RFC6495","RFC6980"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3971","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3972":{"rfcNumber":"RFC3972","href":"https://www.rfc-editor.org/rfc/rfc3972","title":"Cryptographically Generated Addresses (CGA)","authors":["T. Aura"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC4581","RFC4982"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3973":{"rfcNumber":"RFC3973","href":"https://www.rfc-editor.org/rfc/rfc3973","title":"Protocol Independent Multicast - Dense Mode (PIM-DM): Protocol Specification (Revised)","authors":["A. Adams","J. Nicholas","W. Siadak"],"rawDate":"2005-01","status":"Experimental","updatedBy":["RFC8736","RFC9436"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3973","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3974":{"rfcNumber":"RFC3974","href":"https://www.rfc-editor.org/rfc/rfc3974","title":"SMTP Operational Experience in Mixed IPv4/v6 Environments","authors":["M. Nakamura","J. Hagino"],"rawDate":"2005-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3975":{"rfcNumber":"RFC3975","href":"https://www.rfc-editor.org/rfc/rfc3975","title":"OMA-IETF Standardization Collaboration","authors":["G. Huston, Ed.","I. Leuca, Ed."],"rawDate":"2005-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3976":{"rfcNumber":"RFC3976","href":"https://www.rfc-editor.org/rfc/rfc3976","title":"Interworking SIP and Intelligent Network (IN) Applications","authors":["V. K. Gurbani","F. Haerens","V. Rastogi"],"rawDate":"2005-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3977":{"rfcNumber":"RFC3977","href":"https://www.rfc-editor.org/rfc/rfc3977","title":"Network News Transfer Protocol (NNTP)","authors":["C. Feather"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC6048"],"updates":["RFC2980"],"obsoletes":["RFC0977"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3977","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3978":{"rfcNumber":"RFC3978","href":"https://www.rfc-editor.org/rfc/rfc3978","title":"IETF Rights in Contributions","authors":["S. Bradner, Ed."],"rawDate":"2005-03","status":"Best Current Practice","updatedBy":["RFC4748"],"obsoletedBy":["RFC5378"],"updates":["RFC2026"],"obsoletes":["RFC3667"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3978","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3979":{"rfcNumber":"RFC3979","href":"https://www.rfc-editor.org/rfc/rfc3979","title":"Intellectual Property Rights in IETF Technology","authors":["S. Bradner, Ed."],"rawDate":"2005-03","status":"Best Current Practice","updatedBy":["RFC4879"],"obsoletedBy":["RFC8179"],"updates":["RFC2026","RFC2028"],"obsoletes":["RFC3668"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc398":{"aliasOf":"rfc0398"},"rfc3980":{"rfcNumber":"RFC3980","href":"https://www.rfc-editor.org/rfc/rfc3980","title":"T11 Network Address Authority (NAA) Naming Format for iSCSI Node Names","authors":["M. Krueger","M. Chadalapaka","R. Elliott"],"rawDate":"2005-02","status":"Proposed Standard","obsoletedBy":["RFC7143"],"updates":["RFC3720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3981":{"rfcNumber":"RFC3981","href":"https://www.rfc-editor.org/rfc/rfc3981","title":"IRIS: The Internet Registry Information Service (IRIS) Core Protocol","authors":["A. Newton","M. Sanz"],"rawDate":"2005-01","status":"Proposed Standard","updatedBy":["RFC4992"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3981","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3982":{"rfcNumber":"RFC3982","href":"https://www.rfc-editor.org/rfc/rfc3982","title":"IRIS: A Domain Registry (dreg) Type for the Internet Registry Information Service (IRIS)","authors":["A. Newton","M. Sanz"],"rawDate":"2005-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3982","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3983":{"rfcNumber":"RFC3983","href":"https://www.rfc-editor.org/rfc/rfc3983","title":"Using the Internet Registry Information Service (IRIS) over the Blocks Extensible Exchange Protocol (BEEP)","authors":["A. Newton","M. Sanz"],"rawDate":"2005-01","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3984":{"rfcNumber":"RFC3984","href":"https://www.rfc-editor.org/rfc/rfc3984","title":"RTP Payload Format for H.264 Video","authors":["S. Wenger","M.M. Hannuksela","T. Stockhammer","M. Westerlund","D. Singer"],"rawDate":"2005-02","status":"Proposed Standard","obsoletedBy":["RFC6184"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3985":{"rfcNumber":"RFC3985","href":"https://www.rfc-editor.org/rfc/rfc3985","title":"Pseudo Wire Emulation Edge-to-Edge (PWE3) Architecture","authors":["S. Bryant, Ed.","P. Pate, Ed."],"rawDate":"2005-03","status":"Informational","updatedBy":["RFC5462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3986":{"rfcNumber":"RFC3986","href":"https://www.rfc-editor.org/rfc/rfc3986","title":"Uniform Resource Identifier (URI): Generic Syntax","authors":["T. Berners-Lee","R. Fielding","L. Masinter"],"rawDate":"2005-01","status":"Internet Standard","updatedBy":["RFC6874","RFC7320","RFC8820"],"updates":["RFC1738"],"obsoletes":["RFC2732","RFC2396","RFC1808"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3986","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3987":{"rfcNumber":"RFC3987","href":"https://www.rfc-editor.org/rfc/rfc3987","title":"Internationalized Resource Identifiers (IRIs)","authors":["M. Duerst","M. Suignard"],"rawDate":"2005-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3987","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3988":{"rfcNumber":"RFC3988","href":"https://www.rfc-editor.org/rfc/rfc3988","title":"Maximum Transmission Unit Signalling Extensions for the Label Distribution Protocol","authors":["B. Black","K. Kompella"],"rawDate":"2005-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3989":{"rfcNumber":"RFC3989","href":"https://www.rfc-editor.org/rfc/rfc3989","title":"Middlebox Communications (MIDCOM) Protocol Semantics","authors":["M. Stiemerling","J. Quittek","T. Taylor"],"rawDate":"2005-02","status":"Informational","obsoletedBy":["RFC5189"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc399":{"aliasOf":"rfc0399"},"rfc3990":{"rfcNumber":"RFC3990","href":"https://www.rfc-editor.org/rfc/rfc3990","title":"Configuration and Provisioning for Wireless Access Points (CAPWAP) Problem Statement","authors":["B. O'Hara","P. Calhoun","J. Kempf"],"rawDate":"2005-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3991":{"rfcNumber":"RFC3991","href":"https://www.rfc-editor.org/rfc/rfc3991","title":"Media Gateway Control Protocol (MGCP) Redirect and Reset Package","authors":["B. Foster","F. Andreasen"],"rawDate":"2005-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3992":{"rfcNumber":"RFC3992","href":"https://www.rfc-editor.org/rfc/rfc3992","title":"Media Gateway Control Protocol (MGCP) Lockstep State Reporting Mechanism","authors":["B. Foster","F. Andreasen"],"rawDate":"2005-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3993":{"rfcNumber":"RFC3993","href":"https://www.rfc-editor.org/rfc/rfc3993","title":"Subscriber-ID Suboption for the Dynamic Host Configuration Protocol (DHCP) Relay Agent Option","authors":["R. Johnson","T. Palaniappan","M. Stapp"],"rawDate":"2005-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3994":{"rfcNumber":"RFC3994","href":"https://www.rfc-editor.org/rfc/rfc3994","title":"Indication of Message Composition for Instant Messaging","authors":["H. Schulzrinne"],"rawDate":"2005-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3995":{"rfcNumber":"RFC3995","href":"https://www.rfc-editor.org/rfc/rfc3995","title":"Internet Printing Protocol (IPP): Event Notifications and Subscriptions","authors":["R. Herriot","T. Hastings"],"rawDate":"2005-03","status":"Proposed Standard","updates":["RFC2911","RFC2910"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3995","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3996":{"rfcNumber":"RFC3996","href":"https://www.rfc-editor.org/rfc/rfc3996","title":"Internet Printing Protocol (IPP): The 'ippget' Delivery Method for Event Notifications","authors":["R. Herriot","T. Hastings","H. Lewis"],"rawDate":"2005-03","status":"Proposed Standard","updates":["RFC2911"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3996","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3997":{"rfcNumber":"RFC3997","href":"https://www.rfc-editor.org/rfc/rfc3997","title":"Internet Printing Protocol (IPP): Requirements for IPP Notifications","authors":["T. Hastings, Ed.","R. K. deBry","H. Lewis"],"rawDate":"2005-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc3998":{"rfcNumber":"RFC3998","href":"https://www.rfc-editor.org/rfc/rfc3998","title":"Internet Printing Protocol (IPP): Job and Printer Administrative Operations","authors":["C. Kugler","H. Lewis","T. Hastings, Ed."],"rawDate":"2005-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=3998","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4":{"aliasOf":"rfc0004"},"rfc40":{"aliasOf":"rfc0040"},"rfc400":{"aliasOf":"rfc0400"},"rfc4001":{"rfcNumber":"RFC4001","href":"https://www.rfc-editor.org/rfc/rfc4001","title":"Textual Conventions for Internet Network Addresses","authors":["M. Daniele","B. Haberman","S. Routhier","J. Schoenwaelder"],"rawDate":"2005-02","status":"Proposed Standard","obsoletes":["RFC3291"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4002":{"rfcNumber":"RFC4002","href":"https://www.rfc-editor.org/rfc/rfc4002","title":"IANA Registration for Enumservice 'web' and 'ft'","authors":["R. Brandner","L. Conroy","R. Stastny"],"rawDate":"2005-02","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4003":{"rfcNumber":"RFC4003","href":"https://www.rfc-editor.org/rfc/rfc4003","title":"GMPLS Signaling Procedure for Egress Control","authors":["L. Berger"],"rawDate":"2005-02","status":"Proposed Standard","updates":["RFC3473"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4004":{"rfcNumber":"RFC4004","href":"https://www.rfc-editor.org/rfc/rfc4004","title":"Diameter Mobile IPv4 Application","authors":["P. Calhoun","T. Johansson","C. Perkins","T. Hiller, Ed.","P. McCann"],"rawDate":"2005-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4004","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4005":{"rfcNumber":"RFC4005","href":"https://www.rfc-editor.org/rfc/rfc4005","title":"Diameter Network Access Server Application","authors":["P. Calhoun","G. Zorn","D. Spence","D. Mitton"],"rawDate":"2005-08","status":"Proposed Standard","obsoletedBy":["RFC7155"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4005","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4006":{"rfcNumber":"RFC4006","href":"https://www.rfc-editor.org/rfc/rfc4006","title":"Diameter Credit-Control Application","authors":["H. Hakala","L. Mattila","J-P. Koskinen","M. Stura","J. Loughney"],"rawDate":"2005-08","status":"Proposed Standard","obsoletedBy":["RFC8506"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4006","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4007":{"rfcNumber":"RFC4007","href":"https://www.rfc-editor.org/rfc/rfc4007","title":"IPv6 Scoped Address Architecture","authors":["S. Deering","B. Haberman","T. Jinmei","E. Nordmark","B. Zill"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC7346"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4008":{"rfcNumber":"RFC4008","href":"https://www.rfc-editor.org/rfc/rfc4008","title":"Definitions of Managed Objects for Network Address Translators (NAT)","authors":["R. Rohit","P. Srisuresh","R. Raghunarayan","N. Pai","C. Wang"],"rawDate":"2005-03","status":"Proposed Standard","obsoletedBy":["RFC7658"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4009":{"rfcNumber":"RFC4009","href":"https://www.rfc-editor.org/rfc/rfc4009","title":"The SEED Encryption Algorithm","authors":["J. Park","S. Lee","J. Kim","J. Lee"],"rawDate":"2005-02","status":"Informational","obsoletedBy":["RFC4269"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4009","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc401":{"aliasOf":"rfc0401"},"rfc4010":{"rfcNumber":"RFC4010","href":"https://www.rfc-editor.org/rfc/rfc4010","title":"Use of the SEED Encryption Algorithm in Cryptographic Message Syntax (CMS)","authors":["J. Park","S. Lee","J. Kim","J. Lee"],"rawDate":"2005-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4010","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4011":{"rfcNumber":"RFC4011","href":"https://www.rfc-editor.org/rfc/rfc4011","title":"Policy Based Management MIB","authors":["S. Waldbusser","J. Saperia","T. Hongal"],"rawDate":"2005-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4012":{"rfcNumber":"RFC4012","href":"https://www.rfc-editor.org/rfc/rfc4012","title":"Routing Policy Specification Language next generation (RPSLng)","authors":["L. Blunk","J. Damas","F. Parent","A. Robachevsky"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC7909"],"updates":["RFC2725","RFC2622"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4013":{"rfcNumber":"RFC4013","href":"https://www.rfc-editor.org/rfc/rfc4013","title":"SASLprep: Stringprep Profile for User Names and Passwords","authors":["K. Zeilenga"],"rawDate":"2005-02","status":"Proposed Standard","obsoletedBy":["RFC7613"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4013","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4014":{"rfcNumber":"RFC4014","href":"https://www.rfc-editor.org/rfc/rfc4014","title":"Remote Authentication Dial-In User Service (RADIUS) Attributes Suboption for the Dynamic Host Configuration Protocol (DHCP) Relay Agent Information Option","authors":["R. Droms","J. Schnizlein"],"rawDate":"2005-02","status":"Proposed Standard","updatedBy":["RFC9445"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4015":{"rfcNumber":"RFC4015","href":"https://www.rfc-editor.org/rfc/rfc4015","title":"The Eifel Response Algorithm for TCP","authors":["R. Ludwig","A. Gurtov"],"rawDate":"2005-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4016":{"rfcNumber":"RFC4016","href":"https://www.rfc-editor.org/rfc/rfc4016","title":"Protocol for Carrying Authentication and Network Access (PANA) Threat Analysis and Security Requirements","authors":["M. Parthasarathy"],"rawDate":"2005-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4017":{"rfcNumber":"RFC4017","href":"https://www.rfc-editor.org/rfc/rfc4017","title":"Extensible Authentication Protocol (EAP) Method Requirements for Wireless LANs","authors":["D. Stanley","J. Walker","B. Aboba"],"rawDate":"2005-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4018":{"rfcNumber":"RFC4018","href":"https://www.rfc-editor.org/rfc/rfc4018","title":"Finding Internet Small Computer Systems Interface (iSCSI) Targets and Name Servers by Using Service Location Protocol version 2 (SLPv2)","authors":["M. Bakke","J. Hufferd","K. Voruganti","M. Krueger","T. Sperry"],"rawDate":"2005-04","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4019":{"rfcNumber":"RFC4019","href":"https://www.rfc-editor.org/rfc/rfc4019","title":"RObust Header Compression (ROHC): Profiles for User Datagram Protocol (UDP) Lite","authors":["G. Pelletier"],"rawDate":"2005-04","status":"Proposed Standard","updatedBy":["RFC4815"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc402":{"aliasOf":"rfc0402"},"rfc4020":{"rfcNumber":"RFC4020","href":"https://www.rfc-editor.org/rfc/rfc4020","title":"Early IANA Allocation of Standards Track Code Points","authors":["K. Kompella","A. Zinin"],"rawDate":"2005-02","status":"Best Current Practice","obsoletedBy":["RFC7120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4021":{"rfcNumber":"RFC4021","href":"https://www.rfc-editor.org/rfc/rfc4021","title":"Registration of Mail and MIME Header Fields","authors":["G. Klyne","J. Palme"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC5322"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4022":{"rfcNumber":"RFC4022","href":"https://www.rfc-editor.org/rfc/rfc4022","title":"Management Information Base for the Transmission Control Protocol (TCP)","authors":["R. Raghunarayan, Ed."],"rawDate":"2005-03","status":"Proposed Standard","obsoletes":["RFC2452","RFC2012"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4023":{"rfcNumber":"RFC4023","href":"https://www.rfc-editor.org/rfc/rfc4023","title":"Encapsulating MPLS in IP or Generic Routing Encapsulation (GRE)","authors":["T. Worster","Y. Rekhter","E. Rosen, Ed."],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC5332"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4024":{"rfcNumber":"RFC4024","href":"https://www.rfc-editor.org/rfc/rfc4024","title":"Voice Messaging Client Behaviour","authors":["G. Parsons","J. Maruszak"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4025":{"rfcNumber":"RFC4025","href":"https://www.rfc-editor.org/rfc/rfc4025","title":"A Method for Storing IPsec Keying Material in DNS","authors":["M. Richardson"],"rawDate":"2005-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4025","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4026":{"rfcNumber":"RFC4026","href":"https://www.rfc-editor.org/rfc/rfc4026","title":"Provider Provisioned Virtual Private Network (VPN) Terminology","authors":["L. Andersson","T. Madsen"],"rawDate":"2005-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4026","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4027":{"rfcNumber":"RFC4027","href":"https://www.rfc-editor.org/rfc/rfc4027","title":"Domain Name System Media Types","authors":["S. Josefsson"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4028":{"rfcNumber":"RFC4028","href":"https://www.rfc-editor.org/rfc/rfc4028","title":"Session Timers in the Session Initiation Protocol (SIP)","authors":["S. Donovan","J. Rosenberg"],"rawDate":"2005-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4028","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4029":{"rfcNumber":"RFC4029","href":"https://www.rfc-editor.org/rfc/rfc4029","title":"Scenarios and Analysis for Introducing IPv6 into ISP Networks","authors":["M. Lind","V. Ksinant","S. Park","A. Baudot","P. Savola"],"rawDate":"2005-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4029","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc403":{"aliasOf":"rfc0403"},"rfc4030":{"rfcNumber":"RFC4030","href":"https://www.rfc-editor.org/rfc/rfc4030","title":"The Authentication Suboption for the Dynamic Host Configuration Protocol (DHCP) Relay Agent Option","authors":["M. Stapp","T. Lemon"],"rawDate":"2005-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4031":{"rfcNumber":"RFC4031","href":"https://www.rfc-editor.org/rfc/rfc4031","title":"Service Requirements for Layer 3 Provider Provisioned Virtual Private Networks (PPVPNs)","authors":["M. Carugi, Ed.","D. McDysan, Ed."],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4032":{"rfcNumber":"RFC4032","href":"https://www.rfc-editor.org/rfc/rfc4032","title":"Update to the Session Initiation Protocol (SIP) Preconditions Framework","authors":["G. Camarillo","P. Kyzivat"],"rawDate":"2005-03","status":"Proposed Standard","updates":["RFC3312"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4033":{"rfcNumber":"RFC4033","href":"https://www.rfc-editor.org/rfc/rfc4033","title":"DNS Security Introduction and Requirements","authors":["R. Arends","R. Austein","M. Larson","D. Massey","S. Rose"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC6014","RFC6840"],"updates":["RFC1034","RFC1035","RFC2136","RFC2181","RFC2308","RFC3225","RFC3597","RFC3226"],"obsoletes":["RFC2535","RFC3008","RFC3090","RFC3445","RFC3655","RFC3658","RFC3755","RFC3757","RFC3845"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4033","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4034":{"rfcNumber":"RFC4034","href":"https://www.rfc-editor.org/rfc/rfc4034","title":"Resource Records for the DNS Security Extensions","authors":["R. Arends","R. Austein","M. Larson","D. Massey","S. Rose"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC4470","RFC6014","RFC6840","RFC6944","RFC9077"],"updates":["RFC1034","RFC1035","RFC2136","RFC2181","RFC2308","RFC3225","RFC3597","RFC3226"],"obsoletes":["RFC2535","RFC3008","RFC3090","RFC3445","RFC3655","RFC3658","RFC3755","RFC3757","RFC3845"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4034","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4035":{"rfcNumber":"RFC4035","href":"https://www.rfc-editor.org/rfc/rfc4035","title":"Protocol Modifications for the DNS Security Extensions","authors":["R. Arends","R. Austein","M. Larson","D. Massey","S. Rose"],"rawDate":"2005-03","status":"Proposed Standard","updatedBy":["RFC4470","RFC6014","RFC6840","RFC8198","RFC9077","RFC9520"],"updates":["RFC1034","RFC1035","RFC2136","RFC2181","RFC2308","RFC3225","RFC3597","RFC3226"],"obsoletes":["RFC2535","RFC3008","RFC3090","RFC3445","RFC3655","RFC3658","RFC3755","RFC3757","RFC3845"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4035","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4036":{"rfcNumber":"RFC4036","href":"https://www.rfc-editor.org/rfc/rfc4036","title":"Management Information Base for Data Over Cable Service Interface Specification (DOCSIS) Cable Modem Termination Systems for Subscriber Management","authors":["W. Sawyer"],"rawDate":"2005-04","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4037":{"rfcNumber":"RFC4037","href":"https://www.rfc-editor.org/rfc/rfc4037","title":"Open Pluggable Edge Services (OPES) Callout Protocol (OCP) Core","authors":["A. Rousskov"],"rawDate":"2005-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4038":{"rfcNumber":"RFC4038","href":"https://www.rfc-editor.org/rfc/rfc4038","title":"Application Aspects of IPv6 Transition","authors":["M-K. Shin, Ed.","Y-G. Hong","J. Hagino","P. Savola","E. M. Castro"],"rawDate":"2005-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4038","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4039":{"rfcNumber":"RFC4039","href":"https://www.rfc-editor.org/rfc/rfc4039","title":"Rapid Commit Option for the Dynamic Host Configuration Protocol version 4 (DHCPv4)","authors":["S. Park","P. Kim","B. Volz"],"rawDate":"2005-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc404":{"aliasOf":"rfc0404"},"rfc4040":{"rfcNumber":"RFC4040","href":"https://www.rfc-editor.org/rfc/rfc4040","title":"RTP Payload Format for a 64 kbit/s Transparent Call","authors":["R. Kreuter"],"rawDate":"2005-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4041":{"rfcNumber":"RFC4041","href":"https://www.rfc-editor.org/rfc/rfc4041","title":"Requirements for Morality Sections in Routing Area Drafts","authors":["A. Farrel"],"rawDate":"2005-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4042":{"rfcNumber":"RFC4042","href":"https://www.rfc-editor.org/rfc/rfc4042","title":"UTF-9 and UTF-18 Efficient Transformation Formats of Unicode","authors":["M. Crispin"],"rawDate":"2005-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4043":{"rfcNumber":"RFC4043","href":"https://www.rfc-editor.org/rfc/rfc4043","title":"Internet X.509 Public Key Infrastructure Permanent Identifier","authors":["D. Pinkas","T. Gindin"],"rawDate":"2005-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4043","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4044":{"rfcNumber":"RFC4044","href":"https://www.rfc-editor.org/rfc/rfc4044","title":"Fibre Channel Management MIB","authors":["K. McCloghrie"],"rawDate":"2005-05","status":"Proposed Standard","obsoletes":["RFC2837"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4045":{"rfcNumber":"RFC4045","href":"https://www.rfc-editor.org/rfc/rfc4045","title":"Extensions to Support Efficient Carrying of Multicast Traffic in Layer-2 Tunneling Protocol (L2TP)","authors":["G. Bourdon"],"rawDate":"2005-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4046":{"rfcNumber":"RFC4046","href":"https://www.rfc-editor.org/rfc/rfc4046","title":"Multicast Security (MSEC) Group Key Management Architecture","authors":["M. Baugher","R. Canetti","L. Dondeti","F. Lindholm"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4047":{"rfcNumber":"RFC4047","href":"https://www.rfc-editor.org/rfc/rfc4047","title":"MIME Sub-type Registrations for Flexible Image Transport System (FITS)","authors":["S. Allen","D. Wells"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4048":{"rfcNumber":"RFC4048","href":"https://www.rfc-editor.org/rfc/rfc4048","title":"RFC 1888 Is Obsolete","authors":["B. Carpenter"],"rawDate":"2005-04","status":"Informational","updatedBy":["RFC4548"],"obsoletes":["RFC1888"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4048","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4049":{"rfcNumber":"RFC4049","href":"https://www.rfc-editor.org/rfc/rfc4049","title":"BinaryTime: An Alternate Format for Representing Date and Time in ASN.1","authors":["R. Housley"],"rawDate":"2005-04","status":"Experimental","obsoletedBy":["RFC6019"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc405":{"aliasOf":"rfc0405"},"rfc4050":{"rfcNumber":"RFC4050","href":"https://www.rfc-editor.org/rfc/rfc4050","title":"Using the Elliptic Curve Signature Algorithm (ECDSA) for XML Digital Signatures","authors":["S. Blake-Wilson","G. Karlinger","T. Kobayashi","Y. Wang"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4051":{"rfcNumber":"RFC4051","href":"https://www.rfc-editor.org/rfc/rfc4051","title":"Additional XML Security Uniform Resource Identifiers (URIs)","authors":["D. Eastlake 3rd"],"rawDate":"2005-04","status":"Proposed Standard","obsoletedBy":["RFC6931"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4051","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4052":{"rfcNumber":"RFC4052","href":"https://www.rfc-editor.org/rfc/rfc4052","title":"IAB Processes for Management of IETF Liaison Relationships","authors":["L. Daigle, Ed.","Internet Architecture Board"],"rawDate":"2005-04","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4052","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4053":{"rfcNumber":"RFC4053","href":"https://www.rfc-editor.org/rfc/rfc4053","title":"Procedures for Handling Liaison Statements to and from the IETF","authors":["S. Trowbridge","S. Bradner","F. Baker"],"rawDate":"2005-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4054":{"rfcNumber":"RFC4054","href":"https://www.rfc-editor.org/rfc/rfc4054","title":"Impairments and Other Constraints on Optical Layer Routing","authors":["J. Strand, Ed.","A. Chiu, Ed."],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4055":{"rfcNumber":"RFC4055","href":"https://www.rfc-editor.org/rfc/rfc4055","title":"Additional Algorithms and Identifiers for RSA Cryptography for use in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile","authors":["J. Schaad","B. Kaliski","R. Housley"],"rawDate":"2005-06","status":"Proposed Standard","updatedBy":["RFC5756"],"updates":["RFC3279"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4055","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4056":{"rfcNumber":"RFC4056","href":"https://www.rfc-editor.org/rfc/rfc4056","title":"Use of the RSASSA-PSS Signature Algorithm in Cryptographic Message Syntax (CMS)","authors":["J. Schaad"],"rawDate":"2005-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4056","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4057":{"rfcNumber":"RFC4057","href":"https://www.rfc-editor.org/rfc/rfc4057","title":"IPv6 Enterprise Network Scenarios","authors":["J. Bound, Ed."],"rawDate":"2005-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4057","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4058":{"rfcNumber":"RFC4058","href":"https://www.rfc-editor.org/rfc/rfc4058","title":"Protocol for Carrying Authentication for Network Access (PANA) Requirements","authors":["A. Yegin, Ed.","Y. Ohba","R. Penno","G. Tsirtsis","C. Wang"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4059":{"rfcNumber":"RFC4059","href":"https://www.rfc-editor.org/rfc/rfc4059","title":"Internet X.509 Public Key Infrastructure Warranty Certificate Extension","authors":["D. Linsenbardt","S. Pontius","A. Sturgeon"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc406":{"aliasOf":"rfc0406"},"rfc4060":{"rfcNumber":"RFC4060","href":"https://www.rfc-editor.org/rfc/rfc4060","title":"RTP Payload Formats for European Telecommunications Standards Institute (ETSI) European Standard ES 202 050, ES 202 211, and ES 202 212 Distributed Speech Recognition Encoding","authors":["Q. Xie","D. Pearce"],"rawDate":"2005-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4060","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4061":{"rfcNumber":"RFC4061","href":"https://www.rfc-editor.org/rfc/rfc4061","title":"Benchmarking Basic OSPF Single Router Control Plane Convergence","authors":["V. Manral","R. White","A. Shaikh"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4062":{"rfcNumber":"RFC4062","href":"https://www.rfc-editor.org/rfc/rfc4062","title":"OSPF Benchmarking Terminology and Concepts","authors":["V. Manral","R. White","A. Shaikh"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4063":{"rfcNumber":"RFC4063","href":"https://www.rfc-editor.org/rfc/rfc4063","title":"Considerations When Using Basic OSPF Convergence Benchmarks","authors":["V. Manral","R. White","A. Shaikh"],"rawDate":"2005-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4064":{"rfcNumber":"RFC4064","href":"https://www.rfc-editor.org/rfc/rfc4064","title":"Experimental Message, Extensions, and Error Codes for Mobile IPv4","authors":["A. Patel","K. Leung"],"rawDate":"2005-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4065":{"rfcNumber":"RFC4065","href":"https://www.rfc-editor.org/rfc/rfc4065","title":"Instructions for Seamoby and Experimental Mobility Protocol IANA Allocations","authors":["J. Kempf"],"rawDate":"2005-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4066":{"rfcNumber":"RFC4066","href":"https://www.rfc-editor.org/rfc/rfc4066","title":"Candidate Access Router Discovery (CARD)","authors":["M. Liebsch, Ed.","A. Singh, Ed.","H. Chaskar","D. Funato","E. Shim"],"rawDate":"2005-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4067":{"rfcNumber":"RFC4067","href":"https://www.rfc-editor.org/rfc/rfc4067","title":"Context Transfer Protocol (CXTP)","authors":["J. Loughney, Ed.","M. Nakhjiri","C. Perkins","R. Koodli"],"rawDate":"2005-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4068":{"rfcNumber":"RFC4068","href":"https://www.rfc-editor.org/rfc/rfc4068","title":"Fast Handovers for Mobile IPv6","authors":["R. Koodli, Ed."],"rawDate":"2005-07","status":"Experimental","obsoletedBy":["RFC5268"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4069":{"rfcNumber":"RFC4069","href":"https://www.rfc-editor.org/rfc/rfc4069","title":"Definitions of Managed Object Extensions for Very High Speed Digital Subscriber Lines (VDSL) Using Single Carrier Modulation (SCM) Line Coding","authors":["M. Dodge","B. Ray"],"rawDate":"2005-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4069","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc407":{"aliasOf":"rfc0407"},"rfc4070":{"rfcNumber":"RFC4070","href":"https://www.rfc-editor.org/rfc/rfc4070","title":"Definitions of Managed Object Extensions for Very High Speed Digital Subscriber Lines (VDSL) Using Multiple Carrier Modulation (MCM) Line Coding","authors":["M. Dodge","B. Ray"],"rawDate":"2005-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4071":{"rfcNumber":"RFC4071","href":"https://www.rfc-editor.org/rfc/rfc4071","title":"Structure of the IETF Administrative Support Activity (IASA)","authors":["R. Austein, Ed.","B. Wijnen, Ed."],"rawDate":"2005-04","status":"Best Current Practice","updatedBy":["RFC4371","RFC7691"],"obsoletedBy":["RFC8711"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4072":{"rfcNumber":"RFC4072","href":"https://www.rfc-editor.org/rfc/rfc4072","title":"Diameter Extensible Authentication Protocol (EAP) Application","authors":["P. Eronen, Ed.","T. Hiller","G. Zorn"],"rawDate":"2005-08","status":"Proposed Standard","updatedBy":["RFC7268","RFC8044"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4072","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4073":{"rfcNumber":"RFC4073","href":"https://www.rfc-editor.org/rfc/rfc4073","title":"Protecting Multiple Contents with the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2005-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4073","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4074":{"rfcNumber":"RFC4074","href":"https://www.rfc-editor.org/rfc/rfc4074","title":"Common Misbehavior Against DNS Queries for IPv6 Addresses","authors":["Y. Morishita","T. Jinmei"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4075":{"rfcNumber":"RFC4075","href":"https://www.rfc-editor.org/rfc/rfc4075","title":"Simple Network Time Protocol (SNTP) Configuration Option for DHCPv6","authors":["V. Kalusivalingam"],"rawDate":"2005-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4076":{"rfcNumber":"RFC4076","href":"https://www.rfc-editor.org/rfc/rfc4076","title":"Renumbering Requirements for Stateless Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["T. Chown","S. Venaas","A. Vijayabhaskar"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4077":{"rfcNumber":"RFC4077","href":"https://www.rfc-editor.org/rfc/rfc4077","title":"A Negative Acknowledgement Mechanism for Signaling Compression","authors":["A.B. Roach"],"rawDate":"2005-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4078":{"rfcNumber":"RFC4078","href":"https://www.rfc-editor.org/rfc/rfc4078","title":"The TV-Anytime Content Reference Identifier (CRID)","authors":["N. Earnshaw","S. Aoki","A. Ashley","W. Kameyama"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4079":{"rfcNumber":"RFC4079","href":"https://www.rfc-editor.org/rfc/rfc4079","title":"A Presence Architecture for the Distribution of GEOPRIV Location Objects","authors":["J. Peterson"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc408":{"aliasOf":"rfc0408"},"rfc4080":{"rfcNumber":"RFC4080","href":"https://www.rfc-editor.org/rfc/rfc4080","title":"Next Steps in Signaling (NSIS): Framework","authors":["R. Hancock","G. Karagiannis","J. Loughney","S. Van den Bosch"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4081":{"rfcNumber":"RFC4081","href":"https://www.rfc-editor.org/rfc/rfc4081","title":"Security Threats for Next Steps in Signaling (NSIS)","authors":["H. Tschofenig","D. Kroeselberg"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4082":{"rfcNumber":"RFC4082","href":"https://www.rfc-editor.org/rfc/rfc4082","title":"Timed Efficient Stream Loss-Tolerant Authentication (TESLA): Multicast Source Authentication Transform Introduction","authors":["A. Perrig","D. Song","R. Canetti","J. D. Tygar","B. Briscoe"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4083":{"rfcNumber":"RFC4083","href":"https://www.rfc-editor.org/rfc/rfc4083","title":"Input 3rd-Generation Partnership Project (3GPP) Release 5 Requirements on the Session Initiation Protocol (SIP)","authors":["M. Garcia-Martin"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4084":{"rfcNumber":"RFC4084","href":"https://www.rfc-editor.org/rfc/rfc4084","title":"Terminology for Describing Internet Connectivity","authors":["J. Klensin"],"rawDate":"2005-05","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4084","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4085":{"rfcNumber":"RFC4085","href":"https://www.rfc-editor.org/rfc/rfc4085","title":"Embedding Globally-Routable Internet Addresses Considered Harmful","authors":["D. Plonka"],"rawDate":"2005-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4086":{"rfcNumber":"RFC4086","href":"https://www.rfc-editor.org/rfc/rfc4086","title":"Randomness Requirements for Security","authors":["D. Eastlake 3rd","J. Schiller","S. Crocker"],"rawDate":"2005-06","status":"Best Current Practice","obsoletes":["RFC1750"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4086","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4087":{"rfcNumber":"RFC4087","href":"https://www.rfc-editor.org/rfc/rfc4087","title":"IP Tunnel MIB","authors":["D. Thaler"],"rawDate":"2005-06","status":"Proposed Standard","obsoletes":["RFC2667"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4088":{"rfcNumber":"RFC4088","href":"https://www.rfc-editor.org/rfc/rfc4088","title":"Uniform Resource Identifier (URI) Scheme for the Simple Network Management Protocol (SNMP)","authors":["D. Black","K. McCloghrie","J. Schoenwaelder"],"rawDate":"2005-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4089":{"rfcNumber":"RFC4089","href":"https://www.rfc-editor.org/rfc/rfc4089","title":"IAB and IESG Recommendation for IETF Administrative Restructuring","authors":["S. Hollenbeck, Ed.","IAB and IESG"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc409":{"aliasOf":"rfc0409"},"rfc4090":{"rfcNumber":"RFC4090","href":"https://www.rfc-editor.org/rfc/rfc4090","title":"Fast Reroute Extensions to RSVP-TE for LSP Tunnels","authors":["P. Pan, Ed.","G. Swallow, Ed.","A. Atlas, Ed."],"rawDate":"2005-05","status":"Proposed Standard","updatedBy":["RFC8271","RFC8537","RFC8796"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4090","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4091":{"rfcNumber":"RFC4091","href":"https://www.rfc-editor.org/rfc/rfc4091","title":"The Alternative Network Address Types (ANAT) Semantics for the Session Description Protocol (SDP) Grouping Framework","authors":["G. Camarillo","J. Rosenberg"],"rawDate":"2005-06","status":"Proposed Standard","obsoletedBy":["RFC5245"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4092":{"rfcNumber":"RFC4092","href":"https://www.rfc-editor.org/rfc/rfc4092","title":"Usage of the Session Description Protocol (SDP) Alternative Network Address Types (ANAT) Semantics in the Session Initiation Protocol (SIP)","authors":["G. Camarillo","J. Rosenberg"],"rawDate":"2005-06","status":"Proposed Standard","obsoletedBy":["RFC5245"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4093":{"rfcNumber":"RFC4093","href":"https://www.rfc-editor.org/rfc/rfc4093","title":"Problem Statement: Mobile IPv4 Traversal of Virtual Private Network (VPN) Gateways","authors":["F. Adrangi, Ed.","H. Levkowetz, Ed."],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4094":{"rfcNumber":"RFC4094","href":"https://www.rfc-editor.org/rfc/rfc4094","title":"Analysis of Existing Quality-of-Service Signaling Protocols","authors":["J. Manner","X. Fu"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4095":{"rfcNumber":"RFC4095","href":"https://www.rfc-editor.org/rfc/rfc4095","title":"Attaching Meaning to Solicitation Class Keywords","authors":["C. Malamud"],"rawDate":"2005-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4096":{"rfcNumber":"RFC4096","href":"https://www.rfc-editor.org/rfc/rfc4096","title":"Policy-Mandated Labels Such as \"Adv:\" in Email Subject Headers Considered Ineffective At Best","authors":["C. Malamud"],"rawDate":"2005-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4097":{"rfcNumber":"RFC4097","href":"https://www.rfc-editor.org/rfc/rfc4097","title":"Middlebox Communications (MIDCOM) Protocol Evaluation","authors":["M. Barnes, Ed."],"rawDate":"2005-06","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4098":{"rfcNumber":"RFC4098","href":"https://www.rfc-editor.org/rfc/rfc4098","title":"Terminology for Benchmarking BGP Device Convergence in the Control Plane","authors":["H. Berkowitz","E. Davies, Ed.","S. Hares","P. Krishnaswamy","M. Lepp"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc41":{"aliasOf":"rfc0041"},"rfc410":{"aliasOf":"rfc0410"},"rfc4101":{"rfcNumber":"RFC4101","href":"https://www.rfc-editor.org/rfc/rfc4101","title":"Writing Protocol Models","authors":["E. Rescorla","IAB"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4102":{"rfcNumber":"RFC4102","href":"https://www.rfc-editor.org/rfc/rfc4102","title":"Registration of the text/red MIME Sub-Type","authors":["P. Jones"],"rawDate":"2005-06","status":"Proposed Standard","updatedBy":["RFC6354"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4102","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4103":{"rfcNumber":"RFC4103","href":"https://www.rfc-editor.org/rfc/rfc4103","title":"RTP Payload for Text Conversation","authors":["G. Hellstrom","P. Jones"],"rawDate":"2005-06","status":"Proposed Standard","updatedBy":["RFC9071"],"obsoletes":["RFC2793"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4103","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4104":{"rfcNumber":"RFC4104","href":"https://www.rfc-editor.org/rfc/rfc4104","title":"Policy Core Extension Lightweight Directory Access Protocol Schema (PCELS)","authors":["M. Pana, Ed.","A. Reyes","A. Barba","D. Moron","M. Brunner"],"rawDate":"2005-06","status":"Proposed Standard","updates":["RFC3703"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4105":{"rfcNumber":"RFC4105","href":"https://www.rfc-editor.org/rfc/rfc4105","title":"Requirements for Inter-Area MPLS Traffic Engineering","authors":["J.-L. Le Roux, Ed.","J.-P. Vasseur, Ed.","J. Boyle, Ed."],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4106":{"rfcNumber":"RFC4106","href":"https://www.rfc-editor.org/rfc/rfc4106","title":"The Use of Galois/Counter Mode (GCM) in IPsec Encapsulating Security Payload (ESP)","authors":["J. Viega","D. McGrew"],"rawDate":"2005-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4106","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4107":{"rfcNumber":"RFC4107","href":"https://www.rfc-editor.org/rfc/rfc4107","title":"Guidelines for Cryptographic Key Management","authors":["S. Bellovin","R. Housley"],"rawDate":"2005-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4108":{"rfcNumber":"RFC4108","href":"https://www.rfc-editor.org/rfc/rfc4108","title":"Using Cryptographic Message Syntax (CMS) to Protect Firmware Packages","authors":["R. Housley"],"rawDate":"2005-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4108","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4109":{"rfcNumber":"RFC4109","href":"https://www.rfc-editor.org/rfc/rfc4109","title":"Algorithms for Internet Key Exchange version 1 (IKEv1)","authors":["P. Hoffman"],"rawDate":"2005-05","status":"Proposed Standard","updates":["RFC2409"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc411":{"aliasOf":"rfc0411"},"rfc4110":{"rfcNumber":"RFC4110","href":"https://www.rfc-editor.org/rfc/rfc4110","title":"A Framework for Layer 3 Provider-Provisioned Virtual Private Networks (PPVPNs)","authors":["R. Callon","M. Suzuki"],"rawDate":"2005-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4110","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4111":{"rfcNumber":"RFC4111","href":"https://www.rfc-editor.org/rfc/rfc4111","title":"Security Framework for Provider-Provisioned Virtual Private Networks (PPVPNs)","authors":["L. Fang, Ed."],"rawDate":"2005-07","status":"Informational","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4111","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4112":{"rfcNumber":"RFC4112","href":"https://www.rfc-editor.org/rfc/rfc4112","title":"Electronic Commerce Modeling Language (ECML) Version 2 Specification","authors":["D. Eastlake 3rd"],"rawDate":"2005-06","status":"Proposed Standard","updates":["RFC3106"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4113":{"rfcNumber":"RFC4113","href":"https://www.rfc-editor.org/rfc/rfc4113","title":"Management Information Base for the User Datagram Protocol (UDP)","authors":["B. Fenner","J. Flick"],"rawDate":"2005-06","status":"Proposed Standard","obsoletes":["RFC2454","RFC2013"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4113","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4114":{"rfcNumber":"RFC4114","href":"https://www.rfc-editor.org/rfc/rfc4114","title":"E.164 Number Mapping for the Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2005-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4114","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4115":{"rfcNumber":"RFC4115","href":"https://www.rfc-editor.org/rfc/rfc4115","title":"A Differentiated Service Two-Rate, Three-Color Marker with Efficient Handling of in-Profile Traffic","authors":["O. Aboul-Magd","S. Rabie"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4116":{"rfcNumber":"RFC4116","href":"https://www.rfc-editor.org/rfc/rfc4116","title":"IPv4 Multihoming Practices and Limitations","authors":["J. Abley","K. Lindqvist","E. Davies","B. Black","V. Gill"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4117":{"rfcNumber":"RFC4117","href":"https://www.rfc-editor.org/rfc/rfc4117","title":"Transcoding Services Invocation in the Session Initiation Protocol (SIP) Using Third Party Call Control (3pcc)","authors":["G. Camarillo","E. Burger","H. Schulzrinne","A. van Wijk"],"rawDate":"2005-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4117","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4118":{"rfcNumber":"RFC4118","href":"https://www.rfc-editor.org/rfc/rfc4118","title":"Architecture Taxonomy for Control and Provisioning of Wireless Access Points (CAPWAP)","authors":["L. Yang","P. Zerfos","E. Sadot"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4119":{"rfcNumber":"RFC4119","href":"https://www.rfc-editor.org/rfc/rfc4119","title":"A Presence-based GEOPRIV Location Object Format","authors":["J. Peterson"],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC5139","RFC5491","RFC7459"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4119","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc412":{"aliasOf":"rfc0412"},"rfc4120":{"rfcNumber":"RFC4120","href":"https://www.rfc-editor.org/rfc/rfc4120","title":"The Kerberos Network Authentication Service (V5)","authors":["C. Neuman","T. Yu","S. Hartman","K. Raeburn"],"rawDate":"2005-07","status":"Proposed Standard","updatedBy":["RFC4537","RFC5021","RFC5896","RFC6111","RFC6112","RFC6113","RFC6649","RFC6806","RFC7751","RFC8062","RFC8129","RFC8429","RFC8553"],"obsoletes":["RFC1510"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4120","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4121":{"rfcNumber":"RFC4121","href":"https://www.rfc-editor.org/rfc/rfc4121","title":"The Kerberos Version 5 Generic Security Service Application Program Interface (GSS-API) Mechanism: Version 2","authors":["L. Zhu","K. Jaganathan","S. Hartman"],"rawDate":"2005-07","status":"Proposed Standard","updatedBy":["RFC5896","RFC6112","RFC6542","RFC6649","RFC8062"],"updates":["RFC1964"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4122":{"rfcNumber":"RFC4122","href":"https://www.rfc-editor.org/rfc/rfc4122","title":"A Universally Unique IDentifier (UUID) URN Namespace","authors":["P. Leach","M. Mealling","R. Salz"],"rawDate":"2005-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4122","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4123":{"rfcNumber":"RFC4123","href":"https://www.rfc-editor.org/rfc/rfc4123","title":"Session Initiation Protocol (SIP)-H.323 Interworking Requirements","authors":["H. Schulzrinne","C. Agboh"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4124":{"rfcNumber":"RFC4124","href":"https://www.rfc-editor.org/rfc/rfc4124","title":"Protocol Extensions for Support of Diffserv-aware MPLS Traffic Engineering","authors":["F. Le Faucheur, Ed."],"rawDate":"2005-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4125":{"rfcNumber":"RFC4125","href":"https://www.rfc-editor.org/rfc/rfc4125","title":"Maximum Allocation Bandwidth Constraints Model for Diffserv-aware MPLS Traffic Engineering","authors":["F. Le Faucheur","W. Lai"],"rawDate":"2005-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4126":{"rfcNumber":"RFC4126","href":"https://www.rfc-editor.org/rfc/rfc4126","title":"Max Allocation with Reservation Bandwidth Constraints Model for Diffserv-aware MPLS Traffic Engineering & Performance Comparisons","authors":["J. Ash"],"rawDate":"2005-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4127":{"rfcNumber":"RFC4127","href":"https://www.rfc-editor.org/rfc/rfc4127","title":"Russian Dolls Bandwidth Constraints Model for Diffserv-aware MPLS Traffic Engineering","authors":["F. Le Faucheur, Ed."],"rawDate":"2005-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4128":{"rfcNumber":"RFC4128","href":"https://www.rfc-editor.org/rfc/rfc4128","title":"Bandwidth Constraints Models for Differentiated Services (Diffserv)-aware MPLS Traffic Engineering: Performance Evaluation","authors":["W. Lai"],"rawDate":"2005-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4129":{"rfcNumber":"RFC4129","href":"https://www.rfc-editor.org/rfc/rfc4129","title":"Digital Private Network Signaling System (DPNSS)/Digital Access Signaling System 2 (DASS 2) Extensions to the IUA Protocol","authors":["R. Mukundan","K. Morneault","N. Mangalpally"],"rawDate":"2005-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc413":{"aliasOf":"rfc0413"},"rfc4130":{"rfcNumber":"RFC4130","href":"https://www.rfc-editor.org/rfc/rfc4130","title":"MIME-Based Secure Peer-to-Peer Business Data Interchange Using HTTP, Applicability Statement 2 (AS2)","authors":["D. Moberg","R. Drummond"],"rawDate":"2005-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4130","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4131":{"rfcNumber":"RFC4131","href":"https://www.rfc-editor.org/rfc/rfc4131","title":"Management Information Base for Data Over Cable Service Interface Specification (DOCSIS) Cable Modems and Cable Modem Termination Systems for Baseline Privacy Plus","authors":["S. Green","K. Ozawa","E. Cardona, Ed.","A. Katsnelson"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4132":{"rfcNumber":"RFC4132","href":"https://www.rfc-editor.org/rfc/rfc4132","title":"Addition of Camellia Cipher Suites to Transport Layer Security (TLS)","authors":["S. Moriai","A. Kato","M. Kanda"],"rawDate":"2005-07","status":"Proposed Standard","obsoletedBy":["RFC5932"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4133":{"rfcNumber":"RFC4133","href":"https://www.rfc-editor.org/rfc/rfc4133","title":"Entity MIB (Version 3)","authors":["A. Bierman","K. McCloghrie"],"rawDate":"2005-08","status":"Proposed Standard","obsoletedBy":["RFC6933"],"obsoletes":["RFC2737"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4133","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4134":{"rfcNumber":"RFC4134","href":"https://www.rfc-editor.org/rfc/rfc4134","title":"Examples of S/MIME Messages","authors":["P. Hoffman, Ed."],"rawDate":"2005-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4134","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4135":{"rfcNumber":"RFC4135","href":"https://www.rfc-editor.org/rfc/rfc4135","title":"Goals of Detecting Network Attachment in IPv6","authors":["JH. Choi","G. Daley"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4136":{"rfcNumber":"RFC4136","href":"https://www.rfc-editor.org/rfc/rfc4136","title":"OSPF Refresh and Flooding Reduction in Stable Topologies","authors":["P. Pillay-Esnault"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4137":{"rfcNumber":"RFC4137","href":"https://www.rfc-editor.org/rfc/rfc4137","title":"State Machines for Extensible Authentication Protocol (EAP) Peer and Authenticator","authors":["J. Vollbrecht","P. Eronen","N. Petroni","Y. Ohba"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4138":{"rfcNumber":"RFC4138","href":"https://www.rfc-editor.org/rfc/rfc4138","title":"Forward RTO-Recovery (F-RTO): An Algorithm for Detecting Spurious Retransmission Timeouts with TCP and the Stream Control Transmission Protocol (SCTP)","authors":["P. Sarolahti","M. Kojo"],"rawDate":"2005-08","status":"Experimental","updatedBy":["RFC5682"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4139":{"rfcNumber":"RFC4139","href":"https://www.rfc-editor.org/rfc/rfc4139","title":"Requirements for Generalized MPLS (GMPLS) Signaling Usage and Extensions for Automatically Switched Optical Network (ASON)","authors":["D. Papadimitriou","J. Drake","J. Ash","A. Farrel","L. Ong"],"rawDate":"2005-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc414":{"aliasOf":"rfc0414"},"rfc4140":{"rfcNumber":"RFC4140","href":"https://www.rfc-editor.org/rfc/rfc4140","title":"Hierarchical Mobile IPv6 Mobility Management (HMIPv6)","authors":["H. Soliman","C. Castelluccia","K. El Malki","L. Bellier"],"rawDate":"2005-08","status":"Experimental","obsoletedBy":["RFC5380"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4140","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4141":{"rfcNumber":"RFC4141","href":"https://www.rfc-editor.org/rfc/rfc4141","title":"SMTP and MIME Extensions for Content Conversion","authors":["K. Toyoda","D. Crocker"],"rawDate":"2005-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4141","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4142":{"rfcNumber":"RFC4142","href":"https://www.rfc-editor.org/rfc/rfc4142","title":"Full-mode Fax Profile for Internet Mail (FFPIM)","authors":["D. Crocker","G. Klyne"],"rawDate":"2005-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4143":{"rfcNumber":"RFC4143","href":"https://www.rfc-editor.org/rfc/rfc4143","title":"Facsimile Using Internet Mail (IFAX) Service of ENUM","authors":["K. Toyoda","D. Crocker"],"rawDate":"2005-11","status":"Proposed Standard","updatedBy":["RFC6118"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4143","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4144":{"rfcNumber":"RFC4144","href":"https://www.rfc-editor.org/rfc/rfc4144","title":"How to Gain Prominence and Influence in Standards Organizations","authors":["D. Eastlake 3rd"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4145":{"rfcNumber":"RFC4145","href":"https://www.rfc-editor.org/rfc/rfc4145","title":"TCP-Based Media Transport in the Session Description Protocol (SDP)","authors":["D. Yon","G. Camarillo"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC4572"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4146":{"rfcNumber":"RFC4146","href":"https://www.rfc-editor.org/rfc/rfc4146","title":"Simple New Mail Notification","authors":["R. Gellens"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4147":{"rfcNumber":"RFC4147","href":"https://www.rfc-editor.org/rfc/rfc4147","title":"Proposed Changes to the Format of the IANA IPv6 Registry","authors":["G. Huston"],"rawDate":"2005-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4147","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4148":{"rfcNumber":"RFC4148","href":"https://www.rfc-editor.org/rfc/rfc4148","title":"IP Performance Metrics (IPPM) Metrics Registry","authors":["E. Stephan"],"rawDate":"2005-08","status":"Best Current Practice","obsoletedBy":["RFC6248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4149":{"rfcNumber":"RFC4149","href":"https://www.rfc-editor.org/rfc/rfc4149","title":"Definition of Managed Objects for Synthetic Sources for Performance Monitoring Algorithms","authors":["C. Kalbfleisch","R. Cole","D. Romascanu"],"rawDate":"2005-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc415":{"aliasOf":"rfc0415"},"rfc4150":{"rfcNumber":"RFC4150","href":"https://www.rfc-editor.org/rfc/rfc4150","title":"Transport Performance Metrics MIB","authors":["R. Dietz","R. Cole"],"rawDate":"2005-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4151":{"rfcNumber":"RFC4151","href":"https://www.rfc-editor.org/rfc/rfc4151","title":"The 'tag' URI Scheme","authors":["T. Kindberg","S. Hawke"],"rawDate":"2005-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4151","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4152":{"rfcNumber":"RFC4152","href":"https://www.rfc-editor.org/rfc/rfc4152","title":"A Uniform Resource Name (URN) Namespace for the Common Language Equipment Identifier (CLEI) Code","authors":["K. Tesink","R. Fox"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4153":{"rfcNumber":"RFC4153","href":"https://www.rfc-editor.org/rfc/rfc4153","title":"XML Voucher: Generic Voucher Language","authors":["K. Fujimura","M. Terada","D. Eastlake 3rd"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4154":{"rfcNumber":"RFC4154","href":"https://www.rfc-editor.org/rfc/rfc4154","title":"Voucher Trading System Application Programming Interface (VTS-API)","authors":["M. Terada","K. Fujimura"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4155":{"rfcNumber":"RFC4155","href":"https://www.rfc-editor.org/rfc/rfc4155","title":"The application/mbox Media Type","authors":["E. Hall"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4156":{"rfcNumber":"RFC4156","href":"https://www.rfc-editor.org/rfc/rfc4156","title":"The wais URI Scheme","authors":["P. Hoffman"],"rawDate":"2005-08","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4156","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4157":{"rfcNumber":"RFC4157","href":"https://www.rfc-editor.org/rfc/rfc4157","title":"The prospero URI Scheme","authors":["P. Hoffman"],"rawDate":"2005-08","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4157","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4158":{"rfcNumber":"RFC4158","href":"https://www.rfc-editor.org/rfc/rfc4158","title":"Internet X.509 Public Key Infrastructure: Certification Path Building","authors":["M. Cooper","Y. Dzambasow","P. Hesse","S. Joseph","R. Nicholas"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4159":{"rfcNumber":"RFC4159","href":"https://www.rfc-editor.org/rfc/rfc4159","title":"Deprecation of \"ip6.int\"","authors":["G. Huston"],"rawDate":"2005-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc416":{"aliasOf":"rfc0416"},"rfc4160":{"rfcNumber":"RFC4160","href":"https://www.rfc-editor.org/rfc/rfc4160","title":"Internet Fax Gateway Requirements","authors":["K. Mimura","K. Yokoyama","T. Satoh","C. Kanaide","C. Allocchio"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4161":{"rfcNumber":"RFC4161","href":"https://www.rfc-editor.org/rfc/rfc4161","title":"Guidelines for Optional Services for Internet Fax Gateways","authors":["K. Mimura","K. Yokoyama","T. Satoh","K. Watanabe","C. Kanaide"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4162":{"rfcNumber":"RFC4162","href":"https://www.rfc-editor.org/rfc/rfc4162","title":"Addition of SEED Cipher Suites to Transport Layer Security (TLS)","authors":["H.J. Lee","J.H. Yoon","J.I. Lee"],"rawDate":"2005-08","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4163":{"rfcNumber":"RFC4163","href":"https://www.rfc-editor.org/rfc/rfc4163","title":"RObust Header Compression (ROHC): Requirements on TCP/IP Header Compression","authors":["L-E. Jonsson"],"rawDate":"2005-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4164":{"rfcNumber":"RFC4164","href":"https://www.rfc-editor.org/rfc/rfc4164","title":"RObust Header Compression (ROHC): Context Replication for ROHC Profiles","authors":["G. Pelletier"],"rawDate":"2005-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4165":{"rfcNumber":"RFC4165","href":"https://www.rfc-editor.org/rfc/rfc4165","title":"Signaling System 7 (SS7) Message Transfer Part 2 (MTP2) - User Peer-to-Peer Adaptation Layer (M2PA)","authors":["T. George","B. Bidulock","R. Dantu","H. Schwarzbauer","K. Morneault"],"rawDate":"2005-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4165","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4166":{"rfcNumber":"RFC4166","href":"https://www.rfc-editor.org/rfc/rfc4166","title":"Telephony Signalling Transport over Stream Control Transmission Protocol (SCTP) Applicability Statement","authors":["L. Coene","J. Pastor-Balbas"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4167":{"rfcNumber":"RFC4167","href":"https://www.rfc-editor.org/rfc/rfc4167","title":"Graceful OSPF Restart Implementation Report","authors":["A. Lindem"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4168":{"rfcNumber":"RFC4168","href":"https://www.rfc-editor.org/rfc/rfc4168","title":"The Stream Control Transmission Protocol (SCTP) as a Transport for the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","H. Schulzrinne","G. Camarillo"],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4169":{"rfcNumber":"RFC4169","href":"https://www.rfc-editor.org/rfc/rfc4169","title":"Hypertext Transfer Protocol (HTTP) Digest Authentication Using Authentication and Key Agreement (AKA) Version-2","authors":["V. Torvinen","J. Arkko","M. Naslund"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc417":{"aliasOf":"rfc0417"},"rfc4170":{"rfcNumber":"RFC4170","href":"https://www.rfc-editor.org/rfc/rfc4170","title":"Tunneling Multiplexed Compressed RTP (TCRTP)","authors":["B. Thompson","T. Koren","D. Wing"],"rawDate":"2005-11","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4171":{"rfcNumber":"RFC4171","href":"https://www.rfc-editor.org/rfc/rfc4171","title":"Internet Storage Name Service (iSNS)","authors":["J. Tseng","K. Gibbons","F. Travostino","C. Du Laney","J. Souza"],"rawDate":"2005-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4171","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4172":{"rfcNumber":"RFC4172","href":"https://www.rfc-editor.org/rfc/rfc4172","title":"iFCP - A Protocol for Internet Fibre Channel Storage Networking","authors":["C. Monia","R. Mullendore","F. Travostino","W. Jeong","M. Edwards"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC6172","RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4173":{"rfcNumber":"RFC4173","href":"https://www.rfc-editor.org/rfc/rfc4173","title":"Bootstrapping Clients using the Internet Small Computer System Interface (iSCSI) Protocol","authors":["P. Sarkar","D. Missimer","C. Sapuntzakis"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC7146"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4173","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4174":{"rfcNumber":"RFC4174","href":"https://www.rfc-editor.org/rfc/rfc4174","title":"The IPv4 Dynamic Host Configuration Protocol (DHCP) Option for the Internet Storage Name Service","authors":["C. Monia","J. Tseng","K. Gibbons"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4175":{"rfcNumber":"RFC4175","href":"https://www.rfc-editor.org/rfc/rfc4175","title":"RTP Payload Format for Uncompressed Video","authors":["L. Gharai","C. Perkins"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC4421"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4175","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4176":{"rfcNumber":"RFC4176","href":"https://www.rfc-editor.org/rfc/rfc4176","title":"Framework for Layer 3 Virtual Private Networks (L3VPN) Operations and Management","authors":["Y. El Mghazli, Ed.","T. Nadeau","M. Boucadair","K. Chan","A. Gonguet"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4177":{"rfcNumber":"RFC4177","href":"https://www.rfc-editor.org/rfc/rfc4177","title":"Architectural Approaches to Multi-homing for IPv6","authors":["G. Huston"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4178":{"rfcNumber":"RFC4178","href":"https://www.rfc-editor.org/rfc/rfc4178","title":"The Simple and Protected Generic Security Service Application Program Interface (GSS-API) Negotiation Mechanism","authors":["L. Zhu","P. Leach","K. Jaganathan","W. Ingersoll"],"rawDate":"2005-10","status":"Proposed Standard","obsoletes":["RFC2478"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4179":{"rfcNumber":"RFC4179","href":"https://www.rfc-editor.org/rfc/rfc4179","title":"Using Universal Content Identifier (UCI) as Uniform Resource Names (URN)","authors":["S. Kang"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc418":{"aliasOf":"rfc0418"},"rfc4180":{"rfcNumber":"RFC4180","href":"https://www.rfc-editor.org/rfc/rfc4180","title":"Common Format and MIME Type for Comma-Separated Values (CSV) Files","authors":["Y. Shafranovich"],"rawDate":"2005-10","status":"Informational","updatedBy":["RFC7111"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4180","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4181":{"rfcNumber":"RFC4181","href":"https://www.rfc-editor.org/rfc/rfc4181","title":"Guidelines for Authors and Reviewers of MIB Documents","authors":["C. Heard, Ed."],"rawDate":"2005-09","status":"Best Current Practice","updatedBy":["RFC4841"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4181","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4182":{"rfcNumber":"RFC4182","href":"https://www.rfc-editor.org/rfc/rfc4182","title":"Removing a Restriction on the use of MPLS Explicit NULL","authors":["E. Rosen"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC5462","RFC7274"],"updates":["RFC3032"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4182","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4183":{"rfcNumber":"RFC4183","href":"https://www.rfc-editor.org/rfc/rfc4183","title":"A Suggested Scheme for DNS Resolution of Networks and Gateways","authors":["E. Warnicke"],"rawDate":"2005-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4184":{"rfcNumber":"RFC4184","href":"https://www.rfc-editor.org/rfc/rfc4184","title":"RTP Payload Format for AC-3 Audio","authors":["B. Link","T. Hager","J. Flaks"],"rawDate":"2005-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4185":{"rfcNumber":"RFC4185","href":"https://www.rfc-editor.org/rfc/rfc4185","title":"National and Local Characters for DNS Top Level Domain (TLD) Names","authors":["J. Klensin"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4186":{"rfcNumber":"RFC4186","href":"https://www.rfc-editor.org/rfc/rfc4186","title":"Extensible Authentication Protocol Method for Global System for Mobile Communications (GSM) Subscriber Identity Modules (EAP-SIM)","authors":["H. Haverinen, Ed.","J. Salowey, Ed."],"rawDate":"2006-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4186","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4187":{"rfcNumber":"RFC4187","href":"https://www.rfc-editor.org/rfc/rfc4187","title":"Extensible Authentication Protocol Method for 3rd Generation Authentication and Key Agreement (EAP-AKA)","authors":["J. Arkko","H. Haverinen"],"rawDate":"2006-01","status":"Informational","updatedBy":["RFC5448","RFC9048"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4187","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4188":{"rfcNumber":"RFC4188","href":"https://www.rfc-editor.org/rfc/rfc4188","title":"Definitions of Managed Objects for Bridges","authors":["K. Norseth, Ed.","E. Bell, Ed."],"rawDate":"2005-09","status":"Proposed Standard","obsoletes":["RFC1493"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4188","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4189":{"rfcNumber":"RFC4189","href":"https://www.rfc-editor.org/rfc/rfc4189","title":"Requirements for End-to-Middle Security for the Session Initiation Protocol (SIP)","authors":["K. Ono","S. Tachimoto"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc419":{"aliasOf":"rfc0419"},"rfc4190":{"rfcNumber":"RFC4190","href":"https://www.rfc-editor.org/rfc/rfc4190","title":"Framework for Supporting Emergency Telecommunications Service (ETS) in IP Telephony","authors":["K. Carlberg","I. Brown","C. Beard"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4191":{"rfcNumber":"RFC4191","href":"https://www.rfc-editor.org/rfc/rfc4191","title":"Default Router Preferences and More-Specific Routes","authors":["R. Draves","D. Thaler"],"rawDate":"2005-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4191","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4192":{"rfcNumber":"RFC4192","href":"https://www.rfc-editor.org/rfc/rfc4192","title":"Procedures for Renumbering an IPv6 Network without a Flag Day","authors":["F. Baker","E. Lear","R. Droms"],"rawDate":"2005-09","status":"Informational","updates":["RFC2072"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4193":{"rfcNumber":"RFC4193","href":"https://www.rfc-editor.org/rfc/rfc4193","title":"Unique Local IPv6 Unicast Addresses","authors":["R. Hinden","B. Haberman"],"rawDate":"2005-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4194":{"rfcNumber":"RFC4194","href":"https://www.rfc-editor.org/rfc/rfc4194","title":"The S Hexdump Format","authors":["J. Strombergson","L. Walleij","P. Faltstrom"],"rawDate":"2005-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4194","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4195":{"rfcNumber":"RFC4195","href":"https://www.rfc-editor.org/rfc/rfc4195","title":"A Uniform Resource Name (URN) Namespace for the TV-Anytime Forum","authors":["W. Kameyama"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4196":{"rfcNumber":"RFC4196","href":"https://www.rfc-editor.org/rfc/rfc4196","title":"The SEED Cipher Algorithm and Its Use with IPsec","authors":["H.J. Lee","J.H. Yoon","S.L. Lee","J.I. Lee"],"rawDate":"2005-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4197":{"rfcNumber":"RFC4197","href":"https://www.rfc-editor.org/rfc/rfc4197","title":"Requirements for Edge-to-Edge Emulation of Time Division Multiplexed (TDM) Circuits over Packet Switching Networks","authors":["M. Riegel, Ed."],"rawDate":"2005-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4197","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4198":{"rfcNumber":"RFC4198","href":"https://www.rfc-editor.org/rfc/rfc4198","title":"A Uniform Resource Name (URN) Namespace for Federated Content","authors":["D. Tessman"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc42":{"aliasOf":"rfc0042"},"rfc420":{"aliasOf":"rfc0420"},"rfc4201":{"rfcNumber":"RFC4201","href":"https://www.rfc-editor.org/rfc/rfc4201","title":"Link Bundling in MPLS Traffic Engineering (TE)","authors":["K. Kompella","Y. Rekhter","L. Berger"],"rawDate":"2005-10","status":"Proposed Standard","updates":["RFC3471","RFC3472","RFC3473"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4202":{"rfcNumber":"RFC4202","href":"https://www.rfc-editor.org/rfc/rfc4202","title":"Routing Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)","authors":["K. Kompella, Ed.","Y. Rekhter, Ed."],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6001","RFC6002","RFC7074"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4203":{"rfcNumber":"RFC4203","href":"https://www.rfc-editor.org/rfc/rfc4203","title":"OSPF Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)","authors":["K. Kompella, Ed.","Y. Rekhter, Ed."],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6001","RFC6002","RFC7074"],"updates":["RFC3630"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4204":{"rfcNumber":"RFC4204","href":"https://www.rfc-editor.org/rfc/rfc4204","title":"Link Management Protocol (LMP)","authors":["J. Lang, Ed."],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6898"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4204","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4205":{"rfcNumber":"RFC4205","href":"https://www.rfc-editor.org/rfc/rfc4205","title":"Intermediate System to Intermediate System (IS-IS) Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)","authors":["K. Kompella, Ed.","Y. Rekhter, Ed."],"rawDate":"2005-10","status":"Informational","obsoletedBy":["RFC5307"],"updates":["RFC3784"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4206":{"rfcNumber":"RFC4206","href":"https://www.rfc-editor.org/rfc/rfc4206","title":"Label Switched Paths (LSP) Hierarchy with Generalized Multi-Protocol Label Switching (GMPLS) Traffic Engineering (TE)","authors":["K. Kompella","Y. Rekhter"],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6001","RFC6107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4207":{"rfcNumber":"RFC4207","href":"https://www.rfc-editor.org/rfc/rfc4207","title":"Synchronous Optical Network (SONET)/Synchronous Digital Hierarchy (SDH) Encoding for Link Management Protocol (LMP) Test Messages","authors":["J. Lang","D. Papadimitriou"],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6898"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4207","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4208":{"rfcNumber":"RFC4208","href":"https://www.rfc-editor.org/rfc/rfc4208","title":"Generalized Multiprotocol Label Switching (GMPLS) User-Network Interface (UNI): Resource ReserVation Protocol-Traffic Engineering (RSVP-TE) Support for the Overlay Model","authors":["G. Swallow","J. Drake","H. Ishimatsu","Y. Rekhter"],"rawDate":"2005-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4209":{"rfcNumber":"RFC4209","href":"https://www.rfc-editor.org/rfc/rfc4209","title":"Link Management Protocol (LMP) for Dense Wavelength Division Multiplexing (DWDM) Optical Line Systems","authors":["A. Fredette, Ed.","J. Lang, Ed."],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6898"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc421":{"aliasOf":"rfc0421"},"rfc4210":{"rfcNumber":"RFC4210","href":"https://www.rfc-editor.org/rfc/rfc4210","title":"Internet X.509 Public Key Infrastructure Certificate Management Protocol (CMP)","authors":["C. Adams","S. Farrell","T. Kause","T. Mononen"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC6712","RFC9480","RFC9481"],"obsoletes":["RFC2510"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4210","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4211":{"rfcNumber":"RFC4211","href":"https://www.rfc-editor.org/rfc/rfc4211","title":"Internet X.509 Public Key Infrastructure Certificate Request Message Format (CRMF)","authors":["J. Schaad"],"rawDate":"2005-09","status":"Proposed Standard","updatedBy":["RFC9045"],"obsoletes":["RFC2511"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4211","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4212":{"rfcNumber":"RFC4212","href":"https://www.rfc-editor.org/rfc/rfc4212","title":"Alternative Certificate Formats for the Public-Key Infrastructure Using X.509 (PKIX) Certificate Management Protocols","authors":["M. Blinov","C. Adams"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4213":{"rfcNumber":"RFC4213","href":"https://www.rfc-editor.org/rfc/rfc4213","title":"Basic Transition Mechanisms for IPv6 Hosts and Routers","authors":["E. Nordmark","R. Gilligan"],"rawDate":"2005-10","status":"Proposed Standard","obsoletes":["RFC2893"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4213","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4214":{"rfcNumber":"RFC4214","href":"https://www.rfc-editor.org/rfc/rfc4214","title":"Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)","authors":["F. Templin","T. Gleeson","M. Talwar","D. Thaler"],"rawDate":"2005-10","status":"Experimental","obsoletedBy":["RFC5214"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4215":{"rfcNumber":"RFC4215","href":"https://www.rfc-editor.org/rfc/rfc4215","title":"Analysis on IPv6 Transition in Third Generation Partnership Project (3GPP) Networks","authors":["J. Wiljakka, Ed."],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4216":{"rfcNumber":"RFC4216","href":"https://www.rfc-editor.org/rfc/rfc4216","title":"MPLS Inter-Autonomous System (AS) Traffic Engineering (TE) Requirements","authors":["R. Zhang, Ed.","J.-P. Vasseur, Ed."],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4217":{"rfcNumber":"RFC4217","href":"https://www.rfc-editor.org/rfc/rfc4217","title":"Securing FTP with TLS","authors":["P. Ford-Hutchinson"],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4217","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4218":{"rfcNumber":"RFC4218","href":"https://www.rfc-editor.org/rfc/rfc4218","title":"Threats Relating to IPv6 Multihoming Solutions","authors":["E. Nordmark","T. Li"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4219":{"rfcNumber":"RFC4219","href":"https://www.rfc-editor.org/rfc/rfc4219","title":"Things Multihoming in IPv6 (MULTI6) Developers Should Think About","authors":["E. Lear"],"rawDate":"2005-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc422":{"aliasOf":"rfc0422"},"rfc4220":{"rfcNumber":"RFC4220","href":"https://www.rfc-editor.org/rfc/rfc4220","title":"Traffic Engineering Link Management Information Base","authors":["M. Dubuc","T. Nadeau","J. Lang"],"rawDate":"2005-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4221":{"rfcNumber":"RFC4221","href":"https://www.rfc-editor.org/rfc/rfc4221","title":"Multiprotocol Label Switching (MPLS) Management Overview","authors":["T. Nadeau","C. Srinivasan","A. Farrel"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4222":{"rfcNumber":"RFC4222","href":"https://www.rfc-editor.org/rfc/rfc4222","title":"Prioritized Treatment of Specific OSPF Version 2 Packets and Congestion Avoidance","authors":["G. Choudhury, Ed."],"rawDate":"2005-10","status":"Best Current Practice","updatedBy":["RFC9454"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4223":{"rfcNumber":"RFC4223","href":"https://www.rfc-editor.org/rfc/rfc4223","title":"Reclassification of RFC 1863 to Historic","authors":["P. Savola"],"rawDate":"2005-10","status":"Informational","obsoletes":["RFC1863"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4224":{"rfcNumber":"RFC4224","href":"https://www.rfc-editor.org/rfc/rfc4224","title":"RObust Header Compression (ROHC): ROHC over Channels That Can Reorder Packets","authors":["G. Pelletier","L-E. Jonsson","K. Sandlund"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4225":{"rfcNumber":"RFC4225","href":"https://www.rfc-editor.org/rfc/rfc4225","title":"Mobile IP Version 6 Route Optimization Security Design Background","authors":["P. Nikander","J. Arkko","T. Aura","G. Montenegro","E. Nordmark"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4226":{"rfcNumber":"RFC4226","href":"https://www.rfc-editor.org/rfc/rfc4226","title":"HOTP: An HMAC-Based One-Time Password Algorithm","authors":["D. M'Raihi","M. Bellare","F. Hoornaert","D. Naccache","O. Ranen"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4226","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4227":{"rfcNumber":"RFC4227","href":"https://www.rfc-editor.org/rfc/rfc4227","title":"Using the Simple Object Access Protocol (SOAP) in Blocks Extensible Exchange Protocol (BEEP)","authors":["E. O'Tuathail","M. Rose"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC8553"],"obsoletes":["RFC3288"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4227","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4228":{"rfcNumber":"RFC4228","href":"https://www.rfc-editor.org/rfc/rfc4228","title":"Requirements for an IETF Draft Submission Toolset","authors":["A. Rousskov"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4229":{"rfcNumber":"RFC4229","href":"https://www.rfc-editor.org/rfc/rfc4229","title":"HTTP Header Field Registrations","authors":["M. Nottingham","J. Mogul"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4229","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc423":{"aliasOf":"rfc0423"},"rfc4230":{"rfcNumber":"RFC4230","href":"https://www.rfc-editor.org/rfc/rfc4230","title":"RSVP Security Properties","authors":["H. Tschofenig","R. Graveman"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4230","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4231":{"rfcNumber":"RFC4231","href":"https://www.rfc-editor.org/rfc/rfc4231","title":"Identifiers and Test Vectors for HMAC-SHA-224, HMAC-SHA-256, HMAC-SHA-384, and HMAC-SHA-512","authors":["M. Nystrom"],"rawDate":"2005-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4231","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4233":{"rfcNumber":"RFC4233","href":"https://www.rfc-editor.org/rfc/rfc4233","title":"Integrated Services Digital Network (ISDN) Q.921-User Adaptation Layer","authors":["K. Morneault","S. Rengasami","M. Kalla","G. Sidebottom"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC5133"],"obsoletes":["RFC3057"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4234":{"rfcNumber":"RFC4234","href":"https://www.rfc-editor.org/rfc/rfc4234","title":"Augmented BNF for Syntax Specifications: ABNF","authors":["D. Crocker, Ed.","P. Overell"],"rawDate":"2005-10","status":"Draft Standard","obsoletedBy":["RFC5234"],"obsoletes":["RFC2234"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4234","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4235":{"rfcNumber":"RFC4235","href":"https://www.rfc-editor.org/rfc/rfc4235","title":"An INVITE-Initiated Dialog Event Package for the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","H. Schulzrinne","R. Mahy, Ed."],"rawDate":"2005-11","status":"Proposed Standard","updatedBy":["RFC7463","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4235","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4236":{"rfcNumber":"RFC4236","href":"https://www.rfc-editor.org/rfc/rfc4236","title":"HTTP Adaptation with Open Pluggable Edge Services (OPES)","authors":["A. Rousskov","M. Stecher"],"rawDate":"2005-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4237":{"rfcNumber":"RFC4237","href":"https://www.rfc-editor.org/rfc/rfc4237","title":"Voice Messaging Directory Service","authors":["G. Vaudreuil"],"rawDate":"2005-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4237","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4238":{"rfcNumber":"RFC4238","href":"https://www.rfc-editor.org/rfc/rfc4238","title":"Voice Message Routing Service","authors":["G. Vaudreuil"],"rawDate":"2005-10","status":"Proposed Standard","updatedBy":["RFC6118"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4238","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4239":{"rfcNumber":"RFC4239","href":"https://www.rfc-editor.org/rfc/rfc4239","title":"Internet Voice Messaging (IVM)","authors":["S. McRae","G. Parsons"],"rawDate":"2005-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4240":{"rfcNumber":"RFC4240","href":"https://www.rfc-editor.org/rfc/rfc4240","title":"Basic Network Media Services with SIP","authors":["E. Burger, Ed.","J. Van Dyke","A. Spitzer"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4240","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4241":{"rfcNumber":"RFC4241","href":"https://www.rfc-editor.org/rfc/rfc4241","title":"A Model of IPv6/IPv4 Dual Stack Internet Access Service","authors":["Y. Shirasaki","S. Miyakawa","T. Yamasaki","A. Takenouchi"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4241","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4242":{"rfcNumber":"RFC4242","href":"https://www.rfc-editor.org/rfc/rfc4242","title":"Information Refresh Time Option for Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["S. Venaas","T. Chown","B. Volz"],"rawDate":"2005-11","status":"Proposed Standard","obsoletedBy":["RFC8415"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4243":{"rfcNumber":"RFC4243","href":"https://www.rfc-editor.org/rfc/rfc4243","title":"Vendor-Specific Information Suboption for the Dynamic Host Configuration Protocol (DHCP) Relay Agent Option","authors":["M. Stapp","R. Johnson","T. Palaniappan"],"rawDate":"2005-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4244":{"rfcNumber":"RFC4244","href":"https://www.rfc-editor.org/rfc/rfc4244","title":"An Extension to the Session Initiation Protocol (SIP) for Request History Information","authors":["M. Barnes, Ed."],"rawDate":"2005-11","status":"Proposed Standard","obsoletedBy":["RFC7044"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4244","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4245":{"rfcNumber":"RFC4245","href":"https://www.rfc-editor.org/rfc/rfc4245","title":"High-Level Requirements for Tightly Coupled SIP Conferencing","authors":["O. Levin","R. Even"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4246":{"rfcNumber":"RFC4246","href":"https://www.rfc-editor.org/rfc/rfc4246","title":"International Standard Audiovisual Number (ISAN) URN Definition","authors":["M. Dolan"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4247":{"rfcNumber":"RFC4247","href":"https://www.rfc-editor.org/rfc/rfc4247","title":"Requirements for Header Compression over MPLS","authors":["J. Ash","B. Goode","J. Hand","R. Zhang"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4248":{"rfcNumber":"RFC4248","href":"https://www.rfc-editor.org/rfc/rfc4248","title":"The telnet URI Scheme","authors":["P. Hoffman"],"rawDate":"2005-10","status":"Proposed Standard","obsoletes":["RFC1738"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4249":{"rfcNumber":"RFC4249","href":"https://www.rfc-editor.org/rfc/rfc4249","title":"Implementer-Friendly Specification of Message and MIME-Part Header Fields and Field Components","authors":["B. Lilly"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc425":{"aliasOf":"rfc0425"},"rfc4250":{"rfcNumber":"RFC4250","href":"https://www.rfc-editor.org/rfc/rfc4250","title":"The Secure Shell (SSH) Protocol Assigned Numbers","authors":["S. Lehtinen","C. Lonvick, Ed."],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC8268","RFC9142","RFC9519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4251":{"rfcNumber":"RFC4251","href":"https://www.rfc-editor.org/rfc/rfc4251","title":"The Secure Shell (SSH) Protocol Architecture","authors":["T. Ylonen","C. Lonvick, Ed."],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC8308","RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4252":{"rfcNumber":"RFC4252","href":"https://www.rfc-editor.org/rfc/rfc4252","title":"The Secure Shell (SSH) Authentication Protocol","authors":["T. Ylonen","C. Lonvick, Ed."],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC8308","RFC8332"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4252","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4253":{"rfcNumber":"RFC4253","href":"https://www.rfc-editor.org/rfc/rfc4253","title":"The Secure Shell (SSH) Transport Layer Protocol","authors":["T. Ylonen","C. Lonvick, Ed."],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC6668","RFC8268","RFC8308","RFC8332","RFC8709","RFC8758","RFC9142"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4253","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4254":{"rfcNumber":"RFC4254","href":"https://www.rfc-editor.org/rfc/rfc4254","title":"The Secure Shell (SSH) Connection Protocol","authors":["T. Ylonen","C. Lonvick, Ed."],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC8308"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4254","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4255":{"rfcNumber":"RFC4255","href":"https://www.rfc-editor.org/rfc/rfc4255","title":"Using DNS to Securely Publish Secure Shell (SSH) Key Fingerprints","authors":["J. Schlyter","W. Griffin"],"rawDate":"2006-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4255","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4256":{"rfcNumber":"RFC4256","href":"https://www.rfc-editor.org/rfc/rfc4256","title":"Generic Message Exchange Authentication for the Secure Shell Protocol (SSH)","authors":["F. Cusack","M. Forssen"],"rawDate":"2006-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4256","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4257":{"rfcNumber":"RFC4257","href":"https://www.rfc-editor.org/rfc/rfc4257","title":"Framework for Generalized Multi-Protocol Label Switching (GMPLS)-based Control of Synchronous Digital Hierarchy/Synchronous Optical Networking (SDH/SONET) Networks","authors":["G. Bernstein","E. Mannie","V. Sharma","E. Gray"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4258":{"rfcNumber":"RFC4258","href":"https://www.rfc-editor.org/rfc/rfc4258","title":"Requirements for Generalized Multi-Protocol Label Switching (GMPLS) Routing for the Automatically Switched Optical Network (ASON)","authors":["D. Brungard, Ed."],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4259":{"rfcNumber":"RFC4259","href":"https://www.rfc-editor.org/rfc/rfc4259","title":"A Framework for Transmission of IP Datagrams over MPEG-2 Networks","authors":["M.-J. Montpetit","G. Fairhurst","H. Clausen","B. Collini-Nocker","H. Linder"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc426":{"aliasOf":"rfc0426"},"rfc4260":{"rfcNumber":"RFC4260","href":"https://www.rfc-editor.org/rfc/rfc4260","title":"Mobile IPv6 Fast Handovers for 802.11 Networks","authors":["P. McCann"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4261":{"rfcNumber":"RFC4261","href":"https://www.rfc-editor.org/rfc/rfc4261","title":"Common Open Policy Service (COPS) Over Transport Layer Security (TLS)","authors":["J. Walker","A. Kulkarni, Ed."],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC2748"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4262":{"rfcNumber":"RFC4262","href":"https://www.rfc-editor.org/rfc/rfc4262","title":"X.509 Certificate Extension for Secure/Multipurpose Internet Mail Extensions (S/MIME) Capabilities","authors":["S. Santesson"],"rawDate":"2005-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4263":{"rfcNumber":"RFC4263","href":"https://www.rfc-editor.org/rfc/rfc4263","title":"Media Subtype Registration for Media Type text/troff","authors":["B. Lilly"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4264":{"rfcNumber":"RFC4264","href":"https://www.rfc-editor.org/rfc/rfc4264","title":"BGP Wedgies","authors":["T. Griffin","G. Huston"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4265":{"rfcNumber":"RFC4265","href":"https://www.rfc-editor.org/rfc/rfc4265","title":"Definition of Textual Conventions for Virtual Private Network (VPN) Management","authors":["B. Schliesser","T. Nadeau"],"rawDate":"2005-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4266":{"rfcNumber":"RFC4266","href":"https://www.rfc-editor.org/rfc/rfc4266","title":"The gopher URI Scheme","authors":["P. Hoffman"],"rawDate":"2005-11","status":"Proposed Standard","obsoletes":["RFC1738"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4267":{"rfcNumber":"RFC4267","href":"https://www.rfc-editor.org/rfc/rfc4267","title":"The W3C Speech Interface Framework Media Types: application/voicexml+xml, application/ssml+xml, application/srgs, application/srgs+xml, application/ccxml+xml, and application/pls+xml","authors":["M. Froumentin"],"rawDate":"2005-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4268":{"rfcNumber":"RFC4268","href":"https://www.rfc-editor.org/rfc/rfc4268","title":"Entity State MIB","authors":["S. Chisholm","D. Perkins"],"rawDate":"2005-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4268","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4269":{"rfcNumber":"RFC4269","href":"https://www.rfc-editor.org/rfc/rfc4269","title":"The SEED Encryption Algorithm","authors":["H.J. Lee","S.J. Lee","J.H. Yoon","D.H. Cheon","J.I. Lee"],"rawDate":"2005-12","status":"Informational","obsoletes":["RFC4009"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4270":{"rfcNumber":"RFC4270","href":"https://www.rfc-editor.org/rfc/rfc4270","title":"Attacks on Cryptographic Hashes in Internet Protocols","authors":["P. Hoffman","B. Schneier"],"rawDate":"2005-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4270","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4271":{"rfcNumber":"RFC4271","href":"https://www.rfc-editor.org/rfc/rfc4271","title":"A Border Gateway Protocol 4 (BGP-4)","authors":["Y. Rekhter, Ed.","T. Li, Ed.","S. Hares, Ed."],"rawDate":"2006-01","status":"Draft Standard","updatedBy":["RFC6286","RFC6608","RFC6793","RFC7606","RFC7607","RFC7705","RFC8212","RFC8654","RFC9072"],"obsoletes":["RFC1771"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4271","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4272":{"rfcNumber":"RFC4272","href":"https://www.rfc-editor.org/rfc/rfc4272","title":"BGP Security Vulnerabilities Analysis","authors":["S. Murphy"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4273":{"rfcNumber":"RFC4273","href":"https://www.rfc-editor.org/rfc/rfc4273","title":"Definitions of Managed Objects for BGP-4","authors":["J. Haas, Ed.","S. Hares, Ed."],"rawDate":"2006-01","status":"Proposed Standard","obsoletes":["RFC1269","RFC1657"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4273","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4274":{"rfcNumber":"RFC4274","href":"https://www.rfc-editor.org/rfc/rfc4274","title":"BGP-4 Protocol Analysis","authors":["D. Meyer","K. Patel"],"rawDate":"2006-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4274","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4275":{"rfcNumber":"RFC4275","href":"https://www.rfc-editor.org/rfc/rfc4275","title":"BGP-4 MIB Implementation Survey","authors":["S. Hares","D. Hares"],"rawDate":"2006-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4275","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4276":{"rfcNumber":"RFC4276","href":"https://www.rfc-editor.org/rfc/rfc4276","title":"BGP-4 Implementation Report","authors":["S. Hares","A. Retana"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4277":{"rfcNumber":"RFC4277","href":"https://www.rfc-editor.org/rfc/rfc4277","title":"Experience with the BGP-4 Protocol","authors":["D. McPherson","K. Patel"],"rawDate":"2006-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4277","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4278":{"rfcNumber":"RFC4278","href":"https://www.rfc-editor.org/rfc/rfc4278","title":"Standards Maturity Variance Regarding the TCP MD5 Signature Option (RFC 2385) and the BGP-4 Specification","authors":["S. Bellovin","A. Zinin"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4279":{"rfcNumber":"RFC4279","href":"https://www.rfc-editor.org/rfc/rfc4279","title":"Pre-Shared Key Ciphersuites for Transport Layer Security (TLS)","authors":["P. Eronen, Ed.","H. Tschofenig, Ed."],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4280":{"rfcNumber":"RFC4280","href":"https://www.rfc-editor.org/rfc/rfc4280","title":"Dynamic Host Configuration Protocol (DHCP) Options for Broadcast and Multicast Control Servers","authors":["K. Chowdhury","P. Yegani","L. Madour"],"rawDate":"2005-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4280","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4281":{"rfcNumber":"RFC4281","href":"https://www.rfc-editor.org/rfc/rfc4281","title":"The Codecs Parameter for \"Bucket\" Media Types","authors":["R. Gellens","D. Singer","P. Frojdh"],"rawDate":"2005-11","status":"Proposed Standard","obsoletedBy":["RFC6381"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4281","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4282":{"rfcNumber":"RFC4282","href":"https://www.rfc-editor.org/rfc/rfc4282","title":"The Network Access Identifier","authors":["B. Aboba","M. Beadles","J. Arkko","P. Eronen"],"rawDate":"2005-12","status":"Proposed Standard","obsoletedBy":["RFC7542"],"obsoletes":["RFC2486"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4282","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4283":{"rfcNumber":"RFC4283","href":"https://www.rfc-editor.org/rfc/rfc4283","title":"Mobile Node Identifier Option for Mobile IPv6 (MIPv6)","authors":["A. Patel","K. Leung","M. Khalil","H. Akhtar","K. Chowdhury"],"rawDate":"2005-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4283","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4284":{"rfcNumber":"RFC4284","href":"https://www.rfc-editor.org/rfc/rfc4284","title":"Identity Selection Hints for the Extensible Authentication Protocol (EAP)","authors":["F. Adrangi","V. Lortz","F. Bari","P. Eronen"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4285":{"rfcNumber":"RFC4285","href":"https://www.rfc-editor.org/rfc/rfc4285","title":"Authentication Protocol for Mobile IPv6","authors":["A. Patel","K. Leung","M. Khalil","H. Akhtar","K. Chowdhury"],"rawDate":"2006-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4285","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4286":{"rfcNumber":"RFC4286","href":"https://www.rfc-editor.org/rfc/rfc4286","title":"Multicast Router Discovery","authors":["B. Haberman","J. Martin"],"rawDate":"2005-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4286","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4287":{"rfcNumber":"RFC4287","href":"https://www.rfc-editor.org/rfc/rfc4287","title":"The Atom Syndication Format","authors":["M. Nottingham, Ed.","R. Sayre, Ed."],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC5988"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4288":{"rfcNumber":"RFC4288","href":"https://www.rfc-editor.org/rfc/rfc4288","title":"Media Type Specifications and Registration Procedures","authors":["N. Freed","J. Klensin"],"rawDate":"2005-12","status":"Best Current Practice","obsoletedBy":["RFC6838"],"obsoletes":["RFC2048"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4288","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4289":{"rfcNumber":"RFC4289","href":"https://www.rfc-editor.org/rfc/rfc4289","title":"Multipurpose Internet Mail Extensions (MIME) Part Four: Registration Procedures","authors":["N. Freed","J. Klensin"],"rawDate":"2005-12","status":"Best Current Practice","obsoletes":["RFC2048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc429":{"aliasOf":"rfc0429"},"rfc4290":{"rfcNumber":"RFC4290","href":"https://www.rfc-editor.org/rfc/rfc4290","title":"Suggested Practices for Registration of Internationalized Domain Names (IDN)","authors":["J. Klensin"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4290","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4291":{"rfcNumber":"RFC4291","href":"https://www.rfc-editor.org/rfc/rfc4291","title":"IP Version 6 Addressing Architecture","authors":["R. Hinden","S. Deering"],"rawDate":"2006-02","status":"Draft Standard","updatedBy":["RFC5952","RFC6052","RFC7136","RFC7346","RFC7371","RFC8064"],"obsoletes":["RFC3513"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4291","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4292":{"rfcNumber":"RFC4292","href":"https://www.rfc-editor.org/rfc/rfc4292","title":"IP Forwarding Table MIB","authors":["B. Haberman"],"rawDate":"2006-04","status":"Proposed Standard","obsoletes":["RFC2096"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4293":{"rfcNumber":"RFC4293","href":"https://www.rfc-editor.org/rfc/rfc4293","title":"Management Information Base for the Internet Protocol (IP)","authors":["S. Routhier, Ed."],"rawDate":"2006-04","status":"Proposed Standard","obsoletes":["RFC2011","RFC2465","RFC2466"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4293","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4294":{"rfcNumber":"RFC4294","href":"https://www.rfc-editor.org/rfc/rfc4294","title":"IPv6 Node Requirements","authors":["J. Loughney, Ed."],"rawDate":"2006-04","status":"Informational","updatedBy":["RFC5095"],"obsoletedBy":["RFC6434"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4294","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4295":{"rfcNumber":"RFC4295","href":"https://www.rfc-editor.org/rfc/rfc4295","title":"Mobile IPv6 Management Information Base","authors":["G. Keeni","K. Koide","K. Nagami","S. Gundavelli"],"rawDate":"2006-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4295","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4296":{"rfcNumber":"RFC4296","href":"https://www.rfc-editor.org/rfc/rfc4296","title":"The Architecture of Direct Data Placement (DDP) and Remote Direct Memory Access (RDMA) on Internet Protocols","authors":["S. Bailey","T. Talpey"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4296","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4297":{"rfcNumber":"RFC4297","href":"https://www.rfc-editor.org/rfc/rfc4297","title":"Remote Direct Memory Access (RDMA) over IP Problem Statement","authors":["A. Romanow","J. Mogul","T. Talpey","S. Bailey"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4298":{"rfcNumber":"RFC4298","href":"https://www.rfc-editor.org/rfc/rfc4298","title":"RTP Payload Format for BroadVoice Speech Codecs","authors":["J.-H. Chen","W. Lee","J. Thyssen"],"rawDate":"2005-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc43":{"aliasOf":"rfc0043"},"rfc430":{"aliasOf":"rfc0430"},"rfc4301":{"rfcNumber":"RFC4301","href":"https://www.rfc-editor.org/rfc/rfc4301","title":"Security Architecture for the Internet Protocol","authors":["S. Kent","K. Seo"],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC6040","RFC7619"],"updates":["RFC3168"],"obsoletes":["RFC2401"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4301","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4302":{"rfcNumber":"RFC4302","href":"https://www.rfc-editor.org/rfc/rfc4302","title":"IP Authentication Header","authors":["S. Kent"],"rawDate":"2005-12","status":"Proposed Standard","obsoletes":["RFC2402"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4302","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4303":{"rfcNumber":"RFC4303","href":"https://www.rfc-editor.org/rfc/rfc4303","title":"IP Encapsulating Security Payload (ESP)","authors":["S. Kent"],"rawDate":"2005-12","status":"Proposed Standard","obsoletes":["RFC2406"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4303","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4304":{"rfcNumber":"RFC4304","href":"https://www.rfc-editor.org/rfc/rfc4304","title":"Extended Sequence Number (ESN) Addendum to IPsec Domain of Interpretation (DOI) for Internet Security Association and Key Management Protocol (ISAKMP)","authors":["S. Kent"],"rawDate":"2005-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4305":{"rfcNumber":"RFC4305","href":"https://www.rfc-editor.org/rfc/rfc4305","title":"Cryptographic Algorithm Implementation Requirements for Encapsulating Security Payload (ESP) and Authentication Header (AH)","authors":["D. Eastlake 3rd"],"rawDate":"2005-12","status":"Proposed Standard","obsoletedBy":["RFC4835"],"obsoletes":["RFC2402","RFC2406"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4305","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4306":{"rfcNumber":"RFC4306","href":"https://www.rfc-editor.org/rfc/rfc4306","title":"Internet Key Exchange (IKEv2) Protocol","authors":["C. Kaufman, Ed."],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC5282"],"obsoletedBy":["RFC5996"],"obsoletes":["RFC2407","RFC2408","RFC2409"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4306","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4307":{"rfcNumber":"RFC4307","href":"https://www.rfc-editor.org/rfc/rfc4307","title":"Cryptographic Algorithms for Use in the Internet Key Exchange Version 2 (IKEv2)","authors":["J. Schiller"],"rawDate":"2005-12","status":"Proposed Standard","obsoletedBy":["RFC8247"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4307","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4308":{"rfcNumber":"RFC4308","href":"https://www.rfc-editor.org/rfc/rfc4308","title":"Cryptographic Suites for IPsec","authors":["P. Hoffman"],"rawDate":"2005-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4308","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4309":{"rfcNumber":"RFC4309","href":"https://www.rfc-editor.org/rfc/rfc4309","title":"Using Advanced Encryption Standard (AES) CCM Mode with IPsec Encapsulating Security Payload (ESP)","authors":["R. Housley"],"rawDate":"2005-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4309","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc431":{"aliasOf":"rfc0431"},"rfc4310":{"rfcNumber":"RFC4310","href":"https://www.rfc-editor.org/rfc/rfc4310","title":"Domain Name System (DNS) Security Extensions Mapping for the Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2005-12","status":"Proposed Standard","obsoletedBy":["RFC5910"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4311":{"rfcNumber":"RFC4311","href":"https://www.rfc-editor.org/rfc/rfc4311","title":"IPv6 Host-to-Router Load Sharing","authors":["R. Hinden","D. Thaler"],"rawDate":"2005-11","status":"Proposed Standard","updates":["RFC2461"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4312":{"rfcNumber":"RFC4312","href":"https://www.rfc-editor.org/rfc/rfc4312","title":"The Camellia Cipher Algorithm and Its Use With IPsec","authors":["A. Kato","S. Moriai","M. Kanda"],"rawDate":"2005-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4312","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4313":{"rfcNumber":"RFC4313","href":"https://www.rfc-editor.org/rfc/rfc4313","title":"Requirements for Distributed Control of Automatic Speech Recognition (ASR), Speaker Identification/Speaker Verification (SI/SV), and Text-to-Speech (TTS) Resources","authors":["D. Oran"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4314":{"rfcNumber":"RFC4314","href":"https://www.rfc-editor.org/rfc/rfc4314","title":"IMAP4 Access Control List (ACL) Extension","authors":["A. Melnikov"],"rawDate":"2005-12","status":"Proposed Standard","obsoletes":["RFC2086"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4314","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4315":{"rfcNumber":"RFC4315","href":"https://www.rfc-editor.org/rfc/rfc4315","title":"Internet Message Access Protocol (IMAP) - UIDPLUS extension","authors":["M. Crispin"],"rawDate":"2005-12","status":"Proposed Standard","obsoletes":["RFC2359"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4316":{"rfcNumber":"RFC4316","href":"https://www.rfc-editor.org/rfc/rfc4316","title":"Datatypes for Web Distributed Authoring and Versioning (WebDAV) Properties","authors":["J. Reschke"],"rawDate":"2005-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4317":{"rfcNumber":"RFC4317","href":"https://www.rfc-editor.org/rfc/rfc4317","title":"Session Description Protocol (SDP) Offer/Answer Examples","authors":["A. Johnston","R. Sparks"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4318":{"rfcNumber":"RFC4318","href":"https://www.rfc-editor.org/rfc/rfc4318","title":"Definitions of Managed Objects for Bridges with Rapid Spanning Tree Protocol","authors":["D. Levi","D. Harrington"],"rawDate":"2005-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4319":{"rfcNumber":"RFC4319","href":"https://www.rfc-editor.org/rfc/rfc4319","title":"Definitions of Managed Objects for High Bit-Rate DSL - 2nd generation (HDSL2) and Single-Pair High-Speed Digital Subscriber Line (SHDSL) Lines","authors":["C. Sikes","B. Ray","R. Abbi"],"rawDate":"2005-12","status":"Proposed Standard","obsoletes":["RFC3276"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4319","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc432":{"aliasOf":"rfc0432"},"rfc4320":{"rfcNumber":"RFC4320","href":"https://www.rfc-editor.org/rfc/rfc4320","title":"Actions Addressing Identified Issues with the Session Initiation Protocol's (SIP) Non-INVITE Transaction","authors":["R. Sparks"],"rawDate":"2006-01","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4321":{"rfcNumber":"RFC4321","href":"https://www.rfc-editor.org/rfc/rfc4321","title":"Problems Identified Associated with the Session Initiation Protocol's (SIP) Non-INVITE Transaction","authors":["R. Sparks"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4322":{"rfcNumber":"RFC4322","href":"https://www.rfc-editor.org/rfc/rfc4322","title":"Opportunistic Encryption using the Internet Key Exchange (IKE)","authors":["M. Richardson","D.H. Redelmeier"],"rawDate":"2005-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4322","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4323":{"rfcNumber":"RFC4323","href":"https://www.rfc-editor.org/rfc/rfc4323","title":"Data Over Cable System Interface Specification Quality of Service Management Information Base (DOCSIS-QoS MIB)","authors":["M. Patrick","W. Murwin"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4324":{"rfcNumber":"RFC4324","href":"https://www.rfc-editor.org/rfc/rfc4324","title":"Calendar Access Protocol (CAP)","authors":["D. Royer","G. Babics","S. Mansour"],"rawDate":"2005-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4325":{"rfcNumber":"RFC4325","href":"https://www.rfc-editor.org/rfc/rfc4325","title":"Internet X.509 Public Key Infrastructure Authority Information Access Certificate Revocation List (CRL) Extension","authors":["S. Santesson","R. Housley"],"rawDate":"2005-12","status":"Proposed Standard","obsoletedBy":["RFC5280"],"updates":["RFC3280"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4326":{"rfcNumber":"RFC4326","href":"https://www.rfc-editor.org/rfc/rfc4326","title":"Unidirectional Lightweight Encapsulation (ULE) for Transmission of IP Datagrams over an MPEG-2 Transport Stream (TS)","authors":["G. Fairhurst","B. Collini-Nocker"],"rawDate":"2005-12","status":"Proposed Standard","updatedBy":["RFC7280"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4326","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4327":{"rfcNumber":"RFC4327","href":"https://www.rfc-editor.org/rfc/rfc4327","title":"Link Management Protocol (LMP) Management Information Base (MIB)","authors":["M. Dubuc","T. Nadeau","J. Lang","E. McGinnis"],"rawDate":"2006-01","status":"Proposed Standard","obsoletedBy":["RFC4631"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4327","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4328":{"rfcNumber":"RFC4328","href":"https://www.rfc-editor.org/rfc/rfc4328","title":"Generalized Multi-Protocol Label Switching (GMPLS) Signaling Extensions for G.709 Optical Transport Networks Control","authors":["D. Papadimitriou, Ed."],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC7139"],"updates":["RFC3471"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4329":{"rfcNumber":"RFC4329","href":"https://www.rfc-editor.org/rfc/rfc4329","title":"Scripting Media Types","authors":["B. Hoehrmann"],"rawDate":"2006-04","status":"Informational","obsoletedBy":["RFC9239"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc433":{"aliasOf":"rfc0433"},"rfc4330":{"rfcNumber":"RFC4330","href":"https://www.rfc-editor.org/rfc/rfc4330","title":"Simple Network Time Protocol (SNTP) Version 4 for IPv4, IPv6 and OSI","authors":["D. Mills"],"rawDate":"2006-01","status":"Informational","obsoletedBy":["RFC5905"],"obsoletes":["RFC2030","RFC1769"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4330","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4331":{"rfcNumber":"RFC4331","href":"https://www.rfc-editor.org/rfc/rfc4331","title":"Quota and Size Properties for Distributed Authoring and Versioning (DAV) Collections","authors":["B. Korver","L. Dusseault"],"rawDate":"2006-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4332":{"rfcNumber":"RFC4332","href":"https://www.rfc-editor.org/rfc/rfc4332","title":"Cisco's Mobile IPv4 Host Configuration Extensions","authors":["K. Leung","A. Patel","G. Tsirtsis","E. Klovning"],"rawDate":"2005-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4333":{"rfcNumber":"RFC4333","href":"https://www.rfc-editor.org/rfc/rfc4333","title":"The IETF Administrative Oversight Committee (IAOC) Member Selection Guidelines and Process","authors":["G. Huston, Ed.","B. Wijnen, Ed."],"rawDate":"2005-12","status":"Best Current Practice","obsoletedBy":["RFC8711"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4334":{"rfcNumber":"RFC4334","href":"https://www.rfc-editor.org/rfc/rfc4334","title":"Certificate Extensions and Attributes Supporting Authentication in Point-to-Point Protocol (PPP) and Wireless Local Area Networks (WLAN)","authors":["R. Housley","T. Moore"],"rawDate":"2006-02","status":"Proposed Standard","obsoletes":["RFC3770"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4334","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4335":{"rfcNumber":"RFC4335","href":"https://www.rfc-editor.org/rfc/rfc4335","title":"The Secure Shell (SSH) Session Channel Break Extension","authors":["J. Galbraith","P. Remaker"],"rawDate":"2006-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4335","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4336":{"rfcNumber":"RFC4336","href":"https://www.rfc-editor.org/rfc/rfc4336","title":"Problem Statement for the Datagram Congestion Control Protocol (DCCP)","authors":["S. Floyd","M. Handley","E. Kohler"],"rawDate":"2006-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4337":{"rfcNumber":"RFC4337","href":"https://www.rfc-editor.org/rfc/rfc4337","title":"MIME Type Registration for MPEG-4","authors":["Y. Lim","D. Singer"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC6381"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4337","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4338":{"rfcNumber":"RFC4338","href":"https://www.rfc-editor.org/rfc/rfc4338","title":"Transmission of IPv6, IPv4, and Address Resolution Protocol (ARP) Packets over Fibre Channel","authors":["C. DeSanti","C. Carlson","R. Nixon"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC5494","RFC8064"],"obsoletes":["RFC3831","RFC2625"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4339":{"rfcNumber":"RFC4339","href":"https://www.rfc-editor.org/rfc/rfc4339","title":"IPv6 Host Configuration of DNS Server Information Approaches","authors":["J. Jeong, Ed."],"rawDate":"2006-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4339","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc434":{"aliasOf":"rfc0434"},"rfc4340":{"rfcNumber":"RFC4340","href":"https://www.rfc-editor.org/rfc/rfc4340","title":"Datagram Congestion Control Protocol (DCCP)","authors":["E. Kohler","M. Handley","S. Floyd"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC5595","RFC5596","RFC6335","RFC6773"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4340","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4341":{"rfcNumber":"RFC4341","href":"https://www.rfc-editor.org/rfc/rfc4341","title":"Profile for Datagram Congestion Control Protocol (DCCP) Congestion Control ID 2: TCP-like Congestion Control","authors":["S. Floyd","E. Kohler"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC8311"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4342":{"rfcNumber":"RFC4342","href":"https://www.rfc-editor.org/rfc/rfc4342","title":"Profile for Datagram Congestion Control Protocol (DCCP) Congestion Control ID 3: TCP-Friendly Rate Control (TFRC)","authors":["S. Floyd","E. Kohler","J. Padhye"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC5348","RFC6323","RFC8311"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4342","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4343":{"rfcNumber":"RFC4343","href":"https://www.rfc-editor.org/rfc/rfc4343","title":"Domain Name System (DNS) Case Insensitivity Clarification","authors":["D. Eastlake 3rd"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC5890"],"updates":["RFC1034","RFC1035","RFC2181"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4343","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4344":{"rfcNumber":"RFC4344","href":"https://www.rfc-editor.org/rfc/rfc4344","title":"The Secure Shell (SSH) Transport Layer Encryption Modes","authors":["M. Bellare","T. Kohno","C. Namprempre"],"rawDate":"2006-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4345":{"rfcNumber":"RFC4345","href":"https://www.rfc-editor.org/rfc/rfc4345","title":"Improved Arcfour Modes for the Secure Shell (SSH) Transport Layer Protocol","authors":["B. Harris"],"rawDate":"2006-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4345","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4346":{"rfcNumber":"RFC4346","href":"https://www.rfc-editor.org/rfc/rfc4346","title":"The Transport Layer Security (TLS) Protocol Version 1.1","authors":["T. Dierks","E. Rescorla"],"rawDate":"2006-04","status":"Historic","updatedBy":["RFC4366","RFC4680","RFC4681","RFC5746","RFC6176","RFC7465","RFC7507","RFC7919"],"obsoletedBy":["RFC5246"],"obsoletes":["RFC2246"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4346","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4347":{"rfcNumber":"RFC4347","href":"https://www.rfc-editor.org/rfc/rfc4347","title":"Datagram Transport Layer Security","authors":["E. Rescorla","N. Modadugu"],"rawDate":"2006-04","status":"Historic","updatedBy":["RFC5746","RFC7507"],"obsoletedBy":["RFC6347"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4347","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4348":{"rfcNumber":"RFC4348","href":"https://www.rfc-editor.org/rfc/rfc4348","title":"Real-Time Transport Protocol (RTP) Payload Format for the Variable-Rate Multimode Wideband (VMR-WB) Audio Codec","authors":["S. Ahmadi"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC4424"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4349":{"rfcNumber":"RFC4349","href":"https://www.rfc-editor.org/rfc/rfc4349","title":"High-Level Data Link Control (HDLC) Frames over Layer 2 Tunneling Protocol, Version 3 (L2TPv3)","authors":["C. Pignataro","M. Townsley"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC5641"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc435":{"aliasOf":"rfc0435"},"rfc4350":{"rfcNumber":"RFC4350","href":"https://www.rfc-editor.org/rfc/rfc4350","title":"A Uniform Resource Name (URN) Formal Namespace for the New Zealand Government","authors":["F. Hendrikx","C. Wallis"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4351":{"rfcNumber":"RFC4351","href":"https://www.rfc-editor.org/rfc/rfc4351","title":"Real-Time Transport Protocol (RTP) Payload for Text Conversation Interleaved in an Audio Stream","authors":["G. Hellstrom","P. Jones"],"rawDate":"2006-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4352":{"rfcNumber":"RFC4352","href":"https://www.rfc-editor.org/rfc/rfc4352","title":"RTP Payload Format for the Extended Adaptive Multi-Rate Wideband (AMR-WB+) Audio Codec","authors":["J. Sjoberg","M. Westerlund","A. Lakaniemi","S. Wenger"],"rawDate":"2006-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4352","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4353":{"rfcNumber":"RFC4353","href":"https://www.rfc-editor.org/rfc/rfc4353","title":"A Framework for Conferencing with the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4354":{"rfcNumber":"RFC4354","href":"https://www.rfc-editor.org/rfc/rfc4354","title":"A Session Initiation Protocol (SIP) Event Package and Data Format for Various Settings in Support for the Push-to-Talk over Cellular (PoC) Service","authors":["M. Garcia-Martin"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4355":{"rfcNumber":"RFC4355","href":"https://www.rfc-editor.org/rfc/rfc4355","title":"IANA Registration for Enumservices email, fax, mms, ems, and sms","authors":["R. Brandner","L. Conroy","R. Stastny"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4356":{"rfcNumber":"RFC4356","href":"https://www.rfc-editor.org/rfc/rfc4356","title":"Mapping Between the Multimedia Messaging Service (MMS) and Internet Mail","authors":["R. Gellens"],"rawDate":"2006-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4357":{"rfcNumber":"RFC4357","href":"https://www.rfc-editor.org/rfc/rfc4357","title":"Additional Cryptographic Algorithms for Use with GOST 28147-89, GOST R 34.10-94, GOST R 34.10-2001, and GOST R 34.11-94 Algorithms","authors":["V. Popov","I. Kurepkin","S. Leontiev"],"rawDate":"2006-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4357","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4358":{"rfcNumber":"RFC4358","href":"https://www.rfc-editor.org/rfc/rfc4358","title":"A Uniform Resource Name (URN) Namespace for the Open Mobile Alliance (OMA)","authors":["D. Smith"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4359":{"rfcNumber":"RFC4359","href":"https://www.rfc-editor.org/rfc/rfc4359","title":"The Use of RSA/SHA-1 Signatures within Encapsulating Security Payload (ESP) and Authentication Header (AH)","authors":["B. Weis"],"rawDate":"2006-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc436":{"aliasOf":"rfc0436"},"rfc4360":{"rfcNumber":"RFC4360","href":"https://www.rfc-editor.org/rfc/rfc4360","title":"BGP Extended Communities Attribute","authors":["S. Sangli","D. Tappan","Y. Rekhter"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC7153","RFC7606"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4360","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4361":{"rfcNumber":"RFC4361","href":"https://www.rfc-editor.org/rfc/rfc4361","title":"Node-specific Client Identifiers for Dynamic Host Configuration Protocol Version Four (DHCPv4)","authors":["T. Lemon","B. Sommerfeld"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC5494"],"updates":["RFC2131","RFC2132","RFC3315"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4361","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4362":{"rfcNumber":"RFC4362","href":"https://www.rfc-editor.org/rfc/rfc4362","title":"RObust Header Compression (ROHC): A Link-Layer Assisted Profile for IP/UDP/RTP","authors":["L-E. Jonsson","G. Pelletier","K. Sandlund"],"rawDate":"2006-01","status":"Proposed Standard","updatedBy":["RFC4815"],"obsoletes":["RFC3242"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4363":{"rfcNumber":"RFC4363","href":"https://www.rfc-editor.org/rfc/rfc4363","title":"Definitions of Managed Objects for Bridges with Traffic Classes, Multicast Filtering, and Virtual LAN Extensions","authors":["D. Levi","D. Harrington"],"rawDate":"2006-01","status":"Proposed Standard","obsoletes":["RFC2674"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4363","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4364":{"rfcNumber":"RFC4364","href":"https://www.rfc-editor.org/rfc/rfc4364","title":"BGP/MPLS IP Virtual Private Networks (VPNs)","authors":["E. Rosen","Y. Rekhter"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC4577","RFC4684","RFC5462"],"obsoletes":["RFC2547"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4364","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4365":{"rfcNumber":"RFC4365","href":"https://www.rfc-editor.org/rfc/rfc4365","title":"Applicability Statement for BGP/MPLS IP Virtual Private Networks (VPNs)","authors":["E. Rosen"],"rawDate":"2006-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4365","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4366":{"rfcNumber":"RFC4366","href":"https://www.rfc-editor.org/rfc/rfc4366","title":"Transport Layer Security (TLS) Extensions","authors":["S. Blake-Wilson","M. Nystrom","D. Hopwood","J. Mikkelsen","T. Wright"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC5746"],"obsoletedBy":["RFC5246","RFC6066"],"updates":["RFC4346"],"obsoletes":["RFC3546"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4366","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4367":{"rfcNumber":"RFC4367","href":"https://www.rfc-editor.org/rfc/rfc4367","title":"What's in a Name: False Assumptions about DNS Names","authors":["J. Rosenberg, Ed.","IAB"],"rawDate":"2006-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4367","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4368":{"rfcNumber":"RFC4368","href":"https://www.rfc-editor.org/rfc/rfc4368","title":"Multiprotocol Label Switching (MPLS) Label-Controlled Asynchronous Transfer Mode (ATM) and Frame-Relay Management Interface Definition","authors":["T. Nadeau","S. Hegde"],"rawDate":"2006-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4368","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4369":{"rfcNumber":"RFC4369","href":"https://www.rfc-editor.org/rfc/rfc4369","title":"Definitions of Managed Objects for Internet Fibre Channel Protocol (iFCP)","authors":["K. Gibbons","C. Monia","J. Tseng","F. Travostino"],"rawDate":"2006-01","status":"Proposed Standard","obsoletedBy":["RFC6173"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc437":{"aliasOf":"rfc0437"},"rfc4370":{"rfcNumber":"RFC4370","href":"https://www.rfc-editor.org/rfc/rfc4370","title":"Lightweight Directory Access Protocol (LDAP) Proxied Authorization Control","authors":["R. Weltman"],"rawDate":"2006-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4371":{"rfcNumber":"RFC4371","href":"https://www.rfc-editor.org/rfc/rfc4371","title":"BCP 101 Update for IPR Trust","authors":["B. Carpenter, Ed.","L. Lynch, Ed."],"rawDate":"2006-01","status":"Best Current Practice","obsoletedBy":["RFC8714"],"updates":["RFC4071"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4372":{"rfcNumber":"RFC4372","href":"https://www.rfc-editor.org/rfc/rfc4372","title":"Chargeable User Identity","authors":["F. Adrangi","A. Lior","J. Korhonen","J. Loughney"],"rawDate":"2006-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4373":{"rfcNumber":"RFC4373","href":"https://www.rfc-editor.org/rfc/rfc4373","title":"Lightweight Directory Access Protocol (LDAP) Bulk Update/Replication Protocol (LBURP)","authors":["R. Harrison","J. Sermersheim","Y. Dong"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4374":{"rfcNumber":"RFC4374","href":"https://www.rfc-editor.org/rfc/rfc4374","title":"The application/xv+xml Media Type","authors":["G. McCobb"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4375":{"rfcNumber":"RFC4375","href":"https://www.rfc-editor.org/rfc/rfc4375","title":"Emergency Telecommunications Services (ETS) Requirements for a Single Administrative Domain","authors":["K. Carlberg"],"rawDate":"2006-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4376":{"rfcNumber":"RFC4376","href":"https://www.rfc-editor.org/rfc/rfc4376","title":"Requirements for Floor Control Protocols","authors":["P. Koskelainen","J. Ott","H. Schulzrinne","X. Wu"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4377":{"rfcNumber":"RFC4377","href":"https://www.rfc-editor.org/rfc/rfc4377","title":"Operations and Management (OAM) Requirements for Multi-Protocol Label Switched (MPLS) Networks","authors":["T. Nadeau","M. Morrow","G. Swallow","D. Allan","S. Matsushima"],"rawDate":"2006-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4377","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4378":{"rfcNumber":"RFC4378","href":"https://www.rfc-editor.org/rfc/rfc4378","title":"A Framework for Multi-Protocol Label Switching (MPLS) Operations and Management (OAM)","authors":["D. Allan, Ed.","T. Nadeau, Ed."],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4379":{"rfcNumber":"RFC4379","href":"https://www.rfc-editor.org/rfc/rfc4379","title":"Detecting Multi-Protocol Label Switched (MPLS) Data Plane Failures","authors":["K. Kompella","G. Swallow"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC5462","RFC6424","RFC6425","RFC6426","RFC6829","RFC7506","RFC7537","RFC7743"],"obsoletedBy":["RFC8029"],"updates":["RFC1122"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4379","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc438":{"aliasOf":"rfc0438"},"rfc4380":{"rfcNumber":"RFC4380","href":"https://www.rfc-editor.org/rfc/rfc4380","title":"Teredo: Tunneling IPv6 over UDP through Network Address Translations (NATs)","authors":["C. Huitema"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC5991","RFC6081"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4380","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4381":{"rfcNumber":"RFC4381","href":"https://www.rfc-editor.org/rfc/rfc4381","title":"Analysis of the Security of BGP/MPLS IP Virtual Private Networks (VPNs)","authors":["M. Behringer"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4382":{"rfcNumber":"RFC4382","href":"https://www.rfc-editor.org/rfc/rfc4382","title":"MPLS/BGP Layer 3 Virtual Private Network (VPN) Management Information Base","authors":["T. Nadeau, Ed.","H. van der Linde, Ed."],"rawDate":"2006-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4382","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4383":{"rfcNumber":"RFC4383","href":"https://www.rfc-editor.org/rfc/rfc4383","title":"The Use of Timed Efficient Stream Loss-Tolerant Authentication (TESLA) in the Secure Real-time Transport Protocol (SRTP)","authors":["M. Baugher","E. Carrara"],"rawDate":"2006-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4384":{"rfcNumber":"RFC4384","href":"https://www.rfc-editor.org/rfc/rfc4384","title":"BGP Communities for Data Collection","authors":["D. Meyer"],"rawDate":"2006-02","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4384","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4385":{"rfcNumber":"RFC4385","href":"https://www.rfc-editor.org/rfc/rfc4385","title":"Pseudowire Emulation Edge-to-Edge (PWE3) Control Word for Use over an MPLS PSN","authors":["S. Bryant","G. Swallow","L. Martini","D. McPherson"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC5586"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4385","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4386":{"rfcNumber":"RFC4386","href":"https://www.rfc-editor.org/rfc/rfc4386","title":"Internet X.509 Public Key Infrastructure Repository Locator Service","authors":["S. Boeyen","P. Hallam-Baker"],"rawDate":"2006-02","status":"Experimental","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4387":{"rfcNumber":"RFC4387","href":"https://www.rfc-editor.org/rfc/rfc4387","title":"Internet X.509 Public Key Infrastructure Operational Protocols: Certificate Store Access via HTTP","authors":["P. Gutmann, Ed."],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4388":{"rfcNumber":"RFC4388","href":"https://www.rfc-editor.org/rfc/rfc4388","title":"Dynamic Host Configuration Protocol (DHCP) Leasequery","authors":["R. Woundy","K. Kinnear"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC6148"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4388","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4389":{"rfcNumber":"RFC4389","href":"https://www.rfc-editor.org/rfc/rfc4389","title":"Neighbor Discovery Proxies (ND Proxy)","authors":["D. Thaler","M. Talwar","C. Patel"],"rawDate":"2006-04","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4389","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc439":{"aliasOf":"rfc0439"},"rfc4390":{"rfcNumber":"RFC4390","href":"https://www.rfc-editor.org/rfc/rfc4390","title":"Dynamic Host Configuration Protocol (DHCP) over InfiniBand","authors":["V. Kashyap"],"rawDate":"2006-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4391":{"rfcNumber":"RFC4391","href":"https://www.rfc-editor.org/rfc/rfc4391","title":"Transmission of IP over InfiniBand (IPoIB)","authors":["J. Chu","V. Kashyap"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC8064"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4392":{"rfcNumber":"RFC4392","href":"https://www.rfc-editor.org/rfc/rfc4392","title":"IP over InfiniBand (IPoIB) Architecture","authors":["V. Kashyap"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4393":{"rfcNumber":"RFC4393","href":"https://www.rfc-editor.org/rfc/rfc4393","title":"MIME Type Registrations for 3GPP2 Multimedia Files","authors":["H. Garudadri"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC6381"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4394":{"rfcNumber":"RFC4394","href":"https://www.rfc-editor.org/rfc/rfc4394","title":"A Transport Network View of the Link Management Protocol (LMP)","authors":["D. Fedyk","O. Aboul-Magd","D. Brungard","J. Lang","D. Papadimitriou"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4395":{"rfcNumber":"RFC4395","href":"https://www.rfc-editor.org/rfc/rfc4395","title":"Guidelines and Registration Procedures for New URI Schemes","authors":["T. Hansen","T. Hardie","L. Masinter"],"rawDate":"2006-02","status":"Best Current Practice","obsoletedBy":["RFC7595"],"obsoletes":["RFC2717","RFC2718"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4395","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4396":{"rfcNumber":"RFC4396","href":"https://www.rfc-editor.org/rfc/rfc4396","title":"RTP Payload Format for 3rd Generation Partnership Project (3GPP) Timed Text","authors":["J. Rey","Y. Matsui"],"rawDate":"2006-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4396","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4397":{"rfcNumber":"RFC4397","href":"https://www.rfc-editor.org/rfc/rfc4397","title":"A Lexicography for the Interpretation of Generalized Multiprotocol Label Switching (GMPLS) Terminology within the Context of the ITU-T's Automatically Switched Optical Network (ASON) Architecture","authors":["I. Bryskin","A. Farrel"],"rawDate":"2006-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4397","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4398":{"rfcNumber":"RFC4398","href":"https://www.rfc-editor.org/rfc/rfc4398","title":"Storing Certificates in the Domain Name System (DNS)","authors":["S. Josefsson"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC6944"],"obsoletes":["RFC2538"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4398","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc44":{"aliasOf":"rfc0044"},"rfc440":{"aliasOf":"rfc0440"},"rfc4401":{"rfcNumber":"RFC4401","href":"https://www.rfc-editor.org/rfc/rfc4401","title":"A Pseudo-Random Function (PRF) API Extension for the Generic Security Service Application Program Interface (GSS-API)","authors":["N. Williams"],"rawDate":"2006-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4402":{"rfcNumber":"RFC4402","href":"https://www.rfc-editor.org/rfc/rfc4402","title":"A Pseudo-Random Function (PRF) for the Kerberos V Generic Security Service Application Program Interface (GSS-API) Mechanism","authors":["N. Williams"],"rawDate":"2006-02","status":"Historic","obsoletedBy":["RFC7802"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4402","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4403":{"rfcNumber":"RFC4403","href":"https://www.rfc-editor.org/rfc/rfc4403","title":"Lightweight Directory Access Protocol (LDAP) Schema for Universal Description, Discovery, and Integration version 3 (UDDIv3)","authors":["B. Bergeson","K. Boogert","V. Nanjundaswamy"],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4404":{"rfcNumber":"RFC4404","href":"https://www.rfc-editor.org/rfc/rfc4404","title":"Definitions of Managed Objects for Fibre Channel Over TCP/IP (FCIP)","authors":["R. Natarajan","A. Rijhsinghani"],"rawDate":"2006-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4404","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4405":{"rfcNumber":"RFC4405","href":"https://www.rfc-editor.org/rfc/rfc4405","title":"SMTP Service Extension for Indicating the Responsible Submitter of an E-Mail Message","authors":["E. Allman","H. Katz"],"rawDate":"2006-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4406":{"rfcNumber":"RFC4406","href":"https://www.rfc-editor.org/rfc/rfc4406","title":"Sender ID: Authenticating E-Mail","authors":["J. Lyon","M. Wong"],"rawDate":"2006-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4407":{"rfcNumber":"RFC4407","href":"https://www.rfc-editor.org/rfc/rfc4407","title":"Purported Responsible Address in E-Mail Messages","authors":["J. Lyon"],"rawDate":"2006-04","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4407","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4408":{"rfcNumber":"RFC4408","href":"https://www.rfc-editor.org/rfc/rfc4408","title":"Sender Policy Framework (SPF) for Authorizing Use of Domains in E-Mail, Version 1","authors":["M. Wong","W. Schlitt"],"rawDate":"2006-04","status":"Experimental","updatedBy":["RFC6652"],"obsoletedBy":["RFC7208"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4408","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4409":{"rfcNumber":"RFC4409","href":"https://www.rfc-editor.org/rfc/rfc4409","title":"Message Submission for Mail","authors":["R. Gellens","J. Klensin"],"rawDate":"2006-04","status":"Draft Standard","obsoletedBy":["RFC6409"],"obsoletes":["RFC2476"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4409","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc441":{"aliasOf":"rfc0441"},"rfc4410":{"rfcNumber":"RFC4410","href":"https://www.rfc-editor.org/rfc/rfc4410","title":"Selectively Reliable Multicast Protocol (SRMP)","authors":["M. Pullen","F. Zhao","D. Cohen"],"rawDate":"2006-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4410","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4411":{"rfcNumber":"RFC4411","href":"https://www.rfc-editor.org/rfc/rfc4411","title":"Extending the Session Initiation Protocol (SIP) Reason Header for Preemption Events","authors":["J. Polk"],"rawDate":"2006-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4412":{"rfcNumber":"RFC4412","href":"https://www.rfc-editor.org/rfc/rfc4412","title":"Communications Resource Priority for the Session Initiation Protocol (SIP)","authors":["H. Schulzrinne","J. Polk"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC7134"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4413":{"rfcNumber":"RFC4413","href":"https://www.rfc-editor.org/rfc/rfc4413","title":"TCP/IP Field Behavior","authors":["M. West","S. McCann"],"rawDate":"2006-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4413","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4414":{"rfcNumber":"RFC4414","href":"https://www.rfc-editor.org/rfc/rfc4414","title":"An ENUM Registry Type for the Internet Registry Information Service (IRIS)","authors":["A. Newton"],"rawDate":"2006-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4415":{"rfcNumber":"RFC4415","href":"https://www.rfc-editor.org/rfc/rfc4415","title":"IANA Registration for Enumservice Voice","authors":["R. Brandner","L. Conroy","R. Stastny"],"rawDate":"2006-02","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4416":{"rfcNumber":"RFC4416","href":"https://www.rfc-editor.org/rfc/rfc4416","title":"Goals for Internet Messaging to Support Diverse Service Environments","authors":["J. Wong, Ed."],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4417":{"rfcNumber":"RFC4417","href":"https://www.rfc-editor.org/rfc/rfc4417","title":"Report of the 2004 IAB Messaging Workshop","authors":["P. Resnick, Ed.","P. Saint-Andre, Ed."],"rawDate":"2006-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4418":{"rfcNumber":"RFC4418","href":"https://www.rfc-editor.org/rfc/rfc4418","title":"UMAC: Message Authentication Code using Universal Hashing","authors":["T. Krovetz, Ed."],"rawDate":"2006-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4418","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4419":{"rfcNumber":"RFC4419","href":"https://www.rfc-editor.org/rfc/rfc4419","title":"Diffie-Hellman Group Exchange for the Secure Shell (SSH) Transport Layer Protocol","authors":["M. Friedl","N. Provos","W. Simpson"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC8270"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4419","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc442":{"aliasOf":"rfc0442"},"rfc4420":{"rfcNumber":"RFC4420","href":"https://www.rfc-editor.org/rfc/rfc4420","title":"Encoding of Attributes for Multiprotocol Label Switching (MPLS) Label Switched Path (LSP) Establishment Using Resource ReserVation Protocol-Traffic Engineering (RSVP-TE)","authors":["A. Farrel, Ed.","D. Papadimitriou","J.-P. Vasseur","A. Ayyangar"],"rawDate":"2006-02","status":"Proposed Standard","obsoletedBy":["RFC5420"],"updates":["RFC3209","RFC3473"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4421":{"rfcNumber":"RFC4421","href":"https://www.rfc-editor.org/rfc/rfc4421","title":"RTP Payload Format for Uncompressed Video: Additional Colour Sampling Modes","authors":["C. Perkins"],"rawDate":"2006-02","status":"Proposed Standard","updates":["RFC4175"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4422":{"rfcNumber":"RFC4422","href":"https://www.rfc-editor.org/rfc/rfc4422","title":"Simple Authentication and Security Layer (SASL)","authors":["A. Melnikov, Ed.","K. Zeilenga, Ed."],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2222"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4423":{"rfcNumber":"RFC4423","href":"https://www.rfc-editor.org/rfc/rfc4423","title":"Host Identity Protocol (HIP) Architecture","authors":["R. Moskowitz","P. Nikander"],"rawDate":"2006-05","status":"Informational","obsoletedBy":["RFC9063"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4423","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4424":{"rfcNumber":"RFC4424","href":"https://www.rfc-editor.org/rfc/rfc4424","title":"Real-Time Transport Protocol (RTP) Payload Format for the Variable-Rate Multimode Wideband (VMR-WB) Extension Audio Codec","authors":["S. Ahmadi"],"rawDate":"2006-02","status":"Proposed Standard","updates":["RFC4348"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4425":{"rfcNumber":"RFC4425","href":"https://www.rfc-editor.org/rfc/rfc4425","title":"RTP Payload Format for Video Codec 1 (VC-1)","authors":["A. Klemets"],"rawDate":"2006-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4425","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4426":{"rfcNumber":"RFC4426","href":"https://www.rfc-editor.org/rfc/rfc4426","title":"Generalized Multi-Protocol Label Switching (GMPLS) Recovery Functional Specification","authors":["J. Lang, Ed.","B. Rajagopalan, Ed.","D. Papadimitriou, Ed."],"rawDate":"2006-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4427":{"rfcNumber":"RFC4427","href":"https://www.rfc-editor.org/rfc/rfc4427","title":"Recovery (Protection and Restoration) Terminology for Generalized Multi-Protocol Label Switching (GMPLS)","authors":["E. Mannie, Ed.","D. Papadimitriou, Ed."],"rawDate":"2006-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4427","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4428":{"rfcNumber":"RFC4428","href":"https://www.rfc-editor.org/rfc/rfc4428","title":"Analysis of Generalized Multi-Protocol Label Switching (GMPLS)-based Recovery Mechanisms (including Protection and Restoration)","authors":["D. Papadimitriou, Ed.","E. Mannie, Ed."],"rawDate":"2006-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4428","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4429":{"rfcNumber":"RFC4429","href":"https://www.rfc-editor.org/rfc/rfc4429","title":"Optimistic Duplicate Address Detection (DAD) for IPv6","authors":["N. Moore"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC7527"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4429","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc443":{"aliasOf":"rfc0443"},"rfc4430":{"rfcNumber":"RFC4430","href":"https://www.rfc-editor.org/rfc/rfc4430","title":"Kerberized Internet Negotiation of Keys (KINK)","authors":["S. Sakane","K. Kamada","M. Thomas","J. Vilhuber"],"rawDate":"2006-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4430","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4431":{"rfcNumber":"RFC4431","href":"https://www.rfc-editor.org/rfc/rfc4431","title":"The DNSSEC Lookaside Validation (DLV) DNS Resource Record","authors":["M. Andrews","S. Weiler"],"rawDate":"2006-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4432":{"rfcNumber":"RFC4432","href":"https://www.rfc-editor.org/rfc/rfc4432","title":"RSA Key Exchange for the Secure Shell (SSH) Transport Layer Protocol","authors":["B. Harris"],"rawDate":"2006-03","status":"Proposed Standard","updatedBy":["RFC9142"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4433":{"rfcNumber":"RFC4433","href":"https://www.rfc-editor.org/rfc/rfc4433","title":"Mobile IPv4 Dynamic Home Agent (HA) Assignment","authors":["M. Kulkarni","A. Patel","K. Leung"],"rawDate":"2006-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4433","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4434":{"rfcNumber":"RFC4434","href":"https://www.rfc-editor.org/rfc/rfc4434","title":"The AES-XCBC-PRF-128 Algorithm for the Internet Key Exchange Protocol (IKE)","authors":["P. Hoffman"],"rawDate":"2006-02","status":"Proposed Standard","obsoletes":["RFC3664"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4435":{"rfcNumber":"RFC4435","href":"https://www.rfc-editor.org/rfc/rfc4435","title":"A Framework for the Usage of Internet Media Guides (IMGs)","authors":["Y. Nomura","R. Walsh","J-P. Luoma","H. Asaeda","H. Schulzrinne"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4436":{"rfcNumber":"RFC4436","href":"https://www.rfc-editor.org/rfc/rfc4436","title":"Detecting Network Attachment in IPv4 (DNAv4)","authors":["B. Aboba","J. Carlson","S. Cheshire"],"rawDate":"2006-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4436","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4437":{"rfcNumber":"RFC4437","href":"https://www.rfc-editor.org/rfc/rfc4437","title":"Web Distributed Authoring and Versioning (WebDAV) Redirect Reference Resources","authors":["J. Whitehead","G. Clemm","J. Reschke, Ed."],"rawDate":"2006-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4438":{"rfcNumber":"RFC4438","href":"https://www.rfc-editor.org/rfc/rfc4438","title":"Fibre-Channel Name Server MIB","authors":["C. DeSanti","V. Gaonkar","H.K. Vivek","K. McCloghrie","S. Gai"],"rawDate":"2006-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4438","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4439":{"rfcNumber":"RFC4439","href":"https://www.rfc-editor.org/rfc/rfc4439","title":"Fibre Channel Fabric Address Manager MIB","authors":["C. DeSanti","V. Gaonkar","K. McCloghrie","S. Gai"],"rawDate":"2006-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4439","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4440":{"rfcNumber":"RFC4440","href":"https://www.rfc-editor.org/rfc/rfc4440","title":"IAB Thoughts on the Role of the Internet Research Task Force (IRTF)","authors":["S. Floyd, Ed.","V. Paxson, Ed.","A. Falk, Ed.","IAB"],"rawDate":"2006-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4441":{"rfcNumber":"RFC4441","href":"https://www.rfc-editor.org/rfc/rfc4441","title":"The IEEE 802/IETF Relationship","authors":["B. Aboba, Ed."],"rawDate":"2006-03","status":"Informational","obsoletedBy":["RFC7241"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4442":{"rfcNumber":"RFC4442","href":"https://www.rfc-editor.org/rfc/rfc4442","title":"Bootstrapping Timed Efficient Stream Loss-Tolerant Authentication (TESLA)","authors":["S. Fries","H. Tschofenig"],"rawDate":"2006-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4443":{"rfcNumber":"RFC4443","href":"https://www.rfc-editor.org/rfc/rfc4443","title":"Internet Control Message Protocol (ICMPv6) for the Internet Protocol Version 6 (IPv6) Specification","authors":["A. Conta","S. Deering","M. Gupta, Ed."],"rawDate":"2006-03","status":"Internet Standard","updatedBy":["RFC4884"],"updates":["RFC2780"],"obsoletes":["RFC2463"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4443","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4444":{"rfcNumber":"RFC4444","href":"https://www.rfc-editor.org/rfc/rfc4444","title":"Management Information Base for Intermediate System to Intermediate System (IS-IS)","authors":["J. Parker, Ed."],"rawDate":"2006-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4444","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4445":{"rfcNumber":"RFC4445","href":"https://www.rfc-editor.org/rfc/rfc4445","title":"A Proposed Media Delivery Index (MDI)","authors":["J. Welch","J. Clark"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4446":{"rfcNumber":"RFC4446","href":"https://www.rfc-editor.org/rfc/rfc4446","title":"IANA Allocations for Pseudowire Edge to Edge Emulation (PWE3)","authors":["L. Martini"],"rawDate":"2006-04","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4446","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4447":{"rfcNumber":"RFC4447","href":"https://www.rfc-editor.org/rfc/rfc4447","title":"Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)","authors":["L. Martini, Ed.","E. Rosen","N. El-Aawar","T. Smith","G. Heron"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC6723","RFC6870","RFC7358"],"obsoletedBy":["RFC8077"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4447","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4448":{"rfcNumber":"RFC4448","href":"https://www.rfc-editor.org/rfc/rfc4448","title":"Encapsulation Methods for Transport of Ethernet over MPLS Networks","authors":["L. Martini, Ed.","E. Rosen","N. El-Aawar","G. Heron"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC5462","RFC8469"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4448","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4449":{"rfcNumber":"RFC4449","href":"https://www.rfc-editor.org/rfc/rfc4449","title":"Securing Mobile IPv6 Route Optimization Using a Static Shared Key","authors":["C. Perkins"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4449","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc445":{"aliasOf":"rfc0445"},"rfc4450":{"rfcNumber":"RFC4450","href":"https://www.rfc-editor.org/rfc/rfc4450","title":"Getting Rid of the Cruft: Report from an Experiment in Identifying and Reclassifying Obsolete Standards Documents","authors":["E. Lear","H. Alvestrand"],"rawDate":"2006-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4450","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4451":{"rfcNumber":"RFC4451","href":"https://www.rfc-editor.org/rfc/rfc4451","title":"BGP MULTI_EXIT_DISC (MED) Considerations","authors":["D. McPherson","V. Gill"],"rawDate":"2006-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4452":{"rfcNumber":"RFC4452","href":"https://www.rfc-editor.org/rfc/rfc4452","title":"The \"info\" URI Scheme for Information Assets with Identifiers in Public Namespaces","authors":["H. Van de Sompel","T. Hammond","E. Neylon","S. Weibel"],"rawDate":"2006-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4452","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4453":{"rfcNumber":"RFC4453","href":"https://www.rfc-editor.org/rfc/rfc4453","title":"Requirements for Consent-Based Communications in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","G. Camarillo, Ed.","D. Willis"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4454":{"rfcNumber":"RFC4454","href":"https://www.rfc-editor.org/rfc/rfc4454","title":"Asynchronous Transfer Mode (ATM) over Layer 2 Tunneling Protocol Version 3 (L2TPv3)","authors":["S. Singh","M. Townsley","C. Pignataro"],"rawDate":"2006-05","status":"Proposed Standard","updatedBy":["RFC5641"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4455":{"rfcNumber":"RFC4455","href":"https://www.rfc-editor.org/rfc/rfc4455","title":"Definition of Managed Objects for Small Computer System Interface (SCSI) Entities","authors":["M. Hallak-Stamler","M. Bakke","Y. Lederman","M. Krueger","K. McCloghrie"],"rawDate":"2006-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4455","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4456":{"rfcNumber":"RFC4456","href":"https://www.rfc-editor.org/rfc/rfc4456","title":"BGP Route Reflection: An Alternative to Full Mesh Internal BGP (IBGP)","authors":["T. Bates","E. Chen","R. Chandra"],"rawDate":"2006-04","status":"Draft Standard","updatedBy":["RFC7606"],"obsoletes":["RFC2796","RFC1966"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4456","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4457":{"rfcNumber":"RFC4457","href":"https://www.rfc-editor.org/rfc/rfc4457","title":"The Session Initiation Protocol (SIP) P-User-Database Private-Header (P-Header)","authors":["G. Camarillo","G. Blanco"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4458":{"rfcNumber":"RFC4458","href":"https://www.rfc-editor.org/rfc/rfc4458","title":"Session Initiation Protocol (SIP) URIs for Applications such as Voicemail and Interactive Voice Response (IVR)","authors":["C. Jennings","F. Audet","J. Elwell"],"rawDate":"2006-04","status":"Informational","updatedBy":["RFC8119"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4458","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4459":{"rfcNumber":"RFC4459","href":"https://www.rfc-editor.org/rfc/rfc4459","title":"MTU and Fragmentation Issues with In-the-Network Tunneling","authors":["P. Savola"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc446":{"aliasOf":"rfc0446"},"rfc4460":{"rfcNumber":"RFC4460","href":"https://www.rfc-editor.org/rfc/rfc4460","title":"Stream Control Transmission Protocol (SCTP) Specification Errata and Issues","authors":["R. Stewart","I. Arias-Rodriguez","K. Poon","A. Caro","M. Tuexen"],"rawDate":"2006-04","status":"Informational","obsoletedBy":["RFC9260"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4461":{"rfcNumber":"RFC4461","href":"https://www.rfc-editor.org/rfc/rfc4461","title":"Signaling Requirements for Point-to-Multipoint Traffic-Engineered MPLS Label Switched Paths (LSPs)","authors":["S. Yasukawa, Ed."],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4462":{"rfcNumber":"RFC4462","href":"https://www.rfc-editor.org/rfc/rfc4462","title":"Generic Security Service Application Program Interface (GSS-API) Authentication and Key Exchange for the Secure Shell (SSH) Protocol","authors":["J. Hutzelman","J. Salowey","J. Galbraith","V. Welch"],"rawDate":"2006-05","status":"Proposed Standard","updatedBy":["RFC8732","RFC9142"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4462","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4463":{"rfcNumber":"RFC4463","href":"https://www.rfc-editor.org/rfc/rfc4463","title":"A Media Resource Control Protocol (MRCP) Developed by Cisco, Nuance, and Speechworks","authors":["S. Shanmugham","P. Monaco","B. Eberman"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4464":{"rfcNumber":"RFC4464","href":"https://www.rfc-editor.org/rfc/rfc4464","title":"Signaling Compression (SigComp) Users' Guide","authors":["A. Surtees","M. West"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4465":{"rfcNumber":"RFC4465","href":"https://www.rfc-editor.org/rfc/rfc4465","title":"Signaling Compression (SigComp) Torture Tests","authors":["A. Surtees","M. West"],"rawDate":"2006-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4466":{"rfcNumber":"RFC4466","href":"https://www.rfc-editor.org/rfc/rfc4466","title":"Collected Extensions to IMAP4 ABNF","authors":["A. Melnikov","C. Daboo"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC6237","RFC7377"],"updates":["RFC2088","RFC2342","RFC3501","RFC3502","RFC3516"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4467":{"rfcNumber":"RFC4467","href":"https://www.rfc-editor.org/rfc/rfc4467","title":"Internet Message Access Protocol (IMAP) - URLAUTH Extension","authors":["M. Crispin"],"rawDate":"2006-05","status":"Proposed Standard","updatedBy":["RFC5092","RFC5550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4468":{"rfcNumber":"RFC4468","href":"https://www.rfc-editor.org/rfc/rfc4468","title":"Message Submission BURL Extension","authors":["C. Newman"],"rawDate":"2006-05","status":"Proposed Standard","updatedBy":["RFC5248"],"updates":["RFC3463"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4468","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4469":{"rfcNumber":"RFC4469","href":"https://www.rfc-editor.org/rfc/rfc4469","title":"Internet Message Access Protocol (IMAP) CATENATE Extension","authors":["P. Resnick"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC5550"],"updates":["RFC3501","RFC3502"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4469","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc447":{"aliasOf":"rfc0447"},"rfc4470":{"rfcNumber":"RFC4470","href":"https://www.rfc-editor.org/rfc/rfc4470","title":"Minimally Covering NSEC Records and DNSSEC On-line Signing","authors":["S. Weiler","J. Ihren"],"rawDate":"2006-04","status":"Proposed Standard","updates":["RFC4035","RFC4034"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4470","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4471":{"rfcNumber":"RFC4471","href":"https://www.rfc-editor.org/rfc/rfc4471","title":"Derivation of DNS Name Predecessor and Successor","authors":["G. Sisson","B. Laurie"],"rawDate":"2006-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4472":{"rfcNumber":"RFC4472","href":"https://www.rfc-editor.org/rfc/rfc4472","title":"Operational Considerations and Issues with IPv6 DNS","authors":["A. Durand","J. Ihren","P. Savola"],"rawDate":"2006-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4473":{"rfcNumber":"RFC4473","href":"https://www.rfc-editor.org/rfc/rfc4473","title":"Requirements for Internet Media Guides (IMGs)","authors":["Y. Nomura","R. Walsh","J-P. Luoma","J. Ott","H. Schulzrinne"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4474":{"rfcNumber":"RFC4474","href":"https://www.rfc-editor.org/rfc/rfc4474","title":"Enhancements for Authenticated Identity Management in the Session Initiation Protocol (SIP)","authors":["J. Peterson","C. Jennings"],"rawDate":"2006-08","status":"Proposed Standard","obsoletedBy":["RFC8224"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4474","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4475":{"rfcNumber":"RFC4475","href":"https://www.rfc-editor.org/rfc/rfc4475","title":"Session Initiation Protocol (SIP) Torture Test Messages","authors":["R. Sparks, Ed.","A. Hawrylyshen","A. Johnston","J. Rosenberg","H. Schulzrinne"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4476":{"rfcNumber":"RFC4476","href":"https://www.rfc-editor.org/rfc/rfc4476","title":"Attribute Certificate (AC) Policies Extension","authors":["C. Francis","D. Pinkas"],"rawDate":"2006-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4477":{"rfcNumber":"RFC4477","href":"https://www.rfc-editor.org/rfc/rfc4477","title":"Dynamic Host Configuration Protocol (DHCP): IPv4 and IPv6 Dual-Stack Issues","authors":["T. Chown","S. Venaas","C. Strauf"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4478":{"rfcNumber":"RFC4478","href":"https://www.rfc-editor.org/rfc/rfc4478","title":"Repeated Authentication in Internet Key Exchange (IKEv2) Protocol","authors":["Y. Nir"],"rawDate":"2006-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4479":{"rfcNumber":"RFC4479","href":"https://www.rfc-editor.org/rfc/rfc4479","title":"A Data Model for Presence","authors":["J. Rosenberg"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4479","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc448":{"aliasOf":"rfc0448"},"rfc4480":{"rfcNumber":"RFC4480","href":"https://www.rfc-editor.org/rfc/rfc4480","title":"RPID: Rich Presence Extensions to the Presence Information Data Format (PIDF)","authors":["H. Schulzrinne","V. Gurbani","P. Kyzivat","J. Rosenberg"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4480","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4481":{"rfcNumber":"RFC4481","href":"https://www.rfc-editor.org/rfc/rfc4481","title":"Timed Presence Extensions to the Presence Information Data Format (PIDF) to Indicate Status Information for Past and Future Time Intervals","authors":["H. Schulzrinne"],"rawDate":"2006-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4482":{"rfcNumber":"RFC4482","href":"https://www.rfc-editor.org/rfc/rfc4482","title":"CIPID: Contact Information for the Presence Information Data Format","authors":["H. Schulzrinne"],"rawDate":"2006-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4483":{"rfcNumber":"RFC4483","href":"https://www.rfc-editor.org/rfc/rfc4483","title":"A Mechanism for Content Indirection in Session Initiation Protocol (SIP) Messages","authors":["E. Burger, Ed."],"rawDate":"2006-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4483","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4484":{"rfcNumber":"RFC4484","href":"https://www.rfc-editor.org/rfc/rfc4484","title":"Trait-Based Authorization Requirements for the Session Initiation Protocol (SIP)","authors":["J. Peterson","J. Polk","D. Sicker","H. Tschofenig"],"rawDate":"2006-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4485":{"rfcNumber":"RFC4485","href":"https://www.rfc-editor.org/rfc/rfc4485","title":"Guidelines for Authors of Extensions to the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","H. Schulzrinne"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4486":{"rfcNumber":"RFC4486","href":"https://www.rfc-editor.org/rfc/rfc4486","title":"Subcodes for BGP Cease Notification Message","authors":["E. Chen","V. Gillet"],"rawDate":"2006-04","status":"Proposed Standard","updatedBy":["RFC8203","RFC9003"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4487":{"rfcNumber":"RFC4487","href":"https://www.rfc-editor.org/rfc/rfc4487","title":"Mobile IPv6 and Firewalls: Problem Statement","authors":["F. Le","S. Faccin","B. Patil","H. Tschofenig"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4488":{"rfcNumber":"RFC4488","href":"https://www.rfc-editor.org/rfc/rfc4488","title":"Suppression of Session Initiation Protocol (SIP) REFER Method Implicit Subscription","authors":["O. Levin"],"rawDate":"2006-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4489":{"rfcNumber":"RFC4489","href":"https://www.rfc-editor.org/rfc/rfc4489","title":"A Method for Generating Link-Scoped IPv6 Multicast Addresses","authors":["J-S. Park","M-K. Shin","H-J. Kim"],"rawDate":"2006-04","status":"Proposed Standard","updates":["RFC3306"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc449":{"aliasOf":"rfc0449"},"rfc4490":{"rfcNumber":"RFC4490","href":"https://www.rfc-editor.org/rfc/rfc4490","title":"Using the GOST 28147-89, GOST R 34.11-94, GOST R 34.10-94, and GOST R 34.10-2001 Algorithms with Cryptographic Message Syntax (CMS)","authors":["S. Leontiev, Ed.","G. Chudov, Ed."],"rawDate":"2006-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4490","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4491":{"rfcNumber":"RFC4491","href":"https://www.rfc-editor.org/rfc/rfc4491","title":"Using the GOST R 34.10-94, GOST R 34.10-2001, and GOST R 34.11-94 Algorithms with the Internet X.509 Public Key Infrastructure Certificate and CRL Profile","authors":["S. Leontiev, Ed.","D. Shefanovski, Ed."],"rawDate":"2006-05","status":"Proposed Standard","updates":["RFC3279"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4491","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4492":{"rfcNumber":"RFC4492","href":"https://www.rfc-editor.org/rfc/rfc4492","title":"Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS)","authors":["S. Blake-Wilson","N. Bolyard","V. Gupta","C. Hawk","B. Moeller"],"rawDate":"2006-05","status":"Informational","updatedBy":["RFC5246","RFC7027","RFC7919"],"obsoletedBy":["RFC8422"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4492","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4493":{"rfcNumber":"RFC4493","href":"https://www.rfc-editor.org/rfc/rfc4493","title":"The AES-CMAC Algorithm","authors":["JH. Song","R. Poovendran","J. Lee","T. Iwata"],"rawDate":"2006-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4494":{"rfcNumber":"RFC4494","href":"https://www.rfc-editor.org/rfc/rfc4494","title":"The AES-CMAC-96 Algorithm and Its Use with IPsec","authors":["JH. Song","R. Poovendran","J. Lee"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4495":{"rfcNumber":"RFC4495","href":"https://www.rfc-editor.org/rfc/rfc4495","title":"A Resource Reservation Protocol (RSVP) Extension for the Reduction of Bandwidth of a Reservation Flow","authors":["J. Polk","S. Dhesikan"],"rawDate":"2006-05","status":"Proposed Standard","updates":["RFC2205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4496":{"rfcNumber":"RFC4496","href":"https://www.rfc-editor.org/rfc/rfc4496","title":"Open Pluggable Edge Services (OPES) SMTP Use Cases","authors":["M. Stecher","A. Barbir"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4497":{"rfcNumber":"RFC4497","href":"https://www.rfc-editor.org/rfc/rfc4497","title":"Interworking between the Session Initiation Protocol (SIP) and QSIG","authors":["J. Elwell","F. Derks","P. Mourot","O. Rousseau"],"rawDate":"2006-05","status":"Best Current Practice","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4498":{"rfcNumber":"RFC4498","href":"https://www.rfc-editor.org/rfc/rfc4498","title":"The Managed Object Aggregation MIB","authors":["G. Keeni"],"rawDate":"2006-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc45":{"aliasOf":"rfc0045"},"rfc450":{"aliasOf":"rfc0450"},"rfc4501":{"rfcNumber":"RFC4501","href":"https://www.rfc-editor.org/rfc/rfc4501","title":"Domain Name System Uniform Resource Identifiers","authors":["S. Josefsson"],"rawDate":"2006-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4501","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4502":{"rfcNumber":"RFC4502","href":"https://www.rfc-editor.org/rfc/rfc4502","title":"Remote Network Monitoring Management Information Base Version 2","authors":["S. Waldbusser"],"rawDate":"2006-05","status":"Draft Standard","updates":["RFC3273"],"obsoletes":["RFC2021"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4502","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4503":{"rfcNumber":"RFC4503","href":"https://www.rfc-editor.org/rfc/rfc4503","title":"A Description of the Rabbit Stream Cipher Algorithm","authors":["M. Boesgaard","M. Vesterager","E. Zenner"],"rawDate":"2006-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4503","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4504":{"rfcNumber":"RFC4504","href":"https://www.rfc-editor.org/rfc/rfc4504","title":"SIP Telephony Device Requirements and Configuration","authors":["H. Sinnreich, Ed.","S. Lass","C. Stredicke"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4505":{"rfcNumber":"RFC4505","href":"https://www.rfc-editor.org/rfc/rfc4505","title":"Anonymous Simple Authentication and Security Layer (SASL) Mechanism","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2245"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4506":{"rfcNumber":"RFC4506","href":"https://www.rfc-editor.org/rfc/rfc4506","title":"XDR: External Data Representation Standard","authors":["M. Eisler, Ed."],"rawDate":"2006-05","status":"Internet Standard","obsoletes":["RFC1832"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4506","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4507":{"rfcNumber":"RFC4507","href":"https://www.rfc-editor.org/rfc/rfc4507","title":"Transport Layer Security (TLS) Session Resumption without Server-Side State","authors":["J. Salowey","H. Zhou","P. Eronen","H. Tschofenig"],"rawDate":"2006-05","status":"Proposed Standard","obsoletedBy":["RFC5077"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4508":{"rfcNumber":"RFC4508","href":"https://www.rfc-editor.org/rfc/rfc4508","title":"Conveying Feature Tags with the Session Initiation Protocol (SIP) REFER Method","authors":["O. Levin","A. Johnston"],"rawDate":"2006-05","status":"Proposed Standard","updatedBy":["RFC8217"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4509":{"rfcNumber":"RFC4509","href":"https://www.rfc-editor.org/rfc/rfc4509","title":"Use of SHA-256 in DNSSEC Delegation Signer (DS) Resource Records (RRs)","authors":["W. Hardaker"],"rawDate":"2006-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4509","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc451":{"aliasOf":"rfc0451"},"rfc4510":{"rfcNumber":"RFC4510","href":"https://www.rfc-editor.org/rfc/rfc4510","title":"Lightweight Directory Access Protocol (LDAP): Technical Specification Road Map","authors":["K. Zeilenga, Ed."],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2251","RFC2252","RFC2253","RFC2254","RFC2255","RFC2256","RFC2829","RFC2830","RFC3377","RFC3771"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4510","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4511":{"rfcNumber":"RFC4511","href":"https://www.rfc-editor.org/rfc/rfc4511","title":"Lightweight Directory Access Protocol (LDAP): The Protocol","authors":["J. Sermersheim, Ed."],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2251","RFC2830","RFC3771"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4511","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4512":{"rfcNumber":"RFC4512","href":"https://www.rfc-editor.org/rfc/rfc4512","title":"Lightweight Directory Access Protocol (LDAP): Directory Information Models","authors":["K. Zeilenga, Ed."],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2251","RFC2252","RFC2256","RFC3674"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4512","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4513":{"rfcNumber":"RFC4513","href":"https://www.rfc-editor.org/rfc/rfc4513","title":"Lightweight Directory Access Protocol (LDAP): Authentication Methods and Security Mechanisms","authors":["R. Harrison, Ed."],"rawDate":"2006-06","status":"Proposed Standard","updatedBy":["RFC8996"],"obsoletes":["RFC2251","RFC2829","RFC2830"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4513","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4514":{"rfcNumber":"RFC4514","href":"https://www.rfc-editor.org/rfc/rfc4514","title":"Lightweight Directory Access Protocol (LDAP): String Representation of Distinguished Names","authors":["K. Zeilenga, Ed."],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2253"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4514","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4515":{"rfcNumber":"RFC4515","href":"https://www.rfc-editor.org/rfc/rfc4515","title":"Lightweight Directory Access Protocol (LDAP): String Representation of Search Filters","authors":["M. Smith, Ed.","T. Howes"],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2254"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4515","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4516":{"rfcNumber":"RFC4516","href":"https://www.rfc-editor.org/rfc/rfc4516","title":"Lightweight Directory Access Protocol (LDAP): Uniform Resource Locator","authors":["M. Smith, Ed.","T. Howes"],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2255"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4516","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4517":{"rfcNumber":"RFC4517","href":"https://www.rfc-editor.org/rfc/rfc4517","title":"Lightweight Directory Access Protocol (LDAP): Syntaxes and Matching Rules","authors":["S. Legg, Ed."],"rawDate":"2006-06","status":"Proposed Standard","updates":["RFC3698"],"obsoletes":["RFC2252","RFC2256"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4517","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4518":{"rfcNumber":"RFC4518","href":"https://www.rfc-editor.org/rfc/rfc4518","title":"Lightweight Directory Access Protocol (LDAP): Internationalized String Preparation","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4518","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4519":{"rfcNumber":"RFC4519","href":"https://www.rfc-editor.org/rfc/rfc4519","title":"Lightweight Directory Access Protocol (LDAP): Schema for User Applications","authors":["A. Sciberras, Ed."],"rawDate":"2006-06","status":"Proposed Standard","updates":["RFC2247","RFC2798","RFC2377"],"obsoletes":["RFC2256"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc452":{"aliasOf":"rfc0452"},"rfc4520":{"rfcNumber":"RFC4520","href":"https://www.rfc-editor.org/rfc/rfc4520","title":"Internet Assigned Numbers Authority (IANA) Considerations for the Lightweight Directory Access Protocol (LDAP)","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Best Current Practice","obsoletes":["RFC3383"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4520","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4521":{"rfcNumber":"RFC4521","href":"https://www.rfc-editor.org/rfc/rfc4521","title":"Considerations for Lightweight Directory Access Protocol (LDAP) Extensions","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4521","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4522":{"rfcNumber":"RFC4522","href":"https://www.rfc-editor.org/rfc/rfc4522","title":"Lightweight Directory Access Protocol (LDAP): The Binary Encoding Option","authors":["S. Legg"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4523":{"rfcNumber":"RFC4523","href":"https://www.rfc-editor.org/rfc/rfc4523","title":"Lightweight Directory Access Protocol (LDAP) Schema Definitions for X.509 Certificates","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2252","RFC2256","RFC2587"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4523","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4524":{"rfcNumber":"RFC4524","href":"https://www.rfc-editor.org/rfc/rfc4524","title":"COSINE LDAP/X.500 Schema","authors":["K. Zeilenga, Ed."],"rawDate":"2006-06","status":"Proposed Standard","updates":["RFC2247","RFC2798"],"obsoletes":["RFC1274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4524","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4525":{"rfcNumber":"RFC4525","href":"https://www.rfc-editor.org/rfc/rfc4525","title":"Lightweight Directory Access Protocol (LDAP) Modify-Increment Extension","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4526":{"rfcNumber":"RFC4526","href":"https://www.rfc-editor.org/rfc/rfc4526","title":"Lightweight Directory Access Protocol (LDAP) Absolute True and False Filters","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4526","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4527":{"rfcNumber":"RFC4527","href":"https://www.rfc-editor.org/rfc/rfc4527","title":"Lightweight Directory Access Protocol (LDAP) Read Entry Controls","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4527","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4528":{"rfcNumber":"RFC4528","href":"https://www.rfc-editor.org/rfc/rfc4528","title":"Lightweight Directory Access Protocol (LDAP) Assertion Control","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4528","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4529":{"rfcNumber":"RFC4529","href":"https://www.rfc-editor.org/rfc/rfc4529","title":"Requesting Attributes by Object Class in the Lightweight Directory Access Protocol","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4529","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc453":{"aliasOf":"rfc0453"},"rfc4530":{"rfcNumber":"RFC4530","href":"https://www.rfc-editor.org/rfc/rfc4530","title":"Lightweight Directory Access Protocol (LDAP) entryUUID Operational Attribute","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4531":{"rfcNumber":"RFC4531","href":"https://www.rfc-editor.org/rfc/rfc4531","title":"Lightweight Directory Access Protocol (LDAP) Turn Operation","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Experimental","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4532":{"rfcNumber":"RFC4532","href":"https://www.rfc-editor.org/rfc/rfc4532","title":"Lightweight Directory Access Protocol (LDAP) \"Who am I?\" Operation","authors":["K. Zeilenga"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4532","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4533":{"rfcNumber":"RFC4533","href":"https://www.rfc-editor.org/rfc/rfc4533","title":"The Lightweight Directory Access Protocol (LDAP) Content Synchronization Operation","authors":["K. Zeilenga","J.H. Choi"],"rawDate":"2006-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4534":{"rfcNumber":"RFC4534","href":"https://www.rfc-editor.org/rfc/rfc4534","title":"Group Security Policy Token v1","authors":["A. Colegrove","H. Harney"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4534","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4535":{"rfcNumber":"RFC4535","href":"https://www.rfc-editor.org/rfc/rfc4535","title":"GSAKMP: Group Secure Association Key Management Protocol","authors":["H. Harney","U. Meth","A. Colegrove","G. Gross"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4536":{"rfcNumber":"RFC4536","href":"https://www.rfc-editor.org/rfc/rfc4536","title":"The application/smil and application/smil+xml Media Types","authors":["P. Hoschka"],"rawDate":"2006-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4537":{"rfcNumber":"RFC4537","href":"https://www.rfc-editor.org/rfc/rfc4537","title":"Kerberos Cryptosystem Negotiation Extension","authors":["L. Zhu","P. Leach","K. Jaganathan"],"rawDate":"2006-06","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4538":{"rfcNumber":"RFC4538","href":"https://www.rfc-editor.org/rfc/rfc4538","title":"Request Authorization through Dialog Identification in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4539":{"rfcNumber":"RFC4539","href":"https://www.rfc-editor.org/rfc/rfc4539","title":"Media Type Registration for the Society of Motion Picture and Television Engineers (SMPTE) Material Exchange Format (MXF)","authors":["T. Edwards"],"rawDate":"2006-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc454":{"aliasOf":"rfc0454"},"rfc4540":{"rfcNumber":"RFC4540","href":"https://www.rfc-editor.org/rfc/rfc4540","title":"NEC's Simple Middlebox Configuration (SIMCO) Protocol Version 3.0","authors":["M. Stiemerling","J. Quittek","C. Cadar"],"rawDate":"2006-05","status":"Experimental","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4541":{"rfcNumber":"RFC4541","href":"https://www.rfc-editor.org/rfc/rfc4541","title":"Considerations for Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) Snooping Switches","authors":["M. Christensen","K. Kimball","F. Solensky"],"rawDate":"2006-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4541","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4542":{"rfcNumber":"RFC4542","href":"https://www.rfc-editor.org/rfc/rfc4542","title":"Implementing an Emergency Telecommunications Service (ETS) for Real-Time Services in the Internet Protocol Suite","authors":["F. Baker","J. Polk"],"rawDate":"2006-05","status":"Informational","updatedBy":["RFC5865"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4543":{"rfcNumber":"RFC4543","href":"https://www.rfc-editor.org/rfc/rfc4543","title":"The Use of Galois Message Authentication Code (GMAC) in IPsec ESP and AH","authors":["D. McGrew","J. Viega"],"rawDate":"2006-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4543","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4544":{"rfcNumber":"RFC4544","href":"https://www.rfc-editor.org/rfc/rfc4544","title":"Definitions of Managed Objects for Internet Small Computer System Interface (iSCSI)","authors":["M. Bakke","M. Krueger","T. McSweeney","J. Muchow"],"rawDate":"2006-05","status":"Proposed Standard","obsoletedBy":["RFC7147"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4544","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4545":{"rfcNumber":"RFC4545","href":"https://www.rfc-editor.org/rfc/rfc4545","title":"Definitions of Managed Objects for IP Storage User Identity Authorization","authors":["M. Bakke","J. Muchow"],"rawDate":"2006-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4545","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4546":{"rfcNumber":"RFC4546","href":"https://www.rfc-editor.org/rfc/rfc4546","title":"Radio Frequency (RF) Interface Management Information Base for Data over Cable Service Interface Specifications (DOCSIS) 2.0 Compliant RF Interfaces","authors":["D. Raftus","E. Cardona"],"rawDate":"2006-06","status":"Proposed Standard","updatedBy":["RFC9141"],"obsoletes":["RFC2670"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4547":{"rfcNumber":"RFC4547","href":"https://www.rfc-editor.org/rfc/rfc4547","title":"Event Notification Management Information Base for Data over Cable Service Interface Specifications (DOCSIS)-Compliant Cable Modems and Cable Modem Termination Systems","authors":["A. Ahmad","G. Nakanishi"],"rawDate":"2006-06","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4548":{"rfcNumber":"RFC4548","href":"https://www.rfc-editor.org/rfc/rfc4548","title":"Internet Code Point (ICP) Assignments for NSAP Addresses","authors":["E. Gray","J. Rutemiller","G. Swallow"],"rawDate":"2006-05","status":"Proposed Standard","updates":["RFC1888","RFC4048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4549":{"rfcNumber":"RFC4549","href":"https://www.rfc-editor.org/rfc/rfc4549","title":"Synchronization Operations for Disconnected IMAP4 Clients","authors":["A. Melnikov, Ed."],"rawDate":"2006-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc455":{"aliasOf":"rfc0455"},"rfc4550":{"rfcNumber":"RFC4550","href":"https://www.rfc-editor.org/rfc/rfc4550","title":"Internet Email to Support Diverse Service Environments (Lemonade) Profile","authors":["S. Maes","A. Melnikov"],"rawDate":"2006-06","status":"Proposed Standard","obsoletedBy":["RFC5550"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4550","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4551":{"rfcNumber":"RFC4551","href":"https://www.rfc-editor.org/rfc/rfc4551","title":"IMAP Extension for Conditional STORE Operation or Quick Flag Changes Resynchronization","authors":["A. Melnikov","S. Hole"],"rawDate":"2006-06","status":"Proposed Standard","obsoletedBy":["RFC7162"],"updates":["RFC3501"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4551","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4552":{"rfcNumber":"RFC4552","href":"https://www.rfc-editor.org/rfc/rfc4552","title":"Authentication/Confidentiality for OSPFv3","authors":["M. Gupta","N. Melam"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4552","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4553":{"rfcNumber":"RFC4553","href":"https://www.rfc-editor.org/rfc/rfc4553","title":"Structure-Agnostic Time Division Multiplexing (TDM) over Packet (SAToP)","authors":["A. Vainshtein, Ed.","YJ. Stein, Ed."],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4553","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4554":{"rfcNumber":"RFC4554","href":"https://www.rfc-editor.org/rfc/rfc4554","title":"Use of VLANs for IPv4-IPv6 Coexistence in Enterprise Networks","authors":["T. Chown"],"rawDate":"2006-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4555":{"rfcNumber":"RFC4555","href":"https://www.rfc-editor.org/rfc/rfc4555","title":"IKEv2 Mobility and Multihoming Protocol (MOBIKE)","authors":["P. Eronen"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4556":{"rfcNumber":"RFC4556","href":"https://www.rfc-editor.org/rfc/rfc4556","title":"Public Key Cryptography for Initial Authentication in Kerberos (PKINIT)","authors":["L. Zhu","B. Tung"],"rawDate":"2006-06","status":"Proposed Standard","updatedBy":["RFC6112","RFC8062","RFC8636"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4556","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4557":{"rfcNumber":"RFC4557","href":"https://www.rfc-editor.org/rfc/rfc4557","title":"Online Certificate Status Protocol (OCSP) Support for Public Key Cryptography for Initial Authentication in Kerberos (PKINIT)","authors":["L. Zhu","K. Jaganathan","N. Williams"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4557","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4558":{"rfcNumber":"RFC4558","href":"https://www.rfc-editor.org/rfc/rfc4558","title":"Node-ID Based Resource Reservation Protocol (RSVP) Hello: A Clarification Statement","authors":["Z. Ali","R. Rahman","D. Prairie","D. Papadimitriou"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4559":{"rfcNumber":"RFC4559","href":"https://www.rfc-editor.org/rfc/rfc4559","title":"SPNEGO-based Kerberos and NTLM HTTP Authentication in Microsoft Windows","authors":["K. Jaganathan","L. Zhu","J. Brezak"],"rawDate":"2006-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4559","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc456":{"aliasOf":"rfc0456"},"rfc4560":{"rfcNumber":"RFC4560","href":"https://www.rfc-editor.org/rfc/rfc4560","title":"Definitions of Managed Objects for Remote Ping, Traceroute, and Lookup Operations","authors":["J. Quittek, Ed.","K. White, Ed."],"rawDate":"2006-06","status":"Proposed Standard","obsoletes":["RFC2925"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4561":{"rfcNumber":"RFC4561","href":"https://www.rfc-editor.org/rfc/rfc4561","title":"Definition of a Record Route Object (RRO) Node-Id Sub-Object","authors":["J.-P. Vasseur, Ed.","Z. Ali","S. Sivabalan"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4561","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4562":{"rfcNumber":"RFC4562","href":"https://www.rfc-editor.org/rfc/rfc4562","title":"MAC-Forced Forwarding: A Method for Subscriber Separation on an Ethernet Access Network","authors":["T. Melsen","S. Blake"],"rawDate":"2006-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4563":{"rfcNumber":"RFC4563","href":"https://www.rfc-editor.org/rfc/rfc4563","title":"The Key ID Information Type for the General Extension Payload in Multimedia Internet KEYing (MIKEY)","authors":["E. Carrara","V. Lehtovirta","K. Norrman"],"rawDate":"2006-06","status":"Proposed Standard","updatedBy":["RFC6309"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4564":{"rfcNumber":"RFC4564","href":"https://www.rfc-editor.org/rfc/rfc4564","title":"Objectives for Control and Provisioning of Wireless Access Points (CAPWAP)","authors":["S. Govindan, Ed.","H. Cheng","ZH. Yao","WH. Zhou","L. Yang"],"rawDate":"2006-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4565":{"rfcNumber":"RFC4565","href":"https://www.rfc-editor.org/rfc/rfc4565","title":"Evaluation of Candidate Control and Provisioning of Wireless Access Points (CAPWAP) Protocols","authors":["D. Loher","D. Nelson","O. Volinsky","B. Sarikaya"],"rawDate":"2006-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4566":{"rfcNumber":"RFC4566","href":"https://www.rfc-editor.org/rfc/rfc4566","title":"SDP: Session Description Protocol","authors":["M. Handley","V. Jacobson","C. Perkins"],"rawDate":"2006-07","status":"Proposed Standard","obsoletedBy":["RFC8866"],"obsoletes":["RFC2327","RFC3266"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4566","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4567":{"rfcNumber":"RFC4567","href":"https://www.rfc-editor.org/rfc/rfc4567","title":"Key Management Extensions for Session Description Protocol (SDP) and Real Time Streaming Protocol (RTSP)","authors":["J. Arkko","F. Lindholm","M. Naslund","K. Norrman","E. Carrara"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4567","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4568":{"rfcNumber":"RFC4568","href":"https://www.rfc-editor.org/rfc/rfc4568","title":"Session Description Protocol (SDP) Security Descriptions for Media Streams","authors":["F. Andreasen","M. Baugher","D. Wing"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4568","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4569":{"rfcNumber":"RFC4569","href":"https://www.rfc-editor.org/rfc/rfc4569","title":"Internet Assigned Number Authority (IANA) Registration of the Message Media Feature Tag","authors":["G. Camarillo"],"rawDate":"2006-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc457":{"aliasOf":"rfc0457"},"rfc4570":{"rfcNumber":"RFC4570","href":"https://www.rfc-editor.org/rfc/rfc4570","title":"Session Description Protocol (SDP) Source Filters","authors":["B. Quinn","R. Finlayson"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4570","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4571":{"rfcNumber":"RFC4571","href":"https://www.rfc-editor.org/rfc/rfc4571","title":"Framing Real-time Transport Protocol (RTP) and RTP Control Protocol (RTCP) Packets over Connection-Oriented Transport","authors":["J. Lazzaro"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4571","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4572":{"rfcNumber":"RFC4572","href":"https://www.rfc-editor.org/rfc/rfc4572","title":"Connection-Oriented Media Transport over the Transport Layer Security (TLS) Protocol in the Session Description Protocol (SDP)","authors":["J. Lennox"],"rawDate":"2006-07","status":"Proposed Standard","obsoletedBy":["RFC8122"],"updates":["RFC4145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4573":{"rfcNumber":"RFC4573","href":"https://www.rfc-editor.org/rfc/rfc4573","title":"MIME Type Registration for RTP Payload Format for H.224","authors":["R. Even","A. Lochbaum"],"rawDate":"2006-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4574":{"rfcNumber":"RFC4574","href":"https://www.rfc-editor.org/rfc/rfc4574","title":"The Session Description Protocol (SDP) Label Attribute","authors":["O. Levin","G. Camarillo"],"rawDate":"2006-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4575":{"rfcNumber":"RFC4575","href":"https://www.rfc-editor.org/rfc/rfc4575","title":"A Session Initiation Protocol (SIP) Event Package for Conference State","authors":["J. Rosenberg","H. Schulzrinne","O. Levin, Ed."],"rawDate":"2006-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4576":{"rfcNumber":"RFC4576","href":"https://www.rfc-editor.org/rfc/rfc4576","title":"Using a Link State Advertisement (LSA) Options Bit to Prevent Looping in BGP/MPLS IP Virtual Private Networks (VPNs)","authors":["E. Rosen","P. Psenak","P. Pillay-Esnault"],"rawDate":"2006-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4576","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4577":{"rfcNumber":"RFC4577","href":"https://www.rfc-editor.org/rfc/rfc4577","title":"OSPF as the Provider/Customer Edge Protocol for BGP/MPLS IP Virtual Private Networks (VPNs)","authors":["E. Rosen","P. Psenak","P. Pillay-Esnault"],"rawDate":"2006-06","status":"Proposed Standard","updates":["RFC4364"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4577","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4578":{"rfcNumber":"RFC4578","href":"https://www.rfc-editor.org/rfc/rfc4578","title":"Dynamic Host Configuration Protocol (DHCP) Options for the Intel Preboot eXecution Environment (PXE)","authors":["M. Johnston","S. Venaas, Ed."],"rawDate":"2006-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4578","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4579":{"rfcNumber":"RFC4579","href":"https://www.rfc-editor.org/rfc/rfc4579","title":"Session Initiation Protocol (SIP) Call Control - Conferencing for User Agents","authors":["A. Johnston","O. Levin"],"rawDate":"2006-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc458":{"aliasOf":"rfc0458"},"rfc4580":{"rfcNumber":"RFC4580","href":"https://www.rfc-editor.org/rfc/rfc4580","title":"Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Relay Agent Subscriber-ID Option","authors":["B. Volz"],"rawDate":"2006-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4581":{"rfcNumber":"RFC4581","href":"https://www.rfc-editor.org/rfc/rfc4581","title":"Cryptographically Generated Addresses (CGA) Extension Field Format","authors":["M. Bagnulo","J. Arkko"],"rawDate":"2006-10","status":"Proposed Standard","updates":["RFC3972"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4582":{"rfcNumber":"RFC4582","href":"https://www.rfc-editor.org/rfc/rfc4582","title":"The Binary Floor Control Protocol (BFCP)","authors":["G. Camarillo","J. Ott","K. Drage"],"rawDate":"2006-11","status":"Proposed Standard","updatedBy":["RFC8996"],"obsoletedBy":["RFC8855"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4583":{"rfcNumber":"RFC4583","href":"https://www.rfc-editor.org/rfc/rfc4583","title":"Session Description Protocol (SDP) Format for Binary Floor Control Protocol (BFCP) Streams","authors":["G. Camarillo"],"rawDate":"2006-11","status":"Proposed Standard","obsoletedBy":["RFC8856"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4583","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4584":{"rfcNumber":"RFC4584","href":"https://www.rfc-editor.org/rfc/rfc4584","title":"Extension to Sockets API for Mobile IPv6","authors":["S. Chakrabarti","E. Nordmark"],"rawDate":"2006-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4584","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4585":{"rfcNumber":"RFC4585","href":"https://www.rfc-editor.org/rfc/rfc4585","title":"Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF)","authors":["J. Ott","S. Wenger","N. Sato","C. Burmeister","J. Rey"],"rawDate":"2006-07","status":"Proposed Standard","updatedBy":["RFC5506","RFC8108"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4585","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4586":{"rfcNumber":"RFC4586","href":"https://www.rfc-editor.org/rfc/rfc4586","title":"Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback: Results of the Timing Rule Simulations","authors":["C. Burmeister","R. Hakenberg","A. Miyazaki","J. Ott","N. Sato","S. Fukunaga"],"rawDate":"2006-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4586","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4587":{"rfcNumber":"RFC4587","href":"https://www.rfc-editor.org/rfc/rfc4587","title":"RTP Payload Format for H.261 Video Streams","authors":["R. Even"],"rawDate":"2006-08","status":"Proposed Standard","obsoletes":["RFC2032"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4587","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4588":{"rfcNumber":"RFC4588","href":"https://www.rfc-editor.org/rfc/rfc4588","title":"RTP Retransmission Payload Format","authors":["J. Rey","D. Leon","A. Miyazaki","V. Varsa","R. Hakenberg"],"rawDate":"2006-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4588","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4589":{"rfcNumber":"RFC4589","href":"https://www.rfc-editor.org/rfc/rfc4589","title":"Location Types Registry","authors":["H. Schulzrinne","H. Tschofenig"],"rawDate":"2006-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc459":{"aliasOf":"rfc0459"},"rfc4590":{"rfcNumber":"RFC4590","href":"https://www.rfc-editor.org/rfc/rfc4590","title":"RADIUS Extension for Digest Authentication","authors":["B. Sterman","D. Sadolevsky","D. Schwartz","D. Williams","W. Beck"],"rawDate":"2006-07","status":"Proposed Standard","obsoletedBy":["RFC5090"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4590","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4591":{"rfcNumber":"RFC4591","href":"https://www.rfc-editor.org/rfc/rfc4591","title":"Frame Relay over Layer 2 Tunneling Protocol Version 3 (L2TPv3)","authors":["M. Townsley","G. Wilkie","S. Booth","S. Bryant","J. Lau"],"rawDate":"2006-08","status":"Proposed Standard","updatedBy":["RFC5641"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4591","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4592":{"rfcNumber":"RFC4592","href":"https://www.rfc-editor.org/rfc/rfc4592","title":"The Role of Wildcards in the Domain Name System","authors":["E. Lewis"],"rawDate":"2006-07","status":"Proposed Standard","updates":["RFC1034","RFC2672"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4592","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4593":{"rfcNumber":"RFC4593","href":"https://www.rfc-editor.org/rfc/rfc4593","title":"Generic Threats to Routing Protocols","authors":["A. Barbir","S. Murphy","Y. Yang"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4594":{"rfcNumber":"RFC4594","href":"https://www.rfc-editor.org/rfc/rfc4594","title":"Configuration Guidelines for DiffServ Service Classes","authors":["J. Babiarz","K. Chan","F. Baker"],"rawDate":"2006-08","status":"Informational","updatedBy":["RFC5865","RFC8622"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4594","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4595":{"rfcNumber":"RFC4595","href":"https://www.rfc-editor.org/rfc/rfc4595","title":"Use of IKEv2 in the Fibre Channel Security Association Management Protocol","authors":["F. Maino","D. Black"],"rawDate":"2006-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4595","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4596":{"rfcNumber":"RFC4596","href":"https://www.rfc-editor.org/rfc/rfc4596","title":"Guidelines for Usage of the Session Initiation Protocol (SIP) Caller Preferences Extension","authors":["J. Rosenberg","P. Kyzivat"],"rawDate":"2006-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4596","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4597":{"rfcNumber":"RFC4597","href":"https://www.rfc-editor.org/rfc/rfc4597","title":"Conferencing Scenarios","authors":["R. Even","N. Ismail"],"rawDate":"2006-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4598":{"rfcNumber":"RFC4598","href":"https://www.rfc-editor.org/rfc/rfc4598","title":"Real-time Transport Protocol (RTP) Payload Format for Enhanced AC-3 (E-AC-3) Audio","authors":["B. Link"],"rawDate":"2006-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc46":{"aliasOf":"rfc0046"},"rfc460":{"aliasOf":"rfc0460"},"rfc4601":{"rfcNumber":"RFC4601","href":"https://www.rfc-editor.org/rfc/rfc4601","title":"Protocol Independent Multicast - Sparse Mode (PIM-SM): Protocol Specification (Revised)","authors":["B. Fenner","M. Handley","H. Holbrook","I. Kouvelas"],"rawDate":"2006-08","status":"Proposed Standard","updatedBy":["RFC5059","RFC5796","RFC6226"],"obsoletedBy":["RFC7761"],"obsoletes":["RFC2362"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4601","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4602":{"rfcNumber":"RFC4602","href":"https://www.rfc-editor.org/rfc/rfc4602","title":"Protocol Independent Multicast - Sparse Mode (PIM-SM) IETF Proposed Standard Requirements Analysis","authors":["T. Pusateri"],"rawDate":"2006-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4603":{"rfcNumber":"RFC4603","href":"https://www.rfc-editor.org/rfc/rfc4603","title":"Additional Values for the NAS-Port-Type Attribute","authors":["G. Zorn","G. Weber","R. Foltak"],"rawDate":"2006-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4604":{"rfcNumber":"RFC4604","href":"https://www.rfc-editor.org/rfc/rfc4604","title":"Using Internet Group Management Protocol Version 3 (IGMPv3) and Multicast Listener Discovery Protocol Version 2 (MLDv2) for Source-Specific Multicast","authors":["H. Holbrook","B. Cain","B. Haberman"],"rawDate":"2006-08","status":"Proposed Standard","updates":["RFC3376","RFC3810"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4605":{"rfcNumber":"RFC4605","href":"https://www.rfc-editor.org/rfc/rfc4605","title":"Internet Group Management Protocol (IGMP) / Multicast Listener Discovery (MLD)-Based Multicast Forwarding (\"IGMP/MLD Proxying\")","authors":["B. Fenner","H. He","B. Haberman","H. Sandick"],"rawDate":"2006-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4605","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4606":{"rfcNumber":"RFC4606","href":"https://www.rfc-editor.org/rfc/rfc4606","title":"Generalized Multi-Protocol Label Switching (GMPLS) Extensions for Synchronous Optical Network (SONET) and Synchronous Digital Hierarchy (SDH) Control","authors":["E. Mannie","D. Papadimitriou"],"rawDate":"2006-08","status":"Proposed Standard","updatedBy":["RFC6344"],"obsoletes":["RFC3946"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4606","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4607":{"rfcNumber":"RFC4607","href":"https://www.rfc-editor.org/rfc/rfc4607","title":"Source-Specific Multicast for IP","authors":["H. Holbrook","B. Cain"],"rawDate":"2006-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4607","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4608":{"rfcNumber":"RFC4608","href":"https://www.rfc-editor.org/rfc/rfc4608","title":"Source-Specific Protocol Independent Multicast in 232/8","authors":["D. Meyer","R. Rockell","G. Shepherd"],"rawDate":"2006-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4609":{"rfcNumber":"RFC4609","href":"https://www.rfc-editor.org/rfc/rfc4609","title":"Protocol Independent Multicast - Sparse Mode (PIM-SM) Multicast Routing Security Issues and Enhancements","authors":["P. Savola","R. Lehtonen","D. Meyer"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc461":{"aliasOf":"rfc0461"},"rfc4610":{"rfcNumber":"RFC4610","href":"https://www.rfc-editor.org/rfc/rfc4610","title":"Anycast-RP Using Protocol Independent Multicast (PIM)","authors":["D. Farinacci","Y. Cai"],"rawDate":"2006-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4611":{"rfcNumber":"RFC4611","href":"https://www.rfc-editor.org/rfc/rfc4611","title":"Multicast Source Discovery Protocol (MSDP) Deployment Scenarios","authors":["M. McBride","J. Meylor","D. Meyer"],"rawDate":"2006-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4612":{"rfcNumber":"RFC4612","href":"https://www.rfc-editor.org/rfc/rfc4612","title":"Real-Time Facsimile (T.38) - audio/t38 MIME Sub-type Registration","authors":["P. Jones","H. Tamura"],"rawDate":"2006-08","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4612","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4613":{"rfcNumber":"RFC4613","href":"https://www.rfc-editor.org/rfc/rfc4613","title":"Media Type Registrations for Downloadable Sounds for Musical Instrument Digital Interface (MIDI)","authors":["P. Frojdh","U. Lindgren","M. Westerlund"],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4614":{"rfcNumber":"RFC4614","href":"https://www.rfc-editor.org/rfc/rfc4614","title":"A Roadmap for Transmission Control Protocol (TCP) Specification Documents","authors":["M. Duke","R. Braden","W. Eddy","E. Blanton"],"rawDate":"2006-09","status":"Informational","updatedBy":["RFC6247"],"obsoletedBy":["RFC7414"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4615":{"rfcNumber":"RFC4615","href":"https://www.rfc-editor.org/rfc/rfc4615","title":"The Advanced Encryption Standard-Cipher-based Message Authentication Code-Pseudo-Random Function-128 (AES-CMAC-PRF-128) Algorithm for the Internet Key Exchange Protocol (IKE)","authors":["J. Song","R. Poovendran","J. Lee","T. Iwata"],"rawDate":"2006-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4616":{"rfcNumber":"RFC4616","href":"https://www.rfc-editor.org/rfc/rfc4616","title":"The PLAIN Simple Authentication and Security Layer (SASL) Mechanism","authors":["K. Zeilenga, Ed."],"rawDate":"2006-08","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC2595"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4616","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4617":{"rfcNumber":"RFC4617","href":"https://www.rfc-editor.org/rfc/rfc4617","title":"A Uniform Resource Name (URN) Formal Namespace for the Latvian National Government Integration Project","authors":["J. Kornijenko"],"rawDate":"2006-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4618":{"rfcNumber":"RFC4618","href":"https://www.rfc-editor.org/rfc/rfc4618","title":"Encapsulation Methods for Transport of PPP/High-Level Data Link Control (HDLC) over MPLS Networks","authors":["L. Martini","E. Rosen","G. Heron","A. Malis"],"rawDate":"2006-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4619":{"rfcNumber":"RFC4619","href":"https://www.rfc-editor.org/rfc/rfc4619","title":"Encapsulation Methods for Transport of Frame Relay over Multiprotocol Label Switching (MPLS) Networks","authors":["L. Martini, Ed.","C. Kawa, Ed.","A. Malis, Ed."],"rawDate":"2006-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4619","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc462":{"aliasOf":"rfc0462"},"rfc4620":{"rfcNumber":"RFC4620","href":"https://www.rfc-editor.org/rfc/rfc4620","title":"IPv6 Node Information Queries","authors":["M. Crawford","B. Haberman, Ed."],"rawDate":"2006-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4621":{"rfcNumber":"RFC4621","href":"https://www.rfc-editor.org/rfc/rfc4621","title":"Design of the IKEv2 Mobility and Multihoming (MOBIKE) Protocol","authors":["T. Kivinen","H. Tschofenig"],"rawDate":"2006-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4622":{"rfcNumber":"RFC4622","href":"https://www.rfc-editor.org/rfc/rfc4622","title":"Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre"],"rawDate":"2006-07","status":"Proposed Standard","obsoletedBy":["RFC5122"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4623":{"rfcNumber":"RFC4623","href":"https://www.rfc-editor.org/rfc/rfc4623","title":"Pseudowire Emulation Edge-to-Edge (PWE3) Fragmentation and Reassembly","authors":["A. Malis","M. Townsley"],"rawDate":"2006-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4623","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4624":{"rfcNumber":"RFC4624","href":"https://www.rfc-editor.org/rfc/rfc4624","title":"Multicast Source Discovery Protocol (MSDP) MIB","authors":["B. Fenner","D. Thaler"],"rawDate":"2006-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4625":{"rfcNumber":"RFC4625","href":"https://www.rfc-editor.org/rfc/rfc4625","title":"Fibre Channel Routing Information MIB","authors":["C. DeSanti","K. McCloghrie","S. Kode","S. Gai"],"rawDate":"2006-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4626":{"rfcNumber":"RFC4626","href":"https://www.rfc-editor.org/rfc/rfc4626","title":"MIB for Fibre Channel's Fabric Shortest Path First (FSPF) Protocol","authors":["C. DeSanti","V. Gaonkar","K. McCloghrie","S. Gai"],"rawDate":"2006-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4627":{"rfcNumber":"RFC4627","href":"https://www.rfc-editor.org/rfc/rfc4627","title":"The application/json Media Type for JavaScript Object Notation (JSON)","authors":["D. Crockford"],"rawDate":"2006-07","status":"Informational","obsoletedBy":["RFC7159"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4627","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4628":{"rfcNumber":"RFC4628","href":"https://www.rfc-editor.org/rfc/rfc4628","title":"RTP Payload Format for H.263 Moving RFC 2190 to Historic Status","authors":["R. Even"],"rawDate":"2007-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4629":{"rfcNumber":"RFC4629","href":"https://www.rfc-editor.org/rfc/rfc4629","title":"RTP Payload Format for ITU-T Rec. H.263 Video","authors":["J. Ott","C. Bormann","G. Sullivan","S. Wenger","R. Even, Ed."],"rawDate":"2007-01","status":"Proposed Standard","updates":["RFC3555"],"obsoletes":["RFC2429"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc463":{"aliasOf":"rfc0463"},"rfc4630":{"rfcNumber":"RFC4630","href":"https://www.rfc-editor.org/rfc/rfc4630","title":"Update to DirectoryString Processing in the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile","authors":["R. Housley","S. Santesson"],"rawDate":"2006-08","status":"Proposed Standard","obsoletedBy":["RFC5280"],"updates":["RFC3280"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4631":{"rfcNumber":"RFC4631","href":"https://www.rfc-editor.org/rfc/rfc4631","title":"Link Management Protocol (LMP) Management Information Base (MIB)","authors":["M. Dubuc","T. Nadeau","J. Lang","E. McGinnis","A. Farrel"],"rawDate":"2006-09","status":"Proposed Standard","obsoletes":["RFC4327"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4631","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4632":{"rfcNumber":"RFC4632","href":"https://www.rfc-editor.org/rfc/rfc4632","title":"Classless Inter-domain Routing (CIDR): The Internet Address Assignment and Aggregation Plan","authors":["V. Fuller","T. Li"],"rawDate":"2006-08","status":"Best Current Practice","obsoletes":["RFC1519"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4632","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4633":{"rfcNumber":"RFC4633","href":"https://www.rfc-editor.org/rfc/rfc4633","title":"Experiment in Long-Term Suspensions From Internet Engineering Task Force (IETF) Mailing Lists","authors":["S. Hartman"],"rawDate":"2006-08","status":"Experimental","updatedBy":["RFC8717"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4634":{"rfcNumber":"RFC4634","href":"https://www.rfc-editor.org/rfc/rfc4634","title":"US Secure Hash Algorithms (SHA and HMAC-SHA)","authors":["D. Eastlake 3rd","T. Hansen"],"rawDate":"2006-07","status":"Informational","obsoletedBy":["RFC6234"],"updates":["RFC3174"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4634","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4635":{"rfcNumber":"RFC4635","href":"https://www.rfc-editor.org/rfc/rfc4635","title":"HMAC SHA (Hashed Message Authentication Code, Secure Hash Algorithm) TSIG Algorithm Identifiers","authors":["D. Eastlake 3rd"],"rawDate":"2006-08","status":"Proposed Standard","obsoletedBy":["RFC8945"],"updates":["RFC2845"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4635","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4636":{"rfcNumber":"RFC4636","href":"https://www.rfc-editor.org/rfc/rfc4636","title":"Foreign Agent Error Extension for Mobile IPv4","authors":["C. Perkins"],"rawDate":"2006-10","status":"Proposed Standard","updates":["RFC3344"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4636","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4638":{"rfcNumber":"RFC4638","href":"https://www.rfc-editor.org/rfc/rfc4638","title":"Accommodating a Maximum Transit Unit/Maximum Receive Unit (MTU/MRU) Greater Than 1492 in the Point-to-Point Protocol over Ethernet (PPPoE)","authors":["P. Arberg","D. Kourkouzelis","M. Duckett","T. Anschutz","J. Moisand"],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4639":{"rfcNumber":"RFC4639","href":"https://www.rfc-editor.org/rfc/rfc4639","title":"Cable Device Management Information Base for Data-Over-Cable Service Interface Specification (DOCSIS) Compliant Cable Modems and Cable Modem Termination Systems","authors":["R. Woundy","K. Marez"],"rawDate":"2006-12","status":"Proposed Standard","updatedBy":["RFC9141"],"obsoletes":["RFC2669"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc464":{"aliasOf":"rfc0464"},"rfc4640":{"rfcNumber":"RFC4640","href":"https://www.rfc-editor.org/rfc/rfc4640","title":"Problem Statement for bootstrapping Mobile IPv6 (MIPv6)","authors":["A. Patel, Ed.","G. Giaretta, Ed."],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4640","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4641":{"rfcNumber":"RFC4641","href":"https://www.rfc-editor.org/rfc/rfc4641","title":"DNSSEC Operational Practices","authors":["O. Kolkman","R. Gieben"],"rawDate":"2006-09","status":"Informational","obsoletedBy":["RFC6781"],"obsoletes":["RFC2541"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4641","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4642":{"rfcNumber":"RFC4642","href":"https://www.rfc-editor.org/rfc/rfc4642","title":"Using Transport Layer Security (TLS) with Network News Transfer Protocol (NNTP)","authors":["K. Murchison","J. Vinocur","C. Newman"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC8143","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4642","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4643":{"rfcNumber":"RFC4643","href":"https://www.rfc-editor.org/rfc/rfc4643","title":"Network News Transfer Protocol (NNTP) Extension for Authentication","authors":["J. Vinocur","K. Murchison"],"rawDate":"2006-10","status":"Proposed Standard","updates":["RFC2980"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4643","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4644":{"rfcNumber":"RFC4644","href":"https://www.rfc-editor.org/rfc/rfc4644","title":"Network News Transfer Protocol (NNTP) Extension for Streaming Feeds","authors":["J. Vinocur","K. Murchison"],"rawDate":"2006-10","status":"Proposed Standard","updates":["RFC2980"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4644","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4645":{"rfcNumber":"RFC4645","href":"https://www.rfc-editor.org/rfc/rfc4645","title":"Initial Language Subtag Registry","authors":["D. Ewell"],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4645","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4646":{"rfcNumber":"RFC4646","href":"https://www.rfc-editor.org/rfc/rfc4646","title":"Tags for Identifying Languages","authors":["A. Phillips","M. Davis"],"rawDate":"2006-09","status":"Best Current Practice","obsoletedBy":["RFC5646"],"obsoletes":["RFC3066"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4646","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4647":{"rfcNumber":"RFC4647","href":"https://www.rfc-editor.org/rfc/rfc4647","title":"Matching of Language Tags","authors":["A. Phillips, Ed.","M. Davis, Ed."],"rawDate":"2006-09","status":"Best Current Practice","obsoletes":["RFC3066"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4648":{"rfcNumber":"RFC4648","href":"https://www.rfc-editor.org/rfc/rfc4648","title":"The Base16, Base32, and Base64 Data Encodings","authors":["S. Josefsson"],"rawDate":"2006-10","status":"Proposed Standard","obsoletes":["RFC3548"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4648","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4649":{"rfcNumber":"RFC4649","href":"https://www.rfc-editor.org/rfc/rfc4649","title":"Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Relay Agent Remote-ID Option","authors":["B. Volz"],"rawDate":"2006-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4650":{"rfcNumber":"RFC4650","href":"https://www.rfc-editor.org/rfc/rfc4650","title":"HMAC-Authenticated Diffie-Hellman for Multimedia Internet KEYing (MIKEY)","authors":["M. Euchner"],"rawDate":"2006-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4650","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4651":{"rfcNumber":"RFC4651","href":"https://www.rfc-editor.org/rfc/rfc4651","title":"A Taxonomy and Analysis of Enhancements to Mobile IPv6 Route Optimization","authors":["C. Vogt","J. Arkko"],"rawDate":"2007-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4652":{"rfcNumber":"RFC4652","href":"https://www.rfc-editor.org/rfc/rfc4652","title":"Evaluation of Existing Routing Protocols against Automatic Switched Optical Network (ASON) Routing Requirements","authors":["D. Papadimitriou, Ed.","L. Ong","J. Sadler","S. Shew","D. Ward"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4653":{"rfcNumber":"RFC4653","href":"https://www.rfc-editor.org/rfc/rfc4653","title":"Improving the Robustness of TCP to Non-Congestion Events","authors":["S. Bhandarkar","A. L. N. Reddy","M. Allman","E. Blanton"],"rawDate":"2006-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4653","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4654":{"rfcNumber":"RFC4654","href":"https://www.rfc-editor.org/rfc/rfc4654","title":"TCP-Friendly Multicast Congestion Control (TFMCC): Protocol Specification","authors":["J. Widmer","M. Handley"],"rawDate":"2006-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4654","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4655":{"rfcNumber":"RFC4655","href":"https://www.rfc-editor.org/rfc/rfc4655","title":"A Path Computation Element (PCE)-Based Architecture","authors":["A. Farrel","J.-P. Vasseur","J. Ash"],"rawDate":"2006-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4656":{"rfcNumber":"RFC4656","href":"https://www.rfc-editor.org/rfc/rfc4656","title":"A One-way Active Measurement Protocol (OWAMP)","authors":["S. Shalunov","B. Teitelbaum","A. Karp","J. Boote","M. Zekauskas"],"rawDate":"2006-09","status":"Proposed Standard","updatedBy":["RFC7717","RFC7718","RFC8545"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4657":{"rfcNumber":"RFC4657","href":"https://www.rfc-editor.org/rfc/rfc4657","title":"Path Computation Element (PCE) Communication Protocol Generic Requirements","authors":["J. Ash, Ed.","J.L. Le Roux, Ed."],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4659":{"rfcNumber":"RFC4659","href":"https://www.rfc-editor.org/rfc/rfc4659","title":"BGP-MPLS IP Virtual Private Network (VPN) Extension for IPv6 VPN","authors":["J. De Clercq","D. Ooms","M. Carugi","F. Le Faucheur"],"rawDate":"2006-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4659","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc466":{"aliasOf":"rfc0466"},"rfc4660":{"rfcNumber":"RFC4660","href":"https://www.rfc-editor.org/rfc/rfc4660","title":"Functional Description of Event Notification Filtering","authors":["H. Khartabil","E. Leppanen","M. Lonnfors","J. Costa-Requena"],"rawDate":"2006-09","status":"Proposed Standard","updatedBy":["RFC6665"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4660","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4661":{"rfcNumber":"RFC4661","href":"https://www.rfc-editor.org/rfc/rfc4661","title":"An Extensible Markup Language (XML)-Based Format for Event Notification Filtering","authors":["H. Khartabil","E. Leppanen","M. Lonnfors","J. Costa-Requena"],"rawDate":"2006-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4661","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4662":{"rfcNumber":"RFC4662","href":"https://www.rfc-editor.org/rfc/rfc4662","title":"A Session Initiation Protocol (SIP) Event Notification Extension for Resource Lists","authors":["A. B. Roach","B. Campbell","J. Rosenberg"],"rawDate":"2006-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4662","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4663":{"rfcNumber":"RFC4663","href":"https://www.rfc-editor.org/rfc/rfc4663","title":"Transferring MIB Work from IETF Bridge MIB WG to IEEE 802.1 WG","authors":["D. Harrington"],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4664":{"rfcNumber":"RFC4664","href":"https://www.rfc-editor.org/rfc/rfc4664","title":"Framework for Layer 2 Virtual Private Networks (L2VPNs)","authors":["L. Andersson, Ed.","E. Rosen, Ed."],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4664","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4665":{"rfcNumber":"RFC4665","href":"https://www.rfc-editor.org/rfc/rfc4665","title":"Service Requirements for Layer 2 Provider-Provisioned Virtual Private Networks","authors":["W. Augustyn, Ed.","Y. Serbest, Ed."],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4666":{"rfcNumber":"RFC4666","href":"https://www.rfc-editor.org/rfc/rfc4666","title":"Signaling System 7 (SS7) Message Transfer Part 3 (MTP3) - User Adaptation Layer (M3UA)","authors":["K. Morneault, Ed.","J. Pastor-Balbas, Ed."],"rawDate":"2006-09","status":"Proposed Standard","obsoletes":["RFC3332"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4666","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4667":{"rfcNumber":"RFC4667","href":"https://www.rfc-editor.org/rfc/rfc4667","title":"Layer 2 Virtual Private Network (L2VPN) Extensions for Layer 2 Tunneling Protocol (L2TP)","authors":["W. Luo"],"rawDate":"2006-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4668":{"rfcNumber":"RFC4668","href":"https://www.rfc-editor.org/rfc/rfc4668","title":"RADIUS Authentication Client MIB for IPv6","authors":["D. Nelson"],"rawDate":"2006-08","status":"Proposed Standard","obsoletes":["RFC2618"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4668","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4669":{"rfcNumber":"RFC4669","href":"https://www.rfc-editor.org/rfc/rfc4669","title":"RADIUS Authentication Server MIB for IPv6","authors":["D. Nelson"],"rawDate":"2006-08","status":"Proposed Standard","obsoletes":["RFC2619"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4669","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc467":{"aliasOf":"rfc0467"},"rfc4670":{"rfcNumber":"RFC4670","href":"https://www.rfc-editor.org/rfc/rfc4670","title":"RADIUS Accounting Client MIB for IPv6","authors":["D. Nelson"],"rawDate":"2006-08","status":"Informational","obsoletes":["RFC2620"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4670","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4671":{"rfcNumber":"RFC4671","href":"https://www.rfc-editor.org/rfc/rfc4671","title":"RADIUS Accounting Server MIB for IPv6","authors":["D. Nelson"],"rawDate":"2006-08","status":"Informational","obsoletes":["RFC2621"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4671","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4672":{"rfcNumber":"RFC4672","href":"https://www.rfc-editor.org/rfc/rfc4672","title":"RADIUS Dynamic Authorization Client MIB","authors":["S. De Cnodder","N. Jonnala","M. Chiba"],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4672","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4673":{"rfcNumber":"RFC4673","href":"https://www.rfc-editor.org/rfc/rfc4673","title":"RADIUS Dynamic Authorization Server MIB","authors":["S. De Cnodder","N. Jonnala","M. Chiba"],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4673","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4674":{"rfcNumber":"RFC4674","href":"https://www.rfc-editor.org/rfc/rfc4674","title":"Requirements for Path Computation Element (PCE) Discovery","authors":["J.L. Le Roux, Ed."],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4675":{"rfcNumber":"RFC4675","href":"https://www.rfc-editor.org/rfc/rfc4675","title":"RADIUS Attributes for Virtual LAN and Priority Support","authors":["P. Congdon","M. Sanchez","B. Aboba"],"rawDate":"2006-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4675","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4676":{"rfcNumber":"RFC4676","href":"https://www.rfc-editor.org/rfc/rfc4676","title":"Dynamic Host Configuration Protocol (DHCPv4 and DHCPv6) Option for Civic Addresses Configuration Information","authors":["H. Schulzrinne"],"rawDate":"2006-10","status":"Proposed Standard","obsoletedBy":["RFC4776"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4676","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4677":{"rfcNumber":"RFC4677","href":"https://www.rfc-editor.org/rfc/rfc4677","title":"The Tao of IETF - A Novice's Guide to the Internet Engineering Task Force","authors":["P. Hoffman","S. Harris"],"rawDate":"2006-09","status":"Informational","obsoletedBy":["RFC6722"],"obsoletes":["RFC3160"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4677","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4678":{"rfcNumber":"RFC4678","href":"https://www.rfc-editor.org/rfc/rfc4678","title":"Server/Application State Protocol v1","authors":["A. Bivens"],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4678","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4679":{"rfcNumber":"RFC4679","href":"https://www.rfc-editor.org/rfc/rfc4679","title":"DSL Forum Vendor-Specific RADIUS Attributes","authors":["V. Mammoliti","G. Zorn","P. Arberg","R. Rennison"],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4679","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc468":{"aliasOf":"rfc0468"},"rfc4680":{"rfcNumber":"RFC4680","href":"https://www.rfc-editor.org/rfc/rfc4680","title":"TLS Handshake Message for Supplemental Data","authors":["S. Santesson"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC8447","RFC8996"],"updates":["RFC4346"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4681":{"rfcNumber":"RFC4681","href":"https://www.rfc-editor.org/rfc/rfc4681","title":"TLS User Mapping Extension","authors":["S. Santesson","A. Medvinsky","J. Ball"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC4346"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4682":{"rfcNumber":"RFC4682","href":"https://www.rfc-editor.org/rfc/rfc4682","title":"Multimedia Terminal Adapter (MTA) Management Information Base for PacketCable- and IPCablecom-Compliant Devices","authors":["E. Nechamkin","J-F. Mule"],"rawDate":"2006-12","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4683":{"rfcNumber":"RFC4683","href":"https://www.rfc-editor.org/rfc/rfc4683","title":"Internet X.509 Public Key Infrastructure Subject Identification Method (SIM)","authors":["J. Park","J. Lee","H. Lee","S. Park","T. Polk"],"rawDate":"2006-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4683","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4684":{"rfcNumber":"RFC4684","href":"https://www.rfc-editor.org/rfc/rfc4684","title":"Constrained Route Distribution for Border Gateway Protocol/MultiProtocol Label Switching (BGP/MPLS) Internet Protocol (IP) Virtual Private Networks (VPNs)","authors":["P. Marques","R. Bonica","L. Fang","L. Martini","R. Raszuk","K. Patel","J. Guichard"],"rawDate":"2006-11","status":"Proposed Standard","updates":["RFC4364"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4684","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4685":{"rfcNumber":"RFC4685","href":"https://www.rfc-editor.org/rfc/rfc4685","title":"Atom Threading Extensions","authors":["J. Snell"],"rawDate":"2006-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4686":{"rfcNumber":"RFC4686","href":"https://www.rfc-editor.org/rfc/rfc4686","title":"Analysis of Threats Motivating DomainKeys Identified Mail (DKIM)","authors":["J. Fenton"],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4687":{"rfcNumber":"RFC4687","href":"https://www.rfc-editor.org/rfc/rfc4687","title":"Operations and Management (OAM) Requirements for Point-to-Multipoint MPLS Networks","authors":["S. Yasukawa","A. Farrel","D. King","T. Nadeau"],"rawDate":"2006-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4688":{"rfcNumber":"RFC4688","href":"https://www.rfc-editor.org/rfc/rfc4688","title":"A Uniform Resource Name (URN) Namespace for Aerospace and Defence Industries Association of Europe (ASD) Specification 1000D","authors":["S. Rushing"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4689":{"rfcNumber":"RFC4689","href":"https://www.rfc-editor.org/rfc/rfc4689","title":"Terminology for Benchmarking Network-layer Traffic Control Mechanisms","authors":["S. Poretsky","J. Perser","S. Erramilli","S. Khurana"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc469":{"aliasOf":"rfc0469"},"rfc4690":{"rfcNumber":"RFC4690","href":"https://www.rfc-editor.org/rfc/rfc4690","title":"Review and Recommendations for Internationalized Domain Names (IDNs)","authors":["J. Klensin","P. Faltstrom","C. Karp","IAB"],"rawDate":"2006-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4690","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4691":{"rfcNumber":"RFC4691","href":"https://www.rfc-editor.org/rfc/rfc4691","title":"Guidelines for Acting as an IETF Liaison to Another Organization","authors":["L. Andersson, Ed."],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4692":{"rfcNumber":"RFC4692","href":"https://www.rfc-editor.org/rfc/rfc4692","title":"Considerations on the IPv6 Host Density Metric","authors":["G. Huston"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4693":{"rfcNumber":"RFC4693","href":"https://www.rfc-editor.org/rfc/rfc4693","title":"IETF Operational Notes","authors":["H. Alvestrand"],"rawDate":"2006-10","status":"Historic","obsoletedBy":["RFC6393"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4694":{"rfcNumber":"RFC4694","href":"https://www.rfc-editor.org/rfc/rfc4694","title":"Number Portability Parameters for the \"tel\" URI","authors":["J. Yu"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4695":{"rfcNumber":"RFC4695","href":"https://www.rfc-editor.org/rfc/rfc4695","title":"RTP Payload Format for MIDI","authors":["J. Lazzaro","J. Wawrzynek"],"rawDate":"2006-11","status":"Proposed Standard","obsoletedBy":["RFC6295"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4695","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4696":{"rfcNumber":"RFC4696","href":"https://www.rfc-editor.org/rfc/rfc4696","title":"An Implementation Guide for RTP MIDI","authors":["J. Lazzaro","J. Wawrzynek"],"rawDate":"2006-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4696","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4697":{"rfcNumber":"RFC4697","href":"https://www.rfc-editor.org/rfc/rfc4697","title":"Observed DNS Resolution Misbehavior","authors":["M. Larson","P. Barber"],"rawDate":"2006-10","status":"Best Current Practice","updatedBy":["RFC9520"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4698":{"rfcNumber":"RFC4698","href":"https://www.rfc-editor.org/rfc/rfc4698","title":"IRIS: An Address Registry (areg) Type for the Internet Registry Information Service","authors":["E. Gunduz","A. Newton","S. Kerr"],"rawDate":"2006-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4698","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc47":{"aliasOf":"rfc0047"},"rfc470":{"aliasOf":"rfc0470"},"rfc4701":{"rfcNumber":"RFC4701","href":"https://www.rfc-editor.org/rfc/rfc4701","title":"A DNS Resource Record (RR) for Encoding Dynamic Host Configuration Protocol (DHCP) Information (DHCID RR)","authors":["M. Stapp","T. Lemon","A. Gustafsson"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC5494"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4701","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4702":{"rfcNumber":"RFC4702","href":"https://www.rfc-editor.org/rfc/rfc4702","title":"The Dynamic Host Configuration Protocol (DHCP) Client Fully Qualified Domain Name (FQDN) Option","authors":["M. Stapp","B. Volz","Y. Rekhter"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4703":{"rfcNumber":"RFC4703","href":"https://www.rfc-editor.org/rfc/rfc4703","title":"Resolution of Fully Qualified Domain Name (FQDN) Conflicts among Dynamic Host Configuration Protocol (DHCP) Clients","authors":["M. Stapp","B. Volz"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4704":{"rfcNumber":"RFC4704","href":"https://www.rfc-editor.org/rfc/rfc4704","title":"The Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Client Fully Qualified Domain Name (FQDN) Option","authors":["B. Volz"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4705":{"rfcNumber":"RFC4705","href":"https://www.rfc-editor.org/rfc/rfc4705","title":"GigaBeam High-Speed Radio Link Encryption","authors":["R. Housley","A. Corry"],"rawDate":"2006-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4705","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4706":{"rfcNumber":"RFC4706","href":"https://www.rfc-editor.org/rfc/rfc4706","title":"Definitions of Managed Objects for Asymmetric Digital Subscriber Line 2 (ADSL2)","authors":["M. Morgenstern","M. Dodge","S. Baillie","U. Bonollo"],"rawDate":"2006-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4707":{"rfcNumber":"RFC4707","href":"https://www.rfc-editor.org/rfc/rfc4707","title":"Netnews Administration System (NAS)","authors":["P. Grau","V. Heinau","H. Schlichting","R. Schuettler"],"rawDate":"2006-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4707","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4708":{"rfcNumber":"RFC4708","href":"https://www.rfc-editor.org/rfc/rfc4708","title":"CellML Media Type","authors":["A. Miller"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4709":{"rfcNumber":"RFC4709","href":"https://www.rfc-editor.org/rfc/rfc4709","title":"Mounting Web Distributed Authoring and Versioning (WebDAV) Servers","authors":["J. Reschke"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc471":{"aliasOf":"rfc0471"},"rfc4710":{"rfcNumber":"RFC4710","href":"https://www.rfc-editor.org/rfc/rfc4710","title":"Real-time Application Quality-of-Service Monitoring (RAQMON) Framework","authors":["A. Siddiqui","D. Romascanu","E. Golovinsky"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4711":{"rfcNumber":"RFC4711","href":"https://www.rfc-editor.org/rfc/rfc4711","title":"Real-time Application Quality-of-Service Monitoring (RAQMON) MIB","authors":["A. Siddiqui","D. Romascanu","E. Golovinsky"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4712":{"rfcNumber":"RFC4712","href":"https://www.rfc-editor.org/rfc/rfc4712","title":"Transport Mappings for Real-time Application Quality-of-Service Monitoring (RAQMON) Protocol Data Unit (PDU)","authors":["A. Siddiqui","D. Romascanu","E. Golovinsky","M. Rahman","Y. Kim"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4713":{"rfcNumber":"RFC4713","href":"https://www.rfc-editor.org/rfc/rfc4713","title":"Registration and Administration Recommendations for Chinese Domain Names","authors":["X. Lee","W. Mao","E. Chen","N. Hsu","J. Klensin"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4714":{"rfcNumber":"RFC4714","href":"https://www.rfc-editor.org/rfc/rfc4714","title":"Requirements for IETF Technical Publication Service","authors":["A. Mankin","S. Hayes"],"rawDate":"2006-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4715":{"rfcNumber":"RFC4715","href":"https://www.rfc-editor.org/rfc/rfc4715","title":"The Integrated Services Digital Network (ISDN) Subaddress Encoding Type for tel URI","authors":["M. Munakata","S. Schubert","T. Ohba"],"rawDate":"2006-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4716":{"rfcNumber":"RFC4716","href":"https://www.rfc-editor.org/rfc/rfc4716","title":"The Secure Shell (SSH) Public Key File Format","authors":["J. Galbraith","R. Thayer"],"rawDate":"2006-11","status":"Informational","updatedBy":["RFC9519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4717":{"rfcNumber":"RFC4717","href":"https://www.rfc-editor.org/rfc/rfc4717","title":"Encapsulation Methods for Transport of Asynchronous Transfer Mode (ATM) over MPLS Networks","authors":["L. Martini","J. Jayakumar","M. Bocci","N. El-Aawar","J. Brayley","G. Koleyni"],"rawDate":"2006-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4717","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4718":{"rfcNumber":"RFC4718","href":"https://www.rfc-editor.org/rfc/rfc4718","title":"IKEv2 Clarifications and Implementation Guidelines","authors":["P. Eronen","P. Hoffman"],"rawDate":"2006-10","status":"Informational","obsoletedBy":["RFC5996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4718","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4719":{"rfcNumber":"RFC4719","href":"https://www.rfc-editor.org/rfc/rfc4719","title":"Transport of Ethernet Frames over Layer 2 Tunneling Protocol Version 3 (L2TPv3)","authors":["R. Aggarwal, Ed.","M. Townsley, Ed.","M. Dos Santos, Ed."],"rawDate":"2006-11","status":"Proposed Standard","updatedBy":["RFC5641"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4719","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc472":{"aliasOf":"rfc0472"},"rfc4720":{"rfcNumber":"RFC4720","href":"https://www.rfc-editor.org/rfc/rfc4720","title":"Pseudowire Emulation Edge-to-Edge (PWE3) Frame Check Sequence Retention","authors":["A. Malis","D. Allan","N. Del Regno"],"rawDate":"2006-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4721":{"rfcNumber":"RFC4721","href":"https://www.rfc-editor.org/rfc/rfc4721","title":"Mobile IPv4 Challenge/Response Extensions (Revised)","authors":["C. Perkins","P. Calhoun","J. Bharatia"],"rawDate":"2007-01","status":"Proposed Standard","updates":["RFC3344"],"obsoletes":["RFC3012"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4721","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4722":{"rfcNumber":"RFC4722","href":"https://www.rfc-editor.org/rfc/rfc4722","title":"Media Server Control Markup Language (MSCML) and Protocol","authors":["J. Van Dyke","E. Burger, Ed.","A. Spitzer"],"rawDate":"2006-11","status":"Informational","obsoletedBy":["RFC5022"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4723":{"rfcNumber":"RFC4723","href":"https://www.rfc-editor.org/rfc/rfc4723","title":"Registration of Media Type audio/mobile-xmf","authors":["T. Kosonen","T. White"],"rawDate":"2006-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4724":{"rfcNumber":"RFC4724","href":"https://www.rfc-editor.org/rfc/rfc4724","title":"Graceful Restart Mechanism for BGP","authors":["S. Sangli","E. Chen","R. Fernando","J. Scudder","Y. Rekhter"],"rawDate":"2007-01","status":"Proposed Standard","updatedBy":["RFC8538"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4724","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4725":{"rfcNumber":"RFC4725","href":"https://www.rfc-editor.org/rfc/rfc4725","title":"ENUM Validation Architecture","authors":["A. Mayrhofer","B. Hoeneisen"],"rawDate":"2006-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4726":{"rfcNumber":"RFC4726","href":"https://www.rfc-editor.org/rfc/rfc4726","title":"A Framework for Inter-Domain Multiprotocol Label Switching Traffic Engineering","authors":["A. Farrel","J.-P. Vasseur","A. Ayyangar"],"rawDate":"2006-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4727":{"rfcNumber":"RFC4727","href":"https://www.rfc-editor.org/rfc/rfc4727","title":"Experimental Values In IPv4, IPv6, ICMPv4, ICMPv6, UDP, and TCP Headers","authors":["B. Fenner"],"rawDate":"2006-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4728":{"rfcNumber":"RFC4728","href":"https://www.rfc-editor.org/rfc/rfc4728","title":"The Dynamic Source Routing Protocol (DSR) for Mobile Ad Hoc Networks for IPv4","authors":["D. Johnson","Y. Hu","D. Maltz"],"rawDate":"2007-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4728","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4729":{"rfcNumber":"RFC4729","href":"https://www.rfc-editor.org/rfc/rfc4729","title":"A Uniform Resource Name (URN) Namespace for the Near Field Communication (NFC) Forum","authors":["M. Abel"],"rawDate":"2006-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc473":{"aliasOf":"rfc0473"},"rfc4730":{"rfcNumber":"RFC4730","href":"https://www.rfc-editor.org/rfc/rfc4730","title":"A Session Initiation Protocol (SIP) Event Package for Key Press Stimulus (KPML)","authors":["E. Burger","M. Dolly"],"rawDate":"2006-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4730","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4731":{"rfcNumber":"RFC4731","href":"https://www.rfc-editor.org/rfc/rfc4731","title":"IMAP4 Extension to SEARCH Command for Controlling What Kind of Information Is Returned","authors":["A. Melnikov","D. Cridland"],"rawDate":"2006-11","status":"Proposed Standard","updatedBy":["RFC9394"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4732":{"rfcNumber":"RFC4732","href":"https://www.rfc-editor.org/rfc/rfc4732","title":"Internet Denial-of-Service Considerations","authors":["M. Handley, Ed.","E. Rescorla, Ed.","IAB"],"rawDate":"2006-12","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4733":{"rfcNumber":"RFC4733","href":"https://www.rfc-editor.org/rfc/rfc4733","title":"RTP Payload for DTMF Digits, Telephony Tones, and Telephony Signals","authors":["H. Schulzrinne","T. Taylor"],"rawDate":"2006-12","status":"Proposed Standard","updatedBy":["RFC4734","RFC5244"],"obsoletes":["RFC2833"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4733","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4734":{"rfcNumber":"RFC4734","href":"https://www.rfc-editor.org/rfc/rfc4734","title":"Definition of Events for Modem, Fax, and Text Telephony Signals","authors":["H. Schulzrinne","T. Taylor"],"rawDate":"2006-12","status":"Proposed Standard","updates":["RFC4733"],"obsoletes":["RFC2833"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4735":{"rfcNumber":"RFC4735","href":"https://www.rfc-editor.org/rfc/rfc4735","title":"Example Media Types for Use in Documentation","authors":["T. Taylor"],"rawDate":"2006-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4736":{"rfcNumber":"RFC4736","href":"https://www.rfc-editor.org/rfc/rfc4736","title":"Reoptimization of Multiprotocol Label Switching (MPLS) Traffic Engineering (TE) Loosely Routed Label Switched Path (LSP)","authors":["JP. Vasseur, Ed.","Y. Ikejiri","R. Zhang"],"rawDate":"2006-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4737":{"rfcNumber":"RFC4737","href":"https://www.rfc-editor.org/rfc/rfc4737","title":"Packet Reordering Metrics","authors":["A. Morton","L. Ciavattone","G. Ramachandran","S. Shalunov","J. Perser"],"rawDate":"2006-11","status":"Proposed Standard","updatedBy":["RFC6248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4738":{"rfcNumber":"RFC4738","href":"https://www.rfc-editor.org/rfc/rfc4738","title":"MIKEY-RSA-R: An Additional Mode of Key Distribution in Multimedia Internet KEYing (MIKEY)","authors":["D. Ignjatic","L. Dondeti","F. Audet","P. Lin"],"rawDate":"2006-11","status":"Proposed Standard","updates":["RFC3830"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4739":{"rfcNumber":"RFC4739","href":"https://www.rfc-editor.org/rfc/rfc4739","title":"Multiple Authentication Exchanges in the Internet Key Exchange (IKEv2) Protocol","authors":["P. Eronen","J. Korhonen"],"rawDate":"2006-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc474":{"aliasOf":"rfc0474"},"rfc4740":{"rfcNumber":"RFC4740","href":"https://www.rfc-editor.org/rfc/rfc4740","title":"Diameter Session Initiation Protocol (SIP) Application","authors":["M. Garcia-Martin, Ed.","M. Belinchon","M. Pallares-Lopez","C. Canales-Valenzuela","K. Tammi"],"rawDate":"2006-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4740","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4741":{"rfcNumber":"RFC4741","href":"https://www.rfc-editor.org/rfc/rfc4741","title":"NETCONF Configuration Protocol","authors":["R. Enns, Ed."],"rawDate":"2006-12","status":"Proposed Standard","obsoletedBy":["RFC6241"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4741","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4742":{"rfcNumber":"RFC4742","href":"https://www.rfc-editor.org/rfc/rfc4742","title":"Using the NETCONF Configuration Protocol over Secure SHell (SSH)","authors":["M. Wasserman","T. Goddard"],"rawDate":"2006-12","status":"Proposed Standard","obsoletedBy":["RFC6242"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4742","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4743":{"rfcNumber":"RFC4743","href":"https://www.rfc-editor.org/rfc/rfc4743","title":"Using NETCONF over the Simple Object Access Protocol (SOAP)","authors":["T. Goddard"],"rawDate":"2006-12","status":"Historic","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4743","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4744":{"rfcNumber":"RFC4744","href":"https://www.rfc-editor.org/rfc/rfc4744","title":"Using the NETCONF Protocol over the Blocks Extensible Exchange Protocol (BEEP)","authors":["E. Lear","K. Crozier"],"rawDate":"2006-12","status":"Historic","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4745":{"rfcNumber":"RFC4745","href":"https://www.rfc-editor.org/rfc/rfc4745","title":"Common Policy: A Document Format for Expressing Privacy Preferences","authors":["H. Schulzrinne","H. Tschofenig","J. Morris","J. Cuellar","J. Polk","J. Rosenberg"],"rawDate":"2007-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4745","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4746":{"rfcNumber":"RFC4746","href":"https://www.rfc-editor.org/rfc/rfc4746","title":"Extensible Authentication Protocol (EAP) Password Authenticated Exchange","authors":["T. Clancy","W. Arbaugh"],"rawDate":"2006-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4746","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4747":{"rfcNumber":"RFC4747","href":"https://www.rfc-editor.org/rfc/rfc4747","title":"The Virtual Fabrics MIB","authors":["S. Kipp","G. Ramkumar","K. McCloghrie"],"rawDate":"2006-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4747","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4748":{"rfcNumber":"RFC4748","href":"https://www.rfc-editor.org/rfc/rfc4748","title":"RFC 3978 Update to Recognize the IETF Trust","authors":["S. Bradner, Ed."],"rawDate":"2006-10","status":"Best Current Practice","obsoletedBy":["RFC5378"],"updates":["RFC3978"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4749":{"rfcNumber":"RFC4749","href":"https://www.rfc-editor.org/rfc/rfc4749","title":"RTP Payload Format for the G.729.1 Audio Codec","authors":["A. Sollaud"],"rawDate":"2006-10","status":"Proposed Standard","updatedBy":["RFC5459"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc475":{"aliasOf":"rfc0475"},"rfc4750":{"rfcNumber":"RFC4750","href":"https://www.rfc-editor.org/rfc/rfc4750","title":"OSPF Version 2 Management Information Base","authors":["D. Joyal, Ed.","P. Galecki, Ed.","S. Giacalone, Ed.","R. Coltun","F. Baker"],"rawDate":"2006-12","status":"Proposed Standard","obsoletes":["RFC1850"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4750","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4752":{"rfcNumber":"RFC4752","href":"https://www.rfc-editor.org/rfc/rfc4752","title":"The Kerberos V5 (\"GSSAPI\") Simple Authentication and Security Layer (SASL) Mechanism","authors":["A. Melnikov, Ed."],"rawDate":"2006-11","status":"Proposed Standard","obsoletes":["RFC2222"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4752","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4753":{"rfcNumber":"RFC4753","href":"https://www.rfc-editor.org/rfc/rfc4753","title":"ECP Groups For IKE and IKEv2","authors":["D. Fu","J. Solinas"],"rawDate":"2007-01","status":"Informational","obsoletedBy":["RFC5903"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4753","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4754":{"rfcNumber":"RFC4754","href":"https://www.rfc-editor.org/rfc/rfc4754","title":"IKE and IKEv2 Authentication Using the Elliptic Curve Digital Signature Algorithm (ECDSA)","authors":["D. Fu","J. Solinas"],"rawDate":"2007-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4754","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4755":{"rfcNumber":"RFC4755","href":"https://www.rfc-editor.org/rfc/rfc4755","title":"IP over InfiniBand: Connected Mode","authors":["V. Kashyap"],"rawDate":"2006-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4756":{"rfcNumber":"RFC4756","href":"https://www.rfc-editor.org/rfc/rfc4756","title":"Forward Error Correction Grouping Semantics in Session Description Protocol","authors":["A. Li"],"rawDate":"2006-11","status":"Proposed Standard","obsoletedBy":["RFC5956"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4757":{"rfcNumber":"RFC4757","href":"https://www.rfc-editor.org/rfc/rfc4757","title":"The RC4-HMAC Kerberos Encryption Types Used by Microsoft Windows","authors":["K. Jaganathan","L. Zhu","J. Brezak"],"rawDate":"2006-12","status":"Historic","updatedBy":["RFC6649"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4757","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4758":{"rfcNumber":"RFC4758","href":"https://www.rfc-editor.org/rfc/rfc4758","title":"Cryptographic Token Key Initialization Protocol (CT-KIP) Version 1.0 Revision 1","authors":["M. Nystroem"],"rawDate":"2006-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4758","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4759":{"rfcNumber":"RFC4759","href":"https://www.rfc-editor.org/rfc/rfc4759","title":"The ENUM Dip Indicator Parameter for the \"tel\" URI","authors":["R. Stastny","R. Shockey","L. Conroy"],"rawDate":"2006-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc476":{"aliasOf":"rfc0476"},"rfc4760":{"rfcNumber":"RFC4760","href":"https://www.rfc-editor.org/rfc/rfc4760","title":"Multiprotocol Extensions for BGP-4","authors":["T. Bates","R. Chandra","D. Katz","Y. Rekhter"],"rawDate":"2007-01","status":"Draft Standard","updatedBy":["RFC7606"],"obsoletes":["RFC2858"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4760","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4761":{"rfcNumber":"RFC4761","href":"https://www.rfc-editor.org/rfc/rfc4761","title":"Virtual Private LAN Service (VPLS) Using BGP for Auto-Discovery and Signaling","authors":["K. Kompella, Ed.","Y. Rekhter, Ed."],"rawDate":"2007-01","status":"Proposed Standard","updatedBy":["RFC5462","RFC8395","RFC8614"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4762":{"rfcNumber":"RFC4762","href":"https://www.rfc-editor.org/rfc/rfc4762","title":"Virtual Private LAN Service (VPLS) Using Label Distribution Protocol (LDP) Signaling","authors":["M. Lasserre, Ed.","V. Kompella, Ed."],"rawDate":"2007-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4762","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4763":{"rfcNumber":"RFC4763","href":"https://www.rfc-editor.org/rfc/rfc4763","title":"Extensible Authentication Protocol Method for Shared-secret Authentication and Key Establishment (EAP-SAKE)","authors":["M. Vanderveen","H. Soliman"],"rawDate":"2006-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4763","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4764":{"rfcNumber":"RFC4764","href":"https://www.rfc-editor.org/rfc/rfc4764","title":"The EAP-PSK Protocol: A Pre-Shared Key Extensible Authentication Protocol (EAP) Method","authors":["F. Bersani","H. Tschofenig"],"rawDate":"2007-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4765":{"rfcNumber":"RFC4765","href":"https://www.rfc-editor.org/rfc/rfc4765","title":"The Intrusion Detection Message Exchange Format (IDMEF)","authors":["H. Debar","D. Curry","B. Feinstein"],"rawDate":"2007-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4766":{"rfcNumber":"RFC4766","href":"https://www.rfc-editor.org/rfc/rfc4766","title":"Intrusion Detection Message Exchange Requirements","authors":["M. Wood","M. Erlinger"],"rawDate":"2007-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4767":{"rfcNumber":"RFC4767","href":"https://www.rfc-editor.org/rfc/rfc4767","title":"The Intrusion Detection Exchange Protocol (IDXP)","authors":["B. Feinstein","G. Matthews"],"rawDate":"2007-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4768":{"rfcNumber":"RFC4768","href":"https://www.rfc-editor.org/rfc/rfc4768","title":"Desired Enhancements to Generic Security Services Application Program Interface (GSS-API) Version 3 Naming","authors":["S. Hartman"],"rawDate":"2006-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4769":{"rfcNumber":"RFC4769","href":"https://www.rfc-editor.org/rfc/rfc4769","title":"IANA Registration for an Enumservice Containing Public Switched Telephone Network (PSTN) Signaling Information","authors":["J. Livingood","R. Shockey"],"rawDate":"2006-11","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc477":{"aliasOf":"rfc0477"},"rfc4770":{"rfcNumber":"RFC4770","href":"https://www.rfc-editor.org/rfc/rfc4770","title":"vCard Extensions for Instant Messaging (IM)","authors":["C. Jennings","J. Reschke, Ed."],"rawDate":"2007-01","status":"Proposed Standard","obsoletedBy":["RFC6350"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4771":{"rfcNumber":"RFC4771","href":"https://www.rfc-editor.org/rfc/rfc4771","title":"Integrity Transform Carrying Roll-Over Counter for the Secure Real-time Transport Protocol (SRTP)","authors":["V. Lehtovirta","M. Naslund","K. Norrman"],"rawDate":"2007-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4771","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4772":{"rfcNumber":"RFC4772","href":"https://www.rfc-editor.org/rfc/rfc4772","title":"Security Implications of Using the Data Encryption Standard (DES)","authors":["S. Kelly"],"rawDate":"2006-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4773":{"rfcNumber":"RFC4773","href":"https://www.rfc-editor.org/rfc/rfc4773","title":"Administration of the IANA Special Purpose IPv6 Address Block","authors":["G. Huston"],"rawDate":"2006-12","status":"Informational","obsoletedBy":["RFC6890"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4774":{"rfcNumber":"RFC4774","href":"https://www.rfc-editor.org/rfc/rfc4774","title":"Specifying Alternate Semantics for the Explicit Congestion Notification (ECN) Field","authors":["S. Floyd"],"rawDate":"2006-11","status":"Best Current Practice","updatedBy":["RFC6040"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4775":{"rfcNumber":"RFC4775","href":"https://www.rfc-editor.org/rfc/rfc4775","title":"Procedures for Protocol Extensions and Variations","authors":["S. Bradner","B. Carpenter, Ed.","T. Narten"],"rawDate":"2006-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4776":{"rfcNumber":"RFC4776","href":"https://www.rfc-editor.org/rfc/rfc4776","title":"Dynamic Host Configuration Protocol (DHCPv4 and DHCPv6) Option for Civic Addresses Configuration Information","authors":["H. Schulzrinne"],"rawDate":"2006-11","status":"Proposed Standard","updatedBy":["RFC5774","RFC6848"],"obsoletes":["RFC4676"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4777":{"rfcNumber":"RFC4777","href":"https://www.rfc-editor.org/rfc/rfc4777","title":"IBM's iSeries Telnet Enhancements","authors":["T. Murphy Jr.","P. Rieth","J. Stevens"],"rawDate":"2006-11","status":"Informational","obsoletes":["RFC2877"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4778":{"rfcNumber":"RFC4778","href":"https://www.rfc-editor.org/rfc/rfc4778","title":"Operational Security Current Practices in Internet Service Provider Environments","authors":["M. Kaeo"],"rawDate":"2007-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4778","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4779":{"rfcNumber":"RFC4779","href":"https://www.rfc-editor.org/rfc/rfc4779","title":"ISP IPv6 Deployment Scenarios in Broadband Access Networks","authors":["S. Asadullah","A. Ahmed","C. Popoviciu","P. Savola","J. Palet"],"rawDate":"2007-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4779","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc478":{"aliasOf":"rfc0478"},"rfc4780":{"rfcNumber":"RFC4780","href":"https://www.rfc-editor.org/rfc/rfc4780","title":"Management Information Base for the Session Initiation Protocol (SIP)","authors":["K. Lingle","J-F. Mule","J. Maeng","D. Walker"],"rawDate":"2007-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4781":{"rfcNumber":"RFC4781","href":"https://www.rfc-editor.org/rfc/rfc4781","title":"Graceful Restart Mechanism for BGP with MPLS","authors":["Y. Rekhter","R. Aggarwal"],"rawDate":"2007-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4782":{"rfcNumber":"RFC4782","href":"https://www.rfc-editor.org/rfc/rfc4782","title":"Quick-Start for TCP and IP","authors":["S. Floyd","M. Allman","A. Jain","P. Sarolahti"],"rawDate":"2007-01","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4782","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4783":{"rfcNumber":"RFC4783","href":"https://www.rfc-editor.org/rfc/rfc4783","title":"GMPLS - Communication of Alarm Information","authors":["L. Berger, Ed."],"rawDate":"2006-12","status":"Proposed Standard","updates":["RFC3473"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4783","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4784":{"rfcNumber":"RFC4784","href":"https://www.rfc-editor.org/rfc/rfc4784","title":"Verizon Wireless Dynamic Mobile IP Key Update for cdma2000(R) Networks","authors":["C. Carroll","F. Quick"],"rawDate":"2007-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4785":{"rfcNumber":"RFC4785","href":"https://www.rfc-editor.org/rfc/rfc4785","title":"Pre-Shared Key (PSK) Ciphersuites with NULL Encryption for Transport Layer Security (TLS)","authors":["U. Blumenthal","P. Goel"],"rawDate":"2007-01","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4786":{"rfcNumber":"RFC4786","href":"https://www.rfc-editor.org/rfc/rfc4786","title":"Operation of Anycast Services","authors":["J. Abley","K. Lindqvist"],"rawDate":"2006-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4787":{"rfcNumber":"RFC4787","href":"https://www.rfc-editor.org/rfc/rfc4787","title":"Network Address Translation (NAT) Behavioral Requirements for Unicast UDP","authors":["F. Audet, Ed.","C. Jennings"],"rawDate":"2007-01","status":"Best Current Practice","updatedBy":["RFC6888","RFC7857"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4788":{"rfcNumber":"RFC4788","href":"https://www.rfc-editor.org/rfc/rfc4788","title":"Enhancements to RTP Payload Formats for EVRC Family Codecs","authors":["Q. Xie","R. Kapoor"],"rawDate":"2007-01","status":"Proposed Standard","updatedBy":["RFC5188"],"updates":["RFC3558"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4789":{"rfcNumber":"RFC4789","href":"https://www.rfc-editor.org/rfc/rfc4789","title":"Simple Network Management Protocol (SNMP) over IEEE 802 Networks","authors":["J. Schoenwaelder","T. Jeffree"],"rawDate":"2006-11","status":"Proposed Standard","updates":["RFC3417"],"obsoletes":["RFC1089"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc479":{"aliasOf":"rfc0479"},"rfc4790":{"rfcNumber":"RFC4790","href":"https://www.rfc-editor.org/rfc/rfc4790","title":"Internet Application Protocol Collation Registry","authors":["C. Newman","M. Duerst","A. Gulbrandsen"],"rawDate":"2007-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4790","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4791":{"rfcNumber":"RFC4791","href":"https://www.rfc-editor.org/rfc/rfc4791","title":"Calendaring Extensions to WebDAV (CalDAV)","authors":["C. Daboo","B. Desruisseaux","L. Dusseault"],"rawDate":"2007-03","status":"Proposed Standard","updatedBy":["RFC5689","RFC6638","RFC6764","RFC7809","RFC7953","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4791","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4792":{"rfcNumber":"RFC4792","href":"https://www.rfc-editor.org/rfc/rfc4792","title":"Encoding Instructions for the Generic String Encoding Rules (GSER)","authors":["S. Legg"],"rawDate":"2007-01","status":"Proposed Standard","updates":["RFC3641"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4793":{"rfcNumber":"RFC4793","href":"https://www.rfc-editor.org/rfc/rfc4793","title":"The EAP Protected One-Time Password Protocol (EAP-POTP)","authors":["M. Nystroem"],"rawDate":"2007-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4794":{"rfcNumber":"RFC4794","href":"https://www.rfc-editor.org/rfc/rfc4794","title":"RFC 1264 Is Obsolete","authors":["B. Fenner"],"rawDate":"2006-12","status":"Informational","obsoletes":["RFC1264"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4795":{"rfcNumber":"RFC4795","href":"https://www.rfc-editor.org/rfc/rfc4795","title":"Link-local Multicast Name Resolution (LLMNR)","authors":["B. Aboba","D. Thaler","L. Esibov"],"rawDate":"2007-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4795","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4796":{"rfcNumber":"RFC4796","href":"https://www.rfc-editor.org/rfc/rfc4796","title":"The Session Description Protocol (SDP) Content Attribute","authors":["J. Hautakorpi","G. Camarillo"],"rawDate":"2007-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4797":{"rfcNumber":"RFC4797","href":"https://www.rfc-editor.org/rfc/rfc4797","title":"Use of Provider Edge to Provider Edge (PE-PE) Generic Routing Encapsulation (GRE) or IP in BGP/MPLS IP Virtual Private Networks","authors":["Y. Rekhter","R. Bonica","E. Rosen"],"rawDate":"2007-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4798":{"rfcNumber":"RFC4798","href":"https://www.rfc-editor.org/rfc/rfc4798","title":"Connecting IPv6 Islands over IPv4 MPLS Using IPv6 Provider Edge Routers (6PE)","authors":["J. De Clercq","D. Ooms","S. Prevost","F. Le Faucheur"],"rawDate":"2007-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc48":{"aliasOf":"rfc0048"},"rfc480":{"aliasOf":"rfc0480"},"rfc4801":{"rfcNumber":"RFC4801","href":"https://www.rfc-editor.org/rfc/rfc4801","title":"Definitions of Textual Conventions for Generalized Multiprotocol Label Switching (GMPLS) Management","authors":["T. Nadeau, Ed.","A. Farrel, Ed."],"rawDate":"2007-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4802":{"rfcNumber":"RFC4802","href":"https://www.rfc-editor.org/rfc/rfc4802","title":"Generalized Multiprotocol Label Switching (GMPLS) Traffic Engineering Management Information Base","authors":["T. Nadeau, Ed.","A. Farrel, Ed."],"rawDate":"2007-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4803":{"rfcNumber":"RFC4803","href":"https://www.rfc-editor.org/rfc/rfc4803","title":"Generalized Multiprotocol Label Switching (GMPLS) Label Switching Router (LSR) Management Information Base","authors":["T. Nadeau, Ed.","A. Farrel, Ed."],"rawDate":"2007-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4803","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4804":{"rfcNumber":"RFC4804","href":"https://www.rfc-editor.org/rfc/rfc4804","title":"Aggregation of Resource ReSerVation Protocol (RSVP) Reservations over MPLS TE/DS-TE Tunnels","authors":["F. Le Faucheur, Ed."],"rawDate":"2007-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4804","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4805":{"rfcNumber":"RFC4805","href":"https://www.rfc-editor.org/rfc/rfc4805","title":"Definitions of Managed Objects for the DS1, J1, E1, DS2, and E2 Interface Types","authors":["O. Nicklass, Ed."],"rawDate":"2007-03","status":"Proposed Standard","obsoletes":["RFC3895"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4806":{"rfcNumber":"RFC4806","href":"https://www.rfc-editor.org/rfc/rfc4806","title":"Online Certificate Status Protocol (OCSP) Extensions to IKEv2","authors":["M. Myers","H. Tschofenig"],"rawDate":"2007-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4807":{"rfcNumber":"RFC4807","href":"https://www.rfc-editor.org/rfc/rfc4807","title":"IPsec Security Policy Database Configuration MIB","authors":["M. Baer","R. Charlet","W. Hardaker","R. Story","C. Wang"],"rawDate":"2007-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4807","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4808":{"rfcNumber":"RFC4808","href":"https://www.rfc-editor.org/rfc/rfc4808","title":"Key Change Strategies for TCP-MD5","authors":["S. Bellovin"],"rawDate":"2007-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4809":{"rfcNumber":"RFC4809","href":"https://www.rfc-editor.org/rfc/rfc4809","title":"Requirements for an IPsec Certificate Management Profile","authors":["C. Bonatti, Ed.","S. Turner, Ed.","G. Lebovitz, Ed."],"rawDate":"2007-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4810":{"rfcNumber":"RFC4810","href":"https://www.rfc-editor.org/rfc/rfc4810","title":"Long-Term Archive Service Requirements","authors":["C. Wallace","U. Pordesch","R. Brandner"],"rawDate":"2007-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4811":{"rfcNumber":"RFC4811","href":"https://www.rfc-editor.org/rfc/rfc4811","title":"OSPF Out-of-Band Link State Database (LSDB) Resynchronization","authors":["L. Nguyen","A. Roy","A. Zinin"],"rawDate":"2007-03","status":"Informational","updatedBy":["RFC9454"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4812":{"rfcNumber":"RFC4812","href":"https://www.rfc-editor.org/rfc/rfc4812","title":"OSPF Restart Signaling","authors":["L. Nguyen","A. Roy","A. Zinin"],"rawDate":"2007-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4812","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4813":{"rfcNumber":"RFC4813","href":"https://www.rfc-editor.org/rfc/rfc4813","title":"OSPF Link-Local Signaling","authors":["B. Friedman","L. Nguyen","A. Roy","D. Yeung","A. Zinin"],"rawDate":"2007-03","status":"Experimental","obsoletedBy":["RFC5613"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4814":{"rfcNumber":"RFC4814","href":"https://www.rfc-editor.org/rfc/rfc4814","title":"Hash and Stuffing: Overlooked Factors in Network Device Benchmarking","authors":["D. Newman","T. Player"],"rawDate":"2007-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4815":{"rfcNumber":"RFC4815","href":"https://www.rfc-editor.org/rfc/rfc4815","title":"RObust Header Compression (ROHC): Corrections and Clarifications to RFC 3095","authors":["L-E. Jonsson","K. Sandlund","G. Pelletier","P. Kremer"],"rawDate":"2007-02","status":"Proposed Standard","updates":["RFC3095","RFC3241","RFC3843","RFC4019","RFC4362"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4816":{"rfcNumber":"RFC4816","href":"https://www.rfc-editor.org/rfc/rfc4816","title":"Pseudowire Emulation Edge-to-Edge (PWE3) Asynchronous Transfer Mode (ATM) Transparent Cell Transport Service","authors":["A. Malis","L. Martini","J. Brayley","T. Walsh"],"rawDate":"2007-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4817":{"rfcNumber":"RFC4817","href":"https://www.rfc-editor.org/rfc/rfc4817","title":"Encapsulation of MPLS over Layer 2 Tunneling Protocol Version 3","authors":["M. Townsley","C. Pignataro","S. Wainner","T. Seely","J. Young"],"rawDate":"2007-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4818":{"rfcNumber":"RFC4818","href":"https://www.rfc-editor.org/rfc/rfc4818","title":"RADIUS Delegated-IPv6-Prefix Attribute","authors":["J. Salowey","R. Droms"],"rawDate":"2007-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4819":{"rfcNumber":"RFC4819","href":"https://www.rfc-editor.org/rfc/rfc4819","title":"Secure Shell Public Key Subsystem","authors":["J. Galbraith","J. Van Dyke","J. Bright"],"rawDate":"2007-03","status":"Proposed Standard","updatedBy":["RFC9519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc482":{"aliasOf":"rfc0482"},"rfc4820":{"rfcNumber":"RFC4820","href":"https://www.rfc-editor.org/rfc/rfc4820","title":"Padding Chunk and Parameter for the Stream Control Transmission Protocol (SCTP)","authors":["M. Tuexen","R. Stewart","P. Lei"],"rawDate":"2007-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4820","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4821":{"rfcNumber":"RFC4821","href":"https://www.rfc-editor.org/rfc/rfc4821","title":"Packetization Layer Path MTU Discovery","authors":["M. Mathis","J. Heffner"],"rawDate":"2007-03","status":"Proposed Standard","updatedBy":["RFC8899"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4821","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4822":{"rfcNumber":"RFC4822","href":"https://www.rfc-editor.org/rfc/rfc4822","title":"RIPv2 Cryptographic Authentication","authors":["R. Atkinson","M. Fanto"],"rawDate":"2007-02","status":"Proposed Standard","updates":["RFC2453"],"obsoletes":["RFC2082"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4823":{"rfcNumber":"RFC4823","href":"https://www.rfc-editor.org/rfc/rfc4823","title":"FTP Transport for Secure Peer-to-Peer Business Data Interchange over the Internet","authors":["T. Harding","R. Scott"],"rawDate":"2007-04","status":"Informational","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4823","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4824":{"rfcNumber":"RFC4824","href":"https://www.rfc-editor.org/rfc/rfc4824","title":"The Transmission of IP Datagrams over the Semaphore Flag Signaling System (SFSS)","authors":["J. Hofmueller, Ed.","A. Bachmann, Ed.","IO. zmoelnig, Ed."],"rawDate":"2007-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4824","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4825":{"rfcNumber":"RFC4825","href":"https://www.rfc-editor.org/rfc/rfc4825","title":"The Extensible Markup Language (XML) Configuration Access Protocol (XCAP)","authors":["J. Rosenberg"],"rawDate":"2007-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4826":{"rfcNumber":"RFC4826","href":"https://www.rfc-editor.org/rfc/rfc4826","title":"Extensible Markup Language (XML) Formats for Representing Resource Lists","authors":["J. Rosenberg"],"rawDate":"2007-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4826","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4827":{"rfcNumber":"RFC4827","href":"https://www.rfc-editor.org/rfc/rfc4827","title":"An Extensible Markup Language (XML) Configuration Access Protocol (XCAP) Usage for Manipulating Presence Document Contents","authors":["M. Isomaki","E. Leppanen"],"rawDate":"2007-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4827","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4828":{"rfcNumber":"RFC4828","href":"https://www.rfc-editor.org/rfc/rfc4828","title":"TCP Friendly Rate Control (TFRC): The Small-Packet (SP) Variant","authors":["S. Floyd","E. Kohler"],"rawDate":"2007-04","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4828","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4829":{"rfcNumber":"RFC4829","href":"https://www.rfc-editor.org/rfc/rfc4829","title":"Label Switched Path (LSP) Preemption Policies for MPLS Traffic Engineering","authors":["J. de Oliveira, Ed.","JP. Vasseur, Ed.","L. Chen","C. Scoglio"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc483":{"aliasOf":"rfc0483"},"rfc4830":{"rfcNumber":"RFC4830","href":"https://www.rfc-editor.org/rfc/rfc4830","title":"Problem Statement for Network-Based Localized Mobility Management (NETLMM)","authors":["J. Kempf, Ed."],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4831":{"rfcNumber":"RFC4831","href":"https://www.rfc-editor.org/rfc/rfc4831","title":"Goals for Network-Based Localized Mobility Management (NETLMM)","authors":["J. Kempf, Ed."],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4832":{"rfcNumber":"RFC4832","href":"https://www.rfc-editor.org/rfc/rfc4832","title":"Security Threats to Network-Based Localized Mobility Management (NETLMM)","authors":["C. Vogt","J. Kempf"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4833":{"rfcNumber":"RFC4833","href":"https://www.rfc-editor.org/rfc/rfc4833","title":"Timezone Options for DHCP","authors":["E. Lear","P. Eggert"],"rawDate":"2007-04","status":"Proposed Standard","updates":["RFC2132"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4834":{"rfcNumber":"RFC4834","href":"https://www.rfc-editor.org/rfc/rfc4834","title":"Requirements for Multicast in Layer 3 Provider-Provisioned Virtual Private Networks (PPVPNs)","authors":["T. Morin, Ed."],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4835":{"rfcNumber":"RFC4835","href":"https://www.rfc-editor.org/rfc/rfc4835","title":"Cryptographic Algorithm Implementation Requirements for Encapsulating Security Payload (ESP) and Authentication Header (AH)","authors":["V. Manral"],"rawDate":"2007-04","status":"Proposed Standard","obsoletedBy":["RFC7321"],"obsoletes":["RFC4305"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4836":{"rfcNumber":"RFC4836","href":"https://www.rfc-editor.org/rfc/rfc4836","title":"Definitions of Managed Objects for IEEE 802.3 Medium Attachment Units (MAUs)","authors":["E. Beili"],"rawDate":"2007-04","status":"Proposed Standard","obsoletes":["RFC3636"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4836","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4837":{"rfcNumber":"RFC4837","href":"https://www.rfc-editor.org/rfc/rfc4837","title":"Managed Objects of Ethernet Passive Optical Networks (EPON)","authors":["L. Khermosh"],"rawDate":"2007-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4838":{"rfcNumber":"RFC4838","href":"https://www.rfc-editor.org/rfc/rfc4838","title":"Delay-Tolerant Networking Architecture","authors":["V. Cerf","S. Burleigh","A. Hooke","L. Torgerson","R. Durst","K. Scott","K. Fall","H. Weiss"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4839":{"rfcNumber":"RFC4839","href":"https://www.rfc-editor.org/rfc/rfc4839","title":"Media Type Registrations for the Open eBook Publication Structure (OEBPS) Package File (OPF)","authors":["G. Conboy","J. Rivlin","J. Ferraiolo"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4840":{"rfcNumber":"RFC4840","href":"https://www.rfc-editor.org/rfc/rfc4840","title":"Multiple Encapsulation Methods Considered Harmful","authors":["B. Aboba, Ed.","E. Davies","D. Thaler"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4841":{"rfcNumber":"RFC4841","href":"https://www.rfc-editor.org/rfc/rfc4841","title":"RFC 4181 Update to Recognize the IETF Trust","authors":["C. Heard, Ed."],"rawDate":"2007-03","status":"Best Current Practice","updates":["RFC4181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4842":{"rfcNumber":"RFC4842","href":"https://www.rfc-editor.org/rfc/rfc4842","title":"Synchronous Optical Network/Synchronous Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet (CEP)","authors":["A. Malis","P. Pate","R. Cohen, Ed.","D. Zelig"],"rawDate":"2007-04","status":"Proposed Standard","obsoletes":["RFC5143"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4842","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4843":{"rfcNumber":"RFC4843","href":"https://www.rfc-editor.org/rfc/rfc4843","title":"An IPv6 Prefix for Overlay Routable Cryptographic Hash Identifiers (ORCHID)","authors":["P. Nikander","J. Laganier","F. Dupont"],"rawDate":"2007-04","status":"Experimental","obsoletedBy":["RFC7343"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4844":{"rfcNumber":"RFC4844","href":"https://www.rfc-editor.org/rfc/rfc4844","title":"The RFC Series and RFC Editor","authors":["L. Daigle, Ed.","Internet Architecture Board"],"rawDate":"2007-07","status":"Informational","updatedBy":["RFC5741"],"obsoletedBy":["RFC8729"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4845":{"rfcNumber":"RFC4845","href":"https://www.rfc-editor.org/rfc/rfc4845","title":"Process for Publication of IAB RFCs","authors":["L. Daigle, Ed.","Internet Architecture Board"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4846":{"rfcNumber":"RFC4846","href":"https://www.rfc-editor.org/rfc/rfc4846","title":"Independent Submissions to the RFC Editor","authors":["J. Klensin, Ed.","D. Thaler, Ed."],"rawDate":"2007-07","status":"Informational","updatedBy":["RFC5744"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4847":{"rfcNumber":"RFC4847","href":"https://www.rfc-editor.org/rfc/rfc4847","title":"Framework and Requirements for Layer 1 Virtual Private Networks","authors":["T. Takeda, Ed."],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4848":{"rfcNumber":"RFC4848","href":"https://www.rfc-editor.org/rfc/rfc4848","title":"Domain-Based Application Service Location Using URIs and the Dynamic Delegation Discovery Service (DDDS)","authors":["L. Daigle"],"rawDate":"2007-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4848","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4849":{"rfcNumber":"RFC4849","href":"https://www.rfc-editor.org/rfc/rfc4849","title":"RADIUS Filter Rule Attribute","authors":["P. Congdon","M. Sanchez","B. Aboba"],"rawDate":"2007-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc485":{"aliasOf":"rfc0485"},"rfc4850":{"rfcNumber":"RFC4850","href":"https://www.rfc-editor.org/rfc/rfc4850","title":"Declarative Public Extension Key for Internet Small Computer Systems Interface (iSCSI) Node Architecture","authors":["D. Wysochanski"],"rawDate":"2007-04","status":"Proposed Standard","obsoletedBy":["RFC7143"],"updates":["RFC3720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4851":{"rfcNumber":"RFC4851","href":"https://www.rfc-editor.org/rfc/rfc4851","title":"The Flexible Authentication via Secure Tunneling Extensible Authentication Protocol Method (EAP-FAST)","authors":["N. Cam-Winget","D. McGrew","J. Salowey","H. Zhou"],"rawDate":"2007-05","status":"Informational","updatedBy":["RFC8996","RFC9427"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4851","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4852":{"rfcNumber":"RFC4852","href":"https://www.rfc-editor.org/rfc/rfc4852","title":"IPv6 Enterprise Network Analysis - IP Layer 3 Focus","authors":["J. Bound","Y. Pouffary","S. Klynsma","T. Chown","D. Green"],"rawDate":"2007-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4852","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4853":{"rfcNumber":"RFC4853","href":"https://www.rfc-editor.org/rfc/rfc4853","title":"Cryptographic Message Syntax (CMS) Multiple Signer Clarification","authors":["R. Housley"],"rawDate":"2007-04","status":"Proposed Standard","updates":["RFC3852"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4853","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4854":{"rfcNumber":"RFC4854","href":"https://www.rfc-editor.org/rfc/rfc4854","title":"A Uniform Resource Name (URN) Namespace for Extensions to the Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4855":{"rfcNumber":"RFC4855","href":"https://www.rfc-editor.org/rfc/rfc4855","title":"Media Type Registration of RTP Payload Formats","authors":["S. Casner"],"rawDate":"2007-02","status":"Proposed Standard","updatedBy":["RFC8851"],"obsoletes":["RFC3555"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4856":{"rfcNumber":"RFC4856","href":"https://www.rfc-editor.org/rfc/rfc4856","title":"Media Type Registration of Payload Formats in the RTP Profile for Audio and Video Conferences","authors":["S. Casner"],"rawDate":"2007-02","status":"Proposed Standard","obsoletes":["RFC3555"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4856","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4857":{"rfcNumber":"RFC4857","href":"https://www.rfc-editor.org/rfc/rfc4857","title":"Mobile IPv4 Regional Registration","authors":["E. Fogelstroem","A. Jonsson","C. Perkins"],"rawDate":"2007-06","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4857","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4858":{"rfcNumber":"RFC4858","href":"https://www.rfc-editor.org/rfc/rfc4858","title":"Document Shepherding from Working Group Last Call to Publication","authors":["H. Levkowetz","D. Meyer","L. Eggert","A. Mankin"],"rawDate":"2007-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4859":{"rfcNumber":"RFC4859","href":"https://www.rfc-editor.org/rfc/rfc4859","title":"Codepoint Registry for the Flags Field in the Resource Reservation Protocol-Traffic Engineering (RSVP-TE) Session Attribute Object","authors":["A. Farrel"],"rawDate":"2007-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc486":{"aliasOf":"rfc0486"},"rfc4860":{"rfcNumber":"RFC4860","href":"https://www.rfc-editor.org/rfc/rfc4860","title":"Generic Aggregate Resource ReSerVation Protocol (RSVP) Reservations","authors":["F. Le Faucheur","B. Davie","P. Bose","C. Christou","M. Davenport"],"rawDate":"2007-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4861":{"rfcNumber":"RFC4861","href":"https://www.rfc-editor.org/rfc/rfc4861","title":"Neighbor Discovery for IP version 6 (IPv6)","authors":["T. Narten","E. Nordmark","W. Simpson","H. Soliman"],"rawDate":"2007-09","status":"Draft Standard","updatedBy":["RFC5942","RFC6980","RFC7048","RFC7527","RFC7559","RFC8028","RFC8319","RFC8425","RFC9131"],"obsoletes":["RFC2461"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4861","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4862":{"rfcNumber":"RFC4862","href":"https://www.rfc-editor.org/rfc/rfc4862","title":"IPv6 Stateless Address Autoconfiguration","authors":["S. Thomson","T. Narten","T. Jinmei"],"rawDate":"2007-09","status":"Draft Standard","updatedBy":["RFC7527"],"obsoletes":["RFC2462"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4862","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4863":{"rfcNumber":"RFC4863","href":"https://www.rfc-editor.org/rfc/rfc4863","title":"Wildcard Pseudowire Type","authors":["L. Martini","G. Swallow"],"rawDate":"2007-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4864":{"rfcNumber":"RFC4864","href":"https://www.rfc-editor.org/rfc/rfc4864","title":"Local Network Protection for IPv6","authors":["G. Van de Velde","T. Hain","R. Droms","B. Carpenter","E. Klein"],"rawDate":"2007-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4865":{"rfcNumber":"RFC4865","href":"https://www.rfc-editor.org/rfc/rfc4865","title":"SMTP Submission Service Extension for Future Message Release","authors":["G. White","G. Vaudreuil"],"rawDate":"2007-05","status":"Proposed Standard","updates":["RFC3463","RFC3464"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4865","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4866":{"rfcNumber":"RFC4866","href":"https://www.rfc-editor.org/rfc/rfc4866","title":"Enhanced Route Optimization for Mobile IPv6","authors":["J. Arkko","C. Vogt","W. Haddad"],"rawDate":"2007-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4866","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4867":{"rfcNumber":"RFC4867","href":"https://www.rfc-editor.org/rfc/rfc4867","title":"RTP Payload Format and File Storage Format for the Adaptive Multi-Rate (AMR) and Adaptive Multi-Rate Wideband (AMR-WB) Audio Codecs","authors":["J. Sjoberg","M. Westerlund","A. Lakaniemi","Q. Xie"],"rawDate":"2007-04","status":"Proposed Standard","obsoletes":["RFC3267"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4867","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4868":{"rfcNumber":"RFC4868","href":"https://www.rfc-editor.org/rfc/rfc4868","title":"Using HMAC-SHA-256, HMAC-SHA-384, and HMAC-SHA-512 with IPsec","authors":["S. Kelly","S. Frankel"],"rawDate":"2007-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4868","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4869":{"rfcNumber":"RFC4869","href":"https://www.rfc-editor.org/rfc/rfc4869","title":"Suite B Cryptographic Suites for IPsec","authors":["L. Law","J. Solinas"],"rawDate":"2007-05","status":"Historic","obsoletedBy":["RFC6379"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc487":{"aliasOf":"rfc0487"},"rfc4870":{"rfcNumber":"RFC4870","href":"https://www.rfc-editor.org/rfc/rfc4870","title":"Domain-Based Email Authentication Using Public Keys Advertised in the DNS (DomainKeys)","authors":["M. Delany"],"rawDate":"2007-05","status":"Historic","obsoletedBy":["RFC4871"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4871":{"rfcNumber":"RFC4871","href":"https://www.rfc-editor.org/rfc/rfc4871","title":"DomainKeys Identified Mail (DKIM) Signatures","authors":["E. Allman","J. Callas","M. Delany","M. Libbey","J. Fenton","M. Thomas"],"rawDate":"2007-05","status":"Proposed Standard","updatedBy":["RFC5672"],"obsoletedBy":["RFC6376"],"obsoletes":["RFC4870"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4871","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4872":{"rfcNumber":"RFC4872","href":"https://www.rfc-editor.org/rfc/rfc4872","title":"RSVP-TE Extensions in Support of End-to-End Generalized Multi-Protocol Label Switching (GMPLS) Recovery","authors":["J.P. Lang, Ed.","Y. Rekhter, Ed.","D. Papadimitriou, Ed."],"rawDate":"2007-05","status":"Proposed Standard","updatedBy":["RFC4873","RFC6780","RFC9270"],"updates":["RFC3471"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4872","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4873":{"rfcNumber":"RFC4873","href":"https://www.rfc-editor.org/rfc/rfc4873","title":"GMPLS Segment Recovery","authors":["L. Berger","I. Bryskin","D. Papadimitriou","A. Farrel"],"rawDate":"2007-05","status":"Proposed Standard","updatedBy":["RFC9270"],"updates":["RFC3473","RFC4872"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4873","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4874":{"rfcNumber":"RFC4874","href":"https://www.rfc-editor.org/rfc/rfc4874","title":"Exclude Routes - Extension to Resource ReserVation Protocol-Traffic Engineering (RSVP-TE)","authors":["CY. Lee","A. Farrel","S. De Cnodder"],"rawDate":"2007-04","status":"Proposed Standard","updatedBy":["RFC6001","RFC8390"],"updates":["RFC3209","RFC3473"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4874","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4875":{"rfcNumber":"RFC4875","href":"https://www.rfc-editor.org/rfc/rfc4875","title":"Extensions to Resource Reservation Protocol - Traffic Engineering (RSVP-TE) for Point-to-Multipoint TE Label Switched Paths (LSPs)","authors":["R. Aggarwal, Ed.","D. Papadimitriou, Ed.","S. Yasukawa, Ed."],"rawDate":"2007-05","status":"Proposed Standard","updatedBy":["RFC6510"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4875","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4876":{"rfcNumber":"RFC4876","href":"https://www.rfc-editor.org/rfc/rfc4876","title":"A Configuration Profile Schema for Lightweight Directory Access Protocol (LDAP)-Based Agents","authors":["B. Neal-Joslin, Ed.","L. Howard","M. Ansari"],"rawDate":"2007-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4876","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4877":{"rfcNumber":"RFC4877","href":"https://www.rfc-editor.org/rfc/rfc4877","title":"Mobile IPv6 Operation with IKEv2 and the Revised IPsec Architecture","authors":["V. Devarapalli","F. Dupont"],"rawDate":"2007-04","status":"Proposed Standard","updates":["RFC3776"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4877","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4878":{"rfcNumber":"RFC4878","href":"https://www.rfc-editor.org/rfc/rfc4878","title":"Definitions and Managed Objects for Operations, Administration, and Maintenance (OAM) Functions on Ethernet-Like Interfaces","authors":["M. Squire"],"rawDate":"2007-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4879":{"rfcNumber":"RFC4879","href":"https://www.rfc-editor.org/rfc/rfc4879","title":"Clarification of the Third Party Disclosure Procedure in RFC 3979","authors":["T. Narten"],"rawDate":"2007-04","status":"Best Current Practice","obsoletedBy":["RFC8179"],"updates":["RFC3979"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc488":{"aliasOf":"rfc0488"},"rfc4880":{"rfcNumber":"RFC4880","href":"https://www.rfc-editor.org/rfc/rfc4880","title":"OpenPGP Message Format","authors":["J. Callas","L. Donnerhacke","H. Finney","D. Shaw","R. Thayer"],"rawDate":"2007-11","status":"Proposed Standard","updatedBy":["RFC5581"],"obsoletes":["RFC1991","RFC2440"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4880","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4881":{"rfcNumber":"RFC4881","href":"https://www.rfc-editor.org/rfc/rfc4881","title":"Low-Latency Handoffs in Mobile IPv4","authors":["K. El Malki, Ed."],"rawDate":"2007-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4882":{"rfcNumber":"RFC4882","href":"https://www.rfc-editor.org/rfc/rfc4882","title":"IP Address Location Privacy and Mobile IPv6: Problem Statement","authors":["R. Koodli"],"rawDate":"2007-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4883":{"rfcNumber":"RFC4883","href":"https://www.rfc-editor.org/rfc/rfc4883","title":"Benchmarking Terminology for Resource Reservation Capable Routers","authors":["G. Feher","K. Nemeth","A. Korn","I. Cselenyi"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4884":{"rfcNumber":"RFC4884","href":"https://www.rfc-editor.org/rfc/rfc4884","title":"Extended ICMP to Support Multi-Part Messages","authors":["R. Bonica","D. Gan","D. Tappan","C. Pignataro"],"rawDate":"2007-04","status":"Proposed Standard","updatedBy":["RFC8335"],"updates":["RFC0792","RFC4443"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4884","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4885":{"rfcNumber":"RFC4885","href":"https://www.rfc-editor.org/rfc/rfc4885","title":"Network Mobility Support Terminology","authors":["T. Ernst","H-Y. Lach"],"rawDate":"2007-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4885","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4886":{"rfcNumber":"RFC4886","href":"https://www.rfc-editor.org/rfc/rfc4886","title":"Network Mobility Support Goals and Requirements","authors":["T. Ernst"],"rawDate":"2007-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4886","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4887":{"rfcNumber":"RFC4887","href":"https://www.rfc-editor.org/rfc/rfc4887","title":"Network Mobility Home Network Models","authors":["P. Thubert","R. Wakikawa","V. Devarapalli"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4888":{"rfcNumber":"RFC4888","href":"https://www.rfc-editor.org/rfc/rfc4888","title":"Network Mobility Route Optimization Problem Statement","authors":["C. Ng","P. Thubert","M. Watari","F. Zhao"],"rawDate":"2007-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4888","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4889":{"rfcNumber":"RFC4889","href":"https://www.rfc-editor.org/rfc/rfc4889","title":"Network Mobility Route Optimization Solution Space Analysis","authors":["C. Ng","F. Zhao","M. Watari","P. Thubert"],"rawDate":"2007-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4889","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc489":{"aliasOf":"rfc0489"},"rfc4890":{"rfcNumber":"RFC4890","href":"https://www.rfc-editor.org/rfc/rfc4890","title":"Recommendations for Filtering ICMPv6 Messages in Firewalls","authors":["E. Davies","J. Mohacsi"],"rawDate":"2007-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4890","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4891":{"rfcNumber":"RFC4891","href":"https://www.rfc-editor.org/rfc/rfc4891","title":"Using IPsec to Secure IPv6-in-IPv4 Tunnels","authors":["R. Graveman","M. Parthasarathy","P. Savola","H. Tschofenig"],"rawDate":"2007-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4892":{"rfcNumber":"RFC4892","href":"https://www.rfc-editor.org/rfc/rfc4892","title":"Requirements for a Mechanism Identifying a Name Server Instance","authors":["S. Woolf","D. Conrad"],"rawDate":"2007-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4893":{"rfcNumber":"RFC4893","href":"https://www.rfc-editor.org/rfc/rfc4893","title":"BGP Support for Four-octet AS Number Space","authors":["Q. Vohra","E. Chen"],"rawDate":"2007-05","status":"Proposed Standard","obsoletedBy":["RFC6793"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4894":{"rfcNumber":"RFC4894","href":"https://www.rfc-editor.org/rfc/rfc4894","title":"Use of Hash Algorithms in Internet Key Exchange (IKE) and IPsec","authors":["P. Hoffman"],"rawDate":"2007-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4895":{"rfcNumber":"RFC4895","href":"https://www.rfc-editor.org/rfc/rfc4895","title":"Authenticated Chunks for the Stream Control Transmission Protocol (SCTP)","authors":["M. Tuexen","R. Stewart","P. Lei","E. Rescorla"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4895","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4896":{"rfcNumber":"RFC4896","href":"https://www.rfc-editor.org/rfc/rfc4896","title":"Signaling Compression (SigComp) Corrections and Clarifications","authors":["A. Surtees","M. West","A.B. Roach"],"rawDate":"2007-06","status":"Proposed Standard","updates":["RFC3320","RFC3321","RFC3485"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4897":{"rfcNumber":"RFC4897","href":"https://www.rfc-editor.org/rfc/rfc4897","title":"Handling Normative References to Standards-Track Documents","authors":["J. Klensin","S. Hartman"],"rawDate":"2007-06","status":"Best Current Practice","updates":["RFC3967"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4897","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4898":{"rfcNumber":"RFC4898","href":"https://www.rfc-editor.org/rfc/rfc4898","title":"TCP Extended Statistics MIB","authors":["M. Mathis","J. Heffner","R. Raghunarayan"],"rawDate":"2007-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc49":{"aliasOf":"rfc0049"},"rfc490":{"aliasOf":"rfc0490"},"rfc4901":{"rfcNumber":"RFC4901","href":"https://www.rfc-editor.org/rfc/rfc4901","title":"Protocol Extensions for Header Compression over MPLS","authors":["J. Ash, Ed.","J. Hand, Ed.","A. Malis, Ed."],"rawDate":"2007-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4902":{"rfcNumber":"RFC4902","href":"https://www.rfc-editor.org/rfc/rfc4902","title":"Integrity, Privacy, and Security in Open Pluggable Edge Services (OPES) for SMTP","authors":["M. Stecher"],"rawDate":"2007-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4903":{"rfcNumber":"RFC4903","href":"https://www.rfc-editor.org/rfc/rfc4903","title":"Multi-Link Subnet Issues","authors":["D. Thaler"],"rawDate":"2007-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4904":{"rfcNumber":"RFC4904","href":"https://www.rfc-editor.org/rfc/rfc4904","title":"Representing Trunk Groups in tel/sip Uniform Resource Identifiers (URIs)","authors":["V. Gurbani","C. Jennings"],"rawDate":"2007-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4905":{"rfcNumber":"RFC4905","href":"https://www.rfc-editor.org/rfc/rfc4905","title":"Encapsulation Methods for Transport of Layer 2 Frames over MPLS Networks","authors":["L. Martini, Ed.","E. Rosen, Ed.","N. El-Aawar, Ed."],"rawDate":"2007-06","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4905","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4906":{"rfcNumber":"RFC4906","href":"https://www.rfc-editor.org/rfc/rfc4906","title":"Transport of Layer 2 Frames Over MPLS","authors":["L. Martini, Ed.","E. Rosen, Ed.","N. El-Aawar, Ed."],"rawDate":"2007-06","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4906","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4907":{"rfcNumber":"RFC4907","href":"https://www.rfc-editor.org/rfc/rfc4907","title":"Architectural Implications of Link Indications","authors":["B. Aboba, Ed."],"rawDate":"2007-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4907","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4908":{"rfcNumber":"RFC4908","href":"https://www.rfc-editor.org/rfc/rfc4908","title":"Multi-homing for small scale fixed network Using Mobile IP and NEMO","authors":["K. Nagami","S. Uda","N. Ogashiwa","H. Esaki","R. Wakikawa","H. Ohnishi"],"rawDate":"2007-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4909":{"rfcNumber":"RFC4909","href":"https://www.rfc-editor.org/rfc/rfc4909","title":"Multimedia Internet KEYing (MIKEY) General Extension Payload for Open Mobile Alliance BCAST LTKM/STKM Transport","authors":["L. Dondeti, Ed.","D. Castleford","F. Hartung"],"rawDate":"2007-06","status":"Informational","obsoletedBy":["RFC5410","RFC6309"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4909","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc491":{"aliasOf":"rfc0491"},"rfc4910":{"rfcNumber":"RFC4910","href":"https://www.rfc-editor.org/rfc/rfc4910","title":"Robust XML Encoding Rules (RXER) for Abstract Syntax Notation One (ASN.1)","authors":["S. Legg","D. Prager"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4911":{"rfcNumber":"RFC4911","href":"https://www.rfc-editor.org/rfc/rfc4911","title":"Encoding Instructions for the Robust XML Encoding Rules (RXER)","authors":["S. Legg"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4912":{"rfcNumber":"RFC4912","href":"https://www.rfc-editor.org/rfc/rfc4912","title":"Abstract Syntax Notation X (ASN.X)","authors":["S. Legg"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4913":{"rfcNumber":"RFC4913","href":"https://www.rfc-editor.org/rfc/rfc4913","title":"Abstract Syntax Notation X (ASN.X) Representation of Encoding Instructions for the Generic String Encoding Rules (GSER)","authors":["S. Legg"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4914":{"rfcNumber":"RFC4914","href":"https://www.rfc-editor.org/rfc/rfc4914","title":"Abstract Syntax Notation X (ASN.X) Representation of Encoding Instructions for the XML Encoding Rules (XER)","authors":["S. Legg"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4915":{"rfcNumber":"RFC4915","href":"https://www.rfc-editor.org/rfc/rfc4915","title":"Multi-Topology (MT) Routing in OSPF","authors":["P. Psenak","S. Mirtorabi","A. Roy","L. Nguyen","P. Pillay-Esnault"],"rawDate":"2007-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4916":{"rfcNumber":"RFC4916","href":"https://www.rfc-editor.org/rfc/rfc4916","title":"Connected Identity in the Session Initiation Protocol (SIP)","authors":["J. Elwell"],"rawDate":"2007-06","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4917":{"rfcNumber":"RFC4917","href":"https://www.rfc-editor.org/rfc/rfc4917","title":"Mobile IPv4 Message String Extension","authors":["V. Sastry","K. Leung","A. Patel"],"rawDate":"2007-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4918":{"rfcNumber":"RFC4918","href":"https://www.rfc-editor.org/rfc/rfc4918","title":"HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)","authors":["L. Dusseault, Ed."],"rawDate":"2007-06","status":"Proposed Standard","updatedBy":["RFC5689"],"obsoletes":["RFC2518"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4918","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4919":{"rfcNumber":"RFC4919","href":"https://www.rfc-editor.org/rfc/rfc4919","title":"IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs): Overview, Assumptions, Problem Statement, and Goals","authors":["N. Kushalnagar","G. Montenegro","C. Schumacher"],"rawDate":"2007-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4919","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc492":{"aliasOf":"rfc0492"},"rfc4920":{"rfcNumber":"RFC4920","href":"https://www.rfc-editor.org/rfc/rfc4920","title":"Crankback Signaling Extensions for MPLS and GMPLS RSVP-TE","authors":["A. Farrel, Ed.","A. Satyanarayana","A. Iwata","N. Fujita","G. Ash"],"rawDate":"2007-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4920","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4923":{"rfcNumber":"RFC4923","href":"https://www.rfc-editor.org/rfc/rfc4923","title":"Quality of Service (QoS) Signaling in a Nested Virtual Private Network","authors":["F. Baker","P. Bose"],"rawDate":"2007-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4924":{"rfcNumber":"RFC4924","href":"https://www.rfc-editor.org/rfc/rfc4924","title":"Reflections on Internet Transparency","authors":["B. Aboba, Ed.","E. Davies"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4925":{"rfcNumber":"RFC4925","href":"https://www.rfc-editor.org/rfc/rfc4925","title":"Softwire Problem Statement","authors":["X. Li, Ed.","S. Dawkins, Ed.","D. Ward, Ed.","A. Durand, Ed."],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4926":{"rfcNumber":"RFC4926","href":"https://www.rfc-editor.org/rfc/rfc4926","title":"A URN Namespace for GEANT","authors":["T. Kalin","M. Molina"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4927":{"rfcNumber":"RFC4927","href":"https://www.rfc-editor.org/rfc/rfc4927","title":"Path Computation Element Communication Protocol (PCECP) Specific Requirements for Inter-Area MPLS and GMPLS Traffic Engineering","authors":["J.-L. Le Roux, Ed."],"rawDate":"2007-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4928":{"rfcNumber":"RFC4928","href":"https://www.rfc-editor.org/rfc/rfc4928","title":"Avoiding Equal Cost Multipath Treatment in MPLS Networks","authors":["G. Swallow","S. Bryant","L. Andersson"],"rawDate":"2007-06","status":"Best Current Practice","updatedBy":["RFC7274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4928","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4929":{"rfcNumber":"RFC4929","href":"https://www.rfc-editor.org/rfc/rfc4929","title":"Change Process for Multiprotocol Label Switching (MPLS) and Generalized MPLS (GMPLS) Protocols and Procedures","authors":["L. Andersson, Ed.","A. Farrel, Ed."],"rawDate":"2007-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc493":{"aliasOf":"rfc0493"},"rfc4930":{"rfcNumber":"RFC4930","href":"https://www.rfc-editor.org/rfc/rfc4930","title":"Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2007-05","status":"Draft Standard","obsoletedBy":["RFC5730"],"obsoletes":["RFC3730"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4931":{"rfcNumber":"RFC4931","href":"https://www.rfc-editor.org/rfc/rfc4931","title":"Extensible Provisioning Protocol (EPP) Domain Name Mapping","authors":["S. Hollenbeck"],"rawDate":"2007-05","status":"Draft Standard","obsoletedBy":["RFC5731"],"obsoletes":["RFC3731"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4932":{"rfcNumber":"RFC4932","href":"https://www.rfc-editor.org/rfc/rfc4932","title":"Extensible Provisioning Protocol (EPP) Host Mapping","authors":["S. Hollenbeck"],"rawDate":"2007-05","status":"Draft Standard","obsoletedBy":["RFC5732"],"obsoletes":["RFC3732"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4933":{"rfcNumber":"RFC4933","href":"https://www.rfc-editor.org/rfc/rfc4933","title":"Extensible Provisioning Protocol (EPP) Contact Mapping","authors":["S. Hollenbeck"],"rawDate":"2007-05","status":"Draft Standard","obsoletedBy":["RFC5733"],"obsoletes":["RFC3733"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4934":{"rfcNumber":"RFC4934","href":"https://www.rfc-editor.org/rfc/rfc4934","title":"Extensible Provisioning Protocol (EPP) Transport Over TCP","authors":["S. Hollenbeck"],"rawDate":"2007-05","status":"Draft Standard","obsoletedBy":["RFC5734"],"obsoletes":["RFC3734"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4935":{"rfcNumber":"RFC4935","href":"https://www.rfc-editor.org/rfc/rfc4935","title":"Fibre Channel Fabric Configuration Server MIB","authors":["C. DeSanti","H.K. Vivek","K. McCloghrie","S. Gai"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4935","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4936":{"rfcNumber":"RFC4936","href":"https://www.rfc-editor.org/rfc/rfc4936","title":"Fibre Channel Zone Server MIB","authors":["C. DeSanti","H.K. Vivek","K. McCloghrie","S. Gai"],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4937":{"rfcNumber":"RFC4937","href":"https://www.rfc-editor.org/rfc/rfc4937","title":"IANA Considerations for PPP over Ethernet (PPPoE)","authors":["P. Arberg","V. Mammoliti"],"rawDate":"2007-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4938":{"rfcNumber":"RFC4938","href":"https://www.rfc-editor.org/rfc/rfc4938","title":"PPP Over Ethernet (PPPoE) Extensions for Credit Flow and Link Metrics","authors":["B. Berry","H. Holgate"],"rawDate":"2007-06","status":"Informational","obsoletedBy":["RFC5578"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4938","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4939":{"rfcNumber":"RFC4939","href":"https://www.rfc-editor.org/rfc/rfc4939","title":"Definitions of Managed Objects for iSNS (Internet Storage Name Service)","authors":["K. Gibbons","G. Ramkumar","S. Kipp"],"rawDate":"2007-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4939","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc494":{"aliasOf":"rfc0494"},"rfc4940":{"rfcNumber":"RFC4940","href":"https://www.rfc-editor.org/rfc/rfc4940","title":"IANA Considerations for OSPF","authors":["K. Kompella","B. Fenner"],"rawDate":"2007-07","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4940","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4941":{"rfcNumber":"RFC4941","href":"https://www.rfc-editor.org/rfc/rfc4941","title":"Privacy Extensions for Stateless Address Autoconfiguration in IPv6","authors":["T. Narten","R. Draves","S. Krishnan"],"rawDate":"2007-09","status":"Draft Standard","obsoletedBy":["RFC8981"],"obsoletes":["RFC3041"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4941","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4942":{"rfcNumber":"RFC4942","href":"https://www.rfc-editor.org/rfc/rfc4942","title":"IPv6 Transition/Co-existence Security Considerations","authors":["E. Davies","S. Krishnan","P. Savola"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4943":{"rfcNumber":"RFC4943","href":"https://www.rfc-editor.org/rfc/rfc4943","title":"IPv6 Neighbor Discovery On-Link Assumption Considered Harmful","authors":["S. Roy","A. Durand","J. Paugh"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4944":{"rfcNumber":"RFC4944","href":"https://www.rfc-editor.org/rfc/rfc4944","title":"Transmission of IPv6 Packets over IEEE 802.15.4 Networks","authors":["G. Montenegro","N. Kushalnagar","J. Hui","D. Culler"],"rawDate":"2007-09","status":"Proposed Standard","updatedBy":["RFC6282","RFC6775","RFC8025","RFC8066","RFC8931"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4944","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4945":{"rfcNumber":"RFC4945","href":"https://www.rfc-editor.org/rfc/rfc4945","title":"The Internet IP Security PKI Profile of IKEv1/ISAKMP, IKEv2, and PKIX","authors":["B. Korver"],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4946":{"rfcNumber":"RFC4946","href":"https://www.rfc-editor.org/rfc/rfc4946","title":"Atom License Extension","authors":["J. Snell"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4947":{"rfcNumber":"RFC4947","href":"https://www.rfc-editor.org/rfc/rfc4947","title":"Address Resolution Mechanisms for IP Datagrams over MPEG-2 Networks","authors":["G. Fairhurst","M. Montpetit"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4948":{"rfcNumber":"RFC4948","href":"https://www.rfc-editor.org/rfc/rfc4948","title":"Report from the IAB workshop on Unwanted Traffic March 9-10, 2006","authors":["L. Andersson","E. Davies","L. Zhang"],"rawDate":"2007-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4948","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4949":{"rfcNumber":"RFC4949","href":"https://www.rfc-editor.org/rfc/rfc4949","title":"Internet Security Glossary, Version 2","authors":["R. Shirey"],"rawDate":"2007-08","status":"Informational","obsoletes":["RFC2828"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc495":{"aliasOf":"rfc0495"},"rfc4950":{"rfcNumber":"RFC4950","href":"https://www.rfc-editor.org/rfc/rfc4950","title":"ICMP Extensions for Multiprotocol Label Switching","authors":["R. Bonica","D. Gan","D. Tappan","C. Pignataro"],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4951":{"rfcNumber":"RFC4951","href":"https://www.rfc-editor.org/rfc/rfc4951","title":"Fail Over Extensions for Layer 2 Tunneling Protocol (L2TP) \"failover\"","authors":["V. Jain, Ed."],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4952":{"rfcNumber":"RFC4952","href":"https://www.rfc-editor.org/rfc/rfc4952","title":"Overview and Framework for Internationalized Email","authors":["J. Klensin","Y. Ko"],"rawDate":"2007-07","status":"Informational","updatedBy":["RFC5336"],"obsoletedBy":["RFC6530"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4952","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4953":{"rfcNumber":"RFC4953","href":"https://www.rfc-editor.org/rfc/rfc4953","title":"Defending TCP Against Spoofing Attacks","authors":["J. Touch"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4954":{"rfcNumber":"RFC4954","href":"https://www.rfc-editor.org/rfc/rfc4954","title":"SMTP Service Extension for Authentication","authors":["R. Siemborski, Ed.","A. Melnikov, Ed."],"rawDate":"2007-07","status":"Proposed Standard","updatedBy":["RFC5248"],"updates":["RFC3463"],"obsoletes":["RFC2554"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4954","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4955":{"rfcNumber":"RFC4955","href":"https://www.rfc-editor.org/rfc/rfc4955","title":"DNS Security (DNSSEC) Experiments","authors":["D. Blacka"],"rawDate":"2007-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4956":{"rfcNumber":"RFC4956","href":"https://www.rfc-editor.org/rfc/rfc4956","title":"DNS Security (DNSSEC) Opt-In","authors":["R. Arends","M. Kosters","D. Blacka"],"rawDate":"2007-07","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4956","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4957":{"rfcNumber":"RFC4957","href":"https://www.rfc-editor.org/rfc/rfc4957","title":"Link-Layer Event Notifications for Detecting Network Attachments","authors":["S. Krishnan, Ed.","N. Montavont","E. Njedjou","S. Veerepalli","A. Yegin, Ed."],"rawDate":"2007-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4957","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4958":{"rfcNumber":"RFC4958","href":"https://www.rfc-editor.org/rfc/rfc4958","title":"A Framework for Supporting Emergency Telecommunications Services (ETS) within a Single Administrative Domain","authors":["K. Carlberg"],"rawDate":"2007-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4958","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4959":{"rfcNumber":"RFC4959","href":"https://www.rfc-editor.org/rfc/rfc4959","title":"IMAP Extension for Simple Authentication and Security Layer (SASL) Initial Client Response","authors":["R. Siemborski","A. Gulbrandsen"],"rawDate":"2007-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4959","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc496":{"aliasOf":"rfc0496"},"rfc4960":{"rfcNumber":"RFC4960","href":"https://www.rfc-editor.org/rfc/rfc4960","title":"Stream Control Transmission Protocol","authors":["R. Stewart, Ed."],"rawDate":"2007-09","status":"Proposed Standard","updatedBy":["RFC6096","RFC6335","RFC7053","RFC8899"],"obsoletedBy":["RFC9260"],"obsoletes":["RFC2960","RFC3309"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4960","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4961":{"rfcNumber":"RFC4961","href":"https://www.rfc-editor.org/rfc/rfc4961","title":"Symmetric RTP / RTP Control Protocol (RTCP)","authors":["D. Wing"],"rawDate":"2007-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4962":{"rfcNumber":"RFC4962","href":"https://www.rfc-editor.org/rfc/rfc4962","title":"Guidance for Authentication, Authorization, and Accounting (AAA) Key Management","authors":["R. Housley","B. Aboba"],"rawDate":"2007-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4963":{"rfcNumber":"RFC4963","href":"https://www.rfc-editor.org/rfc/rfc4963","title":"IPv4 Reassembly Errors at High Data Rates","authors":["J. Heffner","M. Mathis","B. Chandler"],"rawDate":"2007-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4964":{"rfcNumber":"RFC4964","href":"https://www.rfc-editor.org/rfc/rfc4964","title":"The P-Answer-State Header Extension to the Session Initiation Protocol for the Open Mobile Alliance Push to Talk over Cellular","authors":["A. Allen, Ed.","J. Holm","T. Hallin"],"rawDate":"2007-09","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4965":{"rfcNumber":"RFC4965","href":"https://www.rfc-editor.org/rfc/rfc4965","title":"CableLabs - IETF Standardization Collaboration","authors":["J-F. Mule","W. Townsley"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4966":{"rfcNumber":"RFC4966","href":"https://www.rfc-editor.org/rfc/rfc4966","title":"Reasons to Move the Network Address Translator - Protocol Translator (NAT-PT) to Historic Status","authors":["C. Aoun","E. Davies"],"rawDate":"2007-07","status":"Informational","obsoletes":["RFC2766"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4966","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4967":{"rfcNumber":"RFC4967","href":"https://www.rfc-editor.org/rfc/rfc4967","title":"Dial String Parameter for the Session Initiation Protocol Uniform Resource Identifier","authors":["B. Rosen"],"rawDate":"2007-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4967","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4968":{"rfcNumber":"RFC4968","href":"https://www.rfc-editor.org/rfc/rfc4968","title":"Analysis of IPv6 Link Models for 802.16 Based Networks","authors":["S. Madanapalli, Ed."],"rawDate":"2007-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4968","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4969":{"rfcNumber":"RFC4969","href":"https://www.rfc-editor.org/rfc/rfc4969","title":"IANA Registration for vCard Enumservice","authors":["A. Mayrhofer"],"rawDate":"2007-08","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc497":{"aliasOf":"rfc0497"},"rfc4970":{"rfcNumber":"RFC4970","href":"https://www.rfc-editor.org/rfc/rfc4970","title":"Extensions to OSPF for Advertising Optional Router Capabilities","authors":["A. Lindem, Ed.","N. Shen","JP. Vasseur","R. Aggarwal","S. Shaffer"],"rawDate":"2007-07","status":"Proposed Standard","obsoletedBy":["RFC7770"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4971":{"rfcNumber":"RFC4971","href":"https://www.rfc-editor.org/rfc/rfc4971","title":"Intermediate System to Intermediate System (IS-IS) Extensions for Advertising Router Information","authors":["JP. Vasseur, Ed.","N. Shen, Ed.","R. Aggarwal, Ed."],"rawDate":"2007-07","status":"Proposed Standard","obsoletedBy":["RFC7981"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4972":{"rfcNumber":"RFC4972","href":"https://www.rfc-editor.org/rfc/rfc4972","title":"Routing Extensions for Discovery of Multiprotocol (MPLS) Label Switch Router (LSR) Traffic Engineering (TE) Mesh Membership","authors":["JP. Vasseur, Ed.","JL. Leroux, Ed.","S. Yasukawa","S. Previdi","P. Psenak","P. Mabbey"],"rawDate":"2007-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4973":{"rfcNumber":"RFC4973","href":"https://www.rfc-editor.org/rfc/rfc4973","title":"OSPF-xTE: Experimental Extension to OSPF for Traffic Engineering","authors":["P. Srisuresh","P. Joseph"],"rawDate":"2007-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4974":{"rfcNumber":"RFC4974","href":"https://www.rfc-editor.org/rfc/rfc4974","title":"Generalized MPLS (GMPLS) RSVP-TE Signaling Extensions in Support of Calls","authors":["D. Papadimitriou","A. Farrel"],"rawDate":"2007-08","status":"Proposed Standard","updatedBy":["RFC6001"],"updates":["RFC3473"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4975":{"rfcNumber":"RFC4975","href":"https://www.rfc-editor.org/rfc/rfc4975","title":"The Message Session Relay Protocol (MSRP)","authors":["B. Campbell, Ed.","R. Mahy, Ed.","C. Jennings, Ed."],"rawDate":"2007-09","status":"Proposed Standard","updatedBy":["RFC7977","RFC8591","RFC8873","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4975","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4976":{"rfcNumber":"RFC4976","href":"https://www.rfc-editor.org/rfc/rfc4976","title":"Relay Extensions for the Message Sessions Relay Protocol (MSRP)","authors":["C. Jennings","R. Mahy","A. B. Roach"],"rawDate":"2007-09","status":"Proposed Standard","updatedBy":["RFC7977","RFC8553","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4976","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4977":{"rfcNumber":"RFC4977","href":"https://www.rfc-editor.org/rfc/rfc4977","title":"Problem Statement: Dual Stack Mobility","authors":["G. Tsirtsis","H. Soliman"],"rawDate":"2007-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4978":{"rfcNumber":"RFC4978","href":"https://www.rfc-editor.org/rfc/rfc4978","title":"The IMAP COMPRESS Extension","authors":["A. Gulbrandsen"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4978","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4979":{"rfcNumber":"RFC4979","href":"https://www.rfc-editor.org/rfc/rfc4979","title":"IANA Registration for Enumservice 'XMPP'","authors":["A. Mayrhofer"],"rawDate":"2007-08","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc498":{"aliasOf":"rfc0498"},"rfc4980":{"rfcNumber":"RFC4980","href":"https://www.rfc-editor.org/rfc/rfc4980","title":"Analysis of Multihoming in Network Mobility Support","authors":["C. Ng","T. Ernst","E. Paik","M. Bagnulo"],"rawDate":"2007-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4981":{"rfcNumber":"RFC4981","href":"https://www.rfc-editor.org/rfc/rfc4981","title":"Survey of Research towards Robust Peer-to-Peer Networks: Search Methods","authors":["J. Risson","T. Moors"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4982":{"rfcNumber":"RFC4982","href":"https://www.rfc-editor.org/rfc/rfc4982","title":"Support for Multiple Hash Algorithms in Cryptographically Generated Addresses (CGAs)","authors":["M. Bagnulo","J. Arkko"],"rawDate":"2007-07","status":"Proposed Standard","updates":["RFC3972"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4982","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4983":{"rfcNumber":"RFC4983","href":"https://www.rfc-editor.org/rfc/rfc4983","title":"Fibre Channel Registered State Change Notification (RSCN) MIB","authors":["C. DeSanti","H.K. Vivek","K. McCloghrie","S. Gai"],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4984":{"rfcNumber":"RFC4984","href":"https://www.rfc-editor.org/rfc/rfc4984","title":"Report from the IAB Workshop on Routing and Addressing","authors":["D. Meyer, Ed.","L. Zhang, Ed.","K. Fall, Ed."],"rawDate":"2007-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4984","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4985":{"rfcNumber":"RFC4985","href":"https://www.rfc-editor.org/rfc/rfc4985","title":"Internet X.509 Public Key Infrastructure Subject Alternative Name for Expression of Service Name","authors":["S. Santesson"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4985","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4986":{"rfcNumber":"RFC4986","href":"https://www.rfc-editor.org/rfc/rfc4986","title":"Requirements Related to DNS Security (DNSSEC) Trust Anchor Rollover","authors":["H. Eland","R. Mundy","S. Crocker","S. Krishnaswamy"],"rawDate":"2007-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4987":{"rfcNumber":"RFC4987","href":"https://www.rfc-editor.org/rfc/rfc4987","title":"TCP SYN Flooding Attacks and Common Mitigations","authors":["W. Eddy"],"rawDate":"2007-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4987","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4988":{"rfcNumber":"RFC4988","href":"https://www.rfc-editor.org/rfc/rfc4988","title":"Mobile IPv4 Fast Handovers","authors":["R. Koodli","C. Perkins"],"rawDate":"2007-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc499":{"aliasOf":"rfc0499"},"rfc4990":{"rfcNumber":"RFC4990","href":"https://www.rfc-editor.org/rfc/rfc4990","title":"Use of Addresses in Generalized Multiprotocol Label Switching (GMPLS) Networks","authors":["K. Shiomoto","R. Papneja","R. Rabbat"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4991":{"rfcNumber":"RFC4991","href":"https://www.rfc-editor.org/rfc/rfc4991","title":"A Common Schema for Internet Registry Information Service Transfer Protocols","authors":["A. Newton"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4991","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4992":{"rfcNumber":"RFC4992","href":"https://www.rfc-editor.org/rfc/rfc4992","title":"XML Pipelining with Chunks for the Internet Registry Information Service","authors":["A. Newton"],"rawDate":"2007-08","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC3981"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4992","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4993":{"rfcNumber":"RFC4993","href":"https://www.rfc-editor.org/rfc/rfc4993","title":"A Lightweight UDP Transfer Protocol for the Internet Registry Information Service","authors":["A. Newton"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4993","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4994":{"rfcNumber":"RFC4994","href":"https://www.rfc-editor.org/rfc/rfc4994","title":"DHCPv6 Relay Agent Echo Request Option","authors":["S. Zeng","B. Volz","K. Kinnear","J. Brzozowski"],"rawDate":"2007-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4995":{"rfcNumber":"RFC4995","href":"https://www.rfc-editor.org/rfc/rfc4995","title":"The RObust Header Compression (ROHC) Framework","authors":["L-E. Jonsson","G. Pelletier","K. Sandlund"],"rawDate":"2007-07","status":"Proposed Standard","obsoletedBy":["RFC5795"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4995","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4996":{"rfcNumber":"RFC4996","href":"https://www.rfc-editor.org/rfc/rfc4996","title":"RObust Header Compression (ROHC): A Profile for TCP/IP (ROHC-TCP)","authors":["G. Pelletier","K. Sandlund","L-E. Jonsson","M. West"],"rawDate":"2007-07","status":"Proposed Standard","obsoletedBy":["RFC6846"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4996","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4997":{"rfcNumber":"RFC4997","href":"https://www.rfc-editor.org/rfc/rfc4997","title":"Formal Notation for RObust Header Compression (ROHC-FN)","authors":["R. Finking","G. Pelletier"],"rawDate":"2007-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc4998":{"rfcNumber":"RFC4998","href":"https://www.rfc-editor.org/rfc/rfc4998","title":"Evidence Record Syntax (ERS)","authors":["T. Gondrom","R. Brandner","U. Pordesch"],"rawDate":"2007-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=4998","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5":{"aliasOf":"rfc0005"},"rfc50":{"aliasOf":"rfc0050"},"rfc500":{"aliasOf":"rfc0500"},"rfc5000":{"rfcNumber":"RFC5000","href":"https://www.rfc-editor.org/rfc/rfc5000","title":"Internet Official Protocol Standards","authors":["RFC Editor"],"rawDate":"2008-05","status":"Historic","obsoletedBy":["RFC7100"],"obsoletes":["RFC3700"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5001":{"rfcNumber":"RFC5001","href":"https://www.rfc-editor.org/rfc/rfc5001","title":"DNS Name Server Identifier (NSID) Option","authors":["R. Austein"],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5002":{"rfcNumber":"RFC5002","href":"https://www.rfc-editor.org/rfc/rfc5002","title":"The Session Initiation Protocol (SIP) P-Profile-Key Private Header (P-Header)","authors":["G. Camarillo","G. Blanco"],"rawDate":"2007-08","status":"Informational","updatedBy":["RFC8217"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5002","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5003":{"rfcNumber":"RFC5003","href":"https://www.rfc-editor.org/rfc/rfc5003","title":"Attachment Individual Identifier (AII) Types for Aggregation","authors":["C. Metz","L. Martini","F. Balus","J. Sugimoto"],"rawDate":"2007-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5003","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5004":{"rfcNumber":"RFC5004","href":"https://www.rfc-editor.org/rfc/rfc5004","title":"Avoid BGP Best Path Transitions from One External to Another","authors":["E. Chen","S. Sangli"],"rawDate":"2007-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5005":{"rfcNumber":"RFC5005","href":"https://www.rfc-editor.org/rfc/rfc5005","title":"Feed Paging and Archiving","authors":["M. Nottingham"],"rawDate":"2007-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5005","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5006":{"rfcNumber":"RFC5006","href":"https://www.rfc-editor.org/rfc/rfc5006","title":"IPv6 Router Advertisement Option for DNS Configuration","authors":["J. Jeong, Ed.","S. Park","L. Beloeil","S. Madanapalli"],"rawDate":"2007-09","status":"Experimental","obsoletedBy":["RFC6106"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5007":{"rfcNumber":"RFC5007","href":"https://www.rfc-editor.org/rfc/rfc5007","title":"DHCPv6 Leasequery","authors":["J. Brzozowski","K. Kinnear","B. Volz","S. Zeng"],"rawDate":"2007-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5007","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5008":{"rfcNumber":"RFC5008","href":"https://www.rfc-editor.org/rfc/rfc5008","title":"Suite B in Secure/Multipurpose Internet Mail Extensions (S/MIME)","authors":["R. Housley","J. Solinas"],"rawDate":"2007-09","status":"Historic","obsoletedBy":["RFC6318"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5008","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5009":{"rfcNumber":"RFC5009","href":"https://www.rfc-editor.org/rfc/rfc5009","title":"Private Header (P-Header) Extension to the Session Initiation Protocol (SIP) for Authorization of Early Media","authors":["R. Ejza"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc501":{"aliasOf":"rfc0501"},"rfc5010":{"rfcNumber":"RFC5010","href":"https://www.rfc-editor.org/rfc/rfc5010","title":"The Dynamic Host Configuration Protocol Version 4 (DHCPv4) Relay Agent Flags Suboption","authors":["K. Kinnear","M. Normoyle","M. Stapp"],"rawDate":"2007-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5011":{"rfcNumber":"RFC5011","href":"https://www.rfc-editor.org/rfc/rfc5011","title":"Automated Updates of DNS Security (DNSSEC) Trust Anchors","authors":["M. StJohns"],"rawDate":"2007-09","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5012":{"rfcNumber":"RFC5012","href":"https://www.rfc-editor.org/rfc/rfc5012","title":"Requirements for Emergency Context Resolution with Internet Technologies","authors":["H. Schulzrinne","R. Marshall, Ed."],"rawDate":"2008-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5012","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5013":{"rfcNumber":"RFC5013","href":"https://www.rfc-editor.org/rfc/rfc5013","title":"The Dublin Core Metadata Element Set","authors":["J. Kunze","T. Baker"],"rawDate":"2007-08","status":"Informational","obsoletes":["RFC2413"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5014":{"rfcNumber":"RFC5014","href":"https://www.rfc-editor.org/rfc/rfc5014","title":"IPv6 Socket API for Source Address Selection","authors":["E. Nordmark","S. Chakrabarti","J. Laganier"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5015":{"rfcNumber":"RFC5015","href":"https://www.rfc-editor.org/rfc/rfc5015","title":"Bidirectional Protocol Independent Multicast (BIDIR-PIM)","authors":["M. Handley","I. Kouvelas","T. Speakman","L. Vicisano"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC8736","RFC9436"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5015","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5016":{"rfcNumber":"RFC5016","href":"https://www.rfc-editor.org/rfc/rfc5016","title":"Requirements for a DomainKeys Identified Mail (DKIM) Signing Practices Protocol","authors":["M. Thomas"],"rawDate":"2007-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5017":{"rfcNumber":"RFC5017","href":"https://www.rfc-editor.org/rfc/rfc5017","title":"MIB Textual Conventions for Uniform Resource Identifiers (URIs)","authors":["D. McWalter, Ed."],"rawDate":"2007-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5018":{"rfcNumber":"RFC5018","href":"https://www.rfc-editor.org/rfc/rfc5018","title":"Connection Establishment in the Binary Floor Control Protocol (BFCP)","authors":["G. Camarillo"],"rawDate":"2007-09","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5019":{"rfcNumber":"RFC5019","href":"https://www.rfc-editor.org/rfc/rfc5019","title":"The Lightweight Online Certificate Status Protocol (OCSP) Profile for High-Volume Environments","authors":["A. Deacon","R. Hurst"],"rawDate":"2007-09","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5019","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5020":{"rfcNumber":"RFC5020","href":"https://www.rfc-editor.org/rfc/rfc5020","title":"The Lightweight Directory Access Protocol (LDAP) entryDN Operational Attribute","authors":["K. Zeilenga"],"rawDate":"2007-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5021":{"rfcNumber":"RFC5021","href":"https://www.rfc-editor.org/rfc/rfc5021","title":"Extended Kerberos Version 5 Key Distribution Center (KDC) Exchanges over TCP","authors":["S. Josefsson"],"rawDate":"2007-08","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5022":{"rfcNumber":"RFC5022","href":"https://www.rfc-editor.org/rfc/rfc5022","title":"Media Server Control Markup Language (MSCML) and Protocol","authors":["J. Van Dyke","E. Burger, Ed.","A. Spitzer"],"rawDate":"2007-09","status":"Informational","obsoletes":["RFC4722"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5022","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5023":{"rfcNumber":"RFC5023","href":"https://www.rfc-editor.org/rfc/rfc5023","title":"The Atom Publishing Protocol","authors":["J. Gregorio, Ed.","B. de hOra, Ed."],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5023","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5024":{"rfcNumber":"RFC5024","href":"https://www.rfc-editor.org/rfc/rfc5024","title":"ODETTE File Transfer Protocol 2.0","authors":["I. Friend"],"rawDate":"2007-11","status":"Informational","updatedBy":["RFC8996"],"obsoletes":["RFC2204"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5024","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5025":{"rfcNumber":"RFC5025","href":"https://www.rfc-editor.org/rfc/rfc5025","title":"Presence Authorization Rules","authors":["J. Rosenberg"],"rawDate":"2007-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5025","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5026":{"rfcNumber":"RFC5026","href":"https://www.rfc-editor.org/rfc/rfc5026","title":"Mobile IPv6 Bootstrapping in Split Scenario","authors":["G. Giaretta, Ed.","J. Kempf","V. Devarapalli, Ed."],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5027":{"rfcNumber":"RFC5027","href":"https://www.rfc-editor.org/rfc/rfc5027","title":"Security Preconditions for Session Description Protocol (SDP) Media Streams","authors":["F. Andreasen","D. Wing"],"rawDate":"2007-10","status":"Proposed Standard","updates":["RFC3312"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5028":{"rfcNumber":"RFC5028","href":"https://www.rfc-editor.org/rfc/rfc5028","title":"A Telephone Number Mapping (ENUM) Service Registration for Instant Messaging (IM) Services","authors":["R. Mahy"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5029":{"rfcNumber":"RFC5029","href":"https://www.rfc-editor.org/rfc/rfc5029","title":"Definition of an IS-IS Link Attribute Sub-TLV","authors":["JP. Vasseur","S. Previdi"],"rawDate":"2007-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc503":{"aliasOf":"rfc0503"},"rfc5030":{"rfcNumber":"RFC5030","href":"https://www.rfc-editor.org/rfc/rfc5030","title":"Mobile IPv4 RADIUS Requirements","authors":["M. Nakhjiri, Ed.","K. Chowdhury","A. Lior","K. Leung"],"rawDate":"2007-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5031":{"rfcNumber":"RFC5031","href":"https://www.rfc-editor.org/rfc/rfc5031","title":"A Uniform Resource Name (URN) for Emergency and Other Well-Known Services","authors":["H. Schulzrinne"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC7163"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5031","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5032":{"rfcNumber":"RFC5032","href":"https://www.rfc-editor.org/rfc/rfc5032","title":"WITHIN Search Extension to the IMAP Protocol","authors":["E. Burger, Ed."],"rawDate":"2007-09","status":"Proposed Standard","updates":["RFC3501"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5033":{"rfcNumber":"RFC5033","href":"https://www.rfc-editor.org/rfc/rfc5033","title":"Specifying New Congestion Control Algorithms","authors":["S. Floyd","M. Allman"],"rawDate":"2007-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5034":{"rfcNumber":"RFC5034","href":"https://www.rfc-editor.org/rfc/rfc5034","title":"The Post Office Protocol (POP3) Simple Authentication and Security Layer (SASL) Authentication Mechanism","authors":["R. Siemborski","A. Menon-Sen"],"rawDate":"2007-07","status":"Proposed Standard","updates":["RFC2449"],"obsoletes":["RFC1734"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5035":{"rfcNumber":"RFC5035","href":"https://www.rfc-editor.org/rfc/rfc5035","title":"Enhanced Security Services (ESS) Update: Adding CertID Algorithm Agility","authors":["J. Schaad"],"rawDate":"2007-08","status":"Proposed Standard","updates":["RFC2634"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5035","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5036":{"rfcNumber":"RFC5036","href":"https://www.rfc-editor.org/rfc/rfc5036","title":"LDP Specification","authors":["L. Andersson, Ed.","I. Minei, Ed.","B. Thomas, Ed."],"rawDate":"2007-10","status":"Draft Standard","updatedBy":["RFC6720","RFC6790","RFC7358","RFC7552"],"obsoletes":["RFC3036"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5036","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5037":{"rfcNumber":"RFC5037","href":"https://www.rfc-editor.org/rfc/rfc5037","title":"Experience with the Label Distribution Protocol (LDP)","authors":["L. Andersson, Ed.","I. Minei, Ed.","B. Thomas, Ed."],"rawDate":"2007-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5038":{"rfcNumber":"RFC5038","href":"https://www.rfc-editor.org/rfc/rfc5038","title":"The Label Distribution Protocol (LDP) Implementation Survey Results","authors":["B. Thomas","L. Andersson"],"rawDate":"2007-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5039":{"rfcNumber":"RFC5039","href":"https://www.rfc-editor.org/rfc/rfc5039","title":"The Session Initiation Protocol (SIP) and Spam","authors":["J. Rosenberg","C. Jennings"],"rawDate":"2008-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc504":{"aliasOf":"rfc0504"},"rfc5040":{"rfcNumber":"RFC5040","href":"https://www.rfc-editor.org/rfc/rfc5040","title":"A Remote Direct Memory Access Protocol Specification","authors":["R. Recio","B. Metzler","P. Culley","J. Hilland","D. Garcia"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5041":{"rfcNumber":"RFC5041","href":"https://www.rfc-editor.org/rfc/rfc5041","title":"Direct Data Placement over Reliable Transports","authors":["H. Shah","J. Pinkerton","R. Recio","P. Culley"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5042":{"rfcNumber":"RFC5042","href":"https://www.rfc-editor.org/rfc/rfc5042","title":"Direct Data Placement Protocol (DDP) / Remote Direct Memory Access Protocol (RDMAP) Security","authors":["J. Pinkerton","E. Deleganes"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5043":{"rfcNumber":"RFC5043","href":"https://www.rfc-editor.org/rfc/rfc5043","title":"Stream Control Transmission Protocol (SCTP) Direct Data Placement (DDP) Adaptation","authors":["C. Bestler, Ed.","R. Stewart, Ed."],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC6581","RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5044":{"rfcNumber":"RFC5044","href":"https://www.rfc-editor.org/rfc/rfc5044","title":"Marker PDU Aligned Framing for TCP Specification","authors":["P. Culley","U. Elzur","R. Recio","S. Bailey","J. Carrier"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC6581","RFC7146"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5044","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5045":{"rfcNumber":"RFC5045","href":"https://www.rfc-editor.org/rfc/rfc5045","title":"Applicability of Remote Direct Memory Access Protocol (RDMA) and Direct Data Placement (DDP)","authors":["C. Bestler, Ed.","L. Coene"],"rawDate":"2007-10","status":"Informational","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5046":{"rfcNumber":"RFC5046","href":"https://www.rfc-editor.org/rfc/rfc5046","title":"Internet Small Computer System Interface (iSCSI) Extensions for Remote Direct Memory Access (RDMA)","authors":["M. Ko","M. Chadalapaka","J. Hufferd","U. Elzur","H. Shah","P. Thaler"],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC7146"],"obsoletedBy":["RFC7145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5047":{"rfcNumber":"RFC5047","href":"https://www.rfc-editor.org/rfc/rfc5047","title":"DA: Datamover Architecture for the Internet Small Computer System Interface (iSCSI)","authors":["M. Chadalapaka","J. Hufferd","J. Satran","H. Shah"],"rawDate":"2007-10","status":"Informational","updatedBy":["RFC7146"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5048":{"rfcNumber":"RFC5048","href":"https://www.rfc-editor.org/rfc/rfc5048","title":"Internet Small Computer System Interface (iSCSI) Corrections and Clarifications","authors":["M. Chadalapaka, Ed."],"rawDate":"2007-10","status":"Proposed Standard","updatedBy":["RFC7146"],"obsoletedBy":["RFC7143"],"updates":["RFC3720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5049":{"rfcNumber":"RFC5049","href":"https://www.rfc-editor.org/rfc/rfc5049","title":"Applying Signaling Compression (SigComp) to the Session Initiation Protocol (SIP)","authors":["C. Bormann","Z. Liu","R. Price","G. Camarillo, Ed."],"rawDate":"2007-12","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC3486"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc505":{"aliasOf":"rfc0505"},"rfc5050":{"rfcNumber":"RFC5050","href":"https://www.rfc-editor.org/rfc/rfc5050","title":"Bundle Protocol Specification","authors":["K. Scott","S. Burleigh"],"rawDate":"2007-11","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5050","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5051":{"rfcNumber":"RFC5051","href":"https://www.rfc-editor.org/rfc/rfc5051","title":"i;unicode-casemap - Simple Unicode Collation Algorithm","authors":["M. Crispin"],"rawDate":"2007-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5052":{"rfcNumber":"RFC5052","href":"https://www.rfc-editor.org/rfc/rfc5052","title":"Forward Error Correction (FEC) Building Block","authors":["M. Watson","M. Luby","L. Vicisano"],"rawDate":"2007-08","status":"Proposed Standard","obsoletes":["RFC3452"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5052","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5053":{"rfcNumber":"RFC5053","href":"https://www.rfc-editor.org/rfc/rfc5053","title":"Raptor Forward Error Correction Scheme for Object Delivery","authors":["M. Luby","A. Shokrollahi","M. Watson","T. Stockhammer"],"rawDate":"2007-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5054":{"rfcNumber":"RFC5054","href":"https://www.rfc-editor.org/rfc/rfc5054","title":"Using the Secure Remote Password (SRP) Protocol for TLS Authentication","authors":["D. Taylor","T. Wu","N. Mavrogiannopoulos","T. Perrin"],"rawDate":"2007-11","status":"Informational","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5054","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5055":{"rfcNumber":"RFC5055","href":"https://www.rfc-editor.org/rfc/rfc5055","title":"Server-Based Certificate Validation Protocol (SCVP)","authors":["T. Freeman","R. Housley","A. Malpani","D. Cooper","W. Polk"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5056":{"rfcNumber":"RFC5056","href":"https://www.rfc-editor.org/rfc/rfc5056","title":"On the Use of Channel Bindings to Secure Channels","authors":["N. Williams"],"rawDate":"2007-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5056","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5057":{"rfcNumber":"RFC5057","href":"https://www.rfc-editor.org/rfc/rfc5057","title":"Multiple Dialog Usages in the Session Initiation Protocol","authors":["R. Sparks"],"rawDate":"2007-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5058":{"rfcNumber":"RFC5058","href":"https://www.rfc-editor.org/rfc/rfc5058","title":"Explicit Multicast (Xcast) Concepts and Options","authors":["R. Boivie","N. Feldman","Y. Imai","W. Livens","D. Ooms"],"rawDate":"2007-11","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5058","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5059":{"rfcNumber":"RFC5059","href":"https://www.rfc-editor.org/rfc/rfc5059","title":"Bootstrap Router (BSR) Mechanism for Protocol Independent Multicast (PIM)","authors":["N. Bhaskar","A. Gall","J. Lingard","S. Venaas"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC8736","RFC9436"],"updates":["RFC4601"],"obsoletes":["RFC2362"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5059","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc506":{"aliasOf":"rfc0506"},"rfc5060":{"rfcNumber":"RFC5060","href":"https://www.rfc-editor.org/rfc/rfc5060","title":"Protocol Independent Multicast MIB","authors":["R. Sivaramu","J. Lingard","D. McWalter","B. Joshi","A. Kessler"],"rawDate":"2008-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5060","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5061":{"rfcNumber":"RFC5061","href":"https://www.rfc-editor.org/rfc/rfc5061","title":"Stream Control Transmission Protocol (SCTP) Dynamic Address Reconfiguration","authors":["R. Stewart","Q. Xie","M. Tuexen","S. Maruyama","M. Kozuka"],"rawDate":"2007-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5062":{"rfcNumber":"RFC5062","href":"https://www.rfc-editor.org/rfc/rfc5062","title":"Security Attacks Found Against the Stream Control Transmission Protocol (SCTP) and Current Countermeasures","authors":["R. Stewart","M. Tuexen","G. Camarillo"],"rawDate":"2007-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5063":{"rfcNumber":"RFC5063","href":"https://www.rfc-editor.org/rfc/rfc5063","title":"Extensions to GMPLS Resource Reservation Protocol (RSVP) Graceful Restart","authors":["A. Satyanarayana, Ed.","R. Rahman, Ed."],"rawDate":"2007-10","status":"Proposed Standard","updates":["RFC2961","RFC3473"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5063","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5064":{"rfcNumber":"RFC5064","href":"https://www.rfc-editor.org/rfc/rfc5064","title":"The Archived-At Message Header Field","authors":["M. Duerst"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5065":{"rfcNumber":"RFC5065","href":"https://www.rfc-editor.org/rfc/rfc5065","title":"Autonomous System Confederations for BGP","authors":["P. Traina","D. McPherson","J. Scudder"],"rawDate":"2007-08","status":"Draft Standard","obsoletes":["RFC3065"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5065","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5066":{"rfcNumber":"RFC5066","href":"https://www.rfc-editor.org/rfc/rfc5066","title":"Ethernet in the First Mile Copper (EFMCu) Interfaces MIB","authors":["E. Beili"],"rawDate":"2007-11","status":"Proposed Standard","updatedBy":["RFC7124"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5067":{"rfcNumber":"RFC5067","href":"https://www.rfc-editor.org/rfc/rfc5067","title":"Infrastructure ENUM Requirements","authors":["S. Lind","P. Pfautz"],"rawDate":"2007-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5068":{"rfcNumber":"RFC5068","href":"https://www.rfc-editor.org/rfc/rfc5068","title":"Email Submission Operations: Access and Accountability Requirements","authors":["C. Hutzler","D. Crocker","P. Resnick","E. Allman","T. Finch"],"rawDate":"2007-11","status":"Best Current Practice","updatedBy":["RFC8314"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5069":{"rfcNumber":"RFC5069","href":"https://www.rfc-editor.org/rfc/rfc5069","title":"Security Threats and Requirements for Emergency Call Marking and Mapping","authors":["T. Taylor, Ed.","H. Tschofenig","H. Schulzrinne","M. Shanmugam"],"rawDate":"2008-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5070":{"rfcNumber":"RFC5070","href":"https://www.rfc-editor.org/rfc/rfc5070","title":"The Incident Object Description Exchange Format","authors":["R. Danyliw","J. Meijer","Y. Demchenko"],"rawDate":"2007-12","status":"Proposed Standard","updatedBy":["RFC6685"],"obsoletedBy":["RFC7970"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5070","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5071":{"rfcNumber":"RFC5071","href":"https://www.rfc-editor.org/rfc/rfc5071","title":"Dynamic Host Configuration Protocol Options Used by PXELINUX","authors":["D. Hankins"],"rawDate":"2007-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5072":{"rfcNumber":"RFC5072","href":"https://www.rfc-editor.org/rfc/rfc5072","title":"IP Version 6 over PPP","authors":["S. Varada, Ed.","D. Haskins","E. Allen"],"rawDate":"2007-09","status":"Draft Standard","updatedBy":["RFC8064"],"obsoletes":["RFC2472"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5073":{"rfcNumber":"RFC5073","href":"https://www.rfc-editor.org/rfc/rfc5073","title":"IGP Routing Protocol Extensions for Discovery of Traffic Engineering Node Capabilities","authors":["J.P. Vasseur, Ed.","J.L. Le Roux, Ed."],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5074":{"rfcNumber":"RFC5074","href":"https://www.rfc-editor.org/rfc/rfc5074","title":"DNSSEC Lookaside Validation (DLV)","authors":["S. Weiler"],"rawDate":"2007-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5075":{"rfcNumber":"RFC5075","href":"https://www.rfc-editor.org/rfc/rfc5075","title":"IPv6 Router Advertisement Flags Option","authors":["B. Haberman, Ed.","R. Hinden"],"rawDate":"2007-11","status":"Proposed Standard","obsoletedBy":["RFC5175"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5075","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5076":{"rfcNumber":"RFC5076","href":"https://www.rfc-editor.org/rfc/rfc5076","title":"ENUM Validation Information Mapping for the Extensible Provisioning Protocol","authors":["B. Hoeneisen"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5077":{"rfcNumber":"RFC5077","href":"https://www.rfc-editor.org/rfc/rfc5077","title":"Transport Layer Security (TLS) Session Resumption without Server-Side State","authors":["J. Salowey","H. Zhou","P. Eronen","H. Tschofenig"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC8447"],"obsoletedBy":["RFC8446"],"obsoletes":["RFC4507"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5077","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5078":{"rfcNumber":"RFC5078","href":"https://www.rfc-editor.org/rfc/rfc5078","title":"IAB and IESG Selection, Confirmation, and Recall Process: Revision of the Nominating and Recall Committees Timeline","authors":["S. Dawkins"],"rawDate":"2007-10","status":"Informational","obsoletedBy":["RFC7437"],"updates":["RFC3777"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5079":{"rfcNumber":"RFC5079","href":"https://www.rfc-editor.org/rfc/rfc5079","title":"Rejecting Anonymous Requests in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc508":{"aliasOf":"rfc0508"},"rfc5080":{"rfcNumber":"RFC5080","href":"https://www.rfc-editor.org/rfc/rfc5080","title":"Common Remote Authentication Dial In User Service (RADIUS) Implementation Issues and Suggested Fixes","authors":["D. Nelson","A. DeKok"],"rawDate":"2007-12","status":"Proposed Standard","updates":["RFC2865","RFC2866","RFC2869","RFC3579"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5080","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5081":{"rfcNumber":"RFC5081","href":"https://www.rfc-editor.org/rfc/rfc5081","title":"Using OpenPGP Keys for Transport Layer Security (TLS) Authentication","authors":["N. Mavrogiannopoulos"],"rawDate":"2007-11","status":"Experimental","obsoletedBy":["RFC6091"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5082":{"rfcNumber":"RFC5082","href":"https://www.rfc-editor.org/rfc/rfc5082","title":"The Generalized TTL Security Mechanism (GTSM)","authors":["V. Gill","J. Heasley","D. Meyer","P. Savola, Ed.","C. Pignataro"],"rawDate":"2007-10","status":"Proposed Standard","obsoletes":["RFC3682"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5083":{"rfcNumber":"RFC5083","href":"https://www.rfc-editor.org/rfc/rfc5083","title":"Cryptographic Message Syntax (CMS) Authenticated-Enveloped-Data Content Type","authors":["R. Housley"],"rawDate":"2007-11","status":"Proposed Standard","updates":["RFC3852"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5084":{"rfcNumber":"RFC5084","href":"https://www.rfc-editor.org/rfc/rfc5084","title":"Using AES-CCM and AES-GCM Authenticated Encryption in the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2007-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5084","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5085":{"rfcNumber":"RFC5085","href":"https://www.rfc-editor.org/rfc/rfc5085","title":"Pseudowire Virtual Circuit Connectivity Verification (VCCV): A Control Channel for Pseudowires","authors":["T. Nadeau, Ed.","C. Pignataro, Ed."],"rawDate":"2007-12","status":"Proposed Standard","updatedBy":["RFC5586"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5085","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5086":{"rfcNumber":"RFC5086","href":"https://www.rfc-editor.org/rfc/rfc5086","title":"Structure-Aware Time Division Multiplexed (TDM) Circuit Emulation Service over Packet Switched Network (CESoPSN)","authors":["A. Vainshtein, Ed.","I. Sasson","E. Metz","T. Frost","P. Pate"],"rawDate":"2007-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5087":{"rfcNumber":"RFC5087","href":"https://www.rfc-editor.org/rfc/rfc5087","title":"Time Division Multiplexing over IP (TDMoIP)","authors":["Y(J). Stein","R. Shashoua","R. Insler","M. Anavi"],"rawDate":"2007-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5087","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5088":{"rfcNumber":"RFC5088","href":"https://www.rfc-editor.org/rfc/rfc5088","title":"OSPF Protocol Extensions for Path Computation Element (PCE) Discovery","authors":["JL. Le Roux, Ed.","JP. Vasseur, Ed.","Y. Ikejiri","R. Zhang"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC9353"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5088","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5089":{"rfcNumber":"RFC5089","href":"https://www.rfc-editor.org/rfc/rfc5089","title":"IS-IS Protocol Extensions for Path Computation Element (PCE) Discovery","authors":["JL. Le Roux, Ed.","JP. Vasseur, Ed.","Y. Ikejiri","R. Zhang"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC9353"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5089","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc509":{"aliasOf":"rfc0509"},"rfc5090":{"rfcNumber":"RFC5090","href":"https://www.rfc-editor.org/rfc/rfc5090","title":"RADIUS Extension for Digest Authentication","authors":["B. Sterman","D. Sadolevsky","D. Schwartz","D. Williams","W. Beck"],"rawDate":"2008-02","status":"Proposed Standard","obsoletes":["RFC4590"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5090","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5091":{"rfcNumber":"RFC5091","href":"https://www.rfc-editor.org/rfc/rfc5091","title":"Identity-Based Cryptography Standard (IBCS) #1: Supersingular Curve Implementations of the BF and BB1 Cryptosystems","authors":["X. Boyen","L. Martin"],"rawDate":"2007-12","status":"Informational","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5091","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5092":{"rfcNumber":"RFC5092","href":"https://www.rfc-editor.org/rfc/rfc5092","title":"IMAP URL Scheme","authors":["A. Melnikov, Ed.","C. Newman"],"rawDate":"2007-11","status":"Proposed Standard","updatedBy":["RFC5593"],"updates":["RFC4467"],"obsoletes":["RFC2192"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5092","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5093":{"rfcNumber":"RFC5093","href":"https://www.rfc-editor.org/rfc/rfc5093","title":"BT's eXtended Network Quality RTP Control Protocol Extended Reports (RTCP XR XNQ)","authors":["G. Hunt"],"rawDate":"2007-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5094":{"rfcNumber":"RFC5094","href":"https://www.rfc-editor.org/rfc/rfc5094","title":"Mobile IPv6 Vendor Specific Option","authors":["V. Devarapalli","A. Patel","K. Leung"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5095":{"rfcNumber":"RFC5095","href":"https://www.rfc-editor.org/rfc/rfc5095","title":"Deprecation of Type 0 Routing Headers in IPv6","authors":["J. Abley","P. Savola","G. Neville-Neil"],"rawDate":"2007-12","status":"Proposed Standard","updates":["RFC2460","RFC4294"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5096":{"rfcNumber":"RFC5096","href":"https://www.rfc-editor.org/rfc/rfc5096","title":"Mobile IPv6 Experimental Messages","authors":["V. Devarapalli"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5097":{"rfcNumber":"RFC5097","href":"https://www.rfc-editor.org/rfc/rfc5097","title":"MIB for the UDP-Lite protocol","authors":["G. Renker","G. Fairhurst"],"rawDate":"2008-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5098":{"rfcNumber":"RFC5098","href":"https://www.rfc-editor.org/rfc/rfc5098","title":"Signaling MIB for PacketCable and IPCablecom Multimedia Terminal Adapters (MTAs)","authors":["G. Beacham","S. Kumar","S. Channabasappa"],"rawDate":"2008-02","status":"Proposed Standard","updatedBy":["RFC9141"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5098","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc51":{"aliasOf":"rfc0051"},"rfc510":{"aliasOf":"rfc0510"},"rfc5101":{"rfcNumber":"RFC5101","href":"https://www.rfc-editor.org/rfc/rfc5101","title":"Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of IP Traffic Flow Information","authors":["B. Claise, Ed."],"rawDate":"2008-01","status":"Proposed Standard","obsoletedBy":["RFC7011"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5101","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5102":{"rfcNumber":"RFC5102","href":"https://www.rfc-editor.org/rfc/rfc5102","title":"Information Model for IP Flow Information Export","authors":["J. Quittek","S. Bryant","B. Claise","P. Aitken","J. Meyer"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC6313"],"obsoletedBy":["RFC7012"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5102","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5103":{"rfcNumber":"RFC5103","href":"https://www.rfc-editor.org/rfc/rfc5103","title":"Bidirectional Flow Export Using IP Flow Information Export (IPFIX)","authors":["B. Trammell","E. Boschi"],"rawDate":"2008-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5103","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5104":{"rfcNumber":"RFC5104","href":"https://www.rfc-editor.org/rfc/rfc5104","title":"Codec Control Messages in the RTP Audio-Visual Profile with Feedback (AVPF)","authors":["S. Wenger","U. Chandra","M. Westerlund","B. Burman"],"rawDate":"2008-02","status":"Proposed Standard","updatedBy":["RFC7728","RFC8082"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5105":{"rfcNumber":"RFC5105","href":"https://www.rfc-editor.org/rfc/rfc5105","title":"ENUM Validation Token Format Definition","authors":["O. Lendl"],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5106":{"rfcNumber":"RFC5106","href":"https://www.rfc-editor.org/rfc/rfc5106","title":"The Extensible Authentication Protocol-Internet Key Exchange Protocol version 2 (EAP-IKEv2) Method","authors":["H. Tschofenig","D. Kroeselberg","A. Pashalidis","Y. Ohba","F. Bersani"],"rawDate":"2008-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5106","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5107":{"rfcNumber":"RFC5107","href":"https://www.rfc-editor.org/rfc/rfc5107","title":"DHCP Server Identifier Override Suboption","authors":["R. Johnson","J. Kumarasamy","K. Kinnear","M. Stapp"],"rawDate":"2008-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5109":{"rfcNumber":"RFC5109","href":"https://www.rfc-editor.org/rfc/rfc5109","title":"RTP Payload Format for Generic Forward Error Correction","authors":["A. Li, Ed."],"rawDate":"2007-12","status":"Proposed Standard","obsoletes":["RFC2733","RFC3009"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5109","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc511":{"aliasOf":"rfc0511"},"rfc5110":{"rfcNumber":"RFC5110","href":"https://www.rfc-editor.org/rfc/rfc5110","title":"Overview of the Internet Multicast Routing Architecture","authors":["P. Savola"],"rawDate":"2008-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5111":{"rfcNumber":"RFC5111","href":"https://www.rfc-editor.org/rfc/rfc5111","title":"Experiment in Exploratory Group Formation within the Internet Engineering Task Force (IETF)","authors":["B. Aboba","L. Dondeti"],"rawDate":"2008-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5112":{"rfcNumber":"RFC5112","href":"https://www.rfc-editor.org/rfc/rfc5112","title":"The Presence-Specific Static Dictionary for Signaling Compression (Sigcomp)","authors":["M. Garcia-Martin"],"rawDate":"2008-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5113":{"rfcNumber":"RFC5113","href":"https://www.rfc-editor.org/rfc/rfc5113","title":"Network Discovery and Selection Problem","authors":["J. Arkko","B. Aboba","J. Korhonen, Ed.","F. Bari"],"rawDate":"2008-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5114":{"rfcNumber":"RFC5114","href":"https://www.rfc-editor.org/rfc/rfc5114","title":"Additional Diffie-Hellman Groups for Use with IETF Standards","authors":["M. Lepinski","S. Kent"],"rawDate":"2008-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5115":{"rfcNumber":"RFC5115","href":"https://www.rfc-editor.org/rfc/rfc5115","title":"Telephony Routing over IP (TRIP) Attribute for Resource Priority","authors":["K. Carlberg","P. O'Hanlon"],"rawDate":"2008-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5115","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5116":{"rfcNumber":"RFC5116","href":"https://www.rfc-editor.org/rfc/rfc5116","title":"An Interface and Algorithms for Authenticated Encryption","authors":["D. McGrew"],"rawDate":"2008-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5116","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5117":{"rfcNumber":"RFC5117","href":"https://www.rfc-editor.org/rfc/rfc5117","title":"RTP Topologies","authors":["M. Westerlund","S. Wenger"],"rawDate":"2008-01","status":"Informational","obsoletedBy":["RFC7667"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5117","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5118":{"rfcNumber":"RFC5118","href":"https://www.rfc-editor.org/rfc/rfc5118","title":"Session Initiation Protocol (SIP) Torture Test Messages for Internet Protocol Version 6 (IPv6)","authors":["V. Gurbani","C. Boulton","R. Sparks"],"rawDate":"2008-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5118","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5119":{"rfcNumber":"RFC5119","href":"https://www.rfc-editor.org/rfc/rfc5119","title":"A Uniform Resource Name (URN) Namespace for the Society of Motion Picture and Television Engineers (SMPTE)","authors":["T. Edwards"],"rawDate":"2008-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5119","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc512":{"aliasOf":"rfc0512"},"rfc5120":{"rfcNumber":"RFC5120","href":"https://www.rfc-editor.org/rfc/rfc5120","title":"M-ISIS: Multi Topology (MT) Routing in Intermediate System to Intermediate Systems (IS-ISs)","authors":["T. Przygienda","N. Shen","N. Sheth"],"rawDate":"2008-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5121":{"rfcNumber":"RFC5121","href":"https://www.rfc-editor.org/rfc/rfc5121","title":"Transmission of IPv6 via the IPv6 Convergence Sublayer over IEEE 802.16 Networks","authors":["B. Patil","F. Xia","B. Sarikaya","JH. Choi","S. Madanapalli"],"rawDate":"2008-02","status":"Proposed Standard","updatedBy":["RFC8064"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5121","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5122":{"rfcNumber":"RFC5122","href":"https://www.rfc-editor.org/rfc/rfc5122","title":"Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre"],"rawDate":"2008-02","status":"Proposed Standard","obsoletes":["RFC4622"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5123":{"rfcNumber":"RFC5123","href":"https://www.rfc-editor.org/rfc/rfc5123","title":"Considerations in Validating the Path in BGP","authors":["R. White","B. Akyol"],"rawDate":"2008-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5123","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5124":{"rfcNumber":"RFC5124","href":"https://www.rfc-editor.org/rfc/rfc5124","title":"Extended Secure RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/SAVPF)","authors":["J. Ott","E. Carrara"],"rawDate":"2008-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5125":{"rfcNumber":"RFC5125","href":"https://www.rfc-editor.org/rfc/rfc5125","title":"Reclassification of RFC 3525 to Historic","authors":["T. Taylor"],"rawDate":"2008-02","status":"Informational","obsoletes":["RFC3525"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5126":{"rfcNumber":"RFC5126","href":"https://www.rfc-editor.org/rfc/rfc5126","title":"CMS Advanced Electronic Signatures (CAdES)","authors":["D. Pinkas","N. Pope","J. Ross"],"rawDate":"2008-03","status":"Informational","obsoletes":["RFC3126"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5127":{"rfcNumber":"RFC5127","href":"https://www.rfc-editor.org/rfc/rfc5127","title":"Aggregation of Diffserv Service Classes","authors":["K. Chan","J. Babiarz","F. Baker"],"rawDate":"2008-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5128":{"rfcNumber":"RFC5128","href":"https://www.rfc-editor.org/rfc/rfc5128","title":"State of Peer-to-Peer (P2P) Communication across Network Address Translators (NATs)","authors":["P. Srisuresh","B. Ford","D. Kegel"],"rawDate":"2008-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5128","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5129":{"rfcNumber":"RFC5129","href":"https://www.rfc-editor.org/rfc/rfc5129","title":"Explicit Congestion Marking in MPLS","authors":["B. Davie","B. Briscoe","J. Tay"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC5462"],"updates":["RFC3032"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc513":{"aliasOf":"rfc0513"},"rfc5130":{"rfcNumber":"RFC5130","href":"https://www.rfc-editor.org/rfc/rfc5130","title":"A Policy Control Mechanism in IS-IS Using Administrative Tags","authors":["S. Previdi","M. Shand, Ed.","C. Martin"],"rawDate":"2008-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5131":{"rfcNumber":"RFC5131","href":"https://www.rfc-editor.org/rfc/rfc5131","title":"A MIB Textual Convention for Language Tags","authors":["D. McWalter, Ed."],"rawDate":"2007-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5132":{"rfcNumber":"RFC5132","href":"https://www.rfc-editor.org/rfc/rfc5132","title":"IP Multicast MIB","authors":["D. McWalter","D. Thaler","A. Kessler"],"rawDate":"2007-12","status":"Proposed Standard","obsoletes":["RFC2932"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5133":{"rfcNumber":"RFC5133","href":"https://www.rfc-editor.org/rfc/rfc5133","title":"Terminal Endpoint Identifier (TEI) Query Request Number Change","authors":["M. Tuexen","K. Morneault"],"rawDate":"2007-12","status":"Proposed Standard","updates":["RFC4233"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5134":{"rfcNumber":"RFC5134","href":"https://www.rfc-editor.org/rfc/rfc5134","title":"A Uniform Resource Name Namespace for the EPCglobal Electronic Product Code (EPC) and Related Standards","authors":["M. Mealling"],"rawDate":"2008-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5134","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5135":{"rfcNumber":"RFC5135","href":"https://www.rfc-editor.org/rfc/rfc5135","title":"IP Multicast Requirements for a Network Address Translator (NAT) and a Network Address Port Translator (NAPT)","authors":["D. Wing","T. Eckert"],"rawDate":"2008-02","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5135","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5136":{"rfcNumber":"RFC5136","href":"https://www.rfc-editor.org/rfc/rfc5136","title":"Defining Network Capacity","authors":["P. Chimento","J. Ishac"],"rawDate":"2008-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5137":{"rfcNumber":"RFC5137","href":"https://www.rfc-editor.org/rfc/rfc5137","title":"ASCII Escaping of Unicode Characters","authors":["J. Klensin"],"rawDate":"2008-02","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5137","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5138":{"rfcNumber":"RFC5138","href":"https://www.rfc-editor.org/rfc/rfc5138","title":"A Uniform Resource Name (URN) Namespace for the Commission for the Management and Application of Geoscience Information (CGI)","authors":["S. Cox"],"rawDate":"2008-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5139":{"rfcNumber":"RFC5139","href":"https://www.rfc-editor.org/rfc/rfc5139","title":"Revised Civic Location Format for Presence Information Data Format Location Object (PIDF-LO)","authors":["M. Thomson","J. Winterbottom"],"rawDate":"2008-02","status":"Proposed Standard","updates":["RFC4119"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc514":{"aliasOf":"rfc0514"},"rfc5140":{"rfcNumber":"RFC5140","href":"https://www.rfc-editor.org/rfc/rfc5140","title":"A Telephony Gateway REgistration Protocol (TGREP)","authors":["M. Bangalore","R. Kumar","J. Rosenberg","H. Salama","D.N. Shah"],"rawDate":"2008-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5140","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5141":{"rfcNumber":"RFC5141","href":"https://www.rfc-editor.org/rfc/rfc5141","title":"A Uniform Resource Name (URN) Namespace for the International Organization for Standardization (ISO)","authors":["J. Goodwin","H. Apel"],"rawDate":"2008-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5141","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5142":{"rfcNumber":"RFC5142","href":"https://www.rfc-editor.org/rfc/rfc5142","title":"Mobility Header Home Agent Switch Message","authors":["B. Haley","V. Devarapalli","H. Deng","J. Kempf"],"rawDate":"2008-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5143":{"rfcNumber":"RFC5143","href":"https://www.rfc-editor.org/rfc/rfc5143","title":"Synchronous Optical Network/Synchronous Digital Hierarchy (SONET/SDH) Circuit Emulation Service over MPLS (CEM) Encapsulation","authors":["A. Malis","J. Brayley","J. Shirron","L. Martini","S. Vogelsang"],"rawDate":"2008-02","status":"Historic","obsoletedBy":["RFC4842"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5144":{"rfcNumber":"RFC5144","href":"https://www.rfc-editor.org/rfc/rfc5144","title":"A Domain Availability Check (DCHK) Registry Type for the Internet Registry Information Service (IRIS)","authors":["A. Newton","M. Sanz"],"rawDate":"2008-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5144","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5145":{"rfcNumber":"RFC5145","href":"https://www.rfc-editor.org/rfc/rfc5145","title":"Framework for MPLS-TE to GMPLS Migration","authors":["K. Shiomoto, Ed."],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5146":{"rfcNumber":"RFC5146","href":"https://www.rfc-editor.org/rfc/rfc5146","title":"Interworking Requirements to Support Operation of MPLS-TE over GMPLS Networks","authors":["K. Kumaki, Ed."],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5147":{"rfcNumber":"RFC5147","href":"https://www.rfc-editor.org/rfc/rfc5147","title":"URI Fragment Identifiers for the text/plain Media Type","authors":["E. Wilde","M. Duerst"],"rawDate":"2008-04","status":"Proposed Standard","updates":["RFC2046"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5148":{"rfcNumber":"RFC5148","href":"https://www.rfc-editor.org/rfc/rfc5148","title":"Jitter Considerations in Mobile Ad Hoc Networks (MANETs)","authors":["T. Clausen","C. Dearlove","B. Adamson"],"rawDate":"2008-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5148","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5149":{"rfcNumber":"RFC5149","href":"https://www.rfc-editor.org/rfc/rfc5149","title":"Service Selection for Mobile IPv6","authors":["J. Korhonen","U. Nilsson","V. Devarapalli"],"rawDate":"2008-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc515":{"aliasOf":"rfc0515"},"rfc5150":{"rfcNumber":"RFC5150","href":"https://www.rfc-editor.org/rfc/rfc5150","title":"Label Switched Path Stitching with Generalized Multiprotocol Label Switching Traffic Engineering (GMPLS TE)","authors":["A. Ayyangar","K. Kompella","JP. Vasseur","A. Farrel"],"rawDate":"2008-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5150","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5151":{"rfcNumber":"RFC5151","href":"https://www.rfc-editor.org/rfc/rfc5151","title":"Inter-Domain MPLS and GMPLS Traffic Engineering -- Resource Reservation Protocol-Traffic Engineering (RSVP-TE) Extensions","authors":["A. Farrel, Ed.","A. Ayyangar","JP. Vasseur"],"rawDate":"2008-02","status":"Proposed Standard","updates":["RFC3209","RFC3473"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5151","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5152":{"rfcNumber":"RFC5152","href":"https://www.rfc-editor.org/rfc/rfc5152","title":"A Per-Domain Path Computation Method for Establishing Inter-Domain Traffic Engineering (TE) Label Switched Paths (LSPs)","authors":["JP. Vasseur, Ed.","A. Ayyangar, Ed.","R. Zhang"],"rawDate":"2008-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5153":{"rfcNumber":"RFC5153","href":"https://www.rfc-editor.org/rfc/rfc5153","title":"IP Flow Information Export (IPFIX) Implementation Guidelines","authors":["E. Boschi","L. Mark","J. Quittek","M. Stiemerling","P. Aitken"],"rawDate":"2008-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5153","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5154":{"rfcNumber":"RFC5154","href":"https://www.rfc-editor.org/rfc/rfc5154","title":"IP over IEEE 802.16 Problem Statement and Goals","authors":["J. Jee, Ed.","S. Madanapalli","J. Mandin"],"rawDate":"2008-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5155":{"rfcNumber":"RFC5155","href":"https://www.rfc-editor.org/rfc/rfc5155","title":"DNS Security (DNSSEC) Hashed Authenticated Denial of Existence","authors":["B. Laurie","G. Sisson","R. Arends","D. Blacka"],"rawDate":"2008-03","status":"Proposed Standard","updatedBy":["RFC6840","RFC6944","RFC9077","RFC9157","RFC9276"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5155","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5156":{"rfcNumber":"RFC5156","href":"https://www.rfc-editor.org/rfc/rfc5156","title":"Special-Use IPv6 Addresses","authors":["M. Blanchet"],"rawDate":"2008-04","status":"Informational","obsoletedBy":["RFC6890"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5157":{"rfcNumber":"RFC5157","href":"https://www.rfc-editor.org/rfc/rfc5157","title":"IPv6 Implications for Network Scanning","authors":["T. Chown"],"rawDate":"2008-03","status":"Informational","obsoletedBy":["RFC7707"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5158":{"rfcNumber":"RFC5158","href":"https://www.rfc-editor.org/rfc/rfc5158","title":"6to4 Reverse DNS Delegation Specification","authors":["G. Huston"],"rawDate":"2008-03","status":"Informational","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5158","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5159":{"rfcNumber":"RFC5159","href":"https://www.rfc-editor.org/rfc/rfc5159","title":"Session Description Protocol (SDP) Attributes for Open Mobile Alliance (OMA) Broadcast (BCAST) Service and Content Protection","authors":["L. Dondeti, Ed.","A. Jerichow"],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc516":{"aliasOf":"rfc0516"},"rfc5160":{"rfcNumber":"RFC5160","href":"https://www.rfc-editor.org/rfc/rfc5160","title":"Considerations of Provider-to-Provider Agreements for Internet-Scale Quality of Service (QoS)","authors":["P. Levis","M. Boucadair"],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5161":{"rfcNumber":"RFC5161","href":"https://www.rfc-editor.org/rfc/rfc5161","title":"The IMAP ENABLE Extension","authors":["A. Gulbrandsen, Ed.","A. Melnikov, Ed."],"rawDate":"2008-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5162":{"rfcNumber":"RFC5162","href":"https://www.rfc-editor.org/rfc/rfc5162","title":"IMAP4 Extensions for Quick Mailbox Resynchronization","authors":["A. Melnikov","D. Cridland","C. Wilson"],"rawDate":"2008-03","status":"Proposed Standard","obsoletedBy":["RFC7162"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5162","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5163":{"rfcNumber":"RFC5163","href":"https://www.rfc-editor.org/rfc/rfc5163","title":"Extension Formats for Unidirectional Lightweight Encapsulation (ULE) and the Generic Stream Encapsulation (GSE)","authors":["G. Fairhurst","B. Collini-Nocker"],"rawDate":"2008-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5164":{"rfcNumber":"RFC5164","href":"https://www.rfc-editor.org/rfc/rfc5164","title":"Mobility Services Transport: Problem Statement","authors":["T. Melia, Ed."],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5165":{"rfcNumber":"RFC5165","href":"https://www.rfc-editor.org/rfc/rfc5165","title":"A Uniform Resource Name (URN) Namespace for the Open Geospatial Consortium (OGC)","authors":["C. Reed"],"rawDate":"2008-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5166":{"rfcNumber":"RFC5166","href":"https://www.rfc-editor.org/rfc/rfc5166","title":"Metrics for the Evaluation of Congestion Control Mechanisms","authors":["S. Floyd, Ed."],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5167":{"rfcNumber":"RFC5167","href":"https://www.rfc-editor.org/rfc/rfc5167","title":"Media Server Control Protocol Requirements","authors":["M. Dolly","R. Even"],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5168":{"rfcNumber":"RFC5168","href":"https://www.rfc-editor.org/rfc/rfc5168","title":"XML Schema for Media Control","authors":["O. Levin","R. Even","P. Hagendorf"],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5169":{"rfcNumber":"RFC5169","href":"https://www.rfc-editor.org/rfc/rfc5169","title":"Handover Key Management and Re-Authentication Problem Statement","authors":["T. Clancy","M. Nakhjiri","V. Narayanan","L. Dondeti"],"rawDate":"2008-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5169","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5170":{"rfcNumber":"RFC5170","href":"https://www.rfc-editor.org/rfc/rfc5170","title":"Low Density Parity Check (LDPC) Staircase and Triangle Forward Error Correction (FEC) Schemes","authors":["V. Roca","C. Neumann","D. Furodet"],"rawDate":"2008-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5171":{"rfcNumber":"RFC5171","href":"https://www.rfc-editor.org/rfc/rfc5171","title":"Cisco Systems UniDirectional Link Detection (UDLD) Protocol","authors":["M. Foschiano"],"rawDate":"2008-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5172":{"rfcNumber":"RFC5172","href":"https://www.rfc-editor.org/rfc/rfc5172","title":"Negotiation for IPv6 Datagram Compression Using IPv6 Control Protocol","authors":["S. Varada, Ed."],"rawDate":"2008-03","status":"Proposed Standard","obsoletes":["RFC2472"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5173":{"rfcNumber":"RFC5173","href":"https://www.rfc-editor.org/rfc/rfc5173","title":"Sieve Email Filtering: Body Extension","authors":["J. Degener","P. Guenther"],"rawDate":"2008-04","status":"Proposed Standard","updates":["RFC5229"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5174":{"rfcNumber":"RFC5174","href":"https://www.rfc-editor.org/rfc/rfc5174","title":"A Uniform Resource Name (URN) Namespace for the European Broadcasting Union (EBU)","authors":["J-P. Evain"],"rawDate":"2008-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5175":{"rfcNumber":"RFC5175","href":"https://www.rfc-editor.org/rfc/rfc5175","title":"IPv6 Router Advertisement Flags Option","authors":["B. Haberman, Ed.","R. Hinden"],"rawDate":"2008-03","status":"Proposed Standard","obsoletes":["RFC5075"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5176":{"rfcNumber":"RFC5176","href":"https://www.rfc-editor.org/rfc/rfc5176","title":"Dynamic Authorization Extensions to Remote Authentication Dial In User Service (RADIUS)","authors":["M. Chiba","G. Dommety","M. Eklund","D. Mitton","B. Aboba"],"rawDate":"2008-01","status":"Informational","updatedBy":["RFC8559"],"obsoletes":["RFC3576"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5176","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5177":{"rfcNumber":"RFC5177","href":"https://www.rfc-editor.org/rfc/rfc5177","title":"Network Mobility (NEMO) Extensions for Mobile IPv4","authors":["K. Leung","G. Dommety","V. Narayanan","A. Petrescu"],"rawDate":"2008-04","status":"Proposed Standard","updatedBy":["RFC6626"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5178":{"rfcNumber":"RFC5178","href":"https://www.rfc-editor.org/rfc/rfc5178","title":"Generic Security Service Application Program Interface (GSS-API) Internationalization and Domain-Based Service Names and Name Type","authors":["N. Williams","A. Melnikov"],"rawDate":"2008-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5179":{"rfcNumber":"RFC5179","href":"https://www.rfc-editor.org/rfc/rfc5179","title":"Generic Security Service Application Program Interface (GSS-API) Domain-Based Service Names Mapping for the Kerberos V GSS Mechanism","authors":["N. Williams"],"rawDate":"2008-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc518":{"aliasOf":"rfc0518"},"rfc5180":{"rfcNumber":"RFC5180","href":"https://www.rfc-editor.org/rfc/rfc5180","title":"IPv6 Benchmarking Methodology for Network Interconnect Devices","authors":["C. Popoviciu","A. Hamza","G. Van de Velde","D. Dugatkin"],"rawDate":"2008-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5180","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5181":{"rfcNumber":"RFC5181","href":"https://www.rfc-editor.org/rfc/rfc5181","title":"IPv6 Deployment Scenarios in 802.16 Networks","authors":["M-K. Shin, Ed.","Y-H. Han","S-E. Kim","D. Premec"],"rawDate":"2008-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5182":{"rfcNumber":"RFC5182","href":"https://www.rfc-editor.org/rfc/rfc5182","title":"IMAP Extension for Referencing the Last SEARCH Result","authors":["A. Melnikov"],"rawDate":"2008-03","status":"Proposed Standard","updates":["RFC3501"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5183":{"rfcNumber":"RFC5183","href":"https://www.rfc-editor.org/rfc/rfc5183","title":"Sieve Email Filtering: Environment Extension","authors":["N. Freed"],"rawDate":"2008-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5184":{"rfcNumber":"RFC5184","href":"https://www.rfc-editor.org/rfc/rfc5184","title":"Unified Layer 2 (L2) Abstractions for Layer 3 (L3)-Driven Fast Handover","authors":["F. Teraoka","K. Gogo","K. Mitsuya","R. Shibui","K. Mitani"],"rawDate":"2008-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5185":{"rfcNumber":"RFC5185","href":"https://www.rfc-editor.org/rfc/rfc5185","title":"OSPF Multi-Area Adjacency","authors":["S. Mirtorabi","P. Psenak","A. Lindem, Ed.","A. Oswal"],"rawDate":"2008-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5185","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5186":{"rfcNumber":"RFC5186","href":"https://www.rfc-editor.org/rfc/rfc5186","title":"Internet Group Management Protocol Version 3 (IGMPv3) / Multicast Listener Discovery Version 2 (MLDv2) and Multicast Routing Protocol Interaction","authors":["B. Haberman","J. Martin"],"rawDate":"2008-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5187":{"rfcNumber":"RFC5187","href":"https://www.rfc-editor.org/rfc/rfc5187","title":"OSPFv3 Graceful Restart","authors":["P. Pillay-Esnault","A. Lindem"],"rawDate":"2008-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5187","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5188":{"rfcNumber":"RFC5188","href":"https://www.rfc-editor.org/rfc/rfc5188","title":"RTP Payload Format for the Enhanced Variable Rate Wideband Codec (EVRC-WB) and the Media Subtype Updates for EVRC-B Codec","authors":["H. Desineni","Q. Xie"],"rawDate":"2008-02","status":"Proposed Standard","updates":["RFC4788"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5189":{"rfcNumber":"RFC5189","href":"https://www.rfc-editor.org/rfc/rfc5189","title":"Middlebox Communication (MIDCOM) Protocol Semantics","authors":["M. Stiemerling","J. Quittek","T. Taylor"],"rawDate":"2008-03","status":"Proposed Standard","obsoletes":["RFC3989"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc519":{"aliasOf":"rfc0519"},"rfc5190":{"rfcNumber":"RFC5190","href":"https://www.rfc-editor.org/rfc/rfc5190","title":"Definitions of Managed Objects for Middlebox Communication","authors":["J. Quittek","M. Stiemerling","P. Srisuresh"],"rawDate":"2008-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5191":{"rfcNumber":"RFC5191","href":"https://www.rfc-editor.org/rfc/rfc5191","title":"Protocol for Carrying Authentication for Network Access (PANA)","authors":["D. Forsberg","Y. Ohba, Ed.","B. Patil","H. Tschofenig","A. Yegin"],"rawDate":"2008-05","status":"Proposed Standard","updatedBy":["RFC5872"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5191","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5192":{"rfcNumber":"RFC5192","href":"https://www.rfc-editor.org/rfc/rfc5192","title":"DHCP Options for Protocol for Carrying Authentication for Network Access (PANA) Authentication Agents","authors":["L. Morand","A. Yegin","S. Kumar","S. Madanapalli"],"rawDate":"2008-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5193":{"rfcNumber":"RFC5193","href":"https://www.rfc-editor.org/rfc/rfc5193","title":"Protocol for Carrying Authentication for Network Access (PANA) Framework","authors":["P. Jayaraman","R. Lopez","Y. Ohba, Ed.","M. Parthasarathy","A. Yegin"],"rawDate":"2008-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5194":{"rfcNumber":"RFC5194","href":"https://www.rfc-editor.org/rfc/rfc5194","title":"Framework for Real-Time Text over IP Using the Session Initiation Protocol (SIP)","authors":["A. van Wijk, Ed.","G. Gybels, Ed."],"rawDate":"2008-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5195":{"rfcNumber":"RFC5195","href":"https://www.rfc-editor.org/rfc/rfc5195","title":"BGP-Based Auto-Discovery for Layer-1 VPNs","authors":["H. Ould-Brahim","D. Fedyk","Y. Rekhter"],"rawDate":"2008-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5196":{"rfcNumber":"RFC5196","href":"https://www.rfc-editor.org/rfc/rfc5196","title":"Session Initiation Protocol (SIP) User Agent Capability Extension to Presence Information Data Format (PIDF)","authors":["M. Lonnfors","K. Kiss"],"rawDate":"2008-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5197":{"rfcNumber":"RFC5197","href":"https://www.rfc-editor.org/rfc/rfc5197","title":"On the Applicability of Various Multimedia Internet KEYing (MIKEY) Modes and Extensions","authors":["S. Fries","D. Ignjatic"],"rawDate":"2008-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5198":{"rfcNumber":"RFC5198","href":"https://www.rfc-editor.org/rfc/rfc5198","title":"Unicode Format for Network Interchange","authors":["J. Klensin","M. Padlipsky"],"rawDate":"2008-03","status":"Proposed Standard","updates":["RFC0854"],"obsoletes":["RFC0698"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5198","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc52":{"aliasOf":"rfc0052"},"rfc520":{"aliasOf":"rfc0520"},"rfc5201":{"rfcNumber":"RFC5201","href":"https://www.rfc-editor.org/rfc/rfc5201","title":"Host Identity Protocol","authors":["R. Moskowitz","P. Nikander","P. Jokela, Ed.","T. Henderson"],"rawDate":"2008-04","status":"Experimental","updatedBy":["RFC6253"],"obsoletedBy":["RFC7401"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5201","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5202":{"rfcNumber":"RFC5202","href":"https://www.rfc-editor.org/rfc/rfc5202","title":"Using the Encapsulating Security Payload (ESP) Transport Format with the Host Identity Protocol (HIP)","authors":["P. Jokela","R. Moskowitz","P. Nikander"],"rawDate":"2008-04","status":"Experimental","obsoletedBy":["RFC7402"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5202","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5203":{"rfcNumber":"RFC5203","href":"https://www.rfc-editor.org/rfc/rfc5203","title":"Host Identity Protocol (HIP) Registration Extension","authors":["J. Laganier","T. Koponen","L. Eggert"],"rawDate":"2008-04","status":"Experimental","obsoletedBy":["RFC8003"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5204":{"rfcNumber":"RFC5204","href":"https://www.rfc-editor.org/rfc/rfc5204","title":"Host Identity Protocol (HIP) Rendezvous Extension","authors":["J. Laganier","L. Eggert"],"rawDate":"2008-04","status":"Experimental","obsoletedBy":["RFC8004"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5205":{"rfcNumber":"RFC5205","href":"https://www.rfc-editor.org/rfc/rfc5205","title":"Host Identity Protocol (HIP) Domain Name System (DNS) Extensions","authors":["P. Nikander","J. Laganier"],"rawDate":"2008-04","status":"Experimental","obsoletedBy":["RFC8005"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5206":{"rfcNumber":"RFC5206","href":"https://www.rfc-editor.org/rfc/rfc5206","title":"End-Host Mobility and Multihoming with the Host Identity Protocol","authors":["P. Nikander","T. Henderson, Ed.","C. Vogt","J. Arkko"],"rawDate":"2008-04","status":"Experimental","obsoletedBy":["RFC8046"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5207":{"rfcNumber":"RFC5207","href":"https://www.rfc-editor.org/rfc/rfc5207","title":"NAT and Firewall Traversal Issues of Host Identity Protocol (HIP) Communication","authors":["M. Stiemerling","J. Quittek","L. Eggert"],"rawDate":"2008-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5208":{"rfcNumber":"RFC5208","href":"https://www.rfc-editor.org/rfc/rfc5208","title":"Public-Key Cryptography Standards (PKCS) #8: Private-Key Information Syntax Specification Version 1.2","authors":["B. Kaliski"],"rawDate":"2008-05","status":"Informational","obsoletedBy":["RFC5958"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5208","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5209":{"rfcNumber":"RFC5209","href":"https://www.rfc-editor.org/rfc/rfc5209","title":"Network Endpoint Assessment (NEA): Overview and Requirements","authors":["P. Sangster","H. Khosravi","M. Mani","K. Narayan","J. Tardo"],"rawDate":"2008-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc521":{"aliasOf":"rfc0521"},"rfc5210":{"rfcNumber":"RFC5210","href":"https://www.rfc-editor.org/rfc/rfc5210","title":"A Source Address Validation Architecture (SAVA) Testbed and Deployment Experience","authors":["J. Wu","J. Bi","X. Li","G. Ren","K. Xu","M. Williams"],"rawDate":"2008-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5211":{"rfcNumber":"RFC5211","href":"https://www.rfc-editor.org/rfc/rfc5211","title":"An Internet Transition Plan","authors":["J. Curran"],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5212":{"rfcNumber":"RFC5212","href":"https://www.rfc-editor.org/rfc/rfc5212","title":"Requirements for GMPLS-Based Multi-Region and Multi-Layer Networks (MRN/MLN)","authors":["K. Shiomoto","D. Papadimitriou","JL. Le Roux","M. Vigoureux","D. Brungard"],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5213":{"rfcNumber":"RFC5213","href":"https://www.rfc-editor.org/rfc/rfc5213","title":"Proxy Mobile IPv6","authors":["S. Gundavelli, Ed.","K. Leung","V. Devarapalli","K. Chowdhury","B. Patil"],"rawDate":"2008-08","status":"Proposed Standard","updatedBy":["RFC6543","RFC7864"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5213","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5214":{"rfcNumber":"RFC5214","href":"https://www.rfc-editor.org/rfc/rfc5214","title":"Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)","authors":["F. Templin","T. Gleeson","D. Thaler"],"rawDate":"2008-03","status":"Informational","obsoletes":["RFC4214"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5215":{"rfcNumber":"RFC5215","href":"https://www.rfc-editor.org/rfc/rfc5215","title":"RTP Payload Format for Vorbis Encoded Audio","authors":["L. Barbato"],"rawDate":"2008-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5215","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5216":{"rfcNumber":"RFC5216","href":"https://www.rfc-editor.org/rfc/rfc5216","title":"The EAP-TLS Authentication Protocol","authors":["D. Simon","B. Aboba","R. Hurst"],"rawDate":"2008-03","status":"Proposed Standard","updatedBy":["RFC8996","RFC9190"],"obsoletes":["RFC2716"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5216","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5217":{"rfcNumber":"RFC5217","href":"https://www.rfc-editor.org/rfc/rfc5217","title":"Memorandum for Multi-Domain Public Key Infrastructure Interoperability","authors":["M. Shimaoka, Ed.","N. Hastings","R. Nielsen"],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5218":{"rfcNumber":"RFC5218","href":"https://www.rfc-editor.org/rfc/rfc5218","title":"What Makes for a Successful Protocol?","authors":["D. Thaler","B. Aboba"],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5219":{"rfcNumber":"RFC5219","href":"https://www.rfc-editor.org/rfc/rfc5219","title":"A More Loss-Tolerant RTP Payload Format for MP3 Audio","authors":["R. Finlayson"],"rawDate":"2008-02","status":"Proposed Standard","obsoletes":["RFC3119"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc522":{"aliasOf":"rfc0522"},"rfc5220":{"rfcNumber":"RFC5220","href":"https://www.rfc-editor.org/rfc/rfc5220","title":"Problem Statement for Default Address Selection in Multi-Prefix Environments: Operational Issues of RFC 3484 Default Rules","authors":["A. Matsumoto","T. Fujisaki","R. Hiromi","K. Kanayama"],"rawDate":"2008-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5220","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5221":{"rfcNumber":"RFC5221","href":"https://www.rfc-editor.org/rfc/rfc5221","title":"Requirements for Address Selection Mechanisms","authors":["A. Matsumoto","T. Fujisaki","R. Hiromi","K. Kanayama"],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5222":{"rfcNumber":"RFC5222","href":"https://www.rfc-editor.org/rfc/rfc5222","title":"LoST: A Location-to-Service Translation Protocol","authors":["T. Hardie","A. Newton","H. Schulzrinne","H. Tschofenig"],"rawDate":"2008-08","status":"Proposed Standard","updatedBy":["RFC6848","RFC8917","RFC9036"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5222","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5223":{"rfcNumber":"RFC5223","href":"https://www.rfc-editor.org/rfc/rfc5223","title":"Discovering Location-to-Service Translation (LoST) Servers Using the Dynamic Host Configuration Protocol (DHCP)","authors":["H. Schulzrinne","J. Polk","H. Tschofenig"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5224":{"rfcNumber":"RFC5224","href":"https://www.rfc-editor.org/rfc/rfc5224","title":"Diameter Policy Processing Application","authors":["M. Brenner"],"rawDate":"2008-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5225":{"rfcNumber":"RFC5225","href":"https://www.rfc-editor.org/rfc/rfc5225","title":"RObust Header Compression Version 2 (ROHCv2): Profiles for RTP, UDP, IP, ESP and UDP-Lite","authors":["G. Pelletier","K. Sandlund"],"rawDate":"2008-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5225","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5226":{"rfcNumber":"RFC5226","href":"https://www.rfc-editor.org/rfc/rfc5226","title":"Guidelines for Writing an IANA Considerations Section in RFCs","authors":["T. Narten","H. Alvestrand"],"rawDate":"2008-05","status":"Best Current Practice","obsoletedBy":["RFC8126"],"obsoletes":["RFC2434"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5226","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5227":{"rfcNumber":"RFC5227","href":"https://www.rfc-editor.org/rfc/rfc5227","title":"IPv4 Address Conflict Detection","authors":["S. Cheshire"],"rawDate":"2008-07","status":"Proposed Standard","updates":["RFC0826"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5228":{"rfcNumber":"RFC5228","href":"https://www.rfc-editor.org/rfc/rfc5228","title":"Sieve: An Email Filtering Language","authors":["P. Guenther, Ed.","T. Showalter, Ed."],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC5229","RFC5429","RFC6785","RFC9042"],"obsoletes":["RFC3028"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5228","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5229":{"rfcNumber":"RFC5229","href":"https://www.rfc-editor.org/rfc/rfc5229","title":"Sieve Email Filtering: Variables Extension","authors":["K. Homme"],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC5173"],"updates":["RFC5228"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5229","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc523":{"aliasOf":"rfc0523"},"rfc5230":{"rfcNumber":"RFC5230","href":"https://www.rfc-editor.org/rfc/rfc5230","title":"Sieve Email Filtering: Vacation Extension","authors":["T. Showalter","N. Freed, Ed."],"rawDate":"2008-01","status":"Proposed Standard","updatedBy":["RFC8580"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5230","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5231":{"rfcNumber":"RFC5231","href":"https://www.rfc-editor.org/rfc/rfc5231","title":"Sieve Email Filtering: Relational Extension","authors":["W. Segmuller","B. Leiba"],"rawDate":"2008-01","status":"Proposed Standard","obsoletes":["RFC3431"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5232":{"rfcNumber":"RFC5232","href":"https://www.rfc-editor.org/rfc/rfc5232","title":"Sieve Email Filtering: Imap4flags Extension","authors":["A. Melnikov"],"rawDate":"2008-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5232","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5233":{"rfcNumber":"RFC5233","href":"https://www.rfc-editor.org/rfc/rfc5233","title":"Sieve Email Filtering: Subaddress Extension","authors":["K. Murchison"],"rawDate":"2008-01","status":"Proposed Standard","obsoletes":["RFC3598"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5233","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5234":{"rfcNumber":"RFC5234","href":"https://www.rfc-editor.org/rfc/rfc5234","title":"Augmented BNF for Syntax Specifications: ABNF","authors":["D. Crocker, Ed.","P. Overell"],"rawDate":"2008-01","status":"Internet Standard","updatedBy":["RFC7405"],"obsoletes":["RFC4234"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5234","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5235":{"rfcNumber":"RFC5235","href":"https://www.rfc-editor.org/rfc/rfc5235","title":"Sieve Email Filtering: Spamtest and Virustest Extensions","authors":["C. Daboo"],"rawDate":"2008-01","status":"Proposed Standard","obsoletes":["RFC3685"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5236":{"rfcNumber":"RFC5236","href":"https://www.rfc-editor.org/rfc/rfc5236","title":"Improved Packet Reordering Metrics","authors":["A. Jayasumana","N. Piratla","T. Banka","A. Bare","R. Whitner"],"rawDate":"2008-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5237":{"rfcNumber":"RFC5237","href":"https://www.rfc-editor.org/rfc/rfc5237","title":"IANA Allocation Guidelines for the Protocol Field","authors":["J. Arkko","S. Bradner"],"rawDate":"2008-02","status":"Best Current Practice","updates":["RFC2780"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5237","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5238":{"rfcNumber":"RFC5238","href":"https://www.rfc-editor.org/rfc/rfc5238","title":"Datagram Transport Layer Security (DTLS) over the Datagram Congestion Control Protocol (DCCP)","authors":["T. Phelan"],"rawDate":"2008-05","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5239":{"rfcNumber":"RFC5239","href":"https://www.rfc-editor.org/rfc/rfc5239","title":"A Framework for Centralized Conferencing","authors":["M. Barnes","C. Boulton","O. Levin"],"rawDate":"2008-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5239","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc524":{"aliasOf":"rfc0524"},"rfc5240":{"rfcNumber":"RFC5240","href":"https://www.rfc-editor.org/rfc/rfc5240","title":"Protocol Independent Multicast (PIM) Bootstrap Router MIB","authors":["B. Joshi","R. Bijlani"],"rawDate":"2008-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5240","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5241":{"rfcNumber":"RFC5241","href":"https://www.rfc-editor.org/rfc/rfc5241","title":"Naming Rights in IETF Protocols","authors":["A. Falk","S. Bradner"],"rawDate":"2008-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5242":{"rfcNumber":"RFC5242","href":"https://www.rfc-editor.org/rfc/rfc5242","title":"A Generalized Unified Character Code: Western European and CJK Sections","authors":["J. Klensin","H. Alvestrand"],"rawDate":"2008-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5243":{"rfcNumber":"RFC5243","href":"https://www.rfc-editor.org/rfc/rfc5243","title":"OSPF Database Exchange Summary List Optimization","authors":["R. Ogier"],"rawDate":"2008-05","status":"Informational","updatedBy":["RFC9454"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5243","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5244":{"rfcNumber":"RFC5244","href":"https://www.rfc-editor.org/rfc/rfc5244","title":"Definition of Events for Channel-Oriented Telephony Signalling","authors":["H. Schulzrinne","T. Taylor"],"rawDate":"2008-06","status":"Proposed Standard","updates":["RFC4733"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5245":{"rfcNumber":"RFC5245","href":"https://www.rfc-editor.org/rfc/rfc5245","title":"Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal for Offer/Answer Protocols","authors":["J. Rosenberg"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC6336"],"obsoletedBy":["RFC8445","RFC8839"],"obsoletes":["RFC4091","RFC4092"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5245","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5246":{"rfcNumber":"RFC5246","href":"https://www.rfc-editor.org/rfc/rfc5246","title":"The Transport Layer Security (TLS) Protocol Version 1.2","authors":["T. Dierks","E. Rescorla"],"rawDate":"2008-08","status":"Proposed Standard","updatedBy":["RFC5746","RFC5878","RFC6176","RFC7465","RFC7507","RFC7568","RFC7627","RFC7685","RFC7905","RFC7919","RFC8447","RFC9155"],"obsoletedBy":["RFC8446"],"updates":["RFC4492"],"obsoletes":["RFC3268","RFC4346","RFC4366"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5246","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5247":{"rfcNumber":"RFC5247","href":"https://www.rfc-editor.org/rfc/rfc5247","title":"Extensible Authentication Protocol (EAP) Key Management Framework","authors":["B. Aboba","D. Simon","P. Eronen"],"rawDate":"2008-08","status":"Proposed Standard","updatedBy":["RFC8940"],"updates":["RFC3748"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5247","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5248":{"rfcNumber":"RFC5248","href":"https://www.rfc-editor.org/rfc/rfc5248","title":"A Registry for SMTP Enhanced Mail System Status Codes","authors":["T. Hansen","J. Klensin"],"rawDate":"2008-06","status":"Best Current Practice","updates":["RFC3463","RFC4468","RFC4954"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5249":{"rfcNumber":"RFC5249","href":"https://www.rfc-editor.org/rfc/rfc5249","title":"Templates for Internet-Drafts Containing MIB Modules","authors":["D. Harrington, Ed."],"rawDate":"2008-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc525":{"aliasOf":"rfc0525"},"rfc5250":{"rfcNumber":"RFC5250","href":"https://www.rfc-editor.org/rfc/rfc5250","title":"The OSPF Opaque LSA Option","authors":["L. Berger","I. Bryskin","A. Zinin","R. Coltun"],"rawDate":"2008-07","status":"Proposed Standard","obsoletes":["RFC2370"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5250","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5251":{"rfcNumber":"RFC5251","href":"https://www.rfc-editor.org/rfc/rfc5251","title":"Layer 1 VPN Basic Mode","authors":["D. Fedyk, Ed.","Y. Rekhter, Ed.","D. Papadimitriou","R. Rabbat","L. Berger"],"rawDate":"2008-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5251","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5252":{"rfcNumber":"RFC5252","href":"https://www.rfc-editor.org/rfc/rfc5252","title":"OSPF-Based Layer 1 VPN Auto-Discovery","authors":["I. Bryskin","L. Berger"],"rawDate":"2008-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5252","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5253":{"rfcNumber":"RFC5253","href":"https://www.rfc-editor.org/rfc/rfc5253","title":"Applicability Statement for Layer 1 Virtual Private Network (L1VPN) Basic Mode","authors":["T. Takeda, Ed."],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5254":{"rfcNumber":"RFC5254","href":"https://www.rfc-editor.org/rfc/rfc5254","title":"Requirements for Multi-Segment Pseudowire Emulation Edge-to-Edge (PWE3)","authors":["N. Bitar, Ed.","M. Bocci, Ed.","L. Martini, Ed."],"rawDate":"2008-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5254","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5255":{"rfcNumber":"RFC5255","href":"https://www.rfc-editor.org/rfc/rfc5255","title":"Internet Message Access Protocol Internationalization","authors":["C. Newman","A. Gulbrandsen","A. Melnikov"],"rawDate":"2008-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5255","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5256":{"rfcNumber":"RFC5256","href":"https://www.rfc-editor.org/rfc/rfc5256","title":"Internet Message Access Protocol - SORT and THREAD Extensions","authors":["M. Crispin","K. Murchison"],"rawDate":"2008-06","status":"Proposed Standard","updatedBy":["RFC5957"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5257":{"rfcNumber":"RFC5257","href":"https://www.rfc-editor.org/rfc/rfc5257","title":"Internet Message Access Protocol - ANNOTATE Extension","authors":["C. Daboo","R. Gellens"],"rawDate":"2008-06","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5257","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5258":{"rfcNumber":"RFC5258","href":"https://www.rfc-editor.org/rfc/rfc5258","title":"Internet Message Access Protocol version 4 - LIST Command Extensions","authors":["B. Leiba","A. Melnikov"],"rawDate":"2008-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5259":{"rfcNumber":"RFC5259","href":"https://www.rfc-editor.org/rfc/rfc5259","title":"Internet Message Access Protocol - CONVERT Extension","authors":["A. Melnikov, Ed.","P. Coates, Ed."],"rawDate":"2008-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc526":{"aliasOf":"rfc0526"},"rfc5260":{"rfcNumber":"RFC5260","href":"https://www.rfc-editor.org/rfc/rfc5260","title":"Sieve Email Filtering: Date and Index Extensions","authors":["N. Freed"],"rawDate":"2008-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5260","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5261":{"rfcNumber":"RFC5261","href":"https://www.rfc-editor.org/rfc/rfc5261","title":"An Extensible Markup Language (XML) Patch Operations Framework Utilizing XML Path Language (XPath) Selectors","authors":["J. Urpalainen"],"rawDate":"2008-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5261","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5262":{"rfcNumber":"RFC5262","href":"https://www.rfc-editor.org/rfc/rfc5262","title":"Presence Information Data Format (PIDF) Extension for Partial Presence","authors":["M. Lonnfors","E. Leppanen","H. Khartabil","J. Urpalainen"],"rawDate":"2008-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5263":{"rfcNumber":"RFC5263","href":"https://www.rfc-editor.org/rfc/rfc5263","title":"Session Initiation Protocol (SIP) Extension for Partial Notification of Presence Information","authors":["M. Lonnfors","J. Costa-Requena","E. Leppanen","H. Khartabil"],"rawDate":"2008-09","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5264":{"rfcNumber":"RFC5264","href":"https://www.rfc-editor.org/rfc/rfc5264","title":"Publication of Partial Presence Information","authors":["A. Niemi","M. Lonnfors","E. Leppanen"],"rawDate":"2008-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5265":{"rfcNumber":"RFC5265","href":"https://www.rfc-editor.org/rfc/rfc5265","title":"Mobile IPv4 Traversal across IPsec-Based VPN Gateways","authors":["S. Vaarala","E. Klovning"],"rawDate":"2008-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5266":{"rfcNumber":"RFC5266","href":"https://www.rfc-editor.org/rfc/rfc5266","title":"Secure Connectivity and Mobility Using Mobile IPv4 and IKEv2 Mobility and Multihoming (MOBIKE)","authors":["V. Devarapalli","P. Eronen"],"rawDate":"2008-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5267":{"rfcNumber":"RFC5267","href":"https://www.rfc-editor.org/rfc/rfc5267","title":"Contexts for IMAP4","authors":["D. Cridland","C. King"],"rawDate":"2008-07","status":"Proposed Standard","updatedBy":["RFC5465","RFC9394"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5268":{"rfcNumber":"RFC5268","href":"https://www.rfc-editor.org/rfc/rfc5268","title":"Mobile IPv6 Fast Handovers","authors":["R. Koodli, Ed."],"rawDate":"2008-06","status":"Proposed Standard","obsoletedBy":["RFC5568"],"obsoletes":["RFC4068"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5269":{"rfcNumber":"RFC5269","href":"https://www.rfc-editor.org/rfc/rfc5269","title":"Distributing a Symmetric Fast Mobile IPv6 (FMIPv6) Handover Key Using SEcure Neighbor Discovery (SEND)","authors":["J. Kempf","R. Koodli"],"rawDate":"2008-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc527":{"aliasOf":"rfc0527"},"rfc5270":{"rfcNumber":"RFC5270","href":"https://www.rfc-editor.org/rfc/rfc5270","title":"Mobile IPv6 Fast Handovers over IEEE 802.16e Networks","authors":["H. Jang","J. Jee","Y. Han","S. Park","J. Cha"],"rawDate":"2008-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5271":{"rfcNumber":"RFC5271","href":"https://www.rfc-editor.org/rfc/rfc5271","title":"Mobile IPv6 Fast Handovers for 3G CDMA Networks","authors":["H. Yokota","G. Dommety"],"rawDate":"2008-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5272":{"rfcNumber":"RFC5272","href":"https://www.rfc-editor.org/rfc/rfc5272","title":"Certificate Management over CMS (CMC)","authors":["J. Schaad","M. Myers"],"rawDate":"2008-06","status":"Proposed Standard","updatedBy":["RFC6402"],"obsoletes":["RFC2797"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5272","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5273":{"rfcNumber":"RFC5273","href":"https://www.rfc-editor.org/rfc/rfc5273","title":"Certificate Management over CMS (CMC): Transport Protocols","authors":["J. Schaad","M. Myers"],"rawDate":"2008-06","status":"Proposed Standard","updatedBy":["RFC6402"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5273","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5274":{"rfcNumber":"RFC5274","href":"https://www.rfc-editor.org/rfc/rfc5274","title":"Certificate Management Messages over CMS (CMC): Compliance Requirements","authors":["J. Schaad","M. Myers"],"rawDate":"2008-06","status":"Proposed Standard","updatedBy":["RFC6402"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5275":{"rfcNumber":"RFC5275","href":"https://www.rfc-editor.org/rfc/rfc5275","title":"CMS Symmetric Key Management and Distribution","authors":["S. Turner"],"rawDate":"2008-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5275","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5276":{"rfcNumber":"RFC5276","href":"https://www.rfc-editor.org/rfc/rfc5276","title":"Using the Server-Based Certificate Validation Protocol (SCVP) to Convey Long-Term Evidence Records","authors":["C. Wallace"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5277":{"rfcNumber":"RFC5277","href":"https://www.rfc-editor.org/rfc/rfc5277","title":"NETCONF Event Notifications","authors":["S. Chisholm","H. Trevino"],"rawDate":"2008-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5277","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5278":{"rfcNumber":"RFC5278","href":"https://www.rfc-editor.org/rfc/rfc5278","title":"IANA Registration of Enumservices for Voice and Video Messaging","authors":["J. Livingood","D. Troshynski"],"rawDate":"2008-07","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5279":{"rfcNumber":"RFC5279","href":"https://www.rfc-editor.org/rfc/rfc5279","title":"A Uniform Resource Name (URN) Namespace for the 3rd Generation Partnership Project (3GPP)","authors":["A. Monrad","S. Loreto"],"rawDate":"2008-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5279","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc528":{"aliasOf":"rfc0528"},"rfc5280":{"rfcNumber":"RFC5280","href":"https://www.rfc-editor.org/rfc/rfc5280","title":"Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile","authors":["D. Cooper","S. Santesson","S. Farrell","S. Boeyen","R. Housley","W. Polk"],"rawDate":"2008-05","status":"Proposed Standard","updatedBy":["RFC6818","RFC8398","RFC8399"],"obsoletes":["RFC3280","RFC4325","RFC4630"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5280","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5281":{"rfcNumber":"RFC5281","href":"https://www.rfc-editor.org/rfc/rfc5281","title":"Extensible Authentication Protocol Tunneled Transport Layer Security Authenticated Protocol Version 0 (EAP-TTLSv0)","authors":["P. Funk","S. Blake-Wilson"],"rawDate":"2008-08","status":"Informational","updatedBy":["RFC8996","RFC9427"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5281","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5282":{"rfcNumber":"RFC5282","href":"https://www.rfc-editor.org/rfc/rfc5282","title":"Using Authenticated Encryption Algorithms with the Encrypted Payload of the Internet Key Exchange version 2 (IKEv2) Protocol","authors":["D. Black","D. McGrew"],"rawDate":"2008-08","status":"Proposed Standard","updates":["RFC4306"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5282","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5283":{"rfcNumber":"RFC5283","href":"https://www.rfc-editor.org/rfc/rfc5283","title":"LDP Extension for Inter-Area Label Switched Paths (LSPs)","authors":["B. Decraene","JL. Le Roux","I. Minei"],"rawDate":"2008-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5283","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5284":{"rfcNumber":"RFC5284","href":"https://www.rfc-editor.org/rfc/rfc5284","title":"User-Defined Errors for RSVP","authors":["G. Swallow","A. Farrel"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5285":{"rfcNumber":"RFC5285","href":"https://www.rfc-editor.org/rfc/rfc5285","title":"A General Mechanism for RTP Header Extensions","authors":["D. Singer","H. Desineni"],"rawDate":"2008-07","status":"Proposed Standard","obsoletedBy":["RFC8285"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5286":{"rfcNumber":"RFC5286","href":"https://www.rfc-editor.org/rfc/rfc5286","title":"Basic Specification for IP Fast Reroute: Loop-Free Alternates","authors":["A. Atlas, Ed.","A. Zinin, Ed."],"rawDate":"2008-09","status":"Proposed Standard","updatedBy":["RFC8518"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5286","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5287":{"rfcNumber":"RFC5287","href":"https://www.rfc-editor.org/rfc/rfc5287","title":"Control Protocol Extensions for the Setup of Time-Division Multiplexing (TDM) Pseudowires in MPLS Networks","authors":["A. Vainshtein","Y(J). Stein"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5288":{"rfcNumber":"RFC5288","href":"https://www.rfc-editor.org/rfc/rfc5288","title":"AES Galois Counter Mode (GCM) Cipher Suites for TLS","authors":["J. Salowey","A. Choudhury","D. McGrew"],"rawDate":"2008-08","status":"Proposed Standard","updatedBy":["RFC9325"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5288","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5289":{"rfcNumber":"RFC5289","href":"https://www.rfc-editor.org/rfc/rfc5289","title":"TLS Elliptic Curve Cipher Suites with SHA-256/384 and AES Galois Counter Mode (GCM)","authors":["E. Rescorla"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc529":{"aliasOf":"rfc0529"},"rfc5290":{"rfcNumber":"RFC5290","href":"https://www.rfc-editor.org/rfc/rfc5290","title":"Comments on the Usefulness of Simple Best-Effort Traffic","authors":["S. Floyd","M. Allman"],"rawDate":"2008-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5291":{"rfcNumber":"RFC5291","href":"https://www.rfc-editor.org/rfc/rfc5291","title":"Outbound Route Filtering Capability for BGP-4","authors":["E. Chen","Y. Rekhter"],"rawDate":"2008-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5291","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5292":{"rfcNumber":"RFC5292","href":"https://www.rfc-editor.org/rfc/rfc5292","title":"Address-Prefix-Based Outbound Route Filter for BGP-4","authors":["E. Chen","S. Sangli"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5293":{"rfcNumber":"RFC5293","href":"https://www.rfc-editor.org/rfc/rfc5293","title":"Sieve Email Filtering: Editheader Extension","authors":["J. Degener","P. Guenther"],"rawDate":"2008-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5294":{"rfcNumber":"RFC5294","href":"https://www.rfc-editor.org/rfc/rfc5294","title":"Host Threats to Protocol Independent Multicast (PIM)","authors":["P. Savola","J. Lingard"],"rawDate":"2008-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5295":{"rfcNumber":"RFC5295","href":"https://www.rfc-editor.org/rfc/rfc5295","title":"Specification for the Derivation of Root Keys from an Extended Master Session Key (EMSK)","authors":["J. Salowey","L. Dondeti","V. Narayanan","M. Nakhjiri"],"rawDate":"2008-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5295","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5296":{"rfcNumber":"RFC5296","href":"https://www.rfc-editor.org/rfc/rfc5296","title":"EAP Extensions for EAP Re-authentication Protocol (ERP)","authors":["V. Narayanan","L. Dondeti"],"rawDate":"2008-08","status":"Proposed Standard","obsoletedBy":["RFC6696"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5296","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5297":{"rfcNumber":"RFC5297","href":"https://www.rfc-editor.org/rfc/rfc5297","title":"Synthetic Initialization Vector (SIV) Authenticated Encryption Using the Advanced Encryption Standard (AES)","authors":["D. Harkins"],"rawDate":"2008-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5298":{"rfcNumber":"RFC5298","href":"https://www.rfc-editor.org/rfc/rfc5298","title":"Analysis of Inter-Domain Label Switched Path (LSP) Recovery","authors":["T. Takeda, Ed.","A. Farrel, Ed.","Y. Ikejiri","JP. Vasseur"],"rawDate":"2008-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5298","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc53":{"aliasOf":"rfc0053"},"rfc530":{"aliasOf":"rfc0530"},"rfc5301":{"rfcNumber":"RFC5301","href":"https://www.rfc-editor.org/rfc/rfc5301","title":"Dynamic Hostname Exchange Mechanism for IS-IS","authors":["D. McPherson","N. Shen"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC6232"],"obsoletes":["RFC2763"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5301","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5302":{"rfcNumber":"RFC5302","href":"https://www.rfc-editor.org/rfc/rfc5302","title":"Domain-Wide Prefix Distribution with Two-Level IS-IS","authors":["T. Li","H. Smit","T. Przygienda"],"rawDate":"2008-10","status":"Proposed Standard","updates":["RFC1195"],"obsoletes":["RFC2966"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5302","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5303":{"rfcNumber":"RFC5303","href":"https://www.rfc-editor.org/rfc/rfc5303","title":"Three-Way Handshake for IS-IS Point-to-Point Adjacencies","authors":["D. Katz","R. Saluja","D. Eastlake 3rd"],"rawDate":"2008-10","status":"Proposed Standard","obsoletes":["RFC3373"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5303","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5304":{"rfcNumber":"RFC5304","href":"https://www.rfc-editor.org/rfc/rfc5304","title":"IS-IS Cryptographic Authentication","authors":["T. Li","R. Atkinson"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC6233","RFC6232"],"updates":["RFC1195"],"obsoletes":["RFC3567"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5305":{"rfcNumber":"RFC5305","href":"https://www.rfc-editor.org/rfc/rfc5305","title":"IS-IS Extensions for Traffic Engineering","authors":["T. Li","H. Smit"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC5307","RFC8918"],"obsoletes":["RFC3784"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5306":{"rfcNumber":"RFC5306","href":"https://www.rfc-editor.org/rfc/rfc5306","title":"Restart Signaling for IS-IS","authors":["M. Shand","L. Ginsberg"],"rawDate":"2008-10","status":"Proposed Standard","obsoletedBy":["RFC8706"],"obsoletes":["RFC3847"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5307":{"rfcNumber":"RFC5307","href":"https://www.rfc-editor.org/rfc/rfc5307","title":"IS-IS Extensions in Support of Generalized Multi-Protocol Label Switching (GMPLS)","authors":["K. Kompella, Ed.","Y. Rekhter, Ed."],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC6001","RFC6002","RFC7074"],"updates":["RFC5305"],"obsoletes":["RFC4205"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5307","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5308":{"rfcNumber":"RFC5308","href":"https://www.rfc-editor.org/rfc/rfc5308","title":"Routing IPv6 with IS-IS","authors":["C. Hopps"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC7775"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5309":{"rfcNumber":"RFC5309","href":"https://www.rfc-editor.org/rfc/rfc5309","title":"Point-to-Point Operation over LAN in Link State Routing Protocols","authors":["N. Shen, Ed.","A. Zinin, Ed."],"rawDate":"2008-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5309","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc531":{"aliasOf":"rfc0531"},"rfc5310":{"rfcNumber":"RFC5310","href":"https://www.rfc-editor.org/rfc/rfc5310","title":"IS-IS Generic Cryptographic Authentication","authors":["M. Bhatia","V. Manral","T. Li","R. Atkinson","R. White","M. Fanto"],"rawDate":"2009-02","status":"Proposed Standard","updatedBy":["RFC6233","RFC6232"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5310","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5311":{"rfcNumber":"RFC5311","href":"https://www.rfc-editor.org/rfc/rfc5311","title":"Simplified Extension of Link State PDU (LSP) Space for IS-IS","authors":["D. McPherson, Ed.","L. Ginsberg","S. Previdi","M. Shand"],"rawDate":"2009-02","status":"Proposed Standard","obsoletes":["RFC3786"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5316":{"rfcNumber":"RFC5316","href":"https://www.rfc-editor.org/rfc/rfc5316","title":"ISIS Extensions in Support of Inter-Autonomous System (AS) MPLS and GMPLS Traffic Engineering","authors":["M. Chen","R. Zhang","X. Duan"],"rawDate":"2008-12","status":"Proposed Standard","obsoletedBy":["RFC9346"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5317":{"rfcNumber":"RFC5317","href":"https://www.rfc-editor.org/rfc/rfc5317","title":"Joint Working Team (JWT) Report on MPLS Architectural Considerations for a Transport Profile","authors":["S. Bryant, Ed.","L. Andersson, Ed."],"rawDate":"2009-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5317","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5318":{"rfcNumber":"RFC5318","href":"https://www.rfc-editor.org/rfc/rfc5318","title":"The Session Initiation Protocol (SIP) P-Refused-URI-List Private-Header (P-Header)","authors":["J. Hautakorpi","G. Camarillo"],"rawDate":"2008-12","status":"Informational","updatedBy":["RFC8217"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5318","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc532":{"aliasOf":"rfc0532"},"rfc5320":{"rfcNumber":"RFC5320","href":"https://www.rfc-editor.org/rfc/rfc5320","title":"The Subnetwork Encapsulation and Adaptation Layer (SEAL)","authors":["F. Templin, Ed."],"rawDate":"2010-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5320","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5321":{"rfcNumber":"RFC5321","href":"https://www.rfc-editor.org/rfc/rfc5321","title":"Simple Mail Transfer Protocol","authors":["J. Klensin"],"rawDate":"2008-10","status":"Draft Standard","updatedBy":["RFC7504"],"updates":["RFC1123"],"obsoletes":["RFC2821"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5321","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5322":{"rfcNumber":"RFC5322","href":"https://www.rfc-editor.org/rfc/rfc5322","title":"Internet Message Format","authors":["P. Resnick, Ed."],"rawDate":"2008-10","status":"Draft Standard","updatedBy":["RFC6854"],"updates":["RFC4021"],"obsoletes":["RFC2822"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5322","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5323":{"rfcNumber":"RFC5323","href":"https://www.rfc-editor.org/rfc/rfc5323","title":"Web Distributed Authoring and Versioning (WebDAV) SEARCH","authors":["J. Reschke, Ed.","S. Reddy","J. Davis","A. Babich"],"rawDate":"2008-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5324":{"rfcNumber":"RFC5324","href":"https://www.rfc-editor.org/rfc/rfc5324","title":"MIB for Fibre-Channel Security Protocols (FC-SP)","authors":["C. DeSanti","F. Maino","K. McCloghrie"],"rawDate":"2008-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5325":{"rfcNumber":"RFC5325","href":"https://www.rfc-editor.org/rfc/rfc5325","title":"Licklider Transmission Protocol - Motivation","authors":["S. Burleigh","M. Ramadas","S. Farrell"],"rawDate":"2008-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5326":{"rfcNumber":"RFC5326","href":"https://www.rfc-editor.org/rfc/rfc5326","title":"Licklider Transmission Protocol - Specification","authors":["M. Ramadas","S. Burleigh","S. Farrell"],"rawDate":"2008-09","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5326","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5327":{"rfcNumber":"RFC5327","href":"https://www.rfc-editor.org/rfc/rfc5327","title":"Licklider Transmission Protocol - Security Extensions","authors":["S. Farrell","M. Ramadas","S. Burleigh"],"rawDate":"2008-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5328":{"rfcNumber":"RFC5328","href":"https://www.rfc-editor.org/rfc/rfc5328","title":"A Uniform Resource Name (URN) Namespace for the Digital Video Broadcasting Project (DVB)","authors":["A. Adolf","P. MacAvock"],"rawDate":"2008-09","status":"Informational","updatedBy":["RFC7354","RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5328","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5329":{"rfcNumber":"RFC5329","href":"https://www.rfc-editor.org/rfc/rfc5329","title":"Traffic Engineering Extensions to OSPF Version 3","authors":["K. Ishiguro","V. Manral","A. Davey","A. Lindem, Ed."],"rawDate":"2008-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc533":{"aliasOf":"rfc0533"},"rfc5330":{"rfcNumber":"RFC5330","href":"https://www.rfc-editor.org/rfc/rfc5330","title":"A Link-Type sub-TLV to Convey the Number of Traffic Engineering Label Switched Paths Signalled with Zero Reserved Bandwidth across a Link","authors":["JP. Vasseur, Ed.","M. Meyer","K. Kumaki","A. Bonda"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5331":{"rfcNumber":"RFC5331","href":"https://www.rfc-editor.org/rfc/rfc5331","title":"MPLS Upstream Label Assignment and Context-Specific Label Space","authors":["R. Aggarwal","Y. Rekhter","E. Rosen"],"rawDate":"2008-08","status":"Proposed Standard","updatedBy":["RFC7274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5331","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5332":{"rfcNumber":"RFC5332","href":"https://www.rfc-editor.org/rfc/rfc5332","title":"MPLS Multicast Encapsulations","authors":["T. Eckert","E. Rosen, Ed.","R. Aggarwal","Y. Rekhter"],"rawDate":"2008-08","status":"Proposed Standard","updates":["RFC3032","RFC4023"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5333":{"rfcNumber":"RFC5333","href":"https://www.rfc-editor.org/rfc/rfc5333","title":"IANA Registration of Enumservices for Internet Calendaring","authors":["R. Mahy","B. Hoeneisen"],"rawDate":"2009-10","status":"Proposed Standard","updatedBy":["RFC6118"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5334":{"rfcNumber":"RFC5334","href":"https://www.rfc-editor.org/rfc/rfc5334","title":"Ogg Media Types","authors":["I. Goncalves","S. Pfeiffer","C. Montgomery"],"rawDate":"2008-09","status":"Proposed Standard","updatedBy":["RFC7845"],"obsoletes":["RFC3534"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5335":{"rfcNumber":"RFC5335","href":"https://www.rfc-editor.org/rfc/rfc5335","title":"Internationalized Email Headers","authors":["A. Yang, Ed."],"rawDate":"2008-09","status":"Experimental","obsoletedBy":["RFC6532"],"updates":["RFC2045","RFC2822"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5335","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5336":{"rfcNumber":"RFC5336","href":"https://www.rfc-editor.org/rfc/rfc5336","title":"SMTP Extension for Internationalized Email Addresses","authors":["J. Yao, Ed.","W. Mao, Ed."],"rawDate":"2008-09","status":"Experimental","obsoletedBy":["RFC6531"],"updates":["RFC2821","RFC2822","RFC4952"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5336","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5337":{"rfcNumber":"RFC5337","href":"https://www.rfc-editor.org/rfc/rfc5337","title":"Internationalized Delivery Status and Disposition Notifications","authors":["C. Newman","A. Melnikov, Ed."],"rawDate":"2008-09","status":"Experimental","obsoletedBy":["RFC6533"],"updates":["RFC3461","RFC3462","RFC3464","RFC3798"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5337","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5338":{"rfcNumber":"RFC5338","href":"https://www.rfc-editor.org/rfc/rfc5338","title":"Using the Host Identity Protocol with Legacy Applications","authors":["T. Henderson","P. Nikander","M. Komu"],"rawDate":"2008-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5339":{"rfcNumber":"RFC5339","href":"https://www.rfc-editor.org/rfc/rfc5339","title":"Evaluation of Existing GMPLS Protocols against Multi-Layer and Multi-Region Networks (MLN/MRN)","authors":["JL. Le Roux, Ed.","D. Papadimitriou, Ed."],"rawDate":"2008-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5339","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc534":{"aliasOf":"rfc0534"},"rfc5340":{"rfcNumber":"RFC5340","href":"https://www.rfc-editor.org/rfc/rfc5340","title":"OSPF for IPv6","authors":["R. Coltun","D. Ferguson","J. Moy","A. Lindem"],"rawDate":"2008-07","status":"Proposed Standard","updatedBy":["RFC6845","RFC6860","RFC7503","RFC8362","RFC9454"],"obsoletes":["RFC2740"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5340","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5341":{"rfcNumber":"RFC5341","href":"https://www.rfc-editor.org/rfc/rfc5341","title":"The Internet Assigned Number Authority (IANA) tel Uniform Resource Identifier (URI) Parameter Registry","authors":["C. Jennings","V. Gurbani"],"rawDate":"2008-09","status":"Proposed Standard","updates":["RFC3966"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5342":{"rfcNumber":"RFC5342","href":"https://www.rfc-editor.org/rfc/rfc5342","title":"IANA Considerations and IETF Protocol Usage for IEEE 802 Parameters","authors":["D. Eastlake 3rd"],"rawDate":"2008-09","status":"Best Current Practice","obsoletedBy":["RFC7042"],"updates":["RFC2153"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5343":{"rfcNumber":"RFC5343","href":"https://www.rfc-editor.org/rfc/rfc5343","title":"Simple Network Management Protocol (SNMP) Context EngineID Discovery","authors":["J. Schoenwaelder"],"rawDate":"2008-09","status":"Internet Standard","updates":["RFC3411"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5344":{"rfcNumber":"RFC5344","href":"https://www.rfc-editor.org/rfc/rfc5344","title":"Presence and Instant Messaging Peering Use Cases","authors":["A. Houri","E. Aoki","S. Parameswar"],"rawDate":"2008-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5345":{"rfcNumber":"RFC5345","href":"https://www.rfc-editor.org/rfc/rfc5345","title":"Simple Network Management Protocol (SNMP) Traffic Measurements and Trace Exchange Formats","authors":["J. Schoenwaelder"],"rawDate":"2008-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5345","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5346":{"rfcNumber":"RFC5346","href":"https://www.rfc-editor.org/rfc/rfc5346","title":"Operational Requirements for ENUM-Based Softswitch Use","authors":["J. Lim","W. Kim","C. Park","L. Conroy"],"rawDate":"2008-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5346","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5347":{"rfcNumber":"RFC5347","href":"https://www.rfc-editor.org/rfc/rfc5347","title":"Media Gateway Control Protocol Fax Package","authors":["F. Andreasen","D. Hancock"],"rawDate":"2008-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5347","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5348":{"rfcNumber":"RFC5348","href":"https://www.rfc-editor.org/rfc/rfc5348","title":"TCP Friendly Rate Control (TFRC): Protocol Specification","authors":["S. Floyd","M. Handley","J. Padhye","J. Widmer"],"rawDate":"2008-09","status":"Proposed Standard","updates":["RFC4342"],"obsoletes":["RFC3448"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5348","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5349":{"rfcNumber":"RFC5349","href":"https://www.rfc-editor.org/rfc/rfc5349","title":"Elliptic Curve Cryptography (ECC) Support for Public Key Cryptography for Initial Authentication in Kerberos (PKINIT)","authors":["L. Zhu","K. Jaganathan","K. Lauter"],"rawDate":"2008-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc535":{"aliasOf":"rfc0535"},"rfc5350":{"rfcNumber":"RFC5350","href":"https://www.rfc-editor.org/rfc/rfc5350","title":"IANA Considerations for the IPv4 and IPv6 Router Alert Options","authors":["J. Manner","A. McDonald"],"rawDate":"2008-09","status":"Proposed Standard","updates":["RFC2113","RFC3175"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5351":{"rfcNumber":"RFC5351","href":"https://www.rfc-editor.org/rfc/rfc5351","title":"An Overview of Reliable Server Pooling Protocols","authors":["P. Lei","L. Ong","M. Tuexen","T. Dreibholz"],"rawDate":"2008-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5352":{"rfcNumber":"RFC5352","href":"https://www.rfc-editor.org/rfc/rfc5352","title":"Aggregate Server Access Protocol (ASAP)","authors":["R. Stewart","Q. Xie","M. Stillman","M. Tuexen"],"rawDate":"2008-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5353":{"rfcNumber":"RFC5353","href":"https://www.rfc-editor.org/rfc/rfc5353","title":"Endpoint Handlespace Redundancy Protocol (ENRP)","authors":["Q. Xie","R. Stewart","M. Stillman","M. Tuexen","A. Silverton"],"rawDate":"2008-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5354":{"rfcNumber":"RFC5354","href":"https://www.rfc-editor.org/rfc/rfc5354","title":"Aggregate Server Access Protocol (ASAP) and Endpoint Handlespace Redundancy Protocol (ENRP) Parameters","authors":["R. Stewart","Q. Xie","M. Stillman","M. Tuexen"],"rawDate":"2008-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5355":{"rfcNumber":"RFC5355","href":"https://www.rfc-editor.org/rfc/rfc5355","title":"Threats Introduced by Reliable Server Pooling (RSerPool) and Requirements for Security in Response to Threats","authors":["M. Stillman, Ed.","R. Gopal","E. Guttman","S. Sengodan","M. Holdrege"],"rawDate":"2008-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5356":{"rfcNumber":"RFC5356","href":"https://www.rfc-editor.org/rfc/rfc5356","title":"Reliable Server Pooling Policies","authors":["T. Dreibholz","M. Tuexen"],"rawDate":"2008-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5357":{"rfcNumber":"RFC5357","href":"https://www.rfc-editor.org/rfc/rfc5357","title":"A Two-Way Active Measurement Protocol (TWAMP)","authors":["K. Hedayat","R. Krzanowski","A. Morton","K. Yum","J. Babiarz"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC5618","RFC5938","RFC6038","RFC7717","RFC7750","RFC8545"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5357","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5358":{"rfcNumber":"RFC5358","href":"https://www.rfc-editor.org/rfc/rfc5358","title":"Preventing Use of Recursive Nameservers in Reflector Attacks","authors":["J. Damas","F. Neves"],"rawDate":"2008-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5359":{"rfcNumber":"RFC5359","href":"https://www.rfc-editor.org/rfc/rfc5359","title":"Session Initiation Protocol Service Examples","authors":["A. Johnston, Ed.","R. Sparks","C. Cunningham","S. Donovan","K. Summers"],"rawDate":"2008-10","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5359","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5360":{"rfcNumber":"RFC5360","href":"https://www.rfc-editor.org/rfc/rfc5360","title":"A Framework for Consent-Based Communications in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg","G. Camarillo, Ed.","D. Willis"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC8217"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5360","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5361":{"rfcNumber":"RFC5361","href":"https://www.rfc-editor.org/rfc/rfc5361","title":"A Document Format for Requesting Consent","authors":["G. Camarillo"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5362":{"rfcNumber":"RFC5362","href":"https://www.rfc-editor.org/rfc/rfc5362","title":"The Session Initiation Protocol (SIP) Pending Additions Event Package","authors":["G. Camarillo"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5363":{"rfcNumber":"RFC5363","href":"https://www.rfc-editor.org/rfc/rfc5363","title":"Framework and Security Considerations for Session Initiation Protocol (SIP) URI-List Services","authors":["G. Camarillo","A.B. Roach"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5364":{"rfcNumber":"RFC5364","href":"https://www.rfc-editor.org/rfc/rfc5364","title":"Extensible Markup Language (XML) Format Extension for Representing Copy Control Attributes in Resource Lists","authors":["M. Garcia-Martin","G. Camarillo"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5365":{"rfcNumber":"RFC5365","href":"https://www.rfc-editor.org/rfc/rfc5365","title":"Multiple-Recipient MESSAGE Requests in the Session Initiation Protocol (SIP)","authors":["M. Garcia-Martin","G. Camarillo"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5366":{"rfcNumber":"RFC5366","href":"https://www.rfc-editor.org/rfc/rfc5366","title":"Conference Establishment Using Request-Contained Lists in the Session Initiation Protocol (SIP)","authors":["G. Camarillo","A. Johnston"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5367":{"rfcNumber":"RFC5367","href":"https://www.rfc-editor.org/rfc/rfc5367","title":"Subscriptions to Request-Contained Resource Lists in the Session Initiation Protocol (SIP)","authors":["G. Camarillo","A.B. Roach","O. Levin"],"rawDate":"2008-10","status":"Proposed Standard","updates":["RFC3265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5368":{"rfcNumber":"RFC5368","href":"https://www.rfc-editor.org/rfc/rfc5368","title":"Referring to Multiple Resources in the Session Initiation Protocol (SIP)","authors":["G. Camarillo","A. Niemi","M. Isomaki","M. Garcia-Martin","H. Khartabil"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC8262"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5369":{"rfcNumber":"RFC5369","href":"https://www.rfc-editor.org/rfc/rfc5369","title":"Framework for Transcoding with the Session Initiation Protocol (SIP)","authors":["G. Camarillo"],"rawDate":"2008-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc537":{"aliasOf":"rfc0537"},"rfc5370":{"rfcNumber":"RFC5370","href":"https://www.rfc-editor.org/rfc/rfc5370","title":"The Session Initiation Protocol (SIP) Conference Bridge Transcoding Model","authors":["G. Camarillo"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5371":{"rfcNumber":"RFC5371","href":"https://www.rfc-editor.org/rfc/rfc5371","title":"RTP Payload Format for JPEG 2000 Video Streams","authors":["S. Futemma","E. Itakura","A. Leung"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5372":{"rfcNumber":"RFC5372","href":"https://www.rfc-editor.org/rfc/rfc5372","title":"Payload Format for JPEG 2000 Video: Extensions for Scalability and Main Header Recovery","authors":["A. Leung","S. Futemma","E. Itakura"],"rawDate":"2008-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5373":{"rfcNumber":"RFC5373","href":"https://www.rfc-editor.org/rfc/rfc5373","title":"Requesting Answering Modes for the Session Initiation Protocol (SIP)","authors":["D. Willis, Ed.","A. Allen"],"rawDate":"2008-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5374":{"rfcNumber":"RFC5374","href":"https://www.rfc-editor.org/rfc/rfc5374","title":"Multicast Extensions to the Security Architecture for the Internet Protocol","authors":["B. Weis","G. Gross","D. Ignjatic"],"rawDate":"2008-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5375":{"rfcNumber":"RFC5375","href":"https://www.rfc-editor.org/rfc/rfc5375","title":"IPv6 Unicast Address Assignment Considerations","authors":["G. Van de Velde","C. Popoviciu","T. Chown","O. Bonness","C. Hahn"],"rawDate":"2008-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5375","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5376":{"rfcNumber":"RFC5376","href":"https://www.rfc-editor.org/rfc/rfc5376","title":"Inter-AS Requirements for the Path Computation Element Communication Protocol (PCECP)","authors":["N. Bitar","R. Zhang","K. Kumaki"],"rawDate":"2008-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5377":{"rfcNumber":"RFC5377","href":"https://www.rfc-editor.org/rfc/rfc5377","title":"Advice to the Trustees of the IETF Trust on Rights to Be Granted in IETF Documents","authors":["J. Halpern, Ed."],"rawDate":"2008-11","status":"Informational","obsoletedBy":["RFC8721"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5377","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5378":{"rfcNumber":"RFC5378","href":"https://www.rfc-editor.org/rfc/rfc5378","title":"Rights Contributors Provide to the IETF Trust","authors":["S. Bradner, Ed.","J. Contreras, Ed."],"rawDate":"2008-11","status":"Best Current Practice","updates":["RFC2026"],"obsoletes":["RFC3978","RFC4748"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5378","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5379":{"rfcNumber":"RFC5379","href":"https://www.rfc-editor.org/rfc/rfc5379","title":"Guidelines for Using the Privacy Mechanism for SIP","authors":["M. Munakata","S. Schubert","T. Ohba"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc538":{"aliasOf":"rfc0538"},"rfc5380":{"rfcNumber":"RFC5380","href":"https://www.rfc-editor.org/rfc/rfc5380","title":"Hierarchical Mobile IPv6 (HMIPv6) Mobility Management","authors":["H. Soliman","C. Castelluccia","K. ElMalki","L. Bellier"],"rawDate":"2008-10","status":"Proposed Standard","obsoletes":["RFC4140"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5381":{"rfcNumber":"RFC5381","href":"https://www.rfc-editor.org/rfc/rfc5381","title":"Experience of Implementing NETCONF over SOAP","authors":["T. Iijima","Y. Atarashi","H. Kimura","M. Kitani","H. Okita"],"rawDate":"2008-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5381","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5382":{"rfcNumber":"RFC5382","href":"https://www.rfc-editor.org/rfc/rfc5382","title":"NAT Behavioral Requirements for TCP","authors":["S. Guha, Ed.","K. Biswas","B. Ford","S. Sivakumar","P. Srisuresh"],"rawDate":"2008-10","status":"Best Current Practice","updatedBy":["RFC7857"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5383":{"rfcNumber":"RFC5383","href":"https://www.rfc-editor.org/rfc/rfc5383","title":"Deployment Considerations for Lemonade-Compliant Mobile Email","authors":["R. Gellens"],"rawDate":"2008-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5384":{"rfcNumber":"RFC5384","href":"https://www.rfc-editor.org/rfc/rfc5384","title":"The Protocol Independent Multicast (PIM) Join Attribute Format","authors":["A. Boers","I. Wijnands","E. Rosen"],"rawDate":"2008-11","status":"Proposed Standard","updatedBy":["RFC7887"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5384","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5385":{"rfcNumber":"RFC5385","href":"https://www.rfc-editor.org/rfc/rfc5385","title":"Version 2.0 Microsoft Word Template for Creating Internet Drafts and RFCs","authors":["J. Touch"],"rawDate":"2010-02","status":"Informational","obsoletes":["RFC3285"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5385","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5386":{"rfcNumber":"RFC5386","href":"https://www.rfc-editor.org/rfc/rfc5386","title":"Better-Than-Nothing Security: An Unauthenticated Mode of IPsec","authors":["N. Williams","M. Richardson"],"rawDate":"2008-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5386","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5387":{"rfcNumber":"RFC5387","href":"https://www.rfc-editor.org/rfc/rfc5387","title":"Problem and Applicability Statement for Better-Than-Nothing Security (BTNS)","authors":["J. Touch","D. Black","Y. Wang"],"rawDate":"2008-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5387","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5388":{"rfcNumber":"RFC5388","href":"https://www.rfc-editor.org/rfc/rfc5388","title":"Information Model and XML Data Model for Traceroute Measurements","authors":["S. Niccolini","S. Tartarelli","J. Quittek","T. Dietz","M. Swany"],"rawDate":"2008-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5389":{"rfcNumber":"RFC5389","href":"https://www.rfc-editor.org/rfc/rfc5389","title":"Session Traversal Utilities for NAT (STUN)","authors":["J. Rosenberg","R. Mahy","P. Matthews","D. Wing"],"rawDate":"2008-10","status":"Proposed Standard","updatedBy":["RFC7350","RFC8553"],"obsoletedBy":["RFC8489"],"obsoletes":["RFC3489"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5389","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc539":{"aliasOf":"rfc0539"},"rfc5390":{"rfcNumber":"RFC5390","href":"https://www.rfc-editor.org/rfc/rfc5390","title":"Requirements for Management of Overload in the Session Initiation Protocol","authors":["J. Rosenberg"],"rawDate":"2008-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5391":{"rfcNumber":"RFC5391","href":"https://www.rfc-editor.org/rfc/rfc5391","title":"RTP Payload Format for ITU-T Recommendation G.711.1","authors":["A. Sollaud"],"rawDate":"2008-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5392":{"rfcNumber":"RFC5392","href":"https://www.rfc-editor.org/rfc/rfc5392","title":"OSPF Extensions in Support of Inter-Autonomous System (AS) MPLS and GMPLS Traffic Engineering","authors":["M. Chen","R. Zhang","X. Duan"],"rawDate":"2009-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5393":{"rfcNumber":"RFC5393","href":"https://www.rfc-editor.org/rfc/rfc5393","title":"Addressing an Amplification Vulnerability in Session Initiation Protocol (SIP) Forking Proxies","authors":["R. Sparks, Ed.","S. Lawrence","A. Hawrylyshen","B. Campen"],"rawDate":"2008-12","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5394":{"rfcNumber":"RFC5394","href":"https://www.rfc-editor.org/rfc/rfc5394","title":"Policy-Enabled Path Computation Framework","authors":["I. Bryskin","D. Papadimitriou","L. Berger","J. Ash"],"rawDate":"2008-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5395":{"rfcNumber":"RFC5395","href":"https://www.rfc-editor.org/rfc/rfc5395","title":"Domain Name System (DNS) IANA Considerations","authors":["D. Eastlake 3rd"],"rawDate":"2008-11","status":"Best Current Practice","obsoletedBy":["RFC6195"],"updates":["RFC1183","RFC3597"],"obsoletes":["RFC2929"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5395","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5396":{"rfcNumber":"RFC5396","href":"https://www.rfc-editor.org/rfc/rfc5396","title":"Textual Representation of Autonomous System (AS) Numbers","authors":["G. Huston","G. Michaelson"],"rawDate":"2008-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5397":{"rfcNumber":"RFC5397","href":"https://www.rfc-editor.org/rfc/rfc5397","title":"WebDAV Current Principal Extension","authors":["W. Sanchez","C. Daboo"],"rawDate":"2008-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5398":{"rfcNumber":"RFC5398","href":"https://www.rfc-editor.org/rfc/rfc5398","title":"Autonomous System (AS) Number Reservation for Documentation Use","authors":["G. Huston"],"rawDate":"2008-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc54":{"aliasOf":"rfc0054"},"rfc5401":{"rfcNumber":"RFC5401","href":"https://www.rfc-editor.org/rfc/rfc5401","title":"Multicast Negative-Acknowledgment (NACK) Building Blocks","authors":["B. Adamson","C. Bormann","M. Handley","J. Macker"],"rawDate":"2008-11","status":"Proposed Standard","obsoletes":["RFC3941"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5402":{"rfcNumber":"RFC5402","href":"https://www.rfc-editor.org/rfc/rfc5402","title":"Compressed Data within an Internet Electronic Data Interchange (EDI) Message","authors":["T. Harding, Ed."],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5402","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5403":{"rfcNumber":"RFC5403","href":"https://www.rfc-editor.org/rfc/rfc5403","title":"RPCSEC_GSS Version 2","authors":["M. Eisler"],"rawDate":"2009-02","status":"Proposed Standard","updatedBy":["RFC7861"],"updates":["RFC2203"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5404":{"rfcNumber":"RFC5404","href":"https://www.rfc-editor.org/rfc/rfc5404","title":"RTP Payload Format for G.719","authors":["M. Westerlund","I. Johansson"],"rawDate":"2009-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5404","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5405":{"rfcNumber":"RFC5405","href":"https://www.rfc-editor.org/rfc/rfc5405","title":"Unicast UDP Usage Guidelines for Application Designers","authors":["L. Eggert","G. Fairhurst"],"rawDate":"2008-11","status":"Best Current Practice","obsoletedBy":["RFC8085"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5406":{"rfcNumber":"RFC5406","href":"https://www.rfc-editor.org/rfc/rfc5406","title":"Guidelines for Specifying the Use of IPsec Version 2","authors":["S. Bellovin"],"rawDate":"2009-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5407":{"rfcNumber":"RFC5407","href":"https://www.rfc-editor.org/rfc/rfc5407","title":"Example Call Flows of Race Conditions in the Session Initiation Protocol (SIP)","authors":["M. Hasebe","J. Koshiko","Y. Suzuki","T. Yoshikawa","P. Kyzivat"],"rawDate":"2008-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5408":{"rfcNumber":"RFC5408","href":"https://www.rfc-editor.org/rfc/rfc5408","title":"Identity-Based Encryption Architecture and Supporting Data Structures","authors":["G. Appenzeller","L. Martin","M. Schertler"],"rawDate":"2009-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5408","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5409":{"rfcNumber":"RFC5409","href":"https://www.rfc-editor.org/rfc/rfc5409","title":"Using the Boneh-Franklin and Boneh-Boyen Identity-Based Encryption Algorithms with the Cryptographic Message Syntax (CMS)","authors":["L. Martin","M. Schertler"],"rawDate":"2009-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5410":{"rfcNumber":"RFC5410","href":"https://www.rfc-editor.org/rfc/rfc5410","title":"Multimedia Internet KEYing (MIKEY) General Extension Payload for Open Mobile Alliance BCAST 1.0","authors":["A. Jerichow, Ed.","L. Piron"],"rawDate":"2009-01","status":"Informational","updatedBy":["RFC6309"],"obsoletes":["RFC4909"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5411":{"rfcNumber":"RFC5411","href":"https://www.rfc-editor.org/rfc/rfc5411","title":"A Hitchhiker's Guide to the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2009-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5412":{"rfcNumber":"RFC5412","href":"https://www.rfc-editor.org/rfc/rfc5412","title":"Lightweight Access Point Protocol","authors":["P. Calhoun","R. Suri","N. Cam-Winget","M. Williams","S. Hares","B. O'Hara","S. Kelly"],"rawDate":"2010-02","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5412","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5413":{"rfcNumber":"RFC5413","href":"https://www.rfc-editor.org/rfc/rfc5413","title":"SLAPP: Secure Light Access Point Protocol","authors":["P. Narasimhan","D. Harkins","S. Ponnuswamy"],"rawDate":"2010-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5414":{"rfcNumber":"RFC5414","href":"https://www.rfc-editor.org/rfc/rfc5414","title":"Wireless LAN Control Protocol (WiCoP)","authors":["S. Iino","S. Govindan","M. Sugiura","H. Cheng"],"rawDate":"2010-02","status":"Historic","obsoletedBy":["RFC5415"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5414","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5415":{"rfcNumber":"RFC5415","href":"https://www.rfc-editor.org/rfc/rfc5415","title":"Control And Provisioning of Wireless Access Points (CAPWAP) Protocol Specification","authors":["P. Calhoun, Ed.","M. Montemurro, Ed.","D. Stanley, Ed."],"rawDate":"2009-03","status":"Proposed Standard","updatedBy":["RFC8553","RFC8996"],"obsoletes":["RFC5414"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5415","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5416":{"rfcNumber":"RFC5416","href":"https://www.rfc-editor.org/rfc/rfc5416","title":"Control and Provisioning of Wireless Access Points (CAPWAP) Protocol Binding for IEEE 802.11","authors":["P. Calhoun, Ed.","M. Montemurro, Ed.","D. Stanley, Ed."],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5416","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5417":{"rfcNumber":"RFC5417","href":"https://www.rfc-editor.org/rfc/rfc5417","title":"Control And Provisioning of Wireless Access Points (CAPWAP) Access Controller DHCP Option","authors":["P. Calhoun"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5418":{"rfcNumber":"RFC5418","href":"https://www.rfc-editor.org/rfc/rfc5418","title":"Control And Provisioning of Wireless Access Points (CAPWAP) Threat Analysis for IEEE 802.11 Deployments","authors":["S. Kelly","T. Clancy"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5419":{"rfcNumber":"RFC5419","href":"https://www.rfc-editor.org/rfc/rfc5419","title":"Why the Authentication Data Suboption is Needed for Mobile IPv6 (MIPv6)","authors":["B. Patil","G. Dommety"],"rawDate":"2009-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc542":{"aliasOf":"rfc0542"},"rfc5420":{"rfcNumber":"RFC5420","href":"https://www.rfc-editor.org/rfc/rfc5420","title":"Encoding of Attributes for MPLS LSP Establishment Using Resource Reservation Protocol Traffic Engineering (RSVP-TE)","authors":["A. Farrel, Ed.","D. Papadimitriou","JP. Vasseur","A. Ayyangar"],"rawDate":"2009-02","status":"Proposed Standard","updatedBy":["RFC6510"],"updates":["RFC3209","RFC3473"],"obsoletes":["RFC4420"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5420","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5421":{"rfcNumber":"RFC5421","href":"https://www.rfc-editor.org/rfc/rfc5421","title":"Basic Password Exchange within the Flexible Authentication via Secure Tunneling Extensible Authentication Protocol (EAP-FAST)","authors":["N. Cam-Winget","H. Zhou"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5422":{"rfcNumber":"RFC5422","href":"https://www.rfc-editor.org/rfc/rfc5422","title":"Dynamic Provisioning Using Flexible Authentication via Secure Tunneling Extensible Authentication Protocol (EAP-FAST)","authors":["N. Cam-Winget","D. McGrew","J. Salowey","H. Zhou"],"rawDate":"2009-03","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5423":{"rfcNumber":"RFC5423","href":"https://www.rfc-editor.org/rfc/rfc5423","title":"Internet Message Store Events","authors":["R. Gellens","C. Newman"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5423","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5424":{"rfcNumber":"RFC5424","href":"https://www.rfc-editor.org/rfc/rfc5424","title":"The Syslog Protocol","authors":["R. Gerhards"],"rawDate":"2009-03","status":"Proposed Standard","obsoletes":["RFC3164"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5424","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5425":{"rfcNumber":"RFC5425","href":"https://www.rfc-editor.org/rfc/rfc5425","title":"Transport Layer Security (TLS) Transport Mapping for Syslog","authors":["F. Miao, Ed.","Y. Ma, Ed.","J. Salowey, Ed."],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5425","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5426":{"rfcNumber":"RFC5426","href":"https://www.rfc-editor.org/rfc/rfc5426","title":"Transmission of Syslog Messages over UDP","authors":["A. Okmianski"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5427":{"rfcNumber":"RFC5427","href":"https://www.rfc-editor.org/rfc/rfc5427","title":"Textual Conventions for Syslog Management","authors":["G. Keeni"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5428":{"rfcNumber":"RFC5428","href":"https://www.rfc-editor.org/rfc/rfc5428","title":"Management Event Management Information Base (MIB) for PacketCable- and IPCablecom-Compliant Devices","authors":["S. Channabasappa","W. De Ketelaere","E. Nechamkin"],"rawDate":"2009-04","status":"Proposed Standard","updatedBy":["RFC9141"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5429":{"rfcNumber":"RFC5429","href":"https://www.rfc-editor.org/rfc/rfc5429","title":"Sieve Email Filtering: Reject and Extended Reject Extensions","authors":["A. Stone, Ed."],"rawDate":"2009-03","status":"Proposed Standard","updates":["RFC5228"],"obsoletes":["RFC3028"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5429","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc543":{"aliasOf":"rfc0543"},"rfc5430":{"rfcNumber":"RFC5430","href":"https://www.rfc-editor.org/rfc/rfc5430","title":"Suite B Profile for Transport Layer Security (TLS)","authors":["M. Salter","E. Rescorla","R. Housley"],"rawDate":"2009-03","status":"Historic","obsoletedBy":["RFC6460"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5431":{"rfcNumber":"RFC5431","href":"https://www.rfc-editor.org/rfc/rfc5431","title":"Diameter ITU-T Rw Policy Enforcement Interface Application","authors":["D. Sun"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5432":{"rfcNumber":"RFC5432","href":"https://www.rfc-editor.org/rfc/rfc5432","title":"Quality of Service (QoS) Mechanism Selection in the Session Description Protocol (SDP)","authors":["J. Polk","S. Dhesikan","G. Camarillo"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5433":{"rfcNumber":"RFC5433","href":"https://www.rfc-editor.org/rfc/rfc5433","title":"Extensible Authentication Protocol - Generalized Pre-Shared Key (EAP-GPSK) Method","authors":["T. Clancy","H. Tschofenig"],"rawDate":"2009-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5434":{"rfcNumber":"RFC5434","href":"https://www.rfc-editor.org/rfc/rfc5434","title":"Considerations for Having a Successful Birds-of-a-Feather (BOF) Session","authors":["T. Narten"],"rawDate":"2009-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5435":{"rfcNumber":"RFC5435","href":"https://www.rfc-editor.org/rfc/rfc5435","title":"Sieve Email Filtering: Extension for Notifications","authors":["A. Melnikov, Ed.","B. Leiba, Ed.","W. Segmuller","T. Martin"],"rawDate":"2009-01","status":"Proposed Standard","updatedBy":["RFC8580"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5436":{"rfcNumber":"RFC5436","href":"https://www.rfc-editor.org/rfc/rfc5436","title":"Sieve Notification Mechanism: mailto","authors":["B. Leiba","M. Haardt"],"rawDate":"2009-01","status":"Proposed Standard","updates":["RFC3834"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5437":{"rfcNumber":"RFC5437","href":"https://www.rfc-editor.org/rfc/rfc5437","title":"Sieve Notification Mechanism: Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre","A. Melnikov"],"rawDate":"2009-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5438":{"rfcNumber":"RFC5438","href":"https://www.rfc-editor.org/rfc/rfc5438","title":"Instant Message Disposition Notification (IMDN)","authors":["E. Burger","H. Khartabil"],"rawDate":"2009-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5438","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5439":{"rfcNumber":"RFC5439","href":"https://www.rfc-editor.org/rfc/rfc5439","title":"An Analysis of Scaling Issues in MPLS-TE Core Networks","authors":["S. Yasukawa","A. Farrel","O. Komolafe"],"rawDate":"2009-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5439","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc544":{"aliasOf":"rfc0544"},"rfc5440":{"rfcNumber":"RFC5440","href":"https://www.rfc-editor.org/rfc/rfc5440","title":"Path Computation Element (PCE) Communication Protocol (PCEP)","authors":["JP. Vasseur, Ed.","JL. Le Roux, Ed."],"rawDate":"2009-03","status":"Proposed Standard","updatedBy":["RFC7896","RFC8253","RFC8356","RFC9488"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5440","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5441":{"rfcNumber":"RFC5441","href":"https://www.rfc-editor.org/rfc/rfc5441","title":"A Backward-Recursive PCE-Based Computation (BRPC) Procedure to Compute Shortest Constrained Inter-Domain Traffic Engineering Label Switched Paths","authors":["JP. Vasseur, Ed.","R. Zhang","N. Bitar","JL. Le Roux"],"rawDate":"2009-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5441","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5442":{"rfcNumber":"RFC5442","href":"https://www.rfc-editor.org/rfc/rfc5442","title":"LEMONADE Architecture - Supporting Open Mobile Alliance (OMA) Mobile Email (MEM) Using Internet Mail","authors":["E. Burger","G. Parsons"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5443":{"rfcNumber":"RFC5443","href":"https://www.rfc-editor.org/rfc/rfc5443","title":"LDP IGP Synchronization","authors":["M. Jork","A. Atlas","L. Fang"],"rawDate":"2009-03","status":"Informational","updatedBy":["RFC6138"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5443","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5444":{"rfcNumber":"RFC5444","href":"https://www.rfc-editor.org/rfc/rfc5444","title":"Generalized Mobile Ad Hoc Network (MANET) Packet/Message Format","authors":["T. Clausen","C. Dearlove","J. Dean","C. Adjih"],"rawDate":"2009-02","status":"Proposed Standard","updatedBy":["RFC7631","RFC8245"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5444","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5445":{"rfcNumber":"RFC5445","href":"https://www.rfc-editor.org/rfc/rfc5445","title":"Basic Forward Error Correction (FEC) Schemes","authors":["M. Watson"],"rawDate":"2009-03","status":"Proposed Standard","obsoletes":["RFC3452","RFC3695"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5445","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5446":{"rfcNumber":"RFC5446","href":"https://www.rfc-editor.org/rfc/rfc5446","title":"Service Selection for Mobile IPv4","authors":["J. Korhonen","U. Nilsson"],"rawDate":"2009-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5447":{"rfcNumber":"RFC5447","href":"https://www.rfc-editor.org/rfc/rfc5447","title":"Diameter Mobile IPv6: Support for Network Access Server to Diameter Server Interaction","authors":["J. Korhonen, Ed.","J. Bournelle","H. Tschofenig","C. Perkins","K. Chowdhury"],"rawDate":"2009-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5447","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5448":{"rfcNumber":"RFC5448","href":"https://www.rfc-editor.org/rfc/rfc5448","title":"Improved Extensible Authentication Protocol Method for 3rd Generation Authentication and Key Agreement (EAP-AKA')","authors":["J. Arkko","V. Lehtovirta","P. Eronen"],"rawDate":"2009-05","status":"Informational","updatedBy":["RFC9048"],"updates":["RFC4187"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5449":{"rfcNumber":"RFC5449","href":"https://www.rfc-editor.org/rfc/rfc5449","title":"OSPF Multipoint Relay (MPR) Extension for Ad Hoc Networks","authors":["E. Baccelli","P. Jacquet","D. Nguyen","T. Clausen"],"rawDate":"2009-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5449","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc545":{"aliasOf":"rfc0545"},"rfc5450":{"rfcNumber":"RFC5450","href":"https://www.rfc-editor.org/rfc/rfc5450","title":"Transmission Time Offsets in RTP Streams","authors":["D. Singer","H. Desineni"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5451":{"rfcNumber":"RFC5451","href":"https://www.rfc-editor.org/rfc/rfc5451","title":"Message Header Field for Indicating Message Authentication Status","authors":["M. Kucherawy"],"rawDate":"2009-04","status":"Proposed Standard","updatedBy":["RFC6577"],"obsoletedBy":["RFC7001"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5451","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5452":{"rfcNumber":"RFC5452","href":"https://www.rfc-editor.org/rfc/rfc5452","title":"Measures for Making DNS More Resilient against Forged Answers","authors":["A. Hubert","R. van Mook"],"rawDate":"2009-01","status":"Proposed Standard","updates":["RFC2181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5453":{"rfcNumber":"RFC5453","href":"https://www.rfc-editor.org/rfc/rfc5453","title":"Reserved IPv6 Interface Identifiers","authors":["S. Krishnan"],"rawDate":"2009-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5453","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5454":{"rfcNumber":"RFC5454","href":"https://www.rfc-editor.org/rfc/rfc5454","title":"Dual-Stack Mobile IPv4","authors":["G. Tsirtsis","V. Park","H. Soliman"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5454","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5455":{"rfcNumber":"RFC5455","href":"https://www.rfc-editor.org/rfc/rfc5455","title":"Diffserv-Aware Class-Type Object for the Path Computation Element Communication Protocol","authors":["S. Sivabalan, Ed.","J. Parker","S. Boutros","K. Kumaki"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5455","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5456":{"rfcNumber":"RFC5456","href":"https://www.rfc-editor.org/rfc/rfc5456","title":"IAX: Inter-Asterisk eXchange Version 2","authors":["M. Spencer","B. Capouch","E. Guy, Ed.","F. Miller","K. Shumard"],"rawDate":"2010-02","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5457":{"rfcNumber":"RFC5457","href":"https://www.rfc-editor.org/rfc/rfc5457","title":"IANA Considerations for IAX: Inter-Asterisk eXchange Version 2","authors":["E. Guy, Ed."],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5457","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5458":{"rfcNumber":"RFC5458","href":"https://www.rfc-editor.org/rfc/rfc5458","title":"Security Requirements for the Unidirectional Lightweight Encapsulation (ULE) Protocol","authors":["H. Cruickshank","P. Pillai","M. Noisternig","S. Iyengar"],"rawDate":"2009-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5458","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5459":{"rfcNumber":"RFC5459","href":"https://www.rfc-editor.org/rfc/rfc5459","title":"G.729.1 RTP Payload Format Update: Discontinuous Transmission (DTX) Support","authors":["A. Sollaud"],"rawDate":"2009-01","status":"Proposed Standard","updates":["RFC4749"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc546":{"aliasOf":"rfc0546"},"rfc5460":{"rfcNumber":"RFC5460","href":"https://www.rfc-editor.org/rfc/rfc5460","title":"DHCPv6 Bulk Leasequery","authors":["M. Stapp"],"rawDate":"2009-02","status":"Proposed Standard","updatedBy":["RFC7653"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5460","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5461":{"rfcNumber":"RFC5461","href":"https://www.rfc-editor.org/rfc/rfc5461","title":"TCP's Reaction to Soft Errors","authors":["F. Gont"],"rawDate":"2009-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5462":{"rfcNumber":"RFC5462","href":"https://www.rfc-editor.org/rfc/rfc5462","title":"Multiprotocol Label Switching (MPLS) Label Stack Entry: \"EXP\" Field Renamed to \"Traffic Class\" Field","authors":["L. Andersson","R. Asati"],"rawDate":"2009-02","status":"Proposed Standard","updates":["RFC3032","RFC3270","RFC3272","RFC3443","RFC3469","RFC3564","RFC3985","RFC4182","RFC4364","RFC4379","RFC4448","RFC4761","RFC5129"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5462","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5463":{"rfcNumber":"RFC5463","href":"https://www.rfc-editor.org/rfc/rfc5463","title":"Sieve Email Filtering: Ihave Extension","authors":["N. Freed"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5464":{"rfcNumber":"RFC5464","href":"https://www.rfc-editor.org/rfc/rfc5464","title":"The IMAP METADATA Extension","authors":["C. Daboo"],"rawDate":"2009-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5464","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5465":{"rfcNumber":"RFC5465","href":"https://www.rfc-editor.org/rfc/rfc5465","title":"The IMAP NOTIFY Extension","authors":["A. Gulbrandsen","C. King","A. Melnikov"],"rawDate":"2009-02","status":"Proposed Standard","updates":["RFC5267"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5465","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5466":{"rfcNumber":"RFC5466","href":"https://www.rfc-editor.org/rfc/rfc5466","title":"IMAP4 Extension for Named Searches (Filters)","authors":["A. Melnikov","C. King"],"rawDate":"2009-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5467":{"rfcNumber":"RFC5467","href":"https://www.rfc-editor.org/rfc/rfc5467","title":"GMPLS Asymmetric Bandwidth Bidirectional Label Switched Paths (LSPs)","authors":["L. Berger","A. Takacs","D. Caviglia","D. Fedyk","J. Meuric"],"rawDate":"2009-03","status":"Experimental","obsoletedBy":["RFC6387"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5467","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5468":{"rfcNumber":"RFC5468","href":"https://www.rfc-editor.org/rfc/rfc5468","title":"Performance Analysis of Inter-Domain Path Computation Methodologies","authors":["S. Dasgupta","J. de Oliveira","JP. Vasseur"],"rawDate":"2009-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5469":{"rfcNumber":"RFC5469","href":"https://www.rfc-editor.org/rfc/rfc5469","title":"DES and IDEA Cipher Suites for Transport Layer Security (TLS)","authors":["P. Eronen, Ed."],"rawDate":"2009-02","status":"Historic","obsoletedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc547":{"aliasOf":"rfc0547"},"rfc5470":{"rfcNumber":"RFC5470","href":"https://www.rfc-editor.org/rfc/rfc5470","title":"Architecture for IP Flow Information Export","authors":["G. Sadasivan","N. Brownlee","B. Claise","J. Quittek"],"rawDate":"2009-03","status":"Informational","updatedBy":["RFC6183"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5471":{"rfcNumber":"RFC5471","href":"https://www.rfc-editor.org/rfc/rfc5471","title":"Guidelines for IP Flow Information Export (IPFIX) Testing","authors":["C. Schmoll","P. Aitken","B. Claise"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5472":{"rfcNumber":"RFC5472","href":"https://www.rfc-editor.org/rfc/rfc5472","title":"IP Flow Information Export (IPFIX) Applicability","authors":["T. Zseby","E. Boschi","N. Brownlee","B. Claise"],"rawDate":"2009-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5472","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5473":{"rfcNumber":"RFC5473","href":"https://www.rfc-editor.org/rfc/rfc5473","title":"Reducing Redundancy in IP Flow Information Export (IPFIX) and Packet Sampling (PSAMP) Reports","authors":["E. Boschi","L. Mark","B. Claise"],"rawDate":"2009-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5473","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5474":{"rfcNumber":"RFC5474","href":"https://www.rfc-editor.org/rfc/rfc5474","title":"A Framework for Packet Selection and Reporting","authors":["N. Duffield, Ed.","D. Chiou","B. Claise","A. Greenberg","M. Grossglauser","J. Rexford"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5475":{"rfcNumber":"RFC5475","href":"https://www.rfc-editor.org/rfc/rfc5475","title":"Sampling and Filtering Techniques for IP Packet Selection","authors":["T. Zseby","M. Molina","N. Duffield","S. Niccolini","F. Raspall"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5476":{"rfcNumber":"RFC5476","href":"https://www.rfc-editor.org/rfc/rfc5476","title":"Packet Sampling (PSAMP) Protocol Specifications","authors":["B. Claise, Ed.","A. Johnson","J. Quittek"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5476","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5477":{"rfcNumber":"RFC5477","href":"https://www.rfc-editor.org/rfc/rfc5477","title":"Information Model for Packet Sampling Exports","authors":["T. Dietz","B. Claise","P. Aitken","F. Dressler","G. Carle"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5477","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5478":{"rfcNumber":"RFC5478","href":"https://www.rfc-editor.org/rfc/rfc5478","title":"IANA Registration of New Session Initiation Protocol (SIP) Resource-Priority Namespaces","authors":["J. Polk"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5479":{"rfcNumber":"RFC5479","href":"https://www.rfc-editor.org/rfc/rfc5479","title":"Requirements and Analysis of Media Security Management Protocols","authors":["D. Wing, Ed.","S. Fries","H. Tschofenig","F. Audet"],"rawDate":"2009-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5479","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc548":{"aliasOf":"rfc0548"},"rfc5480":{"rfcNumber":"RFC5480","href":"https://www.rfc-editor.org/rfc/rfc5480","title":"Elliptic Curve Cryptography Subject Public Key Information","authors":["S. Turner","D. Brown","K. Yiu","R. Housley","T. Polk"],"rawDate":"2009-03","status":"Proposed Standard","updatedBy":["RFC8813"],"updates":["RFC3279"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5480","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5481":{"rfcNumber":"RFC5481","href":"https://www.rfc-editor.org/rfc/rfc5481","title":"Packet Delay Variation Applicability Statement","authors":["A. Morton","B. Claise"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5482":{"rfcNumber":"RFC5482","href":"https://www.rfc-editor.org/rfc/rfc5482","title":"TCP User Timeout Option","authors":["L. Eggert","F. Gont"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5483":{"rfcNumber":"RFC5483","href":"https://www.rfc-editor.org/rfc/rfc5483","title":"ENUM Implementation Issues and Experiences","authors":["L. Conroy","K. Fujiwara"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5484":{"rfcNumber":"RFC5484","href":"https://www.rfc-editor.org/rfc/rfc5484","title":"Associating Time-Codes with RTP Streams","authors":["D. Singer"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5485":{"rfcNumber":"RFC5485","href":"https://www.rfc-editor.org/rfc/rfc5485","title":"Digital Signatures on Internet-Draft Documents","authors":["R. Housley"],"rawDate":"2009-03","status":"Informational","updatedBy":["RFC8358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5486":{"rfcNumber":"RFC5486","href":"https://www.rfc-editor.org/rfc/rfc5486","title":"Session Peering for Multimedia Interconnect (SPEERMINT) Terminology","authors":["D. Malas, Ed.","D. Meyer, Ed."],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5487":{"rfcNumber":"RFC5487","href":"https://www.rfc-editor.org/rfc/rfc5487","title":"Pre-Shared Key Cipher Suites for TLS with SHA-256/384 and AES Galois Counter Mode","authors":["M. Badra"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5488":{"rfcNumber":"RFC5488","href":"https://www.rfc-editor.org/rfc/rfc5488","title":"Network Mobility (NEMO) Management Information Base","authors":["S. Gundavelli","G. Keeni","K. Koide","K. Nagami"],"rawDate":"2009-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5489":{"rfcNumber":"RFC5489","href":"https://www.rfc-editor.org/rfc/rfc5489","title":"ECDHE_PSK Cipher Suites for Transport Layer Security (TLS)","authors":["M. Badra","I. Hajjeh"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc549":{"aliasOf":"rfc0549"},"rfc5490":{"rfcNumber":"RFC5490","href":"https://www.rfc-editor.org/rfc/rfc5490","title":"The Sieve Mail-Filtering Language -- Extensions for Checking Mailbox Status and Accessing Mailbox Metadata","authors":["A. Melnikov"],"rawDate":"2009-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5491":{"rfcNumber":"RFC5491","href":"https://www.rfc-editor.org/rfc/rfc5491","title":"GEOPRIV Presence Information Data Format Location Object (PIDF-LO) Usage Clarification, Considerations, and Recommendations","authors":["J. Winterbottom","M. Thomson","H. Tschofenig"],"rawDate":"2009-03","status":"Proposed Standard","updatedBy":["RFC7459"],"updates":["RFC4119"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5491","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5492":{"rfcNumber":"RFC5492","href":"https://www.rfc-editor.org/rfc/rfc5492","title":"Capabilities Advertisement with BGP-4","authors":["J. Scudder","R. Chandra"],"rawDate":"2009-02","status":"Draft Standard","updatedBy":["RFC8810"],"obsoletes":["RFC3392"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5492","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5493":{"rfcNumber":"RFC5493","href":"https://www.rfc-editor.org/rfc/rfc5493","title":"Requirements for the Conversion between Permanent Connections and Switched Connections in a Generalized Multiprotocol Label Switching (GMPLS) Network","authors":["D. Caviglia","D. Bramanti","D. Li","D. McDysan"],"rawDate":"2009-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5494":{"rfcNumber":"RFC5494","href":"https://www.rfc-editor.org/rfc/rfc5494","title":"IANA Allocation Guidelines for the Address Resolution Protocol (ARP)","authors":["J. Arkko","C. Pignataro"],"rawDate":"2009-04","status":"Proposed Standard","updates":["RFC0826","RFC0951","RFC1044","RFC1329","RFC2131","RFC2132","RFC2176","RFC2225","RFC2834","RFC2835","RFC3315","RFC4338","RFC4361","RFC4701"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5495":{"rfcNumber":"RFC5495","href":"https://www.rfc-editor.org/rfc/rfc5495","title":"Description of the Resource Reservation Protocol - Traffic-Engineered (RSVP-TE) Graceful Restart Procedures","authors":["D. Li","J. Gao","A. Satyanarayana","S. Bardalai"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5496":{"rfcNumber":"RFC5496","href":"https://www.rfc-editor.org/rfc/rfc5496","title":"The Reverse Path Forwarding (RPF) Vector TLV","authors":["IJ. Wijnands","A. Boers","E. Rosen"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5496","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5497":{"rfcNumber":"RFC5497","href":"https://www.rfc-editor.org/rfc/rfc5497","title":"Representing Multi-Value Time in Mobile Ad Hoc Networks (MANETs)","authors":["T. Clausen","C. Dearlove"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5497","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5498":{"rfcNumber":"RFC5498","href":"https://www.rfc-editor.org/rfc/rfc5498","title":"IANA Allocations for Mobile Ad Hoc Network (MANET) Protocols","authors":["I. Chakeres"],"rawDate":"2009-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5498","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc55":{"aliasOf":"rfc0055"},"rfc550":{"aliasOf":"rfc0550"},"rfc5501":{"rfcNumber":"RFC5501","href":"https://www.rfc-editor.org/rfc/rfc5501","title":"Requirements for Multicast Support in Virtual Private LAN Services","authors":["Y. Kamite, Ed.","Y. Wada","Y. Serbest","T. Morin","L. Fang"],"rawDate":"2009-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5502":{"rfcNumber":"RFC5502","href":"https://www.rfc-editor.org/rfc/rfc5502","title":"The SIP P-Served-User Private-Header (P-Header) for the 3GPP IP Multimedia (IM) Core Network (CN) Subsystem","authors":["J. van Elburg"],"rawDate":"2009-04","status":"Informational","updatedBy":["RFC8217","RFC8498"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5502","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5503":{"rfcNumber":"RFC5503","href":"https://www.rfc-editor.org/rfc/rfc5503","title":"Private Session Initiation Protocol (SIP) Proxy-to-Proxy Extensions for Supporting the PacketCable Distributed Call Signaling Architecture","authors":["F. Andreasen","B. McKibben","B. Marshall"],"rawDate":"2009-03","status":"Informational","obsoletes":["RFC3603"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5504":{"rfcNumber":"RFC5504","href":"https://www.rfc-editor.org/rfc/rfc5504","title":"Downgrading Mechanism for Email Address Internationalization","authors":["K. Fujiwara, Ed.","Y. Yoneya, Ed."],"rawDate":"2009-03","status":"Experimental","obsoletedBy":["RFC6530"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5505":{"rfcNumber":"RFC5505","href":"https://www.rfc-editor.org/rfc/rfc5505","title":"Principles of Internet Host Configuration","authors":["B. Aboba","D. Thaler","L. Andersson","S. Cheshire"],"rawDate":"2009-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5506":{"rfcNumber":"RFC5506","href":"https://www.rfc-editor.org/rfc/rfc5506","title":"Support for Reduced-Size Real-Time Transport Control Protocol (RTCP): Opportunities and Consequences","authors":["I. Johansson","M. Westerlund"],"rawDate":"2009-04","status":"Proposed Standard","updates":["RFC3550","RFC3711","RFC4585"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5506","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5507":{"rfcNumber":"RFC5507","href":"https://www.rfc-editor.org/rfc/rfc5507","title":"Design Choices When Expanding the DNS","authors":["IAB","P. Faltstrom, Ed.","R. Austein, Ed.","P. Koch, Ed."],"rawDate":"2009-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5508":{"rfcNumber":"RFC5508","href":"https://www.rfc-editor.org/rfc/rfc5508","title":"NAT Behavioral Requirements for ICMP","authors":["P. Srisuresh","B. Ford","S. Sivakumar","S. Guha"],"rawDate":"2009-04","status":"Best Current Practice","updatedBy":["RFC7857"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5509":{"rfcNumber":"RFC5509","href":"https://www.rfc-editor.org/rfc/rfc5509","title":"Internet Assigned Numbers Authority (IANA) Registration of Instant Messaging and Presence DNS SRV RRs for the Session Initiation Protocol (SIP)","authors":["S. Loreto"],"rawDate":"2009-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc551":{"aliasOf":"rfc0551"},"rfc5510":{"rfcNumber":"RFC5510","href":"https://www.rfc-editor.org/rfc/rfc5510","title":"Reed-Solomon Forward Error Correction (FEC) Schemes","authors":["J. Lacan","V. Roca","J. Peltotalo","S. Peltotalo"],"rawDate":"2009-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5511":{"rfcNumber":"RFC5511","href":"https://www.rfc-editor.org/rfc/rfc5511","title":"Routing Backus-Naur Form (RBNF): A Syntax Used to Form Encoding Rules in Various Routing Protocol Specifications","authors":["A. Farrel"],"rawDate":"2009-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5512":{"rfcNumber":"RFC5512","href":"https://www.rfc-editor.org/rfc/rfc5512","title":"The BGP Encapsulation Subsequent Address Family Identifier (SAFI) and the BGP Tunnel Encapsulation Attribute","authors":["P. Mohapatra","E. Rosen"],"rawDate":"2009-04","status":"Proposed Standard","obsoletedBy":["RFC9012"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5513":{"rfcNumber":"RFC5513","href":"https://www.rfc-editor.org/rfc/rfc5513","title":"IANA Considerations for Three Letter Acronyms","authors":["A. Farrel"],"rawDate":"2009-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5513","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5514":{"rfcNumber":"RFC5514","href":"https://www.rfc-editor.org/rfc/rfc5514","title":"IPv6 over Social Networks","authors":["E. Vyncke"],"rawDate":"2009-04-01","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5514","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5515":{"rfcNumber":"RFC5515","href":"https://www.rfc-editor.org/rfc/rfc5515","title":"Layer 2 Tunneling Protocol (L2TP) Access Line Information Attribute Value Pair (AVP) Extensions","authors":["V. Mammoliti","C. Pignataro","P. Arberg","J. Gibbons","P. Howard"],"rawDate":"2009-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5515","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5516":{"rfcNumber":"RFC5516","href":"https://www.rfc-editor.org/rfc/rfc5516","title":"Diameter Command Code Registration for the Third Generation Partnership Project (3GPP) Evolved Packet System (EPS)","authors":["M. Jones","L. Morand"],"rawDate":"2009-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5517":{"rfcNumber":"RFC5517","href":"https://www.rfc-editor.org/rfc/rfc5517","title":"Cisco Systems' Private VLANs: Scalable Security in a Multi-Client Environment","authors":["S. HomChaudhuri","M. Foschiano"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5518":{"rfcNumber":"RFC5518","href":"https://www.rfc-editor.org/rfc/rfc5518","title":"Vouch By Reference","authors":["P. Hoffman","J. Levine","A. Hathcock"],"rawDate":"2009-04","status":"Proposed Standard","updatedBy":["RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5518","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5519":{"rfcNumber":"RFC5519","href":"https://www.rfc-editor.org/rfc/rfc5519","title":"Multicast Group Membership Discovery MIB","authors":["J. Chesterfield","B. Haberman, Ed."],"rawDate":"2009-04","status":"Proposed Standard","obsoletes":["RFC2933","RFC3019"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc552":{"aliasOf":"rfc0552"},"rfc5520":{"rfcNumber":"RFC5520","href":"https://www.rfc-editor.org/rfc/rfc5520","title":"Preserving Topology Confidentiality in Inter-Domain Path Computation Using a Path-Key-Based Mechanism","authors":["R. Bradford, Ed.","JP. Vasseur","A. Farrel"],"rawDate":"2009-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5520","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5521":{"rfcNumber":"RFC5521","href":"https://www.rfc-editor.org/rfc/rfc5521","title":"Extensions to the Path Computation Element Communication Protocol (PCEP) for Route Exclusions","authors":["E. Oki","T. Takeda","A. Farrel"],"rawDate":"2009-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5521","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5522":{"rfcNumber":"RFC5522","href":"https://www.rfc-editor.org/rfc/rfc5522","title":"Network Mobility Route Optimization Requirements for Operational Use in Aeronautics and Space Exploration Mobile Networks","authors":["W. Eddy","W. Ivancic","T. Davis"],"rawDate":"2009-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5523":{"rfcNumber":"RFC5523","href":"https://www.rfc-editor.org/rfc/rfc5523","title":"OSPFv3-Based Layer 1 VPN Auto-Discovery","authors":["L. Berger"],"rawDate":"2009-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5524":{"rfcNumber":"RFC5524","href":"https://www.rfc-editor.org/rfc/rfc5524","title":"Extended URLFETCH for Binary and Converted Parts","authors":["D. Cridland"],"rawDate":"2009-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5524","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5525":{"rfcNumber":"RFC5525","href":"https://www.rfc-editor.org/rfc/rfc5525","title":"Reliable Server Pooling MIB Module Definition","authors":["T. Dreibholz","J. Mulik"],"rawDate":"2009-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5526":{"rfcNumber":"RFC5526","href":"https://www.rfc-editor.org/rfc/rfc5526","title":"The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application for Infrastructure ENUM","authors":["J. Livingood","P. Pfautz","R. Stastny"],"rawDate":"2009-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5527":{"rfcNumber":"RFC5527","href":"https://www.rfc-editor.org/rfc/rfc5527","title":"Combined User and Infrastructure ENUM in the e164.arpa Tree","authors":["M. Haberler","O. Lendl","R. Stastny"],"rawDate":"2009-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5528":{"rfcNumber":"RFC5528","href":"https://www.rfc-editor.org/rfc/rfc5528","title":"Camellia Counter Mode and Camellia Counter with CBC-MAC Mode Algorithms","authors":["A. Kato","M. Kanda","S. Kanno"],"rawDate":"2009-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5529":{"rfcNumber":"RFC5529","href":"https://www.rfc-editor.org/rfc/rfc5529","title":"Modes of Operation for Camellia for Use with IPsec","authors":["A. Kato","M. Kanda","S. Kanno"],"rawDate":"2009-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc553":{"aliasOf":"rfc0553"},"rfc5530":{"rfcNumber":"RFC5530","href":"https://www.rfc-editor.org/rfc/rfc5530","title":"IMAP Response Codes","authors":["A. Gulbrandsen"],"rawDate":"2009-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5530","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5531":{"rfcNumber":"RFC5531","href":"https://www.rfc-editor.org/rfc/rfc5531","title":"RPC: Remote Procedure Call Protocol Specification Version 2","authors":["R. Thurlow"],"rawDate":"2009-05","status":"Draft Standard","updatedBy":["RFC9289"],"obsoletes":["RFC1831"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5531","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5532":{"rfcNumber":"RFC5532","href":"https://www.rfc-editor.org/rfc/rfc5532","title":"Network File System (NFS) Remote Direct Memory Access (RDMA) Problem Statement","authors":["T. Talpey","C. Juszczak"],"rawDate":"2009-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5533":{"rfcNumber":"RFC5533","href":"https://www.rfc-editor.org/rfc/rfc5533","title":"Shim6: Level 3 Multihoming Shim Protocol for IPv6","authors":["E. Nordmark","M. Bagnulo"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5534":{"rfcNumber":"RFC5534","href":"https://www.rfc-editor.org/rfc/rfc5534","title":"Failure Detection and Locator Pair Exploration Protocol for IPv6 Multihoming","authors":["J. Arkko","I. van Beijnum"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5535":{"rfcNumber":"RFC5535","href":"https://www.rfc-editor.org/rfc/rfc5535","title":"Hash-Based Addresses (HBA)","authors":["M. Bagnulo"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5536":{"rfcNumber":"RFC5536","href":"https://www.rfc-editor.org/rfc/rfc5536","title":"Netnews Article Format","authors":["K. Murchison, Ed.","C. Lindsey","D. Kohn"],"rawDate":"2009-11","status":"Proposed Standard","obsoletes":["RFC1036","RFC1849"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5536","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5537":{"rfcNumber":"RFC5537","href":"https://www.rfc-editor.org/rfc/rfc5537","title":"Netnews Architecture and Protocols","authors":["R. Allbery, Ed.","C. Lindsey"],"rawDate":"2009-11","status":"Proposed Standard","updatedBy":["RFC8315"],"obsoletes":["RFC1036","RFC1849"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5537","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5538":{"rfcNumber":"RFC5538","href":"https://www.rfc-editor.org/rfc/rfc5538","title":"The 'news' and 'nntp' URI Schemes","authors":["F. Ellermann"],"rawDate":"2010-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5538","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5539":{"rfcNumber":"RFC5539","href":"https://www.rfc-editor.org/rfc/rfc5539","title":"NETCONF over Transport Layer Security (TLS)","authors":["M. Badra"],"rawDate":"2009-05","status":"Proposed Standard","obsoletedBy":["RFC7589"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5540":{"rfcNumber":"RFC5540","href":"https://www.rfc-editor.org/rfc/rfc5540","title":"40 Years of RFCs","authors":["RFC Editor"],"rawDate":"2009-04","status":"Informational","updatedBy":["RFC8700"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5541":{"rfcNumber":"RFC5541","href":"https://www.rfc-editor.org/rfc/rfc5541","title":"Encoding of Objective Functions in the Path Computation Element Communication Protocol (PCEP)","authors":["JL. Le Roux","JP. Vasseur","Y. Lee"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5542":{"rfcNumber":"RFC5542","href":"https://www.rfc-editor.org/rfc/rfc5542","title":"Definitions of Textual Conventions for Pseudowire (PW) Management","authors":["T. Nadeau, Ed.","D. Zelig, Ed.","O. Nicklass, Ed."],"rawDate":"2009-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5543":{"rfcNumber":"RFC5543","href":"https://www.rfc-editor.org/rfc/rfc5543","title":"BGP Traffic Engineering Attribute","authors":["H. Ould-Brahim","D. Fedyk","Y. Rekhter"],"rawDate":"2009-05","status":"Proposed Standard","updatedBy":["RFC7606"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5544":{"rfcNumber":"RFC5544","href":"https://www.rfc-editor.org/rfc/rfc5544","title":"Syntax for Binding Documents with Time-Stamps","authors":["A. Santoni"],"rawDate":"2010-02","status":"Informational","updatedBy":["RFC5955"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5544","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5545":{"rfcNumber":"RFC5545","href":"https://www.rfc-editor.org/rfc/rfc5545","title":"Internet Calendaring and Scheduling Core Object Specification (iCalendar)","authors":["B. Desruisseaux, Ed."],"rawDate":"2009-09","status":"Proposed Standard","updatedBy":["RFC5546","RFC6868","RFC7529","RFC7953","RFC7986","RFC9073","RFC9074","RFC9253"],"obsoletes":["RFC2445"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5545","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5546":{"rfcNumber":"RFC5546","href":"https://www.rfc-editor.org/rfc/rfc5546","title":"iCalendar Transport-Independent Interoperability Protocol (iTIP)","authors":["C. Daboo, Ed."],"rawDate":"2009-12","status":"Proposed Standard","updatedBy":["RFC6638"],"updates":["RFC5545"],"obsoletes":["RFC2446"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5546","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5547":{"rfcNumber":"RFC5547","href":"https://www.rfc-editor.org/rfc/rfc5547","title":"A Session Description Protocol (SDP) Offer/Answer Mechanism to Enable File Transfer","authors":["M. Garcia-Martin","M. Isomaki","G. Camarillo","S. Loreto","P. Kyzivat"],"rawDate":"2009-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5547","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5548":{"rfcNumber":"RFC5548","href":"https://www.rfc-editor.org/rfc/rfc5548","title":"Routing Requirements for Urban Low-Power and Lossy Networks","authors":["M. Dohler, Ed.","T. Watteyne, Ed.","T. Winter, Ed.","D. Barthel, Ed."],"rawDate":"2009-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5549":{"rfcNumber":"RFC5549","href":"https://www.rfc-editor.org/rfc/rfc5549","title":"Advertising IPv4 Network Layer Reachability Information with an IPv6 Next Hop","authors":["F. Le Faucheur","E. Rosen"],"rawDate":"2009-05","status":"Proposed Standard","obsoletedBy":["RFC8950"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5549","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc555":{"aliasOf":"rfc0555"},"rfc5550":{"rfcNumber":"RFC5550","href":"https://www.rfc-editor.org/rfc/rfc5550","title":"The Internet Email to Support Diverse Service Environments (Lemonade) Profile","authors":["D. Cridland, Ed.","A. Melnikov, Ed.","S. Maes, Ed."],"rawDate":"2009-08","status":"Proposed Standard","updates":["RFC4469","RFC4467"],"obsoletes":["RFC4550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5551":{"rfcNumber":"RFC5551","href":"https://www.rfc-editor.org/rfc/rfc5551","title":"Lemonade Notifications Architecture","authors":["R. Gellens, Ed."],"rawDate":"2009-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5552":{"rfcNumber":"RFC5552","href":"https://www.rfc-editor.org/rfc/rfc5552","title":"SIP Interface to VoiceXML Media Services","authors":["D. Burke","M. Scott"],"rawDate":"2009-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5552","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5553":{"rfcNumber":"RFC5553","href":"https://www.rfc-editor.org/rfc/rfc5553","title":"Resource Reservation Protocol (RSVP) Extensions for Path Key Support","authors":["A. Farrel, Ed.","R. Bradford","JP. Vasseur"],"rawDate":"2009-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5554":{"rfcNumber":"RFC5554","href":"https://www.rfc-editor.org/rfc/rfc5554","title":"Clarifications and Extensions to the Generic Security Service Application Program Interface (GSS-API) for the Use of Channel Bindings","authors":["N. Williams"],"rawDate":"2009-05","status":"Proposed Standard","updates":["RFC2743"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5555":{"rfcNumber":"RFC5555","href":"https://www.rfc-editor.org/rfc/rfc5555","title":"Mobile IPv6 Support for Dual Stack Hosts and Routers","authors":["H. Soliman, Ed."],"rawDate":"2009-06","status":"Proposed Standard","updatedBy":["RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5555","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5556":{"rfcNumber":"RFC5556","href":"https://www.rfc-editor.org/rfc/rfc5556","title":"Transparent Interconnection of Lots of Links (TRILL): Problem and Applicability Statement","authors":["J. Touch","R. Perlman"],"rawDate":"2009-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5556","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5557":{"rfcNumber":"RFC5557","href":"https://www.rfc-editor.org/rfc/rfc5557","title":"Path Computation Element Communication Protocol (PCEP) Requirements and Protocol Extensions in Support of Global Concurrent Optimization","authors":["Y. Lee","JL. Le Roux","D. King","E. Oki"],"rawDate":"2009-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5557","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5558":{"rfcNumber":"RFC5558","href":"https://www.rfc-editor.org/rfc/rfc5558","title":"Virtual Enterprise Traversal (VET)","authors":["F. Templin, Ed."],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5559":{"rfcNumber":"RFC5559","href":"https://www.rfc-editor.org/rfc/rfc5559","title":"Pre-Congestion Notification (PCN) Architecture","authors":["P. Eardley, Ed."],"rawDate":"2009-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5559","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc556":{"aliasOf":"rfc0556"},"rfc5560":{"rfcNumber":"RFC5560","href":"https://www.rfc-editor.org/rfc/rfc5560","title":"A One-Way Packet Duplication Metric","authors":["H. Uijterwaal"],"rawDate":"2009-05","status":"Proposed Standard","updatedBy":["RFC6248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5561":{"rfcNumber":"RFC5561","href":"https://www.rfc-editor.org/rfc/rfc5561","title":"LDP Capabilities","authors":["B. Thomas","K. Raza","S. Aggarwal","R. Aggarwal","JL. Le Roux"],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5562":{"rfcNumber":"RFC5562","href":"https://www.rfc-editor.org/rfc/rfc5562","title":"Adding Explicit Congestion Notification (ECN) Capability to TCP's SYN/ACK Packets","authors":["A. Kuzmanovic","A. Mondal","S. Floyd","K. Ramakrishnan"],"rawDate":"2009-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5563":{"rfcNumber":"RFC5563","href":"https://www.rfc-editor.org/rfc/rfc5563","title":"WiMAX Forum / 3GPP2 Proxy Mobile IPv4","authors":["K. Leung","G. Dommety","P. Yegani","K. Chowdhury"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5564":{"rfcNumber":"RFC5564","href":"https://www.rfc-editor.org/rfc/rfc5564","title":"Linguistic Guidelines for the Use of the Arabic Language in Internet Domains","authors":["A. El-Sherbiny","M. Farah","I. Oueichek","A. Al-Zoman"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5565":{"rfcNumber":"RFC5565","href":"https://www.rfc-editor.org/rfc/rfc5565","title":"Softwire Mesh Framework","authors":["J. Wu","Y. Cui","C. Metz","E. Rosen"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5566":{"rfcNumber":"RFC5566","href":"https://www.rfc-editor.org/rfc/rfc5566","title":"BGP IPsec Tunnel Encapsulation Attribute","authors":["L. Berger","R. White","E. Rosen"],"rawDate":"2009-06","status":"Proposed Standard","obsoletedBy":["RFC9012"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5567":{"rfcNumber":"RFC5567","href":"https://www.rfc-editor.org/rfc/rfc5567","title":"An Architectural Framework for Media Server Control","authors":["T. Melanchuk, Ed."],"rawDate":"2009-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5568":{"rfcNumber":"RFC5568","href":"https://www.rfc-editor.org/rfc/rfc5568","title":"Mobile IPv6 Fast Handovers","authors":["R. Koodli, Ed."],"rawDate":"2009-07","status":"Proposed Standard","updatedBy":["RFC7411"],"obsoletes":["RFC5268"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5568","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5569":{"rfcNumber":"RFC5569","href":"https://www.rfc-editor.org/rfc/rfc5569","title":"IPv6 Rapid Deployment on IPv4 Infrastructures (6rd)","authors":["R. Despres"],"rawDate":"2010-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5569","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc557":{"aliasOf":"rfc0557"},"rfc5570":{"rfcNumber":"RFC5570","href":"https://www.rfc-editor.org/rfc/rfc5570","title":"Common Architecture Label IPv6 Security Option (CALIPSO)","authors":["M. StJohns","R. Atkinson","G. Thomas"],"rawDate":"2009-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5570","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5571":{"rfcNumber":"RFC5571","href":"https://www.rfc-editor.org/rfc/rfc5571","title":"Softwire Hub and Spoke Deployment Framework with Layer Two Tunneling Protocol Version 2 (L2TPv2)","authors":["B. Storer","C. Pignataro, Ed.","M. Dos Santos","B. Stevant, Ed.","L. Toutain","J. Tremblay"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5572":{"rfcNumber":"RFC5572","href":"https://www.rfc-editor.org/rfc/rfc5572","title":"IPv6 Tunnel Broker with the Tunnel Setup Protocol (TSP)","authors":["M. Blanchet","F. Parent"],"rawDate":"2010-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5572","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5573":{"rfcNumber":"RFC5573","href":"https://www.rfc-editor.org/rfc/rfc5573","title":"Asynchronous Channels for the Blocks Extensible Exchange Protocol (BEEP)","authors":["M. Thomson"],"rawDate":"2009-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5574":{"rfcNumber":"RFC5574","href":"https://www.rfc-editor.org/rfc/rfc5574","title":"RTP Payload Format for the Speex Codec","authors":["G. Herlein","J. Valin","A. Heggestad","A. Moizard"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5575":{"rfcNumber":"RFC5575","href":"https://www.rfc-editor.org/rfc/rfc5575","title":"Dissemination of Flow Specification Rules","authors":["P. Marques","N. Sheth","R. Raszuk","B. Greene","J. Mauch","D. McPherson"],"rawDate":"2009-08","status":"Proposed Standard","updatedBy":["RFC7674"],"obsoletedBy":["RFC8955"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5575","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5576":{"rfcNumber":"RFC5576","href":"https://www.rfc-editor.org/rfc/rfc5576","title":"Source-Specific Media Attributes in the Session Description Protocol (SDP)","authors":["J. Lennox","J. Ott","T. Schierl"],"rawDate":"2009-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5576","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5577":{"rfcNumber":"RFC5577","href":"https://www.rfc-editor.org/rfc/rfc5577","title":"RTP Payload Format for ITU-T Recommendation G.722.1","authors":["P. Luthi","R. Even"],"rawDate":"2009-07","status":"Proposed Standard","obsoletes":["RFC3047"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5577","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5578":{"rfcNumber":"RFC5578","href":"https://www.rfc-editor.org/rfc/rfc5578","title":"PPP over Ethernet (PPPoE) Extensions for Credit Flow and Link Metrics","authors":["B. Berry, Ed.","S. Ratliff","E. Paradise","T. Kaiser","M. Adams"],"rawDate":"2010-02","status":"Informational","obsoletes":["RFC4938"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5578","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5579":{"rfcNumber":"RFC5579","href":"https://www.rfc-editor.org/rfc/rfc5579","title":"Transmission of IPv4 Packets over Intra-Site Automatic Tunnel Addressing Protocol (ISATAP) Interfaces","authors":["F. Templin, Ed."],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5580":{"rfcNumber":"RFC5580","href":"https://www.rfc-editor.org/rfc/rfc5580","title":"Carrying Location Objects in RADIUS and Diameter","authors":["H. Tschofenig, Ed.","F. Adrangi","M. Jones","A. Lior","B. Aboba"],"rawDate":"2009-08","status":"Proposed Standard","updatedBy":["RFC8559"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5580","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5581":{"rfcNumber":"RFC5581","href":"https://www.rfc-editor.org/rfc/rfc5581","title":"The Camellia Cipher in OpenPGP","authors":["D. Shaw"],"rawDate":"2009-06","status":"Informational","updates":["RFC4880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5582":{"rfcNumber":"RFC5582","href":"https://www.rfc-editor.org/rfc/rfc5582","title":"Location-to-URL Mapping Architecture and Framework","authors":["H. Schulzrinne"],"rawDate":"2009-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5582","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5583":{"rfcNumber":"RFC5583","href":"https://www.rfc-editor.org/rfc/rfc5583","title":"Signaling Media Decoding Dependency in the Session Description Protocol (SDP)","authors":["T. Schierl","S. Wenger"],"rawDate":"2009-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5583","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5584":{"rfcNumber":"RFC5584","href":"https://www.rfc-editor.org/rfc/rfc5584","title":"RTP Payload Format for the Adaptive TRansform Acoustic Coding (ATRAC) Family","authors":["M. Hatanaka","J. Matsumoto"],"rawDate":"2009-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5584","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5585":{"rfcNumber":"RFC5585","href":"https://www.rfc-editor.org/rfc/rfc5585","title":"DomainKeys Identified Mail (DKIM) Service Overview","authors":["T. Hansen","D. Crocker","P. Hallam-Baker"],"rawDate":"2009-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5586":{"rfcNumber":"RFC5586","href":"https://www.rfc-editor.org/rfc/rfc5586","title":"MPLS Generic Associated Channel","authors":["M. Bocci, Ed.","M. Vigoureux, Ed.","S. Bryant, Ed."],"rawDate":"2009-06","status":"Proposed Standard","updatedBy":["RFC6423","RFC7026","RFC7214","RFC7274"],"updates":["RFC3032","RFC4385","RFC5085"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5586","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5587":{"rfcNumber":"RFC5587","href":"https://www.rfc-editor.org/rfc/rfc5587","title":"Extended Generic Security Service Mechanism Inquiry APIs","authors":["N. Williams"],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5588":{"rfcNumber":"RFC5588","href":"https://www.rfc-editor.org/rfc/rfc5588","title":"Generic Security Service Application Program Interface (GSS-API) Extension for Storing Delegated Credentials","authors":["N. Williams"],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5589":{"rfcNumber":"RFC5589","href":"https://www.rfc-editor.org/rfc/rfc5589","title":"Session Initiation Protocol (SIP) Call Control - Transfer","authors":["R. Sparks","A. Johnston, Ed.","D. Petrie"],"rawDate":"2009-06","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5589","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc559":{"aliasOf":"rfc0559"},"rfc5590":{"rfcNumber":"RFC5590","href":"https://www.rfc-editor.org/rfc/rfc5590","title":"Transport Subsystem for the Simple Network Management Protocol (SNMP)","authors":["D. Harrington","J. Schoenwaelder"],"rawDate":"2009-06","status":"Internet Standard","updates":["RFC3411","RFC3412","RFC3414","RFC3417"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5591":{"rfcNumber":"RFC5591","href":"https://www.rfc-editor.org/rfc/rfc5591","title":"Transport Security Model for the Simple Network Management Protocol (SNMP)","authors":["D. Harrington","W. Hardaker"],"rawDate":"2009-06","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5592":{"rfcNumber":"RFC5592","href":"https://www.rfc-editor.org/rfc/rfc5592","title":"Secure Shell Transport Model for the Simple Network Management Protocol (SNMP)","authors":["D. Harrington","J. Salowey","W. Hardaker"],"rawDate":"2009-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5593":{"rfcNumber":"RFC5593","href":"https://www.rfc-editor.org/rfc/rfc5593","title":"Internet Message Access Protocol (IMAP) - URL Access Identifier Extension","authors":["N. Cook"],"rawDate":"2009-06","status":"Proposed Standard","updates":["RFC5092"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5594":{"rfcNumber":"RFC5594","href":"https://www.rfc-editor.org/rfc/rfc5594","title":"Report from the IETF Workshop on Peer-to-Peer (P2P) Infrastructure, May 28, 2008","authors":["J. Peterson","A. Cooper"],"rawDate":"2009-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5595":{"rfcNumber":"RFC5595","href":"https://www.rfc-editor.org/rfc/rfc5595","title":"The Datagram Congestion Control Protocol (DCCP) Service Codes","authors":["G. Fairhurst"],"rawDate":"2009-09","status":"Proposed Standard","updatedBy":["RFC6335"],"updates":["RFC4340"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5595","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5596":{"rfcNumber":"RFC5596","href":"https://www.rfc-editor.org/rfc/rfc5596","title":"Datagram Congestion Control Protocol (DCCP) Simultaneous-Open Technique to Facilitate NAT/Middlebox Traversal","authors":["G. Fairhurst"],"rawDate":"2009-09","status":"Proposed Standard","updates":["RFC4340"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5597":{"rfcNumber":"RFC5597","href":"https://www.rfc-editor.org/rfc/rfc5597","title":"Network Address Translation (NAT) Behavioral Requirements for the Datagram Congestion Control Protocol","authors":["R. Denis-Courmont"],"rawDate":"2009-09","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5598":{"rfcNumber":"RFC5598","href":"https://www.rfc-editor.org/rfc/rfc5598","title":"Internet Mail Architecture","authors":["D. Crocker"],"rawDate":"2009-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5598","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc56":{"aliasOf":"rfc0056"},"rfc560":{"aliasOf":"rfc0560"},"rfc5601":{"rfcNumber":"RFC5601","href":"https://www.rfc-editor.org/rfc/rfc5601","title":"Pseudowire (PW) Management Information Base (MIB)","authors":["T. Nadeau, Ed.","D. Zelig, Ed."],"rawDate":"2009-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5601","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5602":{"rfcNumber":"RFC5602","href":"https://www.rfc-editor.org/rfc/rfc5602","title":"Pseudowire (PW) over MPLS PSN Management Information Base (MIB)","authors":["D. Zelig, Ed.","T. Nadeau, Ed."],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5603":{"rfcNumber":"RFC5603","href":"https://www.rfc-editor.org/rfc/rfc5603","title":"Ethernet Pseudowire (PW) Management Information Base (MIB)","authors":["D. Zelig, Ed.","T. Nadeau, Ed."],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5604":{"rfcNumber":"RFC5604","href":"https://www.rfc-editor.org/rfc/rfc5604","title":"Managed Objects for Time Division Multiplexing (TDM) over Packet Switched Networks (PSNs)","authors":["O. Nicklass"],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5605":{"rfcNumber":"RFC5605","href":"https://www.rfc-editor.org/rfc/rfc5605","title":"Managed Objects for ATM over Packet Switched Networks (PSNs)","authors":["O. Nicklass","T. Nadeau"],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5606":{"rfcNumber":"RFC5606","href":"https://www.rfc-editor.org/rfc/rfc5606","title":"Implications of 'retransmission-allowed' for SIP Location Conveyance","authors":["J. Peterson","T. Hardie","J. Morris"],"rawDate":"2009-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5607":{"rfcNumber":"RFC5607","href":"https://www.rfc-editor.org/rfc/rfc5607","title":"Remote Authentication Dial-In User Service (RADIUS) Authorization for Network Access Server (NAS) Management","authors":["D. Nelson","G. Weber"],"rawDate":"2009-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5608":{"rfcNumber":"RFC5608","href":"https://www.rfc-editor.org/rfc/rfc5608","title":"Remote Authentication Dial-In User Service (RADIUS) Usage for Simple Network Management Protocol (SNMP) Transport Models","authors":["K. Narayan","D. Nelson"],"rawDate":"2009-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5608","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5609":{"rfcNumber":"RFC5609","href":"https://www.rfc-editor.org/rfc/rfc5609","title":"State Machines for the Protocol for Carrying Authentication for Network Access (PANA)","authors":["V. Fajardo, Ed.","Y. Ohba","R. Marin-Lopez"],"rawDate":"2009-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc561":{"aliasOf":"rfc0561"},"rfc5610":{"rfcNumber":"RFC5610","href":"https://www.rfc-editor.org/rfc/rfc5610","title":"Exporting Type Information for IP Flow Information Export (IPFIX) Information Elements","authors":["E. Boschi","B. Trammell","L. Mark","T. Zseby"],"rawDate":"2009-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5610","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5611":{"rfcNumber":"RFC5611","href":"https://www.rfc-editor.org/rfc/rfc5611","title":"Layer Two Tunneling Protocol version 3 - Setup of Time-Division Multiplexing (TDM) Pseudowires","authors":["A. Vainshtein","S. Galtzur"],"rawDate":"2009-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5612":{"rfcNumber":"RFC5612","href":"https://www.rfc-editor.org/rfc/rfc5612","title":"Enterprise Number for Documentation Use","authors":["P. Eronen","D. Harrington"],"rawDate":"2009-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5613":{"rfcNumber":"RFC5613","href":"https://www.rfc-editor.org/rfc/rfc5613","title":"OSPF Link-Local Signaling","authors":["A. Zinin","A. Roy","L. Nguyen","B. Friedman","D. Yeung"],"rawDate":"2009-08","status":"Proposed Standard","obsoletes":["RFC4813"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5614":{"rfcNumber":"RFC5614","href":"https://www.rfc-editor.org/rfc/rfc5614","title":"Mobile Ad Hoc Network (MANET) Extension of OSPF Using Connected Dominating Set (CDS) Flooding","authors":["R. Ogier","P. Spagnolo"],"rawDate":"2009-08","status":"Experimental","updatedBy":["RFC7038","RFC9454"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5615":{"rfcNumber":"RFC5615","href":"https://www.rfc-editor.org/rfc/rfc5615","title":"H.248/MEGACO Registration Procedures","authors":["C. Groves","Y. Lin"],"rawDate":"2009-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5616":{"rfcNumber":"RFC5616","href":"https://www.rfc-editor.org/rfc/rfc5616","title":"Streaming Internet Messaging Attachments","authors":["N. Cook"],"rawDate":"2009-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5616","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5617":{"rfcNumber":"RFC5617","href":"https://www.rfc-editor.org/rfc/rfc5617","title":"DomainKeys Identified Mail (DKIM) Author Domain Signing Practices (ADSP)","authors":["E. Allman","J. Fenton","M. Delany","J. Levine"],"rawDate":"2009-08","status":"Historic","updatedBy":["RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5617","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5618":{"rfcNumber":"RFC5618","href":"https://www.rfc-editor.org/rfc/rfc5618","title":"Mixed Security Mode for the Two-Way Active Measurement Protocol (TWAMP)","authors":["A. Morton","K. Hedayat"],"rawDate":"2009-08","status":"Proposed Standard","updates":["RFC5357"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5619":{"rfcNumber":"RFC5619","href":"https://www.rfc-editor.org/rfc/rfc5619","title":"Softwire Security Analysis and Requirements","authors":["S. Yamamoto","C. Williams","H. Yokota","F. Parent"],"rawDate":"2009-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc562":{"aliasOf":"rfc0562"},"rfc5620":{"rfcNumber":"RFC5620","href":"https://www.rfc-editor.org/rfc/rfc5620","title":"RFC Editor Model (Version 1)","authors":["O. Kolkman, Ed.","IAB"],"rawDate":"2009-08","status":"Informational","obsoletedBy":["RFC6548","RFC6635"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5621":{"rfcNumber":"RFC5621","href":"https://www.rfc-editor.org/rfc/rfc5621","title":"Message Body Handling in the Session Initiation Protocol (SIP)","authors":["G. Camarillo"],"rawDate":"2009-09","status":"Proposed Standard","updatedBy":["RFC8262"],"updates":["RFC3204","RFC3261","RFC3459"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5622":{"rfcNumber":"RFC5622","href":"https://www.rfc-editor.org/rfc/rfc5622","title":"Profile for Datagram Congestion Control Protocol (DCCP) Congestion ID 4: TCP-Friendly Rate Control for Small Packets (TFRC-SP)","authors":["S. Floyd","E. Kohler"],"rawDate":"2009-08","status":"Experimental","updatedBy":["RFC6323","RFC8311"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5623":{"rfcNumber":"RFC5623","href":"https://www.rfc-editor.org/rfc/rfc5623","title":"Framework for PCE-Based Inter-Layer MPLS and GMPLS Traffic Engineering","authors":["E. Oki","T. Takeda","JL. Le Roux","A. Farrel"],"rawDate":"2009-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5623","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5624":{"rfcNumber":"RFC5624","href":"https://www.rfc-editor.org/rfc/rfc5624","title":"Quality of Service Parameters for Usage with Diameter","authors":["J. Korhonen, Ed.","H. Tschofenig","E. Davies"],"rawDate":"2009-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5625":{"rfcNumber":"RFC5625","href":"https://www.rfc-editor.org/rfc/rfc5625","title":"DNS Proxy Implementation Guidelines","authors":["R. Bellis"],"rawDate":"2009-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5626":{"rfcNumber":"RFC5626","href":"https://www.rfc-editor.org/rfc/rfc5626","title":"Managing Client-Initiated Connections in the Session Initiation Protocol (SIP)","authors":["C. Jennings, Ed.","R. Mahy, Ed.","F. Audet, Ed."],"rawDate":"2009-10","status":"Proposed Standard","updates":["RFC3261","RFC3327"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5627":{"rfcNumber":"RFC5627","href":"https://www.rfc-editor.org/rfc/rfc5627","title":"Obtaining and Using Globally Routable User Agent URIs (GRUUs) in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2009-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5627","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5628":{"rfcNumber":"RFC5628","href":"https://www.rfc-editor.org/rfc/rfc5628","title":"Registration Event Package Extension for Session Initiation Protocol (SIP) Globally Routable User Agent URIs (GRUUs)","authors":["P. Kyzivat"],"rawDate":"2009-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5628","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5629":{"rfcNumber":"RFC5629","href":"https://www.rfc-editor.org/rfc/rfc5629","title":"A Framework for Application Interaction in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc563":{"aliasOf":"rfc0563"},"rfc5630":{"rfcNumber":"RFC5630","href":"https://www.rfc-editor.org/rfc/rfc5630","title":"The Use of the SIPS URI Scheme in the Session Initiation Protocol (SIP)","authors":["F. Audet"],"rawDate":"2009-10","status":"Proposed Standard","updates":["RFC3261","RFC3608"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5631":{"rfcNumber":"RFC5631","href":"https://www.rfc-editor.org/rfc/rfc5631","title":"Session Initiation Protocol (SIP) Session Mobility","authors":["R. Shacham","H. Schulzrinne","S. Thakolsri","W. Kellerer"],"rawDate":"2009-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5632":{"rfcNumber":"RFC5632","href":"https://www.rfc-editor.org/rfc/rfc5632","title":"Comcast's ISP Experiences in a Proactive Network Provider Participation for P2P (P4P) Technical Trial","authors":["C. Griffiths","J. Livingood","L. Popkin","R. Woundy","Y. Yang"],"rawDate":"2009-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5632","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5633":{"rfcNumber":"RFC5633","href":"https://www.rfc-editor.org/rfc/rfc5633","title":"Nominating Committee Process: Earlier Announcement of Open Positions and Solicitation of Volunteers","authors":["S. Dawkins, Ed."],"rawDate":"2009-08","status":"Best Current Practice","obsoletedBy":["RFC7437"],"updates":["RFC3777"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5634":{"rfcNumber":"RFC5634","href":"https://www.rfc-editor.org/rfc/rfc5634","title":"Quick-Start for the Datagram Congestion Control Protocol (DCCP)","authors":["G. Fairhurst","A. Sathiaseelan"],"rawDate":"2009-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5635":{"rfcNumber":"RFC5635","href":"https://www.rfc-editor.org/rfc/rfc5635","title":"Remote Triggered Black Hole Filtering with Unicast Reverse Path Forwarding (uRPF)","authors":["W. Kumari","D. McPherson"],"rawDate":"2009-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5636":{"rfcNumber":"RFC5636","href":"https://www.rfc-editor.org/rfc/rfc5636","title":"Traceable Anonymous Certificate","authors":["S. Park","H. Park","Y. Won","J. Lee","S. Kent"],"rawDate":"2009-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5636","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5637":{"rfcNumber":"RFC5637","href":"https://www.rfc-editor.org/rfc/rfc5637","title":"Authentication, Authorization, and Accounting (AAA) Goals for Mobile IPv6","authors":["G. Giaretta","I. Guardini","E. Demaria","J. Bournelle","R. Lopez"],"rawDate":"2009-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5638":{"rfcNumber":"RFC5638","href":"https://www.rfc-editor.org/rfc/rfc5638","title":"Simple SIP Usage Scenario for Applications in the Endpoints","authors":["H. Sinnreich, Ed.","A. Johnston","E. Shim","K. Singh"],"rawDate":"2009-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5639":{"rfcNumber":"RFC5639","href":"https://www.rfc-editor.org/rfc/rfc5639","title":"Elliptic Curve Cryptography (ECC) Brainpool Standard Curves and Curve Generation","authors":["M. Lochter","J. Merkle"],"rawDate":"2010-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5639","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5640":{"rfcNumber":"RFC5640","href":"https://www.rfc-editor.org/rfc/rfc5640","title":"Load-Balancing for Mesh Softwires","authors":["C. Filsfils","P. Mohapatra","C. Pignataro"],"rawDate":"2009-08","status":"Proposed Standard","updatedBy":["RFC9012"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5641":{"rfcNumber":"RFC5641","href":"https://www.rfc-editor.org/rfc/rfc5641","title":"Layer 2 Tunneling Protocol Version 3 (L2TPv3) Extended Circuit Status Values","authors":["N. McGill","C. Pignataro"],"rawDate":"2009-08","status":"Proposed Standard","updates":["RFC3931","RFC4349","RFC4454","RFC4591","RFC4719"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5642":{"rfcNumber":"RFC5642","href":"https://www.rfc-editor.org/rfc/rfc5642","title":"Dynamic Hostname Exchange Mechanism for OSPF","authors":["S. Venkata","S. Harwani","C. Pignataro","D. McPherson"],"rawDate":"2009-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5643":{"rfcNumber":"RFC5643","href":"https://www.rfc-editor.org/rfc/rfc5643","title":"Management Information Base for OSPFv3","authors":["D. Joyal, Ed.","V. Manral, Ed."],"rawDate":"2009-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5643","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5644":{"rfcNumber":"RFC5644","href":"https://www.rfc-editor.org/rfc/rfc5644","title":"IP Performance Metrics (IPPM): Spatial and Multicast","authors":["E. Stephan","L. Liang","A. Morton"],"rawDate":"2009-10","status":"Proposed Standard","updatedBy":["RFC6248"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5644","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5645":{"rfcNumber":"RFC5645","href":"https://www.rfc-editor.org/rfc/rfc5645","title":"Update to the Language Subtag Registry","authors":["D. Ewell, Ed."],"rawDate":"2009-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5646":{"rfcNumber":"RFC5646","href":"https://www.rfc-editor.org/rfc/rfc5646","title":"Tags for Identifying Languages","authors":["A. Phillips, Ed.","M. Davis, Ed."],"rawDate":"2009-09","status":"Best Current Practice","obsoletes":["RFC4646"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5646","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5647":{"rfcNumber":"RFC5647","href":"https://www.rfc-editor.org/rfc/rfc5647","title":"AES Galois Counter Mode for the Secure Shell Transport Layer Protocol","authors":["K. Igoe","J. Solinas"],"rawDate":"2009-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5648":{"rfcNumber":"RFC5648","href":"https://www.rfc-editor.org/rfc/rfc5648","title":"Multiple Care-of Addresses Registration","authors":["R. Wakikawa, Ed.","V. Devarapalli","G. Tsirtsis","T. Ernst","K. Nagami"],"rawDate":"2009-10","status":"Proposed Standard","updatedBy":["RFC6089"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5648","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5649":{"rfcNumber":"RFC5649","href":"https://www.rfc-editor.org/rfc/rfc5649","title":"Advanced Encryption Standard (AES) Key Wrap with Padding Algorithm","authors":["R. Housley","M. Dworkin"],"rawDate":"2009-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5649","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc565":{"aliasOf":"rfc0565"},"rfc5650":{"rfcNumber":"RFC5650","href":"https://www.rfc-editor.org/rfc/rfc5650","title":"Definitions of Managed Objects for Very High Speed Digital Subscriber Line 2 (VDSL2)","authors":["M. Morgenstern","S. Baillie","U. Bonollo"],"rawDate":"2009-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5651":{"rfcNumber":"RFC5651","href":"https://www.rfc-editor.org/rfc/rfc5651","title":"Layered Coding Transport (LCT) Building Block","authors":["M. Luby","M. Watson","L. Vicisano"],"rawDate":"2009-10","status":"Proposed Standard","obsoletes":["RFC3451"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5651","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5652":{"rfcNumber":"RFC5652","href":"https://www.rfc-editor.org/rfc/rfc5652","title":"Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2009-09","status":"Internet Standard","updatedBy":["RFC8933"],"obsoletes":["RFC3852"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5652","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5653":{"rfcNumber":"RFC5653","href":"https://www.rfc-editor.org/rfc/rfc5653","title":"Generic Security Service API Version 2: Java Bindings Update","authors":["M. Upadhyay","S. Malkani"],"rawDate":"2009-08","status":"Proposed Standard","obsoletedBy":["RFC8353"],"obsoletes":["RFC2853"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5654":{"rfcNumber":"RFC5654","href":"https://www.rfc-editor.org/rfc/rfc5654","title":"Requirements of an MPLS Transport Profile","authors":["B. Niven-Jenkins, Ed.","D. Brungard, Ed.","M. Betts, Ed.","N. Sprecher","S. Ueno"],"rawDate":"2009-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5654","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5655":{"rfcNumber":"RFC5655","href":"https://www.rfc-editor.org/rfc/rfc5655","title":"Specification of the IP Flow Information Export (IPFIX) File Format","authors":["B. Trammell","E. Boschi","L. Mark","T. Zseby","A. Wagner"],"rawDate":"2009-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5655","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5656":{"rfcNumber":"RFC5656","href":"https://www.rfc-editor.org/rfc/rfc5656","title":"Elliptic Curve Algorithm Integration in the Secure Shell Transport Layer","authors":["D. Stebila","J. Green"],"rawDate":"2009-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5656","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5657":{"rfcNumber":"RFC5657","href":"https://www.rfc-editor.org/rfc/rfc5657","title":"Guidance on Interoperation and Implementation Reports for Advancement to Draft Standard","authors":["L. Dusseault","R. Sparks"],"rawDate":"2009-09","status":"Best Current Practice","updates":["RFC2026"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5657","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5658":{"rfcNumber":"RFC5658","href":"https://www.rfc-editor.org/rfc/rfc5658","title":"Addressing Record-Route Issues in the Session Initiation Protocol (SIP)","authors":["T. Froment","C. Lebel","B. Bonnaerens"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5659":{"rfcNumber":"RFC5659","href":"https://www.rfc-editor.org/rfc/rfc5659","title":"An Architecture for Multi-Segment Pseudowire Emulation Edge-to-Edge","authors":["M. Bocci","S. Bryant"],"rawDate":"2009-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5659","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc566":{"aliasOf":"rfc0566"},"rfc5660":{"rfcNumber":"RFC5660","href":"https://www.rfc-editor.org/rfc/rfc5660","title":"IPsec Channels: Connection Latching","authors":["N. Williams"],"rawDate":"2009-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5660","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5661":{"rfcNumber":"RFC5661","href":"https://www.rfc-editor.org/rfc/rfc5661","title":"Network File System (NFS) Version 4 Minor Version 1 Protocol","authors":["S. Shepler, Ed.","M. Eisler, Ed.","D. Noveck, Ed."],"rawDate":"2010-01","status":"Proposed Standard","updatedBy":["RFC8178","RFC8434"],"obsoletedBy":["RFC8881"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5661","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5662":{"rfcNumber":"RFC5662","href":"https://www.rfc-editor.org/rfc/rfc5662","title":"Network File System (NFS) Version 4 Minor Version 1 External Data Representation Standard (XDR) Description","authors":["S. Shepler, Ed.","M. Eisler, Ed.","D. Noveck, Ed."],"rawDate":"2010-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5662","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5663":{"rfcNumber":"RFC5663","href":"https://www.rfc-editor.org/rfc/rfc5663","title":"Parallel NFS (pNFS) Block/Volume Layout","authors":["D. Black","S. Fridella","J. Glasgow"],"rawDate":"2010-01","status":"Proposed Standard","updatedBy":["RFC6688"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5663","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5664":{"rfcNumber":"RFC5664","href":"https://www.rfc-editor.org/rfc/rfc5664","title":"Object-Based Parallel NFS (pNFS) Operations","authors":["B. Halevy","B. Welch","J. Zelenka"],"rawDate":"2010-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5664","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5665":{"rfcNumber":"RFC5665","href":"https://www.rfc-editor.org/rfc/rfc5665","title":"IANA Considerations for Remote Procedure Call (RPC) Network Identifiers and Universal Address Formats","authors":["M. Eisler"],"rawDate":"2010-01","status":"Proposed Standard","updates":["RFC1833"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5665","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5666":{"rfcNumber":"RFC5666","href":"https://www.rfc-editor.org/rfc/rfc5666","title":"Remote Direct Memory Access Transport for Remote Procedure Call","authors":["T. Talpey","B. Callaghan"],"rawDate":"2010-01","status":"Proposed Standard","obsoletedBy":["RFC8166"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5667":{"rfcNumber":"RFC5667","href":"https://www.rfc-editor.org/rfc/rfc5667","title":"Network File System (NFS) Direct Data Placement","authors":["T. Talpey","B. Callaghan"],"rawDate":"2010-01","status":"Proposed Standard","obsoletedBy":["RFC8267"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5668":{"rfcNumber":"RFC5668","href":"https://www.rfc-editor.org/rfc/rfc5668","title":"4-Octet AS Specific BGP Extended Community","authors":["Y. Rekhter","S. Sangli","D. Tappan"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5669":{"rfcNumber":"RFC5669","href":"https://www.rfc-editor.org/rfc/rfc5669","title":"The SEED Cipher Algorithm and Its Use with the Secure Real-Time Transport Protocol (SRTP)","authors":["S. Yoon","J. Kim","H. Park","H. Jeong","Y. Won"],"rawDate":"2010-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc567":{"aliasOf":"rfc0567"},"rfc5670":{"rfcNumber":"RFC5670","href":"https://www.rfc-editor.org/rfc/rfc5670","title":"Metering and Marking Behaviour of PCN-Nodes","authors":["P. Eardley, Ed."],"rawDate":"2009-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5670","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5671":{"rfcNumber":"RFC5671","href":"https://www.rfc-editor.org/rfc/rfc5671","title":"Applicability of the Path Computation Element (PCE) to Point-to-Multipoint (P2MP) MPLS and GMPLS Traffic Engineering (TE)","authors":["S. Yasukawa","A. Farrel, Ed."],"rawDate":"2009-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5672":{"rfcNumber":"RFC5672","href":"https://www.rfc-editor.org/rfc/rfc5672","title":"RFC 4871 DomainKeys Identified Mail (DKIM) Signatures -- Update","authors":["D. Crocker, Ed."],"rawDate":"2009-08","status":"Proposed Standard","obsoletedBy":["RFC6376"],"updates":["RFC4871"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5673":{"rfcNumber":"RFC5673","href":"https://www.rfc-editor.org/rfc/rfc5673","title":"Industrial Routing Requirements in Low-Power and Lossy Networks","authors":["K. Pister, Ed.","P. Thubert, Ed.","S. Dwars","T. Phinney"],"rawDate":"2009-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5674":{"rfcNumber":"RFC5674","href":"https://www.rfc-editor.org/rfc/rfc5674","title":"Alarms in Syslog","authors":["S. Chisholm","R. Gerhards"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5675":{"rfcNumber":"RFC5675","href":"https://www.rfc-editor.org/rfc/rfc5675","title":"Mapping Simple Network Management Protocol (SNMP) Notifications to SYSLOG Messages","authors":["V. Marinov","J. Schoenwaelder"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5676":{"rfcNumber":"RFC5676","href":"https://www.rfc-editor.org/rfc/rfc5676","title":"Definitions of Managed Objects for Mapping SYSLOG Messages to Simple Network Management Protocol (SNMP) Notifications","authors":["J. Schoenwaelder","A. Clemm","A. Karmakar"],"rawDate":"2009-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5676","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5677":{"rfcNumber":"RFC5677","href":"https://www.rfc-editor.org/rfc/rfc5677","title":"IEEE 802.21 Mobility Services Framework Design (MSFD)","authors":["T. Melia, Ed.","G. Bajko","S. Das","N. Golmie","JC. Zuniga"],"rawDate":"2009-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5677","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5678":{"rfcNumber":"RFC5678","href":"https://www.rfc-editor.org/rfc/rfc5678","title":"Dynamic Host Configuration Protocol (DHCPv4 and DHCPv6) Options for IEEE 802.21 Mobility Services (MoS) Discovery","authors":["G. Bajko","S. Das"],"rawDate":"2009-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5679":{"rfcNumber":"RFC5679","href":"https://www.rfc-editor.org/rfc/rfc5679","title":"Locating IEEE 802.21 Mobility Services Using DNS","authors":["G. Bajko"],"rawDate":"2009-12","status":"Proposed Standard","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc568":{"aliasOf":"rfc0568"},"rfc5680":{"rfcNumber":"RFC5680","href":"https://www.rfc-editor.org/rfc/rfc5680","title":"The Nominating Committee Process: Open Disclosure of Willing Nominees","authors":["S. Dawkins, Ed."],"rawDate":"2009-10","status":"Best Current Practice","obsoletedBy":["RFC7437"],"updates":["RFC3777"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5681":{"rfcNumber":"RFC5681","href":"https://www.rfc-editor.org/rfc/rfc5681","title":"TCP Congestion Control","authors":["M. Allman","V. Paxson","E. Blanton"],"rawDate":"2009-09","status":"Draft Standard","updatedBy":["RFC9438"],"obsoletes":["RFC2581"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5681","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5682":{"rfcNumber":"RFC5682","href":"https://www.rfc-editor.org/rfc/rfc5682","title":"Forward RTO-Recovery (F-RTO): An Algorithm for Detecting Spurious Retransmission Timeouts with TCP","authors":["P. Sarolahti","M. Kojo","K. Yamamoto","M. Hata"],"rawDate":"2009-09","status":"Proposed Standard","updates":["RFC4138"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5683":{"rfcNumber":"RFC5683","href":"https://www.rfc-editor.org/rfc/rfc5683","title":"Password-Authenticated Key (PAK) Diffie-Hellman Exchange","authors":["A. Brusilovsky","I. Faynberg","Z. Zeltsan","S. Patel"],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5683","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5684":{"rfcNumber":"RFC5684","href":"https://www.rfc-editor.org/rfc/rfc5684","title":"Unintended Consequences of NAT Deployments with Overlapping Address Space","authors":["P. Srisuresh","B. Ford"],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5684","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5685":{"rfcNumber":"RFC5685","href":"https://www.rfc-editor.org/rfc/rfc5685","title":"Redirect Mechanism for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["V. Devarapalli","K. Weniger"],"rawDate":"2009-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5686":{"rfcNumber":"RFC5686","href":"https://www.rfc-editor.org/rfc/rfc5686","title":"RTP Payload Format for mU-law EMbedded Codec for Low-delay IP Communication (UEMCLIP) Speech Codec","authors":["Y. Hiwasaki","H. Ohmuro"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5687":{"rfcNumber":"RFC5687","href":"https://www.rfc-editor.org/rfc/rfc5687","title":"GEOPRIV Layer 7 Location Configuration Protocol: Problem Statement and Requirements","authors":["H. Tschofenig","H. Schulzrinne"],"rawDate":"2010-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5688":{"rfcNumber":"RFC5688","href":"https://www.rfc-editor.org/rfc/rfc5688","title":"A Session Initiation Protocol (SIP) Media Feature Tag for MIME Application Subtypes","authors":["J. Rosenberg"],"rawDate":"2010-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5688","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5689":{"rfcNumber":"RFC5689","href":"https://www.rfc-editor.org/rfc/rfc5689","title":"Extended MKCOL for Web Distributed Authoring and Versioning (WebDAV)","authors":["C. Daboo"],"rawDate":"2009-09","status":"Proposed Standard","updates":["RFC4791","RFC4918"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc569":{"aliasOf":"rfc0569"},"rfc5690":{"rfcNumber":"RFC5690","href":"https://www.rfc-editor.org/rfc/rfc5690","title":"Adding Acknowledgement Congestion Control to TCP","authors":["S. Floyd","A. Arcia","D. Ros","J. Iyengar"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5691":{"rfcNumber":"RFC5691","href":"https://www.rfc-editor.org/rfc/rfc5691","title":"RTP Payload Format for Elementary Streams with MPEG Surround Multi-Channel Audio","authors":["F. de Bont","S. Doehla","M. Schmidt","R. Sperschneider"],"rawDate":"2009-10","status":"Proposed Standard","updates":["RFC3640"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5692":{"rfcNumber":"RFC5692","href":"https://www.rfc-editor.org/rfc/rfc5692","title":"Transmission of IP over Ethernet over IEEE 802.16 Networks","authors":["H. Jeon","S. Jeong","M. Riegel"],"rawDate":"2009-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5693":{"rfcNumber":"RFC5693","href":"https://www.rfc-editor.org/rfc/rfc5693","title":"Application-Layer Traffic Optimization (ALTO) Problem Statement","authors":["J. Seedorf","E. Burger"],"rawDate":"2009-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5694":{"rfcNumber":"RFC5694","href":"https://www.rfc-editor.org/rfc/rfc5694","title":"Peer-to-Peer (P2P) Architecture: Definition, Taxonomies, Examples, and Applicability","authors":["G. Camarillo, Ed.","IAB"],"rawDate":"2009-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5694","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5695":{"rfcNumber":"RFC5695","href":"https://www.rfc-editor.org/rfc/rfc5695","title":"MPLS Forwarding Benchmarking Methodology for IP Flows","authors":["A. Akhter","R. Asati","C. Pignataro"],"rawDate":"2009-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5695","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5696":{"rfcNumber":"RFC5696","href":"https://www.rfc-editor.org/rfc/rfc5696","title":"Baseline Encoding and Transport of Pre-Congestion Information","authors":["T. Moncaster","B. Briscoe","M. Menth"],"rawDate":"2009-11","status":"Proposed Standard","obsoletedBy":["RFC6660"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5696","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5697":{"rfcNumber":"RFC5697","href":"https://www.rfc-editor.org/rfc/rfc5697","title":"Other Certificates Extension","authors":["S. Farrell"],"rawDate":"2009-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5698":{"rfcNumber":"RFC5698","href":"https://www.rfc-editor.org/rfc/rfc5698","title":"Data Structure for the Security Suitability of Cryptographic Algorithms (DSSC)","authors":["T. Kunz","S. Okunick","U. Pordesch"],"rawDate":"2009-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5698","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc57":{"aliasOf":"rfc0057"},"rfc570":{"aliasOf":"rfc0570"},"rfc5701":{"rfcNumber":"RFC5701","href":"https://www.rfc-editor.org/rfc/rfc5701","title":"IPv6 Address Specific BGP Extended Community Attribute","authors":["Y. Rekhter"],"rawDate":"2009-11","status":"Proposed Standard","updatedBy":["RFC7153","RFC7606"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5702":{"rfcNumber":"RFC5702","href":"https://www.rfc-editor.org/rfc/rfc5702","title":"Use of SHA-2 Algorithms with RSA in DNSKEY and RRSIG Resource Records for DNSSEC","authors":["J. Jansen"],"rawDate":"2009-10","status":"Proposed Standard","updatedBy":["RFC6944"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5702","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5703":{"rfcNumber":"RFC5703","href":"https://www.rfc-editor.org/rfc/rfc5703","title":"Sieve Email Filtering: MIME Part Tests, Iteration, Extraction, Replacement, and Enclosure","authors":["T. Hansen","C. Daboo"],"rawDate":"2009-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5703","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5704":{"rfcNumber":"RFC5704","href":"https://www.rfc-editor.org/rfc/rfc5704","title":"Uncoordinated Protocol Development Considered Harmful","authors":["S. Bryant, Ed.","M. Morrow, Ed.","IAB"],"rawDate":"2009-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5705":{"rfcNumber":"RFC5705","href":"https://www.rfc-editor.org/rfc/rfc5705","title":"Keying Material Exporters for Transport Layer Security (TLS)","authors":["E. Rescorla"],"rawDate":"2010-03","status":"Proposed Standard","updatedBy":["RFC8446","RFC8447"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5705","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5706":{"rfcNumber":"RFC5706","href":"https://www.rfc-editor.org/rfc/rfc5706","title":"Guidelines for Considering Operations and Management of New Protocols and Protocol Extensions","authors":["D. Harrington"],"rawDate":"2009-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5707":{"rfcNumber":"RFC5707","href":"https://www.rfc-editor.org/rfc/rfc5707","title":"Media Server Markup Language (MSML)","authors":["A. Saleem","Y. Xin","G. Sharratt"],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5707","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5708":{"rfcNumber":"RFC5708","href":"https://www.rfc-editor.org/rfc/rfc5708","title":"X.509 Key and Signature Encoding for the KeyNote Trust Management System","authors":["A. Keromytis"],"rawDate":"2010-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5708","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5709":{"rfcNumber":"RFC5709","href":"https://www.rfc-editor.org/rfc/rfc5709","title":"OSPFv2 HMAC-SHA Cryptographic Authentication","authors":["M. Bhatia","V. Manral","M. Fanto","R. White","M. Barnes","T. Li","R. Atkinson"],"rawDate":"2009-10","status":"Proposed Standard","updatedBy":["RFC7474"],"updates":["RFC2328"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5709","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc571":{"aliasOf":"rfc0571"},"rfc5710":{"rfcNumber":"RFC5710","href":"https://www.rfc-editor.org/rfc/rfc5710","title":"PathErr Message Triggered MPLS and GMPLS LSP Reroutes","authors":["L. Berger","D. Papadimitriou","JP. Vasseur"],"rawDate":"2010-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5711":{"rfcNumber":"RFC5711","href":"https://www.rfc-editor.org/rfc/rfc5711","title":"Node Behavior upon Originating and Receiving Resource Reservation Protocol (RSVP) Path Error Messages","authors":["JP. Vasseur, Ed.","G. Swallow","I. Minei"],"rawDate":"2010-01","status":"Proposed Standard","updates":["RFC3209"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5712":{"rfcNumber":"RFC5712","href":"https://www.rfc-editor.org/rfc/rfc5712","title":"MPLS Traffic Engineering Soft Preemption","authors":["M. Meyer, Ed.","JP. Vasseur, Ed."],"rawDate":"2010-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5713":{"rfcNumber":"RFC5713","href":"https://www.rfc-editor.org/rfc/rfc5713","title":"Security Threats and Security Requirements for the Access Node Control Protocol (ANCP)","authors":["H. Moustafa","H. Tschofenig","S. De Cnodder"],"rawDate":"2010-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5714":{"rfcNumber":"RFC5714","href":"https://www.rfc-editor.org/rfc/rfc5714","title":"IP Fast Reroute Framework","authors":["M. Shand","S. Bryant"],"rawDate":"2010-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5715":{"rfcNumber":"RFC5715","href":"https://www.rfc-editor.org/rfc/rfc5715","title":"A Framework for Loop-Free Convergence","authors":["M. Shand","S. Bryant"],"rawDate":"2010-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5716":{"rfcNumber":"RFC5716","href":"https://www.rfc-editor.org/rfc/rfc5716","title":"Requirements for Federated File Systems","authors":["J. Lentini","C. Everhart","D. Ellard","R. Tewari","M. Naik"],"rawDate":"2010-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5717":{"rfcNumber":"RFC5717","href":"https://www.rfc-editor.org/rfc/rfc5717","title":"Partial Lock Remote Procedure Call (RPC) for NETCONF","authors":["B. Lengyel","M. Bjorklund"],"rawDate":"2009-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5717","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5718":{"rfcNumber":"RFC5718","href":"https://www.rfc-editor.org/rfc/rfc5718","title":"An In-Band Data Communication Network For the MPLS Transport Profile","authors":["D. Beller","A. Farrel"],"rawDate":"2010-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5719":{"rfcNumber":"RFC5719","href":"https://www.rfc-editor.org/rfc/rfc5719","title":"Updated IANA Considerations for Diameter Command Code Allocations","authors":["D. Romascanu","H. Tschofenig"],"rawDate":"2010-01","status":"Proposed Standard","obsoletedBy":["RFC6733"],"updates":["RFC3588"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5720":{"rfcNumber":"RFC5720","href":"https://www.rfc-editor.org/rfc/rfc5720","title":"Routing and Addressing in Networks with Global Enterprise Recursion (RANGER)","authors":["F. Templin"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5721":{"rfcNumber":"RFC5721","href":"https://www.rfc-editor.org/rfc/rfc5721","title":"POP3 Support for UTF-8","authors":["R. Gellens","C. Newman"],"rawDate":"2010-02","status":"Experimental","obsoletedBy":["RFC6856"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5722":{"rfcNumber":"RFC5722","href":"https://www.rfc-editor.org/rfc/rfc5722","title":"Handling of Overlapping IPv6 Fragments","authors":["S. Krishnan"],"rawDate":"2009-12","status":"Proposed Standard","updatedBy":["RFC6946"],"updates":["RFC2460"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5722","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5723":{"rfcNumber":"RFC5723","href":"https://www.rfc-editor.org/rfc/rfc5723","title":"Internet Key Exchange Protocol Version 2 (IKEv2) Session Resumption","authors":["Y. Sheffer","H. Tschofenig"],"rawDate":"2010-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5724":{"rfcNumber":"RFC5724","href":"https://www.rfc-editor.org/rfc/rfc5724","title":"URI Scheme for Global System for Mobile Communications (GSM) Short Message Service (SMS)","authors":["E. Wilde","A. Vaha-Sipila"],"rawDate":"2010-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5724","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5725":{"rfcNumber":"RFC5725","href":"https://www.rfc-editor.org/rfc/rfc5725","title":"Post-Repair Loss RLE Report Block Type for RTP Control Protocol (RTCP) Extended Reports (XRs)","authors":["A. Begen","D. Hsu","M. Lague"],"rawDate":"2010-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5725","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5726":{"rfcNumber":"RFC5726","href":"https://www.rfc-editor.org/rfc/rfc5726","title":"Mobile IPv6 Location Privacy Solutions","authors":["Y. Qiu","F. Zhao, Ed.","R. Koodli"],"rawDate":"2010-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5727":{"rfcNumber":"RFC5727","href":"https://www.rfc-editor.org/rfc/rfc5727","title":"Change Process for the Session Initiation Protocol (SIP) and the Real-time Applications and Infrastructure Area","authors":["J. Peterson","C. Jennings","R. Sparks"],"rawDate":"2010-03","status":"Best Current Practice","updatedBy":["RFC7957"],"updates":["RFC3265","RFC3969"],"obsoletes":["RFC3427"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5727","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5728":{"rfcNumber":"RFC5728","href":"https://www.rfc-editor.org/rfc/rfc5728","title":"The SatLabs Group DVB-RCS MIB","authors":["S. Combes","P. Amundsen","M. Lambert","H-P. Lexow"],"rawDate":"2010-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5728","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5729":{"rfcNumber":"RFC5729","href":"https://www.rfc-editor.org/rfc/rfc5729","title":"Clarifications on the Routing of Diameter Requests Based on the Username and the Realm","authors":["J. Korhonen, Ed.","M. Jones","L. Morand","T. Tsou"],"rawDate":"2009-12","status":"Proposed Standard","updates":["RFC3588"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc573":{"aliasOf":"rfc0573"},"rfc5730":{"rfcNumber":"RFC5730","href":"https://www.rfc-editor.org/rfc/rfc5730","title":"Extensible Provisioning Protocol (EPP)","authors":["S. Hollenbeck"],"rawDate":"2009-08","status":"Internet Standard","obsoletes":["RFC4930"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5730","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5731":{"rfcNumber":"RFC5731","href":"https://www.rfc-editor.org/rfc/rfc5731","title":"Extensible Provisioning Protocol (EPP) Domain Name Mapping","authors":["S. Hollenbeck"],"rawDate":"2009-08","status":"Internet Standard","obsoletes":["RFC4931"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5731","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5732":{"rfcNumber":"RFC5732","href":"https://www.rfc-editor.org/rfc/rfc5732","title":"Extensible Provisioning Protocol (EPP) Host Mapping","authors":["S. Hollenbeck"],"rawDate":"2009-08","status":"Internet Standard","obsoletes":["RFC4932"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5733":{"rfcNumber":"RFC5733","href":"https://www.rfc-editor.org/rfc/rfc5733","title":"Extensible Provisioning Protocol (EPP) Contact Mapping","authors":["S. Hollenbeck"],"rawDate":"2009-08","status":"Internet Standard","obsoletes":["RFC4933"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5734":{"rfcNumber":"RFC5734","href":"https://www.rfc-editor.org/rfc/rfc5734","title":"Extensible Provisioning Protocol (EPP) Transport over TCP","authors":["S. Hollenbeck"],"rawDate":"2009-08","status":"Internet Standard","updatedBy":["RFC8996"],"obsoletes":["RFC4934"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5734","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5735":{"rfcNumber":"RFC5735","href":"https://www.rfc-editor.org/rfc/rfc5735","title":"Special Use IPv4 Addresses","authors":["M. Cotton","L. Vegoda"],"rawDate":"2010-01","status":"Best Current Practice","updatedBy":["RFC6598"],"obsoletedBy":["RFC6890"],"obsoletes":["RFC3330"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5735","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5736":{"rfcNumber":"RFC5736","href":"https://www.rfc-editor.org/rfc/rfc5736","title":"IANA IPv4 Special Purpose Address Registry","authors":["G. Huston","M. Cotton","L. Vegoda"],"rawDate":"2010-01","status":"Informational","obsoletedBy":["RFC6890"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5737":{"rfcNumber":"RFC5737","href":"https://www.rfc-editor.org/rfc/rfc5737","title":"IPv4 Address Blocks Reserved for Documentation","authors":["J. Arkko","M. Cotton","L. Vegoda"],"rawDate":"2010-01","status":"Informational","updates":["RFC1166"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5738":{"rfcNumber":"RFC5738","href":"https://www.rfc-editor.org/rfc/rfc5738","title":"IMAP Support for UTF-8","authors":["P. Resnick","C. Newman"],"rawDate":"2010-03","status":"Experimental","obsoletedBy":["RFC6855"],"updates":["RFC3501"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5738","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5739":{"rfcNumber":"RFC5739","href":"https://www.rfc-editor.org/rfc/rfc5739","title":"IPv6 Configuration in Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["P. Eronen","J. Laganier","C. Madson"],"rawDate":"2010-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5739","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc574":{"aliasOf":"rfc0574"},"rfc5740":{"rfcNumber":"RFC5740","href":"https://www.rfc-editor.org/rfc/rfc5740","title":"NACK-Oriented Reliable Multicast (NORM) Transport Protocol","authors":["B. Adamson","C. Bormann","M. Handley","J. Macker"],"rawDate":"2009-11","status":"Proposed Standard","obsoletes":["RFC3940"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5740","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5741":{"rfcNumber":"RFC5741","href":"https://www.rfc-editor.org/rfc/rfc5741","title":"RFC Streams, Headers, and Boilerplates","authors":["L. Daigle, Ed.","O. Kolkman, Ed.","IAB"],"rawDate":"2009-12","status":"Informational","obsoletedBy":["RFC7841"],"updates":["RFC2223","RFC4844"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5741","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5742":{"rfcNumber":"RFC5742","href":"https://www.rfc-editor.org/rfc/rfc5742","title":"IESG Procedures for Handling of Independent and IRTF Stream Submissions","authors":["H. Alvestrand","R. Housley"],"rawDate":"2009-12","status":"Best Current Practice","updates":["RFC2026","RFC3710"],"obsoletes":["RFC3932"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5743":{"rfcNumber":"RFC5743","href":"https://www.rfc-editor.org/rfc/rfc5743","title":"Definition of an Internet Research Task Force (IRTF) Document Stream","authors":["A. Falk"],"rawDate":"2009-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5744":{"rfcNumber":"RFC5744","href":"https://www.rfc-editor.org/rfc/rfc5744","title":"Procedures for Rights Handling in the RFC Independent Submission Stream","authors":["R. Braden","J. Halpern"],"rawDate":"2009-12","status":"Informational","updates":["RFC4846"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5745":{"rfcNumber":"RFC5745","href":"https://www.rfc-editor.org/rfc/rfc5745","title":"Procedures for Rights Handling in the RFC IAB Stream","authors":["A. Malis, Ed.","IAB"],"rawDate":"2009-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5746":{"rfcNumber":"RFC5746","href":"https://www.rfc-editor.org/rfc/rfc5746","title":"Transport Layer Security (TLS) Renegotiation Indication Extension","authors":["E. Rescorla","M. Ray","S. Dispensa","N. Oskov"],"rawDate":"2010-02","status":"Proposed Standard","updates":["RFC5246","RFC4366","RFC4347","RFC4346","RFC2246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5747":{"rfcNumber":"RFC5747","href":"https://www.rfc-editor.org/rfc/rfc5747","title":"4over6 Transit Solution Using IP Encapsulation and MP-BGP Extensions","authors":["J. Wu","Y. Cui","X. Li","M. Xu","C. Metz"],"rawDate":"2010-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5748":{"rfcNumber":"RFC5748","href":"https://www.rfc-editor.org/rfc/rfc5748","title":"IANA Registry Update for Support of the SEED Cipher Algorithm in Multimedia Internet KEYing (MIKEY)","authors":["S. Yoon","J. Jeong","H. Kim","H. Jeong","Y. Won"],"rawDate":"2010-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5748","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5749":{"rfcNumber":"RFC5749","href":"https://www.rfc-editor.org/rfc/rfc5749","title":"Distribution of EAP-Based Keys for Handover and Re-Authentication","authors":["K. Hoeper, Ed.","M. Nakhjiri","Y. Ohba, Ed."],"rawDate":"2010-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5749","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5750":{"rfcNumber":"RFC5750","href":"https://www.rfc-editor.org/rfc/rfc5750","title":"Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.2 Certificate Handling","authors":["B. Ramsdell","S. Turner"],"rawDate":"2010-01","status":"Proposed Standard","obsoletedBy":["RFC8550"],"obsoletes":["RFC3850"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5751":{"rfcNumber":"RFC5751","href":"https://www.rfc-editor.org/rfc/rfc5751","title":"Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 3.2 Message Specification","authors":["B. Ramsdell","S. Turner"],"rawDate":"2010-01","status":"Proposed Standard","obsoletedBy":["RFC8551"],"obsoletes":["RFC3851"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5751","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5752":{"rfcNumber":"RFC5752","href":"https://www.rfc-editor.org/rfc/rfc5752","title":"Multiple Signatures in Cryptographic Message Syntax (CMS)","authors":["S. Turner","J. Schaad"],"rawDate":"2010-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5752","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5753":{"rfcNumber":"RFC5753","href":"https://www.rfc-editor.org/rfc/rfc5753","title":"Use of Elliptic Curve Cryptography (ECC) Algorithms in Cryptographic Message Syntax (CMS)","authors":["S. Turner","D. Brown"],"rawDate":"2010-01","status":"Informational","obsoletes":["RFC3278"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5753","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5754":{"rfcNumber":"RFC5754","href":"https://www.rfc-editor.org/rfc/rfc5754","title":"Using SHA2 Algorithms with Cryptographic Message Syntax","authors":["S. Turner"],"rawDate":"2010-01","status":"Proposed Standard","updates":["RFC3370"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5754","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5755":{"rfcNumber":"RFC5755","href":"https://www.rfc-editor.org/rfc/rfc5755","title":"An Internet Attribute Certificate Profile for Authorization","authors":["S. Farrell","R. Housley","S. Turner"],"rawDate":"2010-01","status":"Proposed Standard","obsoletes":["RFC3281"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5755","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5756":{"rfcNumber":"RFC5756","href":"https://www.rfc-editor.org/rfc/rfc5756","title":"Updates for RSAES-OAEP and RSASSA-PSS Algorithm Parameters","authors":["S. Turner","D. Brown","K. Yiu","R. Housley","T. Polk"],"rawDate":"2010-01","status":"Proposed Standard","updates":["RFC4055"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5756","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5757":{"rfcNumber":"RFC5757","href":"https://www.rfc-editor.org/rfc/rfc5757","title":"Multicast Mobility in Mobile IP Version 6 (MIPv6): Problem Statement and Brief Survey","authors":["T. Schmidt","M. Waehlisch","G. Fairhurst"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5758":{"rfcNumber":"RFC5758","href":"https://www.rfc-editor.org/rfc/rfc5758","title":"Internet X.509 Public Key Infrastructure: Additional Algorithms and Identifiers for DSA and ECDSA","authors":["Q. Dang","S. Santesson","K. Moriarty","D. Brown","T. Polk"],"rawDate":"2010-01","status":"Proposed Standard","updates":["RFC3279"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5758","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5759":{"rfcNumber":"RFC5759","href":"https://www.rfc-editor.org/rfc/rfc5759","title":"Suite B Certificate and Certificate Revocation List (CRL) Profile","authors":["J. Solinas","L. Zieglar"],"rawDate":"2010-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc576":{"aliasOf":"rfc0576"},"rfc5760":{"rfcNumber":"RFC5760","href":"https://www.rfc-editor.org/rfc/rfc5760","title":"RTP Control Protocol (RTCP) Extensions for Single-Source Multicast Sessions with Unicast Feedback","authors":["J. Ott","J. Chesterfield","E. Schooler"],"rawDate":"2010-02","status":"Proposed Standard","updatedBy":["RFC6128"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5760","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5761":{"rfcNumber":"RFC5761","href":"https://www.rfc-editor.org/rfc/rfc5761","title":"Multiplexing RTP Data and Control Packets on a Single Port","authors":["C. Perkins","M. Westerlund"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC8035","RFC8858"],"updates":["RFC3550","RFC3551"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5761","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5762":{"rfcNumber":"RFC5762","href":"https://www.rfc-editor.org/rfc/rfc5762","title":"RTP and the Datagram Congestion Control Protocol (DCCP)","authors":["C. Perkins"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC6773"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5763":{"rfcNumber":"RFC5763","href":"https://www.rfc-editor.org/rfc/rfc5763","title":"Framework for Establishing a Secure Real-time Transport Protocol (SRTP) Security Context Using Datagram Transport Layer Security (DTLS)","authors":["J. Fischl","H. Tschofenig","E. Rescorla"],"rawDate":"2010-05","status":"Proposed Standard","updatedBy":["RFC8842"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5763","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5764":{"rfcNumber":"RFC5764","href":"https://www.rfc-editor.org/rfc/rfc5764","title":"Datagram Transport Layer Security (DTLS) Extension to Establish Keys for the Secure Real-time Transport Protocol (SRTP)","authors":["D. McGrew","E. Rescorla"],"rawDate":"2010-05","status":"Proposed Standard","updatedBy":["RFC7983","RFC9443"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5764","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5765":{"rfcNumber":"RFC5765","href":"https://www.rfc-editor.org/rfc/rfc5765","title":"Security Issues and Solutions in Peer-to-Peer Systems for Realtime Communications","authors":["H. Schulzrinne","E. Marocco","E. Ivov"],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5765","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5766":{"rfcNumber":"RFC5766","href":"https://www.rfc-editor.org/rfc/rfc5766","title":"Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)","authors":["R. Mahy","P. Matthews","J. Rosenberg"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC8155","RFC8553"],"obsoletedBy":["RFC8656"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5766","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5767":{"rfcNumber":"RFC5767","href":"https://www.rfc-editor.org/rfc/rfc5767","title":"User-Agent-Driven Privacy Mechanism for SIP","authors":["M. Munakata","S. Schubert","T. Ohba"],"rawDate":"2010-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5768":{"rfcNumber":"RFC5768","href":"https://www.rfc-editor.org/rfc/rfc5768","title":"Indicating Support for Interactive Connectivity Establishment (ICE) in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2010-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5769":{"rfcNumber":"RFC5769","href":"https://www.rfc-editor.org/rfc/rfc5769","title":"Test Vectors for Session Traversal Utilities for NAT (STUN)","authors":["R. Denis-Courmont"],"rawDate":"2010-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5769","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc577":{"aliasOf":"rfc0577"},"rfc5770":{"rfcNumber":"RFC5770","href":"https://www.rfc-editor.org/rfc/rfc5770","title":"Basic Host Identity Protocol (HIP) Extensions for Traversal of Network Address Translators","authors":["M. Komu","T. Henderson","H. Tschofenig","J. Melen","A. Keranen, Ed."],"rawDate":"2010-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5771":{"rfcNumber":"RFC5771","href":"https://www.rfc-editor.org/rfc/rfc5771","title":"IANA Guidelines for IPv4 Multicast Address Assignments","authors":["M. Cotton","L. Vegoda","D. Meyer"],"rawDate":"2010-03","status":"Best Current Practice","updates":["RFC2780"],"obsoletes":["RFC3138","RFC3171"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5771","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5772":{"rfcNumber":"RFC5772","href":"https://www.rfc-editor.org/rfc/rfc5772","title":"A Set of Possible Requirements for a Future Routing Architecture","authors":["A. Doria","E. Davies","F. Kastenholz"],"rawDate":"2010-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5773":{"rfcNumber":"RFC5773","href":"https://www.rfc-editor.org/rfc/rfc5773","title":"Analysis of Inter-Domain Routing Requirements and History","authors":["E. Davies","A. Doria"],"rawDate":"2010-02","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5773","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5774":{"rfcNumber":"RFC5774","href":"https://www.rfc-editor.org/rfc/rfc5774","title":"Considerations for Civic Addresses in the Presence Information Data Format Location Object (PIDF-LO): Guidelines and IANA Registry Definition","authors":["K. Wolf","A. Mayrhofer"],"rawDate":"2010-03","status":"Best Current Practice","updates":["RFC4776"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5774","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5775":{"rfcNumber":"RFC5775","href":"https://www.rfc-editor.org/rfc/rfc5775","title":"Asynchronous Layered Coding (ALC) Protocol Instantiation","authors":["M. Luby","M. Watson","L. Vicisano"],"rawDate":"2010-04","status":"Proposed Standard","obsoletes":["RFC3450"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5776":{"rfcNumber":"RFC5776","href":"https://www.rfc-editor.org/rfc/rfc5776","title":"Use of Timed Efficient Stream Loss-Tolerant Authentication (TESLA) in the Asynchronous Layered Coding (ALC) and NACK-Oriented Reliable Multicast (NORM) Protocols","authors":["V. Roca","A. Francillon","S. Faurite"],"rawDate":"2010-04","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5776","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5777":{"rfcNumber":"RFC5777","href":"https://www.rfc-editor.org/rfc/rfc5777","title":"Traffic Classification and Quality of Service (QoS) Attributes for Diameter","authors":["J. Korhonen","H. Tschofenig","M. Arumaithurai","M. Jones, Ed.","A. Lior"],"rawDate":"2010-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5777","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5778":{"rfcNumber":"RFC5778","href":"https://www.rfc-editor.org/rfc/rfc5778","title":"Diameter Mobile IPv6: Support for Home Agent to Diameter Server Interaction","authors":["J. Korhonen, Ed.","H. Tschofenig","J. Bournelle","G. Giaretta","M. Nakhjiri"],"rawDate":"2010-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5778","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5779":{"rfcNumber":"RFC5779","href":"https://www.rfc-editor.org/rfc/rfc5779","title":"Diameter Proxy Mobile IPv6: Mobile Access Gateway and Local Mobility Anchor Interaction with Diameter Server","authors":["J. Korhonen, Ed.","J. Bournelle","K. Chowdhury","A. Muhanna","U. Meyer"],"rawDate":"2010-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc578":{"aliasOf":"rfc0578"},"rfc5780":{"rfcNumber":"RFC5780","href":"https://www.rfc-editor.org/rfc/rfc5780","title":"NAT Behavior Discovery Using Session Traversal Utilities for NAT (STUN)","authors":["D. MacDonald","B. Lowekamp"],"rawDate":"2010-05","status":"Experimental","updatedBy":["RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5780","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5781":{"rfcNumber":"RFC5781","href":"https://www.rfc-editor.org/rfc/rfc5781","title":"The rsync URI Scheme","authors":["S. Weiler","D. Ward","R. Housley"],"rawDate":"2010-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5782":{"rfcNumber":"RFC5782","href":"https://www.rfc-editor.org/rfc/rfc5782","title":"DNS Blacklists and Whitelists","authors":["J. Levine"],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5782","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5783":{"rfcNumber":"RFC5783","href":"https://www.rfc-editor.org/rfc/rfc5783","title":"Congestion Control in the RFC Series","authors":["M. Welzl","W. Eddy"],"rawDate":"2010-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5783","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5784":{"rfcNumber":"RFC5784","href":"https://www.rfc-editor.org/rfc/rfc5784","title":"Sieve Email Filtering: Sieves and Display Directives in XML","authors":["N. Freed","S. Vedam"],"rawDate":"2010-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5784","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5785":{"rfcNumber":"RFC5785","href":"https://www.rfc-editor.org/rfc/rfc5785","title":"Defining Well-Known Uniform Resource Identifiers (URIs)","authors":["M. Nottingham","E. Hammer-Lahav"],"rawDate":"2010-04","status":"Proposed Standard","obsoletedBy":["RFC8615"],"updates":["RFC2616","RFC2818"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5785","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5786":{"rfcNumber":"RFC5786","href":"https://www.rfc-editor.org/rfc/rfc5786","title":"Advertising a Router's Local Addresses in OSPF Traffic Engineering (TE) Extensions","authors":["R. Aggarwal","K. Kompella"],"rawDate":"2010-03","status":"Proposed Standard","updatedBy":["RFC6827","RFC8687"],"updates":["RFC3630"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5786","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5787":{"rfcNumber":"RFC5787","href":"https://www.rfc-editor.org/rfc/rfc5787","title":"OSPFv2 Routing Protocols Extensions for Automatically Switched Optical Network (ASON) Routing","authors":["D. Papadimitriou"],"rawDate":"2010-03","status":"Experimental","obsoletedBy":["RFC6827"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5788":{"rfcNumber":"RFC5788","href":"https://www.rfc-editor.org/rfc/rfc5788","title":"IMAP4 Keyword Registry","authors":["A. Melnikov","D. Cridland"],"rawDate":"2010-03","status":"Proposed Standard","updatedBy":["RFC8621"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5789":{"rfcNumber":"RFC5789","href":"https://httpwg.org/specs/rfc5789.html","title":"PATCH Method for HTTP","authors":["L. Dusseault","J. Snell"],"rawDate":"2010-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5789","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc579":{"aliasOf":"rfc0579"},"rfc5790":{"rfcNumber":"RFC5790","href":"https://www.rfc-editor.org/rfc/rfc5790","title":"Lightweight Internet Group Management Protocol Version 3 (IGMPv3) and Multicast Listener Discovery Version 2 (MLDv2) Protocols","authors":["H. Liu","W. Cao","H. Asaeda"],"rawDate":"2010-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5791":{"rfcNumber":"RFC5791","href":"https://www.rfc-editor.org/rfc/rfc5791","title":"RFC 2731 (\"Encoding Dublin Core Metadata in HTML\") Is Obsolete","authors":["J. Reschke","J. Kunze"],"rawDate":"2010-02","status":"Informational","obsoletes":["RFC2731"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5791","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5792":{"rfcNumber":"RFC5792","href":"https://www.rfc-editor.org/rfc/rfc5792","title":"PA-TNC: A Posture Attribute (PA) Protocol Compatible with Trusted Network Connect (TNC)","authors":["P. Sangster","K. Narayan"],"rawDate":"2010-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5792","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5793":{"rfcNumber":"RFC5793","href":"https://www.rfc-editor.org/rfc/rfc5793","title":"PB-TNC: A Posture Broker (PB) Protocol Compatible with Trusted Network Connect (TNC)","authors":["R. Sahita","S. Hanna","R. Hurst","K. Narayan"],"rawDate":"2010-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5793","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5794":{"rfcNumber":"RFC5794","href":"https://www.rfc-editor.org/rfc/rfc5794","title":"A Description of the ARIA Encryption Algorithm","authors":["J. Lee","J. Lee","J. Kim","D. Kwon","C. Kim"],"rawDate":"2010-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5794","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5795":{"rfcNumber":"RFC5795","href":"https://www.rfc-editor.org/rfc/rfc5795","title":"The RObust Header Compression (ROHC) Framework","authors":["K. Sandlund","G. Pelletier","L-E. Jonsson"],"rawDate":"2010-03","status":"Proposed Standard","obsoletes":["RFC4995"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5795","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5796":{"rfcNumber":"RFC5796","href":"https://www.rfc-editor.org/rfc/rfc5796","title":"Authentication and Confidentiality in Protocol Independent Multicast Sparse Mode (PIM-SM) Link-Local Messages","authors":["W. Atwood","S. Islam","M. Siami"],"rawDate":"2010-03","status":"Proposed Standard","updates":["RFC4601"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5797":{"rfcNumber":"RFC5797","href":"https://www.rfc-editor.org/rfc/rfc5797","title":"FTP Command and Extension Registry","authors":["J. Klensin","A. Hoenes"],"rawDate":"2010-03","status":"Proposed Standard","updates":["RFC0959"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5797","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5798":{"rfcNumber":"RFC5798","href":"https://www.rfc-editor.org/rfc/rfc5798","title":"Virtual Router Redundancy Protocol (VRRP) Version 3 for IPv4 and IPv6","authors":["S. Nadas, Ed."],"rawDate":"2010-03","status":"Proposed Standard","obsoletes":["RFC3768"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5798","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc58":{"aliasOf":"rfc0058"},"rfc580":{"aliasOf":"rfc0580"},"rfc5801":{"rfcNumber":"RFC5801","href":"https://www.rfc-editor.org/rfc/rfc5801","title":"Using Generic Security Service Application Program Interface (GSS-API) Mechanisms in Simple Authentication and Security Layer (SASL): The GS2 Mechanism Family","authors":["S. Josefsson","N. Williams"],"rawDate":"2010-07","status":"Proposed Standard","updatedBy":["RFC9266"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5801","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5802":{"rfcNumber":"RFC5802","href":"https://www.rfc-editor.org/rfc/rfc5802","title":"Salted Challenge Response Authentication Mechanism (SCRAM) SASL and GSS-API Mechanisms","authors":["C. Newman","A. Menon-Sen","A. Melnikov","N. Williams"],"rawDate":"2010-07","status":"Proposed Standard","updatedBy":["RFC7677","RFC9266"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5802","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5803":{"rfcNumber":"RFC5803","href":"https://www.rfc-editor.org/rfc/rfc5803","title":"Lightweight Directory Access Protocol (LDAP) Schema for Storing Salted Challenge Response Authentication Mechanism (SCRAM) Secrets","authors":["A. Melnikov"],"rawDate":"2010-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5803","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5804":{"rfcNumber":"RFC5804","href":"https://www.rfc-editor.org/rfc/rfc5804","title":"A Protocol for Remotely Managing Sieve Scripts","authors":["A. Melnikov, Ed.","T. Martin"],"rawDate":"2010-07","status":"Proposed Standard","updatedBy":["RFC7817","RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5804","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5805":{"rfcNumber":"RFC5805","href":"https://www.rfc-editor.org/rfc/rfc5805","title":"Lightweight Directory Access Protocol (LDAP) Transactions","authors":["K. Zeilenga"],"rawDate":"2010-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5805","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5806":{"rfcNumber":"RFC5806","href":"https://www.rfc-editor.org/rfc/rfc5806","title":"Diversion Indication in SIP","authors":["S. Levy","M. Mohali, Ed."],"rawDate":"2010-03","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5806","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5807":{"rfcNumber":"RFC5807","href":"https://www.rfc-editor.org/rfc/rfc5807","title":"Definition of Master Key between PANA Client and Enforcement Point","authors":["Y. Ohba","A. Yegin"],"rawDate":"2010-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5808":{"rfcNumber":"RFC5808","href":"https://www.rfc-editor.org/rfc/rfc5808","title":"Requirements for a Location-by-Reference Mechanism","authors":["R. Marshall, Ed."],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc581":{"aliasOf":"rfc0581"},"rfc5810":{"rfcNumber":"RFC5810","href":"https://www.rfc-editor.org/rfc/rfc5810","title":"Forwarding and Control Element Separation (ForCES) Protocol Specification","authors":["A. Doria, Ed.","J. Hadi Salim, Ed.","R. Haas, Ed.","H. Khosravi, Ed.","W. Wang, Ed.","L. Dong","R. Gopal","J. Halpern"],"rawDate":"2010-03","status":"Proposed Standard","updatedBy":["RFC7121","RFC7391"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5810","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5811":{"rfcNumber":"RFC5811","href":"https://www.rfc-editor.org/rfc/rfc5811","title":"SCTP-Based Transport Mapping Layer (TML) for the Forwarding and Control Element Separation (ForCES) Protocol","authors":["J. Hadi Salim","K. Ogawa"],"rawDate":"2010-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5812":{"rfcNumber":"RFC5812","href":"https://www.rfc-editor.org/rfc/rfc5812","title":"Forwarding and Control Element Separation (ForCES) Forwarding Element Model","authors":["J. Halpern","J. Hadi Salim"],"rawDate":"2010-03","status":"Proposed Standard","updatedBy":["RFC7408"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5812","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5813":{"rfcNumber":"RFC5813","href":"https://www.rfc-editor.org/rfc/rfc5813","title":"Forwarding and Control Element Separation (ForCES) MIB","authors":["R. Haas"],"rawDate":"2010-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5814":{"rfcNumber":"RFC5814","href":"https://www.rfc-editor.org/rfc/rfc5814","title":"Label Switched Path (LSP) Dynamic Provisioning Performance Metrics in Generalized MPLS Networks","authors":["W. Sun, Ed.","G. Zhang, Ed."],"rawDate":"2010-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5815":{"rfcNumber":"RFC5815","href":"https://www.rfc-editor.org/rfc/rfc5815","title":"Definitions of Managed Objects for IP Flow Information Export","authors":["T. Dietz, Ed.","A. Kobayashi","B. Claise","G. Muenz"],"rawDate":"2010-04","status":"Proposed Standard","obsoletedBy":["RFC6615"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5815","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5816":{"rfcNumber":"RFC5816","href":"https://www.rfc-editor.org/rfc/rfc5816","title":"ESSCertIDv2 Update for RFC 3161","authors":["S. Santesson","N. Pope"],"rawDate":"2010-04","status":"Proposed Standard","updates":["RFC3161"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5817":{"rfcNumber":"RFC5817","href":"https://www.rfc-editor.org/rfc/rfc5817","title":"Graceful Shutdown in MPLS and Generalized MPLS Traffic Engineering Networks","authors":["Z. Ali","JP. Vasseur","A. Zamfir","J. Newton"],"rawDate":"2010-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5817","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5818":{"rfcNumber":"RFC5818","href":"https://www.rfc-editor.org/rfc/rfc5818","title":"Data Channel Status Confirmation Extensions for the Link Management Protocol","authors":["D. Li","H. Xu","S. Bardalai","J. Meuric","D. Caviglia"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC6898"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5819":{"rfcNumber":"RFC5819","href":"https://www.rfc-editor.org/rfc/rfc5819","title":"IMAP4 Extension for Returning STATUS Information in Extended LIST","authors":["A. Melnikov","T. Sirainen"],"rawDate":"2010-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5819","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc582":{"aliasOf":"rfc0582"},"rfc5820":{"rfcNumber":"RFC5820","href":"https://www.rfc-editor.org/rfc/rfc5820","title":"Extensions to OSPF to Support Mobile Ad Hoc Networking","authors":["A. Roy, Ed.","M. Chandra, Ed."],"rawDate":"2010-03","status":"Experimental","updatedBy":["RFC7137"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5824":{"rfcNumber":"RFC5824","href":"https://www.rfc-editor.org/rfc/rfc5824","title":"Requirements for Supporting Customer Resource ReSerVation Protocol (RSVP) and RSVP Traffic Engineering (RSVP-TE) over a BGP/MPLS IP-VPN","authors":["K. Kumaki, Ed.","R. Zhang","Y. Kamite"],"rawDate":"2010-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5825":{"rfcNumber":"RFC5825","href":"https://www.rfc-editor.org/rfc/rfc5825","title":"Displaying Downgraded Messages for Email Address Internationalization","authors":["K. Fujiwara","B. Leiba"],"rawDate":"2010-04","status":"Experimental","obsoletedBy":["RFC6530"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5826":{"rfcNumber":"RFC5826","href":"https://www.rfc-editor.org/rfc/rfc5826","title":"Home Automation Routing Requirements in Low-Power and Lossy Networks","authors":["A. Brandt","J. Buron","G. Porcu"],"rawDate":"2010-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5826","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5827":{"rfcNumber":"RFC5827","href":"https://www.rfc-editor.org/rfc/rfc5827","title":"Early Retransmit for TCP and Stream Control Transmission Protocol (SCTP)","authors":["M. Allman","K. Avrachenkov","U. Ayesta","J. Blanton","P. Hurtig"],"rawDate":"2010-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5828":{"rfcNumber":"RFC5828","href":"https://www.rfc-editor.org/rfc/rfc5828","title":"Generalized Multiprotocol Label Switching (GMPLS) Ethernet Label Switching Architecture and Framework","authors":["D. Fedyk","L. Berger","L. Andersson"],"rawDate":"2010-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5829":{"rfcNumber":"RFC5829","href":"https://www.rfc-editor.org/rfc/rfc5829","title":"Link Relation Types for Simple Version Navigation between Web Resources","authors":["A. Brown","G. Clemm","J. Reschke, Ed."],"rawDate":"2010-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5830":{"rfcNumber":"RFC5830","href":"https://www.rfc-editor.org/rfc/rfc5830","title":"GOST 28147-89: Encryption, Decryption, and Message Authentication Code (MAC) Algorithms","authors":["V. Dolmatov, Ed."],"rawDate":"2010-03","status":"Informational","updatedBy":["RFC8891"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5830","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5831":{"rfcNumber":"RFC5831","href":"https://www.rfc-editor.org/rfc/rfc5831","title":"GOST R 34.11-94: Hash Function Algorithm","authors":["V. Dolmatov, Ed."],"rawDate":"2010-03","status":"Informational","updatedBy":["RFC6986"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5831","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5832":{"rfcNumber":"RFC5832","href":"https://www.rfc-editor.org/rfc/rfc5832","title":"GOST R 34.10-2001: Digital Signature Algorithm","authors":["V. Dolmatov, Ed."],"rawDate":"2010-03","status":"Informational","updatedBy":["RFC7091"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5832","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5833":{"rfcNumber":"RFC5833","href":"https://www.rfc-editor.org/rfc/rfc5833","title":"Control and Provisioning of Wireless Access Points (CAPWAP) Protocol Base MIB","authors":["Y. Shi, Ed.","D. Perkins, Ed.","C. Elliott, Ed.","Y. Zhang, Ed."],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5834":{"rfcNumber":"RFC5834","href":"https://www.rfc-editor.org/rfc/rfc5834","title":"Control and Provisioning of Wireless Access Points (CAPWAP) Protocol Binding MIB for IEEE 802.11","authors":["Y. Shi, Ed.","D. Perkins, Ed.","C. Elliott, Ed.","Y. Zhang, Ed."],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5835":{"rfcNumber":"RFC5835","href":"https://www.rfc-editor.org/rfc/rfc5835","title":"Framework for Metric Composition","authors":["A. Morton, Ed.","S. Van den Berghe, Ed."],"rawDate":"2010-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5836":{"rfcNumber":"RFC5836","href":"https://www.rfc-editor.org/rfc/rfc5836","title":"Extensible Authentication Protocol (EAP) Early Authentication Problem Statement","authors":["Y. Ohba, Ed.","Q. Wu, Ed.","G. Zorn, Ed."],"rawDate":"2010-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5837":{"rfcNumber":"RFC5837","href":"https://www.rfc-editor.org/rfc/rfc5837","title":"Extending ICMP for Interface and Next-Hop Identification","authors":["A. Atlas, Ed.","R. Bonica, Ed.","C. Pignataro, Ed.","N. Shen","JR. Rivers"],"rawDate":"2010-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5838":{"rfcNumber":"RFC5838","href":"https://www.rfc-editor.org/rfc/rfc5838","title":"Support of Address Families in OSPFv3","authors":["A. Lindem, Ed.","S. Mirtorabi","A. Roy","M. Barnes","R. Aggarwal"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC6969","RFC7949","RFC8362","RFC9454"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5838","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5839":{"rfcNumber":"RFC5839","href":"https://www.rfc-editor.org/rfc/rfc5839","title":"An Extension to Session Initiation Protocol (SIP) Events for Conditional Event Notification","authors":["A. Niemi","D. Willis, Ed."],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc584":{"aliasOf":"rfc0584"},"rfc5840":{"rfcNumber":"RFC5840","href":"https://www.rfc-editor.org/rfc/rfc5840","title":"Wrapped Encapsulating Security Payload (ESP) for Traffic Visibility","authors":["K. Grewal","G. Montenegro","M. Bhatia"],"rawDate":"2010-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5841":{"rfcNumber":"RFC5841","href":"https://www.rfc-editor.org/rfc/rfc5841","title":"TCP Option to Denote Packet Mood","authors":["R. Hay","W. Turkal"],"rawDate":"2010-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5841","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5842":{"rfcNumber":"RFC5842","href":"https://www.rfc-editor.org/rfc/rfc5842","title":"Binding Extensions to Web Distributed Authoring and Versioning (WebDAV)","authors":["G. Clemm","J. Crawford","J. Reschke, Ed.","J. Whitehead"],"rawDate":"2010-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5843":{"rfcNumber":"RFC5843","href":"https://www.rfc-editor.org/rfc/rfc5843","title":"Additional Hash Algorithms for HTTP Instance Digests","authors":["A. Bryan"],"rawDate":"2010-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5843","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5844":{"rfcNumber":"RFC5844","href":"https://www.rfc-editor.org/rfc/rfc5844","title":"IPv4 Support for Proxy Mobile IPv6","authors":["R. Wakikawa","S. Gundavelli"],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5845":{"rfcNumber":"RFC5845","href":"https://www.rfc-editor.org/rfc/rfc5845","title":"Generic Routing Encapsulation (GRE) Key Option for Proxy Mobile IPv6","authors":["A. Muhanna","M. Khalil","S. Gundavelli","K. Leung"],"rawDate":"2010-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5846":{"rfcNumber":"RFC5846","href":"https://www.rfc-editor.org/rfc/rfc5846","title":"Binding Revocation for IPv6 Mobility","authors":["A. Muhanna","M. Khalil","S. Gundavelli","K. Chowdhury","P. Yegani"],"rawDate":"2010-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5847":{"rfcNumber":"RFC5847","href":"https://www.rfc-editor.org/rfc/rfc5847","title":"Heartbeat Mechanism for Proxy Mobile IPv6","authors":["V. Devarapalli, Ed.","R. Koodli, Ed.","H. Lim","N. Kant","S. Krishnan","J. Laganier"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5847","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5848":{"rfcNumber":"RFC5848","href":"https://www.rfc-editor.org/rfc/rfc5848","title":"Signed Syslog Messages","authors":["J. Kelsey","J. Callas","A. Clemm"],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5849":{"rfcNumber":"RFC5849","href":"https://www.rfc-editor.org/rfc/rfc5849","title":"The OAuth 1.0 Protocol","authors":["E. Hammer-Lahav, Ed."],"rawDate":"2010-04","status":"Informational","obsoletedBy":["RFC6749"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5849","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc585":{"aliasOf":"rfc0585"},"rfc5850":{"rfcNumber":"RFC5850","href":"https://www.rfc-editor.org/rfc/rfc5850","title":"A Call Control and Multi-Party Usage Framework for the Session Initiation Protocol (SIP)","authors":["R. Mahy","R. Sparks","J. Rosenberg","D. Petrie","A. Johnston, Ed."],"rawDate":"2010-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5850","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5851":{"rfcNumber":"RFC5851","href":"https://www.rfc-editor.org/rfc/rfc5851","title":"Framework and Requirements for an Access Node Control Mechanism in Broadband Multi-Service Networks","authors":["S. Ooghe","N. Voigt","M. Platnic","T. Haag","S. Wadhwa"],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5852":{"rfcNumber":"RFC5852","href":"https://www.rfc-editor.org/rfc/rfc5852","title":"RSVP-TE Signaling Extension for LSP Handover from the Management Plane to the Control Plane in a GMPLS-Enabled Transport Network","authors":["D. Caviglia","D. Ceccarelli","D. Bramanti","D. Li","S. Bardalai"],"rawDate":"2010-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5853":{"rfcNumber":"RFC5853","href":"https://www.rfc-editor.org/rfc/rfc5853","title":"Requirements from Session Initiation Protocol (SIP) Session Border Control (SBC) Deployments","authors":["J. Hautakorpi, Ed.","G. Camarillo","R. Penfield","A. Hawrylyshen","M. Bhatia"],"rawDate":"2010-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5854":{"rfcNumber":"RFC5854","href":"https://www.rfc-editor.org/rfc/rfc5854","title":"The Metalink Download Description Format","authors":["A. Bryan","T. Tsujikawa","N. McNab","P. Poeml"],"rawDate":"2010-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5855":{"rfcNumber":"RFC5855","href":"https://www.rfc-editor.org/rfc/rfc5855","title":"Nameservers for IPv4 and IPv6 Reverse Zones","authors":["J. Abley","T. Manderson"],"rawDate":"2010-05","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5856":{"rfcNumber":"RFC5856","href":"https://www.rfc-editor.org/rfc/rfc5856","title":"Integration of Robust Header Compression over IPsec Security Associations","authors":["E. Ertekin","R. Jasani","C. Christou","C. Bormann"],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5857":{"rfcNumber":"RFC5857","href":"https://www.rfc-editor.org/rfc/rfc5857","title":"IKEv2 Extensions to Support Robust Header Compression over IPsec","authors":["E. Ertekin","C. Christou","R. Jasani","T. Kivinen","C. Bormann"],"rawDate":"2010-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5857","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5858":{"rfcNumber":"RFC5858","href":"https://www.rfc-editor.org/rfc/rfc5858","title":"IPsec Extensions to Support Robust Header Compression over IPsec","authors":["E. Ertekin","C. Christou","C. Bormann"],"rawDate":"2010-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5858","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5859":{"rfcNumber":"RFC5859","href":"https://www.rfc-editor.org/rfc/rfc5859","title":"TFTP Server Address Option for DHCPv4","authors":["R. Johnson"],"rawDate":"2010-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc586":{"aliasOf":"rfc0586"},"rfc5860":{"rfcNumber":"RFC5860","href":"https://www.rfc-editor.org/rfc/rfc5860","title":"Requirements for Operations, Administration, and Maintenance (OAM) in MPLS Transport Networks","authors":["M. Vigoureux, Ed.","D. Ward, Ed.","M. Betts, Ed."],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5861":{"rfcNumber":"RFC5861","href":"https://httpwg.org/specs/rfc5861.html","title":"HTTP Cache-Control Extensions for Stale Content","authors":["M. Nottingham"],"rawDate":"2010-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5861","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5862":{"rfcNumber":"RFC5862","href":"https://www.rfc-editor.org/rfc/rfc5862","title":"Path Computation Clients (PCC) - Path Computation Element (PCE) Requirements for Point-to-Multipoint MPLS-TE","authors":["S. Yasukawa","A. Farrel"],"rawDate":"2010-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5863":{"rfcNumber":"RFC5863","href":"https://www.rfc-editor.org/rfc/rfc5863","title":"DomainKeys Identified Mail (DKIM) Development, Deployment, and Operations","authors":["T. Hansen","E. Siegel","P. Hallam-Baker","D. Crocker"],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5864":{"rfcNumber":"RFC5864","href":"https://www.rfc-editor.org/rfc/rfc5864","title":"DNS SRV Resource Records for AFS","authors":["R. Allbery"],"rawDate":"2010-04","status":"Proposed Standard","updatedBy":["RFC8553"],"updates":["RFC1183"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5864","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5865":{"rfcNumber":"RFC5865","href":"https://www.rfc-editor.org/rfc/rfc5865","title":"A Differentiated Services Code Point (DSCP) for Capacity-Admitted Traffic","authors":["F. Baker","J. Polk","M. Dolly"],"rawDate":"2010-05","status":"Proposed Standard","updates":["RFC4542","RFC4594"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5865","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5866":{"rfcNumber":"RFC5866","href":"https://www.rfc-editor.org/rfc/rfc5866","title":"Diameter Quality-of-Service Application","authors":["D. Sun, Ed.","P. McCann","H. Tschofenig","T. Tsou","A. Doria","G. Zorn, Ed."],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5867":{"rfcNumber":"RFC5867","href":"https://www.rfc-editor.org/rfc/rfc5867","title":"Building Automation Routing Requirements in Low-Power and Lossy Networks","authors":["J. Martocci, Ed.","P. De Mil","N. Riou","W. Vermeylen"],"rawDate":"2010-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5868":{"rfcNumber":"RFC5868","href":"https://www.rfc-editor.org/rfc/rfc5868","title":"Problem Statement on the Cross-Realm Operation of Kerberos","authors":["S. Sakane","K. Kamada","S. Zrelli","M. Ishiyama"],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5869":{"rfcNumber":"RFC5869","href":"https://www.rfc-editor.org/rfc/rfc5869","title":"HMAC-based Extract-and-Expand Key Derivation Function (HKDF)","authors":["H. Krawczyk","P. Eronen"],"rawDate":"2010-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5869","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc587":{"aliasOf":"rfc0587"},"rfc5870":{"rfcNumber":"RFC5870","href":"https://www.rfc-editor.org/rfc/rfc5870","title":"A Uniform Resource Identifier for Geographic Locations ('geo' URI)","authors":["A. Mayrhofer","C. Spanring"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5870","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5871":{"rfcNumber":"RFC5871","href":"https://www.rfc-editor.org/rfc/rfc5871","title":"IANA Allocation Guidelines for the IPv6 Routing Header","authors":["J. Arkko","S. Bradner"],"rawDate":"2010-05","status":"Proposed Standard","updates":["RFC2460"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5872":{"rfcNumber":"RFC5872","href":"https://www.rfc-editor.org/rfc/rfc5872","title":"IANA Rules for the Protocol for Carrying Authentication for Network Access (PANA)","authors":["J. Arkko","A. Yegin"],"rawDate":"2010-05","status":"Proposed Standard","updates":["RFC5191"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5873":{"rfcNumber":"RFC5873","href":"https://www.rfc-editor.org/rfc/rfc5873","title":"Pre-Authentication Support for the Protocol for Carrying Authentication for Network Access (PANA)","authors":["Y. Ohba","A. Yegin"],"rawDate":"2010-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5874":{"rfcNumber":"RFC5874","href":"https://www.rfc-editor.org/rfc/rfc5874","title":"An Extensible Markup Language (XML) Document Format for Indicating a Change in XML Configuration Access Protocol (XCAP) Resources","authors":["J. Rosenberg","J. Urpalainen"],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5875":{"rfcNumber":"RFC5875","href":"https://www.rfc-editor.org/rfc/rfc5875","title":"An Extensible Markup Language (XML) Configuration Access Protocol (XCAP) Diff Event Package","authors":["J. Urpalainen","D. Willis, Ed."],"rawDate":"2010-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5876":{"rfcNumber":"RFC5876","href":"https://www.rfc-editor.org/rfc/rfc5876","title":"Updates to Asserted Identity in the Session Initiation Protocol (SIP)","authors":["J. Elwell"],"rawDate":"2010-04","status":"Informational","updates":["RFC3325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5877":{"rfcNumber":"RFC5877","href":"https://www.rfc-editor.org/rfc/rfc5877","title":"The application/pkix-attr-cert Media Type for Attribute Certificates","authors":["R. Housley"],"rawDate":"2010-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5877","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5878":{"rfcNumber":"RFC5878","href":"https://www.rfc-editor.org/rfc/rfc5878","title":"Transport Layer Security (TLS) Authorization Extensions","authors":["M. Brown","R. Housley"],"rawDate":"2010-05","status":"Experimental","updatedBy":["RFC8447","RFC8996"],"updates":["RFC5246"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5878","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5879":{"rfcNumber":"RFC5879","href":"https://www.rfc-editor.org/rfc/rfc5879","title":"Heuristics for Detecting ESP-NULL Packets","authors":["T. Kivinen","D. McDonald"],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc588":{"aliasOf":"rfc0588"},"rfc5880":{"rfcNumber":"RFC5880","href":"https://www.rfc-editor.org/rfc/rfc5880","title":"Bidirectional Forwarding Detection (BFD)","authors":["D. Katz","D. Ward"],"rawDate":"2010-06","status":"Proposed Standard","updatedBy":["RFC7419","RFC7880","RFC8562"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5880","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5881":{"rfcNumber":"RFC5881","href":"https://www.rfc-editor.org/rfc/rfc5881","title":"Bidirectional Forwarding Detection (BFD) for IPv4 and IPv6 (Single Hop)","authors":["D. Katz","D. Ward"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5881","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5882":{"rfcNumber":"RFC5882","href":"https://www.rfc-editor.org/rfc/rfc5882","title":"Generic Application of Bidirectional Forwarding Detection (BFD)","authors":["D. Katz","D. Ward"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5882","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5883":{"rfcNumber":"RFC5883","href":"https://www.rfc-editor.org/rfc/rfc5883","title":"Bidirectional Forwarding Detection (BFD) for Multihop Paths","authors":["D. Katz","D. Ward"],"rawDate":"2010-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5884":{"rfcNumber":"RFC5884","href":"https://www.rfc-editor.org/rfc/rfc5884","title":"Bidirectional Forwarding Detection (BFD) for MPLS Label Switched Paths (LSPs)","authors":["R. Aggarwal","K. Kompella","T. Nadeau","G. Swallow"],"rawDate":"2010-06","status":"Proposed Standard","updatedBy":["RFC7726"],"updates":["RFC1122"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5884","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5885":{"rfcNumber":"RFC5885","href":"https://www.rfc-editor.org/rfc/rfc5885","title":"Bidirectional Forwarding Detection (BFD) for the Pseudowire Virtual Circuit Connectivity Verification (VCCV)","authors":["T. Nadeau, Ed.","C. Pignataro, Ed."],"rawDate":"2010-06","status":"Proposed Standard","updatedBy":["RFC6478","RFC7885"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5886":{"rfcNumber":"RFC5886","href":"https://www.rfc-editor.org/rfc/rfc5886","title":"A Set of Monitoring Tools for Path Computation Element (PCE)-Based Architecture","authors":["JP. Vasseur, Ed.","JL. Le Roux","Y. Ikejiri"],"rawDate":"2010-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5887":{"rfcNumber":"RFC5887","href":"https://www.rfc-editor.org/rfc/rfc5887","title":"Renumbering Still Needs Work","authors":["B. Carpenter","R. Atkinson","H. Flinck"],"rawDate":"2010-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5888":{"rfcNumber":"RFC5888","href":"https://www.rfc-editor.org/rfc/rfc5888","title":"The Session Description Protocol (SDP) Grouping Framework","authors":["G. Camarillo","H. Schulzrinne"],"rawDate":"2010-06","status":"Proposed Standard","updatedBy":["RFC8843","RFC9143"],"obsoletes":["RFC3388"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5888","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5889":{"rfcNumber":"RFC5889","href":"https://www.rfc-editor.org/rfc/rfc5889","title":"IP Addressing Model in Ad Hoc Networks","authors":["E. Baccelli, Ed.","M. Townsley, Ed."],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc589":{"aliasOf":"rfc0589"},"rfc5890":{"rfcNumber":"RFC5890","href":"https://www.rfc-editor.org/rfc/rfc5890","title":"Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework","authors":["J. Klensin"],"rawDate":"2010-08","status":"Proposed Standard","updates":["RFC4343"],"obsoletes":["RFC3490"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5890","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5891":{"rfcNumber":"RFC5891","href":"https://www.rfc-editor.org/rfc/rfc5891","title":"Internationalized Domain Names in Applications (IDNA): Protocol","authors":["J. Klensin"],"rawDate":"2010-08","status":"Proposed Standard","updates":["RFC3492"],"obsoletes":["RFC3490","RFC3491"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5891","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5892":{"rfcNumber":"RFC5892","href":"https://www.rfc-editor.org/rfc/rfc5892","title":"The Unicode Code Points and Internationalized Domain Names for Applications (IDNA)","authors":["P. Faltstrom, Ed."],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC8753"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5892","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5893":{"rfcNumber":"RFC5893","href":"https://www.rfc-editor.org/rfc/rfc5893","title":"Right-to-Left Scripts for Internationalized Domain Names for Applications (IDNA)","authors":["H. Alvestrand, Ed.","C. Karp"],"rawDate":"2010-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5894":{"rfcNumber":"RFC5894","href":"https://www.rfc-editor.org/rfc/rfc5894","title":"Internationalized Domain Names for Applications (IDNA): Background, Explanation, and Rationale","authors":["J. Klensin"],"rawDate":"2010-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5895":{"rfcNumber":"RFC5895","href":"https://www.rfc-editor.org/rfc/rfc5895","title":"Mapping Characters for Internationalized Domain Names in Applications (IDNA) 2008","authors":["P. Resnick","P. Hoffman"],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5896":{"rfcNumber":"RFC5896","href":"https://www.rfc-editor.org/rfc/rfc5896","title":"Generic Security Service Application Program Interface (GSS-API): Delegate if Approved by Policy","authors":["L. Hornquist Astrand","S. Hartman"],"rawDate":"2010-06","status":"Proposed Standard","updates":["RFC2743","RFC2744","RFC4120","RFC4121"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5896","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5897":{"rfcNumber":"RFC5897","href":"https://www.rfc-editor.org/rfc/rfc5897","title":"Identification of Communications Services in the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2010-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5898":{"rfcNumber":"RFC5898","href":"https://www.rfc-editor.org/rfc/rfc5898","title":"Connectivity Preconditions for Session Description Protocol (SDP) Media Streams","authors":["F. Andreasen","G. Camarillo","D. Oran","D. Wing"],"rawDate":"2010-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc59":{"aliasOf":"rfc0059"},"rfc590":{"aliasOf":"rfc0590"},"rfc5901":{"rfcNumber":"RFC5901","href":"https://www.rfc-editor.org/rfc/rfc5901","title":"Extensions to the IODEF-Document Class for Reporting Phishing","authors":["P. Cain","D. Jevans"],"rawDate":"2010-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5902":{"rfcNumber":"RFC5902","href":"https://www.rfc-editor.org/rfc/rfc5902","title":"IAB Thoughts on IPv6 Network Address Translation","authors":["D. Thaler","L. Zhang","G. Lebovitz"],"rawDate":"2010-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5903":{"rfcNumber":"RFC5903","href":"https://www.rfc-editor.org/rfc/rfc5903","title":"Elliptic Curve Groups modulo a Prime (ECP Groups) for IKE and IKEv2","authors":["D. Fu","J. Solinas"],"rawDate":"2010-06","status":"Informational","obsoletes":["RFC4753"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5903","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5904":{"rfcNumber":"RFC5904","href":"https://www.rfc-editor.org/rfc/rfc5904","title":"RADIUS Attributes for IEEE 802.16 Privacy Key Management Version 1 (PKMv1) Protocol Support","authors":["G. Zorn"],"rawDate":"2010-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5905":{"rfcNumber":"RFC5905","href":"https://www.rfc-editor.org/rfc/rfc5905","title":"Network Time Protocol Version 4: Protocol and Algorithms Specification","authors":["D. Mills","J. Martin, Ed.","J. Burbank","W. Kasch"],"rawDate":"2010-06","status":"Proposed Standard","updatedBy":["RFC7822","RFC8573","RFC9109"],"obsoletes":["RFC1305","RFC4330"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5905","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5906":{"rfcNumber":"RFC5906","href":"https://www.rfc-editor.org/rfc/rfc5906","title":"Network Time Protocol Version 4: Autokey Specification","authors":["B. Haberman, Ed.","D. Mills"],"rawDate":"2010-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5906","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5907":{"rfcNumber":"RFC5907","href":"https://www.rfc-editor.org/rfc/rfc5907","title":"Definitions of Managed Objects for Network Time Protocol Version 4 (NTPv4)","authors":["H. Gerstung","C. Elliott","B. Haberman, Ed."],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5907","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5908":{"rfcNumber":"RFC5908","href":"https://www.rfc-editor.org/rfc/rfc5908","title":"Network Time Protocol (NTP) Server Option for DHCPv6","authors":["R. Gayraud","B. Lourdelet"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5908","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5909":{"rfcNumber":"RFC5909","href":"https://www.rfc-editor.org/rfc/rfc5909","title":"Securing Neighbor Discovery Proxy: Problem Statement","authors":["J-M. Combes","S. Krishnan","G. Daley"],"rawDate":"2010-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc591":{"aliasOf":"rfc0591"},"rfc5910":{"rfcNumber":"RFC5910","href":"https://www.rfc-editor.org/rfc/rfc5910","title":"Domain Name System (DNS) Security Extensions Mapping for the Extensible Provisioning Protocol (EPP)","authors":["J. Gould","S. Hollenbeck"],"rawDate":"2010-05","status":"Proposed Standard","obsoletes":["RFC4310"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5910","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5911":{"rfcNumber":"RFC5911","href":"https://www.rfc-editor.org/rfc/rfc5911","title":"New ASN.1 Modules for Cryptographic Message Syntax (CMS) and S/MIME","authors":["P. Hoffman","J. Schaad"],"rawDate":"2010-06","status":"Informational","updatedBy":["RFC6268"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5911","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5912":{"rfcNumber":"RFC5912","href":"https://www.rfc-editor.org/rfc/rfc5912","title":"New ASN.1 Modules for the Public Key Infrastructure Using X.509 (PKIX)","authors":["P. Hoffman","J. Schaad"],"rawDate":"2010-06","status":"Informational","updatedBy":["RFC6960","RFC9480"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5912","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5913":{"rfcNumber":"RFC5913","href":"https://www.rfc-editor.org/rfc/rfc5913","title":"Clearance Attribute and Authority Clearance Constraints Certificate Extension","authors":["S. Turner","S. Chokhani"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5913","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5914":{"rfcNumber":"RFC5914","href":"https://www.rfc-editor.org/rfc/rfc5914","title":"Trust Anchor Format","authors":["R. Housley","S. Ashmore","C. Wallace"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5914","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5915":{"rfcNumber":"RFC5915","href":"https://www.rfc-editor.org/rfc/rfc5915","title":"Elliptic Curve Private Key Structure","authors":["S. Turner","D. Brown"],"rawDate":"2010-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5915","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5916":{"rfcNumber":"RFC5916","href":"https://www.rfc-editor.org/rfc/rfc5916","title":"Device Owner Attribute","authors":["S. Turner"],"rawDate":"2010-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5917":{"rfcNumber":"RFC5917","href":"https://www.rfc-editor.org/rfc/rfc5917","title":"Clearance Sponsor Attribute","authors":["S. Turner"],"rawDate":"2010-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5917","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5918":{"rfcNumber":"RFC5918","href":"https://www.rfc-editor.org/rfc/rfc5918","title":"Label Distribution Protocol (LDP) 'Typed Wildcard' Forward Equivalence Class (FEC)","authors":["R. Asati","I. Minei","B. Thomas"],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC7358"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5918","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5919":{"rfcNumber":"RFC5919","href":"https://www.rfc-editor.org/rfc/rfc5919","title":"Signaling LDP Label Advertisement Completion","authors":["R. Asati","P. Mohapatra","E. Chen","B. Thomas"],"rawDate":"2010-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5919","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc592":{"aliasOf":"rfc0592"},"rfc5920":{"rfcNumber":"RFC5920","href":"https://www.rfc-editor.org/rfc/rfc5920","title":"Security Framework for MPLS and GMPLS Networks","authors":["L. Fang, Ed."],"rawDate":"2010-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5921":{"rfcNumber":"RFC5921","href":"https://www.rfc-editor.org/rfc/rfc5921","title":"A Framework for MPLS in Transport Networks","authors":["M. Bocci, Ed.","S. Bryant, Ed.","D. Frost, Ed.","L. Levrau","L. Berger"],"rawDate":"2010-07","status":"Informational","updatedBy":["RFC6215","RFC7274"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5922":{"rfcNumber":"RFC5922","href":"https://www.rfc-editor.org/rfc/rfc5922","title":"Domain Certificates in the Session Initiation Protocol (SIP)","authors":["V. Gurbani","S. Lawrence","A. Jeffrey"],"rawDate":"2010-06","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5923":{"rfcNumber":"RFC5923","href":"https://www.rfc-editor.org/rfc/rfc5923","title":"Connection Reuse in the Session Initiation Protocol (SIP)","authors":["V. Gurbani, Ed.","R. Mahy","B. Tate"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5923","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5924":{"rfcNumber":"RFC5924","href":"https://www.rfc-editor.org/rfc/rfc5924","title":"Extended Key Usage (EKU) for Session Initiation Protocol (SIP) X.509 Certificates","authors":["S. Lawrence","V. Gurbani"],"rawDate":"2010-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5925":{"rfcNumber":"RFC5925","href":"https://www.rfc-editor.org/rfc/rfc5925","title":"The TCP Authentication Option","authors":["J. Touch","A. Mankin","R. Bonica"],"rawDate":"2010-06","status":"Proposed Standard","obsoletes":["RFC2385"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5925","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5926":{"rfcNumber":"RFC5926","href":"https://www.rfc-editor.org/rfc/rfc5926","title":"Cryptographic Algorithms for the TCP Authentication Option (TCP-AO)","authors":["G. Lebovitz","E. Rescorla"],"rawDate":"2010-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5926","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5927":{"rfcNumber":"RFC5927","href":"https://www.rfc-editor.org/rfc/rfc5927","title":"ICMP Attacks against TCP","authors":["F. Gont"],"rawDate":"2010-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5928":{"rfcNumber":"RFC5928","href":"https://www.rfc-editor.org/rfc/rfc5928","title":"Traversal Using Relays around NAT (TURN) Resolution Mechanism","authors":["M. Petit-Huguenin"],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC7350","RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5929":{"rfcNumber":"RFC5929","href":"https://www.rfc-editor.org/rfc/rfc5929","title":"Channel Bindings for TLS","authors":["J. Altman","N. Williams","L. Zhu"],"rawDate":"2010-07","status":"Proposed Standard","updatedBy":["RFC9266"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc593":{"aliasOf":"rfc0593"},"rfc5930":{"rfcNumber":"RFC5930","href":"https://www.rfc-editor.org/rfc/rfc5930","title":"Using Advanced Encryption Standard Counter Mode (AES-CTR) with the Internet Key Exchange version 02 (IKEv2) Protocol","authors":["S. Shen","Y. Mao","NSS. Murthy"],"rawDate":"2010-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5931":{"rfcNumber":"RFC5931","href":"https://www.rfc-editor.org/rfc/rfc5931","title":"Extensible Authentication Protocol (EAP) Authentication Using Only a Password","authors":["D. Harkins","G. Zorn"],"rawDate":"2010-08","status":"Informational","updatedBy":["RFC8146"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5931","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5932":{"rfcNumber":"RFC5932","href":"https://www.rfc-editor.org/rfc/rfc5932","title":"Camellia Cipher Suites for TLS","authors":["A. Kato","M. Kanda","S. Kanno"],"rawDate":"2010-06","status":"Proposed Standard","obsoletes":["RFC4132"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5933":{"rfcNumber":"RFC5933","href":"https://www.rfc-editor.org/rfc/rfc5933","title":"Use of GOST Signature Algorithms in DNSKEY and RRSIG Resource Records for DNSSEC","authors":["V. Dolmatov, Ed.","A. Chuprina","I. Ustinov"],"rawDate":"2010-07","status":"Proposed Standard","updatedBy":["RFC6944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5934":{"rfcNumber":"RFC5934","href":"https://www.rfc-editor.org/rfc/rfc5934","title":"Trust Anchor Management Protocol (TAMP)","authors":["R. Housley","S. Ashmore","C. Wallace"],"rawDate":"2010-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5934","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5935":{"rfcNumber":"RFC5935","href":"https://www.rfc-editor.org/rfc/rfc5935","title":"Expressing SNMP SMI Datatypes in XML Schema Definition Language","authors":["M. Ellison","B. Natale"],"rawDate":"2010-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5935","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5936":{"rfcNumber":"RFC5936","href":"https://www.rfc-editor.org/rfc/rfc5936","title":"DNS Zone Transfer Protocol (AXFR)","authors":["E. Lewis","A. Hoenes, Ed."],"rawDate":"2010-06","status":"Proposed Standard","updatedBy":["RFC9103"],"updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5937":{"rfcNumber":"RFC5937","href":"https://www.rfc-editor.org/rfc/rfc5937","title":"Using Trust Anchor Constraints during Certification Path Processing","authors":["S. Ashmore","C. Wallace"],"rawDate":"2010-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5938":{"rfcNumber":"RFC5938","href":"https://www.rfc-editor.org/rfc/rfc5938","title":"Individual Session Control Feature for the Two-Way Active Measurement Protocol (TWAMP)","authors":["A. Morton","M. Chiba"],"rawDate":"2010-08","status":"Proposed Standard","updates":["RFC5357"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5938","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5939":{"rfcNumber":"RFC5939","href":"https://www.rfc-editor.org/rfc/rfc5939","title":"Session Description Protocol (SDP) Capability Negotiation","authors":["F. Andreasen"],"rawDate":"2010-09","status":"Proposed Standard","updatedBy":["RFC6871"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5939","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc594":{"aliasOf":"rfc0594"},"rfc5940":{"rfcNumber":"RFC5940","href":"https://www.rfc-editor.org/rfc/rfc5940","title":"Additional Cryptographic Message Syntax (CMS) Revocation Information Choices","authors":["S. Turner","R. Housley"],"rawDate":"2010-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5940","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5941":{"rfcNumber":"RFC5941","href":"https://www.rfc-editor.org/rfc/rfc5941","title":"Sharing Transaction Fraud Data","authors":["D. M'Raihi","S. Boeyen","M. Grandcolas","S. Bajaj"],"rawDate":"2010-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5942":{"rfcNumber":"RFC5942","href":"https://www.rfc-editor.org/rfc/rfc5942","title":"IPv6 Subnet Model: The Relationship between Links and Subnet Prefixes","authors":["H. Singh","W. Beebee","E. Nordmark"],"rawDate":"2010-07","status":"Proposed Standard","updates":["RFC4861"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5942","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5943":{"rfcNumber":"RFC5943","href":"https://www.rfc-editor.org/rfc/rfc5943","title":"A Dedicated Routing Policy Specification Language Interface Identifier for Operational Testing","authors":["B. Haberman, Ed."],"rawDate":"2010-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5944":{"rfcNumber":"RFC5944","href":"https://www.rfc-editor.org/rfc/rfc5944","title":"IP Mobility Support for IPv4, Revised","authors":["C. Perkins, Ed."],"rawDate":"2010-11","status":"Proposed Standard","obsoletes":["RFC3344"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5944","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5945":{"rfcNumber":"RFC5945","href":"https://www.rfc-editor.org/rfc/rfc5945","title":"Resource Reservation Protocol (RSVP) Proxy Approaches","authors":["F. Le Faucheur","J. Manner","D. Wing","A. Guillou"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5946":{"rfcNumber":"RFC5946","href":"https://www.rfc-editor.org/rfc/rfc5946","title":"Resource Reservation Protocol (RSVP) Extensions for Path-Triggered RSVP Receiver Proxy","authors":["F. Le Faucheur","J. Manner","A. Narayanan","A. Guillou","H. Malik"],"rawDate":"2010-10","status":"Proposed Standard","updates":["RFC2205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5947":{"rfcNumber":"RFC5947","href":"https://www.rfc-editor.org/rfc/rfc5947","title":"Requirements for Multiple Address of Record (AOR) Reachability Information in the Session Initiation Protocol (SIP)","authors":["J. Elwell","H. Kaplan"],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5948":{"rfcNumber":"RFC5948","href":"https://www.rfc-editor.org/rfc/rfc5948","title":"Transmission of IPv4 Packets over the IP Convergence Sublayer of IEEE 802.16","authors":["S. Madanapalli","S. Park","S. Chakrabarti","G. Montenegro"],"rawDate":"2010-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5949":{"rfcNumber":"RFC5949","href":"https://www.rfc-editor.org/rfc/rfc5949","title":"Fast Handovers for Proxy Mobile IPv6","authors":["H. Yokota","K. Chowdhury","R. Koodli","B. Patil","F. Xia"],"rawDate":"2010-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc595":{"aliasOf":"rfc0595"},"rfc5950":{"rfcNumber":"RFC5950","href":"https://www.rfc-editor.org/rfc/rfc5950","title":"Network Management Framework for MPLS-based Transport Networks","authors":["S. Mansfield, Ed.","E. Gray, Ed.","K. Lam, Ed."],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5951":{"rfcNumber":"RFC5951","href":"https://www.rfc-editor.org/rfc/rfc5951","title":"Network Management Requirements for MPLS-based Transport Networks","authors":["K. Lam","S. Mansfield","E. Gray"],"rawDate":"2010-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5951","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5952":{"rfcNumber":"RFC5952","href":"https://www.rfc-editor.org/rfc/rfc5952","title":"A Recommendation for IPv6 Address Text Representation","authors":["S. Kawamura","M. Kawashima"],"rawDate":"2010-08","status":"Proposed Standard","updates":["RFC4291"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5952","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5953":{"rfcNumber":"RFC5953","href":"https://www.rfc-editor.org/rfc/rfc5953","title":"Transport Layer Security (TLS) Transport Model for the Simple Network Management Protocol (SNMP)","authors":["W. Hardaker"],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC8996"],"obsoletedBy":["RFC6353"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5953","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5954":{"rfcNumber":"RFC5954","href":"https://www.rfc-editor.org/rfc/rfc5954","title":"Essential Correction for IPv6 ABNF and URI Comparison in RFC 3261","authors":["V. Gurbani, Ed.","B. Carpenter, Ed.","B. Tate, Ed."],"rawDate":"2010-08","status":"Proposed Standard","updates":["RFC3261"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5954","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5955":{"rfcNumber":"RFC5955","href":"https://www.rfc-editor.org/rfc/rfc5955","title":"The application/timestamped-data Media Type","authors":["A. Santoni"],"rawDate":"2010-08","status":"Informational","updates":["RFC5544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5956":{"rfcNumber":"RFC5956","href":"https://www.rfc-editor.org/rfc/rfc5956","title":"Forward Error Correction Grouping Semantics in the Session Description Protocol","authors":["A. Begen"],"rawDate":"2010-09","status":"Proposed Standard","obsoletes":["RFC4756"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5957":{"rfcNumber":"RFC5957","href":"https://www.rfc-editor.org/rfc/rfc5957","title":"Display-Based Address Sorting for the IMAP4 SORT Extension","authors":["D. Karp"],"rawDate":"2010-07","status":"Proposed Standard","updates":["RFC5256"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5958":{"rfcNumber":"RFC5958","href":"https://www.rfc-editor.org/rfc/rfc5958","title":"Asymmetric Key Packages","authors":["S. Turner"],"rawDate":"2010-08","status":"Proposed Standard","obsoletes":["RFC5208"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5958","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5959":{"rfcNumber":"RFC5959","href":"https://www.rfc-editor.org/rfc/rfc5959","title":"Algorithms for Asymmetric Key Package Content Type","authors":["S. Turner"],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC6162"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc596":{"aliasOf":"rfc0596"},"rfc5960":{"rfcNumber":"RFC5960","href":"https://www.rfc-editor.org/rfc/rfc5960","title":"MPLS Transport Profile Data Plane Architecture","authors":["D. Frost, Ed.","S. Bryant, Ed.","M. Bocci, Ed."],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC7274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5960","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5961":{"rfcNumber":"RFC5961","href":"https://www.rfc-editor.org/rfc/rfc5961","title":"Improving TCP's Robustness to Blind In-Window Attacks","authors":["A. Ramaiah","R. Stewart","M. Dalal"],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC9293"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5961","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5962":{"rfcNumber":"RFC5962","href":"https://www.rfc-editor.org/rfc/rfc5962","title":"Dynamic Extensions to the Presence Information Data Format Location Object (PIDF-LO)","authors":["H. Schulzrinne","V. Singh","H. Tschofenig","M. Thomson"],"rawDate":"2010-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5963":{"rfcNumber":"RFC5963","href":"https://www.rfc-editor.org/rfc/rfc5963","title":"IPv6 Deployment in Internet Exchange Points (IXPs)","authors":["R. Gagliano"],"rawDate":"2010-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5964":{"rfcNumber":"RFC5964","href":"https://www.rfc-editor.org/rfc/rfc5964","title":"Specifying Holes in Location-to-Service Translation (LoST) Service Boundaries","authors":["J. Winterbottom","M. Thomson"],"rawDate":"2010-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5965":{"rfcNumber":"RFC5965","href":"https://www.rfc-editor.org/rfc/rfc5965","title":"An Extensible Format for Email Feedback Reports","authors":["Y. Shafranovich","J. Levine","M. Kucherawy"],"rawDate":"2010-08","status":"Proposed Standard","updatedBy":["RFC6650"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5965","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5966":{"rfcNumber":"RFC5966","href":"https://www.rfc-editor.org/rfc/rfc5966","title":"DNS Transport over TCP - Implementation Requirements","authors":["R. Bellis"],"rawDate":"2010-08","status":"Proposed Standard","obsoletedBy":["RFC7766"],"updates":["RFC1035","RFC1123"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5967":{"rfcNumber":"RFC5967","href":"https://www.rfc-editor.org/rfc/rfc5967","title":"The application/pkcs10 Media Type","authors":["S. Turner"],"rawDate":"2010-08","status":"Informational","updates":["RFC2986"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5968":{"rfcNumber":"RFC5968","href":"https://www.rfc-editor.org/rfc/rfc5968","title":"Guidelines for Extending the RTP Control Protocol (RTCP)","authors":["J. Ott","C. Perkins"],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5969":{"rfcNumber":"RFC5969","href":"https://www.rfc-editor.org/rfc/rfc5969","title":"IPv6 Rapid Deployment on IPv4 Infrastructures (6rd) -- Protocol Specification","authors":["W. Townsley","O. Troan"],"rawDate":"2010-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5969","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc597":{"aliasOf":"rfc0597"},"rfc5970":{"rfcNumber":"RFC5970","href":"https://www.rfc-editor.org/rfc/rfc5970","title":"DHCPv6 Options for Network Boot","authors":["T. Huth","J. Freimann","V. Zimmer","D. Thaler"],"rawDate":"2010-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5971":{"rfcNumber":"RFC5971","href":"https://www.rfc-editor.org/rfc/rfc5971","title":"GIST: General Internet Signalling Transport","authors":["H. Schulzrinne","R. Hancock"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5972":{"rfcNumber":"RFC5972","href":"https://www.rfc-editor.org/rfc/rfc5972","title":"General Internet Signaling Transport (GIST) State Machine","authors":["T. Tsenov","H. Tschofenig","X. Fu, Ed.","C. Aoun","E. Davies"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5973":{"rfcNumber":"RFC5973","href":"https://www.rfc-editor.org/rfc/rfc5973","title":"NAT/Firewall NSIS Signaling Layer Protocol (NSLP)","authors":["M. Stiemerling","H. Tschofenig","C. Aoun","E. Davies"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5974":{"rfcNumber":"RFC5974","href":"https://www.rfc-editor.org/rfc/rfc5974","title":"NSIS Signaling Layer Protocol (NSLP) for Quality-of-Service Signaling","authors":["J. Manner","G. Karagiannis","A. McDonald"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5975":{"rfcNumber":"RFC5975","href":"https://www.rfc-editor.org/rfc/rfc5975","title":"QSPEC Template for the Quality-of-Service NSIS Signaling Layer Protocol (NSLP)","authors":["G. Ash, Ed.","A. Bader, Ed.","C. Kappler, Ed.","D. Oran, Ed."],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5976":{"rfcNumber":"RFC5976","href":"https://www.rfc-editor.org/rfc/rfc5976","title":"Y.1541-QOSM: Model for Networks Using Y.1541 Quality-of-Service Classes","authors":["G. Ash","A. Morton","M. Dolly","P. Tarapore","C. Dvorak","Y. El Mghazli"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5977":{"rfcNumber":"RFC5977","href":"https://www.rfc-editor.org/rfc/rfc5977","title":"RMD-QOSM: The NSIS Quality-of-Service Model for Resource Management in Diffserv","authors":["A. Bader","L. Westberg","G. Karagiannis","C. Kappler","T. Phelan"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5978":{"rfcNumber":"RFC5978","href":"https://www.rfc-editor.org/rfc/rfc5978","title":"Using and Extending the NSIS Protocol Family","authors":["J. Manner","R. Bless","J. Loughney","E. Davies, Ed."],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5979":{"rfcNumber":"RFC5979","href":"https://www.rfc-editor.org/rfc/rfc5979","title":"NSIS Operation over IP Tunnels","authors":["C. Shen","H. Schulzrinne","S. Lee","J. Bang"],"rawDate":"2011-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc598":{"aliasOf":"rfc0598"},"rfc5980":{"rfcNumber":"RFC5980","href":"https://www.rfc-editor.org/rfc/rfc5980","title":"NSIS Protocol Operation in Mobile Environments","authors":["T. Sanda, Ed.","X. Fu","S. Jeong","J. Manner","H. Tschofenig"],"rawDate":"2011-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5981":{"rfcNumber":"RFC5981","href":"https://www.rfc-editor.org/rfc/rfc5981","title":"Authorization for NSIS Signaling Layer Protocols","authors":["J. Manner","M. Stiemerling","H. Tschofenig","R. Bless, Ed."],"rawDate":"2011-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5981","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5982":{"rfcNumber":"RFC5982","href":"https://www.rfc-editor.org/rfc/rfc5982","title":"IP Flow Information Export (IPFIX) Mediation: Problem Statement","authors":["A. Kobayashi, Ed.","B. Claise, Ed."],"rawDate":"2010-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5983":{"rfcNumber":"RFC5983","href":"https://www.rfc-editor.org/rfc/rfc5983","title":"Mailing Lists and Internationalized Email Addresses","authors":["R. Gellens"],"rawDate":"2010-10","status":"Experimental","obsoletedBy":["RFC6783"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5984":{"rfcNumber":"RFC5984","href":"https://www.rfc-editor.org/rfc/rfc5984","title":"Increasing Throughput in IP Networks with ESP-Based Forwarding: ESPBasedForwarding","authors":["K-M. Moller"],"rawDate":"2011-04-01","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5984","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5985":{"rfcNumber":"RFC5985","href":"https://www.rfc-editor.org/rfc/rfc5985","title":"HTTP-Enabled Location Delivery (HELD)","authors":["M. Barnes, Ed."],"rawDate":"2010-09","status":"Proposed Standard","updatedBy":["RFC7840"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5986":{"rfcNumber":"RFC5986","href":"https://www.rfc-editor.org/rfc/rfc5986","title":"Discovering the Local Location Information Server (LIS)","authors":["M. Thomson","J. Winterbottom"],"rawDate":"2010-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5986","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5987":{"rfcNumber":"RFC5987","href":"https://www.rfc-editor.org/rfc/rfc5987","title":"Character Set and Language Encoding for Hypertext Transfer Protocol (HTTP) Header Field Parameters","authors":["J. Reschke"],"rawDate":"2010-08","status":"Historic","obsoletedBy":["RFC8187"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5988":{"rfcNumber":"RFC5988","href":"https://www.rfc-editor.org/rfc/rfc5988","title":"Web Linking","authors":["M. Nottingham"],"rawDate":"2010-10","status":"Proposed Standard","obsoletedBy":["RFC8288"],"updates":["RFC4287"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5988","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5989":{"rfcNumber":"RFC5989","href":"https://www.rfc-editor.org/rfc/rfc5989","title":"A SIP Event Package for Subscribing to Changes to an HTTP Resource","authors":["A.B. Roach"],"rawDate":"2010-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc599":{"aliasOf":"rfc0599"},"rfc5990":{"rfcNumber":"RFC5990","href":"https://www.rfc-editor.org/rfc/rfc5990","title":"Use of the RSA-KEM Key Transport Algorithm in the Cryptographic Message Syntax (CMS)","authors":["J. Randall","B. Kaliski","J. Brainard","S. Turner"],"rawDate":"2010-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5990","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5991":{"rfcNumber":"RFC5991","href":"https://www.rfc-editor.org/rfc/rfc5991","title":"Teredo Security Updates","authors":["D. Thaler","S. Krishnan","J. Hoagland"],"rawDate":"2010-09","status":"Proposed Standard","updates":["RFC4380"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5992":{"rfcNumber":"RFC5992","href":"https://www.rfc-editor.org/rfc/rfc5992","title":"Internationalized Domain Names Registration and Administration Guidelines for European Languages Using Cyrillic","authors":["S. Sharikov","D. Miloshevic","J. Klensin"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5993":{"rfcNumber":"RFC5993","href":"https://www.rfc-editor.org/rfc/rfc5993","title":"RTP Payload Format for Global System for Mobile Communications Half Rate (GSM-HR)","authors":["X. Duan","S. Wang","M. Westerlund","K. Hellwig","I. Johansson"],"rawDate":"2010-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5994":{"rfcNumber":"RFC5994","href":"https://www.rfc-editor.org/rfc/rfc5994","title":"Application of Ethernet Pseudowires to MPLS Transport Networks","authors":["S. Bryant, Ed.","M. Morrow","G. Swallow","R. Cherukuri","T. Nadeau","N. Harrison","B. Niven-Jenkins"],"rawDate":"2010-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5994","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5995":{"rfcNumber":"RFC5995","href":"https://www.rfc-editor.org/rfc/rfc5995","title":"Using POST to Add Members to Web Distributed Authoring and Versioning (WebDAV) Collections","authors":["J. Reschke"],"rawDate":"2010-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5996":{"rfcNumber":"RFC5996","href":"https://www.rfc-editor.org/rfc/rfc5996","title":"Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["C. Kaufman","P. Hoffman","Y. Nir","P. Eronen"],"rawDate":"2010-09","status":"Proposed Standard","updatedBy":["RFC5998","RFC6989"],"obsoletedBy":["RFC7296"],"obsoletes":["RFC4306","RFC4718"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5996","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5997":{"rfcNumber":"RFC5997","href":"https://www.rfc-editor.org/rfc/rfc5997","title":"Use of Status-Server Packets in the Remote Authentication Dial In User Service (RADIUS) Protocol","authors":["A. DeKok"],"rawDate":"2010-08","status":"Informational","updates":["RFC2866"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=5997","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc5998":{"rfcNumber":"RFC5998","href":"https://www.rfc-editor.org/rfc/rfc5998","title":"An Extension for EAP-Only Authentication in IKEv2","authors":["P. Eronen","H. Tschofenig","Y. Sheffer"],"rawDate":"2010-09","status":"Proposed Standard","updates":["RFC5996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6":{"aliasOf":"rfc0006"},"rfc60":{"aliasOf":"rfc0060"},"rfc600":{"aliasOf":"rfc0600"},"rfc6001":{"rfcNumber":"RFC6001","href":"https://www.rfc-editor.org/rfc/rfc6001","title":"Generalized MPLS (GMPLS) Protocol Extensions for Multi-Layer and Multi-Region Networks (MLN/MRN)","authors":["D. Papadimitriou","M. Vigoureux","K. Shiomoto","D. Brungard","JL. Le Roux"],"rawDate":"2010-10","status":"Proposed Standard","updates":["RFC4202","RFC4203","RFC4206","RFC4874","RFC4974","RFC5307"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6002":{"rfcNumber":"RFC6002","href":"https://www.rfc-editor.org/rfc/rfc6002","title":"Generalized MPLS (GMPLS) Data Channel Switching Capable (DCSC) and Channel Set Label Extensions","authors":["L. Berger","D. Fedyk"],"rawDate":"2010-10","status":"Proposed Standard","updates":["RFC3471","RFC3473","RFC3945","RFC4202","RFC4203","RFC5307"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6003":{"rfcNumber":"RFC6003","href":"https://www.rfc-editor.org/rfc/rfc6003","title":"Ethernet Traffic Parameters","authors":["D. Papadimitriou"],"rawDate":"2010-10","status":"Proposed Standard","updates":["RFC3471","RFC3473"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6003","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6004":{"rfcNumber":"RFC6004","href":"https://www.rfc-editor.org/rfc/rfc6004","title":"Generalized MPLS (GMPLS) Support for Metro Ethernet Forum and G.8011 Ethernet Service Switching","authors":["L. Berger","D. Fedyk"],"rawDate":"2010-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6005":{"rfcNumber":"RFC6005","href":"https://www.rfc-editor.org/rfc/rfc6005","title":"Generalized MPLS (GMPLS) Support for Metro Ethernet Forum and G.8011 User Network Interface (UNI)","authors":["L. Berger","D. Fedyk"],"rawDate":"2010-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6006":{"rfcNumber":"RFC6006","href":"https://www.rfc-editor.org/rfc/rfc6006","title":"Extensions to the Path Computation Element Communication Protocol (PCEP) for Point-to-Multipoint Traffic Engineering Label Switched Paths","authors":["Q. Zhao, Ed.","D. King, Ed.","F. Verhaeghe","T. Takeda","Z. Ali","J. Meuric"],"rawDate":"2010-09","status":"Proposed Standard","obsoletedBy":["RFC8306"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6006","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6007":{"rfcNumber":"RFC6007","href":"https://www.rfc-editor.org/rfc/rfc6007","title":"Use of the Synchronization VECtor (SVEC) List for Synchronized Dependent Path Computations","authors":["I. Nishioka","D. King"],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6008":{"rfcNumber":"RFC6008","href":"https://www.rfc-editor.org/rfc/rfc6008","title":"Authentication-Results Registration for Differentiating among Cryptographic Results","authors":["M. Kucherawy"],"rawDate":"2010-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6009":{"rfcNumber":"RFC6009","href":"https://www.rfc-editor.org/rfc/rfc6009","title":"Sieve Email Filtering: Delivery Status Notifications and Deliver-By Extensions","authors":["N. Freed"],"rawDate":"2010-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6009","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc601":{"aliasOf":"rfc0601"},"rfc6010":{"rfcNumber":"RFC6010","href":"https://www.rfc-editor.org/rfc/rfc6010","title":"Cryptographic Message Syntax (CMS) Content Constraints Extension","authors":["R. Housley","S. Ashmore","C. Wallace"],"rawDate":"2010-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6010","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6011":{"rfcNumber":"RFC6011","href":"https://www.rfc-editor.org/rfc/rfc6011","title":"Session Initiation Protocol (SIP) User Agent Configuration","authors":["S. Lawrence, Ed.","J. Elwell"],"rawDate":"2010-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6011","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6012":{"rfcNumber":"RFC6012","href":"https://www.rfc-editor.org/rfc/rfc6012","title":"Datagram Transport Layer Security (DTLS) Transport Mapping for Syslog","authors":["J. Salowey","T. Petch","R. Gerhards","H. Feng"],"rawDate":"2010-10","status":"Proposed Standard","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6013":{"rfcNumber":"RFC6013","href":"https://www.rfc-editor.org/rfc/rfc6013","title":"TCP Cookie Transactions (TCPCT)","authors":["W. Simpson"],"rawDate":"2011-01","status":"Historic","obsoletedBy":["RFC7805"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6014":{"rfcNumber":"RFC6014","href":"https://www.rfc-editor.org/rfc/rfc6014","title":"Cryptographic Algorithm Identifier Allocation for DNSSEC","authors":["P. Hoffman"],"rawDate":"2010-11","status":"Proposed Standard","updatedBy":["RFC9157"],"updates":["RFC4033","RFC4034","RFC4035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6015":{"rfcNumber":"RFC6015","href":"https://www.rfc-editor.org/rfc/rfc6015","title":"RTP Payload Format for 1-D Interleaved Parity Forward Error Correction (FEC)","authors":["A. Begen"],"rawDate":"2010-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6016":{"rfcNumber":"RFC6016","href":"https://www.rfc-editor.org/rfc/rfc6016","title":"Support for the Resource Reservation Protocol (RSVP) in Layer 3 VPNs","authors":["B. Davie","F. Le Faucheur","A. Narayanan"],"rawDate":"2010-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6016","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6017":{"rfcNumber":"RFC6017","href":"https://www.rfc-editor.org/rfc/rfc6017","title":"Electronic Data Interchange - Internet Integration (EDIINT) Features Header Field","authors":["K. Meadors, Ed."],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6018":{"rfcNumber":"RFC6018","href":"https://www.rfc-editor.org/rfc/rfc6018","title":"IPv4 and IPv6 Greynets","authors":["F. Baker","W. Harrop","G. Armitage"],"rawDate":"2010-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6019":{"rfcNumber":"RFC6019","href":"https://www.rfc-editor.org/rfc/rfc6019","title":"BinaryTime: An Alternate Format for Representing Date and Time in ASN.1","authors":["R. Housley"],"rawDate":"2010-09","status":"Proposed Standard","obsoletes":["RFC4049"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc602":{"aliasOf":"rfc0602"},"rfc6020":{"rfcNumber":"RFC6020","href":"https://www.rfc-editor.org/rfc/rfc6020","title":"YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)","authors":["M. Bjorklund, Ed."],"rawDate":"2010-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6020","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6021":{"rfcNumber":"RFC6021","href":"https://www.rfc-editor.org/rfc/rfc6021","title":"Common YANG Data Types","authors":["J. Schoenwaelder, Ed."],"rawDate":"2010-10","status":"Proposed Standard","obsoletedBy":["RFC6991"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6022":{"rfcNumber":"RFC6022","href":"https://www.rfc-editor.org/rfc/rfc6022","title":"YANG Module for NETCONF Monitoring","authors":["M. Scott","M. Bjorklund"],"rawDate":"2010-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6022","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6023":{"rfcNumber":"RFC6023","href":"https://www.rfc-editor.org/rfc/rfc6023","title":"A Childless Initiation of the Internet Key Exchange Version 2 (IKEv2) Security Association (SA)","authors":["Y. Nir","H. Tschofenig","H. Deng","R. Singh"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6024":{"rfcNumber":"RFC6024","href":"https://www.rfc-editor.org/rfc/rfc6024","title":"Trust Anchor Management Requirements","authors":["R. Reddy","C. Wallace"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6025":{"rfcNumber":"RFC6025","href":"https://www.rfc-editor.org/rfc/rfc6025","title":"ASN.1 Translation","authors":["C. Wallace","C. Gardiner"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6026":{"rfcNumber":"RFC6026","href":"https://www.rfc-editor.org/rfc/rfc6026","title":"Correct Transaction Handling for 2xx Responses to Session Initiation Protocol (SIP) INVITE Requests","authors":["R. Sparks","T. Zourzouvillys"],"rawDate":"2010-09","status":"Proposed Standard","updates":["RFC3261"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6026","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6027":{"rfcNumber":"RFC6027","href":"https://www.rfc-editor.org/rfc/rfc6027","title":"IPsec Cluster Problem Statement","authors":["Y. Nir"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6028":{"rfcNumber":"RFC6028","href":"https://www.rfc-editor.org/rfc/rfc6028","title":"Host Identity Protocol (HIP) Multi-Hop Routing Extension","authors":["G. Camarillo","A. Keranen"],"rawDate":"2010-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6029":{"rfcNumber":"RFC6029","href":"https://www.rfc-editor.org/rfc/rfc6029","title":"A Survey on Research on the Application-Layer Traffic Optimization (ALTO) Problem","authors":["I. Rimac","V. Hilt","M. Tomsu","V. Gurbani","E. Marocco"],"rawDate":"2010-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6029","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc603":{"aliasOf":"rfc0603"},"rfc6030":{"rfcNumber":"RFC6030","href":"https://www.rfc-editor.org/rfc/rfc6030","title":"Portable Symmetric Key Container (PSKC)","authors":["P. Hoyer","M. Pei","S. Machani"],"rawDate":"2010-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6030","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6031":{"rfcNumber":"RFC6031","href":"https://www.rfc-editor.org/rfc/rfc6031","title":"Cryptographic Message Syntax (CMS) Symmetric Key Package Content Type","authors":["S. Turner","R. Housley"],"rawDate":"2010-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6031","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6032":{"rfcNumber":"RFC6032","href":"https://www.rfc-editor.org/rfc/rfc6032","title":"Cryptographic Message Syntax (CMS) Encrypted Key Package Content Type","authors":["S. Turner","R. Housley"],"rawDate":"2010-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6033":{"rfcNumber":"RFC6033","href":"https://www.rfc-editor.org/rfc/rfc6033","title":"Algorithms for Cryptographic Message Syntax (CMS) Encrypted Key Package Content Type","authors":["S. Turner"],"rawDate":"2010-12","status":"Proposed Standard","updatedBy":["RFC6161"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6034":{"rfcNumber":"RFC6034","href":"https://www.rfc-editor.org/rfc/rfc6034","title":"Unicast-Prefix-Based IPv4 Multicast Addresses","authors":["D. Thaler"],"rawDate":"2010-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6035":{"rfcNumber":"RFC6035","href":"https://www.rfc-editor.org/rfc/rfc6035","title":"Session Initiation Protocol Event Package for Voice Quality Reporting","authors":["A. Pendleton","A. Clark","A. Johnston","H. Sinnreich"],"rawDate":"2010-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6035","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6036":{"rfcNumber":"RFC6036","href":"https://www.rfc-editor.org/rfc/rfc6036","title":"Emerging Service Provider Scenarios for IPv6 Deployment","authors":["B. Carpenter","S. Jiang"],"rawDate":"2010-10","status":"Informational","obsoletedBy":["RFC9386"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6036","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6037":{"rfcNumber":"RFC6037","href":"https://www.rfc-editor.org/rfc/rfc6037","title":"Cisco Systems' Solution for Multicast in BGP/MPLS IP VPNs","authors":["E. Rosen, Ed.","Y. Cai, Ed.","IJ. Wijnands"],"rawDate":"2010-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6038":{"rfcNumber":"RFC6038","href":"https://www.rfc-editor.org/rfc/rfc6038","title":"Two-Way Active Measurement Protocol (TWAMP) Reflect Octets and Symmetrical Size Features","authors":["A. Morton","L. Ciavattone"],"rawDate":"2010-10","status":"Proposed Standard","updates":["RFC5357"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6038","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6039":{"rfcNumber":"RFC6039","href":"https://www.rfc-editor.org/rfc/rfc6039","title":"Issues with Existing Cryptographic Protection Methods for Routing Protocols","authors":["V. Manral","M. Bhatia","J. Jaeggli","R. White"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc604":{"aliasOf":"rfc0604"},"rfc6040":{"rfcNumber":"RFC6040","href":"https://www.rfc-editor.org/rfc/rfc6040","title":"Tunnelling of Explicit Congestion Notification","authors":["B. Briscoe"],"rawDate":"2010-11","status":"Proposed Standard","updates":["RFC3168","RFC4301","RFC4774"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6041":{"rfcNumber":"RFC6041","href":"https://www.rfc-editor.org/rfc/rfc6041","title":"Forwarding and Control Element Separation (ForCES) Applicability Statement","authors":["A. Crouch","H. Khosravi","A. Doria, Ed.","X. Wang","K. Ogawa"],"rawDate":"2010-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6042":{"rfcNumber":"RFC6042","href":"https://www.rfc-editor.org/rfc/rfc6042","title":"Transport Layer Security (TLS) Authorization Using KeyNote","authors":["A. Keromytis"],"rawDate":"2010-10","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6043":{"rfcNumber":"RFC6043","href":"https://www.rfc-editor.org/rfc/rfc6043","title":"MIKEY-TICKET: Ticket-Based Modes of Key Distribution in Multimedia Internet KEYing (MIKEY)","authors":["J. Mattsson","T. Tian"],"rawDate":"2011-03","status":"Informational","updatedBy":["RFC6309"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6044":{"rfcNumber":"RFC6044","href":"https://www.rfc-editor.org/rfc/rfc6044","title":"Mapping and Interworking of Diversion Information between Diversion and History-Info Headers in the Session Initiation Protocol (SIP)","authors":["M. Mohali"],"rawDate":"2010-10","status":"Informational","obsoletedBy":["RFC7544"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6044","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6045":{"rfcNumber":"RFC6045","href":"https://www.rfc-editor.org/rfc/rfc6045","title":"Real-time Inter-network Defense (RID)","authors":["K. Moriarty"],"rawDate":"2010-11","status":"Informational","obsoletedBy":["RFC6545"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6045","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6046":{"rfcNumber":"RFC6046","href":"https://www.rfc-editor.org/rfc/rfc6046","title":"Transport of Real-time Inter-network Defense (RID) Messages","authors":["K. Moriarty","B. Trammell"],"rawDate":"2010-11","status":"Informational","obsoletedBy":["RFC6546"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6047":{"rfcNumber":"RFC6047","href":"https://www.rfc-editor.org/rfc/rfc6047","title":"iCalendar Message-Based Interoperability Protocol (iMIP)","authors":["A. Melnikov, Ed."],"rawDate":"2010-12","status":"Proposed Standard","obsoletes":["RFC2447"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6047","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6048":{"rfcNumber":"RFC6048","href":"https://www.rfc-editor.org/rfc/rfc6048","title":"Network News Transfer Protocol (NNTP) Additions to LIST Command","authors":["J. Elie"],"rawDate":"2010-11","status":"Proposed Standard","updates":["RFC2980","RFC3977"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6049":{"rfcNumber":"RFC6049","href":"https://www.rfc-editor.org/rfc/rfc6049","title":"Spatial Composition of Metrics","authors":["A. Morton","E. Stephan"],"rawDate":"2011-01","status":"Proposed Standard","updatedBy":["RFC6248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6050":{"rfcNumber":"RFC6050","href":"https://www.rfc-editor.org/rfc/rfc6050","title":"A Session Initiation Protocol (SIP) Extension for the Identification of Services","authors":["K. Drage"],"rawDate":"2010-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6051":{"rfcNumber":"RFC6051","href":"https://www.rfc-editor.org/rfc/rfc6051","title":"Rapid Synchronisation of RTP Flows","authors":["C. Perkins","T. Schierl"],"rawDate":"2010-11","status":"Proposed Standard","updates":["RFC3550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6052":{"rfcNumber":"RFC6052","href":"https://www.rfc-editor.org/rfc/rfc6052","title":"IPv6 Addressing of IPv4/IPv6 Translators","authors":["C. Bao","C. Huitema","M. Bagnulo","M. Boucadair","X. Li"],"rawDate":"2010-10","status":"Proposed Standard","updates":["RFC4291"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6052","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6053":{"rfcNumber":"RFC6053","href":"https://www.rfc-editor.org/rfc/rfc6053","title":"Implementation Report for Forwarding and Control Element Separation (ForCES)","authors":["E. Haleplidis","K. Ogawa","W. Wang","J. Hadi Salim"],"rawDate":"2010-11","status":"Informational","updatedBy":["RFC6984"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6054":{"rfcNumber":"RFC6054","href":"https://www.rfc-editor.org/rfc/rfc6054","title":"Using Counter Modes with Encapsulating Security Payload (ESP) and Authentication Header (AH) to Protect Group Traffic","authors":["D. McGrew","B. Weis"],"rawDate":"2010-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6055":{"rfcNumber":"RFC6055","href":"https://www.rfc-editor.org/rfc/rfc6055","title":"IAB Thoughts on Encodings for Internationalized Domain Names","authors":["D. Thaler","J. Klensin","S. Cheshire"],"rawDate":"2011-02","status":"Informational","updates":["RFC2130"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6055","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6056":{"rfcNumber":"RFC6056","href":"https://www.rfc-editor.org/rfc/rfc6056","title":"Recommendations for Transport-Protocol Port Randomization","authors":["M. Larsen","F. Gont"],"rawDate":"2011-01","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6056","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6057":{"rfcNumber":"RFC6057","href":"https://www.rfc-editor.org/rfc/rfc6057","title":"Comcast's Protocol-Agnostic Congestion Management System","authors":["C. Bastian","T. Klieber","J. Livingood","J. Mills","R. Woundy"],"rawDate":"2010-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6058":{"rfcNumber":"RFC6058","href":"https://www.rfc-editor.org/rfc/rfc6058","title":"Transient Binding for Proxy Mobile IPv6","authors":["M. Liebsch, Ed.","A. Muhanna","O. Blume"],"rawDate":"2011-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6059":{"rfcNumber":"RFC6059","href":"https://www.rfc-editor.org/rfc/rfc6059","title":"Simple Procedures for Detecting Network Attachment in IPv6","authors":["S. Krishnan","G. Daley"],"rawDate":"2010-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc606":{"aliasOf":"rfc0606"},"rfc6060":{"rfcNumber":"RFC6060","href":"https://www.rfc-editor.org/rfc/rfc6060","title":"Generalized Multiprotocol Label Switching (GMPLS) Control of Ethernet Provider Backbone Traffic Engineering (PBB-TE)","authors":["D. Fedyk","H. Shah","N. Bitar","A. Takacs"],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6061":{"rfcNumber":"RFC6061","href":"https://www.rfc-editor.org/rfc/rfc6061","title":"Uniform Resource Name (URN) Namespace for the National Emergency Number Association (NENA)","authors":["B. Rosen"],"rawDate":"2011-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6062":{"rfcNumber":"RFC6062","href":"https://www.rfc-editor.org/rfc/rfc6062","title":"Traversal Using Relays around NAT (TURN) Extensions for TCP Allocations","authors":["S. Perreault, Ed.","J. Rosenberg"],"rawDate":"2010-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6062","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6063":{"rfcNumber":"RFC6063","href":"https://www.rfc-editor.org/rfc/rfc6063","title":"Dynamic Symmetric Key Provisioning Protocol (DSKPP)","authors":["A. Doherty","M. Pei","S. Machani","M. Nystrom"],"rawDate":"2010-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6063","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6064":{"rfcNumber":"RFC6064","href":"https://www.rfc-editor.org/rfc/rfc6064","title":"SDP and RTSP Extensions Defined for 3GPP Packet-Switched Streaming Service and Multimedia Broadcast/Multicast Service","authors":["M. Westerlund","P. Frojdh"],"rawDate":"2011-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6065":{"rfcNumber":"RFC6065","href":"https://www.rfc-editor.org/rfc/rfc6065","title":"Using Authentication, Authorization, and Accounting Services to Dynamically Provision View-Based Access Control Model User-to-Group Mappings","authors":["K. Narayan","D. Nelson","R. Presuhn, Ed."],"rawDate":"2010-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6066":{"rfcNumber":"RFC6066","href":"https://www.rfc-editor.org/rfc/rfc6066","title":"Transport Layer Security (TLS) Extensions: Extension Definitions","authors":["D. Eastlake 3rd"],"rawDate":"2011-01","status":"Proposed Standard","updatedBy":["RFC8446","RFC8449","RFC9325"],"obsoletes":["RFC4366"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6066","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6067":{"rfcNumber":"RFC6067","href":"https://www.rfc-editor.org/rfc/rfc6067","title":"BCP 47 Extension U","authors":["M. Davis","A. Phillips","Y. Umaoka"],"rawDate":"2010-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6067","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6068":{"rfcNumber":"RFC6068","href":"https://www.rfc-editor.org/rfc/rfc6068","title":"The 'mailto' URI Scheme","authors":["M. Duerst","L. Masinter","J. Zawinski"],"rawDate":"2010-10","status":"Proposed Standard","obsoletes":["RFC2368"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6068","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6069":{"rfcNumber":"RFC6069","href":"https://www.rfc-editor.org/rfc/rfc6069","title":"Making TCP More Robust to Long Connectivity Disruptions (TCP-LCD)","authors":["A. Zimmermann","A. Hannemann"],"rawDate":"2010-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc607":{"aliasOf":"rfc0607"},"rfc6070":{"rfcNumber":"RFC6070","href":"https://www.rfc-editor.org/rfc/rfc6070","title":"PKCS #5: Password-Based Key Derivation Function 2 (PBKDF2) Test Vectors","authors":["S. Josefsson"],"rawDate":"2011-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6071":{"rfcNumber":"RFC6071","href":"https://www.rfc-editor.org/rfc/rfc6071","title":"IP Security (IPsec) and Internet Key Exchange (IKE) Document Roadmap","authors":["S. Frankel","S. Krishnan"],"rawDate":"2011-02","status":"Informational","obsoletes":["RFC2411"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6072":{"rfcNumber":"RFC6072","href":"https://www.rfc-editor.org/rfc/rfc6072","title":"Certificate Management Service for the Session Initiation Protocol (SIP)","authors":["C. Jennings","J. Fischl, Ed."],"rawDate":"2011-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6072","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6073":{"rfcNumber":"RFC6073","href":"https://www.rfc-editor.org/rfc/rfc6073","title":"Segmented Pseudowire","authors":["L. Martini","C. Metz","T. Nadeau","M. Bocci","M. Aissaoui"],"rawDate":"2011-01","status":"Proposed Standard","updatedBy":["RFC6723","RFC7267"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6074":{"rfcNumber":"RFC6074","href":"https://www.rfc-editor.org/rfc/rfc6074","title":"Provisioning, Auto-Discovery, and Signaling in Layer 2 Virtual Private Networks (L2VPNs)","authors":["E. Rosen","B. Davie","V. Radoaca","W. Luo"],"rawDate":"2011-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6075":{"rfcNumber":"RFC6075","href":"https://www.rfc-editor.org/rfc/rfc6075","title":"The Internet Assigned Number Authority (IANA) Application Configuration Access Protocol (ACAP) Vendor Subtrees Registry","authors":["D. Cridland"],"rawDate":"2010-12","status":"Proposed Standard","updates":["RFC2244"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6076":{"rfcNumber":"RFC6076","href":"https://www.rfc-editor.org/rfc/rfc6076","title":"Basic Telephony SIP End-to-End Performance Metrics","authors":["D. Malas","A. Morton"],"rawDate":"2011-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6077":{"rfcNumber":"RFC6077","href":"https://www.rfc-editor.org/rfc/rfc6077","title":"Open Research Issues in Internet Congestion Control","authors":["D. Papadimitriou, Ed.","M. Welzl","M. Scharf","B. Briscoe"],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6078":{"rfcNumber":"RFC6078","href":"https://www.rfc-editor.org/rfc/rfc6078","title":"Host Identity Protocol (HIP) Immediate Carriage and Conveyance of Upper-Layer Protocol Signaling (HICCUPS)","authors":["G. Camarillo","J. Melen"],"rawDate":"2011-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6079":{"rfcNumber":"RFC6079","href":"https://www.rfc-editor.org/rfc/rfc6079","title":"HIP BONE: Host Identity Protocol (HIP) Based Overlay Networking Environment (BONE)","authors":["G. Camarillo","P. Nikander","J. Hautakorpi","A. Keranen","A. Johnston"],"rawDate":"2011-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc608":{"aliasOf":"rfc0608"},"rfc6080":{"rfcNumber":"RFC6080","href":"https://www.rfc-editor.org/rfc/rfc6080","title":"A Framework for Session Initiation Protocol User Agent Profile Delivery","authors":["D. Petrie","S. Channabasappa, Ed."],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6081":{"rfcNumber":"RFC6081","href":"https://www.rfc-editor.org/rfc/rfc6081","title":"Teredo Extensions","authors":["D. Thaler"],"rawDate":"2011-01","status":"Proposed Standard","updates":["RFC4380"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6081","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6082":{"rfcNumber":"RFC6082","href":"https://www.rfc-editor.org/rfc/rfc6082","title":"Deprecating Unicode Language Tag Characters: RFC 2482 is Historic","authors":["K. Whistler","G. Adams","M. Duerst","R. Presuhn, Ed.","J. Klensin"],"rawDate":"2010-11","status":"Informational","obsoletes":["RFC2482"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6083":{"rfcNumber":"RFC6083","href":"https://www.rfc-editor.org/rfc/rfc6083","title":"Datagram Transport Layer Security (DTLS) for Stream Control Transmission Protocol (SCTP)","authors":["M. Tuexen","R. Seggelmann","E. Rescorla"],"rawDate":"2011-01","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6083","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6084":{"rfcNumber":"RFC6084","href":"https://www.rfc-editor.org/rfc/rfc6084","title":"General Internet Signaling Transport (GIST) over Stream Control Transmission Protocol (SCTP) and Datagram Transport Layer Security (DTLS)","authors":["X. Fu","C. Dickmann","J. Crowcroft"],"rawDate":"2011-01","status":"Experimental","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6085":{"rfcNumber":"RFC6085","href":"https://www.rfc-editor.org/rfc/rfc6085","title":"Address Mapping of IPv6 Multicast Packets on Ethernet","authors":["S. Gundavelli","M. Townsley","O. Troan","W. Dec"],"rawDate":"2011-01","status":"Proposed Standard","updates":["RFC2464"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6086":{"rfcNumber":"RFC6086","href":"https://www.rfc-editor.org/rfc/rfc6086","title":"Session Initiation Protocol (SIP) INFO Method and Package Framework","authors":["C. Holmberg","E. Burger","H. Kaplan"],"rawDate":"2011-01","status":"Proposed Standard","obsoletes":["RFC2976"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6086","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6087":{"rfcNumber":"RFC6087","href":"https://www.rfc-editor.org/rfc/rfc6087","title":"Guidelines for Authors and Reviewers of YANG Data Model Documents","authors":["A. Bierman"],"rawDate":"2011-01","status":"Informational","obsoletedBy":["RFC8407"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6088":{"rfcNumber":"RFC6088","href":"https://www.rfc-editor.org/rfc/rfc6088","title":"Traffic Selectors for Flow Bindings","authors":["G. Tsirtsis","G. Giarreta","H. Soliman","N. Montavont"],"rawDate":"2011-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6089":{"rfcNumber":"RFC6089","href":"https://www.rfc-editor.org/rfc/rfc6089","title":"Flow Bindings in Mobile IPv6 and Network Mobility (NEMO) Basic Support","authors":["G. Tsirtsis","H. Soliman","N. Montavont","G. Giaretta","K. Kuladinithi"],"rawDate":"2011-01","status":"Proposed Standard","updates":["RFC5648"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc609":{"aliasOf":"rfc0609"},"rfc6090":{"rfcNumber":"RFC6090","href":"https://www.rfc-editor.org/rfc/rfc6090","title":"Fundamental Elliptic Curve Cryptography Algorithms","authors":["D. McGrew","K. Igoe","M. Salter"],"rawDate":"2011-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6090","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6091":{"rfcNumber":"RFC6091","href":"https://www.rfc-editor.org/rfc/rfc6091","title":"Using OpenPGP Keys for Transport Layer Security (TLS) Authentication","authors":["N. Mavrogiannopoulos","D. Gillmor"],"rawDate":"2011-02","status":"Informational","obsoletes":["RFC5081"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6092":{"rfcNumber":"RFC6092","href":"https://www.rfc-editor.org/rfc/rfc6092","title":"Recommended Simple Security Capabilities in Customer Premises Equipment (CPE) for Providing Residential IPv6 Internet Service","authors":["J. Woodyatt, Ed."],"rawDate":"2011-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6092","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6093":{"rfcNumber":"RFC6093","href":"https://www.rfc-editor.org/rfc/rfc6093","title":"On the Implementation of the TCP Urgent Mechanism","authors":["F. Gont","A. Yourtchenko"],"rawDate":"2011-01","status":"Proposed Standard","obsoletedBy":["RFC9293"],"updates":["RFC0793","RFC1011","RFC1122"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6093","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6094":{"rfcNumber":"RFC6094","href":"https://www.rfc-editor.org/rfc/rfc6094","title":"Summary of Cryptographic Authentication Algorithm Implementation Requirements for Routing Protocols","authors":["M. Bhatia","V. Manral"],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6095":{"rfcNumber":"RFC6095","href":"https://www.rfc-editor.org/rfc/rfc6095","title":"Extending YANG with Language Abstractions","authors":["B. Linowski","M. Ersue","S. Kuryla"],"rawDate":"2011-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6096":{"rfcNumber":"RFC6096","href":"https://www.rfc-editor.org/rfc/rfc6096","title":"Stream Control Transmission Protocol (SCTP) Chunk Flags Registration","authors":["M. Tuexen","R. Stewart"],"rawDate":"2011-01","status":"Proposed Standard","obsoletedBy":["RFC9260"],"updates":["RFC4960"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6097":{"rfcNumber":"RFC6097","href":"https://www.rfc-editor.org/rfc/rfc6097","title":"Local Mobility Anchor (LMA) Discovery for Proxy Mobile IPv6","authors":["J. Korhonen","V. Devarapalli"],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6098":{"rfcNumber":"RFC6098","href":"https://www.rfc-editor.org/rfc/rfc6098","title":"Generic Notification Message for Mobile IPv4","authors":["H. Deng","H. Levkowetz","V. Devarapalli","S. Gundavelli","B. Haley"],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc61":{"aliasOf":"rfc0061"},"rfc610":{"aliasOf":"rfc0610"},"rfc6101":{"rfcNumber":"RFC6101","href":"https://www.rfc-editor.org/rfc/rfc6101","title":"The Secure Sockets Layer (SSL) Protocol Version 3.0","authors":["A. Freier","P. Karlton","P. Kocher"],"rawDate":"2011-08","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6104":{"rfcNumber":"RFC6104","href":"https://www.rfc-editor.org/rfc/rfc6104","title":"Rogue IPv6 Router Advertisement Problem Statement","authors":["T. Chown","S. Venaas"],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6105":{"rfcNumber":"RFC6105","href":"https://www.rfc-editor.org/rfc/rfc6105","title":"IPv6 Router Advertisement Guard","authors":["E. Levy-Abegnoli","G. Van de Velde","C. Popoviciu","J. Mohacsi"],"rawDate":"2011-02","status":"Informational","updatedBy":["RFC7113"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6106":{"rfcNumber":"RFC6106","href":"https://www.rfc-editor.org/rfc/rfc6106","title":"IPv6 Router Advertisement Options for DNS Configuration","authors":["J. Jeong","S. Park","L. Beloeil","S. Madanapalli"],"rawDate":"2010-11","status":"Proposed Standard","obsoletedBy":["RFC8106"],"obsoletes":["RFC5006"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6106","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6107":{"rfcNumber":"RFC6107","href":"https://www.rfc-editor.org/rfc/rfc6107","title":"Procedures for Dynamically Signaled Hierarchical Label Switched Paths","authors":["K. Shiomoto, Ed.","A. Farrel, Ed."],"rawDate":"2011-02","status":"Proposed Standard","updates":["RFC3477","RFC4206"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6107","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6108":{"rfcNumber":"RFC6108","href":"https://www.rfc-editor.org/rfc/rfc6108","title":"Comcast's Web Notification System Design","authors":["C. Chung","A. Kasyanov","J. Livingood","N. Mody","B. Van Lieu"],"rawDate":"2011-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6109":{"rfcNumber":"RFC6109","href":"https://www.rfc-editor.org/rfc/rfc6109","title":"La Posta Elettronica Certificata - Italian Certified Electronic Mail","authors":["C. Petrucci","F. Gennai","A. Shahin","A. Vinciarelli"],"rawDate":"2011-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6109","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc611":{"aliasOf":"rfc0611"},"rfc6110":{"rfcNumber":"RFC6110","href":"https://www.rfc-editor.org/rfc/rfc6110","title":"Mapping YANG to Document Schema Definition Languages and Validating NETCONF Content","authors":["L. Lhotka, Ed."],"rawDate":"2011-02","status":"Proposed Standard","updatedBy":["RFC7952"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6110","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6111":{"rfcNumber":"RFC6111","href":"https://www.rfc-editor.org/rfc/rfc6111","title":"Additional Kerberos Naming Constraints","authors":["L. Zhu"],"rawDate":"2011-04","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6112":{"rfcNumber":"RFC6112","href":"https://www.rfc-editor.org/rfc/rfc6112","title":"Anonymity Support for Kerberos","authors":["L. Zhu","P. Leach","S. Hartman"],"rawDate":"2011-04","status":"Historic","obsoletedBy":["RFC8062"],"updates":["RFC4120","RFC4121","RFC4556"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6112","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6113":{"rfcNumber":"RFC6113","href":"https://www.rfc-editor.org/rfc/rfc6113","title":"A Generalized Framework for Kerberos Pre-Authentication","authors":["S. Hartman","L. Zhu"],"rawDate":"2011-04","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6114":{"rfcNumber":"RFC6114","href":"https://www.rfc-editor.org/rfc/rfc6114","title":"The 128-Bit Blockcipher CLEFIA","authors":["M. Katagi","S. Moriai"],"rawDate":"2011-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6115":{"rfcNumber":"RFC6115","href":"https://www.rfc-editor.org/rfc/rfc6115","title":"Recommendation for a Routing Architecture","authors":["T. Li, Ed."],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6116":{"rfcNumber":"RFC6116","href":"https://www.rfc-editor.org/rfc/rfc6116","title":"The E.164 to Uniform Resource Identifiers (URI) Dynamic Delegation Discovery System (DDDS) Application (ENUM)","authors":["S. Bradner","L. Conroy","K. Fujiwara"],"rawDate":"2011-03","status":"Proposed Standard","obsoletes":["RFC3761"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6117":{"rfcNumber":"RFC6117","href":"https://www.rfc-editor.org/rfc/rfc6117","title":"IANA Registration of Enumservices: Guide, Template, and IANA Considerations","authors":["B. Hoeneisen","A. Mayrhofer","J. Livingood"],"rawDate":"2011-03","status":"Proposed Standard","obsoletes":["RFC3761"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6118":{"rfcNumber":"RFC6118","href":"https://www.rfc-editor.org/rfc/rfc6118","title":"Update of Legacy IANA Registrations of Enumservices","authors":["B. Hoeneisen","A. Mayrhofer"],"rawDate":"2011-03","status":"Proposed Standard","updates":["RFC3762","RFC3764","RFC3953","RFC4143","RFC4002","RFC4238","RFC4355","RFC4415","RFC4769","RFC4969","RFC4979","RFC5028","RFC5278","RFC5333"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6119":{"rfcNumber":"RFC6119","href":"https://www.rfc-editor.org/rfc/rfc6119","title":"IPv6 Traffic Engineering in IS-IS","authors":["J. Harrison","J. Berger","M. Bartlett"],"rawDate":"2011-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc612":{"aliasOf":"rfc0612"},"rfc6120":{"rfcNumber":"RFC6120","href":"https://www.rfc-editor.org/rfc/rfc6120","title":"Extensible Messaging and Presence Protocol (XMPP): Core","authors":["P. Saint-Andre"],"rawDate":"2011-03","status":"Proposed Standard","updatedBy":["RFC7590","RFC8553"],"obsoletes":["RFC3920"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6120","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6121":{"rfcNumber":"RFC6121","href":"https://www.rfc-editor.org/rfc/rfc6121","title":"Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence","authors":["P. Saint-Andre"],"rawDate":"2011-03","status":"Proposed Standard","obsoletes":["RFC3921"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6121","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6122":{"rfcNumber":"RFC6122","href":"https://www.rfc-editor.org/rfc/rfc6122","title":"Extensible Messaging and Presence Protocol (XMPP): Address Format","authors":["P. Saint-Andre"],"rawDate":"2011-03","status":"Proposed Standard","obsoletedBy":["RFC7622"],"updates":["RFC3920"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6122","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6123":{"rfcNumber":"RFC6123","href":"https://www.rfc-editor.org/rfc/rfc6123","title":"Inclusion of Manageability Sections in Path Computation Element (PCE) Working Group Drafts","authors":["A. Farrel"],"rawDate":"2011-02","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6124":{"rfcNumber":"RFC6124","href":"https://www.rfc-editor.org/rfc/rfc6124","title":"An EAP Authentication Method Based on the Encrypted Key Exchange (EKE) Protocol","authors":["Y. Sheffer","G. Zorn","H. Tschofenig","S. Fluhrer"],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6125":{"rfcNumber":"RFC6125","href":"https://www.rfc-editor.org/rfc/rfc6125","title":"Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS)","authors":["P. Saint-Andre","J. Hodges"],"rawDate":"2011-03","status":"Proposed Standard","obsoletedBy":["RFC9525"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6125","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6126":{"rfcNumber":"RFC6126","href":"https://www.rfc-editor.org/rfc/rfc6126","title":"The Babel Routing Protocol","authors":["J. Chroboczek"],"rawDate":"2011-04","status":"Experimental","updatedBy":["RFC7298","RFC7557"],"obsoletedBy":["RFC8966"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6126","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6127":{"rfcNumber":"RFC6127","href":"https://www.rfc-editor.org/rfc/rfc6127","title":"IPv4 Run-Out and IPv4-IPv6 Co-Existence Scenarios","authors":["J. Arkko","M. Townsley"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6128":{"rfcNumber":"RFC6128","href":"https://www.rfc-editor.org/rfc/rfc6128","title":"RTP Control Protocol (RTCP) Port for Source-Specific Multicast (SSM) Sessions","authors":["A. Begen"],"rawDate":"2011-02","status":"Proposed Standard","updates":["RFC5760"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6129":{"rfcNumber":"RFC6129","href":"https://www.rfc-editor.org/rfc/rfc6129","title":"The 'application/tei+xml' Media Type","authors":["L. Romary","S. Lundberg"],"rawDate":"2011-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6129","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc613":{"aliasOf":"rfc0613"},"rfc6130":{"rfcNumber":"RFC6130","href":"https://www.rfc-editor.org/rfc/rfc6130","title":"Mobile Ad Hoc Network (MANET) Neighborhood Discovery Protocol (NHDP)","authors":["T. Clausen","C. Dearlove","J. Dean"],"rawDate":"2011-04","status":"Proposed Standard","updatedBy":["RFC7183","RFC7188","RFC7466"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6130","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6131":{"rfcNumber":"RFC6131","href":"https://www.rfc-editor.org/rfc/rfc6131","title":"Sieve Vacation Extension: \"Seconds\" Parameter","authors":["R. George","B. Leiba"],"rawDate":"2011-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6132":{"rfcNumber":"RFC6132","href":"https://www.rfc-editor.org/rfc/rfc6132","title":"Sieve Notification Using Presence Information","authors":["R. George","B. Leiba"],"rawDate":"2011-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6133":{"rfcNumber":"RFC6133","href":"https://www.rfc-editor.org/rfc/rfc6133","title":"Sieve Email Filtering: Use of Presence Information with Auto-Responder Functionality","authors":["R. George","B. Leiba","A. Melnikov"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6134":{"rfcNumber":"RFC6134","href":"https://www.rfc-editor.org/rfc/rfc6134","title":"Sieve Extension: Externally Stored Lists","authors":["A. Melnikov","B. Leiba"],"rawDate":"2011-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6135":{"rfcNumber":"RFC6135","href":"https://www.rfc-editor.org/rfc/rfc6135","title":"An Alternative Connection Model for the Message Session Relay Protocol (MSRP)","authors":["C. Holmberg","S. Blau"],"rawDate":"2011-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6136":{"rfcNumber":"RFC6136","href":"https://www.rfc-editor.org/rfc/rfc6136","title":"Layer 2 Virtual Private Network (L2VPN) Operations, Administration, and Maintenance (OAM) Requirements and Framework","authors":["A. Sajassi, Ed.","D. Mohan, Ed."],"rawDate":"2011-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6137":{"rfcNumber":"RFC6137","href":"https://www.rfc-editor.org/rfc/rfc6137","title":"The Network Trouble Ticket Data Model (NTTDM)","authors":["D. Zisiadis, Ed.","S. Kopsidas, Ed.","M. Tsavli, Ed.","G. Cessieux, Ed."],"rawDate":"2011-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6137","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6138":{"rfcNumber":"RFC6138","href":"https://www.rfc-editor.org/rfc/rfc6138","title":"LDP IGP Synchronization for Broadcast Networks","authors":["S. Kini, Ed.","W. Lu, Ed."],"rawDate":"2011-02","status":"Informational","updates":["RFC5443"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6139":{"rfcNumber":"RFC6139","href":"https://www.rfc-editor.org/rfc/rfc6139","title":"Routing and Addressing in Networks with Global Enterprise Recursion (RANGER) Scenarios","authors":["S. Russert, Ed.","E. Fleischman, Ed.","F. Templin, Ed."],"rawDate":"2011-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc614":{"aliasOf":"rfc0614"},"rfc6140":{"rfcNumber":"RFC6140","href":"https://www.rfc-editor.org/rfc/rfc6140","title":"Registration for Multiple Phone Numbers in the Session Initiation Protocol (SIP)","authors":["A.B. Roach"],"rawDate":"2011-03","status":"Proposed Standard","updates":["RFC3680"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6140","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6141":{"rfcNumber":"RFC6141","href":"https://www.rfc-editor.org/rfc/rfc6141","title":"Re-INVITE and Target-Refresh Request Handling in the Session Initiation Protocol (SIP)","authors":["G. Camarillo, Ed.","C. Holmberg","Y. Gao"],"rawDate":"2011-03","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6142":{"rfcNumber":"RFC6142","href":"https://www.rfc-editor.org/rfc/rfc6142","title":"ANSI C12.22, IEEE 1703, and MC12.22 Transport Over IP","authors":["A. Moise","J. Brodkin"],"rawDate":"2011-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6143":{"rfcNumber":"RFC6143","href":"https://www.rfc-editor.org/rfc/rfc6143","title":"The Remote Framebuffer Protocol","authors":["T. Richardson","J. Levine"],"rawDate":"2011-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6143","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6144":{"rfcNumber":"RFC6144","href":"https://www.rfc-editor.org/rfc/rfc6144","title":"Framework for IPv4/IPv6 Translation","authors":["F. Baker","X. Li","C. Bao","K. Yin"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6145":{"rfcNumber":"RFC6145","href":"https://www.rfc-editor.org/rfc/rfc6145","title":"IP/ICMP Translation Algorithm","authors":["X. Li","C. Bao","F. Baker"],"rawDate":"2011-04","status":"Proposed Standard","updatedBy":["RFC6791","RFC7757"],"obsoletedBy":["RFC7915"],"obsoletes":["RFC2765"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6145","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6146":{"rfcNumber":"RFC6146","href":"https://www.rfc-editor.org/rfc/rfc6146","title":"Stateful NAT64: Network Address and Protocol Translation from IPv6 Clients to IPv4 Servers","authors":["M. Bagnulo","P. Matthews","I. van Beijnum"],"rawDate":"2011-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6146","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6147":{"rfcNumber":"RFC6147","href":"https://www.rfc-editor.org/rfc/rfc6147","title":"DNS64: DNS Extensions for Network Address Translation from IPv6 Clients to IPv4 Servers","authors":["M. Bagnulo","A. Sullivan","P. Matthews","I. van Beijnum"],"rawDate":"2011-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6147","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6148":{"rfcNumber":"RFC6148","href":"https://www.rfc-editor.org/rfc/rfc6148","title":"DHCPv4 Lease Query by Relay Agent Remote ID","authors":["P. Kurapati","R. Desetti","B. Joshi"],"rawDate":"2011-02","status":"Proposed Standard","updates":["RFC4388"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6149":{"rfcNumber":"RFC6149","href":"https://www.rfc-editor.org/rfc/rfc6149","title":"MD2 to Historic Status","authors":["S. Turner","L. Chen"],"rawDate":"2011-03","status":"Informational","obsoletes":["RFC1319"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6149","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc615":{"aliasOf":"rfc0615"},"rfc6150":{"rfcNumber":"RFC6150","href":"https://www.rfc-editor.org/rfc/rfc6150","title":"MD4 to Historic Status","authors":["S. Turner","L. Chen"],"rawDate":"2011-03","status":"Informational","obsoletes":["RFC1320"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6150","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6151":{"rfcNumber":"RFC6151","href":"https://www.rfc-editor.org/rfc/rfc6151","title":"Updated Security Considerations for the MD5 Message-Digest and the HMAC-MD5 Algorithms","authors":["S. Turner","L. Chen"],"rawDate":"2011-03","status":"Informational","updates":["RFC1321","RFC2104"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6152":{"rfcNumber":"RFC6152","href":"https://www.rfc-editor.org/rfc/rfc6152","title":"SMTP Service Extension for 8-bit MIME Transport","authors":["J. Klensin","N. Freed","M. Rose","D. Crocker, Ed."],"rawDate":"2011-03","status":"Internet Standard","obsoletes":["RFC1652"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6152","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6153":{"rfcNumber":"RFC6153","href":"https://www.rfc-editor.org/rfc/rfc6153","title":"DHCPv4 and DHCPv6 Options for Access Network Discovery and Selection Function (ANDSF) Discovery","authors":["S. Das","G. Bajko"],"rawDate":"2011-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6154":{"rfcNumber":"RFC6154","href":"https://www.rfc-editor.org/rfc/rfc6154","title":"IMAP LIST Extension for Special-Use Mailboxes","authors":["B. Leiba","J. Nicolson"],"rawDate":"2011-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6154","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6155":{"rfcNumber":"RFC6155","href":"https://www.rfc-editor.org/rfc/rfc6155","title":"Use of Device Identity in HTTP-Enabled Location Delivery (HELD)","authors":["J. Winterbottom","M. Thomson","H. Tschofenig","R. Barnes"],"rawDate":"2011-03","status":"Proposed Standard","updatedBy":["RFC6915"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6156":{"rfcNumber":"RFC6156","href":"https://www.rfc-editor.org/rfc/rfc6156","title":"Traversal Using Relays around NAT (TURN) Extension for IPv6","authors":["G. Camarillo","O. Novo","S. Perreault, Ed."],"rawDate":"2011-04","status":"Proposed Standard","obsoletedBy":["RFC8656"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6157":{"rfcNumber":"RFC6157","href":"https://www.rfc-editor.org/rfc/rfc6157","title":"IPv6 Transition in the Session Initiation Protocol (SIP)","authors":["G. Camarillo","K. El Malki","V. Gurbani"],"rawDate":"2011-04","status":"Proposed Standard","updates":["RFC3264"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6157","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6158":{"rfcNumber":"RFC6158","href":"https://www.rfc-editor.org/rfc/rfc6158","title":"RADIUS Design Guidelines","authors":["A. DeKok, Ed.","G. Weber"],"rawDate":"2011-03","status":"Best Current Practice","updatedBy":["RFC6929","RFC8044"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6159":{"rfcNumber":"RFC6159","href":"https://www.rfc-editor.org/rfc/rfc6159","title":"Session-Specific Explicit Diameter Request Routing","authors":["T. Tsou","G. Zorn","T. Taylor, Ed."],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc616":{"aliasOf":"rfc0616"},"rfc6160":{"rfcNumber":"RFC6160","href":"https://www.rfc-editor.org/rfc/rfc6160","title":"Algorithms for Cryptographic Message Syntax (CMS) Protection of Symmetric Key Package Content Types","authors":["S. Turner"],"rawDate":"2011-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6161":{"rfcNumber":"RFC6161","href":"https://www.rfc-editor.org/rfc/rfc6161","title":"Elliptic Curve Algorithms for Cryptographic Message Syntax (CMS) Encrypted Key Package Content Type","authors":["S. Turner"],"rawDate":"2011-04","status":"Proposed Standard","updates":["RFC6033"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6162":{"rfcNumber":"RFC6162","href":"https://www.rfc-editor.org/rfc/rfc6162","title":"Elliptic Curve Algorithms for Cryptographic Message Syntax (CMS) Asymmetric Key Package Content Type","authors":["S. Turner"],"rawDate":"2011-04","status":"Proposed Standard","updates":["RFC5959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6163":{"rfcNumber":"RFC6163","href":"https://www.rfc-editor.org/rfc/rfc6163","title":"Framework for GMPLS and Path Computation Element (PCE) Control of Wavelength Switched Optical Networks (WSONs)","authors":["Y. Lee, Ed.","G. Bernstein, Ed.","W. Imajuku"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6164":{"rfcNumber":"RFC6164","href":"https://www.rfc-editor.org/rfc/rfc6164","title":"Using 127-Bit IPv6 Prefixes on Inter-Router Links","authors":["M. Kohno","B. Nitzan","R. Bush","Y. Matsuzaki","L. Colitti","T. Narten"],"rawDate":"2011-04","status":"Proposed Standard","updatedBy":["RFC6547"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6164","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6165":{"rfcNumber":"RFC6165","href":"https://www.rfc-editor.org/rfc/rfc6165","title":"Extensions to IS-IS for Layer-2 Systems","authors":["A. Banerjee","D. Ward"],"rawDate":"2011-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6166":{"rfcNumber":"RFC6166","href":"https://www.rfc-editor.org/rfc/rfc6166","title":"A Registry for PIM Message Types","authors":["S. Venaas"],"rawDate":"2011-04","status":"Proposed Standard","obsoletedBy":["RFC8736"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6167":{"rfcNumber":"RFC6167","href":"https://www.rfc-editor.org/rfc/rfc6167","title":"URI Scheme for Java(tm) Message Service 1.0","authors":["M. Phillips","P. Adams","D. Rokicki","E. Johnson"],"rawDate":"2011-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6167","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6168":{"rfcNumber":"RFC6168","href":"https://www.rfc-editor.org/rfc/rfc6168","title":"Requirements for Management of Name Servers for the DNS","authors":["W. Hardaker"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6169":{"rfcNumber":"RFC6169","href":"https://www.rfc-editor.org/rfc/rfc6169","title":"Security Concerns with IP Tunneling","authors":["S. Krishnan","D. Thaler","J. Hoagland"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc617":{"aliasOf":"rfc0617"},"rfc6170":{"rfcNumber":"RFC6170","href":"https://www.rfc-editor.org/rfc/rfc6170","title":"Internet X.509 Public Key Infrastructure -- Certificate Image","authors":["S. Santesson","R. Housley","S. Bajaj","L. Rosenthol"],"rawDate":"2011-05","status":"Proposed Standard","obsoletedBy":["RFC9399"],"updates":["RFC3709"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6171":{"rfcNumber":"RFC6171","href":"https://www.rfc-editor.org/rfc/rfc6171","title":"The Lightweight Directory Access Protocol (LDAP) Don't Use Copy Control","authors":["K. Zeilenga"],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6172":{"rfcNumber":"RFC6172","href":"https://www.rfc-editor.org/rfc/rfc6172","title":"Deprecation of the Internet Fibre Channel Protocol (iFCP) Address Translation Mode","authors":["D. Black","D. Peterson"],"rawDate":"2011-03","status":"Proposed Standard","updates":["RFC4172"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6173":{"rfcNumber":"RFC6173","href":"https://www.rfc-editor.org/rfc/rfc6173","title":"Definitions of Managed Objects for the Internet Fibre Channel Protocol (iFCP)","authors":["P. Venkatesen, Ed."],"rawDate":"2011-03","status":"Proposed Standard","obsoletes":["RFC4369"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6174":{"rfcNumber":"RFC6174","href":"https://www.rfc-editor.org/rfc/rfc6174","title":"Definition of IETF Working Group Document States","authors":["E. Juskevicius"],"rawDate":"2011-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6174","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6175":{"rfcNumber":"RFC6175","href":"https://www.rfc-editor.org/rfc/rfc6175","title":"Requirements to Extend the Datatracker for IETF Working Group Chairs and Authors","authors":["E. Juskevicius"],"rawDate":"2011-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6176":{"rfcNumber":"RFC6176","href":"https://www.rfc-editor.org/rfc/rfc6176","title":"Prohibiting Secure Sockets Layer (SSL) Version 2.0","authors":["S. Turner","T. Polk"],"rawDate":"2011-03","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC2246","RFC4346","RFC5246"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6176","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6177":{"rfcNumber":"RFC6177","href":"https://www.rfc-editor.org/rfc/rfc6177","title":"IPv6 Address Assignment to End Sites","authors":["T. Narten","G. Huston","L. Roberts"],"rawDate":"2011-03","status":"Best Current Practice","obsoletes":["RFC3177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6178":{"rfcNumber":"RFC6178","href":"https://www.rfc-editor.org/rfc/rfc6178","title":"Label Edge Router Forwarding of IPv4 Option Packets","authors":["D. Smith","J. Mullooly","W. Jaeger","T. Scholl"],"rawDate":"2011-03","status":"Proposed Standard","updates":["RFC3031"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6179":{"rfcNumber":"RFC6179","href":"https://www.rfc-editor.org/rfc/rfc6179","title":"The Internet Routing Overlay Network (IRON)","authors":["F. Templin, Ed."],"rawDate":"2011-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc618":{"aliasOf":"rfc0618"},"rfc6180":{"rfcNumber":"RFC6180","href":"https://www.rfc-editor.org/rfc/rfc6180","title":"Guidelines for Using IPv6 Transition Mechanisms during IPv6 Deployment","authors":["J. Arkko","F. Baker"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6181":{"rfcNumber":"RFC6181","href":"https://www.rfc-editor.org/rfc/rfc6181","title":"Threat Analysis for TCP Extensions for Multipath Operation with Multiple Addresses","authors":["M. Bagnulo"],"rawDate":"2011-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6181","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6182":{"rfcNumber":"RFC6182","href":"https://www.rfc-editor.org/rfc/rfc6182","title":"Architectural Guidelines for Multipath TCP Development","authors":["A. Ford","C. Raiciu","M. Handley","S. Barre","J. Iyengar"],"rawDate":"2011-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6183":{"rfcNumber":"RFC6183","href":"https://www.rfc-editor.org/rfc/rfc6183","title":"IP Flow Information Export (IPFIX) Mediation: Framework","authors":["A. Kobayashi","B. Claise","G. Muenz","K. Ishibashi"],"rawDate":"2011-04","status":"Informational","updates":["RFC5470"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6183","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6184":{"rfcNumber":"RFC6184","href":"https://www.rfc-editor.org/rfc/rfc6184","title":"RTP Payload Format for H.264 Video","authors":["Y.-K. Wang","R. Even","T. Kristensen","R. Jesup"],"rawDate":"2011-05","status":"Proposed Standard","obsoletes":["RFC3984"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6184","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6185":{"rfcNumber":"RFC6185","href":"https://www.rfc-editor.org/rfc/rfc6185","title":"RTP Payload Format for H.264 Reduced-Complexity Decoding Operation (RCDO) Video","authors":["T. Kristensen","P. Luthi"],"rawDate":"2011-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6186":{"rfcNumber":"RFC6186","href":"https://www.rfc-editor.org/rfc/rfc6186","title":"Use of SRV Records for Locating Email Submission/Access Services","authors":["C. Daboo"],"rawDate":"2011-03","status":"Proposed Standard","updatedBy":["RFC8314","RFC8553"],"updates":["RFC1939","RFC3501"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6187":{"rfcNumber":"RFC6187","href":"https://www.rfc-editor.org/rfc/rfc6187","title":"X.509v3 Certificates for Secure Shell Authentication","authors":["K. Igoe","D. Stebila"],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6188":{"rfcNumber":"RFC6188","href":"https://www.rfc-editor.org/rfc/rfc6188","title":"The Use of AES-192 and AES-256 in Secure RTP","authors":["D. McGrew"],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6189":{"rfcNumber":"RFC6189","href":"https://www.rfc-editor.org/rfc/rfc6189","title":"ZRTP: Media Path Key Agreement for Unicast Secure RTP","authors":["P. Zimmermann","A. Johnston, Ed.","J. Callas"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc619":{"aliasOf":"rfc0619"},"rfc6190":{"rfcNumber":"RFC6190","href":"https://www.rfc-editor.org/rfc/rfc6190","title":"RTP Payload Format for Scalable Video Coding","authors":["S. Wenger","Y.-K. Wang","T. Schierl","A. Eleftheriadis"],"rawDate":"2011-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6190","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6191":{"rfcNumber":"RFC6191","href":"https://www.rfc-editor.org/rfc/rfc6191","title":"Reducing the TIME-WAIT State Using TCP Timestamps","authors":["F. Gont"],"rawDate":"2011-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6192":{"rfcNumber":"RFC6192","href":"https://www.rfc-editor.org/rfc/rfc6192","title":"Protecting the Router Control Plane","authors":["D. Dugal","C. Pignataro","R. Dunn"],"rawDate":"2011-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6192","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6193":{"rfcNumber":"RFC6193","href":"https://www.rfc-editor.org/rfc/rfc6193","title":"Media Description for the Internet Key Exchange Protocol (IKE) in the Session Description Protocol (SDP)","authors":["M. Saito","D. Wing","M. Toyama"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6194":{"rfcNumber":"RFC6194","href":"https://www.rfc-editor.org/rfc/rfc6194","title":"Security Considerations for the SHA-0 and SHA-1 Message-Digest Algorithms","authors":["T. Polk","L. Chen","S. Turner","P. Hoffman"],"rawDate":"2011-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6194","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6195":{"rfcNumber":"RFC6195","href":"https://www.rfc-editor.org/rfc/rfc6195","title":"Domain Name System (DNS) IANA Considerations","authors":["D. Eastlake 3rd"],"rawDate":"2011-03","status":"Best Current Practice","obsoletedBy":["RFC6895"],"updates":["RFC1183","RFC3597"],"obsoletes":["RFC5395"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6196":{"rfcNumber":"RFC6196","href":"https://www.rfc-editor.org/rfc/rfc6196","title":"Moving mailserver: URI Scheme to Historic","authors":["A. Melnikov"],"rawDate":"2011-03","status":"Proposed Standard","updates":["RFC1738"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6196","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6197":{"rfcNumber":"RFC6197","href":"https://www.rfc-editor.org/rfc/rfc6197","title":"Location-to-Service Translation (LoST) Service List Boundary Extension","authors":["K. Wolf"],"rawDate":"2011-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6198":{"rfcNumber":"RFC6198","href":"https://www.rfc-editor.org/rfc/rfc6198","title":"Requirements for the Graceful Shutdown of BGP Sessions","authors":["B. Decraene","P. Francois","C. Pelsser","Z. Ahmad","A.J. Elizondo Armengol","T. Takeda"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc62":{"aliasOf":"rfc0062"},"rfc620":{"aliasOf":"rfc0620"},"rfc6201":{"rfcNumber":"RFC6201","href":"https://www.rfc-editor.org/rfc/rfc6201","title":"Device Reset Characterization","authors":["R. Asati","C. Pignataro","F. Calabria","C. Olvera"],"rawDate":"2011-03","status":"Informational","updates":["RFC1242","RFC2544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6202":{"rfcNumber":"RFC6202","href":"https://www.rfc-editor.org/rfc/rfc6202","title":"Known Issues and Best Practices for the Use of Long Polling and Streaming in Bidirectional HTTP","authors":["S. Loreto","P. Saint-Andre","S. Salsano","G. Wilkins"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6203":{"rfcNumber":"RFC6203","href":"https://www.rfc-editor.org/rfc/rfc6203","title":"IMAP4 Extension for Fuzzy Search","authors":["T. Sirainen"],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6204":{"rfcNumber":"RFC6204","href":"https://www.rfc-editor.org/rfc/rfc6204","title":"Basic Requirements for IPv6 Customer Edge Routers","authors":["H. Singh","W. Beebee","C. Donley","B. Stark","O. Troan, Ed."],"rawDate":"2011-04","status":"Informational","obsoletedBy":["RFC7084"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6204","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6205":{"rfcNumber":"RFC6205","href":"https://www.rfc-editor.org/rfc/rfc6205","title":"Generalized Labels for Lambda-Switch-Capable (LSC) Label Switching Routers","authors":["T. Otani, Ed.","D. Li, Ed."],"rawDate":"2011-03","status":"Proposed Standard","updatedBy":["RFC7699","RFC8359"],"updates":["RFC3471"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6206":{"rfcNumber":"RFC6206","href":"https://www.rfc-editor.org/rfc/rfc6206","title":"The Trickle Algorithm","authors":["P. Levis","T. Clausen","J. Hui","O. Gnawali","J. Ko"],"rawDate":"2011-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6207":{"rfcNumber":"RFC6207","href":"https://www.rfc-editor.org/rfc/rfc6207","title":"The Media Types application/mods+xml, application/mads+xml, application/mets+xml, application/marcxml+xml, and application/sru+xml","authors":["R. Denenberg, Ed."],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6208":{"rfcNumber":"RFC6208","href":"https://www.rfc-editor.org/rfc/rfc6208","title":"Cloud Data Management Interface (CDMI) Media Types","authors":["K. Sankar, Ed.","A. Jones"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6209":{"rfcNumber":"RFC6209","href":"https://www.rfc-editor.org/rfc/rfc6209","title":"Addition of the ARIA Cipher Suites to Transport Layer Security (TLS)","authors":["W. Kim","J. Lee","J. Park","D. Kwon"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc621":{"aliasOf":"rfc0621"},"rfc6210":{"rfcNumber":"RFC6210","href":"https://www.rfc-editor.org/rfc/rfc6210","title":"Experiment: Hash Functions with Parameters in the Cryptographic Message Syntax (CMS) and S/MIME","authors":["J. Schaad"],"rawDate":"2011-04","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6210","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6211":{"rfcNumber":"RFC6211","href":"https://www.rfc-editor.org/rfc/rfc6211","title":"Cryptographic Message Syntax (CMS) Algorithm Identifier Protection Attribute","authors":["J. Schaad"],"rawDate":"2011-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6212":{"rfcNumber":"RFC6212","href":"https://www.rfc-editor.org/rfc/rfc6212","title":"Authentication-Results Registration for Vouch by Reference Results","authors":["M. Kucherawy"],"rawDate":"2011-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6213":{"rfcNumber":"RFC6213","href":"https://www.rfc-editor.org/rfc/rfc6213","title":"IS-IS BFD-Enabled TLV","authors":["C. Hopps","L. Ginsberg"],"rawDate":"2011-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6214":{"rfcNumber":"RFC6214","href":"https://www.rfc-editor.org/rfc/rfc6214","title":"Adaptation of RFC 1149 for IPv6","authors":["B. Carpenter","R. Hinden"],"rawDate":"2011-04-01","status":"Informational","updates":["RFC1149"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6214","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6215":{"rfcNumber":"RFC6215","href":"https://www.rfc-editor.org/rfc/rfc6215","title":"MPLS Transport Profile User-to-Network and Network-to-Network Interfaces","authors":["M. Bocci","L. Levrau","D. Frost"],"rawDate":"2011-04","status":"Informational","updates":["RFC5921"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6215","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6216":{"rfcNumber":"RFC6216","href":"https://www.rfc-editor.org/rfc/rfc6216","title":"Example Call Flows Using Session Initiation Protocol (SIP) Security Mechanisms","authors":["C. Jennings","K. Ono","R. Sparks","B. Hibbard, Ed."],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6217":{"rfcNumber":"RFC6217","href":"https://www.rfc-editor.org/rfc/rfc6217","title":"Regional Broadcast Using an Atmospheric Link Layer","authors":["T. Ritter"],"rawDate":"2011-04-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6218":{"rfcNumber":"RFC6218","href":"https://www.rfc-editor.org/rfc/rfc6218","title":"Cisco Vendor-Specific RADIUS Attributes for the Delivery of Keying Material","authors":["G. Zorn","T. Zhang","J. Walker","J. Salowey"],"rawDate":"2011-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6218","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6219":{"rfcNumber":"RFC6219","href":"https://www.rfc-editor.org/rfc/rfc6219","title":"The China Education and Research Network (CERNET) IVI Translation Design and Deployment for the IPv4/IPv6 Coexistence and Transition","authors":["X. Li","C. Bao","M. Chen","H. Zhang","J. Wu"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc622":{"aliasOf":"rfc0622"},"rfc6220":{"rfcNumber":"RFC6220","href":"https://www.rfc-editor.org/rfc/rfc6220","title":"Defining the Role and Function of IETF Protocol Parameter Registry Operators","authors":["D. McPherson, Ed.","O. Kolkman, Ed.","J. Klensin, Ed.","G. Huston, Ed.","Internet Architecture Board"],"rawDate":"2011-04","status":"Informational","obsoletedBy":["RFC8722"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6221":{"rfcNumber":"RFC6221","href":"https://www.rfc-editor.org/rfc/rfc6221","title":"Lightweight DHCPv6 Relay Agent","authors":["D. Miles, Ed.","S. Ooghe","W. Dec","S. Krishnan","A. Kavanagh"],"rawDate":"2011-05","status":"Proposed Standard","updates":["RFC3315"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6221","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6222":{"rfcNumber":"RFC6222","href":"https://www.rfc-editor.org/rfc/rfc6222","title":"Guidelines for Choosing RTP Control Protocol (RTCP) Canonical Names (CNAMEs)","authors":["A. Begen","C. Perkins","D. Wing"],"rawDate":"2011-04","status":"Proposed Standard","obsoletedBy":["RFC7022"],"updates":["RFC3550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6223":{"rfcNumber":"RFC6223","href":"https://www.rfc-editor.org/rfc/rfc6223","title":"Indication of Support for Keep-Alive","authors":["C. Holmberg"],"rawDate":"2011-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6224":{"rfcNumber":"RFC6224","href":"https://www.rfc-editor.org/rfc/rfc6224","title":"Base Deployment for Multicast Listener Support in Proxy Mobile IPv6 (PMIPv6) Domains","authors":["T. Schmidt","M. Waehlisch","S. Krishnan"],"rawDate":"2011-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6225":{"rfcNumber":"RFC6225","href":"https://www.rfc-editor.org/rfc/rfc6225","title":"Dynamic Host Configuration Protocol Options for Coordinate-Based Location Configuration Information","authors":["J. Polk","M. Linsner","M. Thomson","B. Aboba, Ed."],"rawDate":"2011-07","status":"Proposed Standard","obsoletes":["RFC3825"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6225","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6226":{"rfcNumber":"RFC6226","href":"https://www.rfc-editor.org/rfc/rfc6226","title":"PIM Group-to-Rendezvous-Point Mapping","authors":["B. Joshi","A. Kessler","D. McWalter"],"rawDate":"2011-05","status":"Proposed Standard","updates":["RFC4601"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6227":{"rfcNumber":"RFC6227","href":"https://www.rfc-editor.org/rfc/rfc6227","title":"Design Goals for Scalable Internet Routing","authors":["T. Li, Ed."],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6228":{"rfcNumber":"RFC6228","href":"https://www.rfc-editor.org/rfc/rfc6228","title":"Session Initiation Protocol (SIP) Response Code for Indication of Terminated Dialog","authors":["C. Holmberg"],"rawDate":"2011-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6228","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6229":{"rfcNumber":"RFC6229","href":"https://www.rfc-editor.org/rfc/rfc6229","title":"Test Vectors for the Stream Cipher RC4","authors":["J. Strombergson","S. Josefsson"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc623":{"aliasOf":"rfc0623"},"rfc6230":{"rfcNumber":"RFC6230","href":"https://www.rfc-editor.org/rfc/rfc6230","title":"Media Control Channel Framework","authors":["C. Boulton","T. Melanchuk","S. McGlashan"],"rawDate":"2011-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6230","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6231":{"rfcNumber":"RFC6231","href":"https://www.rfc-editor.org/rfc/rfc6231","title":"An Interactive Voice Response (IVR) Control Package for the Media Control Channel Framework","authors":["S. McGlashan","T. Melanchuk","C. Boulton"],"rawDate":"2011-05","status":"Proposed Standard","updatedBy":["RFC6623"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6231","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6232":{"rfcNumber":"RFC6232","href":"https://www.rfc-editor.org/rfc/rfc6232","title":"Purge Originator Identification TLV for IS-IS","authors":["F. Wei","Y. Qin","Z. Li","T. Li","J. Dong"],"rawDate":"2011-05","status":"Proposed Standard","updatedBy":["RFC8918"],"updates":["RFC5301","RFC5304","RFC5310"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6233":{"rfcNumber":"RFC6233","href":"https://www.rfc-editor.org/rfc/rfc6233","title":"IS-IS Registry Extension for Purges","authors":["T. Li","L. Ginsberg"],"rawDate":"2011-05","status":"Proposed Standard","updates":["RFC3563","RFC5304","RFC5310"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6234":{"rfcNumber":"RFC6234","href":"https://www.rfc-editor.org/rfc/rfc6234","title":"US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)","authors":["D. Eastlake 3rd","T. Hansen"],"rawDate":"2011-05","status":"Informational","updates":["RFC3174"],"obsoletes":["RFC4634"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6234","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6235":{"rfcNumber":"RFC6235","href":"https://www.rfc-editor.org/rfc/rfc6235","title":"IP Flow Anonymization Support","authors":["E. Boschi","B. Trammell"],"rawDate":"2011-05","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6235","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6236":{"rfcNumber":"RFC6236","href":"https://www.rfc-editor.org/rfc/rfc6236","title":"Negotiation of Generic Image Attributes in the Session Description Protocol (SDP)","authors":["I. Johansson","K. Jung"],"rawDate":"2011-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6236","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6237":{"rfcNumber":"RFC6237","href":"https://www.rfc-editor.org/rfc/rfc6237","title":"IMAP4 Multimailbox SEARCH Extension","authors":["B. Leiba","A. Melnikov"],"rawDate":"2011-05","status":"Experimental","obsoletedBy":["RFC7377"],"updates":["RFC4466"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6238":{"rfcNumber":"RFC6238","href":"https://www.rfc-editor.org/rfc/rfc6238","title":"TOTP: Time-Based One-Time Password Algorithm","authors":["D. M'Raihi","S. Machani","M. Pei","J. Rydell"],"rawDate":"2011-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6238","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6239":{"rfcNumber":"RFC6239","href":"https://www.rfc-editor.org/rfc/rfc6239","title":"Suite B Cryptographic Suites for Secure Shell (SSH)","authors":["K. Igoe"],"rawDate":"2011-05","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc624":{"aliasOf":"rfc0624"},"rfc6240":{"rfcNumber":"RFC6240","href":"https://www.rfc-editor.org/rfc/rfc6240","title":"Synchronous Optical Network/Synchronous Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet (CEP) MIB Using SMIv2","authors":["D. Zelig, Ed.","R. Cohen, Ed.","T. Nadeau, Ed."],"rawDate":"2011-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6241":{"rfcNumber":"RFC6241","href":"https://www.rfc-editor.org/rfc/rfc6241","title":"Network Configuration Protocol (NETCONF)","authors":["R. Enns, Ed.","M. Bjorklund, Ed.","J. Schoenwaelder, Ed.","A. Bierman, Ed."],"rawDate":"2011-06","status":"Proposed Standard","updatedBy":["RFC7803","RFC8526"],"obsoletes":["RFC4741"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6241","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6242":{"rfcNumber":"RFC6242","href":"https://www.rfc-editor.org/rfc/rfc6242","title":"Using the NETCONF Protocol over Secure Shell (SSH)","authors":["M. Wasserman"],"rawDate":"2011-06","status":"Proposed Standard","obsoletes":["RFC4742"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6242","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6243":{"rfcNumber":"RFC6243","href":"https://www.rfc-editor.org/rfc/rfc6243","title":"With-defaults Capability for NETCONF","authors":["A. Bierman","B. Lengyel"],"rawDate":"2011-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6243","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6244":{"rfcNumber":"RFC6244","href":"https://www.rfc-editor.org/rfc/rfc6244","title":"An Architecture for Network Management Using NETCONF and YANG","authors":["P. Shafer"],"rawDate":"2011-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6244","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6245":{"rfcNumber":"RFC6245","href":"https://www.rfc-editor.org/rfc/rfc6245","title":"Generic Routing Encapsulation (GRE) Key Extension for Mobile IPv4","authors":["P. Yegani","K. Leung","A. Lior","K. Chowdhury","J. Navali"],"rawDate":"2011-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6246":{"rfcNumber":"RFC6246","href":"https://www.rfc-editor.org/rfc/rfc6246","title":"Virtual Private LAN Service (VPLS) Interoperability with Customer Edge (CE) Bridges","authors":["A. Sajassi, Ed.","F. Brockners","D. Mohan, Ed.","Y. Serbest"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6247":{"rfcNumber":"RFC6247","href":"https://www.rfc-editor.org/rfc/rfc6247","title":"Moving the Undeployed TCP Extensions RFC 1072, RFC 1106, RFC 1110, RFC 1145, RFC 1146, RFC 1379, RFC 1644, and RFC 1693 to Historic Status","authors":["L. Eggert"],"rawDate":"2011-05","status":"Informational","updates":["RFC4614"],"obsoletes":["RFC1072","RFC1106","RFC1110","RFC1145","RFC1146","RFC1379","RFC1644","RFC1693"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6248":{"rfcNumber":"RFC6248","href":"https://www.rfc-editor.org/rfc/rfc6248","title":"RFC 4148 and the IP Performance Metrics (IPPM) Registry of Metrics Are Obsolete","authors":["A. Morton"],"rawDate":"2011-04","status":"Informational","updates":["RFC4737","RFC5560","RFC5644","RFC6049"],"obsoletes":["RFC4148"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6249":{"rfcNumber":"RFC6249","href":"https://www.rfc-editor.org/rfc/rfc6249","title":"Metalink/HTTP: Mirrors and Hashes","authors":["A. Bryan","N. McNab","T. Tsujikawa","P. Poeml","H. Nordstrom"],"rawDate":"2011-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6249","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc625":{"aliasOf":"rfc0625"},"rfc6250":{"rfcNumber":"RFC6250","href":"https://www.rfc-editor.org/rfc/rfc6250","title":"Evolution of the IP Model","authors":["D. Thaler"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6251":{"rfcNumber":"RFC6251","href":"https://www.rfc-editor.org/rfc/rfc6251","title":"Using Kerberos Version 5 over the Transport Layer Security (TLS) Protocol","authors":["S. Josefsson"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6252":{"rfcNumber":"RFC6252","href":"https://www.rfc-editor.org/rfc/rfc6252","title":"A Framework of Media-Independent Pre-Authentication (MPA) for Inter-Domain Handover Optimization","authors":["A. Dutta, Ed.","V. Fajardo","Y. Ohba","K. Taniuchi","H. Schulzrinne"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6253":{"rfcNumber":"RFC6253","href":"https://www.rfc-editor.org/rfc/rfc6253","title":"Host Identity Protocol Certificates","authors":["T. Heer","S. Varjonen"],"rawDate":"2011-05","status":"Experimental","obsoletedBy":["RFC8002"],"updates":["RFC5201"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6254":{"rfcNumber":"RFC6254","href":"https://www.rfc-editor.org/rfc/rfc6254","title":"Request to Move RFC 2754 to Historic Status","authors":["M. McFadden"],"rawDate":"2011-05","status":"Informational","obsoletes":["RFC2754"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6255":{"rfcNumber":"RFC6255","href":"https://www.rfc-editor.org/rfc/rfc6255","title":"Delay-Tolerant Networking Bundle Protocol IANA Registries","authors":["M. Blanchet"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6256":{"rfcNumber":"RFC6256","href":"https://www.rfc-editor.org/rfc/rfc6256","title":"Using Self-Delimiting Numeric Values in Protocols","authors":["W. Eddy","E. Davies"],"rawDate":"2011-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6257":{"rfcNumber":"RFC6257","href":"https://www.rfc-editor.org/rfc/rfc6257","title":"Bundle Security Protocol Specification","authors":["S. Symington","S. Farrell","H. Weiss","P. Lovell"],"rawDate":"2011-05","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6257","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6258":{"rfcNumber":"RFC6258","href":"https://www.rfc-editor.org/rfc/rfc6258","title":"Delay-Tolerant Networking Metadata Extension Block","authors":["S. Symington"],"rawDate":"2011-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6259":{"rfcNumber":"RFC6259","href":"https://www.rfc-editor.org/rfc/rfc6259","title":"Delay-Tolerant Networking Previous-Hop Insertion Block","authors":["S. Symington"],"rawDate":"2011-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc626":{"aliasOf":"rfc0626"},"rfc6260":{"rfcNumber":"RFC6260","href":"https://www.rfc-editor.org/rfc/rfc6260","title":"Compressed Bundle Header Encoding (CBHE)","authors":["S. Burleigh"],"rawDate":"2011-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6261":{"rfcNumber":"RFC6261","href":"https://www.rfc-editor.org/rfc/rfc6261","title":"Encrypted Signaling Transport Modes for the Host Identity Protocol","authors":["A. Keranen"],"rawDate":"2011-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6262":{"rfcNumber":"RFC6262","href":"https://www.rfc-editor.org/rfc/rfc6262","title":"RTP Payload Format for IP-MR Speech Codec","authors":["S. Ikonin"],"rawDate":"2011-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6263":{"rfcNumber":"RFC6263","href":"https://www.rfc-editor.org/rfc/rfc6263","title":"Application Mechanism for Keeping Alive the NAT Mappings Associated with RTP / RTP Control Protocol (RTCP) Flows","authors":["X. Marjou","A. Sollaud"],"rawDate":"2011-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6264":{"rfcNumber":"RFC6264","href":"https://www.rfc-editor.org/rfc/rfc6264","title":"An Incremental Carrier-Grade NAT (CGN) for IPv6 Transition","authors":["S. Jiang","D. Guo","B. Carpenter"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6265":{"rfcNumber":"RFC6265","href":"https://httpwg.org/specs/rfc6265.html","title":"HTTP State Management Mechanism","authors":["A. Barth"],"rawDate":"2011-04","status":"Proposed Standard","obsoletes":["RFC2965"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6265","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6266":{"rfcNumber":"RFC6266","href":"https://httpwg.org/specs/rfc6266.html","title":"Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol (HTTP)","authors":["J. Reschke"],"rawDate":"2011-06","status":"Proposed Standard","updates":["RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6266","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6267":{"rfcNumber":"RFC6267","href":"https://www.rfc-editor.org/rfc/rfc6267","title":"MIKEY-IBAKE: Identity-Based Authenticated Key Exchange (IBAKE) Mode of Key Distribution in Multimedia Internet KEYing (MIKEY)","authors":["V. Cakulev","G. Sundaram"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6268":{"rfcNumber":"RFC6268","href":"https://www.rfc-editor.org/rfc/rfc6268","title":"Additional New ASN.1 Modules for the Cryptographic Message Syntax (CMS) and the Public Key Infrastructure Using X.509 (PKIX)","authors":["J. Schaad","S. Turner"],"rawDate":"2011-07","status":"Informational","updates":["RFC5911"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6269":{"rfcNumber":"RFC6269","href":"https://www.rfc-editor.org/rfc/rfc6269","title":"Issues with IP Address Sharing","authors":["M. Ford, Ed.","M. Boucadair","A. Durand","P. Levis","P. Roberts"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc627":{"aliasOf":"rfc0627"},"rfc6270":{"rfcNumber":"RFC6270","href":"https://www.rfc-editor.org/rfc/rfc6270","title":"The 'tn3270' URI Scheme","authors":["M. Yevstifeyev"],"rawDate":"2011-06","status":"Proposed Standard","updates":["RFC2355","RFC1738","RFC1041"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6270","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6271":{"rfcNumber":"RFC6271","href":"https://www.rfc-editor.org/rfc/rfc6271","title":"Requirements for SIP-Based Session Peering","authors":["J-F. Mule"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6272":{"rfcNumber":"RFC6272","href":"https://www.rfc-editor.org/rfc/rfc6272","title":"Internet Protocols for the Smart Grid","authors":["F. Baker","D. Meyer"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6273":{"rfcNumber":"RFC6273","href":"https://www.rfc-editor.org/rfc/rfc6273","title":"The Secure Neighbor Discovery (SEND) Hash Threat Analysis","authors":["A. Kukec","S. Krishnan","S. Jiang"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6274":{"rfcNumber":"RFC6274","href":"https://www.rfc-editor.org/rfc/rfc6274","title":"Security Assessment of the Internet Protocol Version 4","authors":["F. Gont"],"rawDate":"2011-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6274","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6275":{"rfcNumber":"RFC6275","href":"https://www.rfc-editor.org/rfc/rfc6275","title":"Mobility Support in IPv6","authors":["C. Perkins, Ed.","D. Johnson","J. Arkko"],"rawDate":"2011-07","status":"Proposed Standard","obsoletes":["RFC3775"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6275","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6276":{"rfcNumber":"RFC6276","href":"https://www.rfc-editor.org/rfc/rfc6276","title":"DHCPv6 Prefix Delegation for Network Mobility (NEMO)","authors":["R. Droms","P. Thubert","F. Dupont","W. Haddad","C. Bernardos"],"rawDate":"2011-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6276","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6277":{"rfcNumber":"RFC6277","href":"https://www.rfc-editor.org/rfc/rfc6277","title":"Online Certificate Status Protocol Algorithm Agility","authors":["S. Santesson","P. Hallam-Baker"],"rawDate":"2011-06","status":"Proposed Standard","obsoletedBy":["RFC6960"],"updates":["RFC2560"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6277","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6278":{"rfcNumber":"RFC6278","href":"https://www.rfc-editor.org/rfc/rfc6278","title":"Use of Static-Static Elliptic Curve Diffie-Hellman Key Agreement in Cryptographic Message Syntax","authors":["J. Herzog","R. Khazan"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6279":{"rfcNumber":"RFC6279","href":"https://www.rfc-editor.org/rfc/rfc6279","title":"Proxy Mobile IPv6 (PMIPv6) Localized Routing Problem Statement","authors":["M. Liebsch, Ed.","S. Jeong","Q. Wu"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc628":{"aliasOf":"rfc0628"},"rfc6280":{"rfcNumber":"RFC6280","href":"https://www.rfc-editor.org/rfc/rfc6280","title":"An Architecture for Location and Location Privacy in Internet Applications","authors":["R. Barnes","M. Lepinski","A. Cooper","J. Morris","H. Tschofenig","H. Schulzrinne"],"rawDate":"2011-07","status":"Best Current Practice","updates":["RFC3693","RFC3694"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6281":{"rfcNumber":"RFC6281","href":"https://www.rfc-editor.org/rfc/rfc6281","title":"Understanding Apple's Back to My Mac (BTMM) Service","authors":["S. Cheshire","Z. Zhu","R. Wakikawa","L. Zhang"],"rawDate":"2011-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6281","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6282":{"rfcNumber":"RFC6282","href":"https://www.rfc-editor.org/rfc/rfc6282","title":"Compression Format for IPv6 Datagrams over IEEE 802.15.4-Based Networks","authors":["J. Hui, Ed.","P. Thubert"],"rawDate":"2011-09","status":"Proposed Standard","updatedBy":["RFC8066"],"updates":["RFC4944"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6282","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6283":{"rfcNumber":"RFC6283","href":"https://www.rfc-editor.org/rfc/rfc6283","title":"Extensible Markup Language Evidence Record Syntax (XMLERS)","authors":["A. Jerman Blazic","S. Saljic","T. Gondrom"],"rawDate":"2011-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6284":{"rfcNumber":"RFC6284","href":"https://www.rfc-editor.org/rfc/rfc6284","title":"Port Mapping between Unicast and Multicast RTP Sessions","authors":["A. Begen","D. Wing","T. Van Caenegem"],"rawDate":"2011-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6285":{"rfcNumber":"RFC6285","href":"https://www.rfc-editor.org/rfc/rfc6285","title":"Unicast-Based Rapid Acquisition of Multicast RTP Sessions","authors":["B. Ver Steeg","A. Begen","T. Van Caenegem","Z. Vax"],"rawDate":"2011-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6286":{"rfcNumber":"RFC6286","href":"https://www.rfc-editor.org/rfc/rfc6286","title":"Autonomous-System-Wide Unique BGP Identifier for BGP-4","authors":["E. Chen","J. Yuan"],"rawDate":"2011-06","status":"Proposed Standard","updates":["RFC4271"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6286","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6287":{"rfcNumber":"RFC6287","href":"https://www.rfc-editor.org/rfc/rfc6287","title":"OCRA: OATH Challenge-Response Algorithm","authors":["D. M'Raihi","J. Rydell","S. Bajaj","S. Machani","D. Naccache"],"rawDate":"2011-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6287","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6288":{"rfcNumber":"RFC6288","href":"https://www.rfc-editor.org/rfc/rfc6288","title":"URN Namespace for the Defence Geospatial Information Working Group (DGIWG)","authors":["C. Reed"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6289":{"rfcNumber":"RFC6289","href":"https://www.rfc-editor.org/rfc/rfc6289","title":"A Uniform Resource Name (URN) Namespace for CableLabs","authors":["E. Cardona","S. Channabasappa","J-F. Mule"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc629":{"aliasOf":"rfc0629"},"rfc6290":{"rfcNumber":"RFC6290","href":"https://www.rfc-editor.org/rfc/rfc6290","title":"A Quick Crash Detection Method for the Internet Key Exchange Protocol (IKE)","authors":["Y. Nir, Ed.","D. Wierbowski","F. Detienne","P. Sethi"],"rawDate":"2011-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6290","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6291":{"rfcNumber":"RFC6291","href":"https://www.rfc-editor.org/rfc/rfc6291","title":"Guidelines for the Use of the \"OAM\" Acronym in the IETF","authors":["L. Andersson","H. van Helvoort","R. Bonica","D. Romascanu","S. Mansfield"],"rawDate":"2011-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6292":{"rfcNumber":"RFC6292","href":"https://www.rfc-editor.org/rfc/rfc6292","title":"Requirements for a Working Group Charter Tool","authors":["P. Hoffman"],"rawDate":"2011-06","status":"Informational","updatedBy":["RFC6433"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6292","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6293":{"rfcNumber":"RFC6293","href":"https://www.rfc-editor.org/rfc/rfc6293","title":"Requirements for Internet-Draft Tracking by the IETF Community in the Datatracker","authors":["P. Hoffman"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6294":{"rfcNumber":"RFC6294","href":"https://www.rfc-editor.org/rfc/rfc6294","title":"Survey of Proposed Use Cases for the IPv6 Flow Label","authors":["Q. Hu","B. Carpenter"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6295":{"rfcNumber":"RFC6295","href":"https://www.rfc-editor.org/rfc/rfc6295","title":"RTP Payload Format for MIDI","authors":["J. Lazzaro","J. Wawrzynek"],"rawDate":"2011-06","status":"Proposed Standard","obsoletes":["RFC4695"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6295","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6296":{"rfcNumber":"RFC6296","href":"https://www.rfc-editor.org/rfc/rfc6296","title":"IPv6-to-IPv6 Network Prefix Translation","authors":["M. Wasserman","F. Baker"],"rawDate":"2011-06","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6296","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6297":{"rfcNumber":"RFC6297","href":"https://www.rfc-editor.org/rfc/rfc6297","title":"A Survey of Lower-than-Best-Effort Transport Protocols","authors":["M. Welzl","D. Ros"],"rawDate":"2011-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6298":{"rfcNumber":"RFC6298","href":"https://www.rfc-editor.org/rfc/rfc6298","title":"Computing TCP's Retransmission Timer","authors":["V. Paxson","M. Allman","J. Chu","M. Sargent"],"rawDate":"2011-06","status":"Proposed Standard","updates":["RFC1122"],"obsoletes":["RFC2988"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc63":{"aliasOf":"rfc0063"},"rfc630":{"aliasOf":"rfc0630"},"rfc6301":{"rfcNumber":"RFC6301","href":"https://www.rfc-editor.org/rfc/rfc6301","title":"A Survey of Mobility Support in the Internet","authors":["Z. Zhu","R. Wakikawa","L. Zhang"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6302":{"rfcNumber":"RFC6302","href":"https://www.rfc-editor.org/rfc/rfc6302","title":"Logging Recommendations for Internet-Facing Servers","authors":["A. Durand","I. Gashinsky","D. Lee","S. Sheppard"],"rawDate":"2011-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6303":{"rfcNumber":"RFC6303","href":"https://www.rfc-editor.org/rfc/rfc6303","title":"Locally Served DNS Zones","authors":["M. Andrews"],"rawDate":"2011-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6304":{"rfcNumber":"RFC6304","href":"https://www.rfc-editor.org/rfc/rfc6304","title":"AS112 Nameserver Operations","authors":["J. Abley","W. Maton"],"rawDate":"2011-07","status":"Informational","obsoletedBy":["RFC7534"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6305":{"rfcNumber":"RFC6305","href":"https://www.rfc-editor.org/rfc/rfc6305","title":"I'm Being Attacked by PRISONER.IANA.ORG!","authors":["J. Abley","W. Maton"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6306":{"rfcNumber":"RFC6306","href":"https://www.rfc-editor.org/rfc/rfc6306","title":"Hierarchical IPv4 Framework","authors":["P. Frejborg"],"rawDate":"2011-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6307":{"rfcNumber":"RFC6307","href":"https://www.rfc-editor.org/rfc/rfc6307","title":"Encapsulation Methods for Transport of Fibre Channel Traffic over MPLS Networks","authors":["D. Black, Ed.","L. Dunbar, Ed.","M. Roth","R. Solomon"],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6308":{"rfcNumber":"RFC6308","href":"https://www.rfc-editor.org/rfc/rfc6308","title":"Overview of the Internet Multicast Addressing Architecture","authors":["P. Savola"],"rawDate":"2011-06","status":"Informational","obsoletes":["RFC2908"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6309":{"rfcNumber":"RFC6309","href":"https://www.rfc-editor.org/rfc/rfc6309","title":"IANA Rules for MIKEY (Multimedia Internet KEYing)","authors":["J. Arkko","A. Keranen","J. Mattsson"],"rawDate":"2011-08","status":"Proposed Standard","updates":["RFC3830","RFC4563","RFC5410","RFC6043"],"obsoletes":["RFC4909"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc631":{"aliasOf":"rfc0631"},"rfc6310":{"rfcNumber":"RFC6310","href":"https://www.rfc-editor.org/rfc/rfc6310","title":"Pseudowire (PW) Operations, Administration, and Maintenance (OAM) Message Mapping","authors":["M. Aissaoui","P. Busschbach","L. Martini","M. Morrow","T. Nadeau","Y(J). Stein"],"rawDate":"2011-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6310","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6311":{"rfcNumber":"RFC6311","href":"https://www.rfc-editor.org/rfc/rfc6311","title":"Protocol Support for High Availability of IKEv2/IPsec","authors":["R. Singh, Ed.","G. Kalyani","Y. Nir","Y. Sheffer","D. Zhang"],"rawDate":"2011-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6311","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6312":{"rfcNumber":"RFC6312","href":"https://www.rfc-editor.org/rfc/rfc6312","title":"Mobile Networks Considerations for IPv6 Deployment","authors":["R. Koodli"],"rawDate":"2011-07","status":"Informational","obsoletedBy":["RFC6342"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6313":{"rfcNumber":"RFC6313","href":"https://www.rfc-editor.org/rfc/rfc6313","title":"Export of Structured Data in IP Flow Information Export (IPFIX)","authors":["B. Claise","G. Dhandapani","P. Aitken","S. Yates"],"rawDate":"2011-07","status":"Proposed Standard","updates":["RFC5102"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6313","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6314":{"rfcNumber":"RFC6314","href":"https://www.rfc-editor.org/rfc/rfc6314","title":"NAT Traversal Practices for Client-Server SIP","authors":["C. Boulton","J. Rosenberg","G. Camarillo","F. Audet"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6315":{"rfcNumber":"RFC6315","href":"https://www.rfc-editor.org/rfc/rfc6315","title":"IANA Registration for Enumservice 'iax'","authors":["E. Guy","K. Darilion"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6316":{"rfcNumber":"RFC6316","href":"https://www.rfc-editor.org/rfc/rfc6316","title":"Sockets Application Program Interface (API) for Multihoming Shim","authors":["M. Komu","M. Bagnulo","K. Slavov","S. Sugimoto, Ed."],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6317":{"rfcNumber":"RFC6317","href":"https://www.rfc-editor.org/rfc/rfc6317","title":"Basic Socket Interface Extensions for the Host Identity Protocol (HIP)","authors":["M. Komu","T. Henderson"],"rawDate":"2011-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6318":{"rfcNumber":"RFC6318","href":"https://www.rfc-editor.org/rfc/rfc6318","title":"Suite B in Secure/Multipurpose Internet Mail Extensions (S/MIME)","authors":["R. Housley","J. Solinas"],"rawDate":"2011-06","status":"Historic","obsoletes":["RFC5008"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6319":{"rfcNumber":"RFC6319","href":"https://www.rfc-editor.org/rfc/rfc6319","title":"Issues Associated with Designating Additional Private IPv4 Address Space","authors":["M. Azinger","L. Vegoda"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc632":{"aliasOf":"rfc0632"},"rfc6320":{"rfcNumber":"RFC6320","href":"https://www.rfc-editor.org/rfc/rfc6320","title":"Protocol for Access Node Control Mechanism in Broadband Networks","authors":["S. Wadhwa","J. Moisand","T. Haag","N. Voigt","T. Taylor, Ed."],"rawDate":"2011-10","status":"Proposed Standard","updatedBy":["RFC7256"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6321":{"rfcNumber":"RFC6321","href":"https://www.rfc-editor.org/rfc/rfc6321","title":"xCal: The XML Format for iCalendar","authors":["C. Daboo","M. Douglass","S. Lees"],"rawDate":"2011-08","status":"Proposed Standard","updatedBy":["RFC6868","RFC7529"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6321","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6322":{"rfcNumber":"RFC6322","href":"https://www.rfc-editor.org/rfc/rfc6322","title":"Datatracker States and Annotations for the IAB, IRTF, and Independent Submission Streams","authors":["P. Hoffman"],"rawDate":"2011-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6323":{"rfcNumber":"RFC6323","href":"https://www.rfc-editor.org/rfc/rfc6323","title":"Sender RTT Estimate Option for the Datagram Congestion Control Protocol (DCCP)","authors":["G. Renker","G. Fairhurst"],"rawDate":"2011-07","status":"Proposed Standard","updates":["RFC4342","RFC5622"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6324":{"rfcNumber":"RFC6324","href":"https://www.rfc-editor.org/rfc/rfc6324","title":"Routing Loop Attack Using IPv6 Automatic Tunnels: Problem Statement and Proposed Mitigations","authors":["G. Nakibly","F. Templin"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6325":{"rfcNumber":"RFC6325","href":"https://www.rfc-editor.org/rfc/rfc6325","title":"Routing Bridges (RBridges): Base Protocol Specification","authors":["R. Perlman","D. Eastlake 3rd","D. Dutt","S. Gai","A. Ghanwani"],"rawDate":"2011-07","status":"Proposed Standard","updatedBy":["RFC6327","RFC6439","RFC7172","RFC7177","RFC7357","RFC7179","RFC7180","RFC7455","RFC7780","RFC7783","RFC8139","RFC8249","RFC8361","RFC8377"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6325","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6326":{"rfcNumber":"RFC6326","href":"https://www.rfc-editor.org/rfc/rfc6326","title":"Transparent Interconnection of Lots of Links (TRILL) Use of IS-IS","authors":["D. Eastlake","A. Banerjee","D. Dutt","R. Perlman","A. Ghanwani"],"rawDate":"2011-07","status":"Proposed Standard","obsoletedBy":["RFC7176"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6326","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6327":{"rfcNumber":"RFC6327","href":"https://www.rfc-editor.org/rfc/rfc6327","title":"Routing Bridges (RBridges): Adjacency","authors":["D. Eastlake 3rd","R. Perlman","A. Ghanwani","D. Dutt","V. Manral"],"rawDate":"2011-07","status":"Proposed Standard","updatedBy":["RFC7180"],"obsoletedBy":["RFC7177"],"updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6328":{"rfcNumber":"RFC6328","href":"https://www.rfc-editor.org/rfc/rfc6328","title":"IANA Considerations for Network Layer Protocol Identifiers","authors":["D. Eastlake 3rd"],"rawDate":"2011-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6329":{"rfcNumber":"RFC6329","href":"https://www.rfc-editor.org/rfc/rfc6329","title":"IS-IS Extensions Supporting IEEE 802.1aq Shortest Path Bridging","authors":["D. Fedyk, Ed.","P. Ashwood-Smith, Ed.","D. Allan","A. Bragg","P. Unbehagen"],"rawDate":"2012-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6329","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc633":{"aliasOf":"rfc0633"},"rfc6330":{"rfcNumber":"RFC6330","href":"https://www.rfc-editor.org/rfc/rfc6330","title":"RaptorQ Forward Error Correction Scheme for Object Delivery","authors":["M. Luby","A. Shokrollahi","M. Watson","T. Stockhammer","L. Minder"],"rawDate":"2011-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6330","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6331":{"rfcNumber":"RFC6331","href":"https://www.rfc-editor.org/rfc/rfc6331","title":"Moving DIGEST-MD5 to Historic","authors":["A. Melnikov"],"rawDate":"2011-07","status":"Informational","obsoletes":["RFC2831"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6332":{"rfcNumber":"RFC6332","href":"https://www.rfc-editor.org/rfc/rfc6332","title":"Multicast Acquisition Report Block Type for RTP Control Protocol (RTCP) Extended Reports (XRs)","authors":["A. Begen","E. Friedrich"],"rawDate":"2011-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6333":{"rfcNumber":"RFC6333","href":"https://www.rfc-editor.org/rfc/rfc6333","title":"Dual-Stack Lite Broadband Deployments Following IPv4 Exhaustion","authors":["A. Durand","R. Droms","J. Woodyatt","Y. Lee"],"rawDate":"2011-08","status":"Proposed Standard","updatedBy":["RFC7335"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6333","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6334":{"rfcNumber":"RFC6334","href":"https://www.rfc-editor.org/rfc/rfc6334","title":"Dynamic Host Configuration Protocol for IPv6 (DHCPv6) Option for Dual-Stack Lite","authors":["D. Hankins","T. Mrugalski"],"rawDate":"2011-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6335":{"rfcNumber":"RFC6335","href":"https://www.rfc-editor.org/rfc/rfc6335","title":"Internet Assigned Numbers Authority (IANA) Procedures for the Management of the Service Name and Transport Protocol Port Number Registry","authors":["M. Cotton","L. Eggert","J. Touch","M. Westerlund","S. Cheshire"],"rawDate":"2011-08","status":"Best Current Practice","updates":["RFC2780","RFC2782","RFC3828","RFC4340","RFC4960","RFC5595"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6335","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6336":{"rfcNumber":"RFC6336","href":"https://www.rfc-editor.org/rfc/rfc6336","title":"IANA Registry for Interactive Connectivity Establishment (ICE) Options","authors":["M. Westerlund","C. Perkins"],"rawDate":"2011-07","status":"Proposed Standard","obsoletedBy":["RFC8839"],"updates":["RFC5245"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6337":{"rfcNumber":"RFC6337","href":"https://www.rfc-editor.org/rfc/rfc6337","title":"Session Initiation Protocol (SIP) Usage of the Offer/Answer Model","authors":["S. Okumura","T. Sawada","P. Kyzivat"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6338":{"rfcNumber":"RFC6338","href":"https://www.rfc-editor.org/rfc/rfc6338","title":"Definition of a Uniform Resource Name (URN) Namespace for the Schema for Academia (SCHAC)","authors":["V. Giralt","R. McDuff"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6339":{"rfcNumber":"RFC6339","href":"https://www.rfc-editor.org/rfc/rfc6339","title":"Context Token Encapsulate/Decapsulate and OID Comparison Functions for the Generic Security Service Application Program Interface (GSS-API)","authors":["S. Josefsson","L. Hornquist Astrand"],"rawDate":"2011-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc634":{"aliasOf":"rfc0634"},"rfc6340":{"rfcNumber":"RFC6340","href":"https://www.rfc-editor.org/rfc/rfc6340","title":"Textual Conventions for the Representation of Floating-Point Numbers","authors":["R. Presuhn"],"rawDate":"2011-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6341":{"rfcNumber":"RFC6341","href":"https://www.rfc-editor.org/rfc/rfc6341","title":"Use Cases and Requirements for SIP-Based Media Recording (SIPREC)","authors":["K. Rehor, Ed.","L. Portman, Ed.","A. Hutton","R. Jain"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6342":{"rfcNumber":"RFC6342","href":"https://www.rfc-editor.org/rfc/rfc6342","title":"Mobile Networks Considerations for IPv6 Deployment","authors":["R. Koodli"],"rawDate":"2011-08","status":"Informational","obsoletes":["RFC6312"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6343":{"rfcNumber":"RFC6343","href":"https://www.rfc-editor.org/rfc/rfc6343","title":"Advisory Guidelines for 6to4 Deployment","authors":["B. Carpenter"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6344":{"rfcNumber":"RFC6344","href":"https://www.rfc-editor.org/rfc/rfc6344","title":"Operating Virtual Concatenation (VCAT) and the Link Capacity Adjustment Scheme (LCAS) with Generalized Multi-Protocol Label Switching (GMPLS)","authors":["G. Bernstein, Ed.","D. Caviglia","R. Rabbat","H. van Helvoort"],"rawDate":"2011-08","status":"Proposed Standard","updates":["RFC4606"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6345":{"rfcNumber":"RFC6345","href":"https://www.rfc-editor.org/rfc/rfc6345","title":"Protocol for Carrying Authentication for Network Access (PANA) Relay Element","authors":["P. Duffy","S. Chakrabarti","R. Cragie","Y. Ohba, Ed.","A. Yegin"],"rawDate":"2011-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6345","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6346":{"rfcNumber":"RFC6346","href":"https://www.rfc-editor.org/rfc/rfc6346","title":"The Address plus Port (A+P) Approach to the IPv4 Address Shortage","authors":["R. Bush, Ed."],"rawDate":"2011-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6347":{"rfcNumber":"RFC6347","href":"https://www.rfc-editor.org/rfc/rfc6347","title":"Datagram Transport Layer Security Version 1.2","authors":["E. Rescorla","N. Modadugu"],"rawDate":"2012-01","status":"Proposed Standard","updatedBy":["RFC7507","RFC7905","RFC8996","RFC9146"],"obsoletedBy":["RFC9147"],"obsoletes":["RFC4347"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6347","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6348":{"rfcNumber":"RFC6348","href":"https://www.rfc-editor.org/rfc/rfc6348","title":"Requirements for Point-to-Multipoint Extensions to the Label Distribution Protocol","authors":["JL. Le Roux, Ed.","T. Morin, Ed."],"rawDate":"2011-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6349":{"rfcNumber":"RFC6349","href":"https://www.rfc-editor.org/rfc/rfc6349","title":"Framework for TCP Throughput Testing","authors":["B. Constantine","G. Forget","R. Geib","R. Schrage"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc635":{"aliasOf":"rfc0635"},"rfc6350":{"rfcNumber":"RFC6350","href":"https://www.rfc-editor.org/rfc/rfc6350","title":"vCard Format Specification","authors":["S. Perreault"],"rawDate":"2011-08","status":"Proposed Standard","updatedBy":["RFC6868"],"updates":["RFC2739"],"obsoletes":["RFC2425","RFC2426","RFC4770"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6350","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6351":{"rfcNumber":"RFC6351","href":"https://www.rfc-editor.org/rfc/rfc6351","title":"xCard: vCard XML Representation","authors":["S. Perreault"],"rawDate":"2011-08","status":"Proposed Standard","updatedBy":["RFC6868"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6351","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6352":{"rfcNumber":"RFC6352","href":"https://www.rfc-editor.org/rfc/rfc6352","title":"CardDAV: vCard Extensions to Web Distributed Authoring and Versioning (WebDAV)","authors":["C. Daboo"],"rawDate":"2011-08","status":"Proposed Standard","updatedBy":["RFC6764"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6352","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6353":{"rfcNumber":"RFC6353","href":"https://www.rfc-editor.org/rfc/rfc6353","title":"Transport Layer Security (TLS) Transport Model for the Simple Network Management Protocol (SNMP)","authors":["W. Hardaker"],"rawDate":"2011-07","status":"Internet Standard","updatedBy":["RFC8996","RFC9456"],"obsoletes":["RFC5953"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6354":{"rfcNumber":"RFC6354","href":"https://www.rfc-editor.org/rfc/rfc6354","title":"Forward-Shifted RTP Redundancy Payload Support","authors":["Q. Xie"],"rawDate":"2011-08","status":"Proposed Standard","updates":["RFC2198","RFC4102"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6355":{"rfcNumber":"RFC6355","href":"https://www.rfc-editor.org/rfc/rfc6355","title":"Definition of the UUID-Based DHCPv6 Unique Identifier (DUID-UUID)","authors":["T. Narten","J. Johnson"],"rawDate":"2011-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6356":{"rfcNumber":"RFC6356","href":"https://www.rfc-editor.org/rfc/rfc6356","title":"Coupled Congestion Control for Multipath Transport Protocols","authors":["C. Raiciu","M. Handley","D. Wischik"],"rawDate":"2011-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6357":{"rfcNumber":"RFC6357","href":"https://www.rfc-editor.org/rfc/rfc6357","title":"Design Considerations for Session Initiation Protocol (SIP) Overload Control","authors":["V. Hilt","E. Noel","C. Shen","A. Abdelal"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6358":{"rfcNumber":"RFC6358","href":"https://www.rfc-editor.org/rfc/rfc6358","title":"Additional Master Secret Inputs for TLS","authors":["P. Hoffman"],"rawDate":"2012-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6359":{"rfcNumber":"RFC6359","href":"https://www.rfc-editor.org/rfc/rfc6359","title":"Datatracker Extensions to Include IANA and RFC Editor Processing Information","authors":["S. Ginoza","M. Cotton","A. Morris"],"rawDate":"2011-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc636":{"aliasOf":"rfc0636"},"rfc6360":{"rfcNumber":"RFC6360","href":"https://www.rfc-editor.org/rfc/rfc6360","title":"Conclusion of FYI RFC Sub-Series","authors":["R. Housley"],"rawDate":"2011-08","status":"Informational","obsoletes":["RFC1150"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6361":{"rfcNumber":"RFC6361","href":"https://www.rfc-editor.org/rfc/rfc6361","title":"PPP Transparent Interconnection of Lots of Links (TRILL) Protocol Control Protocol","authors":["J. Carlson","D. Eastlake 3rd"],"rawDate":"2011-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6362":{"rfcNumber":"RFC6362","href":"https://www.rfc-editor.org/rfc/rfc6362","title":"Multiple Attachments for Electronic Data Interchange - Internet Integration (EDIINT)","authors":["K. Meadors, Ed."],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6363":{"rfcNumber":"RFC6363","href":"https://www.rfc-editor.org/rfc/rfc6363","title":"Forward Error Correction (FEC) Framework","authors":["M. Watson","A. Begen","V. Roca"],"rawDate":"2011-10","status":"Proposed Standard","updatedBy":["RFC8680"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6364":{"rfcNumber":"RFC6364","href":"https://www.rfc-editor.org/rfc/rfc6364","title":"Session Description Protocol Elements for the Forward Error Correction (FEC) Framework","authors":["A. Begen"],"rawDate":"2011-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6365":{"rfcNumber":"RFC6365","href":"https://www.rfc-editor.org/rfc/rfc6365","title":"Terminology Used in Internationalization in the IETF","authors":["P. Hoffman","J. Klensin"],"rawDate":"2011-09","status":"Best Current Practice","obsoletes":["RFC3536"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6365","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6366":{"rfcNumber":"RFC6366","href":"https://www.rfc-editor.org/rfc/rfc6366","title":"Requirements for an Internet Audio Codec","authors":["J. Valin","K. Vos"],"rawDate":"2011-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6367":{"rfcNumber":"RFC6367","href":"https://www.rfc-editor.org/rfc/rfc6367","title":"Addition of the Camellia Cipher Suites to Transport Layer Security (TLS)","authors":["S. Kanno","M. Kanda"],"rawDate":"2011-09","status":"Informational","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6367","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6368":{"rfcNumber":"RFC6368","href":"https://www.rfc-editor.org/rfc/rfc6368","title":"Internal BGP as the Provider/Customer Edge Protocol for BGP/MPLS IP Virtual Private Networks (VPNs)","authors":["P. Marques","R. Raszuk","K. Patel","K. Kumaki","T. Yamagata"],"rawDate":"2011-09","status":"Proposed Standard","updatedBy":["RFC7606","RFC9494"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6368","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6369":{"rfcNumber":"RFC6369","href":"https://www.rfc-editor.org/rfc/rfc6369","title":"Forwarding and Control Element Separation (ForCES) Implementation Experience","authors":["E. Haleplidis","O. Koufopavlou","S. Denazis"],"rawDate":"2011-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc637":{"aliasOf":"rfc0637"},"rfc6370":{"rfcNumber":"RFC6370","href":"https://www.rfc-editor.org/rfc/rfc6370","title":"MPLS Transport Profile (MPLS-TP) Identifiers","authors":["M. Bocci","G. Swallow","E. Gray"],"rawDate":"2011-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6371":{"rfcNumber":"RFC6371","href":"https://www.rfc-editor.org/rfc/rfc6371","title":"Operations, Administration, and Maintenance Framework for MPLS-Based Transport Networks","authors":["I. Busi, Ed.","D. Allan, Ed."],"rawDate":"2011-09","status":"Informational","updatedBy":["RFC6435"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6371","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6372":{"rfcNumber":"RFC6372","href":"https://www.rfc-editor.org/rfc/rfc6372","title":"MPLS Transport Profile (MPLS-TP) Survivability Framework","authors":["N. Sprecher, Ed.","A. Farrel, Ed."],"rawDate":"2011-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6373":{"rfcNumber":"RFC6373","href":"https://www.rfc-editor.org/rfc/rfc6373","title":"MPLS Transport Profile (MPLS-TP) Control Plane Framework","authors":["L. Andersson, Ed.","L. Berger, Ed.","L. Fang, Ed.","N. Bitar, Ed.","E. Gray, Ed."],"rawDate":"2011-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6374":{"rfcNumber":"RFC6374","href":"https://www.rfc-editor.org/rfc/rfc6374","title":"Packet Loss and Delay Measurement for MPLS Networks","authors":["D. Frost","S. Bryant"],"rawDate":"2011-09","status":"Proposed Standard","updatedBy":["RFC7214"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6374","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6375":{"rfcNumber":"RFC6375","href":"https://www.rfc-editor.org/rfc/rfc6375","title":"A Packet Loss and Delay Measurement Profile for MPLS-Based Transport Networks","authors":["D. Frost, Ed.","S. Bryant, Ed."],"rawDate":"2011-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6376":{"rfcNumber":"RFC6376","href":"https://www.rfc-editor.org/rfc/rfc6376","title":"DomainKeys Identified Mail (DKIM) Signatures","authors":["D. Crocker, Ed.","T. Hansen, Ed.","M. Kucherawy, Ed."],"rawDate":"2011-09","status":"Internet Standard","updatedBy":["RFC8301","RFC8463","RFC8553","RFC8616"],"obsoletes":["RFC4871","RFC5672"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6376","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6377":{"rfcNumber":"RFC6377","href":"https://www.rfc-editor.org/rfc/rfc6377","title":"DomainKeys Identified Mail (DKIM) and Mailing Lists","authors":["M. Kucherawy"],"rawDate":"2011-09","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6377","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6378":{"rfcNumber":"RFC6378","href":"https://www.rfc-editor.org/rfc/rfc6378","title":"MPLS Transport Profile (MPLS-TP) Linear Protection","authors":["Y. Weingarten, Ed.","S. Bryant","E. Osborne","N. Sprecher","A. Fulignoli, Ed."],"rawDate":"2011-10","status":"Proposed Standard","updatedBy":["RFC7214","RFC7271","RFC7324"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6379":{"rfcNumber":"RFC6379","href":"https://www.rfc-editor.org/rfc/rfc6379","title":"Suite B Cryptographic Suites for IPsec","authors":["L. Law","J. Solinas"],"rawDate":"2011-10","status":"Historic","obsoletes":["RFC4869"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc638":{"aliasOf":"rfc0638"},"rfc6380":{"rfcNumber":"RFC6380","href":"https://www.rfc-editor.org/rfc/rfc6380","title":"Suite B Profile for Internet Protocol Security (IPsec)","authors":["K. Burgin","M. Peck"],"rawDate":"2011-10","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6381":{"rfcNumber":"RFC6381","href":"https://www.rfc-editor.org/rfc/rfc6381","title":"The 'Codecs' and 'Profiles' Parameters for \"Bucket\" Media Types","authors":["R. Gellens","D. Singer","P. Frojdh"],"rawDate":"2011-08","status":"Proposed Standard","updates":["RFC3839","RFC4393","RFC4337"],"obsoletes":["RFC4281"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6381","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6382":{"rfcNumber":"RFC6382","href":"https://www.rfc-editor.org/rfc/rfc6382","title":"Unique Origin Autonomous System Numbers (ASNs) per Node for Globally Anycasted Services","authors":["D. McPherson","R. Donnelly","F. Scalzo"],"rawDate":"2011-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6383":{"rfcNumber":"RFC6383","href":"https://www.rfc-editor.org/rfc/rfc6383","title":"Advice on When It Is Safe to Start Sending Data on Label Switched Paths Established Using RSVP-TE","authors":["K. Shiomoto","A. Farrel"],"rawDate":"2011-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6384":{"rfcNumber":"RFC6384","href":"https://www.rfc-editor.org/rfc/rfc6384","title":"An FTP Application Layer Gateway (ALG) for IPv6-to-IPv4 Translation","authors":["I. van Beijnum"],"rawDate":"2011-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6385":{"rfcNumber":"RFC6385","href":"https://www.rfc-editor.org/rfc/rfc6385","title":"General Area Review Team (Gen-ART) Experiences","authors":["M. Barnes","A. Doria","H. Alvestrand","B. Carpenter"],"rawDate":"2011-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6386":{"rfcNumber":"RFC6386","href":"https://www.rfc-editor.org/rfc/rfc6386","title":"VP8 Data Format and Decoding Guide","authors":["J. Bankoski","J. Koleszar","L. Quillio","J. Salonen","P. Wilkins","Y. Xu"],"rawDate":"2011-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6386","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6387":{"rfcNumber":"RFC6387","href":"https://www.rfc-editor.org/rfc/rfc6387","title":"GMPLS Asymmetric Bandwidth Bidirectional Label Switched Paths (LSPs)","authors":["A. Takacs","L. Berger","D. Caviglia","D. Fedyk","J. Meuric"],"rawDate":"2011-09","status":"Proposed Standard","obsoletes":["RFC5467"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6388":{"rfcNumber":"RFC6388","href":"https://www.rfc-editor.org/rfc/rfc6388","title":"Label Distribution Protocol Extensions for Point-to-Multipoint and Multipoint-to-Multipoint Label Switched Paths","authors":["IJ. Wijnands, Ed.","I. Minei, Ed.","K. Kompella","B. Thomas"],"rawDate":"2011-11","status":"Proposed Standard","updatedBy":["RFC7358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6389":{"rfcNumber":"RFC6389","href":"https://www.rfc-editor.org/rfc/rfc6389","title":"MPLS Upstream Label Assignment for LDP","authors":["R. Aggarwal","JL. Le Roux"],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6390":{"rfcNumber":"RFC6390","href":"https://www.rfc-editor.org/rfc/rfc6390","title":"Guidelines for Considering New Performance Metric Development","authors":["A. Clark","B. Claise"],"rawDate":"2011-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6391":{"rfcNumber":"RFC6391","href":"https://www.rfc-editor.org/rfc/rfc6391","title":"Flow-Aware Transport of Pseudowires over an MPLS Packet Switched Network","authors":["S. Bryant, Ed.","C. Filsfils","U. Drafz","V. Kompella","J. Regan","S. Amante"],"rawDate":"2011-11","status":"Proposed Standard","updatedBy":["RFC7274"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6392":{"rfcNumber":"RFC6392","href":"https://www.rfc-editor.org/rfc/rfc6392","title":"A Survey of In-Network Storage Systems","authors":["R. Alimi, Ed.","A. Rahman, Ed.","Y. Yang, Ed."],"rawDate":"2011-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6392","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6393":{"rfcNumber":"RFC6393","href":"https://www.rfc-editor.org/rfc/rfc6393","title":"Moving RFC 4693 to Historic","authors":["M. Yevstifeyev"],"rawDate":"2011-09","status":"Informational","obsoletes":["RFC4693"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6394":{"rfcNumber":"RFC6394","href":"https://www.rfc-editor.org/rfc/rfc6394","title":"Use Cases and Requirements for DNS-Based Authentication of Named Entities (DANE)","authors":["R. Barnes"],"rawDate":"2011-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6395":{"rfcNumber":"RFC6395","href":"https://www.rfc-editor.org/rfc/rfc6395","title":"An Interface Identifier (ID) Hello Option for PIM","authors":["S. Gulrajani","S. Venaas"],"rawDate":"2011-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6396":{"rfcNumber":"RFC6396","href":"https://www.rfc-editor.org/rfc/rfc6396","title":"Multi-Threaded Routing Toolkit (MRT) Routing Information Export Format","authors":["L. Blunk","M. Karir","C. Labovitz"],"rawDate":"2011-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6396","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6397":{"rfcNumber":"RFC6397","href":"https://www.rfc-editor.org/rfc/rfc6397","title":"Multi-Threaded Routing Toolkit (MRT) Border Gateway Protocol (BGP) Routing Information Export Format with Geo-Location Extensions","authors":["T. Manderson"],"rawDate":"2011-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6398":{"rfcNumber":"RFC6398","href":"https://www.rfc-editor.org/rfc/rfc6398","title":"IP Router Alert Considerations and Usage","authors":["F. Le Faucheur, Ed."],"rawDate":"2011-10","status":"Best Current Practice","updates":["RFC2113","RFC2711"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc64":{"aliasOf":"rfc0064"},"rfc640":{"aliasOf":"rfc0640"},"rfc6401":{"rfcNumber":"RFC6401","href":"https://www.rfc-editor.org/rfc/rfc6401","title":"RSVP Extensions for Admission Priority","authors":["F. Le Faucheur","J. Polk","K. Carlberg"],"rawDate":"2011-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6402":{"rfcNumber":"RFC6402","href":"https://www.rfc-editor.org/rfc/rfc6402","title":"Certificate Management over CMS (CMC) Updates","authors":["J. Schaad"],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC5272","RFC5273","RFC5274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6402","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6403":{"rfcNumber":"RFC6403","href":"https://www.rfc-editor.org/rfc/rfc6403","title":"Suite B Profile of Certificate Management over CMS","authors":["L. Zieglar","S. Turner","M. Peck"],"rawDate":"2011-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6404":{"rfcNumber":"RFC6404","href":"https://www.rfc-editor.org/rfc/rfc6404","title":"Session PEERing for Multimedia INTerconnect (SPEERMINT) Security Threats and Suggested Countermeasures","authors":["J. Seedorf","S. Niccolini","E. Chen","H. Scholz"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6405":{"rfcNumber":"RFC6405","href":"https://www.rfc-editor.org/rfc/rfc6405","title":"Voice over IP (VoIP) SIP Peering Use Cases","authors":["A. Uzelac, Ed.","Y. Lee, Ed."],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6406":{"rfcNumber":"RFC6406","href":"https://www.rfc-editor.org/rfc/rfc6406","title":"Session PEERing for Multimedia INTerconnect (SPEERMINT) Architecture","authors":["D. Malas, Ed.","J. Livingood, Ed."],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6407":{"rfcNumber":"RFC6407","href":"https://www.rfc-editor.org/rfc/rfc6407","title":"The Group Domain of Interpretation","authors":["B. Weis","S. Rowles","T. Hardjono"],"rawDate":"2011-10","status":"Proposed Standard","obsoletes":["RFC3547"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6407","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6408":{"rfcNumber":"RFC6408","href":"https://www.rfc-editor.org/rfc/rfc6408","title":"Diameter Straightforward-Naming Authority Pointer (S-NAPTR) Usage","authors":["M. Jones","J. Korhonen","L. Morand"],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC3588"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6409":{"rfcNumber":"RFC6409","href":"https://www.rfc-editor.org/rfc/rfc6409","title":"Message Submission for Mail","authors":["R. Gellens","J. Klensin"],"rawDate":"2011-11","status":"Internet Standard","updatedBy":["RFC8314"],"obsoletes":["RFC4409"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6409","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6410":{"rfcNumber":"RFC6410","href":"https://www.rfc-editor.org/rfc/rfc6410","title":"Reducing the Standards Track to Two Maturity Levels","authors":["R. Housley","D. Crocker","E. Burger"],"rawDate":"2011-10","status":"Best Current Practice","updates":["RFC2026"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6410","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6411":{"rfcNumber":"RFC6411","href":"https://www.rfc-editor.org/rfc/rfc6411","title":"Applicability of Keying Methods for RSVP Security","authors":["M. Behringer","F. Le Faucheur","B. Weis"],"rawDate":"2011-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6412":{"rfcNumber":"RFC6412","href":"https://www.rfc-editor.org/rfc/rfc6412","title":"Terminology for Benchmarking Link-State IGP Data-Plane Route Convergence","authors":["S. Poretsky","B. Imhoff","K. Michielsen"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6413":{"rfcNumber":"RFC6413","href":"https://www.rfc-editor.org/rfc/rfc6413","title":"Benchmarking Methodology for Link-State IGP Data-Plane Route Convergence","authors":["S. Poretsky","B. Imhoff","K. Michielsen"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6414":{"rfcNumber":"RFC6414","href":"https://www.rfc-editor.org/rfc/rfc6414","title":"Benchmarking Terminology for Protection Performance","authors":["S. Poretsky","R. Papneja","J. Karthik","S. Vapiwala"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6415":{"rfcNumber":"RFC6415","href":"https://www.rfc-editor.org/rfc/rfc6415","title":"Web Host Metadata","authors":["E. Hammer-Lahav, Ed.","B. Cook"],"rawDate":"2011-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6415","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6416":{"rfcNumber":"RFC6416","href":"https://www.rfc-editor.org/rfc/rfc6416","title":"RTP Payload Format for MPEG-4 Audio/Visual Streams","authors":["M. Schmidt","F. de Bont","S. Doehla","J. Kim"],"rawDate":"2011-10","status":"Proposed Standard","obsoletes":["RFC3016"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6417":{"rfcNumber":"RFC6417","href":"https://www.rfc-editor.org/rfc/rfc6417","title":"How to Contribute Research Results to Internet Standardization","authors":["P. Eardley","L. Eggert","M. Bagnulo","R. Winter"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6418":{"rfcNumber":"RFC6418","href":"https://www.rfc-editor.org/rfc/rfc6418","title":"Multiple Interfaces and Provisioning Domains Problem Statement","authors":["M. Blanchet","P. Seite"],"rawDate":"2011-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6418","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6419":{"rfcNumber":"RFC6419","href":"https://www.rfc-editor.org/rfc/rfc6419","title":"Current Practices for Multiple-Interface Hosts","authors":["M. Wasserman","P. Seite"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc642":{"aliasOf":"rfc0642"},"rfc6420":{"rfcNumber":"RFC6420","href":"https://www.rfc-editor.org/rfc/rfc6420","title":"PIM Multi-Topology ID (MT-ID) Join Attribute","authors":["Y. Cai","H. Ou"],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6421":{"rfcNumber":"RFC6421","href":"https://www.rfc-editor.org/rfc/rfc6421","title":"Crypto-Agility Requirements for Remote Authentication Dial-In User Service (RADIUS)","authors":["D. Nelson, Ed."],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6422":{"rfcNumber":"RFC6422","href":"https://www.rfc-editor.org/rfc/rfc6422","title":"Relay-Supplied DHCP Options","authors":["T. Lemon","Q. Wu"],"rawDate":"2011-12","status":"Proposed Standard","updates":["RFC3315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6423":{"rfcNumber":"RFC6423","href":"https://www.rfc-editor.org/rfc/rfc6423","title":"Using the Generic Associated Channel Label for Pseudowire in the MPLS Transport Profile (MPLS-TP)","authors":["H. Li","L. Martini","J. He","F. Huang"],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC5586"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6424":{"rfcNumber":"RFC6424","href":"https://www.rfc-editor.org/rfc/rfc6424","title":"Mechanism for Performing Label Switched Path Ping (LSP Ping) over MPLS Tunnels","authors":["N. Bahadur","K. Kompella","G. Swallow"],"rawDate":"2011-11","status":"Proposed Standard","updatedBy":["RFC7537"],"obsoletedBy":["RFC8029"],"updates":["RFC4379"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6425":{"rfcNumber":"RFC6425","href":"https://www.rfc-editor.org/rfc/rfc6425","title":"Detecting Data-Plane Failures in Point-to-Multipoint MPLS - Extensions to LSP Ping","authors":["S. Saxena, Ed.","G. Swallow","Z. Ali","A. Farrel","S. Yasukawa","T. Nadeau"],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC4379"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6425","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6426":{"rfcNumber":"RFC6426","href":"https://www.rfc-editor.org/rfc/rfc6426","title":"MPLS On-Demand Connectivity Verification and Route Tracing","authors":["E. Gray","N. Bahadur","S. Boutros","R. Aggarwal"],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC4379"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6426","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6427":{"rfcNumber":"RFC6427","href":"https://www.rfc-editor.org/rfc/rfc6427","title":"MPLS Fault Management Operations, Administration, and Maintenance (OAM)","authors":["G. Swallow, Ed.","A. Fulignoli, Ed.","M. Vigoureux, Ed.","S. Boutros","D. Ward"],"rawDate":"2011-11","status":"Proposed Standard","updatedBy":["RFC7214"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6428":{"rfcNumber":"RFC6428","href":"https://www.rfc-editor.org/rfc/rfc6428","title":"Proactive Connectivity Verification, Continuity Check, and Remote Defect Indication for the MPLS Transport Profile","authors":["D. Allan, Ed.","G. Swallow, Ed.","J. Drake, Ed."],"rawDate":"2011-11","status":"Proposed Standard","updatedBy":["RFC7214"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6428","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6429":{"rfcNumber":"RFC6429","href":"https://www.rfc-editor.org/rfc/rfc6429","title":"TCP Sender Clarification for Persist Condition","authors":["M. Bashyam","M. Jethanandani","A. Ramaiah"],"rawDate":"2011-12","status":"Informational","obsoletedBy":["RFC9293"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc643":{"aliasOf":"rfc0643"},"rfc6430":{"rfcNumber":"RFC6430","href":"https://www.rfc-editor.org/rfc/rfc6430","title":"Email Feedback Report Type Value: not-spam","authors":["K. Li","B. Leiba"],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6431":{"rfcNumber":"RFC6431","href":"https://www.rfc-editor.org/rfc/rfc6431","title":"Huawei Port Range Configuration Options for PPP IP Control Protocol (IPCP)","authors":["M. Boucadair","P. Levis","G. Bajko","T. Savolainen","T. Tsou"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6432":{"rfcNumber":"RFC6432","href":"https://www.rfc-editor.org/rfc/rfc6432","title":"Carrying Q.850 Codes in Reason Header Fields in SIP (Session Initiation Protocol) Responses","authors":["R. Jesske","L. Liess"],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6433":{"rfcNumber":"RFC6433","href":"https://www.rfc-editor.org/rfc/rfc6433","title":"Requirements for a Working Group Milestones Tool","authors":["P. Hoffman"],"rawDate":"2011-11","status":"Informational","updates":["RFC6292"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6434":{"rfcNumber":"RFC6434","href":"https://www.rfc-editor.org/rfc/rfc6434","title":"IPv6 Node Requirements","authors":["E. Jankiewicz","J. Loughney","T. Narten"],"rawDate":"2011-12","status":"Informational","obsoletedBy":["RFC8504"],"obsoletes":["RFC4294"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6434","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6435":{"rfcNumber":"RFC6435","href":"https://www.rfc-editor.org/rfc/rfc6435","title":"MPLS Transport Profile Lock Instruct and Loopback Functions","authors":["S. Boutros, Ed.","S. Sivabalan, Ed.","R. Aggarwal, Ed.","M. Vigoureux, Ed.","X. Dai, Ed."],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC6371"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6435","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6436":{"rfcNumber":"RFC6436","href":"https://www.rfc-editor.org/rfc/rfc6436","title":"Rationale for Update to the IPv6 Flow Label Specification","authors":["S. Amante","B. Carpenter","S. Jiang"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6437":{"rfcNumber":"RFC6437","href":"https://www.rfc-editor.org/rfc/rfc6437","title":"IPv6 Flow Label Specification","authors":["S. Amante","B. Carpenter","S. Jiang","J. Rajahalme"],"rawDate":"2011-11","status":"Proposed Standard","updates":["RFC2205","RFC2460"],"obsoletes":["RFC3697"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6438":{"rfcNumber":"RFC6438","href":"https://www.rfc-editor.org/rfc/rfc6438","title":"Using the IPv6 Flow Label for Equal Cost Multipath Routing and Link Aggregation in Tunnels","authors":["B. Carpenter","S. Amante"],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6439":{"rfcNumber":"RFC6439","href":"https://www.rfc-editor.org/rfc/rfc6439","title":"Routing Bridges (RBridges): Appointed Forwarders","authors":["R. Perlman","D. Eastlake","Y. Li","A. Banerjee","F. Hu"],"rawDate":"2011-11","status":"Proposed Standard","updatedBy":["RFC7180"],"obsoletedBy":["RFC8139"],"updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc644":{"aliasOf":"rfc0644"},"rfc6440":{"rfcNumber":"RFC6440","href":"https://www.rfc-editor.org/rfc/rfc6440","title":"The EAP Re-authentication Protocol (ERP) Local Domain Name DHCPv6 Option","authors":["G. Zorn","Q. Wu","Y. Wang"],"rawDate":"2011-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6441":{"rfcNumber":"RFC6441","href":"https://www.rfc-editor.org/rfc/rfc6441","title":"Time to Remove Filters for Previously Unallocated IPv4 /8s","authors":["L. Vegoda"],"rawDate":"2011-11","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6442":{"rfcNumber":"RFC6442","href":"https://www.rfc-editor.org/rfc/rfc6442","title":"Location Conveyance for the Session Initiation Protocol","authors":["J. Polk","B. Rosen","J. Peterson"],"rawDate":"2011-12","status":"Proposed Standard","updatedBy":["RFC8262","RFC8787"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6442","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6443":{"rfcNumber":"RFC6443","href":"https://www.rfc-editor.org/rfc/rfc6443","title":"Framework for Emergency Calling Using Internet Multimedia","authors":["B. Rosen","H. Schulzrinne","J. Polk","A. Newton"],"rawDate":"2011-12","status":"Informational","updatedBy":["RFC7852"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6444":{"rfcNumber":"RFC6444","href":"https://www.rfc-editor.org/rfc/rfc6444","title":"Location Hiding: Problem Statement and Requirements","authors":["H. Schulzrinne","L. Liess","H. Tschofenig","B. Stark","A. Kuett"],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6445":{"rfcNumber":"RFC6445","href":"https://www.rfc-editor.org/rfc/rfc6445","title":"Multiprotocol Label Switching (MPLS) Traffic Engineering Management Information Base for Fast Reroute","authors":["T. Nadeau, Ed.","A. Koushik, Ed.","R. Cetin, Ed."],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6446":{"rfcNumber":"RFC6446","href":"https://www.rfc-editor.org/rfc/rfc6446","title":"Session Initiation Protocol (SIP) Event Notification Extension for Notification Rate Control","authors":["A. Niemi","K. Kiss","S. Loreto"],"rawDate":"2012-01","status":"Proposed Standard","updates":["RFC3265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6447":{"rfcNumber":"RFC6447","href":"https://www.rfc-editor.org/rfc/rfc6447","title":"Filtering Location Notifications in the Session Initiation Protocol (SIP)","authors":["R. Mahy","B. Rosen","H. Tschofenig"],"rawDate":"2012-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6448":{"rfcNumber":"RFC6448","href":"https://www.rfc-editor.org/rfc/rfc6448","title":"The Unencrypted Form of Kerberos 5 KRB-CRED Message","authors":["R. Yount"],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6449":{"rfcNumber":"RFC6449","href":"https://www.rfc-editor.org/rfc/rfc6449","title":"Complaint Feedback Loop Operational Recommendations","authors":["J. Falk, Ed."],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc645":{"aliasOf":"rfc0645"},"rfc6450":{"rfcNumber":"RFC6450","href":"https://www.rfc-editor.org/rfc/rfc6450","title":"Multicast Ping Protocol","authors":["S. Venaas"],"rawDate":"2011-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6451":{"rfcNumber":"RFC6451","href":"https://www.rfc-editor.org/rfc/rfc6451","title":"Location-to-Service Translation (LoST) Protocol Extensions","authors":["A. Forte","H. Schulzrinne"],"rawDate":"2011-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6452":{"rfcNumber":"RFC6452","href":"https://www.rfc-editor.org/rfc/rfc6452","title":"The Unicode Code Points and Internationalized Domain Names for Applications (IDNA) - Unicode 6.0","authors":["P. Faltstrom, Ed.","P. Hoffman, Ed."],"rawDate":"2011-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6453":{"rfcNumber":"RFC6453","href":"https://www.rfc-editor.org/rfc/rfc6453","title":"A URN Namespace for the Open Grid Forum (OGF)","authors":["F. Dijkstra","R. Hughes-Jones"],"rawDate":"2011-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6454":{"rfcNumber":"RFC6454","href":"https://www.rfc-editor.org/rfc/rfc6454","title":"The Web Origin Concept","authors":["A. Barth"],"rawDate":"2011-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6454","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6455":{"rfcNumber":"RFC6455","href":"https://www.rfc-editor.org/rfc/rfc6455","title":"The WebSocket Protocol","authors":["I. Fette","A. Melnikov"],"rawDate":"2011-12","status":"Proposed Standard","updatedBy":["RFC7936","RFC8307","RFC8441"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6455","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6456":{"rfcNumber":"RFC6456","href":"https://www.rfc-editor.org/rfc/rfc6456","title":"Multi-Segment Pseudowires in Passive Optical Networks","authors":["H. Li","R. Zheng","A. Farrel"],"rawDate":"2011-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6457":{"rfcNumber":"RFC6457","href":"https://www.rfc-editor.org/rfc/rfc6457","title":"PCC-PCE Communication and PCE Discovery Requirements for Inter-Layer Traffic Engineering","authors":["T. Takeda, Ed.","A. Farrel"],"rawDate":"2011-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6458":{"rfcNumber":"RFC6458","href":"https://www.rfc-editor.org/rfc/rfc6458","title":"Sockets API Extensions for the Stream Control Transmission Protocol (SCTP)","authors":["R. Stewart","M. Tuexen","K. Poon","P. Lei","V. Yasevich"],"rawDate":"2011-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6458","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6459":{"rfcNumber":"RFC6459","href":"https://www.rfc-editor.org/rfc/rfc6459","title":"IPv6 in 3rd Generation Partnership Project (3GPP) Evolved Packet System (EPS)","authors":["J. Korhonen, Ed.","J. Soininen","B. Patil","T. Savolainen","G. Bajko","K. Iisakkila"],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6460":{"rfcNumber":"RFC6460","href":"https://www.rfc-editor.org/rfc/rfc6460","title":"Suite B Profile for Transport Layer Security (TLS)","authors":["M. Salter","R. Housley"],"rawDate":"2012-01","status":"Historic","updatedBy":["RFC8996"],"obsoletes":["RFC5430"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6460","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6461":{"rfcNumber":"RFC6461","href":"https://www.rfc-editor.org/rfc/rfc6461","title":"Data for Reachability of Inter-/Intra-NetworK SIP (DRINKS) Use Cases and Protocol Requirements","authors":["S. Channabasappa, Ed."],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6462":{"rfcNumber":"RFC6462","href":"https://www.rfc-editor.org/rfc/rfc6462","title":"Report from the Internet Privacy Workshop","authors":["A. Cooper"],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6463":{"rfcNumber":"RFC6463","href":"https://www.rfc-editor.org/rfc/rfc6463","title":"Runtime Local Mobility Anchor (LMA) Assignment Support for Proxy Mobile IPv6","authors":["J. Korhonen, Ed.","S. Gundavelli","H. Yokota","X. Cui"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6464":{"rfcNumber":"RFC6464","href":"https://www.rfc-editor.org/rfc/rfc6464","title":"A Real-time Transport Protocol (RTP) Header Extension for Client-to-Mixer Audio Level Indication","authors":["J. Lennox, Ed.","E. Ivov","E. Marocco"],"rawDate":"2011-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6465":{"rfcNumber":"RFC6465","href":"https://www.rfc-editor.org/rfc/rfc6465","title":"A Real-time Transport Protocol (RTP) Header Extension for Mixer-to-Client Audio Level Indication","authors":["E. Ivov, Ed.","E. Marocco, Ed.","J. Lennox"],"rawDate":"2011-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6466":{"rfcNumber":"RFC6466","href":"https://www.rfc-editor.org/rfc/rfc6466","title":"IANA Registration of the 'image' Media Type for the Session Description Protocol (SDP)","authors":["G. Salgueiro"],"rawDate":"2011-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6467":{"rfcNumber":"RFC6467","href":"https://www.rfc-editor.org/rfc/rfc6467","title":"Secure Password Framework for Internet Key Exchange Version 2 (IKEv2)","authors":["T. Kivinen"],"rawDate":"2011-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6468":{"rfcNumber":"RFC6468","href":"https://www.rfc-editor.org/rfc/rfc6468","title":"Sieve Notification Mechanism: SIP MESSAGE","authors":["A. Melnikov","B. Leiba","K. Li"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6469":{"rfcNumber":"RFC6469","href":"https://www.rfc-editor.org/rfc/rfc6469","title":"RTP Payload Format for DV (IEC 61834) Video","authors":["K. Kobayashi","K. Mishima","S. Casner","C. Bormann"],"rawDate":"2011-12","status":"Proposed Standard","obsoletes":["RFC3189"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc647":{"aliasOf":"rfc0647"},"rfc6470":{"rfcNumber":"RFC6470","href":"https://www.rfc-editor.org/rfc/rfc6470","title":"Network Configuration Protocol (NETCONF) Base Notifications","authors":["A. Bierman"],"rawDate":"2012-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6470","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6471":{"rfcNumber":"RFC6471","href":"https://www.rfc-editor.org/rfc/rfc6471","title":"Overview of Best Email DNS-Based List (DNSBL) Operational Practices","authors":["C. Lewis","M. Sergeant"],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6472":{"rfcNumber":"RFC6472","href":"https://www.rfc-editor.org/rfc/rfc6472","title":"Recommendation for Not Using AS_SET and AS_CONFED_SET in BGP","authors":["W. Kumari","K. Sriram"],"rawDate":"2011-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6473":{"rfcNumber":"RFC6473","href":"https://www.rfc-editor.org/rfc/rfc6473","title":"vCard KIND:application","authors":["P. Saint-Andre"],"rawDate":"2011-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6474":{"rfcNumber":"RFC6474","href":"https://www.rfc-editor.org/rfc/rfc6474","title":"vCard Format Extensions: Place of Birth, Place and Date of Death","authors":["K. Li","B. Leiba"],"rawDate":"2011-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6474","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6475":{"rfcNumber":"RFC6475","href":"https://www.rfc-editor.org/rfc/rfc6475","title":"Proxy Mobile IPv6 Management Information Base","authors":["G. Keeni","K. Koide","S. Gundavelli","R. Wakikawa"],"rawDate":"2012-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6475","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6476":{"rfcNumber":"RFC6476","href":"https://www.rfc-editor.org/rfc/rfc6476","title":"Using Message Authentication Code (MAC) Encryption in the Cryptographic Message Syntax (CMS)","authors":["P. Gutmann"],"rawDate":"2012-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6476","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6477":{"rfcNumber":"RFC6477","href":"https://www.rfc-editor.org/rfc/rfc6477","title":"Registration of Military Message Handling System (MMHS) Header Fields for Use in Internet Mail","authors":["A. Melnikov","G. Lunt"],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6478":{"rfcNumber":"RFC6478","href":"https://www.rfc-editor.org/rfc/rfc6478","title":"Pseudowire Status for Static Pseudowires","authors":["L. Martini","G. Swallow","G. Heron","M. Bocci"],"rawDate":"2012-05","status":"Proposed Standard","updatedBy":["RFC7274"],"updates":["RFC5885"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6479":{"rfcNumber":"RFC6479","href":"https://www.rfc-editor.org/rfc/rfc6479","title":"IPsec Anti-Replay Algorithm without Bit Shifting","authors":["X. Zhang","T. Tsou"],"rawDate":"2012-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6480":{"rfcNumber":"RFC6480","href":"https://www.rfc-editor.org/rfc/rfc6480","title":"An Infrastructure to Support Secure Internet Routing","authors":["M. Lepinski","S. Kent"],"rawDate":"2012-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6480","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6481":{"rfcNumber":"RFC6481","href":"https://www.rfc-editor.org/rfc/rfc6481","title":"A Profile for Resource Certificate Repository Structure","authors":["G. Huston","R. Loomans","G. Michaelson"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6482":{"rfcNumber":"RFC6482","href":"https://www.rfc-editor.org/rfc/rfc6482","title":"A Profile for Route Origin Authorizations (ROAs)","authors":["M. Lepinski","S. Kent","D. Kong"],"rawDate":"2012-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6482","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6483":{"rfcNumber":"RFC6483","href":"https://www.rfc-editor.org/rfc/rfc6483","title":"Validation of Route Origination Using the Resource Certificate Public Key Infrastructure (PKI) and Route Origin Authorizations (ROAs)","authors":["G. Huston","G. Michaelson"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6484":{"rfcNumber":"RFC6484","href":"https://www.rfc-editor.org/rfc/rfc6484","title":"Certificate Policy (CP) for the Resource Public Key Infrastructure (RPKI)","authors":["S. Kent","D. Kong","K. Seo","R. Watro"],"rawDate":"2012-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6485":{"rfcNumber":"RFC6485","href":"https://www.rfc-editor.org/rfc/rfc6485","title":"The Profile for Algorithms and Key Sizes for Use in the Resource Public Key Infrastructure (RPKI)","authors":["G. Huston"],"rawDate":"2012-02","status":"Proposed Standard","obsoletedBy":["RFC7935"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6485","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6486":{"rfcNumber":"RFC6486","href":"https://www.rfc-editor.org/rfc/rfc6486","title":"Manifests for the Resource Public Key Infrastructure (RPKI)","authors":["R. Austein","G. Huston","S. Kent","M. Lepinski"],"rawDate":"2012-02","status":"Proposed Standard","obsoletedBy":["RFC9286"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6487":{"rfcNumber":"RFC6487","href":"https://www.rfc-editor.org/rfc/rfc6487","title":"A Profile for X.509 PKIX Resource Certificates","authors":["G. Huston","G. Michaelson","R. Loomans"],"rawDate":"2012-02","status":"Proposed Standard","updatedBy":["RFC7318","RFC8209"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6487","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6488":{"rfcNumber":"RFC6488","href":"https://www.rfc-editor.org/rfc/rfc6488","title":"Signed Object Template for the Resource Public Key Infrastructure (RPKI)","authors":["M. Lepinski","A. Chi","S. Kent"],"rawDate":"2012-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6488","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6489":{"rfcNumber":"RFC6489","href":"https://www.rfc-editor.org/rfc/rfc6489","title":"Certification Authority (CA) Key Rollover in the Resource Public Key Infrastructure (RPKI)","authors":["G. Huston","G. Michaelson","S. Kent"],"rawDate":"2012-02","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6489","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6490":{"rfcNumber":"RFC6490","href":"https://www.rfc-editor.org/rfc/rfc6490","title":"Resource Public Key Infrastructure (RPKI) Trust Anchor Locator","authors":["G. Huston","S. Weiler","G. Michaelson","S. Kent"],"rawDate":"2012-02","status":"Proposed Standard","obsoletedBy":["RFC7730"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6491":{"rfcNumber":"RFC6491","href":"https://www.rfc-editor.org/rfc/rfc6491","title":"Resource Public Key Infrastructure (RPKI) Objects Issued by IANA","authors":["T. Manderson","L. Vegoda","S. Kent"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6492":{"rfcNumber":"RFC6492","href":"https://www.rfc-editor.org/rfc/rfc6492","title":"A Protocol for Provisioning Resource Certificates","authors":["G. Huston","R. Loomans","B. Ellacott","R. Austein"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6493":{"rfcNumber":"RFC6493","href":"https://www.rfc-editor.org/rfc/rfc6493","title":"The Resource Public Key Infrastructure (RPKI) Ghostbusters Record","authors":["R. Bush"],"rawDate":"2012-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6493","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6494":{"rfcNumber":"RFC6494","href":"https://www.rfc-editor.org/rfc/rfc6494","title":"Certificate Profile and Certificate Management for SEcure Neighbor Discovery (SEND)","authors":["R. Gagliano","S. Krishnan","A. Kukec"],"rawDate":"2012-02","status":"Proposed Standard","updates":["RFC3971"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6494","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6495":{"rfcNumber":"RFC6495","href":"https://www.rfc-editor.org/rfc/rfc6495","title":"Subject Key Identifier (SKI) SEcure Neighbor Discovery (SEND) Name Type Fields","authors":["R. Gagliano","S. Krishnan","A. Kukec"],"rawDate":"2012-02","status":"Proposed Standard","updates":["RFC3971"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6496":{"rfcNumber":"RFC6496","href":"https://www.rfc-editor.org/rfc/rfc6496","title":"Secure Proxy ND Support for SEcure Neighbor Discovery (SEND)","authors":["S. Krishnan","J. Laganier","M. Bonola","A. Garcia-Martinez"],"rawDate":"2012-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6497":{"rfcNumber":"RFC6497","href":"https://www.rfc-editor.org/rfc/rfc6497","title":"BCP 47 Extension T - Transformed Content","authors":["M. Davis","A. Phillips","Y. Umaoka","C. Falk"],"rawDate":"2012-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6497","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6498":{"rfcNumber":"RFC6498","href":"https://www.rfc-editor.org/rfc/rfc6498","title":"Media Gateway Control Protocol (MGCP) Voiceband Data (VBD) Package and General-Purpose Media Descriptor Parameter Package","authors":["J. Stone","R. Kumar","F. Andreasen"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc65":{"aliasOf":"rfc0065"},"rfc6501":{"rfcNumber":"RFC6501","href":"https://www.rfc-editor.org/rfc/rfc6501","title":"Conference Information Data Model for Centralized Conferencing (XCON)","authors":["O. Novo","G. Camarillo","D. Morgan","J. Urpalainen"],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6502":{"rfcNumber":"RFC6502","href":"https://www.rfc-editor.org/rfc/rfc6502","title":"Conference Event Package Data Format Extension for Centralized Conferencing (XCON)","authors":["G. Camarillo","S. Srinivasan","R. Even","J. Urpalainen"],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6503":{"rfcNumber":"RFC6503","href":"https://www.rfc-editor.org/rfc/rfc6503","title":"Centralized Conferencing Manipulation Protocol","authors":["M. Barnes","C. Boulton","S. Romano","H. Schulzrinne"],"rawDate":"2012-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6503","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6504":{"rfcNumber":"RFC6504","href":"https://www.rfc-editor.org/rfc/rfc6504","title":"Centralized Conferencing Manipulation Protocol (CCMP) Call Flow Examples","authors":["M. Barnes","L. Miniero","R. Presta","S P. Romano"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6505":{"rfcNumber":"RFC6505","href":"https://www.rfc-editor.org/rfc/rfc6505","title":"A Mixer Control Package for the Media Control Channel Framework","authors":["S. McGlashan","T. Melanchuk","C. Boulton"],"rawDate":"2012-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6505","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6506":{"rfcNumber":"RFC6506","href":"https://www.rfc-editor.org/rfc/rfc6506","title":"Supporting Authentication Trailer for OSPFv3","authors":["M. Bhatia","V. Manral","A. Lindem"],"rawDate":"2012-02","status":"Proposed Standard","obsoletedBy":["RFC7166"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6506","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6507":{"rfcNumber":"RFC6507","href":"https://www.rfc-editor.org/rfc/rfc6507","title":"Elliptic Curve-Based Certificateless Signatures for Identity-Based Encryption (ECCSI)","authors":["M. Groves"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6508":{"rfcNumber":"RFC6508","href":"https://www.rfc-editor.org/rfc/rfc6508","title":"Sakai-Kasahara Key Encryption (SAKKE)","authors":["M. Groves"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6509":{"rfcNumber":"RFC6509","href":"https://www.rfc-editor.org/rfc/rfc6509","title":"MIKEY-SAKKE: Sakai-Kasahara Key Encryption in Multimedia Internet KEYing (MIKEY)","authors":["M. Groves"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc651":{"aliasOf":"rfc0651"},"rfc6510":{"rfcNumber":"RFC6510","href":"https://www.rfc-editor.org/rfc/rfc6510","title":"Resource Reservation Protocol (RSVP) Message Formats for Label Switched Path (LSP) Attributes Objects","authors":["L. Berger","G. Swallow"],"rawDate":"2012-02","status":"Proposed Standard","updates":["RFC4875","RFC5420"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6511":{"rfcNumber":"RFC6511","href":"https://www.rfc-editor.org/rfc/rfc6511","title":"Non-Penultimate Hop Popping Behavior and Out-of-Band Mapping for RSVP-TE Label Switched Paths","authors":["Z. Ali","G. Swallow","R. Aggarwal"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6512":{"rfcNumber":"RFC6512","href":"https://www.rfc-editor.org/rfc/rfc6512","title":"Using Multipoint LDP When the Backbone Has No Route to the Root","authors":["IJ. Wijnands","E. Rosen","M. Napierala","N. Leymann"],"rawDate":"2012-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6512","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6513":{"rfcNumber":"RFC6513","href":"https://www.rfc-editor.org/rfc/rfc6513","title":"Multicast in MPLS/BGP IP VPNs","authors":["E. Rosen, Ed.","R. Aggarwal, Ed."],"rawDate":"2012-02","status":"Proposed Standard","updatedBy":["RFC7582","RFC7900","RFC7988"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6513","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6514":{"rfcNumber":"RFC6514","href":"https://www.rfc-editor.org/rfc/rfc6514","title":"BGP Encodings and Procedures for Multicast in MPLS/BGP IP VPNs","authors":["R. Aggarwal","E. Rosen","T. Morin","Y. Rekhter"],"rawDate":"2012-02","status":"Proposed Standard","updatedBy":["RFC6515","RFC6625","RFC7385","RFC7441","RFC7582","RFC7899","RFC7900","RFC7902","RFC7988","RFC8534","RFC9081"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6514","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6515":{"rfcNumber":"RFC6515","href":"https://www.rfc-editor.org/rfc/rfc6515","title":"IPv4 and IPv6 Infrastructure Addresses in BGP Updates for Multicast VPN","authors":["R. Aggarwal","E. Rosen"],"rawDate":"2012-02","status":"Proposed Standard","updates":["RFC6514"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6515","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6516":{"rfcNumber":"RFC6516","href":"https://www.rfc-editor.org/rfc/rfc6516","title":"IPv6 Multicast VPN (MVPN) Support Using PIM Control Plane and Selective Provider Multicast Service Interface (S-PMSI) Join Messages","authors":["Y. Cai","E. Rosen, Ed.","I. Wijnands"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6517":{"rfcNumber":"RFC6517","href":"https://www.rfc-editor.org/rfc/rfc6517","title":"Mandatory Features in a Layer 3 Multicast BGP/MPLS VPN Solution","authors":["T. Morin, Ed.","B. Niven-Jenkins, Ed.","Y. Kamite","R. Zhang","N. Leymann","N. Bitar"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6518":{"rfcNumber":"RFC6518","href":"https://www.rfc-editor.org/rfc/rfc6518","title":"Keying and Authentication for Routing Protocols (KARP) Design Guidelines","authors":["G. Lebovitz","M. Bhatia"],"rawDate":"2012-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6519":{"rfcNumber":"RFC6519","href":"https://www.rfc-editor.org/rfc/rfc6519","title":"RADIUS Extensions for Dual-Stack Lite","authors":["R. Maglione","A. Durand"],"rawDate":"2012-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc652":{"aliasOf":"rfc0652"},"rfc6520":{"rfcNumber":"RFC6520","href":"https://www.rfc-editor.org/rfc/rfc6520","title":"Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) Heartbeat Extension","authors":["R. Seggelmann","M. Tuexen","M. Williams"],"rawDate":"2012-02","status":"Proposed Standard","updatedBy":["RFC8447"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6520","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6521":{"rfcNumber":"RFC6521","href":"https://www.rfc-editor.org/rfc/rfc6521","title":"Home Agent-Assisted Route Optimization between Mobile IPv4 Networks","authors":["A. Makela","J. Korhonen"],"rawDate":"2012-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6522":{"rfcNumber":"RFC6522","href":"https://www.rfc-editor.org/rfc/rfc6522","title":"The Multipart/Report Media Type for the Reporting of Mail System Administrative Messages","authors":["M. Kucherawy, Ed."],"rawDate":"2012-01","status":"Internet Standard","updatedBy":["RFC6533"],"obsoletes":["RFC3462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6525":{"rfcNumber":"RFC6525","href":"https://www.rfc-editor.org/rfc/rfc6525","title":"Stream Control Transmission Protocol (SCTP) Stream Reconfiguration","authors":["R. Stewart","M. Tuexen","P. Lei"],"rawDate":"2012-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6526":{"rfcNumber":"RFC6526","href":"https://www.rfc-editor.org/rfc/rfc6526","title":"IP Flow Information Export (IPFIX) Per Stream Control Transmission Protocol (SCTP) Stream","authors":["B. Claise","P. Aitken","A. Johnson","G. Muenz"],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6527":{"rfcNumber":"RFC6527","href":"https://www.rfc-editor.org/rfc/rfc6527","title":"Definitions of Managed Objects for Virtual Router Redundancy Protocol Version 3 (VRRPv3)","authors":["K. Tata"],"rawDate":"2012-03","status":"Proposed Standard","obsoletes":["RFC2787"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6527","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6528":{"rfcNumber":"RFC6528","href":"https://www.rfc-editor.org/rfc/rfc6528","title":"Defending against Sequence Number Attacks","authors":["F. Gont","S. Bellovin"],"rawDate":"2012-02","status":"Proposed Standard","obsoletedBy":["RFC9293"],"updates":["RFC0793"],"obsoletes":["RFC1948"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6529":{"rfcNumber":"RFC6529","href":"https://www.rfc-editor.org/rfc/rfc6529","title":"Host/Host Protocol for the ARPA Network","authors":["A. McKenzie","S. Crocker"],"rawDate":"2012-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc653":{"aliasOf":"rfc0653"},"rfc6530":{"rfcNumber":"RFC6530","href":"https://www.rfc-editor.org/rfc/rfc6530","title":"Overview and Framework for Internationalized Email","authors":["J. Klensin","Y. Ko"],"rawDate":"2012-02","status":"Proposed Standard","obsoletes":["RFC4952","RFC5504","RFC5825"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6531":{"rfcNumber":"RFC6531","href":"https://www.rfc-editor.org/rfc/rfc6531","title":"SMTP Extension for Internationalized Email","authors":["J. Yao","W. Mao"],"rawDate":"2012-02","status":"Proposed Standard","obsoletes":["RFC5336"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6531","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6532":{"rfcNumber":"RFC6532","href":"https://www.rfc-editor.org/rfc/rfc6532","title":"Internationalized Email Headers","authors":["A. Yang","S. Steele","N. Freed"],"rawDate":"2012-02","status":"Proposed Standard","updates":["RFC2045"],"obsoletes":["RFC5335"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6532","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6533":{"rfcNumber":"RFC6533","href":"https://www.rfc-editor.org/rfc/rfc6533","title":"Internationalized Delivery Status and Disposition Notifications","authors":["T. Hansen, Ed.","C. Newman","A. Melnikov"],"rawDate":"2012-02","status":"Proposed Standard","updates":["RFC3461","RFC3464","RFC3798","RFC6522"],"obsoletes":["RFC5337"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6534":{"rfcNumber":"RFC6534","href":"https://www.rfc-editor.org/rfc/rfc6534","title":"Loss Episode Metrics for IP Performance Metrics (IPPM)","authors":["N. Duffield","A. Morton","J. Sommers"],"rawDate":"2012-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6535":{"rfcNumber":"RFC6535","href":"https://www.rfc-editor.org/rfc/rfc6535","title":"Dual-Stack Hosts Using \"Bump-in-the-Host\" (BIH)","authors":["B. Huang","H. Deng","T. Savolainen"],"rawDate":"2012-02","status":"Proposed Standard","obsoletes":["RFC2767","RFC3338"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6535","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6536":{"rfcNumber":"RFC6536","href":"https://www.rfc-editor.org/rfc/rfc6536","title":"Network Configuration Protocol (NETCONF) Access Control Model","authors":["A. Bierman","M. Bjorklund"],"rawDate":"2012-03","status":"Proposed Standard","obsoletedBy":["RFC8341"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6536","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6537":{"rfcNumber":"RFC6537","href":"https://www.rfc-editor.org/rfc/rfc6537","title":"Host Identity Protocol Distributed Hash Table Interface","authors":["J. Ahrenholz"],"rawDate":"2012-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6538":{"rfcNumber":"RFC6538","href":"https://www.rfc-editor.org/rfc/rfc6538","title":"The Host Identity Protocol (HIP) Experiment Report","authors":["T. Henderson","A. Gurtov"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6539":{"rfcNumber":"RFC6539","href":"https://www.rfc-editor.org/rfc/rfc6539","title":"IBAKE: Identity-Based Authenticated Key Exchange","authors":["V. Cakulev","G. Sundaram","I. Broustis"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc654":{"aliasOf":"rfc0654"},"rfc6540":{"rfcNumber":"RFC6540","href":"https://www.rfc-editor.org/rfc/rfc6540","title":"IPv6 Support Required for All IP-Capable Nodes","authors":["W. George","C. Donley","C. Liljenstolpe","L. Howard"],"rawDate":"2012-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6541":{"rfcNumber":"RFC6541","href":"https://www.rfc-editor.org/rfc/rfc6541","title":"DomainKeys Identified Mail (DKIM) Authorized Third-Party Signatures","authors":["M. Kucherawy"],"rawDate":"2012-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6542":{"rfcNumber":"RFC6542","href":"https://www.rfc-editor.org/rfc/rfc6542","title":"Kerberos Version 5 Generic Security Service Application Program Interface (GSS-API) Channel Binding Hash Agility","authors":["S. Emery"],"rawDate":"2012-03","status":"Proposed Standard","updates":["RFC4121"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6543":{"rfcNumber":"RFC6543","href":"https://www.rfc-editor.org/rfc/rfc6543","title":"Reserved IPv6 Interface Identifier for Proxy Mobile IPv6","authors":["S. Gundavelli"],"rawDate":"2012-05","status":"Proposed Standard","updates":["RFC5213"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6544":{"rfcNumber":"RFC6544","href":"https://www.rfc-editor.org/rfc/rfc6544","title":"TCP Candidates with Interactive Connectivity Establishment (ICE)","authors":["J. Rosenberg","A. Keranen","B. B. Lowekamp","A. B. Roach"],"rawDate":"2012-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6544","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6545":{"rfcNumber":"RFC6545","href":"https://www.rfc-editor.org/rfc/rfc6545","title":"Real-time Inter-network Defense (RID)","authors":["K. Moriarty"],"rawDate":"2012-04","status":"Proposed Standard","obsoletes":["RFC6045"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6545","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6546":{"rfcNumber":"RFC6546","href":"https://www.rfc-editor.org/rfc/rfc6546","title":"Transport of Real-time Inter-network Defense (RID) Messages over HTTP/TLS","authors":["B. Trammell"],"rawDate":"2012-04","status":"Proposed Standard","obsoletes":["RFC6046"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6546","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6547":{"rfcNumber":"RFC6547","href":"https://www.rfc-editor.org/rfc/rfc6547","title":"RFC 3627 to Historic Status","authors":["W. George"],"rawDate":"2012-02","status":"Informational","updates":["RFC6164"],"obsoletes":["RFC3627"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6548":{"rfcNumber":"RFC6548","href":"https://www.rfc-editor.org/rfc/rfc6548","title":"Independent Submission Editor Model","authors":["N. Brownlee, Ed.","IAB"],"rawDate":"2012-06","status":"Informational","obsoletedBy":["RFC8730"],"obsoletes":["RFC5620"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6549":{"rfcNumber":"RFC6549","href":"https://www.rfc-editor.org/rfc/rfc6549","title":"OSPFv2 Multi-Instance Extensions","authors":["A. Lindem","A. Roy","S. Mirtorabi"],"rawDate":"2012-03","status":"Proposed Standard","updates":["RFC2328"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6549","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc655":{"aliasOf":"rfc0655"},"rfc6550":{"rfcNumber":"RFC6550","href":"https://www.rfc-editor.org/rfc/rfc6550","title":"RPL: IPv6 Routing Protocol for Low-Power and Lossy Networks","authors":["T. Winter, Ed.","P. Thubert, Ed.","A. Brandt","J. Hui","R. Kelsey","P. Levis","K. Pister","R. Struik","JP. Vasseur","R. Alexander"],"rawDate":"2012-03","status":"Proposed Standard","updatedBy":["RFC9008","RFC9010"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6550","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6551":{"rfcNumber":"RFC6551","href":"https://www.rfc-editor.org/rfc/rfc6551","title":"Routing Metrics Used for Path Calculation in Low-Power and Lossy Networks","authors":["JP. Vasseur, Ed.","M. Kim, Ed.","K. Pister","N. Dejean","D. Barthel"],"rawDate":"2012-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6551","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6552":{"rfcNumber":"RFC6552","href":"https://www.rfc-editor.org/rfc/rfc6552","title":"Objective Function Zero for the Routing Protocol for Low-Power and Lossy Networks (RPL)","authors":["P. Thubert, Ed."],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6553":{"rfcNumber":"RFC6553","href":"https://www.rfc-editor.org/rfc/rfc6553","title":"The Routing Protocol for Low-Power and Lossy Networks (RPL) Option for Carrying RPL Information in Data-Plane Datagrams","authors":["J. Hui","JP. Vasseur"],"rawDate":"2012-03","status":"Proposed Standard","updatedBy":["RFC9008"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6554":{"rfcNumber":"RFC6554","href":"https://www.rfc-editor.org/rfc/rfc6554","title":"An IPv6 Routing Header for Source Routes with the Routing Protocol for Low-Power and Lossy Networks (RPL)","authors":["J. Hui","JP. Vasseur","D. Culler","V. Manral"],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6555":{"rfcNumber":"RFC6555","href":"https://www.rfc-editor.org/rfc/rfc6555","title":"Happy Eyeballs: Success with Dual-Stack Hosts","authors":["D. Wing","A. Yourtchenko"],"rawDate":"2012-04","status":"Proposed Standard","obsoletedBy":["RFC8305"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6555","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6556":{"rfcNumber":"RFC6556","href":"https://www.rfc-editor.org/rfc/rfc6556","title":"Testing Eyeball Happiness","authors":["F. Baker"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6557":{"rfcNumber":"RFC6557","href":"https://www.rfc-editor.org/rfc/rfc6557","title":"Procedures for Maintaining the Time Zone Database","authors":["E. Lear","P. Eggert"],"rawDate":"2012-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6558":{"rfcNumber":"RFC6558","href":"https://www.rfc-editor.org/rfc/rfc6558","title":"Sieve Extension for Converting Messages before Delivery","authors":["A. Melnikov","B. Leiba","K. Li"],"rawDate":"2012-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6558","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6559":{"rfcNumber":"RFC6559","href":"https://www.rfc-editor.org/rfc/rfc6559","title":"A Reliable Transport Mechanism for PIM","authors":["D. Farinacci","IJ. Wijnands","S. Venaas","M. Napierala"],"rawDate":"2012-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc656":{"aliasOf":"rfc0656"},"rfc6560":{"rfcNumber":"RFC6560","href":"https://www.rfc-editor.org/rfc/rfc6560","title":"One-Time Password (OTP) Pre-Authentication","authors":["G. Richards"],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6561":{"rfcNumber":"RFC6561","href":"https://www.rfc-editor.org/rfc/rfc6561","title":"Recommendations for the Remediation of Bots in ISP Networks","authors":["J. Livingood","N. Mody","M. O'Reirdan"],"rawDate":"2012-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6561","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6562":{"rfcNumber":"RFC6562","href":"https://www.rfc-editor.org/rfc/rfc6562","title":"Guidelines for the Use of Variable Bit Rate Audio with Secure RTP","authors":["C. Perkins","JM. Valin"],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6563":{"rfcNumber":"RFC6563","href":"https://www.rfc-editor.org/rfc/rfc6563","title":"Moving A6 to Historic Status","authors":["S. Jiang","D. Conrad","B. Carpenter"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6564":{"rfcNumber":"RFC6564","href":"https://www.rfc-editor.org/rfc/rfc6564","title":"A Uniform Format for IPv6 Extension Headers","authors":["S. Krishnan","J. Woodyatt","E. Kline","J. Hoagland","M. Bhatia"],"rawDate":"2012-04","status":"Proposed Standard","updates":["RFC2460"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6564","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6565":{"rfcNumber":"RFC6565","href":"https://www.rfc-editor.org/rfc/rfc6565","title":"OSPFv3 as a Provider Edge to Customer Edge (PE-CE) Routing Protocol","authors":["P. Pillay-Esnault","P. Moyer","J. Doyle","E. Ertekin","M. Lundberg"],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6566":{"rfcNumber":"RFC6566","href":"https://www.rfc-editor.org/rfc/rfc6566","title":"A Framework for the Control of Wavelength Switched Optical Networks (WSONs) with Impairments","authors":["Y. Lee, Ed.","G. Bernstein, Ed.","D. Li","G. Martinelli"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6567":{"rfcNumber":"RFC6567","href":"https://www.rfc-editor.org/rfc/rfc6567","title":"Problem Statement and Requirements for Transporting User-to-User Call Control Information in SIP","authors":["A. Johnston","L. Liess"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6568":{"rfcNumber":"RFC6568","href":"https://www.rfc-editor.org/rfc/rfc6568","title":"Design and Application Spaces for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)","authors":["E. Kim","D. Kaspar","JP. Vasseur"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6569":{"rfcNumber":"RFC6569","href":"https://www.rfc-editor.org/rfc/rfc6569","title":"Guidelines for Development of an Audio Codec within the IETF","authors":["JM. Valin","S. Borilin","K. Vos","C. Montgomery","R. Chen"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc657":{"aliasOf":"rfc0657"},"rfc6570":{"rfcNumber":"RFC6570","href":"https://www.rfc-editor.org/rfc/rfc6570","title":"URI Template","authors":["J. Gregorio","R. Fielding","M. Hadley","M. Nottingham","D. Orchard"],"rawDate":"2012-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6570","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6571":{"rfcNumber":"RFC6571","href":"https://www.rfc-editor.org/rfc/rfc6571","title":"Loop-Free Alternate (LFA) Applicability in Service Provider (SP) Networks","authors":["C. Filsfils, Ed.","P. Francois, Ed.","M. Shand","B. Decraene","J. Uttaro","N. Leymann","M. Horneffer"],"rawDate":"2012-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6571","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6572":{"rfcNumber":"RFC6572","href":"https://www.rfc-editor.org/rfc/rfc6572","title":"RADIUS Support for Proxy Mobile IPv6","authors":["F. Xia","B. Sarikaya","J. Korhonen, Ed.","S. Gundavelli","D. Damic"],"rawDate":"2012-06","status":"Proposed Standard","updatedBy":["RFC8044"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6573":{"rfcNumber":"RFC6573","href":"https://www.rfc-editor.org/rfc/rfc6573","title":"The Item and Collection Link Relations","authors":["M. Amundsen"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6574":{"rfcNumber":"RFC6574","href":"https://www.rfc-editor.org/rfc/rfc6574","title":"Report from the Smart Object Workshop","authors":["H. Tschofenig","J. Arkko"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6575":{"rfcNumber":"RFC6575","href":"https://www.rfc-editor.org/rfc/rfc6575","title":"Address Resolution Protocol (ARP) Mediation for IP Interworking of Layer 2 VPNs","authors":["H. Shah, Ed.","E. Rosen, Ed.","G. Heron, Ed.","V. Kompella, Ed."],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6576":{"rfcNumber":"RFC6576","href":"https://www.rfc-editor.org/rfc/rfc6576","title":"IP Performance Metrics (IPPM) Standard Advancement Testing","authors":["R. Geib, Ed.","A. Morton","R. Fardid","A. Steinmitz"],"rawDate":"2012-03","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6576","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6577":{"rfcNumber":"RFC6577","href":"https://www.rfc-editor.org/rfc/rfc6577","title":"Authentication-Results Registration Update for Sender Policy Framework (SPF) Results","authors":["M. Kucherawy"],"rawDate":"2012-03","status":"Proposed Standard","obsoletedBy":["RFC7001"],"updates":["RFC5451"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6578":{"rfcNumber":"RFC6578","href":"https://www.rfc-editor.org/rfc/rfc6578","title":"Collection Synchronization for Web Distributed Authoring and Versioning (WebDAV)","authors":["C. Daboo","A. Quillaud"],"rawDate":"2012-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6579":{"rfcNumber":"RFC6579","href":"https://www.rfc-editor.org/rfc/rfc6579","title":"The 'disclosure' Link Relation Type","authors":["M. Yevstifeyev"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc658":{"aliasOf":"rfc0658"},"rfc6580":{"rfcNumber":"RFC6580","href":"https://www.rfc-editor.org/rfc/rfc6580","title":"IANA Registries for the Remote Direct Data Placement (RDDP) Protocols","authors":["M. Ko","D. Black"],"rawDate":"2012-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6580","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6581":{"rfcNumber":"RFC6581","href":"https://www.rfc-editor.org/rfc/rfc6581","title":"Enhanced Remote Direct Memory Access (RDMA) Connection Establishment","authors":["A. Kanevsky, Ed.","C. Bestler, Ed.","R. Sharp","S. Wise"],"rawDate":"2012-04","status":"Proposed Standard","updates":["RFC5043","RFC5044"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6582":{"rfcNumber":"RFC6582","href":"https://www.rfc-editor.org/rfc/rfc6582","title":"The NewReno Modification to TCP's Fast Recovery Algorithm","authors":["T. Henderson","S. Floyd","A. Gurtov","Y. Nishida"],"rawDate":"2012-04","status":"Proposed Standard","obsoletes":["RFC3782"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6582","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6583":{"rfcNumber":"RFC6583","href":"https://www.rfc-editor.org/rfc/rfc6583","title":"Operational Neighbor Discovery Problems","authors":["I. Gashinsky","J. Jaeggli","W. Kumari"],"rawDate":"2012-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6584":{"rfcNumber":"RFC6584","href":"https://www.rfc-editor.org/rfc/rfc6584","title":"Simple Authentication Schemes for the Asynchronous Layered Coding (ALC) and NACK-Oriented Reliable Multicast (NORM) Protocols","authors":["V. Roca"],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6585":{"rfcNumber":"RFC6585","href":"https://httpwg.org/specs/rfc6585.html","title":"Additional HTTP Status Codes","authors":["M. Nottingham","R. Fielding"],"rawDate":"2012-04","status":"Proposed Standard","updates":["RFC2616"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6586":{"rfcNumber":"RFC6586","href":"https://www.rfc-editor.org/rfc/rfc6586","title":"Experiences from an IPv6-Only Network","authors":["J. Arkko","A. Keranen"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6587":{"rfcNumber":"RFC6587","href":"https://www.rfc-editor.org/rfc/rfc6587","title":"Transmission of Syslog Messages over TCP","authors":["R. Gerhards","C. Lonvick"],"rawDate":"2012-04","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6588":{"rfcNumber":"RFC6588","href":"https://www.rfc-editor.org/rfc/rfc6588","title":"A URN Namespace for ucode","authors":["C. Ishikawa"],"rawDate":"2012-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6588","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6589":{"rfcNumber":"RFC6589","href":"https://www.rfc-editor.org/rfc/rfc6589","title":"Considerations for Transitioning Content to IPv6","authors":["J. Livingood"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc659":{"aliasOf":"rfc0659"},"rfc6590":{"rfcNumber":"RFC6590","href":"https://www.rfc-editor.org/rfc/rfc6590","title":"Redaction of Potentially Sensitive Data from Mail Abuse Reports","authors":["J. Falk, Ed.","M. Kucherawy, Ed."],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6591":{"rfcNumber":"RFC6591","href":"https://www.rfc-editor.org/rfc/rfc6591","title":"Authentication Failure Reporting Using the Abuse Reporting Format","authors":["H. Fontana"],"rawDate":"2012-04","status":"Proposed Standard","updatedBy":["RFC6692"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6592":{"rfcNumber":"RFC6592","href":"https://www.rfc-editor.org/rfc/rfc6592","title":"The Null Packet","authors":["C. Pignataro"],"rawDate":"2012-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6593":{"rfcNumber":"RFC6593","href":"https://www.rfc-editor.org/rfc/rfc6593","title":"Service Undiscovery Using Hide-and-Go-Seek for the Domain Pseudonym System (DPS)","authors":["C. Pignataro","J. Clarke","G. Salgueiro"],"rawDate":"2012-04-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6594":{"rfcNumber":"RFC6594","href":"https://www.rfc-editor.org/rfc/rfc6594","title":"Use of the SHA-256 Algorithm with RSA, Digital Signature Algorithm (DSA), and Elliptic Curve DSA (ECDSA) in SSHFP Resource Records","authors":["O. Sury"],"rawDate":"2012-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6594","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6595":{"rfcNumber":"RFC6595","href":"https://www.rfc-editor.org/rfc/rfc6595","title":"A Simple Authentication and Security Layer (SASL) and GSS-API Mechanism for the Security Assertion Markup Language (SAML)","authors":["K. Wierenga","E. Lear","S. Josefsson"],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6596":{"rfcNumber":"RFC6596","href":"https://www.rfc-editor.org/rfc/rfc6596","title":"The Canonical Link Relation","authors":["M. Ohye","J. Kupke"],"rawDate":"2012-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6597":{"rfcNumber":"RFC6597","href":"https://www.rfc-editor.org/rfc/rfc6597","title":"RTP Payload Format for Society of Motion Picture and Television Engineers (SMPTE) ST 336 Encoded Data","authors":["J. Downs, Ed.","J. Arbeiter, Ed."],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6598":{"rfcNumber":"RFC6598","href":"https://www.rfc-editor.org/rfc/rfc6598","title":"IANA-Reserved IPv4 Prefix for Shared Address Space","authors":["J. Weil","V. Kuarsingh","C. Donley","C. Liljenstolpe","M. Azinger"],"rawDate":"2012-04","status":"Best Current Practice","updates":["RFC5735"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc66":{"aliasOf":"rfc0066"},"rfc660":{"aliasOf":"rfc0660"},"rfc6601":{"rfcNumber":"RFC6601","href":"https://www.rfc-editor.org/rfc/rfc6601","title":"Generic Connection Admission Control (GCAC) Algorithm Specification for IP/MPLS Networks","authors":["G. Ash, Ed.","D. McDysan"],"rawDate":"2012-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6602":{"rfcNumber":"RFC6602","href":"https://www.rfc-editor.org/rfc/rfc6602","title":"Bulk Binding Update Support for Proxy Mobile IPv6","authors":["F. Abinader, Ed.","S. Gundavelli, Ed.","K. Leung","S. Krishnan","D. Premec"],"rawDate":"2012-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6603":{"rfcNumber":"RFC6603","href":"https://www.rfc-editor.org/rfc/rfc6603","title":"Prefix Exclude Option for DHCPv6-based Prefix Delegation","authors":["J. Korhonen, Ed.","T. Savolainen","S. Krishnan","O. Troan"],"rawDate":"2012-05","status":"Proposed Standard","updates":["RFC3633"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6603","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6604":{"rfcNumber":"RFC6604","href":"https://www.rfc-editor.org/rfc/rfc6604","title":"xNAME RCODE and Status Bits Clarification","authors":["D. Eastlake 3rd"],"rawDate":"2012-04","status":"Proposed Standard","updates":["RFC1035","RFC2308","RFC2672"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6605":{"rfcNumber":"RFC6605","href":"https://www.rfc-editor.org/rfc/rfc6605","title":"Elliptic Curve Digital Signature Algorithm (DSA) for DNSSEC","authors":["P. Hoffman","W.C.A. Wijngaards"],"rawDate":"2012-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6606":{"rfcNumber":"RFC6606","href":"https://www.rfc-editor.org/rfc/rfc6606","title":"Problem Statement and Requirements for IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Routing","authors":["E. Kim","D. Kaspar","C. Gomez","C. Bormann"],"rawDate":"2012-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6607":{"rfcNumber":"RFC6607","href":"https://www.rfc-editor.org/rfc/rfc6607","title":"Virtual Subnet Selection Options for DHCPv4 and DHCPv6","authors":["K. Kinnear","R. Johnson","M. Stapp"],"rawDate":"2012-04","status":"Proposed Standard","updates":["RFC3046"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6608":{"rfcNumber":"RFC6608","href":"https://www.rfc-editor.org/rfc/rfc6608","title":"Subcodes for BGP Finite State Machine Error","authors":["J. Dong","M. Chen","A. Suryanarayana"],"rawDate":"2012-05","status":"Proposed Standard","updates":["RFC4271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6609":{"rfcNumber":"RFC6609","href":"https://www.rfc-editor.org/rfc/rfc6609","title":"Sieve Email Filtering: Include Extension","authors":["C. Daboo","A. Stone"],"rawDate":"2012-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc661":{"aliasOf":"rfc0661"},"rfc6610":{"rfcNumber":"RFC6610","href":"https://www.rfc-editor.org/rfc/rfc6610","title":"DHCP Options for Home Information Discovery in Mobile IPv6 (MIPv6)","authors":["H. Jang","A. Yegin","K. Chowdhury","J. Choi","T. Lemon"],"rawDate":"2012-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6611":{"rfcNumber":"RFC6611","href":"https://www.rfc-editor.org/rfc/rfc6611","title":"Mobile IPv6 (MIPv6) Bootstrapping for the Integrated Scenario","authors":["K. Chowdhury, Ed.","A. Yegin"],"rawDate":"2012-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6612":{"rfcNumber":"RFC6612","href":"https://www.rfc-editor.org/rfc/rfc6612","title":"Interactions between Proxy Mobile IPv6 (PMIPv6) and Mobile IPv6 (MIPv6): Scenarios and Related Issues","authors":["G. Giaretta, Ed."],"rawDate":"2012-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6613":{"rfcNumber":"RFC6613","href":"https://www.rfc-editor.org/rfc/rfc6613","title":"RADIUS over TCP","authors":["A. DeKok"],"rawDate":"2012-05","status":"Experimental","updatedBy":["RFC7930"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6614":{"rfcNumber":"RFC6614","href":"https://www.rfc-editor.org/rfc/rfc6614","title":"Transport Layer Security (TLS) Encryption for RADIUS","authors":["S. Winter","M. McCauley","S. Venaas","K. Wierenga"],"rawDate":"2012-05","status":"Experimental","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6615":{"rfcNumber":"RFC6615","href":"https://www.rfc-editor.org/rfc/rfc6615","title":"Definitions of Managed Objects for IP Flow Information Export","authors":["T. Dietz, Ed.","A. Kobayashi","B. Claise","G. Muenz"],"rawDate":"2012-06","status":"Proposed Standard","obsoletes":["RFC5815"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6616":{"rfcNumber":"RFC6616","href":"https://www.rfc-editor.org/rfc/rfc6616","title":"A Simple Authentication and Security Layer (SASL) and Generic Security Service Application Program Interface (GSS-API) Mechanism for OpenID","authors":["E. Lear","H. Tschofenig","H. Mauldin","S. Josefsson"],"rawDate":"2012-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6616","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6617":{"rfcNumber":"RFC6617","href":"https://www.rfc-editor.org/rfc/rfc6617","title":"Secure Pre-Shared Key (PSK) Authentication for the Internet Key Exchange Protocol (IKE)","authors":["D. Harkins"],"rawDate":"2012-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6618":{"rfcNumber":"RFC6618","href":"https://www.rfc-editor.org/rfc/rfc6618","title":"Mobile IPv6 Security Framework Using Transport Layer Security for Communication between the Mobile Node and Home Agent","authors":["J. Korhonen, Ed.","B. Patil","H. Tschofenig","D. Kroeselberg"],"rawDate":"2012-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6619":{"rfcNumber":"RFC6619","href":"https://www.rfc-editor.org/rfc/rfc6619","title":"Scalable Operation of Address Translators with Per-Interface Bindings","authors":["J. Arkko","L. Eggert","M. Townsley"],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc662":{"aliasOf":"rfc0662"},"rfc6620":{"rfcNumber":"RFC6620","href":"https://www.rfc-editor.org/rfc/rfc6620","title":"FCFS SAVI: First-Come, First-Served Source Address Validation Improvement for Locally Assigned IPv6 Addresses","authors":["E. Nordmark","M. Bagnulo","E. Levy-Abegnoli"],"rawDate":"2012-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6620","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6621":{"rfcNumber":"RFC6621","href":"https://www.rfc-editor.org/rfc/rfc6621","title":"Simplified Multicast Forwarding","authors":["J. Macker, Ed."],"rawDate":"2012-05","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6621","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6622":{"rfcNumber":"RFC6622","href":"https://www.rfc-editor.org/rfc/rfc6622","title":"Integrity Check Value and Timestamp TLV Definitions for Mobile Ad Hoc Networks (MANETs)","authors":["U. Herberg","T. Clausen"],"rawDate":"2012-05","status":"Proposed Standard","obsoletedBy":["RFC7182"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6623":{"rfcNumber":"RFC6623","href":"https://www.rfc-editor.org/rfc/rfc6623","title":"IANA Registry for MEDIACTRL Interactive Voice Response Control Package","authors":["E. Burger"],"rawDate":"2012-05","status":"Proposed Standard","updates":["RFC6231"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6624":{"rfcNumber":"RFC6624","href":"https://www.rfc-editor.org/rfc/rfc6624","title":"Layer 2 Virtual Private Networks Using BGP for Auto-Discovery and Signaling","authors":["K. Kompella","B. Kothari","R. Cherukuri"],"rawDate":"2012-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6625":{"rfcNumber":"RFC6625","href":"https://www.rfc-editor.org/rfc/rfc6625","title":"Wildcards in Multicast VPN Auto-Discovery Routes","authors":["E. Rosen, Ed.","Y. Rekhter, Ed.","W. Hendrickx","R. Qiu"],"rawDate":"2012-05","status":"Proposed Standard","updatedBy":["RFC7582","RFC7900","RFC8534"],"updates":["RFC6514"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6625","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6626":{"rfcNumber":"RFC6626","href":"https://www.rfc-editor.org/rfc/rfc6626","title":"Dynamic Prefix Allocation for Network Mobility for Mobile IPv4 (NEMOv4)","authors":["G. Tsirtsis","V. Park","V. Narayanan","K. Leung"],"rawDate":"2012-05","status":"Proposed Standard","updates":["RFC5177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6627":{"rfcNumber":"RFC6627","href":"https://www.rfc-editor.org/rfc/rfc6627","title":"Overview of Pre-Congestion Notification Encoding","authors":["G. Karagiannis","K. Chan","T. Moncaster","M. Menth","P. Eardley","B. Briscoe"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6628":{"rfcNumber":"RFC6628","href":"https://www.rfc-editor.org/rfc/rfc6628","title":"Efficient Augmented Password-Only Authentication and Key Exchange for IKEv2","authors":["S. Shin","K. Kobara"],"rawDate":"2012-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6629":{"rfcNumber":"RFC6629","href":"https://www.rfc-editor.org/rfc/rfc6629","title":"Considerations on the Application of the Level 3 Multihoming Shim Protocol for IPv6 (Shim6)","authors":["J. Abley","M. Bagnulo","A. Garcia-Martinez"],"rawDate":"2012-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc663":{"aliasOf":"rfc0663"},"rfc6630":{"rfcNumber":"RFC6630","href":"https://www.rfc-editor.org/rfc/rfc6630","title":"EAP Re-authentication Protocol Extensions for Authenticated Anticipatory Keying (ERP/AAK)","authors":["Z. Cao","H. Deng","Q. Wu","G. Zorn, Ed."],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6631":{"rfcNumber":"RFC6631","href":"https://www.rfc-editor.org/rfc/rfc6631","title":"Password Authenticated Connection Establishment with the Internet Key Exchange Protocol version 2 (IKEv2)","authors":["D. Kuegler","Y. Sheffer"],"rawDate":"2012-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6632":{"rfcNumber":"RFC6632","href":"https://www.rfc-editor.org/rfc/rfc6632","title":"An Overview of the IETF Network Management Standards","authors":["M. Ersue, Ed.","B. Claise"],"rawDate":"2012-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6633":{"rfcNumber":"RFC6633","href":"https://www.rfc-editor.org/rfc/rfc6633","title":"Deprecation of ICMP Source Quench Messages","authors":["F. Gont"],"rawDate":"2012-05","status":"Proposed Standard","updates":["RFC0792","RFC1122","RFC1812"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6635":{"rfcNumber":"RFC6635","href":"https://www.rfc-editor.org/rfc/rfc6635","title":"RFC Editor Model (Version 2)","authors":["O. Kolkman, Ed.","J. Halpern, Ed.","IAB"],"rawDate":"2012-06","status":"Informational","obsoletedBy":["RFC8728"],"obsoletes":["RFC5620"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6636":{"rfcNumber":"RFC6636","href":"https://www.rfc-editor.org/rfc/rfc6636","title":"Tuning the Behavior of the Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) for Routers in Mobile and Wireless Networks","authors":["H. Asaeda","H. Liu","Q. Wu"],"rawDate":"2012-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6637":{"rfcNumber":"RFC6637","href":"https://www.rfc-editor.org/rfc/rfc6637","title":"Elliptic Curve Cryptography (ECC) in OpenPGP","authors":["A. Jivsov"],"rawDate":"2012-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6637","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6638":{"rfcNumber":"RFC6638","href":"https://www.rfc-editor.org/rfc/rfc6638","title":"Scheduling Extensions to CalDAV","authors":["C. Daboo","B. Desruisseaux"],"rawDate":"2012-06","status":"Proposed Standard","updatedBy":["RFC7953"],"updates":["RFC4791","RFC5546"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6639":{"rfcNumber":"RFC6639","href":"https://www.rfc-editor.org/rfc/rfc6639","title":"Multiprotocol Label Switching Transport Profile (MPLS-TP) MIB-Based Management Overview","authors":["D. King, Ed.","M. Venkatesan, Ed."],"rawDate":"2012-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6639","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6640":{"rfcNumber":"RFC6640","href":"https://www.rfc-editor.org/rfc/rfc6640","title":"IETF Meeting Attendees' Frequently Asked (Travel) Questions","authors":["W. George"],"rawDate":"2012-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6641":{"rfcNumber":"RFC6641","href":"https://www.rfc-editor.org/rfc/rfc6641","title":"Using DNS SRV to Specify a Global File Namespace with NFS Version 4","authors":["C. Everhart","W. Adamson","J. Zhang"],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6642":{"rfcNumber":"RFC6642","href":"https://www.rfc-editor.org/rfc/rfc6642","title":"RTP Control Protocol (RTCP) Extension for a Third-Party Loss Report","authors":["Q. Wu, Ed.","F. Xia","R. Even"],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6643":{"rfcNumber":"RFC6643","href":"https://www.rfc-editor.org/rfc/rfc6643","title":"Translation of Structure of Management Information Version 2 (SMIv2) MIB Modules to YANG Modules","authors":["J. Schoenwaelder"],"rawDate":"2012-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6643","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6644":{"rfcNumber":"RFC6644","href":"https://www.rfc-editor.org/rfc/rfc6644","title":"Rebind Capability in DHCPv6 Reconfigure Messages","authors":["D. Evans","R. Droms","S. Jiang"],"rawDate":"2012-07","status":"Proposed Standard","updates":["RFC3315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6645":{"rfcNumber":"RFC6645","href":"https://www.rfc-editor.org/rfc/rfc6645","title":"IP Flow Information Accounting and Export Benchmarking Methodology","authors":["J. Novak"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6646":{"rfcNumber":"RFC6646","href":"https://www.rfc-editor.org/rfc/rfc6646","title":"DECoupled Application Data Enroute (DECADE) Problem Statement","authors":["H. Song","N. Zong","Y. Yang","R. Alimi"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6647":{"rfcNumber":"RFC6647","href":"https://www.rfc-editor.org/rfc/rfc6647","title":"Email Greylisting: An Applicability Statement for SMTP","authors":["M. Kucherawy","D. Crocker"],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6648":{"rfcNumber":"RFC6648","href":"https://www.rfc-editor.org/rfc/rfc6648","title":"Deprecating the \"X-\" Prefix and Similar Constructs in Application Protocols","authors":["P. Saint-Andre","D. Crocker","M. Nottingham"],"rawDate":"2012-06","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6649":{"rfcNumber":"RFC6649","href":"https://www.rfc-editor.org/rfc/rfc6649","title":"Deprecate DES, RC4-HMAC-EXP, and Other Weak Cryptographic Algorithms in Kerberos","authors":["L. Hornquist Astrand","T. Yu"],"rawDate":"2012-07","status":"Best Current Practice","updates":["RFC1964","RFC4120","RFC4121","RFC4757"],"obsoletes":["RFC1510"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6650":{"rfcNumber":"RFC6650","href":"https://www.rfc-editor.org/rfc/rfc6650","title":"Creation and Use of Email Feedback Reports: An Applicability Statement for the Abuse Reporting Format (ARF)","authors":["J. Falk","M. Kucherawy, Ed."],"rawDate":"2012-06","status":"Proposed Standard","updates":["RFC5965"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6651":{"rfcNumber":"RFC6651","href":"https://www.rfc-editor.org/rfc/rfc6651","title":"Extensions to DomainKeys Identified Mail (DKIM) for Failure Reporting","authors":["M. Kucherawy"],"rawDate":"2012-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6652":{"rfcNumber":"RFC6652","href":"https://www.rfc-editor.org/rfc/rfc6652","title":"Sender Policy Framework (SPF) Authentication Failure Reporting Using the Abuse Reporting Format","authors":["S. Kitterman"],"rawDate":"2012-06","status":"Proposed Standard","updates":["RFC4408"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6652","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6653":{"rfcNumber":"RFC6653","href":"https://www.rfc-editor.org/rfc/rfc6653","title":"DHCPv6 Prefix Delegation in Long-Term Evolution (LTE) Networks","authors":["B. Sarikaya","F. Xia","T. Lemon"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6654":{"rfcNumber":"RFC6654","href":"https://www.rfc-editor.org/rfc/rfc6654","title":"Gateway-Initiated IPv6 Rapid Deployment on IPv4 Infrastructures (GI 6rd)","authors":["T. Tsou","C. Zhou","T. Taylor","Q. Chen"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6655":{"rfcNumber":"RFC6655","href":"https://www.rfc-editor.org/rfc/rfc6655","title":"AES-CCM Cipher Suites for Transport Layer Security (TLS)","authors":["D. McGrew","D. Bailey"],"rawDate":"2012-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6655","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6656":{"rfcNumber":"RFC6656","href":"https://www.rfc-editor.org/rfc/rfc6656","title":"Description of Cisco Systems' Subnet Allocation Option for DHCPv4","authors":["R. Johnson","K. Kinnear","M. Stapp"],"rawDate":"2012-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6656","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6657":{"rfcNumber":"RFC6657","href":"https://www.rfc-editor.org/rfc/rfc6657","title":"Update to MIME regarding \"charset\" Parameter Handling in Textual Media Types","authors":["A. Melnikov","J. Reschke"],"rawDate":"2012-07","status":"Proposed Standard","updates":["RFC2046"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6658":{"rfcNumber":"RFC6658","href":"https://www.rfc-editor.org/rfc/rfc6658","title":"Packet Pseudowire Encapsulation over an MPLS PSN","authors":["S. Bryant, Ed.","L. Martini","G. Swallow","A. Malis"],"rawDate":"2012-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6659":{"rfcNumber":"RFC6659","href":"https://www.rfc-editor.org/rfc/rfc6659","title":"Considerations for Deploying the Rapid Acquisition of Multicast RTP Sessions (RAMS) Method","authors":["A. Begen"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc666":{"aliasOf":"rfc0666"},"rfc6660":{"rfcNumber":"RFC6660","href":"https://www.rfc-editor.org/rfc/rfc6660","title":"Encoding Three Pre-Congestion Notification (PCN) States in the IP Header Using a Single Diffserv Codepoint (DSCP)","authors":["B. Briscoe","T. Moncaster","M. Menth"],"rawDate":"2012-07","status":"Proposed Standard","obsoletes":["RFC5696"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6661":{"rfcNumber":"RFC6661","href":"https://www.rfc-editor.org/rfc/rfc6661","title":"Pre-Congestion Notification (PCN) Boundary-Node Behavior for the Controlled Load (CL) Mode of Operation","authors":["A. Charny","F. Huang","G. Karagiannis","M. Menth","T. Taylor, Ed."],"rawDate":"2012-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6662":{"rfcNumber":"RFC6662","href":"https://www.rfc-editor.org/rfc/rfc6662","title":"Pre-Congestion Notification (PCN) Boundary-Node Behavior for the Single Marking (SM) Mode of Operation","authors":["A. Charny","J. Zhang","G. Karagiannis","M. Menth","T. Taylor, Ed."],"rawDate":"2012-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6663":{"rfcNumber":"RFC6663","href":"https://www.rfc-editor.org/rfc/rfc6663","title":"Requirements for Signaling of Pre-Congestion Information in a Diffserv Domain","authors":["G. Karagiannis","T. Taylor","K. Chan","M. Menth","P. Eardley"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6664":{"rfcNumber":"RFC6664","href":"https://www.rfc-editor.org/rfc/rfc6664","title":"S/MIME Capabilities for Public Key Definitions","authors":["J. Schaad"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6665":{"rfcNumber":"RFC6665","href":"https://www.rfc-editor.org/rfc/rfc6665","title":"SIP-Specific Event Notification","authors":["A.B. Roach"],"rawDate":"2012-07","status":"Proposed Standard","updatedBy":["RFC7621"],"updates":["RFC3261","RFC4660"],"obsoletes":["RFC3265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6666":{"rfcNumber":"RFC6666","href":"https://www.rfc-editor.org/rfc/rfc6666","title":"A Discard Prefix for IPv6","authors":["N. Hilliard","D. Freedman"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6667":{"rfcNumber":"RFC6667","href":"https://www.rfc-editor.org/rfc/rfc6667","title":"LDP 'Typed Wildcard' Forwarding Equivalence Class (FEC) for PWid and Generalized PWid FEC Elements","authors":["K. Raza","S. Boutros","C. Pignataro"],"rawDate":"2012-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6668":{"rfcNumber":"RFC6668","href":"https://www.rfc-editor.org/rfc/rfc6668","title":"SHA-2 Data Integrity Verification for the Secure Shell (SSH) Transport Layer Protocol","authors":["D. Bider","M. Baushke"],"rawDate":"2012-07","status":"Proposed Standard","updates":["RFC4253"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6669":{"rfcNumber":"RFC6669","href":"https://www.rfc-editor.org/rfc/rfc6669","title":"An Overview of the Operations, Administration, and Maintenance (OAM) Toolset for MPLS-Based Transport Networks","authors":["N. Sprecher","L. Fang"],"rawDate":"2012-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6669","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc667":{"aliasOf":"rfc0667"},"rfc6670":{"rfcNumber":"RFC6670","href":"https://www.rfc-editor.org/rfc/rfc6670","title":"The Reasons for Selecting a Single Solution for MPLS Transport Profile (MPLS-TP) Operations, Administration, and Maintenance (OAM)","authors":["N. Sprecher","KY. Hong"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6671":{"rfcNumber":"RFC6671","href":"https://www.rfc-editor.org/rfc/rfc6671","title":"Allocation of a Generic Associated Channel Type for ITU-T MPLS Transport Profile Operation, Maintenance, and Administration (MPLS-TP OAM)","authors":["M. Betts"],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6672":{"rfcNumber":"RFC6672","href":"https://www.rfc-editor.org/rfc/rfc6672","title":"DNAME Redirection in the DNS","authors":["S. Rose","W. Wijngaards"],"rawDate":"2012-06","status":"Proposed Standard","updates":["RFC3363"],"obsoletes":["RFC2672"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6672","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6673":{"rfcNumber":"RFC6673","href":"https://www.rfc-editor.org/rfc/rfc6673","title":"Round-Trip Packet Loss Metrics","authors":["A. Morton"],"rawDate":"2012-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6674":{"rfcNumber":"RFC6674","href":"https://www.rfc-editor.org/rfc/rfc6674","title":"Gateway-Initiated Dual-Stack Lite Deployment","authors":["F. Brockners","S. Gundavelli","S. Speicher","D. Ward"],"rawDate":"2012-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6675":{"rfcNumber":"RFC6675","href":"https://www.rfc-editor.org/rfc/rfc6675","title":"A Conservative Loss Recovery Algorithm Based on Selective Acknowledgment (SACK) for TCP","authors":["E. Blanton","M. Allman","L. Wang","I. Jarvinen","M. Kojo","Y. Nishida"],"rawDate":"2012-08","status":"Proposed Standard","obsoletes":["RFC3517"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6676":{"rfcNumber":"RFC6676","href":"https://www.rfc-editor.org/rfc/rfc6676","title":"Multicast Addresses for Documentation","authors":["S. Venaas","R. Parekh","G. Van de Velde","T. Chown","M. Eubanks"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6677":{"rfcNumber":"RFC6677","href":"https://www.rfc-editor.org/rfc/rfc6677","title":"Channel-Binding Support for Extensible Authentication Protocol (EAP) Methods","authors":["S. Hartman, Ed.","T. Clancy","K. Hoeper"],"rawDate":"2012-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6678":{"rfcNumber":"RFC6678","href":"https://www.rfc-editor.org/rfc/rfc6678","title":"Requirements for a Tunnel-Based Extensible Authentication Protocol (EAP) Method","authors":["K. Hoeper","S. Hanna","H. Zhou","J. Salowey, Ed."],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6679":{"rfcNumber":"RFC6679","href":"https://www.rfc-editor.org/rfc/rfc6679","title":"Explicit Congestion Notification (ECN) for RTP over UDP","authors":["M. Westerlund","I. Johansson","C. Perkins","P. O'Hanlon","K. Carlberg"],"rawDate":"2012-08","status":"Proposed Standard","updatedBy":["RFC8311"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6679","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6680":{"rfcNumber":"RFC6680","href":"https://www.rfc-editor.org/rfc/rfc6680","title":"Generic Security Service Application Programming Interface (GSS-API) Naming Extensions","authors":["N. Williams","L. Johansson","S. Hartman","S. Josefsson"],"rawDate":"2012-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6680","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6681":{"rfcNumber":"RFC6681","href":"https://www.rfc-editor.org/rfc/rfc6681","title":"Raptor Forward Error Correction (FEC) Schemes for FECFRAME","authors":["M. Watson","T. Stockhammer","M. Luby"],"rawDate":"2012-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6682":{"rfcNumber":"RFC6682","href":"https://www.rfc-editor.org/rfc/rfc6682","title":"RTP Payload Format for Raptor Forward Error Correction (FEC)","authors":["M. Watson","T. Stockhammer","M. Luby"],"rawDate":"2012-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6683":{"rfcNumber":"RFC6683","href":"https://www.rfc-editor.org/rfc/rfc6683","title":"Guidelines for Implementing Digital Video Broadcasting - IPTV (DVB-IPTV) Application-Layer Hybrid Forward Error Correction (FEC) Protection","authors":["A. Begen","T. Stockhammer"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6684":{"rfcNumber":"RFC6684","href":"https://www.rfc-editor.org/rfc/rfc6684","title":"Guidelines and Template for Defining Extensions to the Incident Object Description Exchange Format (IODEF)","authors":["B. Trammell"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6685":{"rfcNumber":"RFC6685","href":"https://www.rfc-editor.org/rfc/rfc6685","title":"Expert Review for Incident Object Description Exchange Format (IODEF) Extensions in IANA XML Registry","authors":["B. Trammell"],"rawDate":"2012-07","status":"Proposed Standard","obsoletedBy":["RFC7970"],"updates":["RFC5070"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6686":{"rfcNumber":"RFC6686","href":"https://www.rfc-editor.org/rfc/rfc6686","title":"Resolution of the Sender Policy Framework (SPF) and Sender ID Experiments","authors":["M. Kucherawy"],"rawDate":"2012-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6686","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6687":{"rfcNumber":"RFC6687","href":"https://www.rfc-editor.org/rfc/rfc6687","title":"Performance Evaluation of the Routing Protocol for Low-Power and Lossy Networks (RPL)","authors":["J. Tripathi, Ed.","J. de Oliveira, Ed.","JP. Vasseur, Ed."],"rawDate":"2012-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6687","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6688":{"rfcNumber":"RFC6688","href":"https://www.rfc-editor.org/rfc/rfc6688","title":"Parallel NFS (pNFS) Block Disk Protection","authors":["D. Black, Ed.","J. Glasgow","S. Faibish"],"rawDate":"2012-07","status":"Proposed Standard","updates":["RFC5663"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6689":{"rfcNumber":"RFC6689","href":"https://www.rfc-editor.org/rfc/rfc6689","title":"Usage of the RSVP ASSOCIATION Object","authors":["L. Berger"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc669":{"aliasOf":"rfc0669"},"rfc6690":{"rfcNumber":"RFC6690","href":"https://www.rfc-editor.org/rfc/rfc6690","title":"Constrained RESTful Environments (CoRE) Link Format","authors":["Z. Shelby"],"rawDate":"2012-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6690","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6691":{"rfcNumber":"RFC6691","href":"https://www.rfc-editor.org/rfc/rfc6691","title":"TCP Options and Maximum Segment Size (MSS)","authors":["D. Borman"],"rawDate":"2012-07","status":"Informational","obsoletedBy":["RFC9293"],"updates":["RFC0879","RFC2385"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6692":{"rfcNumber":"RFC6692","href":"https://www.rfc-editor.org/rfc/rfc6692","title":"Source Ports in Abuse Reporting Format (ARF) Reports","authors":["R. Clayton","M. Kucherawy"],"rawDate":"2012-07","status":"Proposed Standard","updates":["RFC6591"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6693":{"rfcNumber":"RFC6693","href":"https://www.rfc-editor.org/rfc/rfc6693","title":"Probabilistic Routing Protocol for Intermittently Connected Networks","authors":["A. Lindgren","A. Doria","E. Davies","S. Grasic"],"rawDate":"2012-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6694":{"rfcNumber":"RFC6694","href":"https://www.rfc-editor.org/rfc/rfc6694","title":"The \"about\" URI Scheme","authors":["S. Moonesamy, Ed."],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6695":{"rfcNumber":"RFC6695","href":"https://www.rfc-editor.org/rfc/rfc6695","title":"Methods to Convey Forward Error Correction (FEC) Framework Configuration Information","authors":["R. Asati"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6696":{"rfcNumber":"RFC6696","href":"https://www.rfc-editor.org/rfc/rfc6696","title":"EAP Extensions for the EAP Re-authentication Protocol (ERP)","authors":["Z. Cao","B. He","Y. Shi","Q. Wu, Ed.","G. Zorn, Ed."],"rawDate":"2012-07","status":"Proposed Standard","obsoletes":["RFC5296"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6697":{"rfcNumber":"RFC6697","href":"https://www.rfc-editor.org/rfc/rfc6697","title":"Handover Keying (HOKEY) Architecture Design","authors":["G. Zorn, Ed.","Q. Wu","T. Taylor","Y. Nir","K. Hoeper","S. Decugis"],"rawDate":"2012-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6698":{"rfcNumber":"RFC6698","href":"https://www.rfc-editor.org/rfc/rfc6698","title":"The DNS-Based Authentication of Named Entities (DANE) Transport Layer Security (TLS) Protocol: TLSA","authors":["P. Hoffman","J. Schlyter"],"rawDate":"2012-08","status":"Proposed Standard","updatedBy":["RFC7218","RFC7671","RFC8749"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6698","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc67":{"aliasOf":"rfc0067"},"rfc6701":{"rfcNumber":"RFC6701","href":"https://www.rfc-editor.org/rfc/rfc6701","title":"Sanctions Available for Application to Violators of IETF IPR Policy","authors":["A. Farrel","P. Resnick"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6702":{"rfcNumber":"RFC6702","href":"https://www.rfc-editor.org/rfc/rfc6702","title":"Promoting Compliance with Intellectual Property Rights (IPR) Disclosure Rules","authors":["T. Polk","P. Saint-Andre"],"rawDate":"2012-08","status":"Informational","updatedBy":["RFC8717"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6703":{"rfcNumber":"RFC6703","href":"https://www.rfc-editor.org/rfc/rfc6703","title":"Reporting IP Network Performance Metrics: Different Points of View","authors":["A. Morton","G. Ramachandran","G. Maguluri"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6704":{"rfcNumber":"RFC6704","href":"https://www.rfc-editor.org/rfc/rfc6704","title":"Forcerenew Nonce Authentication","authors":["D. Miles","W. Dec","J. Bristow","R. Maglione"],"rawDate":"2012-08","status":"Proposed Standard","updates":["RFC3203"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6704","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6705":{"rfcNumber":"RFC6705","href":"https://www.rfc-editor.org/rfc/rfc6705","title":"Localized Routing for Proxy Mobile IPv6","authors":["S. Krishnan","R. Koodli","P. Loureiro","Q. Wu","A. Dutta"],"rawDate":"2012-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6706":{"rfcNumber":"RFC6706","href":"https://www.rfc-editor.org/rfc/rfc6706","title":"Asymmetric Extended Route Optimization (AERO)","authors":["F. Templin, Ed."],"rawDate":"2012-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6706","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6707":{"rfcNumber":"RFC6707","href":"https://www.rfc-editor.org/rfc/rfc6707","title":"Content Distribution Network Interconnection (CDNI) Problem Statement","authors":["B. Niven-Jenkins","F. Le Faucheur","N. Bitar"],"rawDate":"2012-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6708":{"rfcNumber":"RFC6708","href":"https://www.rfc-editor.org/rfc/rfc6708","title":"Application-Layer Traffic Optimization (ALTO) Requirements","authors":["S. Kiesel, Ed.","S. Previdi","M. Stiemerling","R. Woundy","Y. Yang"],"rawDate":"2012-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6709":{"rfcNumber":"RFC6709","href":"https://www.rfc-editor.org/rfc/rfc6709","title":"Design Considerations for Protocol Extensions","authors":["B. Carpenter","B. Aboba, Ed.","S. Cheshire"],"rawDate":"2012-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc671":{"aliasOf":"rfc0671"},"rfc6710":{"rfcNumber":"RFC6710","href":"https://www.rfc-editor.org/rfc/rfc6710","title":"Simple Mail Transfer Protocol Extension for Message Transfer Priorities","authors":["A. Melnikov","K. Carlberg"],"rawDate":"2012-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6710","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6711":{"rfcNumber":"RFC6711","href":"https://www.rfc-editor.org/rfc/rfc6711","title":"An IANA Registry for Level of Assurance (LoA) Profiles","authors":["L. Johansson"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6712":{"rfcNumber":"RFC6712","href":"https://www.rfc-editor.org/rfc/rfc6712","title":"Internet X.509 Public Key Infrastructure -- HTTP Transfer for the Certificate Management Protocol (CMP)","authors":["T. Kause","M. Peylo"],"rawDate":"2012-09","status":"Proposed Standard","updatedBy":["RFC9480"],"updates":["RFC4210"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6713":{"rfcNumber":"RFC6713","href":"https://www.rfc-editor.org/rfc/rfc6713","title":"The 'application/zlib' and 'application/gzip' Media Types","authors":["J. Levine"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6714":{"rfcNumber":"RFC6714","href":"https://www.rfc-editor.org/rfc/rfc6714","title":"Connection Establishment for Media Anchoring (CEMA) for the Message Session Relay Protocol (MSRP)","authors":["C. Holmberg","S. Blau","E. Burger"],"rawDate":"2012-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6715":{"rfcNumber":"RFC6715","href":"https://www.rfc-editor.org/rfc/rfc6715","title":"vCard Format Extensions: Representing vCard Extensions Defined by the Open Mobile Alliance (OMA) Converged Address Book (CAB) Group","authors":["D. Cauchie","B. Leiba","K. Li"],"rawDate":"2012-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6715","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6716":{"rfcNumber":"RFC6716","href":"https://www.rfc-editor.org/rfc/rfc6716","title":"Definition of the Opus Audio Codec","authors":["JM. Valin","K. Vos","T. Terriberry"],"rawDate":"2012-09","status":"Proposed Standard","updatedBy":["RFC8251"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6716","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6717":{"rfcNumber":"RFC6717","href":"https://www.rfc-editor.org/rfc/rfc6717","title":"kx509 Kerberized Certificate Issuance Protocol in Use in 2012","authors":["H. Hotz","R. Allbery"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6718":{"rfcNumber":"RFC6718","href":"https://www.rfc-editor.org/rfc/rfc6718","title":"Pseudowire Redundancy","authors":["P. Muley","M. Aissaoui","M. Bocci"],"rawDate":"2012-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6719":{"rfcNumber":"RFC6719","href":"https://www.rfc-editor.org/rfc/rfc6719","title":"The Minimum Rank with Hysteresis Objective Function","authors":["O. Gnawali","P. Levis"],"rawDate":"2012-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6719","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc672":{"aliasOf":"rfc0672"},"rfc6720":{"rfcNumber":"RFC6720","href":"https://www.rfc-editor.org/rfc/rfc6720","title":"The Generalized TTL Security Mechanism (GTSM) for the Label Distribution Protocol (LDP)","authors":["C. Pignataro","R. Asati"],"rawDate":"2012-08","status":"Proposed Standard","updatedBy":["RFC7552"],"updates":["RFC5036"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6721":{"rfcNumber":"RFC6721","href":"https://www.rfc-editor.org/rfc/rfc6721","title":"The Atom \"deleted-entry\" Element","authors":["J. Snell"],"rawDate":"2012-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6722":{"rfcNumber":"RFC6722","href":"https://www.rfc-editor.org/rfc/rfc6722","title":"Publishing the \"Tao of the IETF\" as a Web Page","authors":["P. Hoffman, Ed."],"rawDate":"2012-08","status":"Informational","obsoletes":["RFC4677"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6723":{"rfcNumber":"RFC6723","href":"https://www.rfc-editor.org/rfc/rfc6723","title":"Update of the Pseudowire Control-Word Negotiation Mechanism","authors":["L. Jin, Ed.","R. Key, Ed.","S. Delord","T. Nadeau","S. Boutros"],"rawDate":"2012-09","status":"Proposed Standard","obsoletedBy":["RFC8077"],"updates":["RFC4447","RFC6073"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6724":{"rfcNumber":"RFC6724","href":"https://www.rfc-editor.org/rfc/rfc6724","title":"Default Address Selection for Internet Protocol Version 6 (IPv6)","authors":["D. Thaler, Ed.","R. Draves","A. Matsumoto","T. Chown"],"rawDate":"2012-09","status":"Proposed Standard","obsoletes":["RFC3484"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6724","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6725":{"rfcNumber":"RFC6725","href":"https://www.rfc-editor.org/rfc/rfc6725","title":"DNS Security (DNSSEC) DNSKEY Algorithm IANA Registry Updates","authors":["S. Rose"],"rawDate":"2012-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6726":{"rfcNumber":"RFC6726","href":"https://www.rfc-editor.org/rfc/rfc6726","title":"FLUTE - File Delivery over Unidirectional Transport","authors":["T. Paila","R. Walsh","M. Luby","V. Roca","R. Lehtonen"],"rawDate":"2012-11","status":"Proposed Standard","obsoletes":["RFC3926"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6726","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6727":{"rfcNumber":"RFC6727","href":"https://www.rfc-editor.org/rfc/rfc6727","title":"Definitions of Managed Objects for Packet Sampling","authors":["T. Dietz, Ed.","B. Claise","J. Quittek"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6728":{"rfcNumber":"RFC6728","href":"https://www.rfc-editor.org/rfc/rfc6728","title":"Configuration Data Model for the IP Flow Information Export (IPFIX) and Packet Sampling (PSAMP) Protocols","authors":["G. Muenz","B. Claise","P. Aitken"],"rawDate":"2012-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6728","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6729":{"rfcNumber":"RFC6729","href":"https://www.rfc-editor.org/rfc/rfc6729","title":"Indicating Email Handling States in Trace Fields","authors":["D. Crocker","M. Kucherawy"],"rawDate":"2012-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6729","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6730":{"rfcNumber":"RFC6730","href":"https://www.rfc-editor.org/rfc/rfc6730","title":"Requirements for IETF Nominations Committee Tools","authors":["S. Krishnan","J. Halpern"],"rawDate":"2012-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6731":{"rfcNumber":"RFC6731","href":"https://www.rfc-editor.org/rfc/rfc6731","title":"Improved Recursive DNS Server Selection for Multi-Interfaced Nodes","authors":["T. Savolainen","J. Kato","T. Lemon"],"rawDate":"2012-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6732":{"rfcNumber":"RFC6732","href":"https://www.rfc-editor.org/rfc/rfc6732","title":"6to4 Provider Managed Tunnels","authors":["V. Kuarsingh, Ed.","Y. Lee","O. Vautrin"],"rawDate":"2012-09","status":"Historic","obsoletedBy":["RFC7526"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6733":{"rfcNumber":"RFC6733","href":"https://www.rfc-editor.org/rfc/rfc6733","title":"Diameter Base Protocol","authors":["V. Fajardo, Ed.","J. Arkko","J. Loughney","G. Zorn, Ed."],"rawDate":"2012-10","status":"Proposed Standard","updatedBy":["RFC7075","RFC8553"],"obsoletes":["RFC3588","RFC5719"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6733","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6734":{"rfcNumber":"RFC6734","href":"https://www.rfc-editor.org/rfc/rfc6734","title":"Diameter Attribute-Value Pairs for Cryptographic Key Transport","authors":["G. Zorn","Q. Wu","V. Cakulev"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6735":{"rfcNumber":"RFC6735","href":"https://www.rfc-editor.org/rfc/rfc6735","title":"Diameter Priority Attribute-Value Pairs","authors":["K. Carlberg, Ed.","T. Taylor"],"rawDate":"2012-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6735","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6736":{"rfcNumber":"RFC6736","href":"https://www.rfc-editor.org/rfc/rfc6736","title":"Diameter Network Address and Port Translation Control Application","authors":["F. Brockners","S. Bhandari","V. Singh","V. Fajardo"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6737":{"rfcNumber":"RFC6737","href":"https://www.rfc-editor.org/rfc/rfc6737","title":"The Diameter Capabilities Update Application","authors":["K. Jiao","G. Zorn"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6738":{"rfcNumber":"RFC6738","href":"https://www.rfc-editor.org/rfc/rfc6738","title":"Diameter IKEv2 SK: Using Shared Keys to Support Interaction between IKEv2 Servers and Diameter Servers","authors":["V. Cakulev","A. Lior","S. Mizikovsky"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6739":{"rfcNumber":"RFC6739","href":"https://www.rfc-editor.org/rfc/rfc6739","title":"Synchronizing Service Boundaries and Elements Based on the Location-to-Service Translation (LoST) Protocol","authors":["H. Schulzrinne","H. Tschofenig"],"rawDate":"2012-10","status":"Experimental","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6739","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc674":{"aliasOf":"rfc0674"},"rfc6740":{"rfcNumber":"RFC6740","href":"https://www.rfc-editor.org/rfc/rfc6740","title":"Identifier-Locator Network Protocol (ILNP) Architectural Description","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6740","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6741":{"rfcNumber":"RFC6741","href":"https://www.rfc-editor.org/rfc/rfc6741","title":"Identifier-Locator Network Protocol (ILNP) Engineering Considerations","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6742":{"rfcNumber":"RFC6742","href":"https://www.rfc-editor.org/rfc/rfc6742","title":"DNS Resource Records for the Identifier-Locator Network Protocol (ILNP)","authors":["RJ Atkinson","SN Bhatti","S. Rose"],"rawDate":"2012-11","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6742","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6743":{"rfcNumber":"RFC6743","href":"https://www.rfc-editor.org/rfc/rfc6743","title":"ICMP Locator Update Message for the Identifier-Locator Network Protocol for IPv6 (ILNPv6)","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6743","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6744":{"rfcNumber":"RFC6744","href":"https://www.rfc-editor.org/rfc/rfc6744","title":"IPv6 Nonce Destination Option for the Identifier-Locator Network Protocol for IPv6 (ILNPv6)","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6745":{"rfcNumber":"RFC6745","href":"https://www.rfc-editor.org/rfc/rfc6745","title":"ICMP Locator Update Message for the Identifier-Locator Network Protocol for IPv4 (ILNPv4)","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6746":{"rfcNumber":"RFC6746","href":"https://www.rfc-editor.org/rfc/rfc6746","title":"IPv4 Options for the Identifier-Locator Network Protocol (ILNP)","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6747":{"rfcNumber":"RFC6747","href":"https://www.rfc-editor.org/rfc/rfc6747","title":"Address Resolution Protocol (ARP) for the Identifier-Locator Network Protocol for IPv4 (ILNPv4)","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6748":{"rfcNumber":"RFC6748","href":"https://www.rfc-editor.org/rfc/rfc6748","title":"Optional Advanced Deployment Scenarios for the Identifier-Locator Network Protocol (ILNP)","authors":["RJ Atkinson","SN Bhatti"],"rawDate":"2012-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6749":{"rfcNumber":"RFC6749","href":"https://www.rfc-editor.org/rfc/rfc6749","title":"The OAuth 2.0 Authorization Framework","authors":["D. Hardt, Ed."],"rawDate":"2012-10","status":"Proposed Standard","updatedBy":["RFC8252","RFC8996"],"obsoletes":["RFC5849"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6749","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc675":{"aliasOf":"rfc0675"},"rfc6750":{"rfcNumber":"RFC6750","href":"https://www.rfc-editor.org/rfc/rfc6750","title":"The OAuth 2.0 Authorization Framework: Bearer Token Usage","authors":["M. Jones","D. Hardt"],"rawDate":"2012-10","status":"Proposed Standard","updatedBy":["RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6750","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6751":{"rfcNumber":"RFC6751","href":"https://www.rfc-editor.org/rfc/rfc6751","title":"Native IPv6 behind IPv4-to-IPv4 NAT Customer Premises Equipment (6a44)","authors":["R. Despres, Ed.","B. Carpenter","D. Wing","S. Jiang"],"rawDate":"2012-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6751","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6752":{"rfcNumber":"RFC6752","href":"https://www.rfc-editor.org/rfc/rfc6752","title":"Issues with Private IP Addressing in the Internet","authors":["A. Kirkham"],"rawDate":"2012-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6753":{"rfcNumber":"RFC6753","href":"https://www.rfc-editor.org/rfc/rfc6753","title":"A Location Dereference Protocol Using HTTP-Enabled Location Delivery (HELD)","authors":["J. Winterbottom","H. Tschofenig","H. Schulzrinne","M. Thomson"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6754":{"rfcNumber":"RFC6754","href":"https://www.rfc-editor.org/rfc/rfc6754","title":"Protocol Independent Multicast Equal-Cost Multipath (ECMP) Redirect","authors":["Y. Cai","L. Wei","H. Ou","V. Arya","S. Jethwani"],"rawDate":"2012-10","status":"Proposed Standard","updatedBy":["RFC8736","RFC9436"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6755":{"rfcNumber":"RFC6755","href":"https://www.rfc-editor.org/rfc/rfc6755","title":"An IETF URN Sub-Namespace for OAuth","authors":["B. Campbell","H. Tschofenig"],"rawDate":"2012-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6756":{"rfcNumber":"RFC6756","href":"https://www.rfc-editor.org/rfc/rfc6756","title":"Internet Engineering Task Force and International Telecommunication Union - Telecommunication Standardization Sector Collaboration Guidelines","authors":["S. Trowbridge, Ed.","E. Lear, Ed.","G. Fishman, Ed.","S. Bradner, Ed."],"rawDate":"2012-09","status":"Informational","updatedBy":["RFC9141"],"obsoletes":["RFC3356"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6756","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6757":{"rfcNumber":"RFC6757","href":"https://www.rfc-editor.org/rfc/rfc6757","title":"Access Network Identifier (ANI) Option for Proxy Mobile IPv6","authors":["S. Gundavelli, Ed.","J. Korhonen, Ed.","M. Grayson","K. Leung","R. Pazhyannur"],"rawDate":"2012-10","status":"Proposed Standard","updatedBy":["RFC7563"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6758":{"rfcNumber":"RFC6758","href":"https://www.rfc-editor.org/rfc/rfc6758","title":"Tunneling of SMTP Message Transfer Priorities","authors":["A. Melnikov","K. Carlberg"],"rawDate":"2012-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6759":{"rfcNumber":"RFC6759","href":"https://www.rfc-editor.org/rfc/rfc6759","title":"Cisco Systems Export of Application Information in IP Flow Information Export (IPFIX)","authors":["B. Claise","P. Aitken","N. Ben-Dvora"],"rawDate":"2012-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6759","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6760":{"rfcNumber":"RFC6760","href":"https://www.rfc-editor.org/rfc/rfc6760","title":"Requirements for a Protocol to Replace the AppleTalk Name Binding Protocol (NBP)","authors":["S. Cheshire","M. Krochmal"],"rawDate":"2013-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6761":{"rfcNumber":"RFC6761","href":"https://www.rfc-editor.org/rfc/rfc6761","title":"Special-Use Domain Names","authors":["S. Cheshire","M. Krochmal"],"rawDate":"2013-02","status":"Proposed Standard","updates":["RFC1918","RFC2606"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6761","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6762":{"rfcNumber":"RFC6762","href":"https://www.rfc-editor.org/rfc/rfc6762","title":"Multicast DNS","authors":["S. Cheshire","M. Krochmal"],"rawDate":"2013-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6762","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6763":{"rfcNumber":"RFC6763","href":"https://www.rfc-editor.org/rfc/rfc6763","title":"DNS-Based Service Discovery","authors":["S. Cheshire","M. Krochmal"],"rawDate":"2013-02","status":"Proposed Standard","updatedBy":["RFC8553"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6763","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6764":{"rfcNumber":"RFC6764","href":"https://www.rfc-editor.org/rfc/rfc6764","title":"Locating Services for Calendaring Extensions to WebDAV (CalDAV) and vCard Extensions to WebDAV (CardDAV)","authors":["C. Daboo"],"rawDate":"2013-02","status":"Proposed Standard","updates":["RFC4791","RFC6352"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6765":{"rfcNumber":"RFC6765","href":"https://www.rfc-editor.org/rfc/rfc6765","title":"xDSL Multi-Pair Bonding (G.Bond) MIB","authors":["E. Beili","M. Morgenstern"],"rawDate":"2013-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6765","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6766":{"rfcNumber":"RFC6766","href":"https://www.rfc-editor.org/rfc/rfc6766","title":"xDSL Multi-Pair Bonding Using Time-Division Inverse Multiplexing (G.Bond/TDIM) MIB","authors":["E. Beili"],"rawDate":"2013-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6766","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6767":{"rfcNumber":"RFC6767","href":"https://www.rfc-editor.org/rfc/rfc6767","title":"Ethernet-Based xDSL Multi-Pair Bonding (G.Bond/Ethernet) MIB","authors":["E. Beili","M. Morgenstern"],"rawDate":"2013-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6767","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6768":{"rfcNumber":"RFC6768","href":"https://www.rfc-editor.org/rfc/rfc6768","title":"ATM-Based xDSL Bonded Interfaces MIB","authors":["E. Beili"],"rawDate":"2013-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6768","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6769":{"rfcNumber":"RFC6769","href":"https://www.rfc-editor.org/rfc/rfc6769","title":"Simple Virtual Aggregation (S-VA)","authors":["R. Raszuk","J. Heitz","A. Lo","L. Zhang","X. Xu"],"rawDate":"2012-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc677":{"aliasOf":"rfc0677"},"rfc6770":{"rfcNumber":"RFC6770","href":"https://www.rfc-editor.org/rfc/rfc6770","title":"Use Cases for Content Delivery Network Interconnection","authors":["G. Bertrand, Ed.","E. Stephan","T. Burbridge","P. Eardley","K. Ma","G. Watson"],"rawDate":"2012-11","status":"Informational","obsoletes":["RFC3570"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6771":{"rfcNumber":"RFC6771","href":"https://www.rfc-editor.org/rfc/rfc6771","title":"Considerations for Having a Successful \"Bar BOF\" Side Meeting","authors":["L. Eggert","G. Camarillo"],"rawDate":"2012-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6772":{"rfcNumber":"RFC6772","href":"https://www.rfc-editor.org/rfc/rfc6772","title":"Geolocation Policy: A Document Format for Expressing Privacy Preferences for Location Information","authors":["H. Schulzrinne, Ed.","H. Tschofenig, Ed.","J. Cuellar","J. Polk","J. Morris","M. Thomson"],"rawDate":"2013-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6773":{"rfcNumber":"RFC6773","href":"https://www.rfc-editor.org/rfc/rfc6773","title":"DCCP-UDP: A Datagram Congestion Control Protocol UDP Encapsulation for NAT Traversal","authors":["T. Phelan","G. Fairhurst","C. Perkins"],"rawDate":"2012-11","status":"Proposed Standard","updates":["RFC4340","RFC5762"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6773","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6774":{"rfcNumber":"RFC6774","href":"https://www.rfc-editor.org/rfc/rfc6774","title":"Distribution of Diverse BGP Paths","authors":["R. Raszuk, Ed.","R. Fernando","K. Patel","D. McPherson","K. Kumaki"],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6775":{"rfcNumber":"RFC6775","href":"https://www.rfc-editor.org/rfc/rfc6775","title":"Neighbor Discovery Optimization for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)","authors":["Z. Shelby, Ed.","S. Chakrabarti","E. Nordmark","C. Bormann"],"rawDate":"2012-11","status":"Proposed Standard","updatedBy":["RFC8505","RFC8929","RFC9010"],"updates":["RFC4944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6776":{"rfcNumber":"RFC6776","href":"https://www.rfc-editor.org/rfc/rfc6776","title":"Measurement Identity and Information Reporting Using a Source Description (SDES) Item and an RTCP Extended Report (XR) Block","authors":["A. Clark","Q. Wu"],"rawDate":"2012-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6777":{"rfcNumber":"RFC6777","href":"https://www.rfc-editor.org/rfc/rfc6777","title":"Label Switched Path (LSP) Data Path Delay Metrics in Generalized MPLS and MPLS Traffic Engineering (MPLS-TE) Networks","authors":["W. Sun, Ed.","G. Zhang, Ed.","J. Gao","G. Xie","R. Papneja"],"rawDate":"2012-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6778":{"rfcNumber":"RFC6778","href":"https://www.rfc-editor.org/rfc/rfc6778","title":"Requirements for Archiving IETF Email Lists and for Providing Web-Based Browsing and Searching","authors":["R. Sparks"],"rawDate":"2012-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6779":{"rfcNumber":"RFC6779","href":"https://www.rfc-editor.org/rfc/rfc6779","title":"Definition of Managed Objects for the Neighborhood Discovery Protocol","authors":["U. Herberg","R. Cole","I. Chakeres"],"rawDate":"2012-10","status":"Proposed Standard","obsoletedBy":["RFC7939"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc678":{"aliasOf":"rfc0678"},"rfc6780":{"rfcNumber":"RFC6780","href":"https://www.rfc-editor.org/rfc/rfc6780","title":"RSVP ASSOCIATION Object Extensions","authors":["L. Berger","F. Le Faucheur","A. Narayanan"],"rawDate":"2012-10","status":"Proposed Standard","updates":["RFC2205","RFC3209","RFC3473","RFC4872"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6781":{"rfcNumber":"RFC6781","href":"https://www.rfc-editor.org/rfc/rfc6781","title":"DNSSEC Operational Practices, Version 2","authors":["O. Kolkman","W. Mekking","R. Gieben"],"rawDate":"2012-12","status":"Informational","obsoletes":["RFC4641"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6781","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6782":{"rfcNumber":"RFC6782","href":"https://www.rfc-editor.org/rfc/rfc6782","title":"Wireline Incremental IPv6","authors":["V. Kuarsingh, Ed.","L. Howard"],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6783":{"rfcNumber":"RFC6783","href":"https://www.rfc-editor.org/rfc/rfc6783","title":"Mailing Lists and Non-ASCII Addresses","authors":["J. Levine","R. Gellens"],"rawDate":"2012-11","status":"Informational","obsoletes":["RFC5983"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6784":{"rfcNumber":"RFC6784","href":"https://www.rfc-editor.org/rfc/rfc6784","title":"Kerberos Options for DHCPv6","authors":["S. Sakane","M. Ishiyama"],"rawDate":"2012-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6785":{"rfcNumber":"RFC6785","href":"https://www.rfc-editor.org/rfc/rfc6785","title":"Support for Internet Message Access Protocol (IMAP) Events in Sieve","authors":["B. Leiba"],"rawDate":"2012-11","status":"Proposed Standard","updates":["RFC5228"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6786":{"rfcNumber":"RFC6786","href":"https://www.rfc-editor.org/rfc/rfc6786","title":"Encrypting the Protocol for Carrying Authentication for Network Access (PANA) Attribute-Value Pairs","authors":["A. Yegin","R. Cragie"],"rawDate":"2012-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6787":{"rfcNumber":"RFC6787","href":"https://www.rfc-editor.org/rfc/rfc6787","title":"Media Resource Control Protocol Version 2 (MRCPv2)","authors":["D. Burnett","S. Shanmugham"],"rawDate":"2012-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6787","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6788":{"rfcNumber":"RFC6788","href":"https://www.rfc-editor.org/rfc/rfc6788","title":"The Line-Identification Option","authors":["S. Krishnan","A. Kavanagh","B. Varga","S. Ooghe","E. Nordmark"],"rawDate":"2012-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6788","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6789":{"rfcNumber":"RFC6789","href":"https://www.rfc-editor.org/rfc/rfc6789","title":"Congestion Exposure (ConEx) Concepts and Use Cases","authors":["B. Briscoe, Ed.","R. Woundy, Ed.","A. Cooper, Ed."],"rawDate":"2012-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc679":{"aliasOf":"rfc0679"},"rfc6790":{"rfcNumber":"RFC6790","href":"https://www.rfc-editor.org/rfc/rfc6790","title":"The Use of Entropy Labels in MPLS Forwarding","authors":["K. Kompella","J. Drake","S. Amante","W. Henderickx","L. Yong"],"rawDate":"2012-11","status":"Proposed Standard","updatedBy":["RFC7274","RFC7447","RFC8012"],"updates":["RFC3031","RFC3107","RFC3209","RFC5036"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6790","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6791":{"rfcNumber":"RFC6791","href":"https://www.rfc-editor.org/rfc/rfc6791","title":"Stateless Source Address Mapping for ICMPv6 Packets","authors":["X. Li","C. Bao","D. Wing","R. Vaithianathan","G. Huston"],"rawDate":"2012-11","status":"Proposed Standard","updates":["RFC6145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6792":{"rfcNumber":"RFC6792","href":"https://www.rfc-editor.org/rfc/rfc6792","title":"Guidelines for Use of the RTP Monitoring Framework","authors":["Q. Wu, Ed.","G. Hunt","P. Arden"],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6793":{"rfcNumber":"RFC6793","href":"https://www.rfc-editor.org/rfc/rfc6793","title":"BGP Support for Four-Octet Autonomous System (AS) Number Space","authors":["Q. Vohra","E. Chen"],"rawDate":"2012-12","status":"Proposed Standard","updates":["RFC4271"],"obsoletes":["RFC4893"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6793","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6794":{"rfcNumber":"RFC6794","href":"https://www.rfc-editor.org/rfc/rfc6794","title":"A Framework for Session Initiation Protocol (SIP) Session Policies","authors":["V. Hilt","G. Camarillo","J. Rosenberg"],"rawDate":"2012-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6795":{"rfcNumber":"RFC6795","href":"https://www.rfc-editor.org/rfc/rfc6795","title":"A Session Initiation Protocol (SIP) Event Package for Session-Specific Policies","authors":["V. Hilt","G. Camarillo"],"rawDate":"2012-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6796":{"rfcNumber":"RFC6796","href":"https://www.rfc-editor.org/rfc/rfc6796","title":"A User Agent Profile Data Set for Media Policy","authors":["V. Hilt","G. Camarillo","J. Rosenberg","D. Worley"],"rawDate":"2012-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6797":{"rfcNumber":"RFC6797","href":"https://www.rfc-editor.org/rfc/rfc6797","title":"HTTP Strict Transport Security (HSTS)","authors":["J. Hodges","C. Jackson","A. Barth"],"rawDate":"2012-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6797","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6798":{"rfcNumber":"RFC6798","href":"https://www.rfc-editor.org/rfc/rfc6798","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Packet Delay Variation Metric Reporting","authors":["A. Clark","Q. Wu"],"rawDate":"2012-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc68":{"aliasOf":"rfc0068"},"rfc680":{"aliasOf":"rfc0680"},"rfc6801":{"rfcNumber":"RFC6801","href":"https://www.rfc-editor.org/rfc/rfc6801","title":"Pseudo Content Delivery Protocol (CDP) for Protecting Multiple Source Flows in the Forward Error Correction (FEC) Framework","authors":["U. Kozat","A. Begen"],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6802":{"rfcNumber":"RFC6802","href":"https://www.rfc-editor.org/rfc/rfc6802","title":"Ericsson Two-Way Active Measurement Protocol (TWAMP) Value-Added Octets","authors":["S. Baillargeon","C. Flinta","A. Johnsson"],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6803":{"rfcNumber":"RFC6803","href":"https://www.rfc-editor.org/rfc/rfc6803","title":"Camellia Encryption for Kerberos 5","authors":["G. Hudson"],"rawDate":"2012-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6803","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6804":{"rfcNumber":"RFC6804","href":"https://www.rfc-editor.org/rfc/rfc6804","title":"DISCOVER: Supporting Multicast DNS Queries","authors":["B. Manning"],"rawDate":"2012-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6805":{"rfcNumber":"RFC6805","href":"https://www.rfc-editor.org/rfc/rfc6805","title":"The Application of the Path Computation Element Architecture to the Determination of a Sequence of Domains in MPLS and GMPLS","authors":["D. King, Ed.","A. Farrel, Ed."],"rawDate":"2012-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6806":{"rfcNumber":"RFC6806","href":"https://www.rfc-editor.org/rfc/rfc6806","title":"Kerberos Principal Name Canonicalization and Cross-Realm Referrals","authors":["S. Hartman, Ed.","K. Raeburn","L. Zhu"],"rawDate":"2012-11","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6807":{"rfcNumber":"RFC6807","href":"https://www.rfc-editor.org/rfc/rfc6807","title":"Population Count Extensions to Protocol Independent Multicast (PIM)","authors":["D. Farinacci","G. Shepherd","S. Venaas","Y. Cai"],"rawDate":"2012-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6808":{"rfcNumber":"RFC6808","href":"https://www.rfc-editor.org/rfc/rfc6808","title":"Test Plan and Results Supporting Advancement of RFC 2679 on the Standards Track","authors":["L. Ciavattone","R. Geib","A. Morton","M. Wieser"],"rawDate":"2012-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6809":{"rfcNumber":"RFC6809","href":"https://www.rfc-editor.org/rfc/rfc6809","title":"Mechanism to Indicate Support of Features and Capabilities in the Session Initiation Protocol (SIP)","authors":["C. Holmberg","I. Sedlacek","H. Kaplan"],"rawDate":"2012-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc681":{"aliasOf":"rfc0681"},"rfc6810":{"rfcNumber":"RFC6810","href":"https://www.rfc-editor.org/rfc/rfc6810","title":"The Resource Public Key Infrastructure (RPKI) to Router Protocol","authors":["R. Bush","R. Austein"],"rawDate":"2013-01","status":"Proposed Standard","updatedBy":["RFC8210"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6811":{"rfcNumber":"RFC6811","href":"https://www.rfc-editor.org/rfc/rfc6811","title":"BGP Prefix Origin Validation","authors":["P. Mohapatra","J. Scudder","D. Ward","R. Bush","R. Austein"],"rawDate":"2013-01","status":"Proposed Standard","updatedBy":["RFC8481","RFC8893"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6812":{"rfcNumber":"RFC6812","href":"https://www.rfc-editor.org/rfc/rfc6812","title":"Cisco Service-Level Assurance Protocol","authors":["M. Chiba","A. Clemm","S. Medley","J. Salowey","S. Thombare","E. Yedavalli"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6813":{"rfcNumber":"RFC6813","href":"https://www.rfc-editor.org/rfc/rfc6813","title":"The Network Endpoint Assessment (NEA) Asokan Attack Analysis","authors":["J. Salowey","S. Hanna"],"rawDate":"2012-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6814":{"rfcNumber":"RFC6814","href":"https://www.rfc-editor.org/rfc/rfc6814","title":"Formally Deprecating Some IPv4 Options","authors":["C. Pignataro","F. Gont"],"rawDate":"2012-11","status":"Proposed Standard","obsoletes":["RFC1385","RFC1393","RFC1475","RFC1770"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6815":{"rfcNumber":"RFC6815","href":"https://www.rfc-editor.org/rfc/rfc6815","title":"Applicability Statement for RFC 2544: Use on Production Networks Considered Harmful","authors":["S. Bradner","K. Dubray","J. McQuaid","A. Morton"],"rawDate":"2012-11","status":"Informational","updates":["RFC2544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6816":{"rfcNumber":"RFC6816","href":"https://www.rfc-editor.org/rfc/rfc6816","title":"Simple Low-Density Parity Check (LDPC) Staircase Forward Error Correction (FEC) Scheme for FECFRAME","authors":["V. Roca","M. Cunche","J. Lacan"],"rawDate":"2012-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6817":{"rfcNumber":"RFC6817","href":"https://www.rfc-editor.org/rfc/rfc6817","title":"Low Extra Delay Background Transport (LEDBAT)","authors":["S. Shalunov","G. Hazel","J. Iyengar","M. Kuehlewind"],"rawDate":"2012-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6818":{"rfcNumber":"RFC6818","href":"https://www.rfc-editor.org/rfc/rfc6818","title":"Updates to the Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile","authors":["P. Yee"],"rawDate":"2013-01","status":"Proposed Standard","updates":["RFC5280"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6819":{"rfcNumber":"RFC6819","href":"https://www.rfc-editor.org/rfc/rfc6819","title":"OAuth 2.0 Threat Model and Security Considerations","authors":["T. Lodderstedt, Ed.","M. McGloin","P. Hunt"],"rawDate":"2013-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6819","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6820":{"rfcNumber":"RFC6820","href":"https://www.rfc-editor.org/rfc/rfc6820","title":"Address Resolution Problems in Large Data Center Networks","authors":["T. Narten","M. Karir","I. Foo"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6821":{"rfcNumber":"RFC6821","href":"https://www.rfc-editor.org/rfc/rfc6821","title":"Improving Peer Selection in Peer-to-peer Applications: Myths vs. Reality","authors":["E. Marocco","A. Fusco","I. Rimac","V. Gurbani"],"rawDate":"2012-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6822":{"rfcNumber":"RFC6822","href":"https://www.rfc-editor.org/rfc/rfc6822","title":"IS-IS Multi-Instance","authors":["S. Previdi, Ed.","L. Ginsberg","M. Shand","A. Roy","D. Ward"],"rawDate":"2012-12","status":"Proposed Standard","obsoletedBy":["RFC8202"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6822","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6823":{"rfcNumber":"RFC6823","href":"https://www.rfc-editor.org/rfc/rfc6823","title":"Advertising Generic Information in IS-IS","authors":["L. Ginsberg","S. Previdi","M. Shand"],"rawDate":"2012-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6824":{"rfcNumber":"RFC6824","href":"https://www.rfc-editor.org/rfc/rfc6824","title":"TCP Extensions for Multipath Operation with Multiple Addresses","authors":["A. Ford","C. Raiciu","M. Handley","O. Bonaventure"],"rawDate":"2013-01","status":"Experimental","obsoletedBy":["RFC8684"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6824","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6825":{"rfcNumber":"RFC6825","href":"https://www.rfc-editor.org/rfc/rfc6825","title":"Traffic Engineering Database Management Information Base in Support of MPLS-TE/GMPLS","authors":["M. Miyazawa","T. Otani","K. Kumaki","T. Nadeau"],"rawDate":"2013-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6826":{"rfcNumber":"RFC6826","href":"https://www.rfc-editor.org/rfc/rfc6826","title":"Multipoint LDP In-Band Signaling for Point-to-Multipoint and Multipoint-to-Multipoint Label Switched Paths","authors":["IJ. Wijnands, Ed.","T. Eckert","N. Leymann","M. Napierala"],"rawDate":"2013-01","status":"Proposed Standard","updatedBy":["RFC7438"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6827":{"rfcNumber":"RFC6827","href":"https://www.rfc-editor.org/rfc/rfc6827","title":"Automatically Switched Optical Network (ASON) Routing for OSPFv2 Protocols","authors":["A. Malis, Ed.","A. Lindem, Ed.","D. Papadimitriou, Ed."],"rawDate":"2013-01","status":"Proposed Standard","updates":["RFC5786"],"obsoletes":["RFC5787"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6828":{"rfcNumber":"RFC6828","href":"https://www.rfc-editor.org/rfc/rfc6828","title":"Content Splicing for RTP Sessions","authors":["J. Xia"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6829":{"rfcNumber":"RFC6829","href":"https://www.rfc-editor.org/rfc/rfc6829","title":"Label Switched Path (LSP) Ping for Pseudowire Forwarding Equivalence Classes (FECs) Advertised over IPv6","authors":["M. Chen","P. Pan","C. Pignataro","R. Asati"],"rawDate":"2013-01","status":"Proposed Standard","obsoletedBy":["RFC8029"],"updates":["RFC4379"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc683":{"aliasOf":"rfc0683"},"rfc6830":{"rfcNumber":"RFC6830","href":"https://www.rfc-editor.org/rfc/rfc6830","title":"The Locator/ID Separation Protocol (LISP)","authors":["D. Farinacci","V. Fuller","D. Meyer","D. Lewis"],"rawDate":"2013-01","status":"Experimental","updatedBy":["RFC8113"],"obsoletedBy":["RFC9300","RFC9301"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6831":{"rfcNumber":"RFC6831","href":"https://www.rfc-editor.org/rfc/rfc6831","title":"The Locator/ID Separation Protocol (LISP) for Multicast Environments","authors":["D. Farinacci","D. Meyer","J. Zwiebel","S. Venaas"],"rawDate":"2013-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6832":{"rfcNumber":"RFC6832","href":"https://www.rfc-editor.org/rfc/rfc6832","title":"Interworking between Locator/ID Separation Protocol (LISP) and Non-LISP Sites","authors":["D. Lewis","D. Meyer","D. Farinacci","V. Fuller"],"rawDate":"2013-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6833":{"rfcNumber":"RFC6833","href":"https://www.rfc-editor.org/rfc/rfc6833","title":"Locator/ID Separation Protocol (LISP) Map-Server Interface","authors":["V. Fuller","D. Farinacci"],"rawDate":"2013-01","status":"Experimental","obsoletedBy":["RFC9301"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6834":{"rfcNumber":"RFC6834","href":"https://www.rfc-editor.org/rfc/rfc6834","title":"Locator/ID Separation Protocol (LISP) Map-Versioning","authors":["L. Iannone","D. Saucez","O. Bonaventure"],"rawDate":"2013-01","status":"Experimental","obsoletedBy":["RFC9302"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6835":{"rfcNumber":"RFC6835","href":"https://www.rfc-editor.org/rfc/rfc6835","title":"The Locator/ID Separation Protocol Internet Groper (LIG)","authors":["D. Farinacci","D. Meyer"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6836":{"rfcNumber":"RFC6836","href":"https://www.rfc-editor.org/rfc/rfc6836","title":"Locator/ID Separation Protocol Alternative Logical Topology (LISP+ALT)","authors":["V. Fuller","D. Farinacci","D. Meyer","D. Lewis"],"rawDate":"2013-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6837":{"rfcNumber":"RFC6837","href":"https://www.rfc-editor.org/rfc/rfc6837","title":"NERD: A Not-so-novel Endpoint ID (EID) to Routing Locator (RLOC) Database","authors":["E. Lear"],"rawDate":"2013-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6838":{"rfcNumber":"RFC6838","href":"https://www.rfc-editor.org/rfc/rfc6838","title":"Media Type Specifications and Registration Procedures","authors":["N. Freed","J. Klensin","T. Hansen"],"rawDate":"2013-01","status":"Best Current Practice","obsoletes":["RFC4288"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6839":{"rfcNumber":"RFC6839","href":"https://www.rfc-editor.org/rfc/rfc6839","title":"Additional Media Type Structured Syntax Suffixes","authors":["T. Hansen","A. Melnikov"],"rawDate":"2013-01","status":"Informational","updatedBy":["RFC7303"],"updates":["RFC3023"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6839","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc684":{"aliasOf":"rfc0684"},"rfc6840":{"rfcNumber":"RFC6840","href":"https://www.rfc-editor.org/rfc/rfc6840","title":"Clarifications and Implementation Notes for DNS Security (DNSSEC)","authors":["S. Weiler, Ed.","D. Blacka, Ed."],"rawDate":"2013-02","status":"Proposed Standard","updatedBy":["RFC8749"],"updates":["RFC4033","RFC4034","RFC4035","RFC5155"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6840","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6841":{"rfcNumber":"RFC6841","href":"https://www.rfc-editor.org/rfc/rfc6841","title":"A Framework for DNSSEC Policies and DNSSEC Practice Statements","authors":["F. Ljunggren","AM. Eklund Lowinder","T. Okubo"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6842":{"rfcNumber":"RFC6842","href":"https://www.rfc-editor.org/rfc/rfc6842","title":"Client Identifier Option in DHCP Server Replies","authors":["N. Swamy","G. Halwasia","P. Jhingran"],"rawDate":"2013-01","status":"Proposed Standard","updates":["RFC2131"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6843":{"rfcNumber":"RFC6843","href":"https://www.rfc-editor.org/rfc/rfc6843","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Delay Metric Reporting","authors":["A. Clark","K. Gross","Q. Wu"],"rawDate":"2013-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6844":{"rfcNumber":"RFC6844","href":"https://www.rfc-editor.org/rfc/rfc6844","title":"DNS Certification Authority Authorization (CAA) Resource Record","authors":["P. Hallam-Baker","R. Stradling"],"rawDate":"2013-01","status":"Proposed Standard","obsoletedBy":["RFC8659"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6844","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6845":{"rfcNumber":"RFC6845","href":"https://www.rfc-editor.org/rfc/rfc6845","title":"OSPF Hybrid Broadcast and Point-to-Multipoint Interface Type","authors":["N. Sheth","L. Wang","J. Zhang"],"rawDate":"2013-01","status":"Proposed Standard","updates":["RFC2328","RFC5340"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6846":{"rfcNumber":"RFC6846","href":"https://www.rfc-editor.org/rfc/rfc6846","title":"RObust Header Compression (ROHC): A Profile for TCP/IP (ROHC-TCP)","authors":["G. Pelletier","K. Sandlund","L-E. Jonsson","M. West"],"rawDate":"2013-01","status":"Proposed Standard","obsoletes":["RFC4996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6846","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6847":{"rfcNumber":"RFC6847","href":"https://www.rfc-editor.org/rfc/rfc6847","title":"Fibre Channel over Ethernet (FCoE) over Transparent Interconnection of Lots of Links (TRILL)","authors":["D. Melman","T. Mizrahi","D. Eastlake 3rd"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6848":{"rfcNumber":"RFC6848","href":"https://www.rfc-editor.org/rfc/rfc6848","title":"Specifying Civic Address Extensions in the Presence Information Data Format Location Object (PIDF-LO)","authors":["J. Winterbottom","M. Thomson","R. Barnes","B. Rosen","R. George"],"rawDate":"2013-01","status":"Proposed Standard","updates":["RFC4776","RFC5222"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6849":{"rfcNumber":"RFC6849","href":"https://www.rfc-editor.org/rfc/rfc6849","title":"An Extension to the Session Description Protocol (SDP) and Real-time Transport Protocol (RTP) for Media Loopback","authors":["H. Kaplan, Ed.","K. Hedayat","N. Venna","P. Jones","N. Stratton"],"rawDate":"2013-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc685":{"aliasOf":"rfc0685"},"rfc6850":{"rfcNumber":"RFC6850","href":"https://www.rfc-editor.org/rfc/rfc6850","title":"Definitions of Managed Objects for Routing Bridges (RBridges)","authors":["A. Rijhsinghani","K. Zebrose"],"rawDate":"2013-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6851":{"rfcNumber":"RFC6851","href":"https://www.rfc-editor.org/rfc/rfc6851","title":"Internet Message Access Protocol (IMAP) - MOVE Extension","authors":["A. Gulbrandsen","N. Freed, Ed."],"rawDate":"2013-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6852":{"rfcNumber":"RFC6852","href":"https://www.rfc-editor.org/rfc/rfc6852","title":"Affirmation of the Modern Paradigm for Standards","authors":["R. Housley","S. Mills","J. Jaffe","B. Aboba","L. St.Amour"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6853":{"rfcNumber":"RFC6853","href":"https://www.rfc-editor.org/rfc/rfc6853","title":"DHCPv6 Redundancy Deployment Considerations","authors":["J. Brzozowski","J. Tremblay","J. Chen","T. Mrugalski"],"rawDate":"2013-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6854":{"rfcNumber":"RFC6854","href":"https://www.rfc-editor.org/rfc/rfc6854","title":"Update to Internet Message Format to Allow Group Syntax in the \"From:\" and \"Sender:\" Header Fields","authors":["B. Leiba"],"rawDate":"2013-03","status":"Proposed Standard","updates":["RFC5322"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6855":{"rfcNumber":"RFC6855","href":"https://www.rfc-editor.org/rfc/rfc6855","title":"IMAP Support for UTF-8","authors":["P. Resnick, Ed.","C. Newman, Ed.","S. Shen, Ed."],"rawDate":"2013-03","status":"Proposed Standard","obsoletes":["RFC5738"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6855","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6856":{"rfcNumber":"RFC6856","href":"https://www.rfc-editor.org/rfc/rfc6856","title":"Post Office Protocol Version 3 (POP3) Support for UTF-8","authors":["R. Gellens","C. Newman","J. Yao","K. Fujiwara"],"rawDate":"2013-03","status":"Proposed Standard","obsoletes":["RFC5721"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6857":{"rfcNumber":"RFC6857","href":"https://www.rfc-editor.org/rfc/rfc6857","title":"Post-Delivery Message Downgrading for Internationalized Email Messages","authors":["K. Fujiwara"],"rawDate":"2013-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6857","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6858":{"rfcNumber":"RFC6858","href":"https://www.rfc-editor.org/rfc/rfc6858","title":"Simplified POP and IMAP Downgrading for Internationalized Email","authors":["A. Gulbrandsen"],"rawDate":"2013-03","status":"Proposed Standard","updates":["RFC3501"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6859":{"rfcNumber":"RFC6859","href":"https://www.rfc-editor.org/rfc/rfc6859","title":"Update to RFC 3777 to Clarify Nominating Committee Eligibility of IETF Leadership","authors":["B. Leiba"],"rawDate":"2013-01","status":"Best Current Practice","obsoletedBy":["RFC7437"],"updates":["RFC3777"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc686":{"aliasOf":"rfc0686"},"rfc6860":{"rfcNumber":"RFC6860","href":"https://www.rfc-editor.org/rfc/rfc6860","title":"Hiding Transit-Only Networks in OSPF","authors":["Y. Yang","A. Retana","A. Roy"],"rawDate":"2013-01","status":"Proposed Standard","updates":["RFC2328","RFC5340"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6860","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6861":{"rfcNumber":"RFC6861","href":"https://www.rfc-editor.org/rfc/rfc6861","title":"The \"create-form\" and \"edit-form\" Link Relations","authors":["I. Dzmanashvili"],"rawDate":"2013-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6862":{"rfcNumber":"RFC6862","href":"https://www.rfc-editor.org/rfc/rfc6862","title":"Keying and Authentication for Routing Protocols (KARP) Overview, Threats, and Requirements","authors":["G. Lebovitz","M. Bhatia","B. Weis"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6863":{"rfcNumber":"RFC6863","href":"https://www.rfc-editor.org/rfc/rfc6863","title":"Analysis of OSPF Security According to the Keying and Authentication for Routing Protocols (KARP) Design Guide","authors":["S. Hartman","D. Zhang"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6864":{"rfcNumber":"RFC6864","href":"https://www.rfc-editor.org/rfc/rfc6864","title":"Updated Specification of the IPv4 ID Field","authors":["J. Touch"],"rawDate":"2013-02","status":"Proposed Standard","updates":["RFC0791","RFC1122","RFC2003"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6865":{"rfcNumber":"RFC6865","href":"https://www.rfc-editor.org/rfc/rfc6865","title":"Simple Reed-Solomon Forward Error Correction (FEC) Scheme for FECFRAME","authors":["V. Roca","M. Cunche","J. Lacan","A. Bouabdallah","K. Matsuzono"],"rawDate":"2013-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6866":{"rfcNumber":"RFC6866","href":"https://www.rfc-editor.org/rfc/rfc6866","title":"Problem Statement for Renumbering IPv6 Hosts with Static Addresses in Enterprise Networks","authors":["B. Carpenter","S. Jiang"],"rawDate":"2013-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6867":{"rfcNumber":"RFC6867","href":"https://www.rfc-editor.org/rfc/rfc6867","title":"An Internet Key Exchange Protocol Version 2 (IKEv2) Extension to Support EAP Re-authentication Protocol (ERP)","authors":["Y. Nir","Q. Wu"],"rawDate":"2013-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6868":{"rfcNumber":"RFC6868","href":"https://www.rfc-editor.org/rfc/rfc6868","title":"Parameter Value Encoding in iCalendar and vCard","authors":["C. Daboo"],"rawDate":"2013-02","status":"Proposed Standard","updates":["RFC5545","RFC6321","RFC6350","RFC6351"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6868","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6869":{"rfcNumber":"RFC6869","href":"https://www.rfc-editor.org/rfc/rfc6869","title":"vCard KIND:device","authors":["G. Salgueiro","J. Clarke","P. Saint-Andre"],"rawDate":"2013-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc687":{"aliasOf":"rfc0687"},"rfc6870":{"rfcNumber":"RFC6870","href":"https://www.rfc-editor.org/rfc/rfc6870","title":"Pseudowire Preferential Forwarding Status Bit","authors":["P. Muley, Ed.","M. Aissaoui, Ed."],"rawDate":"2013-02","status":"Proposed Standard","updatedBy":["RFC7771"],"updates":["RFC4447"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6870","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6871":{"rfcNumber":"RFC6871","href":"https://www.rfc-editor.org/rfc/rfc6871","title":"Session Description Protocol (SDP) Media Capabilities Negotiation","authors":["R. Gilman","R. Even","F. Andreasen"],"rawDate":"2013-02","status":"Proposed Standard","updates":["RFC5939"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6872":{"rfcNumber":"RFC6872","href":"https://www.rfc-editor.org/rfc/rfc6872","title":"The Common Log Format (CLF) for the Session Initiation Protocol (SIP): Framework and Information Model","authors":["V. Gurbani, Ed.","E. Burger, Ed.","T. Anjali","H. Abdelnur","O. Festor"],"rawDate":"2013-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6873":{"rfcNumber":"RFC6873","href":"https://www.rfc-editor.org/rfc/rfc6873","title":"Format for the Session Initiation Protocol (SIP) Common Log Format (CLF)","authors":["G. Salgueiro","V. Gurbani","A. B. Roach"],"rawDate":"2013-02","status":"Proposed Standard","updatedBy":["RFC7355"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6874":{"rfcNumber":"RFC6874","href":"https://www.rfc-editor.org/rfc/rfc6874","title":"Representing IPv6 Zone Identifiers in Address Literals and Uniform Resource Identifiers","authors":["B. Carpenter","S. Cheshire","R. Hinden"],"rawDate":"2013-02","status":"Proposed Standard","updates":["RFC3986"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6874","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6875":{"rfcNumber":"RFC6875","href":"https://www.rfc-editor.org/rfc/rfc6875","title":"The P2P Network Experiment Council's Activities and Experiments with Application-Layer Traffic Optimization (ALTO) in Japan","authors":["S. Kamei","T. Momose","T. Inoue","T. Nishitani"],"rawDate":"2013-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6876":{"rfcNumber":"RFC6876","href":"https://www.rfc-editor.org/rfc/rfc6876","title":"A Posture Transport Protocol over TLS (PT-TLS)","authors":["P. Sangster","N. Cam-Winget","J. Salowey"],"rawDate":"2013-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6877":{"rfcNumber":"RFC6877","href":"https://www.rfc-editor.org/rfc/rfc6877","title":"464XLAT: Combination of Stateful and Stateless Translation","authors":["M. Mawatari","M. Kawashima","C. Byrne"],"rawDate":"2013-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6878":{"rfcNumber":"RFC6878","href":"https://www.rfc-editor.org/rfc/rfc6878","title":"IANA Registry for the Session Initiation Protocol (SIP) \"Priority\" Header Field","authors":["A.B. Roach"],"rawDate":"2013-03","status":"Proposed Standard","updates":["RFC3261"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6878","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6879":{"rfcNumber":"RFC6879","href":"https://www.rfc-editor.org/rfc/rfc6879","title":"IPv6 Enterprise Network Renumbering Scenarios, Considerations, and Methods","authors":["S. Jiang","B. Liu","B. Carpenter"],"rawDate":"2013-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc688":{"aliasOf":"rfc0688"},"rfc6880":{"rfcNumber":"RFC6880","href":"https://www.rfc-editor.org/rfc/rfc6880","title":"An Information Model for Kerberos Version 5","authors":["L. Johansson"],"rawDate":"2013-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6881":{"rfcNumber":"RFC6881","href":"https://www.rfc-editor.org/rfc/rfc6881","title":"Best Current Practice for Communications Services in Support of Emergency Calling","authors":["B. Rosen","J. Polk"],"rawDate":"2013-03","status":"Best Current Practice","updatedBy":["RFC7840","RFC7852"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6882":{"rfcNumber":"RFC6882","href":"https://www.rfc-editor.org/rfc/rfc6882","title":"Support for Resource Reservation Protocol Traffic Engineering (RSVP-TE) in Layer 3 Virtual Private Networks (L3VPNs)","authors":["K. Kumaki, Ed.","T. Murai","D. Cheng","S. Matsushima","P. Jiang"],"rawDate":"2013-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6883":{"rfcNumber":"RFC6883","href":"https://www.rfc-editor.org/rfc/rfc6883","title":"IPv6 Guidance for Internet Content Providers and Application Service Providers","authors":["B. Carpenter","S. Jiang"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6884":{"rfcNumber":"RFC6884","href":"https://www.rfc-editor.org/rfc/rfc6884","title":"RTP Payload Format for the Enhanced Variable Rate Narrowband-Wideband Codec (EVRC-NW)","authors":["Z. Fang"],"rawDate":"2013-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6885":{"rfcNumber":"RFC6885","href":"https://www.rfc-editor.org/rfc/rfc6885","title":"Stringprep Revision and Problem Statement for the Preparation and Comparison of Internationalized Strings (PRECIS)","authors":["M. Blanchet","A. Sullivan"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6886":{"rfcNumber":"RFC6886","href":"https://www.rfc-editor.org/rfc/rfc6886","title":"NAT Port Mapping Protocol (NAT-PMP)","authors":["S. Cheshire","M. Krochmal"],"rawDate":"2013-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6886","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6887":{"rfcNumber":"RFC6887","href":"https://www.rfc-editor.org/rfc/rfc6887","title":"Port Control Protocol (PCP)","authors":["D. Wing, Ed.","S. Cheshire","M. Boucadair","R. Penno","P. Selkirk"],"rawDate":"2013-04","status":"Proposed Standard","updatedBy":["RFC7488","RFC7652","RFC7843"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6887","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6888":{"rfcNumber":"RFC6888","href":"https://www.rfc-editor.org/rfc/rfc6888","title":"Common Requirements for Carrier-Grade NATs (CGNs)","authors":["S. Perreault, Ed.","I. Yamagata","S. Miyakawa","A. Nakagawa","H. Ashida"],"rawDate":"2013-04","status":"Best Current Practice","updates":["RFC4787"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6889":{"rfcNumber":"RFC6889","href":"https://www.rfc-editor.org/rfc/rfc6889","title":"Analysis of Stateful 64 Translation","authors":["R. Penno","T. Saxena","M. Boucadair","S. Sivakumar"],"rawDate":"2013-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc689":{"aliasOf":"rfc0689"},"rfc6890":{"rfcNumber":"RFC6890","href":"https://www.rfc-editor.org/rfc/rfc6890","title":"Special-Purpose IP Address Registries","authors":["M. Cotton","L. Vegoda","R. Bonica, Ed.","B. Haberman"],"rawDate":"2013-04","status":"Best Current Practice","updatedBy":["RFC8190"],"obsoletes":["RFC4773","RFC5156","RFC5735","RFC5736"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6890","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6891":{"rfcNumber":"RFC6891","href":"https://www.rfc-editor.org/rfc/rfc6891","title":"Extension Mechanisms for DNS (EDNS(0))","authors":["J. Damas","M. Graff","P. Vixie"],"rawDate":"2013-04","status":"Internet Standard","obsoletes":["RFC2671","RFC2673"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6891","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6892":{"rfcNumber":"RFC6892","href":"https://www.rfc-editor.org/rfc/rfc6892","title":"The 'describes' Link Relation Type","authors":["E. Wilde"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6893":{"rfcNumber":"RFC6893","href":"https://www.rfc-editor.org/rfc/rfc6893","title":"A Uniform Resource Name (URN) Namespace for the Open IPTV Forum (OIPF)","authors":["P. Higgs","P. Szucs"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6894":{"rfcNumber":"RFC6894","href":"https://www.rfc-editor.org/rfc/rfc6894","title":"Methodology for Benchmarking MPLS Traffic Engineered (MPLS-TE) Fast Reroute Protection","authors":["R. Papneja","S. Vapiwala","J. Karthik","S. Poretsky","S. Rao","JL. Le Roux"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6895":{"rfcNumber":"RFC6895","href":"https://www.rfc-editor.org/rfc/rfc6895","title":"Domain Name System (DNS) IANA Considerations","authors":["D. Eastlake 3rd"],"rawDate":"2013-04","status":"Best Current Practice","updates":["RFC1183","RFC2845","RFC2930","RFC3597"],"obsoletes":["RFC6195"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6896":{"rfcNumber":"RFC6896","href":"https://www.rfc-editor.org/rfc/rfc6896","title":"SCS: KoanLogic's Secure Cookie Sessions for HTTP","authors":["S. Barbato","S. Dorigotti","T. Fossati, Ed."],"rawDate":"2013-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6896","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6897":{"rfcNumber":"RFC6897","href":"https://www.rfc-editor.org/rfc/rfc6897","title":"Multipath TCP (MPTCP) Application Interface Considerations","authors":["M. Scharf","A. Ford"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6898":{"rfcNumber":"RFC6898","href":"https://www.rfc-editor.org/rfc/rfc6898","title":"Link Management Protocol Behavior Negotiation and Configuration Modifications","authors":["D. Li","D. Ceccarelli","L. Berger"],"rawDate":"2013-03","status":"Proposed Standard","updates":["RFC4204","RFC4207","RFC4209","RFC5818"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc69":{"aliasOf":"rfc0069"},"rfc690":{"aliasOf":"rfc0690"},"rfc6901":{"rfcNumber":"RFC6901","href":"https://www.rfc-editor.org/rfc/rfc6901","title":"JavaScript Object Notation (JSON) Pointer","authors":["P. Bryan, Ed.","K. Zyp","M. Nottingham, Ed."],"rawDate":"2013-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6901","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6902":{"rfcNumber":"RFC6902","href":"https://www.rfc-editor.org/rfc/rfc6902","title":"JavaScript Object Notation (JSON) Patch","authors":["P. Bryan, Ed.","M. Nottingham, Ed."],"rawDate":"2013-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6902","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6903":{"rfcNumber":"RFC6903","href":"https://www.rfc-editor.org/rfc/rfc6903","title":"Additional Link Relation Types","authors":["J. Snell"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6904":{"rfcNumber":"RFC6904","href":"https://www.rfc-editor.org/rfc/rfc6904","title":"Encryption of Header Extensions in the Secure Real-time Transport Protocol (SRTP)","authors":["J. Lennox"],"rawDate":"2013-04","status":"Proposed Standard","updates":["RFC3711"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6905":{"rfcNumber":"RFC6905","href":"https://www.rfc-editor.org/rfc/rfc6905","title":"Requirements for Operations, Administration, and Maintenance (OAM) in Transparent Interconnection of Lots of Links (TRILL)","authors":["T. Senevirathne","D. Bond","S. Aldrin","Y. Li","R. Watve"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6906":{"rfcNumber":"RFC6906","href":"https://www.rfc-editor.org/rfc/rfc6906","title":"The 'profile' Link Relation Type","authors":["E. Wilde"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6907":{"rfcNumber":"RFC6907","href":"https://www.rfc-editor.org/rfc/rfc6907","title":"Use Cases and Interpretations of Resource Public Key Infrastructure (RPKI) Objects for Issuers and Relying Parties","authors":["T. Manderson","K. Sriram","R. White"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6908":{"rfcNumber":"RFC6908","href":"https://www.rfc-editor.org/rfc/rfc6908","title":"Deployment Considerations for Dual-Stack Lite","authors":["Y. Lee","R. Maglione","C. Williams","C. Jacquenet","M. Boucadair"],"rawDate":"2013-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6909":{"rfcNumber":"RFC6909","href":"https://www.rfc-editor.org/rfc/rfc6909","title":"IPv4 Traffic Offload Selector Option for Proxy Mobile IPv6","authors":["S. Gundavelli, Ed.","X. Zhou","J. Korhonen","G. Feige","R. Koodli"],"rawDate":"2013-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc691":{"aliasOf":"rfc0691"},"rfc6910":{"rfcNumber":"RFC6910","href":"https://www.rfc-editor.org/rfc/rfc6910","title":"Completion of Calls for the Session Initiation Protocol (SIP)","authors":["D. Worley","M. Huelsemann","R. Jesske","D. Alexeitsev"],"rawDate":"2013-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6911":{"rfcNumber":"RFC6911","href":"https://www.rfc-editor.org/rfc/rfc6911","title":"RADIUS Attributes for IPv6 Access Networks","authors":["W. Dec, Ed.","B. Sarikaya","G. Zorn, Ed.","D. Miles","B. Lourdelet"],"rawDate":"2013-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6912":{"rfcNumber":"RFC6912","href":"https://www.rfc-editor.org/rfc/rfc6912","title":"Principles for Unicode Code Point Inclusion in Labels in the DNS","authors":["A. Sullivan","D. Thaler","J. Klensin","O. Kolkman"],"rawDate":"2013-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6913":{"rfcNumber":"RFC6913","href":"https://www.rfc-editor.org/rfc/rfc6913","title":"Indicating Fax over IP Capability in the Session Initiation Protocol (SIP)","authors":["D. Hanes","G. Salgueiro","K. Fleming"],"rawDate":"2013-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6914":{"rfcNumber":"RFC6914","href":"https://www.rfc-editor.org/rfc/rfc6914","title":"SIMPLE Made Simple: An Overview of the IETF Specifications for Instant Messaging and Presence Using the Session Initiation Protocol (SIP)","authors":["J. Rosenberg"],"rawDate":"2013-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6915":{"rfcNumber":"RFC6915","href":"https://www.rfc-editor.org/rfc/rfc6915","title":"Flow Identity Extension for HTTP-Enabled Location Delivery (HELD)","authors":["R. Bellis"],"rawDate":"2013-04","status":"Proposed Standard","updates":["RFC6155"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6916":{"rfcNumber":"RFC6916","href":"https://www.rfc-editor.org/rfc/rfc6916","title":"Algorithm Agility Procedure for the Resource Public Key Infrastructure (RPKI)","authors":["R. Gagliano","S. Kent","S. Turner"],"rawDate":"2013-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6917":{"rfcNumber":"RFC6917","href":"https://www.rfc-editor.org/rfc/rfc6917","title":"Media Resource Brokering","authors":["C. Boulton","L. Miniero","G. Munson"],"rawDate":"2013-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6918":{"rfcNumber":"RFC6918","href":"https://www.rfc-editor.org/rfc/rfc6918","title":"Formally Deprecating Some ICMPv4 Message Types","authors":["F. Gont","C. Pignataro"],"rawDate":"2013-04","status":"Proposed Standard","updates":["RFC0792","RFC0950"],"obsoletes":["RFC1788"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6919":{"rfcNumber":"RFC6919","href":"https://www.rfc-editor.org/rfc/rfc6919","title":"Further Key Words for Use in RFCs to Indicate Requirement Levels","authors":["R. Barnes","S. Kent","E. Rescorla"],"rawDate":"2013-04-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc692":{"aliasOf":"rfc0692"},"rfc6920":{"rfcNumber":"RFC6920","href":"https://www.rfc-editor.org/rfc/rfc6920","title":"Naming Things with Hashes","authors":["S. Farrell","D. Kutscher","C. Dannewitz","B. Ohlman","A. Keranen","P. Hallam-Baker"],"rawDate":"2013-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6920","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6921":{"rfcNumber":"RFC6921","href":"https://www.rfc-editor.org/rfc/rfc6921","title":"Design Considerations for Faster-Than-Light (FTL) Communication","authors":["R. Hinden"],"rawDate":"2013-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6921","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6922":{"rfcNumber":"RFC6922","href":"https://www.rfc-editor.org/rfc/rfc6922","title":"The application/sql Media Type","authors":["Y. Shafranovich"],"rawDate":"2013-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6923":{"rfcNumber":"RFC6923","href":"https://www.rfc-editor.org/rfc/rfc6923","title":"MPLS Transport Profile (MPLS-TP) Identifiers Following ITU-T Conventions","authors":["R. Winter","E. Gray","H. van Helvoort","M. Betts"],"rawDate":"2013-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6924":{"rfcNumber":"RFC6924","href":"https://www.rfc-editor.org/rfc/rfc6924","title":"Registration of Second-Level URN Namespaces under \"ietf\"","authors":["B. Leiba"],"rawDate":"2013-04","status":"Informational","updates":["RFC2648"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6925":{"rfcNumber":"RFC6925","href":"https://www.rfc-editor.org/rfc/rfc6925","title":"The DHCPv4 Relay Agent Identifier Sub-Option","authors":["B. Joshi","R. Desetti","M. Stapp"],"rawDate":"2013-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6926":{"rfcNumber":"RFC6926","href":"https://www.rfc-editor.org/rfc/rfc6926","title":"DHCPv4 Bulk Leasequery","authors":["K. Kinnear","M. Stapp","R. Desetti","B. Joshi","N. Russell","P. Kurapati","B. Volz"],"rawDate":"2013-04","status":"Proposed Standard","updatedBy":["RFC7724"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6927":{"rfcNumber":"RFC6927","href":"https://www.rfc-editor.org/rfc/rfc6927","title":"Variants in Second-Level Names Registered in Top-Level Domains","authors":["J. Levine","P. Hoffman"],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6928":{"rfcNumber":"RFC6928","href":"https://www.rfc-editor.org/rfc/rfc6928","title":"Increasing TCP's Initial Window","authors":["J. Chu","N. Dukkipati","Y. Cheng","M. Mathis"],"rawDate":"2013-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6929":{"rfcNumber":"RFC6929","href":"https://www.rfc-editor.org/rfc/rfc6929","title":"Remote Authentication Dial In User Service (RADIUS) Protocol Extensions","authors":["A. DeKok","A. Lior"],"rawDate":"2013-04","status":"Proposed Standard","updates":["RFC2865","RFC3575","RFC6158"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6930":{"rfcNumber":"RFC6930","href":"https://www.rfc-editor.org/rfc/rfc6930","title":"RADIUS Attribute for IPv6 Rapid Deployment on IPv4 Infrastructures (6rd)","authors":["D. Guo","S. Jiang, Ed.","R. Despres","R. Maglione"],"rawDate":"2013-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6930","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6931":{"rfcNumber":"RFC6931","href":"https://www.rfc-editor.org/rfc/rfc6931","title":"Additional XML Security Uniform Resource Identifiers (URIs)","authors":["D. Eastlake 3rd"],"rawDate":"2013-04","status":"Proposed Standard","obsoletedBy":["RFC9231"],"obsoletes":["RFC4051"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6931","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6932":{"rfcNumber":"RFC6932","href":"https://www.rfc-editor.org/rfc/rfc6932","title":"Brainpool Elliptic Curves for the Internet Key Exchange (IKE) Group Description Registry","authors":["D. Harkins, Ed."],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6933":{"rfcNumber":"RFC6933","href":"https://www.rfc-editor.org/rfc/rfc6933","title":"Entity MIB (Version 4)","authors":["A. Bierman","D. Romascanu","J. Quittek","M. Chandramouli"],"rawDate":"2013-05","status":"Proposed Standard","obsoletes":["RFC4133"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6933","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6934":{"rfcNumber":"RFC6934","href":"https://www.rfc-editor.org/rfc/rfc6934","title":"Applicability of the Access Node Control Mechanism to Broadband Networks Based on Passive Optical Networks (PONs)","authors":["N. Bitar, Ed.","S. Wadhwa, Ed.","T. Haag","H. Li"],"rawDate":"2013-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6935":{"rfcNumber":"RFC6935","href":"https://www.rfc-editor.org/rfc/rfc6935","title":"IPv6 and UDP Checksums for Tunneled Packets","authors":["M. Eubanks","P. Chimento","M. Westerlund"],"rawDate":"2013-04","status":"Proposed Standard","updates":["RFC2460"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6935","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6936":{"rfcNumber":"RFC6936","href":"https://www.rfc-editor.org/rfc/rfc6936","title":"Applicability Statement for the Use of IPv6 UDP Datagrams with Zero Checksums","authors":["G. Fairhurst","M. Westerlund"],"rawDate":"2013-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6936","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6937":{"rfcNumber":"RFC6937","href":"https://www.rfc-editor.org/rfc/rfc6937","title":"Proportional Rate Reduction for TCP","authors":["M. Mathis","N. Dukkipati","Y. Cheng"],"rawDate":"2013-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6938":{"rfcNumber":"RFC6938","href":"https://www.rfc-editor.org/rfc/rfc6938","title":"Deprecation of BGP Path Attributes: DPA, ADVERTISER, and RCID_PATH / CLUSTER_ID","authors":["J. Scudder"],"rawDate":"2013-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6939":{"rfcNumber":"RFC6939","href":"https://www.rfc-editor.org/rfc/rfc6939","title":"Client Link-Layer Address Option in DHCPv6","authors":["G. Halwasia","S. Bhandari","W. Dec"],"rawDate":"2013-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc694":{"aliasOf":"rfc0694"},"rfc6940":{"rfcNumber":"RFC6940","href":"https://www.rfc-editor.org/rfc/rfc6940","title":"REsource LOcation And Discovery (RELOAD) Base Protocol","authors":["C. Jennings","B. Lowekamp, Ed.","E. Rescorla","S. Baset","H. Schulzrinne"],"rawDate":"2014-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6940","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6941":{"rfcNumber":"RFC6941","href":"https://www.rfc-editor.org/rfc/rfc6941","title":"MPLS Transport Profile (MPLS-TP) Security Framework","authors":["L. Fang, Ed.","B. Niven-Jenkins, Ed.","S. Mansfield, Ed.","R. Graveman, Ed."],"rawDate":"2013-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6942":{"rfcNumber":"RFC6942","href":"https://www.rfc-editor.org/rfc/rfc6942","title":"Diameter Support for the EAP Re-authentication Protocol (ERP)","authors":["J. Bournelle","L. Morand","S. Decugis","Q. Wu","G. Zorn"],"rawDate":"2013-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6943":{"rfcNumber":"RFC6943","href":"https://www.rfc-editor.org/rfc/rfc6943","title":"Issues in Identifier Comparison for Security Purposes","authors":["D. Thaler, Ed."],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6944":{"rfcNumber":"RFC6944","href":"https://www.rfc-editor.org/rfc/rfc6944","title":"Applicability Statement: DNS Security (DNSSEC) DNSKEY Algorithm Implementation Status","authors":["S. Rose"],"rawDate":"2013-04","status":"Proposed Standard","obsoletedBy":["RFC8624"],"updates":["RFC2536","RFC2539","RFC3110","RFC4034","RFC4398","RFC5155","RFC5702","RFC5933"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6944","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6945":{"rfcNumber":"RFC6945","href":"https://www.rfc-editor.org/rfc/rfc6945","title":"Definitions of Managed Objects for the Resource Public Key Infrastructure (RPKI) to Router Protocol","authors":["R. Bush","B. Wijnen","K. Patel","M. Baer"],"rawDate":"2013-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6946":{"rfcNumber":"RFC6946","href":"https://www.rfc-editor.org/rfc/rfc6946","title":"Processing of IPv6 \"Atomic\" Fragments","authors":["F. Gont"],"rawDate":"2013-05","status":"Proposed Standard","updates":["RFC2460","RFC5722"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6946","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6947":{"rfcNumber":"RFC6947","href":"https://www.rfc-editor.org/rfc/rfc6947","title":"The Session Description Protocol (SDP) Alternate Connectivity (ALTC) Attribute","authors":["M. Boucadair","H. Kaplan","R. Gilman","S. Veikkolainen"],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6948":{"rfcNumber":"RFC6948","href":"https://www.rfc-editor.org/rfc/rfc6948","title":"Some Measurements on World IPv6 Day from an End-User Perspective","authors":["A. Keranen","J. Arkko"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6949":{"rfcNumber":"RFC6949","href":"https://www.rfc-editor.org/rfc/rfc6949","title":"RFC Series Format Requirements and Future Development","authors":["H. Flanagan","N. Brownlee"],"rawDate":"2013-05","status":"Informational","updates":["RFC2223"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc695":{"aliasOf":"rfc0695"},"rfc6950":{"rfcNumber":"RFC6950","href":"https://www.rfc-editor.org/rfc/rfc6950","title":"Architectural Considerations on Application Features in the DNS","authors":["J. Peterson","O. Kolkman","H. Tschofenig","B. Aboba"],"rawDate":"2013-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6951":{"rfcNumber":"RFC6951","href":"https://www.rfc-editor.org/rfc/rfc6951","title":"UDP Encapsulation of Stream Control Transmission Protocol (SCTP) Packets for End-Host to End-Host Communication","authors":["M. Tuexen","R. Stewart"],"rawDate":"2013-05","status":"Proposed Standard","updatedBy":["RFC8899"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6952":{"rfcNumber":"RFC6952","href":"https://www.rfc-editor.org/rfc/rfc6952","title":"Analysis of BGP, LDP, PCEP, and MSDP Issues According to the Keying and Authentication for Routing Protocols (KARP) Design Guide","authors":["M. Jethanandani","K. Patel","L. Zheng"],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6953":{"rfcNumber":"RFC6953","href":"https://www.rfc-editor.org/rfc/rfc6953","title":"Protocol to Access White-Space (PAWS) Databases: Use Cases and Requirements","authors":["A. Mancuso, Ed.","S. Probasco","B. Patil"],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6954":{"rfcNumber":"RFC6954","href":"https://www.rfc-editor.org/rfc/rfc6954","title":"Using the Elliptic Curve Cryptography (ECC) Brainpool Curves for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["J. Merkle","M. Lochter"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6955":{"rfcNumber":"RFC6955","href":"https://www.rfc-editor.org/rfc/rfc6955","title":"Diffie-Hellman Proof-of-Possession Algorithms","authors":["J. Schaad","H. Prafullchandra"],"rawDate":"2013-05","status":"Proposed Standard","obsoletes":["RFC2875"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6956":{"rfcNumber":"RFC6956","href":"https://www.rfc-editor.org/rfc/rfc6956","title":"Forwarding and Control Element Separation (ForCES) Logical Function Block (LFB) Library","authors":["W. Wang","E. Haleplidis","K. Ogawa","C. Li","J. Halpern"],"rawDate":"2013-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6956","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6957":{"rfcNumber":"RFC6957","href":"https://www.rfc-editor.org/rfc/rfc6957","title":"Duplicate Address Detection Proxy","authors":["F. Costa","J-M. Combes, Ed.","X. Pougnard","H. Li"],"rawDate":"2013-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6958":{"rfcNumber":"RFC6958","href":"https://www.rfc-editor.org/rfc/rfc6958","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Loss Metric Reporting","authors":["A. Clark","S. Zhang","J. Zhao","Q. Wu, Ed."],"rawDate":"2013-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6958","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6959":{"rfcNumber":"RFC6959","href":"https://www.rfc-editor.org/rfc/rfc6959","title":"Source Address Validation Improvement (SAVI) Threat Scope","authors":["D. McPherson","F. Baker","J. Halpern"],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc696":{"aliasOf":"rfc0696"},"rfc6960":{"rfcNumber":"RFC6960","href":"https://www.rfc-editor.org/rfc/rfc6960","title":"X.509 Internet Public Key Infrastructure Online Certificate Status Protocol - OCSP","authors":["S. Santesson","M. Myers","R. Ankney","A. Malpani","S. Galperin","C. Adams"],"rawDate":"2013-06","status":"Proposed Standard","updatedBy":["RFC8954"],"updates":["RFC5912"],"obsoletes":["RFC2560","RFC6277"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6960","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6961":{"rfcNumber":"RFC6961","href":"https://www.rfc-editor.org/rfc/rfc6961","title":"The Transport Layer Security (TLS) Multiple Certificate Status Request Extension","authors":["Y. Pettersen"],"rawDate":"2013-06","status":"Proposed Standard","obsoletedBy":["RFC8446"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6961","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6962":{"rfcNumber":"RFC6962","href":"https://www.rfc-editor.org/rfc/rfc6962","title":"Certificate Transparency","authors":["B. Laurie","A. Langley","E. Kasper"],"rawDate":"2013-06","status":"Experimental","obsoletedBy":["RFC9162"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6962","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6963":{"rfcNumber":"RFC6963","href":"https://www.rfc-editor.org/rfc/rfc6963","title":"A Uniform Resource Name (URN) Namespace for Examples","authors":["P. Saint-Andre"],"rawDate":"2013-05","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6964":{"rfcNumber":"RFC6964","href":"https://www.rfc-editor.org/rfc/rfc6964","title":"Operational Guidance for IPv6 Deployment in IPv4 Sites Using the Intra-Site Automatic Tunnel Addressing Protocol (ISATAP)","authors":["F. Templin"],"rawDate":"2013-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6965":{"rfcNumber":"RFC6965","href":"https://www.rfc-editor.org/rfc/rfc6965","title":"MPLS Transport Profile (MPLS-TP) Applicability: Use Cases and Design","authors":["L. Fang, Ed.","N. Bitar","R. Zhang","M. Daikoku","P. Pan"],"rawDate":"2013-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6967":{"rfcNumber":"RFC6967","href":"https://www.rfc-editor.org/rfc/rfc6967","title":"Analysis of Potential Solutions for Revealing a Host Identifier (HOST_ID) in Shared Address Deployments","authors":["M. Boucadair","J. Touch","P. Levis","R. Penno"],"rawDate":"2013-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6968":{"rfcNumber":"RFC6968","href":"https://www.rfc-editor.org/rfc/rfc6968","title":"FCAST: Object Delivery for the Asynchronous Layered Coding (ALC) and NACK-Oriented Reliable Multicast (NORM) Protocols","authors":["V. Roca","B. Adamson"],"rawDate":"2013-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6969":{"rfcNumber":"RFC6969","href":"https://www.rfc-editor.org/rfc/rfc6969","title":"OSPFv3 Instance ID Registry Update","authors":["A. Retana","D. Cheng"],"rawDate":"2013-07","status":"Proposed Standard","updates":["RFC5838"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6969","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc697":{"aliasOf":"rfc0697"},"rfc6970":{"rfcNumber":"RFC6970","href":"https://www.rfc-editor.org/rfc/rfc6970","title":"Universal Plug and Play (UPnP) Internet Gateway Device - Port Control Protocol Interworking Function (IGD-PCP IWF)","authors":["M. Boucadair","R. Penno","D. Wing"],"rawDate":"2013-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6971":{"rfcNumber":"RFC6971","href":"https://www.rfc-editor.org/rfc/rfc6971","title":"Depth-First Forwarding (DFF) in Unreliable Networks","authors":["U. Herberg, Ed.","A. Cardenas","T. Iwao","M. Dow","S. Cespedes"],"rawDate":"2013-06","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6971","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6972":{"rfcNumber":"RFC6972","href":"https://www.rfc-editor.org/rfc/rfc6972","title":"Problem Statement and Requirements of the Peer-to-Peer Streaming Protocol (PPSP)","authors":["Y. Zhang","N. Zong"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6973":{"rfcNumber":"RFC6973","href":"https://www.rfc-editor.org/rfc/rfc6973","title":"Privacy Considerations for Internet Protocols","authors":["A. Cooper","H. Tschofenig","B. Aboba","J. Peterson","J. Morris","M. Hansen","R. Smith"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6974":{"rfcNumber":"RFC6974","href":"https://www.rfc-editor.org/rfc/rfc6974","title":"Applicability of MPLS Transport Profile for Ring Topologies","authors":["Y. Weingarten","S. Bryant","D. Ceccarelli","D. Caviglia","F. Fondelli","M. Corsi","B. Wu","X. Dai"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6975":{"rfcNumber":"RFC6975","href":"https://www.rfc-editor.org/rfc/rfc6975","title":"Signaling Cryptographic Algorithm Understanding in DNS Security Extensions (DNSSEC)","authors":["S. Crocker","S. Rose"],"rawDate":"2013-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6976":{"rfcNumber":"RFC6976","href":"https://www.rfc-editor.org/rfc/rfc6976","title":"Framework for Loop-Free Convergence Using the Ordered Forwarding Information Base (oFIB) Approach","authors":["M. Shand","S. Bryant","S. Previdi","C. Filsfils","P. Francois","O. Bonaventure"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6977":{"rfcNumber":"RFC6977","href":"https://www.rfc-editor.org/rfc/rfc6977","title":"Triggering DHCPv6 Reconfiguration from Relay Agents","authors":["M. Boucadair","X. Pougnard"],"rawDate":"2013-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6978":{"rfcNumber":"RFC6978","href":"https://www.rfc-editor.org/rfc/rfc6978","title":"A TCP Authentication Option Extension for NAT Traversal","authors":["J. Touch"],"rawDate":"2013-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6979":{"rfcNumber":"RFC6979","href":"https://www.rfc-editor.org/rfc/rfc6979","title":"Deterministic Usage of the Digital Signature Algorithm (DSA) and Elliptic Curve Digital Signature Algorithm (ECDSA)","authors":["T. Pornin"],"rawDate":"2013-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6979","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc698":{"aliasOf":"rfc0698"},"rfc6980":{"rfcNumber":"RFC6980","href":"https://www.rfc-editor.org/rfc/rfc6980","title":"Security Implications of IPv6 Fragmentation with IPv6 Neighbor Discovery","authors":["F. Gont"],"rawDate":"2013-08","status":"Proposed Standard","updates":["RFC3971","RFC4861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6981":{"rfcNumber":"RFC6981","href":"https://www.rfc-editor.org/rfc/rfc6981","title":"A Framework for IP and MPLS Fast Reroute Using Not-Via Addresses","authors":["S. Bryant","S. Previdi","M. Shand"],"rawDate":"2013-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6982":{"rfcNumber":"RFC6982","href":"https://www.rfc-editor.org/rfc/rfc6982","title":"Improving Awareness of Running Code: The Implementation Status Section","authors":["Y. Sheffer","A. Farrel"],"rawDate":"2013-07","status":"Experimental","obsoletedBy":["RFC7942"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6983":{"rfcNumber":"RFC6983","href":"https://www.rfc-editor.org/rfc/rfc6983","title":"Models for HTTP-Adaptive-Streaming-Aware Content Distribution Network Interconnection (CDNI)","authors":["R. van Brandenburg","O. van Deventer","F. Le Faucheur","K. Leung"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6984":{"rfcNumber":"RFC6984","href":"https://www.rfc-editor.org/rfc/rfc6984","title":"Interoperability Report for Forwarding and Control Element Separation (ForCES)","authors":["W. Wang","K. Ogawa","E. Haleplidis","M. Gao","J. Hadi Salim"],"rawDate":"2013-08","status":"Informational","updates":["RFC6053"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6985":{"rfcNumber":"RFC6985","href":"https://www.rfc-editor.org/rfc/rfc6985","title":"IMIX Genome: Specification of Variable Packet Sizes for Additional Testing","authors":["A. Morton"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6986":{"rfcNumber":"RFC6986","href":"https://www.rfc-editor.org/rfc/rfc6986","title":"GOST R 34.11-2012: Hash Function","authors":["V. Dolmatov, Ed.","A. Degtyarev"],"rawDate":"2013-08","status":"Informational","updates":["RFC5831"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6987":{"rfcNumber":"RFC6987","href":"https://www.rfc-editor.org/rfc/rfc6987","title":"OSPF Stub Router Advertisement","authors":["A. Retana","L. Nguyen","A. Zinin","R. White","D. McPherson"],"rawDate":"2013-09","status":"Informational","updatedBy":["RFC8770"],"obsoletes":["RFC3137"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6987","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6988":{"rfcNumber":"RFC6988","href":"https://www.rfc-editor.org/rfc/rfc6988","title":"Requirements for Energy Management","authors":["J. Quittek, Ed.","M. Chandramouli","R. Winter","T. Dietz","B. Claise"],"rawDate":"2013-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6989":{"rfcNumber":"RFC6989","href":"https://www.rfc-editor.org/rfc/rfc6989","title":"Additional Diffie-Hellman Tests for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["Y. Sheffer","S. Fluhrer"],"rawDate":"2013-07","status":"Proposed Standard","updates":["RFC5996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc699":{"aliasOf":"rfc0699"},"rfc6990":{"rfcNumber":"RFC6990","href":"https://www.rfc-editor.org/rfc/rfc6990","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for MPEG-2 Transport Stream (TS) Program Specific Information (PSI) Independent Decodability Statistics Metrics Reporting","authors":["R. Huang","Q. Wu","H. Asaeda","G. Zorn"],"rawDate":"2013-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6991":{"rfcNumber":"RFC6991","href":"https://www.rfc-editor.org/rfc/rfc6991","title":"Common YANG Data Types","authors":["J. Schoenwaelder, Ed."],"rawDate":"2013-07","status":"Proposed Standard","obsoletes":["RFC6021"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=6991","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6992":{"rfcNumber":"RFC6992","href":"https://www.rfc-editor.org/rfc/rfc6992","title":"Routing for IPv4-Embedded IPv6 Packets","authors":["D. Cheng","M. Boucadair","A. Retana"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6993":{"rfcNumber":"RFC6993","href":"https://www.rfc-editor.org/rfc/rfc6993","title":"Instant Messaging and Presence Purpose for the Call-Info Header Field in the Session Initiation Protocol (SIP)","authors":["P. Saint-Andre"],"rawDate":"2013-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6994":{"rfcNumber":"RFC6994","href":"https://www.rfc-editor.org/rfc/rfc6994","title":"Shared Use of Experimental TCP Options","authors":["J. Touch"],"rawDate":"2013-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6996":{"rfcNumber":"RFC6996","href":"https://www.rfc-editor.org/rfc/rfc6996","title":"Autonomous System (AS) Reservation for Private Use","authors":["J. Mitchell"],"rawDate":"2013-07","status":"Best Current Practice","updates":["RFC1930"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6997":{"rfcNumber":"RFC6997","href":"https://www.rfc-editor.org/rfc/rfc6997","title":"Reactive Discovery of Point-to-Point Routes in Low-Power and Lossy Networks","authors":["M. Goyal, Ed.","E. Baccelli","M. Philipp","A. Brandt","J. Martocci"],"rawDate":"2013-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc6998":{"rfcNumber":"RFC6998","href":"https://www.rfc-editor.org/rfc/rfc6998","title":"A Mechanism to Measure the Routing Metrics along a Point-to-Point Route in a Low-Power and Lossy Network","authors":["M. Goyal, Ed.","E. Baccelli","A. Brandt","J. Martocci"],"rawDate":"2013-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7":{"aliasOf":"rfc0007"},"rfc70":{"aliasOf":"rfc0070"},"rfc700":{"aliasOf":"rfc0700"},"rfc7001":{"rfcNumber":"RFC7001","href":"https://www.rfc-editor.org/rfc/rfc7001","title":"Message Header Field for Indicating Message Authentication Status","authors":["M. Kucherawy"],"rawDate":"2013-09","status":"Proposed Standard","updatedBy":["RFC7410"],"obsoletedBy":["RFC7601"],"obsoletes":["RFC5451","RFC6577"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7001","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7002":{"rfcNumber":"RFC7002","href":"https://www.rfc-editor.org/rfc/rfc7002","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Discard Count Metric Reporting","authors":["A. Clark","G. Zorn","Q. Wu"],"rawDate":"2013-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7003":{"rfcNumber":"RFC7003","href":"https://www.rfc-editor.org/rfc/rfc7003","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Discard Metric Reporting","authors":["A. Clark","R. Huang","Q. Wu, Ed."],"rawDate":"2013-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7003","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7004":{"rfcNumber":"RFC7004","href":"https://www.rfc-editor.org/rfc/rfc7004","title":"RTP Control Protocol (RTCP) Extended Report (XR) Blocks for Summary Statistics Metrics Reporting","authors":["G. Zorn","R. Schott","Q. Wu, Ed.","R. Huang"],"rawDate":"2013-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7005":{"rfcNumber":"RFC7005","href":"https://www.rfc-editor.org/rfc/rfc7005","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for De-Jitter Buffer Metric Reporting","authors":["A. Clark","V. Singh","Q. Wu"],"rawDate":"2013-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7006":{"rfcNumber":"RFC7006","href":"https://www.rfc-editor.org/rfc/rfc7006","title":"Miscellaneous Capabilities Negotiation in the Session Description Protocol (SDP)","authors":["M. Garcia-Martin","S. Veikkolainen","R. Gilman"],"rawDate":"2013-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7006","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7007":{"rfcNumber":"RFC7007","href":"https://www.rfc-editor.org/rfc/rfc7007","title":"Update to Remove DVI4 from the Recommended Codecs for the RTP Profile for Audio and Video Conferences with Minimal Control (RTP/AVP)","authors":["T. Terriberry"],"rawDate":"2013-08","status":"Proposed Standard","updates":["RFC3551"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7008":{"rfcNumber":"RFC7008","href":"https://www.rfc-editor.org/rfc/rfc7008","title":"A Description of the KCipher-2 Encryption Algorithm","authors":["S. Kiyomoto","W. Shin"],"rawDate":"2013-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7009":{"rfcNumber":"RFC7009","href":"https://www.rfc-editor.org/rfc/rfc7009","title":"OAuth 2.0 Token Revocation","authors":["T. Lodderstedt, Ed.","S. Dronia","M. Scurtescu"],"rawDate":"2013-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7009","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc701":{"aliasOf":"rfc0701"},"rfc7010":{"rfcNumber":"RFC7010","href":"https://www.rfc-editor.org/rfc/rfc7010","title":"IPv6 Site Renumbering Gap Analysis","authors":["B. Liu","S. Jiang","B. Carpenter","S. Venaas","W. George"],"rawDate":"2013-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7011":{"rfcNumber":"RFC7011","href":"https://www.rfc-editor.org/rfc/rfc7011","title":"Specification of the IP Flow Information Export (IPFIX) Protocol for the Exchange of Flow Information","authors":["B. Claise, Ed.","B. Trammell, Ed.","P. Aitken"],"rawDate":"2013-09","status":"Internet Standard","obsoletes":["RFC5101"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7011","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7012":{"rfcNumber":"RFC7012","href":"https://www.rfc-editor.org/rfc/rfc7012","title":"Information Model for IP Flow Information Export (IPFIX)","authors":["B. Claise, Ed.","B. Trammell, Ed."],"rawDate":"2013-09","status":"Proposed Standard","obsoletes":["RFC5102"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7012","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7013":{"rfcNumber":"RFC7013","href":"https://www.rfc-editor.org/rfc/rfc7013","title":"Guidelines for Authors and Reviewers of IP Flow Information Export (IPFIX) Information Elements","authors":["B. Trammell","B. Claise"],"rawDate":"2013-09","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7014":{"rfcNumber":"RFC7014","href":"https://www.rfc-editor.org/rfc/rfc7014","title":"Flow Selection Techniques","authors":["S. D'Antonio","T. Zseby","C. Henke","L. Peluso"],"rawDate":"2013-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7015":{"rfcNumber":"RFC7015","href":"https://www.rfc-editor.org/rfc/rfc7015","title":"Flow Aggregation for the IP Flow Information Export (IPFIX) Protocol","authors":["B. Trammell","A. Wagner","B. Claise"],"rawDate":"2013-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7016":{"rfcNumber":"RFC7016","href":"https://www.rfc-editor.org/rfc/rfc7016","title":"Adobe's Secure Real-Time Media Flow Protocol","authors":["M. Thornburgh"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7017":{"rfcNumber":"RFC7017","href":"https://www.rfc-editor.org/rfc/rfc7017","title":"IMAP Access to IETF Email List Archives","authors":["R. Sparks"],"rawDate":"2013-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7018":{"rfcNumber":"RFC7018","href":"https://www.rfc-editor.org/rfc/rfc7018","title":"Auto-Discovery VPN Problem Statement and Requirements","authors":["V. Manral","S. Hanna"],"rawDate":"2013-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7019":{"rfcNumber":"RFC7019","href":"https://www.rfc-editor.org/rfc/rfc7019","title":"Application-Layer Multicast Extensions to REsource LOcation And Discovery (RELOAD)","authors":["J. Buford","M. Kolberg, Ed."],"rawDate":"2013-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc702":{"aliasOf":"rfc0702"},"rfc7020":{"rfcNumber":"RFC7020","href":"https://www.rfc-editor.org/rfc/rfc7020","title":"The Internet Numbers Registry System","authors":["R. Housley","J. Curran","G. Huston","D. Conrad"],"rawDate":"2013-08","status":"Informational","obsoletes":["RFC2050"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7020","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7021":{"rfcNumber":"RFC7021","href":"https://www.rfc-editor.org/rfc/rfc7021","title":"Assessing the Impact of Carrier-Grade NAT on Network Applications","authors":["C. Donley, Ed.","L. Howard","V. Kuarsingh","J. Berg","J. Doshi"],"rawDate":"2013-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7022":{"rfcNumber":"RFC7022","href":"https://www.rfc-editor.org/rfc/rfc7022","title":"Guidelines for Choosing RTP Control Protocol (RTCP) Canonical Names (CNAMEs)","authors":["A. Begen","C. Perkins","D. Wing","E. Rescorla"],"rawDate":"2013-09","status":"Proposed Standard","updates":["RFC3550"],"obsoletes":["RFC6222"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7023":{"rfcNumber":"RFC7023","href":"https://www.rfc-editor.org/rfc/rfc7023","title":"MPLS and Ethernet Operations, Administration, and Maintenance (OAM) Interworking","authors":["D. Mohan, Ed.","N. Bitar, Ed.","A. Sajassi, Ed.","S. DeLord","P. Niger","R. Qiu"],"rawDate":"2013-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7024":{"rfcNumber":"RFC7024","href":"https://www.rfc-editor.org/rfc/rfc7024","title":"Virtual Hub-and-Spoke in BGP/MPLS VPNs","authors":["H. Jeng","J. Uttaro","L. Jalil","B. Decraene","Y. Rekhter","R. Aggarwal"],"rawDate":"2013-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7025":{"rfcNumber":"RFC7025","href":"https://www.rfc-editor.org/rfc/rfc7025","title":"Requirements for GMPLS Applications of PCE","authors":["T. Otani","K. Ogaki","D. Caviglia","F. Zhang","C. Margaria"],"rawDate":"2013-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7026":{"rfcNumber":"RFC7026","href":"https://www.rfc-editor.org/rfc/rfc7026","title":"Retiring TLVs from the Associated Channel Header of the MPLS Generic Associated Channel","authors":["A. Farrel","S. Bryant"],"rawDate":"2013-09","status":"Proposed Standard","updates":["RFC5586"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7027":{"rfcNumber":"RFC7027","href":"https://www.rfc-editor.org/rfc/rfc7027","title":"Elliptic Curve Cryptography (ECC) Brainpool Curves for Transport Layer Security (TLS)","authors":["J. Merkle","M. Lochter"],"rawDate":"2013-10","status":"Informational","updates":["RFC4492"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7027","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7028":{"rfcNumber":"RFC7028","href":"https://www.rfc-editor.org/rfc/rfc7028","title":"Multicast Mobility Routing Optimizations for Proxy Mobile IPv6","authors":["JC. Zuniga","LM. Contreras","CJ. Bernardos","S. Jeon","Y. Kim"],"rawDate":"2013-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7029":{"rfcNumber":"RFC7029","href":"https://www.rfc-editor.org/rfc/rfc7029","title":"Extensible Authentication Protocol (EAP) Mutual Cryptographic Binding","authors":["S. Hartman","M. Wasserman","D. Zhang"],"rawDate":"2013-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc703":{"aliasOf":"rfc0703"},"rfc7030":{"rfcNumber":"RFC7030","href":"https://www.rfc-editor.org/rfc/rfc7030","title":"Enrollment over Secure Transport","authors":["M. Pritikin, Ed.","P. Yee, Ed.","D. Harkins, Ed."],"rawDate":"2013-10","status":"Proposed Standard","updatedBy":["RFC8951","RFC8996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7030","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7031":{"rfcNumber":"RFC7031","href":"https://www.rfc-editor.org/rfc/rfc7031","title":"DHCPv6 Failover Requirements","authors":["T. Mrugalski","K. Kinnear"],"rawDate":"2013-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7032":{"rfcNumber":"RFC7032","href":"https://www.rfc-editor.org/rfc/rfc7032","title":"LDP Downstream-on-Demand in Seamless MPLS","authors":["T. Beckhaus, Ed.","B. Decraene","K. Tiruveedhula","M. Konstantynowicz, Ed.","L. Martini"],"rawDate":"2013-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7033":{"rfcNumber":"RFC7033","href":"https://www.rfc-editor.org/rfc/rfc7033","title":"WebFinger","authors":["P. Jones","G. Salgueiro","M. Jones","J. Smarr"],"rawDate":"2013-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7034":{"rfcNumber":"RFC7034","href":"https://www.rfc-editor.org/rfc/rfc7034","title":"HTTP Header Field X-Frame-Options","authors":["D. Ross","T. Gondrom"],"rawDate":"2013-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7035":{"rfcNumber":"RFC7035","href":"https://www.rfc-editor.org/rfc/rfc7035","title":"Relative Location Representation","authors":["M. Thomson","B. Rosen","D. Stanley","G. Bajko","A. Thomson"],"rawDate":"2013-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7036":{"rfcNumber":"RFC7036","href":"https://www.rfc-editor.org/rfc/rfc7036","title":"Object Identifier Registry for the Long-Term Archive and Notary Services (LTANS) Working Group","authors":["R. Housley"],"rawDate":"2013-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7037":{"rfcNumber":"RFC7037","href":"https://www.rfc-editor.org/rfc/rfc7037","title":"RADIUS Option for the DHCPv6 Relay Agent","authors":["L. Yeh","M. Boucadair"],"rawDate":"2013-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7038":{"rfcNumber":"RFC7038","href":"https://www.rfc-editor.org/rfc/rfc7038","title":"Use of OSPF-MDR in Single-Hop Broadcast Networks","authors":["R. Ogier"],"rawDate":"2013-10","status":"Experimental","updates":["RFC5614"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7039":{"rfcNumber":"RFC7039","href":"https://www.rfc-editor.org/rfc/rfc7039","title":"Source Address Validation Improvement (SAVI) Framework","authors":["J. Wu","J. Bi","M. Bagnulo","F. Baker","C. Vogt, Ed."],"rawDate":"2013-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc704":{"aliasOf":"rfc0704"},"rfc7040":{"rfcNumber":"RFC7040","href":"https://www.rfc-editor.org/rfc/rfc7040","title":"Public IPv4-over-IPv6 Access Network","authors":["Y. Cui","J. Wu","P. Wu","O. Vautrin","Y. Lee"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7041":{"rfcNumber":"RFC7041","href":"https://www.rfc-editor.org/rfc/rfc7041","title":"Extensions to the Virtual Private LAN Service (VPLS) Provider Edge (PE) Model for Provider Backbone Bridging","authors":["F. Balus, Ed.","A. Sajassi, Ed.","N. Bitar, Ed."],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7042":{"rfcNumber":"RFC7042","href":"https://www.rfc-editor.org/rfc/rfc7042","title":"IANA Considerations and IETF Protocol and Documentation Usage for IEEE 802 Parameters","authors":["D. Eastlake 3rd","J. Abley"],"rawDate":"2013-10","status":"Best Current Practice","updates":["RFC2153"],"obsoletes":["RFC5342"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7043":{"rfcNumber":"RFC7043","href":"https://www.rfc-editor.org/rfc/rfc7043","title":"Resource Records for EUI-48 and EUI-64 Addresses in the DNS","authors":["J. Abley"],"rawDate":"2013-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7044":{"rfcNumber":"RFC7044","href":"https://www.rfc-editor.org/rfc/rfc7044","title":"An Extension to the Session Initiation Protocol (SIP) for Request History Information","authors":["M. Barnes","F. Audet","S. Schubert","J. van Elburg","C. Holmberg"],"rawDate":"2014-02","status":"Proposed Standard","obsoletes":["RFC4244"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7044","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7045":{"rfcNumber":"RFC7045","href":"https://www.rfc-editor.org/rfc/rfc7045","title":"Transmission and Processing of IPv6 Extension Headers","authors":["B. Carpenter","S. Jiang"],"rawDate":"2013-12","status":"Proposed Standard","updates":["RFC2460","RFC2780"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7046":{"rfcNumber":"RFC7046","href":"https://www.rfc-editor.org/rfc/rfc7046","title":"A Common API for Transparent Hybrid Multicast","authors":["M. Waehlisch","T. Schmidt","S. Venaas"],"rawDate":"2013-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7047":{"rfcNumber":"RFC7047","href":"https://www.rfc-editor.org/rfc/rfc7047","title":"The Open vSwitch Database Management Protocol","authors":["B. Pfaff","B. Davie, Ed."],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7048":{"rfcNumber":"RFC7048","href":"https://www.rfc-editor.org/rfc/rfc7048","title":"Neighbor Unreachability Detection Is Too Impatient","authors":["E. Nordmark","I. Gashinsky"],"rawDate":"2014-01","status":"Proposed Standard","updates":["RFC4861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7049":{"rfcNumber":"RFC7049","href":"https://www.rfc-editor.org/rfc/rfc7049","title":"Concise Binary Object Representation (CBOR)","authors":["C. Bormann","P. Hoffman"],"rawDate":"2013-10","status":"Proposed Standard","obsoletedBy":["RFC8949"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7049","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc705":{"aliasOf":"rfc0705"},"rfc7050":{"rfcNumber":"RFC7050","href":"https://www.rfc-editor.org/rfc/rfc7050","title":"Discovery of the IPv6 Prefix Used for IPv6 Address Synthesis","authors":["T. Savolainen","J. Korhonen","D. Wing"],"rawDate":"2013-11","status":"Proposed Standard","updatedBy":["RFC8880"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7050","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7051":{"rfcNumber":"RFC7051","href":"https://www.rfc-editor.org/rfc/rfc7051","title":"Analysis of Solution Proposals for Hosts to Learn NAT64 Prefix","authors":["J. Korhonen, Ed.","T. Savolainen, Ed."],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7052":{"rfcNumber":"RFC7052","href":"https://www.rfc-editor.org/rfc/rfc7052","title":"Locator/ID Separation Protocol (LISP) MIB","authors":["G. Schudel","A. Jain","V. Moreno"],"rawDate":"2013-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7052","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7053":{"rfcNumber":"RFC7053","href":"https://www.rfc-editor.org/rfc/rfc7053","title":"SACK-IMMEDIATELY Extension for the Stream Control Transmission Protocol","authors":["M. Tuexen","I. Ruengeler","R. Stewart"],"rawDate":"2013-11","status":"Proposed Standard","obsoletedBy":["RFC9260"],"updates":["RFC4960"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7054":{"rfcNumber":"RFC7054","href":"https://www.rfc-editor.org/rfc/rfc7054","title":"Addressing Requirements and Design Considerations for Per-Interface Maintenance Entity Group Intermediate Points (MIPs)","authors":["A. Farrel","H. Endo","R. Winter","Y. Koike","M. Paul"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7055":{"rfcNumber":"RFC7055","href":"https://www.rfc-editor.org/rfc/rfc7055","title":"A GSS-API Mechanism for the Extensible Authentication Protocol","authors":["S. Hartman, Ed.","J. Howlett"],"rawDate":"2013-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7056":{"rfcNumber":"RFC7056","href":"https://www.rfc-editor.org/rfc/rfc7056","title":"Name Attributes for the GSS-API Extensible Authentication Protocol (EAP) Mechanism","authors":["S. Hartman","J. Howlett"],"rawDate":"2013-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7057":{"rfcNumber":"RFC7057","href":"https://www.rfc-editor.org/rfc/rfc7057","title":"Update to the Extensible Authentication Protocol (EAP) Applicability Statement for Application Bridging for Federated Access Beyond Web (ABFAB)","authors":["S. Winter","J. Salowey"],"rawDate":"2013-12","status":"Proposed Standard","updates":["RFC3748"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7058":{"rfcNumber":"RFC7058","href":"https://www.rfc-editor.org/rfc/rfc7058","title":"Media Control Channel Framework (CFW) Call Flow Examples","authors":["A. Amirante","T. Castaldi","L. Miniero","S P. Romano"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7059":{"rfcNumber":"RFC7059","href":"https://www.rfc-editor.org/rfc/rfc7059","title":"A Comparison of IPv6-over-IPv4 Tunnel Mechanisms","authors":["S. Steffann","I. van Beijnum","R. van Rein"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc706":{"aliasOf":"rfc0706"},"rfc7060":{"rfcNumber":"RFC7060","href":"https://www.rfc-editor.org/rfc/rfc7060","title":"Using LDP Multipoint Extensions on Targeted LDP Sessions","authors":["M. Napierala","E. Rosen","IJ. Wijnands"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7061":{"rfcNumber":"RFC7061","href":"https://www.rfc-editor.org/rfc/rfc7061","title":"eXtensible Access Control Markup Language (XACML) XML Media Type","authors":["R. Sinnema","E. Wilde"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7062":{"rfcNumber":"RFC7062","href":"https://www.rfc-editor.org/rfc/rfc7062","title":"Framework for GMPLS and PCE Control of G.709 Optical Transport Networks","authors":["F. Zhang, Ed.","D. Li","H. Li","S. Belotti","D. Ceccarelli"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7063":{"rfcNumber":"RFC7063","href":"https://www.rfc-editor.org/rfc/rfc7063","title":"Survey Report on Protocol Independent Multicast - Sparse Mode (PIM-SM) Implementations and Deployments","authors":["L. Zheng","J. Zhang","R. Parekh"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7064":{"rfcNumber":"RFC7064","href":"https://www.rfc-editor.org/rfc/rfc7064","title":"URI Scheme for the Session Traversal Utilities for NAT (STUN) Protocol","authors":["S. Nandakumar","G. Salgueiro","P. Jones","M. Petit-Huguenin"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7065":{"rfcNumber":"RFC7065","href":"https://www.rfc-editor.org/rfc/rfc7065","title":"Traversal Using Relays around NAT (TURN) Uniform Resource Identifiers","authors":["M. Petit-Huguenin","S. Nandakumar","G. Salgueiro","P. Jones"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7066":{"rfcNumber":"RFC7066","href":"https://www.rfc-editor.org/rfc/rfc7066","title":"IPv6 for Third Generation Partnership Project (3GPP) Cellular Hosts","authors":["J. Korhonen, Ed.","J. Arkko, Ed.","T. Savolainen","S. Krishnan"],"rawDate":"2013-11","status":"Informational","obsoletes":["RFC3316"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7067":{"rfcNumber":"RFC7067","href":"https://www.rfc-editor.org/rfc/rfc7067","title":"Directory Assistance Problem and High-Level Design Proposal","authors":["L. Dunbar","D. Eastlake 3rd","R. Perlman","I. Gashinsky"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7068":{"rfcNumber":"RFC7068","href":"https://www.rfc-editor.org/rfc/rfc7068","title":"Diameter Overload Control Requirements","authors":["E. McMurry","B. Campbell"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7069":{"rfcNumber":"RFC7069","href":"https://www.rfc-editor.org/rfc/rfc7069","title":"DECoupled Application Data Enroute (DECADE)","authors":["R. Alimi","A. Rahman","D. Kutscher","Y. Yang","H. Song","K. Pentikousis"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc707":{"aliasOf":"rfc0707"},"rfc7070":{"rfcNumber":"RFC7070","href":"https://www.rfc-editor.org/rfc/rfc7070","title":"An Architecture for Reputation Reporting","authors":["N. Borenstein","M. Kucherawy"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7071":{"rfcNumber":"RFC7071","href":"https://www.rfc-editor.org/rfc/rfc7071","title":"A Media Type for Reputation Interchange","authors":["N. Borenstein","M. Kucherawy"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7072":{"rfcNumber":"RFC7072","href":"https://www.rfc-editor.org/rfc/rfc7072","title":"A Reputation Query Protocol","authors":["N. Borenstein","M. Kucherawy"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7073":{"rfcNumber":"RFC7073","href":"https://www.rfc-editor.org/rfc/rfc7073","title":"A Reputation Response Set for Email Identifiers","authors":["N. Borenstein","M. Kucherawy"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7074":{"rfcNumber":"RFC7074","href":"https://www.rfc-editor.org/rfc/rfc7074","title":"Revised Definition of the GMPLS Switching Capability and Type Fields","authors":["L. Berger","J. Meuric"],"rawDate":"2013-11","status":"Proposed Standard","updates":["RFC3471","RFC4202","RFC4203","RFC5307"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7075":{"rfcNumber":"RFC7075","href":"https://www.rfc-editor.org/rfc/rfc7075","title":"Realm-Based Redirection In Diameter","authors":["T. Tsou","R. Hao","T. Taylor, Ed."],"rawDate":"2013-11","status":"Proposed Standard","updates":["RFC6733"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7076":{"rfcNumber":"RFC7076","href":"https://www.rfc-editor.org/rfc/rfc7076","title":"P6R's Secure Shell Public Key Subsystem","authors":["M. Joseph","J. Susoy"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7077":{"rfcNumber":"RFC7077","href":"https://www.rfc-editor.org/rfc/rfc7077","title":"Update Notifications for Proxy Mobile IPv6","authors":["S. Krishnan","S. Gundavelli","M. Liebsch","H. Yokota","J. Korhonen"],"rawDate":"2013-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7078":{"rfcNumber":"RFC7078","href":"https://www.rfc-editor.org/rfc/rfc7078","title":"Distributing Address Selection Policy Using DHCPv6","authors":["A. Matsumoto","T. Fujisaki","T. Chown"],"rawDate":"2014-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7079":{"rfcNumber":"RFC7079","href":"https://www.rfc-editor.org/rfc/rfc7079","title":"The Pseudowire (PW) and Virtual Circuit Connectivity Verification (VCCV) Implementation Survey Results","authors":["N. Del Regno, Ed.","A. Malis, Ed."],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc708":{"aliasOf":"rfc0708"},"rfc7080":{"rfcNumber":"RFC7080","href":"https://www.rfc-editor.org/rfc/rfc7080","title":"Virtual Private LAN Service (VPLS) Interoperability with Provider Backbone Bridges","authors":["A. Sajassi","S. Salam","N. Bitar","F. Balus"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7081":{"rfcNumber":"RFC7081","href":"https://www.rfc-editor.org/rfc/rfc7081","title":"CUSAX: Combined Use of the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP)","authors":["E. Ivov","P. Saint-Andre","E. Marocco"],"rawDate":"2013-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7082":{"rfcNumber":"RFC7082","href":"https://www.rfc-editor.org/rfc/rfc7082","title":"Indication of Conference Focus Support for the Centralized Conferencing Manipulation Protocol (CCMP)","authors":["R. Shekh-Yusef","M. Barnes"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7083":{"rfcNumber":"RFC7083","href":"https://www.rfc-editor.org/rfc/rfc7083","title":"Modification to Default Values of SOL_MAX_RT and INF_MAX_RT","authors":["R. Droms"],"rawDate":"2013-11","status":"Proposed Standard","obsoletedBy":["RFC8415"],"updates":["RFC3315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7084":{"rfcNumber":"RFC7084","href":"https://www.rfc-editor.org/rfc/rfc7084","title":"Basic Requirements for IPv6 Customer Edge Routers","authors":["H. Singh","W. Beebee","C. Donley","B. Stark"],"rawDate":"2013-11","status":"Informational","updatedBy":["RFC9096"],"obsoletes":["RFC6204"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7084","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7085":{"rfcNumber":"RFC7085","href":"https://www.rfc-editor.org/rfc/rfc7085","title":"Top-Level Domains That Are Already Dotless","authors":["J. Levine","P. Hoffman"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7086":{"rfcNumber":"RFC7086","href":"https://www.rfc-editor.org/rfc/rfc7086","title":"Host Identity Protocol-Based Overlay Networking Environment (HIP BONE) Instance Specification for REsource LOcation And Discovery (RELOAD)","authors":["A. Keranen","G. Camarillo","J. Maenpaa"],"rawDate":"2014-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7087":{"rfcNumber":"RFC7087","href":"https://www.rfc-editor.org/rfc/rfc7087","title":"A Thesaurus for the Interpretation of Terminology Used in MPLS Transport Profile (MPLS-TP) Internet-Drafts and RFCs in the Context of the ITU-T's Transport Network Recommendations","authors":["H. van Helvoort, Ed.","L. Andersson, Ed.","N. Sprecher, Ed."],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7088":{"rfcNumber":"RFC7088","href":"https://www.rfc-editor.org/rfc/rfc7088","title":"Session Initiation Protocol Service Example -- Music on Hold","authors":["D. Worley"],"rawDate":"2014-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7089":{"rfcNumber":"RFC7089","href":"https://www.rfc-editor.org/rfc/rfc7089","title":"HTTP Framework for Time-Based Access to Resource States -- Memento","authors":["H. Van de Sompel","M. Nelson","R. Sanderson"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7090":{"rfcNumber":"RFC7090","href":"https://www.rfc-editor.org/rfc/rfc7090","title":"Public Safety Answering Point (PSAP) Callback","authors":["H. Schulzrinne","H. Tschofenig","C. Holmberg","M. Patel"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7091":{"rfcNumber":"RFC7091","href":"https://www.rfc-editor.org/rfc/rfc7091","title":"GOST R 34.10-2012: Digital Signature Algorithm","authors":["V. Dolmatov, Ed.","A. Degtyarev"],"rawDate":"2013-12","status":"Informational","updates":["RFC5832"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7092":{"rfcNumber":"RFC7092","href":"https://www.rfc-editor.org/rfc/rfc7092","title":"A Taxonomy of Session Initiation Protocol (SIP) Back-to-Back User Agents","authors":["H. Kaplan","V. Pascual"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7093":{"rfcNumber":"RFC7093","href":"https://www.rfc-editor.org/rfc/rfc7093","title":"Additional Methods for Generating Key Identifiers Values","authors":["S. Turner","S. Kent","J. Manger"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7094":{"rfcNumber":"RFC7094","href":"https://www.rfc-editor.org/rfc/rfc7094","title":"Architectural Considerations of IP Anycast","authors":["D. McPherson","D. Oran","D. Thaler","E. Osterweil"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7095":{"rfcNumber":"RFC7095","href":"https://www.rfc-editor.org/rfc/rfc7095","title":"jCard: The JSON Format for vCard","authors":["P. Kewisch"],"rawDate":"2014-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7096":{"rfcNumber":"RFC7096","href":"https://www.rfc-editor.org/rfc/rfc7096","title":"Evaluation of Existing GMPLS Encoding against G.709v3 Optical Transport Networks (OTNs)","authors":["S. Belotti, Ed.","P. Grandi","D. Ceccarelli, Ed.","D. Caviglia","F. Zhang","D. Li"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7097":{"rfcNumber":"RFC7097","href":"https://www.rfc-editor.org/rfc/rfc7097","title":"RTP Control Protocol (RTCP) Extended Report (XR) for RLE of Discarded Packets","authors":["J. Ott","V. Singh, Ed.","I. Curcio"],"rawDate":"2014-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7098":{"rfcNumber":"RFC7098","href":"https://www.rfc-editor.org/rfc/rfc7098","title":"Using the IPv6 Flow Label for Load Balancing in Server Farms","authors":["B. Carpenter","S. Jiang","W. Tarreau"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc71":{"aliasOf":"rfc0071"},"rfc7100":{"rfcNumber":"RFC7100","href":"https://www.rfc-editor.org/rfc/rfc7100","title":"Retirement of the \"Internet Official Protocol Standards\" Summary Document","authors":["P. Resnick"],"rawDate":"2013-12","status":"Best Current Practice","updates":["RFC2026"],"obsoletes":["RFC5000"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7101":{"rfcNumber":"RFC7101","href":"https://www.rfc-editor.org/rfc/rfc7101","title":"List of Internet Official Protocol Standards: Replaced by a Web Page","authors":["S. Ginoza"],"rawDate":"2013-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7102":{"rfcNumber":"RFC7102","href":"https://www.rfc-editor.org/rfc/rfc7102","title":"Terms Used in Routing for Low-Power and Lossy Networks","authors":["JP. Vasseur"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7103":{"rfcNumber":"RFC7103","href":"https://www.rfc-editor.org/rfc/rfc7103","title":"Advice for Safe Handling of Malformed Messages","authors":["M. Kucherawy","G. Shapiro","N. Freed"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7104":{"rfcNumber":"RFC7104","href":"https://www.rfc-editor.org/rfc/rfc7104","title":"Duplication Grouping Semantics in the Session Description Protocol","authors":["A. Begen","Y. Cai","H. Ou"],"rawDate":"2014-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7105":{"rfcNumber":"RFC7105","href":"https://www.rfc-editor.org/rfc/rfc7105","title":"Using Device-Provided Location-Related Measurements in Location Configuration Protocols","authors":["M. Thomson","J. Winterbottom"],"rawDate":"2014-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7105","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7106":{"rfcNumber":"RFC7106","href":"https://www.rfc-editor.org/rfc/rfc7106","title":"A Group Text Chat Purpose for Conference and Service URIs in the SIP Event Package for Conference State","authors":["E. Ivov"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7107":{"rfcNumber":"RFC7107","href":"https://www.rfc-editor.org/rfc/rfc7107","title":"Object Identifier Registry for the S/MIME Mail Security Working Group","authors":["R. Housley"],"rawDate":"2014-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7108":{"rfcNumber":"RFC7108","href":"https://www.rfc-editor.org/rfc/rfc7108","title":"A Summary of Various Mechanisms Deployed at L-Root for the Identification of Anycast Nodes","authors":["J. Abley","T. Manderson"],"rawDate":"2014-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7108","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7109":{"rfcNumber":"RFC7109","href":"https://www.rfc-editor.org/rfc/rfc7109","title":"Flow Bindings Initiated by Home Agents for Mobile IPv6","authors":["H. Yokota","D. Kim","B. Sarikaya","F. Xia"],"rawDate":"2014-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7110":{"rfcNumber":"RFC7110","href":"https://www.rfc-editor.org/rfc/rfc7110","title":"Return Path Specified Label Switched Path (LSP) Ping","authors":["M. Chen","W. Cao","S. Ning","F. Jounay","S. Delord"],"rawDate":"2014-01","status":"Proposed Standard","updatedBy":["RFC7737"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7110","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7111":{"rfcNumber":"RFC7111","href":"https://www.rfc-editor.org/rfc/rfc7111","title":"URI Fragment Identifiers for the text/csv Media Type","authors":["M. Hausenblas","E. Wilde","J. Tennison"],"rawDate":"2014-01","status":"Informational","updates":["RFC4180"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7111","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7112":{"rfcNumber":"RFC7112","href":"https://www.rfc-editor.org/rfc/rfc7112","title":"Implications of Oversized IPv6 Header Chains","authors":["F. Gont","V. Manral","R. Bonica"],"rawDate":"2014-01","status":"Proposed Standard","updates":["RFC2460"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7113":{"rfcNumber":"RFC7113","href":"https://www.rfc-editor.org/rfc/rfc7113","title":"Implementation Advice for IPv6 Router Advertisement Guard (RA-Guard)","authors":["F. Gont"],"rawDate":"2014-02","status":"Informational","updates":["RFC6105"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7114":{"rfcNumber":"RFC7114","href":"https://www.rfc-editor.org/rfc/rfc7114","title":"Creation of a Registry for smime-type Parameter Values","authors":["B. Leiba"],"rawDate":"2014-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7115":{"rfcNumber":"RFC7115","href":"https://www.rfc-editor.org/rfc/rfc7115","title":"Origin Validation Operation Based on the Resource Public Key Infrastructure (RPKI)","authors":["R. Bush"],"rawDate":"2014-01","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7115","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7116":{"rfcNumber":"RFC7116","href":"https://www.rfc-editor.org/rfc/rfc7116","title":"Licklider Transmission Protocol (LTP), Compressed Bundle Header Encoding (CBHE), and Bundle Protocol IANA Registries","authors":["K. Scott","M. Blanchet"],"rawDate":"2014-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7116","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7117":{"rfcNumber":"RFC7117","href":"https://www.rfc-editor.org/rfc/rfc7117","title":"Multicast in Virtual Private LAN Service (VPLS)","authors":["R. Aggarwal, Ed.","Y. Kamite","L. Fang","Y. Rekhter","C. Kodeboniya"],"rawDate":"2014-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7117","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7118":{"rfcNumber":"RFC7118","href":"https://www.rfc-editor.org/rfc/rfc7118","title":"The WebSocket Protocol as a Transport for the Session Initiation Protocol (SIP)","authors":["I. Baz Castillo","J. Millan Villegas","V. Pascual"],"rawDate":"2014-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7118","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7119":{"rfcNumber":"RFC7119","href":"https://www.rfc-editor.org/rfc/rfc7119","title":"Operation of the IP Flow Information Export (IPFIX) Protocol on IPFIX Mediators","authors":["B. Claise","A. Kobayashi","B. Trammell"],"rawDate":"2014-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc712":{"aliasOf":"rfc0712"},"rfc7120":{"rfcNumber":"RFC7120","href":"https://www.rfc-editor.org/rfc/rfc7120","title":"Early IANA Allocation of Standards Track Code Points","authors":["M. Cotton"],"rawDate":"2014-01","status":"Best Current Practice","obsoletes":["RFC4020"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7121":{"rfcNumber":"RFC7121","href":"https://www.rfc-editor.org/rfc/rfc7121","title":"High Availability within a Forwarding and Control Element Separation (ForCES) Network Element","authors":["K. Ogawa","W. Wang","E. Haleplidis","J. Hadi Salim"],"rawDate":"2014-02","status":"Proposed Standard","updatedBy":["RFC7391"],"updates":["RFC5810"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7121","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7122":{"rfcNumber":"RFC7122","href":"https://www.rfc-editor.org/rfc/rfc7122","title":"Datagram Convergence Layers for the Delay- and Disruption-Tolerant Networking (DTN) Bundle Protocol and Licklider Transmission Protocol (LTP)","authors":["H. Kruse","S. Jero","S. Ostermann"],"rawDate":"2014-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7123":{"rfcNumber":"RFC7123","href":"https://www.rfc-editor.org/rfc/rfc7123","title":"Security Implications of IPv6 on IPv4 Networks","authors":["F. Gont","W. Liu"],"rawDate":"2014-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7124":{"rfcNumber":"RFC7124","href":"https://www.rfc-editor.org/rfc/rfc7124","title":"Ethernet in the First Mile Copper (EFMCu) Interfaces MIB","authors":["E. Beili"],"rawDate":"2014-02","status":"Proposed Standard","updates":["RFC5066"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7125":{"rfcNumber":"RFC7125","href":"https://www.rfc-editor.org/rfc/rfc7125","title":"Revision of the tcpControlBits IP Flow Information Export (IPFIX) Information Element","authors":["B. Trammell","P. Aitken"],"rawDate":"2014-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7126":{"rfcNumber":"RFC7126","href":"https://www.rfc-editor.org/rfc/rfc7126","title":"Recommendations on Filtering of IPv4 Packets Containing IPv4 Options","authors":["F. Gont","R. Atkinson","C. Pignataro"],"rawDate":"2014-02","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7126","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7127":{"rfcNumber":"RFC7127","href":"https://www.rfc-editor.org/rfc/rfc7127","title":"Characterization of Proposed Standards","authors":["O. Kolkman","S. Bradner","S. Turner"],"rawDate":"2014-01","status":"Best Current Practice","updates":["RFC2026"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7128":{"rfcNumber":"RFC7128","href":"https://www.rfc-editor.org/rfc/rfc7128","title":"Resource Public Key Infrastructure (RPKI) Router Implementation Report","authors":["R. Bush","R. Austein","K. Patel","H. Gredler","M. Waehlisch"],"rawDate":"2014-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7129":{"rfcNumber":"RFC7129","href":"https://www.rfc-editor.org/rfc/rfc7129","title":"Authenticated Denial of Existence in the DNS","authors":["R. Gieben","W. Mekking"],"rawDate":"2014-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc713":{"aliasOf":"rfc0713"},"rfc7130":{"rfcNumber":"RFC7130","href":"https://www.rfc-editor.org/rfc/rfc7130","title":"Bidirectional Forwarding Detection (BFD) on Link Aggregation Group (LAG) Interfaces","authors":["M. Bhatia, Ed.","M. Chen, Ed.","S. Boutros, Ed.","M. Binderberger, Ed.","J. Haas, Ed."],"rawDate":"2014-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7130","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7131":{"rfcNumber":"RFC7131","href":"https://www.rfc-editor.org/rfc/rfc7131","title":"Session Initiation Protocol (SIP) History-Info Header Call Flow Examples","authors":["M. Barnes","F. Audet","S. Schubert","H. van Elburg","C. Holmberg"],"rawDate":"2014-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7132":{"rfcNumber":"RFC7132","href":"https://www.rfc-editor.org/rfc/rfc7132","title":"Threat Model for BGP Path Security","authors":["S. Kent","A. Chi"],"rawDate":"2014-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7132","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7133":{"rfcNumber":"RFC7133","href":"https://www.rfc-editor.org/rfc/rfc7133","title":"Information Elements for Data Link Layer Traffic Measurement","authors":["S. Kashima","A. Kobayashi, Ed.","P. Aitken"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7134":{"rfcNumber":"RFC7134","href":"https://www.rfc-editor.org/rfc/rfc7134","title":"The Management Policy of the Resource Priority Header (RPH) Registry Changed to \"IETF Review\"","authors":["B. Rosen"],"rawDate":"2014-03","status":"Proposed Standard","updates":["RFC4412"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7135":{"rfcNumber":"RFC7135","href":"https://www.rfc-editor.org/rfc/rfc7135","title":"Registering a SIP Resource Priority Header Field Namespace for Local Emergency Communications","authors":["J. Polk"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7136":{"rfcNumber":"RFC7136","href":"https://www.rfc-editor.org/rfc/rfc7136","title":"Significance of IPv6 Interface Identifiers","authors":["B. Carpenter","S. Jiang"],"rawDate":"2014-02","status":"Proposed Standard","updates":["RFC4291"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7137":{"rfcNumber":"RFC7137","href":"https://www.rfc-editor.org/rfc/rfc7137","title":"Use of the OSPF-MANET Interface in Single-Hop Broadcast Networks","authors":["A. Retana","S. Ratliff"],"rawDate":"2014-02","status":"Experimental","updates":["RFC5820"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7138":{"rfcNumber":"RFC7138","href":"https://www.rfc-editor.org/rfc/rfc7138","title":"Traffic Engineering Extensions to OSPF for GMPLS Control of Evolving G.709 Optical Transport Networks","authors":["D. Ceccarelli, Ed.","F. Zhang","S. Belotti","R. Rao","J. Drake"],"rawDate":"2014-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7139":{"rfcNumber":"RFC7139","href":"https://www.rfc-editor.org/rfc/rfc7139","title":"GMPLS Signaling Extensions for Control of Evolving G.709 Optical Transport Networks","authors":["F. Zhang, Ed.","G. Zhang","S. Belotti","D. Ceccarelli","K. Pithewan"],"rawDate":"2014-03","status":"Proposed Standard","updatedBy":["RFC7892"],"updates":["RFC4328"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7139","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc714":{"aliasOf":"rfc0714"},"rfc7140":{"rfcNumber":"RFC7140","href":"https://www.rfc-editor.org/rfc/rfc7140","title":"LDP Extensions for Hub and Spoke Multipoint Label Switched Path","authors":["L. Jin","F. Jounay","IJ. Wijnands","N. Leymann"],"rawDate":"2014-03","status":"Proposed Standard","updatedBy":["RFC7358"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7141":{"rfcNumber":"RFC7141","href":"https://www.rfc-editor.org/rfc/rfc7141","title":"Byte and Packet Congestion Notification","authors":["B. Briscoe","J. Manner"],"rawDate":"2014-02","status":"Best Current Practice","updates":["RFC2309","RFC2914"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7141","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7142":{"rfcNumber":"RFC7142","href":"https://www.rfc-editor.org/rfc/rfc7142","title":"Reclassification of RFC 1142 to Historic","authors":["M. Shand","L. Ginsberg"],"rawDate":"2014-02","status":"Informational","obsoletes":["RFC1142"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7143":{"rfcNumber":"RFC7143","href":"https://www.rfc-editor.org/rfc/rfc7143","title":"Internet Small Computer System Interface (iSCSI) Protocol (Consolidated)","authors":["M. Chadalapaka","J. Satran","K. Meth","D. Black"],"rawDate":"2014-04","status":"Proposed Standard","updates":["RFC3721"],"obsoletes":["RFC3720","RFC3980","RFC4850","RFC5048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7144":{"rfcNumber":"RFC7144","href":"https://www.rfc-editor.org/rfc/rfc7144","title":"Internet Small Computer System Interface (iSCSI) SCSI Features Update","authors":["F. Knight","M. Chadalapaka"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7145":{"rfcNumber":"RFC7145","href":"https://www.rfc-editor.org/rfc/rfc7145","title":"Internet Small Computer System Interface (iSCSI) Extensions for the Remote Direct Memory Access (RDMA) Specification","authors":["M. Ko","A. Nezhinsky"],"rawDate":"2014-04","status":"Proposed Standard","obsoletes":["RFC5046"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7146":{"rfcNumber":"RFC7146","href":"https://www.rfc-editor.org/rfc/rfc7146","title":"Securing Block Storage Protocols over IP: RFC 3723 Requirements Update for IPsec v3","authors":["D. Black","P. Koning"],"rawDate":"2014-04","status":"Proposed Standard","updates":["RFC3720","RFC3723","RFC3821","RFC3822","RFC4018","RFC4172","RFC4173","RFC4174","RFC5040","RFC5041","RFC5042","RFC5043","RFC5044","RFC5045","RFC5046","RFC5047","RFC5048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7147":{"rfcNumber":"RFC7147","href":"https://www.rfc-editor.org/rfc/rfc7147","title":"Definitions of Managed Objects for the Internet Small Computer System Interface (iSCSI)","authors":["M. Bakke","P. Venkatesen"],"rawDate":"2014-04","status":"Proposed Standard","obsoletes":["RFC4544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7148":{"rfcNumber":"RFC7148","href":"https://www.rfc-editor.org/rfc/rfc7148","title":"Prefix Delegation Support for Proxy Mobile IPv6","authors":["X. Zhou","J. Korhonen","C. Williams","S. Gundavelli","CJ. Bernardos"],"rawDate":"2014-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7149":{"rfcNumber":"RFC7149","href":"https://www.rfc-editor.org/rfc/rfc7149","title":"Software-Defined Networking: A Perspective from within a Service Provider Environment","authors":["M. Boucadair","C. Jacquenet"],"rawDate":"2014-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7150":{"rfcNumber":"RFC7150","href":"https://www.rfc-editor.org/rfc/rfc7150","title":"Conveying Vendor-Specific Constraints in the Path Computation Element Communication Protocol","authors":["F. Zhang","A. Farrel"],"rawDate":"2014-03","status":"Proposed Standard","obsoletedBy":["RFC7470"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7151":{"rfcNumber":"RFC7151","href":"https://www.rfc-editor.org/rfc/rfc7151","title":"File Transfer Protocol HOST Command for Virtual Hosts","authors":["P. Hethmon","R. McMurray"],"rawDate":"2014-03","status":"Proposed Standard","updates":["RFC0959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7152":{"rfcNumber":"RFC7152","href":"https://www.rfc-editor.org/rfc/rfc7152","title":"Requirements for Metro Ethernet Forum (MEF) Ethernet-Tree (E-Tree) Support in Layer 2 Virtual Private Network (L2VPN)","authors":["R. Key, Ed.","S. DeLord","F. Jounay","L. Huang","Z. Liu","M. Paul"],"rawDate":"2014-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7153":{"rfcNumber":"RFC7153","href":"https://www.rfc-editor.org/rfc/rfc7153","title":"IANA Registries for BGP Extended Communities","authors":["E. Rosen","Y. Rekhter"],"rawDate":"2014-03","status":"Proposed Standard","updatedBy":["RFC9184"],"updates":["RFC4360","RFC5701"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7154":{"rfcNumber":"RFC7154","href":"https://www.rfc-editor.org/rfc/rfc7154","title":"IETF Guidelines for Conduct","authors":["S. Moonesamy, Ed."],"rawDate":"2014-03","status":"Best Current Practice","obsoletes":["RFC3184"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7155":{"rfcNumber":"RFC7155","href":"https://www.rfc-editor.org/rfc/rfc7155","title":"Diameter Network Access Server Application","authors":["G. Zorn, Ed."],"rawDate":"2014-04","status":"Proposed Standard","obsoletes":["RFC4005"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7155","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7156":{"rfcNumber":"RFC7156","href":"https://www.rfc-editor.org/rfc/rfc7156","title":"Diameter Support for Proxy Mobile IPv6 Localized Routing","authors":["G. Zorn","Q. Wu","J. Korhonen"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7157":{"rfcNumber":"RFC7157","href":"https://www.rfc-editor.org/rfc/rfc7157","title":"IPv6 Multihoming without Network Address Translation","authors":["O. Troan, Ed.","D. Miles","S. Matsushima","T. Okimoto","D. Wing"],"rawDate":"2014-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7158":{"rfcNumber":"RFC7158","href":"https://www.rfc-editor.org/rfc/rfc7158","title":"The JavaScript Object Notation (JSON) Data Interchange Format","authors":["T. Bray, Ed."],"rawDate":"2014-03","status":"Proposed Standard","obsoletedBy":["RFC7159"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7159":{"rfcNumber":"RFC7159","href":"https://www.rfc-editor.org/rfc/rfc7159","title":"The JavaScript Object Notation (JSON) Data Interchange Format","authors":["T. Bray, Ed."],"rawDate":"2014-03","status":"Proposed Standard","obsoletedBy":["RFC8259"],"obsoletes":["RFC4627","RFC7158"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7159","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc716":{"aliasOf":"rfc0716"},"rfc7160":{"rfcNumber":"RFC7160","href":"https://www.rfc-editor.org/rfc/rfc7160","title":"Support for Multiple Clock Rates in an RTP Session","authors":["M. Petit-Huguenin","G. Zorn, Ed."],"rawDate":"2014-04","status":"Proposed Standard","updates":["RFC3550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7161":{"rfcNumber":"RFC7161","href":"https://www.rfc-editor.org/rfc/rfc7161","title":"Proxy Mobile IPv6 (PMIPv6) Multicast Handover Optimization by the Subscription Information Acquisition through the LMA (SIAL)","authors":["LM. Contreras","CJ. Bernardos","I. Soto"],"rawDate":"2014-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7161","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7162":{"rfcNumber":"RFC7162","href":"https://www.rfc-editor.org/rfc/rfc7162","title":"IMAP Extensions: Quick Flag Changes Resynchronization (CONDSTORE) and Quick Mailbox Resynchronization (QRESYNC)","authors":["A. Melnikov","D. Cridland"],"rawDate":"2014-05","status":"Proposed Standard","updates":["RFC2683"],"obsoletes":["RFC4551","RFC5162"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7162","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7163":{"rfcNumber":"RFC7163","href":"https://www.rfc-editor.org/rfc/rfc7163","title":"URN for Country-Specific Emergency Services","authors":["C. Holmberg","I. Sedlacek"],"rawDate":"2014-03","status":"Proposed Standard","updates":["RFC5031"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7164":{"rfcNumber":"RFC7164","href":"https://www.rfc-editor.org/rfc/rfc7164","title":"RTP and Leap Seconds","authors":["K. Gross","R. Brandenburg"],"rawDate":"2014-03","status":"Proposed Standard","updates":["RFC3550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7165":{"rfcNumber":"RFC7165","href":"https://www.rfc-editor.org/rfc/rfc7165","title":"Use Cases and Requirements for JSON Object Signing and Encryption (JOSE)","authors":["R. Barnes"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7166":{"rfcNumber":"RFC7166","href":"https://www.rfc-editor.org/rfc/rfc7166","title":"Supporting Authentication Trailer for OSPFv3","authors":["M. Bhatia","V. Manral","A. Lindem"],"rawDate":"2014-03","status":"Proposed Standard","obsoletes":["RFC6506"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7167":{"rfcNumber":"RFC7167","href":"https://www.rfc-editor.org/rfc/rfc7167","title":"A Framework for Point-to-Multipoint MPLS in Transport Networks","authors":["D. Frost","S. Bryant","M. Bocci","L. Berger"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7168":{"rfcNumber":"RFC7168","href":"https://www.rfc-editor.org/rfc/rfc7168","title":"The Hyper Text Coffee Pot Control Protocol for Tea Efflux Appliances (HTCPCP-TEA)","authors":["I. Nazar"],"rawDate":"2014-04-01","status":"Informational","updates":["RFC2324"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7169":{"rfcNumber":"RFC7169","href":"https://www.rfc-editor.org/rfc/rfc7169","title":"The NSA (No Secrecy Afforded) Certificate Extension","authors":["S. Turner"],"rawDate":"2014-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc717":{"aliasOf":"rfc0717"},"rfc7170":{"rfcNumber":"RFC7170","href":"https://www.rfc-editor.org/rfc/rfc7170","title":"Tunnel Extensible Authentication Protocol (TEAP) Version 1","authors":["H. Zhou","N. Cam-Winget","J. Salowey","S. Hanna"],"rawDate":"2014-05","status":"Proposed Standard","updatedBy":["RFC9427"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7170","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7171":{"rfcNumber":"RFC7171","href":"https://www.rfc-editor.org/rfc/rfc7171","title":"PT-EAP: Posture Transport (PT) Protocol for Extensible Authentication Protocol (EAP) Tunnel Methods","authors":["N. Cam-Winget","P. Sangster"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7172":{"rfcNumber":"RFC7172","href":"https://www.rfc-editor.org/rfc/rfc7172","title":"Transparent Interconnection of Lots of Links (TRILL): Fine-Grained Labeling","authors":["D. Eastlake 3rd","M. Zhang","P. Agarwal","R. Perlman","D. Dutt"],"rawDate":"2014-05","status":"Proposed Standard","updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7173":{"rfcNumber":"RFC7173","href":"https://www.rfc-editor.org/rfc/rfc7173","title":"Transparent Interconnection of Lots of Links (TRILL) Transport Using Pseudowires","authors":["L. Yong","D. Eastlake 3rd","S. Aldrin","J. Hudson"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7174":{"rfcNumber":"RFC7174","href":"https://www.rfc-editor.org/rfc/rfc7174","title":"Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) Framework","authors":["S. Salam","T. Senevirathne","S. Aldrin","D. Eastlake 3rd"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7175":{"rfcNumber":"RFC7175","href":"https://www.rfc-editor.org/rfc/rfc7175","title":"Transparent Interconnection of Lots of Links (TRILL): Bidirectional Forwarding Detection (BFD) Support","authors":["V. Manral","D. Eastlake 3rd","D. Ward","A. Banerjee"],"rawDate":"2014-05","status":"Proposed Standard","updatedBy":["RFC8564"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7176":{"rfcNumber":"RFC7176","href":"https://www.rfc-editor.org/rfc/rfc7176","title":"Transparent Interconnection of Lots of Links (TRILL) Use of IS-IS","authors":["D. Eastlake 3rd","T. Senevirathne","A. Ghanwani","D. Dutt","A. Banerjee"],"rawDate":"2014-05","status":"Proposed Standard","obsoletes":["RFC6326"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7177":{"rfcNumber":"RFC7177","href":"https://www.rfc-editor.org/rfc/rfc7177","title":"Transparent Interconnection of Lots of Links (TRILL): Adjacency","authors":["D. Eastlake 3rd","R. Perlman","A. Ghanwani","H. Yang","V. Manral"],"rawDate":"2014-05","status":"Proposed Standard","updatedBy":["RFC7780","RFC8139","RFC8249","RFC8377","RFC8564"],"updates":["RFC6325"],"obsoletes":["RFC6327"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7178":{"rfcNumber":"RFC7178","href":"https://www.rfc-editor.org/rfc/rfc7178","title":"Transparent Interconnection of Lots of Links (TRILL): RBridge Channel Support","authors":["D. Eastlake 3rd","V. Manral","Y. Li","S. Aldrin","D. Ward"],"rawDate":"2014-05","status":"Proposed Standard","updatedBy":["RFC7978"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7179":{"rfcNumber":"RFC7179","href":"https://www.rfc-editor.org/rfc/rfc7179","title":"Transparent Interconnection of Lots of Links (TRILL): Header Extension","authors":["D. Eastlake 3rd","A. Ghanwani","V. Manral","Y. Li","C. Bestler"],"rawDate":"2014-05","status":"Proposed Standard","updatedBy":["RFC7780"],"updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc718":{"aliasOf":"rfc0718"},"rfc7180":{"rfcNumber":"RFC7180","href":"https://www.rfc-editor.org/rfc/rfc7180","title":"Transparent Interconnection of Lots of Links (TRILL): Clarifications, Corrections, and Updates","authors":["D. Eastlake 3rd","M. Zhang","A. Ghanwani","V. Manral","A. Banerjee"],"rawDate":"2014-05","status":"Proposed Standard","obsoletedBy":["RFC7780"],"updates":["RFC6325","RFC6327","RFC6439"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7181":{"rfcNumber":"RFC7181","href":"https://www.rfc-editor.org/rfc/rfc7181","title":"The Optimized Link State Routing Protocol Version 2","authors":["T. Clausen","C. Dearlove","P. Jacquet","U. Herberg"],"rawDate":"2014-04","status":"Proposed Standard","updatedBy":["RFC7183","RFC7187","RFC7188","RFC7466"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7181","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7182":{"rfcNumber":"RFC7182","href":"https://www.rfc-editor.org/rfc/rfc7182","title":"Integrity Check Value and Timestamp TLV Definitions for Mobile Ad Hoc Networks (MANETs)","authors":["U. Herberg","T. Clausen","C. Dearlove"],"rawDate":"2014-04","status":"Proposed Standard","obsoletes":["RFC6622"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7182","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7183":{"rfcNumber":"RFC7183","href":"https://www.rfc-editor.org/rfc/rfc7183","title":"Integrity Protection for the Neighborhood Discovery Protocol (NHDP) and Optimized Link State Routing Protocol Version 2 (OLSRv2)","authors":["U. Herberg","C. Dearlove","T. Clausen"],"rawDate":"2014-04","status":"Proposed Standard","updates":["RFC6130","RFC7181"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7183","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7184":{"rfcNumber":"RFC7184","href":"https://www.rfc-editor.org/rfc/rfc7184","title":"Definition of Managed Objects for the Optimized Link State Routing Protocol Version 2","authors":["U. Herberg","R. Cole","T. Clausen"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7185":{"rfcNumber":"RFC7185","href":"https://www.rfc-editor.org/rfc/rfc7185","title":"Link Metrics for the Mobile Ad Hoc Network (MANET) Routing Protocol OLSRv2 - Rationale","authors":["C. Dearlove","T. Clausen","P. Jacquet"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7186":{"rfcNumber":"RFC7186","href":"https://www.rfc-editor.org/rfc/rfc7186","title":"Security Threats for the Neighborhood Discovery Protocol (NHDP)","authors":["J. Yi","U. Herberg","T. Clausen"],"rawDate":"2014-04","status":"Informational","updatedBy":["RFC7985"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7186","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7187":{"rfcNumber":"RFC7187","href":"https://www.rfc-editor.org/rfc/rfc7187","title":"Routing Multipoint Relay Optimization for the Optimized Link State Routing Protocol Version 2 (OLSRv2)","authors":["C. Dearlove","T. Clausen"],"rawDate":"2014-04","status":"Proposed Standard","updates":["RFC7181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7188":{"rfcNumber":"RFC7188","href":"https://www.rfc-editor.org/rfc/rfc7188","title":"Optimized Link State Routing Protocol Version 2 (OLSRv2) and MANET Neighborhood Discovery Protocol (NHDP) Extension TLVs","authors":["C. Dearlove","T. Clausen"],"rawDate":"2014-04","status":"Proposed Standard","updatedBy":["RFC7722"],"updates":["RFC6130","RFC7181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7189":{"rfcNumber":"RFC7189","href":"https://www.rfc-editor.org/rfc/rfc7189","title":"Virtual Circuit Connectivity Verification (VCCV) Capability Advertisement for MPLS Transport Profile (MPLS-TP)","authors":["G. Mirsky"],"rawDate":"2014-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc719":{"aliasOf":"rfc0719"},"rfc7190":{"rfcNumber":"RFC7190","href":"https://www.rfc-editor.org/rfc/rfc7190","title":"Use of Multipath with MPLS and MPLS Transport Profile (MPLS-TP)","authors":["C. Villamizar"],"rawDate":"2014-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7191":{"rfcNumber":"RFC7191","href":"https://www.rfc-editor.org/rfc/rfc7191","title":"Cryptographic Message Syntax (CMS) Key Package Receipt and Error Content Types","authors":["R. Housley"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7192":{"rfcNumber":"RFC7192","href":"https://www.rfc-editor.org/rfc/rfc7192","title":"Algorithms for Cryptographic Message Syntax (CMS) Key Package Receipt and Error Content Types","authors":["S. Turner"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7193":{"rfcNumber":"RFC7193","href":"https://www.rfc-editor.org/rfc/rfc7193","title":"The application/cms Media Type","authors":["S. Turner","R. Housley","J. Schaad"],"rawDate":"2014-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7193","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7194":{"rfcNumber":"RFC7194","href":"https://www.rfc-editor.org/rfc/rfc7194","title":"Default Port for Internet Relay Chat (IRC) via TLS/SSL","authors":["R. Hartmann"],"rawDate":"2014-08","status":"Informational","updates":["RFC1459"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7195":{"rfcNumber":"RFC7195","href":"https://www.rfc-editor.org/rfc/rfc7195","title":"Session Description Protocol (SDP) Extension for Setting Audio and Video Media Streams over Circuit-Switched Bearers in the Public Switched Telephone Network (PSTN)","authors":["M. Garcia-Martin","S. Veikkolainen"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7196":{"rfcNumber":"RFC7196","href":"https://www.rfc-editor.org/rfc/rfc7196","title":"Making Route Flap Damping Usable","authors":["C. Pelsser","R. Bush","K. Patel","P. Mohapatra","O. Maennel"],"rawDate":"2014-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7196","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7197":{"rfcNumber":"RFC7197","href":"https://www.rfc-editor.org/rfc/rfc7197","title":"Duplication Delay Attribute in the Session Description Protocol","authors":["A. Begen","Y. Cai","H. Ou"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7198":{"rfcNumber":"RFC7198","href":"https://www.rfc-editor.org/rfc/rfc7198","title":"Duplicating RTP Streams","authors":["A. Begen","C. Perkins"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7199":{"rfcNumber":"RFC7199","href":"https://www.rfc-editor.org/rfc/rfc7199","title":"Location Configuration Extensions for Policy Management","authors":["R. Barnes","M. Thomson","J. Winterbottom","H. Tschofenig"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc72":{"aliasOf":"rfc0072"},"rfc720":{"aliasOf":"rfc0720"},"rfc7200":{"rfcNumber":"RFC7200","href":"https://www.rfc-editor.org/rfc/rfc7200","title":"A Session Initiation Protocol (SIP) Load-Control Event Package","authors":["C. Shen","H. Schulzrinne","A. Koike"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7201":{"rfcNumber":"RFC7201","href":"https://www.rfc-editor.org/rfc/rfc7201","title":"Options for Securing RTP Sessions","authors":["M. Westerlund","C. Perkins"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7202":{"rfcNumber":"RFC7202","href":"https://www.rfc-editor.org/rfc/rfc7202","title":"Securing the RTP Framework: Why RTP Does Not Mandate a Single Media Security Solution","authors":["C. Perkins","M. Westerlund"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7203":{"rfcNumber":"RFC7203","href":"https://www.rfc-editor.org/rfc/rfc7203","title":"An Incident Object Description Exchange Format (IODEF) Extension for Structured Cybersecurity Information","authors":["T. Takahashi","K. Landfield","Y. Kadobayashi"],"rawDate":"2014-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7203","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7204":{"rfcNumber":"RFC7204","href":"https://www.rfc-editor.org/rfc/rfc7204","title":"Requirements for Labeled NFS","authors":["T. Haynes"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7205":{"rfcNumber":"RFC7205","href":"https://www.rfc-editor.org/rfc/rfc7205","title":"Use Cases for Telepresence Multistreams","authors":["A. Romanow","S. Botzko","M. Duckworth","R. Even, Ed."],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7206":{"rfcNumber":"RFC7206","href":"https://www.rfc-editor.org/rfc/rfc7206","title":"Requirements for an End-to-End Session Identification in IP-Based Multimedia Communication Networks","authors":["P. Jones","G. Salgueiro","J. Polk","L. Liess","H. Kaplan"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7207":{"rfcNumber":"RFC7207","href":"https://www.rfc-editor.org/rfc/rfc7207","title":"A Uniform Resource Name (URN) Namespace for Eurosystem Messaging","authors":["M. Ortseifen","G. Dickfeld"],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7208":{"rfcNumber":"RFC7208","href":"https://www.rfc-editor.org/rfc/rfc7208","title":"Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1","authors":["S. Kitterman"],"rawDate":"2014-04","status":"Proposed Standard","updatedBy":["RFC7372","RFC8553","RFC8616"],"obsoletes":["RFC4408"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7208","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7209":{"rfcNumber":"RFC7209","href":"https://www.rfc-editor.org/rfc/rfc7209","title":"Requirements for Ethernet VPN (EVPN)","authors":["A. Sajassi","R. Aggarwal","J. Uttaro","N. Bitar","W. Henderickx","A. Isaac"],"rawDate":"2014-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7209","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc721":{"aliasOf":"rfc0721"},"rfc7210":{"rfcNumber":"RFC7210","href":"https://www.rfc-editor.org/rfc/rfc7210","title":"Database of Long-Lived Symmetric Cryptographic Keys","authors":["R. Housley","T. Polk","S. Hartman","D. Zhang"],"rawDate":"2014-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7210","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7211":{"rfcNumber":"RFC7211","href":"https://www.rfc-editor.org/rfc/rfc7211","title":"Operations Model for Router Keying","authors":["S. Hartman","D. Zhang"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7212":{"rfcNumber":"RFC7212","href":"https://www.rfc-editor.org/rfc/rfc7212","title":"MPLS Generic Associated Channel (G-ACh) Advertisement Protocol","authors":["D. Frost","S. Bryant","M. Bocci"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7213":{"rfcNumber":"RFC7213","href":"https://www.rfc-editor.org/rfc/rfc7213","title":"MPLS Transport Profile (MPLS-TP) Next-Hop Ethernet Addressing","authors":["D. Frost","S. Bryant","M. Bocci"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7214":{"rfcNumber":"RFC7214","href":"https://www.rfc-editor.org/rfc/rfc7214","title":"Moving Generic Associated Channel (G-ACh) IANA Registries to a New Registry","authors":["L. Andersson","C. Pignataro"],"rawDate":"2014-05","status":"Proposed Standard","updates":["RFC5586","RFC6374","RFC6378","RFC6427","RFC6428"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7215":{"rfcNumber":"RFC7215","href":"https://www.rfc-editor.org/rfc/rfc7215","title":"Locator/Identifier Separation Protocol (LISP) Network Element Deployment Considerations","authors":["L. Jakab","A. Cabellos-Aparicio","F. Coras","J. Domingo-Pascual","D. Lewis"],"rawDate":"2014-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7216":{"rfcNumber":"RFC7216","href":"https://www.rfc-editor.org/rfc/rfc7216","title":"Location Information Server (LIS) Discovery Using IP Addresses and Reverse DNS","authors":["M. Thomson","R. Bellis"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7217":{"rfcNumber":"RFC7217","href":"https://www.rfc-editor.org/rfc/rfc7217","title":"A Method for Generating Semantically Opaque Interface Identifiers with IPv6 Stateless Address Autoconfiguration (SLAAC)","authors":["F. Gont"],"rawDate":"2014-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7218":{"rfcNumber":"RFC7218","href":"https://www.rfc-editor.org/rfc/rfc7218","title":"Adding Acronyms to Simplify Conversations about DNS-Based Authentication of Named Entities (DANE)","authors":["O. Gudmundsson"],"rawDate":"2014-04","status":"Proposed Standard","updates":["RFC6698"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7219":{"rfcNumber":"RFC7219","href":"https://www.rfc-editor.org/rfc/rfc7219","title":"SEcure Neighbor Discovery (SEND) Source Address Validation Improvement (SAVI)","authors":["M. Bagnulo","A. Garcia-Martinez"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc722":{"aliasOf":"rfc0722"},"rfc7220":{"rfcNumber":"RFC7220","href":"https://www.rfc-editor.org/rfc/rfc7220","title":"Description Option for the Port Control Protocol (PCP)","authors":["M. Boucadair","R. Penno","D. Wing"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7221":{"rfcNumber":"RFC7221","href":"https://www.rfc-editor.org/rfc/rfc7221","title":"Handling of Internet-Drafts by IETF Working Groups","authors":["A. Farrel","D. Crocker, Ed."],"rawDate":"2014-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7222":{"rfcNumber":"RFC7222","href":"https://www.rfc-editor.org/rfc/rfc7222","title":"Quality-of-Service Option for Proxy Mobile IPv6","authors":["M. Liebsch","P. Seite","H. Yokota","J. Korhonen","S. Gundavelli"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7223":{"rfcNumber":"RFC7223","href":"https://www.rfc-editor.org/rfc/rfc7223","title":"A YANG Data Model for Interface Management","authors":["M. Bjorklund"],"rawDate":"2014-05","status":"Proposed Standard","obsoletedBy":["RFC8343"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7223","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7224":{"rfcNumber":"RFC7224","href":"https://www.rfc-editor.org/rfc/rfc7224","title":"IANA Interface Type YANG Module","authors":["M. Bjorklund"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7225":{"rfcNumber":"RFC7225","href":"https://www.rfc-editor.org/rfc/rfc7225","title":"Discovering NAT64 IPv6 Prefixes Using the Port Control Protocol (PCP)","authors":["M. Boucadair"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7226":{"rfcNumber":"RFC7226","href":"https://www.rfc-editor.org/rfc/rfc7226","title":"Requirements for Advanced Multipath in MPLS Networks","authors":["C. Villamizar, Ed.","D. McDysan, Ed.","S. Ning","A. Malis","L. Yong"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7227":{"rfcNumber":"RFC7227","href":"https://www.rfc-editor.org/rfc/rfc7227","title":"Guidelines for Creating New DHCPv6 Options","authors":["D. Hankins","T. Mrugalski","M. Siodelski","S. Jiang","S. Krishnan"],"rawDate":"2014-05","status":"Best Current Practice","updates":["RFC3315"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7227","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7228":{"rfcNumber":"RFC7228","href":"https://www.rfc-editor.org/rfc/rfc7228","title":"Terminology for Constrained-Node Networks","authors":["C. Bormann","M. Ersue","A. Keranen"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7229":{"rfcNumber":"RFC7229","href":"https://www.rfc-editor.org/rfc/rfc7229","title":"Object Identifiers for Test Certificate Policies","authors":["R. Housley"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7230":{"rfcNumber":"RFC7230","href":"https://httpwg.org/specs/rfc7230.html","title":"Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing","authors":["R. Fielding, Ed.","J. Reschke, Ed."],"rawDate":"2014-06","status":"Proposed Standard","updatedBy":["RFC8615"],"obsoletedBy":["RFC9110","RFC9112"],"updates":["RFC2817","RFC2818"],"obsoletes":["RFC2145","RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7230","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7231":{"rfcNumber":"RFC7231","href":"https://httpwg.org/specs/rfc7231.html","title":"Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content","authors":["R. Fielding, Ed.","J. Reschke, Ed."],"rawDate":"2014-06","status":"Proposed Standard","obsoletedBy":["RFC9110"],"updates":["RFC2817"],"obsoletes":["RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7231","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7232":{"rfcNumber":"RFC7232","href":"https://httpwg.org/specs/rfc7232.html","title":"Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests","authors":["R. Fielding, Ed.","J. Reschke, Ed."],"rawDate":"2014-06","status":"Proposed Standard","obsoletedBy":["RFC9110"],"obsoletes":["RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7232","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7233":{"rfcNumber":"RFC7233","href":"https://httpwg.org/specs/rfc7233.html","title":"Hypertext Transfer Protocol (HTTP/1.1): Range Requests","authors":["R. Fielding, Ed.","Y. Lafon, Ed.","J. Reschke, Ed."],"rawDate":"2014-06","status":"Proposed Standard","obsoletedBy":["RFC9110"],"obsoletes":["RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7233","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7234":{"rfcNumber":"RFC7234","href":"https://httpwg.org/specs/rfc7234.html","title":"Hypertext Transfer Protocol (HTTP/1.1): Caching","authors":["R. Fielding, Ed.","M. Nottingham, Ed.","J. Reschke, Ed."],"rawDate":"2014-06","status":"Proposed Standard","obsoletedBy":["RFC9111"],"obsoletes":["RFC2616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7234","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7235":{"rfcNumber":"RFC7235","href":"https://httpwg.org/specs/rfc7235.html","title":"Hypertext Transfer Protocol (HTTP/1.1): Authentication","authors":["R. Fielding, Ed.","J. Reschke, Ed."],"rawDate":"2014-06","status":"Proposed Standard","obsoletedBy":["RFC9110"],"obsoletes":["RFC2616","RFC2617"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7235","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7236":{"rfcNumber":"RFC7236","href":"https://www.rfc-editor.org/rfc/rfc7236","title":"Initial Hypertext Transfer Protocol (HTTP) Authentication Scheme Registrations","authors":["J. Reschke"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7237":{"rfcNumber":"RFC7237","href":"https://www.rfc-editor.org/rfc/rfc7237","title":"Initial Hypertext Transfer Protocol (HTTP) Method Registrations","authors":["J. Reschke"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7238":{"rfcNumber":"RFC7238","href":"https://www.rfc-editor.org/rfc/rfc7238","title":"The Hypertext Transfer Protocol Status Code 308 (Permanent Redirect)","authors":["J. Reschke"],"rawDate":"2014-06","status":"Experimental","obsoletedBy":["RFC7538"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7239":{"rfcNumber":"RFC7239","href":"https://www.rfc-editor.org/rfc/rfc7239","title":"Forwarded HTTP Extension","authors":["A. Petersson","M. Nilsson"],"rawDate":"2014-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7239","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc724":{"aliasOf":"rfc0724"},"rfc7240":{"rfcNumber":"RFC7240","href":"https://www.rfc-editor.org/rfc/rfc7240","title":"Prefer Header for HTTP","authors":["J. Snell"],"rawDate":"2014-06","status":"Proposed Standard","updatedBy":["RFC8144"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7240","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7241":{"rfcNumber":"RFC7241","href":"https://www.rfc-editor.org/rfc/rfc7241","title":"The IEEE 802/IETF Relationship","authors":["S. Dawkins","P. Thaler","D. Romascanu","B. Aboba, Ed."],"rawDate":"2014-07","status":"Informational","updatedBy":["RFC9141"],"obsoletes":["RFC4441"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7241","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7242":{"rfcNumber":"RFC7242","href":"https://www.rfc-editor.org/rfc/rfc7242","title":"Delay-Tolerant Networking TCP Convergence-Layer Protocol","authors":["M. Demmer","J. Ott","S. Perreault"],"rawDate":"2014-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7243":{"rfcNumber":"RFC7243","href":"https://www.rfc-editor.org/rfc/rfc7243","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for the Bytes Discarded Metric","authors":["V. Singh, Ed.","J. Ott","I. Curcio"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7244":{"rfcNumber":"RFC7244","href":"https://www.rfc-editor.org/rfc/rfc7244","title":"RTP Control Protocol (RTCP) Extended Report (XR) Blocks for Synchronization Delay and Offset Metrics Reporting","authors":["H. Asaeda","Q. Wu","R. Huang"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7245":{"rfcNumber":"RFC7245","href":"https://www.rfc-editor.org/rfc/rfc7245","title":"An Architecture for Media Recording Using the Session Initiation Protocol","authors":["A. Hutton, Ed.","L. Portman, Ed.","R. Jain","K. Rehor"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7246":{"rfcNumber":"RFC7246","href":"https://www.rfc-editor.org/rfc/rfc7246","title":"Multipoint Label Distribution Protocol In-Band Signaling in a Virtual Routing and Forwarding (VRF) Table Context","authors":["IJ. Wijnands, Ed.","P. Hitchen","N. Leymann","W. Henderickx","A. Gulko","J. Tantsura"],"rawDate":"2014-06","status":"Proposed Standard","updatedBy":["RFC7438"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7247":{"rfcNumber":"RFC7247","href":"https://www.rfc-editor.org/rfc/rfc7247","title":"Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Architecture, Addresses, and Error Handling","authors":["P. Saint-Andre","A. Houri","J. Hildebrand"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7248":{"rfcNumber":"RFC7248","href":"https://www.rfc-editor.org/rfc/rfc7248","title":"Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Presence","authors":["P. Saint-Andre","A. Houri","J. Hildebrand"],"rawDate":"2014-05","status":"Proposed Standard","obsoletedBy":["RFC8048"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7249":{"rfcNumber":"RFC7249","href":"https://www.rfc-editor.org/rfc/rfc7249","title":"Internet Numbers Registries","authors":["R. Housley"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc725":{"aliasOf":"rfc0725"},"rfc7250":{"rfcNumber":"RFC7250","href":"https://www.rfc-editor.org/rfc/rfc7250","title":"Using Raw Public Keys in Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)","authors":["P. Wouters, Ed.","H. Tschofenig, Ed.","J. Gilmore","S. Weiler","T. Kivinen"],"rawDate":"2014-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7250","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7251":{"rfcNumber":"RFC7251","href":"https://www.rfc-editor.org/rfc/rfc7251","title":"AES-CCM Elliptic Curve Cryptography (ECC) Cipher Suites for TLS","authors":["D. McGrew","D. Bailey","M. Campagna","R. Dugal"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7252":{"rfcNumber":"RFC7252","href":"https://www.rfc-editor.org/rfc/rfc7252","title":"The Constrained Application Protocol (CoAP)","authors":["Z. Shelby","K. Hartke","C. Bormann"],"rawDate":"2014-06","status":"Proposed Standard","updatedBy":["RFC7959","RFC8613","RFC8974","RFC9175"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7252","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7253":{"rfcNumber":"RFC7253","href":"https://www.rfc-editor.org/rfc/rfc7253","title":"The OCB Authenticated-Encryption Algorithm","authors":["T. Krovetz","P. Rogaway"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7254":{"rfcNumber":"RFC7254","href":"https://www.rfc-editor.org/rfc/rfc7254","title":"A Uniform Resource Name Namespace for the Global System for Mobile Communications Association (GSMA) and the International Mobile station Equipment Identity (IMEI)","authors":["M. Montemurro, Ed.","A. Allen","D. McDonald","P. Gosden"],"rawDate":"2014-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7254","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7255":{"rfcNumber":"RFC7255","href":"https://www.rfc-editor.org/rfc/rfc7255","title":"Using the International Mobile station Equipment Identity (IMEI) Uniform Resource Name (URN) as an Instance ID","authors":["A. Allen, Ed."],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7256":{"rfcNumber":"RFC7256","href":"https://www.rfc-editor.org/rfc/rfc7256","title":"Multicast Control Extensions for the Access Node Control Protocol (ANCP)","authors":["F. Le Faucheur","R. Maglione","T. Taylor"],"rawDate":"2014-07","status":"Proposed Standard","updates":["RFC6320"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7257":{"rfcNumber":"RFC7257","href":"https://www.rfc-editor.org/rfc/rfc7257","title":"Virtual Private LAN Service (VPLS) Management Information Base","authors":["T. Nadeau, Ed.","A. Kiran Koushik, Ed.","R. Mediratta, Ed."],"rawDate":"2014-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7257","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7258":{"rfcNumber":"RFC7258","href":"https://www.rfc-editor.org/rfc/rfc7258","title":"Pervasive Monitoring Is an Attack","authors":["S. Farrell","H. Tschofenig"],"rawDate":"2014-05","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7259":{"rfcNumber":"RFC7259","href":"https://www.rfc-editor.org/rfc/rfc7259","title":"The Jabber-ID Header Field","authors":["P. Saint-Andre"],"rawDate":"2014-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc726":{"aliasOf":"rfc0726"},"rfc7260":{"rfcNumber":"RFC7260","href":"https://www.rfc-editor.org/rfc/rfc7260","title":"GMPLS RSVP-TE Extensions for Operations, Administration, and Maintenance (OAM) Configuration","authors":["A. Takacs","D. Fedyk","J. He"],"rawDate":"2014-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7260","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7261":{"rfcNumber":"RFC7261","href":"https://www.rfc-editor.org/rfc/rfc7261","title":"Offer/Answer Considerations for G723 Annex A and G729 Annex B","authors":["M. Perumal","P. Ravindran"],"rawDate":"2014-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7262":{"rfcNumber":"RFC7262","href":"https://www.rfc-editor.org/rfc/rfc7262","title":"Requirements for Telepresence Multistreams","authors":["A. Romanow","S. Botzko","M. Barnes"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7263":{"rfcNumber":"RFC7263","href":"https://www.rfc-editor.org/rfc/rfc7263","title":"An Extension to the REsource LOcation And Discovery (RELOAD) Protocol to Support Direct Response Routing","authors":["N. Zong","X. Jiang","R. Even","Y. Zhang"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7264":{"rfcNumber":"RFC7264","href":"https://www.rfc-editor.org/rfc/rfc7264","title":"An Extension to the REsource LOcation And Discovery (RELOAD) Protocol to Support Relay Peer Routing","authors":["N. Zong","X. Jiang","R. Even","Y. Zhang"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7265":{"rfcNumber":"RFC7265","href":"https://www.rfc-editor.org/rfc/rfc7265","title":"jCal: The JSON Format for iCalendar","authors":["P. Kewisch","C. Daboo","M. Douglass"],"rawDate":"2014-05","status":"Proposed Standard","updatedBy":["RFC7529"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7265","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7266":{"rfcNumber":"RFC7266","href":"https://www.rfc-editor.org/rfc/rfc7266","title":"RTP Control Protocol (RTCP) Extended Report (XR) Blocks for Mean Opinion Score (MOS) Metric Reporting","authors":["A. Clark","Q. Wu","R. Schott","G. Zorn"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7267":{"rfcNumber":"RFC7267","href":"https://www.rfc-editor.org/rfc/rfc7267","title":"Dynamic Placement of Multi-Segment Pseudowires","authors":["L. Martini, Ed.","M. Bocci, Ed.","F. Balus, Ed."],"rawDate":"2014-06","status":"Proposed Standard","updates":["RFC6073"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7268":{"rfcNumber":"RFC7268","href":"https://www.rfc-editor.org/rfc/rfc7268","title":"RADIUS Attributes for IEEE 802 Networks","authors":["B. Aboba","J. Malinen","P. Congdon","J. Salowey","M. Jones"],"rawDate":"2014-07","status":"Proposed Standard","updatedBy":["RFC8044"],"updates":["RFC3580","RFC4072"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7269":{"rfcNumber":"RFC7269","href":"https://www.rfc-editor.org/rfc/rfc7269","title":"NAT64 Deployment Options and Experience","authors":["G. Chen","Z. Cao","C. Xie","D. Binet"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc727":{"aliasOf":"rfc0727"},"rfc7270":{"rfcNumber":"RFC7270","href":"https://www.rfc-editor.org/rfc/rfc7270","title":"Cisco-Specific Information Elements Reused in IP Flow Information Export (IPFIX)","authors":["A. Yourtchenko","P. Aitken","B. Claise"],"rawDate":"2014-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7270","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7271":{"rfcNumber":"RFC7271","href":"https://www.rfc-editor.org/rfc/rfc7271","title":"MPLS Transport Profile (MPLS-TP) Linear Protection to Match the Operational Expectations of Synchronous Digital Hierarchy, Optical Transport Network, and Ethernet Transport Network Operators","authors":["J. Ryoo, Ed.","E. Gray, Ed.","H. van Helvoort","A. D'Alessandro","T. Cheung","E. Osborne"],"rawDate":"2014-06","status":"Proposed Standard","updatedBy":["RFC8234"],"updates":["RFC6378"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7272":{"rfcNumber":"RFC7272","href":"https://www.rfc-editor.org/rfc/rfc7272","title":"Inter-Destination Media Synchronization (IDMS) Using the RTP Control Protocol (RTCP)","authors":["R. van Brandenburg","H. Stokking","O. van Deventer","F. Boronat","M. Montagud","K. Gross"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7273":{"rfcNumber":"RFC7273","href":"https://www.rfc-editor.org/rfc/rfc7273","title":"RTP Clock Source Signalling","authors":["A. Williams","K. Gross","R. van Brandenburg","H. Stokking"],"rawDate":"2014-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7273","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7274":{"rfcNumber":"RFC7274","href":"https://www.rfc-editor.org/rfc/rfc7274","title":"Allocating and Retiring Special-Purpose MPLS Labels","authors":["K. Kompella","L. Andersson","A. Farrel"],"rawDate":"2014-06","status":"Proposed Standard","updatedBy":["RFC9017"],"updates":["RFC3032","RFC3038","RFC3209","RFC3811","RFC4182","RFC4928","RFC5331","RFC5586","RFC5921","RFC5960","RFC6391","RFC6478","RFC6790"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7275":{"rfcNumber":"RFC7275","href":"https://www.rfc-editor.org/rfc/rfc7275","title":"Inter-Chassis Communication Protocol for Layer 2 Virtual Private Network (L2VPN) Provider Edge (PE) Redundancy","authors":["L. Martini","S. Salam","A. Sajassi","M. Bocci","S. Matsushima","T. Nadeau"],"rawDate":"2014-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7276":{"rfcNumber":"RFC7276","href":"https://www.rfc-editor.org/rfc/rfc7276","title":"An Overview of Operations, Administration, and Maintenance (OAM) Tools","authors":["T. Mizrahi","N. Sprecher","E. Bellagamba","Y. Weingarten"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7277":{"rfcNumber":"RFC7277","href":"https://www.rfc-editor.org/rfc/rfc7277","title":"A YANG Data Model for IP Management","authors":["M. Bjorklund"],"rawDate":"2014-06","status":"Proposed Standard","obsoletedBy":["RFC8344"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7278":{"rfcNumber":"RFC7278","href":"https://www.rfc-editor.org/rfc/rfc7278","title":"Extending an IPv6 /64 Prefix from a Third Generation Partnership Project (3GPP) Mobile Interface to a LAN Link","authors":["C. Byrne","D. Drown","A. Vizdal"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7279":{"rfcNumber":"RFC7279","href":"https://www.rfc-editor.org/rfc/rfc7279","title":"An Acceptable Use Policy for New ICMP Types and Codes","authors":["M. Shore","C. Pignataro"],"rawDate":"2014-05","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc728":{"aliasOf":"rfc0728"},"rfc7280":{"rfcNumber":"RFC7280","href":"https://www.rfc-editor.org/rfc/rfc7280","title":"IANA Guidance for Managing the Unidirectional Lightweight Encapsulation (ULE) Next-Header Registry","authors":["G. Fairhurst"],"rawDate":"2014-06","status":"Proposed Standard","updates":["RFC4326"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7281":{"rfcNumber":"RFC7281","href":"https://www.rfc-editor.org/rfc/rfc7281","title":"Authentication-Results Registration for S/MIME Signature Verification","authors":["A. Melnikov"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7282":{"rfcNumber":"RFC7282","href":"https://www.rfc-editor.org/rfc/rfc7282","title":"On Consensus and Humming in the IETF","authors":["P. Resnick"],"rawDate":"2014-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7282","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7283":{"rfcNumber":"RFC7283","href":"https://www.rfc-editor.org/rfc/rfc7283","title":"Handling Unknown DHCPv6 Messages","authors":["Y. Cui","Q. Sun","T. Lemon"],"rawDate":"2014-07","status":"Proposed Standard","obsoletedBy":["RFC8415"],"updates":["RFC3315"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7284":{"rfcNumber":"RFC7284","href":"https://www.rfc-editor.org/rfc/rfc7284","title":"The Profile URI Registry","authors":["M. Lanthaler"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7285":{"rfcNumber":"RFC7285","href":"https://www.rfc-editor.org/rfc/rfc7285","title":"Application-Layer Traffic Optimization (ALTO) Protocol","authors":["R. Alimi, Ed.","R. Penno, Ed.","Y. Yang, Ed.","S. Kiesel","S. Previdi","W. Roome","S. Shalunov","R. Woundy"],"rawDate":"2014-09","status":"Proposed Standard","updatedBy":["RFC9274"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7285","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7286":{"rfcNumber":"RFC7286","href":"https://www.rfc-editor.org/rfc/rfc7286","title":"Application-Layer Traffic Optimization (ALTO) Server Discovery","authors":["S. Kiesel","M. Stiemerling","N. Schwan","M. Scharf","H. Song"],"rawDate":"2014-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7287":{"rfcNumber":"RFC7287","href":"https://www.rfc-editor.org/rfc/rfc7287","title":"Mobile Multicast Sender Support in Proxy Mobile IPv6 (PMIPv6) Domains","authors":["T. Schmidt, Ed.","S. Gao","H. Zhang","M. Waehlisch"],"rawDate":"2014-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7288":{"rfcNumber":"RFC7288","href":"https://www.rfc-editor.org/rfc/rfc7288","title":"Reflections on Host Firewalls","authors":["D. Thaler"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7289":{"rfcNumber":"RFC7289","href":"https://www.rfc-editor.org/rfc/rfc7289","title":"Carrier-Grade NAT (CGN) Deployment with BGP/MPLS IP VPNs","authors":["V. Kuarsingh, Ed.","J. Cianfarani"],"rawDate":"2014-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc729":{"aliasOf":"rfc0729"},"rfc7290":{"rfcNumber":"RFC7290","href":"https://www.rfc-editor.org/rfc/rfc7290","title":"Test Plan and Results for Advancing RFC 2680 on the Standards Track","authors":["L. Ciavattone","R. Geib","A. Morton","M. Wieser"],"rawDate":"2014-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7291":{"rfcNumber":"RFC7291","href":"https://www.rfc-editor.org/rfc/rfc7291","title":"DHCP Options for the Port Control Protocol (PCP)","authors":["M. Boucadair","R. Penno","D. Wing"],"rawDate":"2014-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7292":{"rfcNumber":"RFC7292","href":"https://www.rfc-editor.org/rfc/rfc7292","title":"PKCS #12: Personal Information Exchange Syntax v1.1","authors":["K. Moriarty, Ed.","M. Nystrom","S. Parkinson","A. Rusch","M. Scott"],"rawDate":"2014-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7292","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7293":{"rfcNumber":"RFC7293","href":"https://www.rfc-editor.org/rfc/rfc7293","title":"The Require-Recipient-Valid-Since Header Field and SMTP Service Extension","authors":["W. Mills","M. Kucherawy"],"rawDate":"2014-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7294":{"rfcNumber":"RFC7294","href":"https://www.rfc-editor.org/rfc/rfc7294","title":"RTP Control Protocol (RTCP) Extended Report (XR) Blocks for Concealment Metrics Reporting on Audio Applications","authors":["A. Clark","G. Zorn","C. Bi","Q. Wu"],"rawDate":"2014-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7295":{"rfcNumber":"RFC7295","href":"https://www.rfc-editor.org/rfc/rfc7295","title":"Report from the IAB/IRTF Workshop on Congestion Control for Interactive Real-Time Communication","authors":["H. Tschofenig","L. Eggert","Z. Sarker"],"rawDate":"2014-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7296":{"rfcNumber":"RFC7296","href":"https://www.rfc-editor.org/rfc/rfc7296","title":"Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["C. Kaufman","P. Hoffman","Y. Nir","P. Eronen","T. Kivinen"],"rawDate":"2014-10","status":"Internet Standard","updatedBy":["RFC7427","RFC7670","RFC8247","RFC8983","RFC9370"],"obsoletes":["RFC5996"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7296","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7297":{"rfcNumber":"RFC7297","href":"https://www.rfc-editor.org/rfc/rfc7297","title":"IP Connectivity Provisioning Profile (CPP)","authors":["M. Boucadair","C. Jacquenet","N. Wang"],"rawDate":"2014-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7298":{"rfcNumber":"RFC7298","href":"https://www.rfc-editor.org/rfc/rfc7298","title":"Babel Hashed Message Authentication Code (HMAC) Cryptographic Authentication","authors":["D. Ovsienko"],"rawDate":"2014-07","status":"Experimental","obsoletedBy":["RFC8967"],"updates":["RFC6126"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7299":{"rfcNumber":"RFC7299","href":"https://www.rfc-editor.org/rfc/rfc7299","title":"Object Identifier Registry for the PKIX Working Group","authors":["R. Housley"],"rawDate":"2014-07","status":"Informational","updatedBy":["RFC9158"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc73":{"aliasOf":"rfc0073"},"rfc730":{"aliasOf":"rfc0730"},"rfc7300":{"rfcNumber":"RFC7300","href":"https://www.rfc-editor.org/rfc/rfc7300","title":"Reservation of Last Autonomous System (AS) Numbers","authors":["J. Haas","J. Mitchell"],"rawDate":"2014-07","status":"Best Current Practice","updates":["RFC1930"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7301":{"rfcNumber":"RFC7301","href":"https://www.rfc-editor.org/rfc/rfc7301","title":"Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension","authors":["S. Friedl","A. Popov","A. Langley","E. Stephan"],"rawDate":"2014-07","status":"Proposed Standard","updatedBy":["RFC8447"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7301","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7302":{"rfcNumber":"RFC7302","href":"https://www.rfc-editor.org/rfc/rfc7302","title":"Entertainment Identifier Registry (EIDR) URN Namespace Definition","authors":["P. Lemieux"],"rawDate":"2014-07","status":"Informational","obsoletedBy":["RFC7972"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7303":{"rfcNumber":"RFC7303","href":"https://www.rfc-editor.org/rfc/rfc7303","title":"XML Media Types","authors":["H. Thompson","C. Lilley"],"rawDate":"2014-07","status":"Proposed Standard","updates":["RFC6839"],"obsoletes":["RFC3023"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7303","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7304":{"rfcNumber":"RFC7304","href":"https://www.rfc-editor.org/rfc/rfc7304","title":"A Method for Mitigating Namespace Collisions","authors":["W. Kumari"],"rawDate":"2014-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7305":{"rfcNumber":"RFC7305","href":"https://www.rfc-editor.org/rfc/rfc7305","title":"Report from the IAB Workshop on Internet Technology Adoption and Transition (ITAT)","authors":["E. Lear, Ed."],"rawDate":"2014-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7305","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7306":{"rfcNumber":"RFC7306","href":"https://www.rfc-editor.org/rfc/rfc7306","title":"Remote Direct Memory Access (RDMA) Protocol Extensions","authors":["H. Shah","F. Marti","W. Noureddine","A. Eiriksson","R. Sharp"],"rawDate":"2014-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7306","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7307":{"rfcNumber":"RFC7307","href":"https://www.rfc-editor.org/rfc/rfc7307","title":"LDP Extensions for Multi-Topology","authors":["Q. Zhao","K. Raza","C. Zhou","L. Fang","L. Li","D. King"],"rawDate":"2014-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7307","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7308":{"rfcNumber":"RFC7308","href":"https://www.rfc-editor.org/rfc/rfc7308","title":"Extended Administrative Groups in MPLS Traffic Engineering (MPLS-TE)","authors":["E. Osborne"],"rawDate":"2014-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7309":{"rfcNumber":"RFC7309","href":"https://www.rfc-editor.org/rfc/rfc7309","title":"Redundancy Mechanism for Inter-domain VPLS Service","authors":["Z. Liu","L. Jin","R. Chen","D. Cai","S. Salam"],"rawDate":"2014-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc731":{"aliasOf":"rfc0731"},"rfc7310":{"rfcNumber":"RFC7310","href":"https://www.rfc-editor.org/rfc/rfc7310","title":"RTP Payload Format for Standard apt-X and Enhanced apt-X Codecs","authors":["J. Lindsay","H. Foerster"],"rawDate":"2014-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7311":{"rfcNumber":"RFC7311","href":"https://www.rfc-editor.org/rfc/rfc7311","title":"The Accumulated IGP Metric Attribute for BGP","authors":["P. Mohapatra","R. Fernando","E. Rosen","J. Uttaro"],"rawDate":"2014-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7312":{"rfcNumber":"RFC7312","href":"https://www.rfc-editor.org/rfc/rfc7312","title":"Advanced Stream and Sampling Framework for IP Performance Metrics (IPPM)","authors":["J. Fabini","A. Morton"],"rawDate":"2014-08","status":"Informational","updates":["RFC2330"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7313":{"rfcNumber":"RFC7313","href":"https://www.rfc-editor.org/rfc/rfc7313","title":"Enhanced Route Refresh Capability for BGP-4","authors":["K. Patel","E. Chen","B. Venkatachalapathy"],"rawDate":"2014-07","status":"Proposed Standard","updates":["RFC2918"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7314":{"rfcNumber":"RFC7314","href":"https://www.rfc-editor.org/rfc/rfc7314","title":"Extension Mechanisms for DNS (EDNS) EXPIRE Option","authors":["M. Andrews"],"rawDate":"2014-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7315":{"rfcNumber":"RFC7315","href":"https://www.rfc-editor.org/rfc/rfc7315","title":"Private Header (P-Header) Extensions to the Session Initiation Protocol (SIP) for the 3GPP","authors":["R. Jesske","K. Drage","C. Holmberg"],"rawDate":"2014-07","status":"Informational","updatedBy":["RFC7913","RFC7976"],"obsoletes":["RFC3455"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7315","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7316":{"rfcNumber":"RFC7316","href":"https://www.rfc-editor.org/rfc/rfc7316","title":"The Session Initiation Protocol (SIP) P-Private-Network-Indication Private Header (P-Header)","authors":["J. van Elburg","K. Drage","M. Ohsugi","S. Schubert","K. Arai"],"rawDate":"2014-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7317":{"rfcNumber":"RFC7317","href":"https://www.rfc-editor.org/rfc/rfc7317","title":"A YANG Data Model for System Management","authors":["A. Bierman","M. Bjorklund"],"rawDate":"2014-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7317","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7318":{"rfcNumber":"RFC7318","href":"https://www.rfc-editor.org/rfc/rfc7318","title":"Policy Qualifiers in Resource Public Key Infrastructure (RPKI) Certificates","authors":["A. Newton","G. Huston"],"rawDate":"2014-07","status":"Proposed Standard","updates":["RFC6487"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7319":{"rfcNumber":"RFC7319","href":"https://www.rfc-editor.org/rfc/rfc7319","title":"IANA Considerations for Connectivity Fault Management (CFM) Code Points","authors":["D. Eastlake 3rd"],"rawDate":"2014-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc732":{"aliasOf":"rfc0732"},"rfc7320":{"rfcNumber":"RFC7320","href":"https://www.rfc-editor.org/rfc/rfc7320","title":"URI Design and Ownership","authors":["M. Nottingham"],"rawDate":"2014-07","status":"Best Current Practice","obsoletedBy":["RFC8820"],"updates":["RFC3986"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7320","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7321":{"rfcNumber":"RFC7321","href":"https://www.rfc-editor.org/rfc/rfc7321","title":"Cryptographic Algorithm Implementation Requirements and Usage Guidance for Encapsulating Security Payload (ESP) and Authentication Header (AH)","authors":["D. McGrew","P. Hoffman"],"rawDate":"2014-08","status":"Proposed Standard","obsoletedBy":["RFC8221"],"obsoletes":["RFC4835"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7322":{"rfcNumber":"RFC7322","href":"https://www.rfc-editor.org/rfc/rfc7322","title":"RFC Style Guide","authors":["H. Flanagan","S. Ginoza"],"rawDate":"2014-09","status":"Informational","updatedBy":["RFC7997"],"obsoletes":["RFC2223"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7322","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7323":{"rfcNumber":"RFC7323","href":"https://www.rfc-editor.org/rfc/rfc7323","title":"TCP Extensions for High Performance","authors":["D. Borman","B. Braden","V. Jacobson","R. Scheffenegger, Ed."],"rawDate":"2014-09","status":"Proposed Standard","obsoletes":["RFC1323"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7323","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7324":{"rfcNumber":"RFC7324","href":"https://www.rfc-editor.org/rfc/rfc7324","title":"Updates to MPLS Transport Profile Linear Protection","authors":["E. Osborne"],"rawDate":"2014-07","status":"Proposed Standard","updates":["RFC6378"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7325":{"rfcNumber":"RFC7325","href":"https://www.rfc-editor.org/rfc/rfc7325","title":"MPLS Forwarding Compliance and Performance Requirements","authors":["C. Villamizar, Ed.","K. Kompella","S. Amante","A. Malis","C. Pignataro"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7326":{"rfcNumber":"RFC7326","href":"https://www.rfc-editor.org/rfc/rfc7326","title":"Energy Management Framework","authors":["J. Parello","B. Claise","B. Schoening","J. Quittek"],"rawDate":"2014-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7328":{"rfcNumber":"RFC7328","href":"https://www.rfc-editor.org/rfc/rfc7328","title":"Writing I-Ds and RFCs Using Pandoc and a Bit of XML","authors":["R. Gieben"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7329":{"rfcNumber":"RFC7329","href":"https://www.rfc-editor.org/rfc/rfc7329","title":"A Session Identifier for the Session Initiation Protocol (SIP)","authors":["H. Kaplan"],"rawDate":"2014-08","status":"Informational","obsoletedBy":["RFC7989"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc733":{"aliasOf":"rfc0733"},"rfc7330":{"rfcNumber":"RFC7330","href":"https://www.rfc-editor.org/rfc/rfc7330","title":"Definitions of Textual Conventions (TCs) for Bidirectional Forwarding Detection (BFD) Management","authors":["T. Nadeau","Z. Ali","N. Akiya"],"rawDate":"2014-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7331":{"rfcNumber":"RFC7331","href":"https://www.rfc-editor.org/rfc/rfc7331","title":"Bidirectional Forwarding Detection (BFD) Management Information Base","authors":["T. Nadeau","Z. Ali","N. Akiya"],"rawDate":"2014-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7331","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7332":{"rfcNumber":"RFC7332","href":"https://www.rfc-editor.org/rfc/rfc7332","title":"Loop Detection Mechanisms for Session Initiation Protocol (SIP) Back-to-Back User Agents (B2BUAs)","authors":["H. Kaplan","V. Pascual"],"rawDate":"2014-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7332","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7333":{"rfcNumber":"RFC7333","href":"https://www.rfc-editor.org/rfc/rfc7333","title":"Requirements for Distributed Mobility Management","authors":["H. Chan, Ed.","D. Liu","P. Seite","H. Yokota","J. Korhonen"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7334":{"rfcNumber":"RFC7334","href":"https://www.rfc-editor.org/rfc/rfc7334","title":"PCE-Based Computation Procedure to Compute Shortest Constrained Point-to-Multipoint (P2MP) Inter-Domain Traffic Engineering Label Switched Paths","authors":["Q. Zhao","D. Dhody","D. King","Z. Ali","R. Casellas"],"rawDate":"2014-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7335":{"rfcNumber":"RFC7335","href":"https://www.rfc-editor.org/rfc/rfc7335","title":"IPv4 Service Continuity Prefix","authors":["C. Byrne"],"rawDate":"2014-08","status":"Proposed Standard","updates":["RFC6333"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7336":{"rfcNumber":"RFC7336","href":"https://www.rfc-editor.org/rfc/rfc7336","title":"Framework for Content Distribution Network Interconnection (CDNI)","authors":["L. Peterson","B. Davie","R. van Brandenburg, Ed."],"rawDate":"2014-08","status":"Informational","obsoletes":["RFC3466"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7337":{"rfcNumber":"RFC7337","href":"https://www.rfc-editor.org/rfc/rfc7337","title":"Content Distribution Network Interconnection (CDNI) Requirements","authors":["K. Leung, Ed.","Y. Lee, Ed."],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7338":{"rfcNumber":"RFC7338","href":"https://www.rfc-editor.org/rfc/rfc7338","title":"Requirements and Framework for Point-to-Multipoint Pseudowires over MPLS Packet Switched Networks","authors":["F. Jounay, Ed.","Y. Kamite, Ed.","G. Heron","M. Bocci"],"rawDate":"2014-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7339":{"rfcNumber":"RFC7339","href":"https://www.rfc-editor.org/rfc/rfc7339","title":"Session Initiation Protocol (SIP) Overload Control","authors":["V. Gurbani, Ed.","V. Hilt","H. Schulzrinne"],"rawDate":"2014-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc734":{"aliasOf":"rfc0734"},"rfc7340":{"rfcNumber":"RFC7340","href":"https://www.rfc-editor.org/rfc/rfc7340","title":"Secure Telephone Identity Problem Statement and Requirements","authors":["J. Peterson","H. Schulzrinne","H. Tschofenig"],"rawDate":"2014-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7341":{"rfcNumber":"RFC7341","href":"https://www.rfc-editor.org/rfc/rfc7341","title":"DHCPv4-over-DHCPv6 (DHCP 4o6) Transport","authors":["Q. Sun","Y. Cui","M. Siodelski","S. Krishnan","I. Farrer"],"rawDate":"2014-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7342":{"rfcNumber":"RFC7342","href":"https://www.rfc-editor.org/rfc/rfc7342","title":"Practices for Scaling ARP and Neighbor Discovery (ND) in Large Data Centers","authors":["L. Dunbar","W. Kumari","I. Gashinsky"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7343":{"rfcNumber":"RFC7343","href":"https://www.rfc-editor.org/rfc/rfc7343","title":"An IPv6 Prefix for Overlay Routable Cryptographic Hash Identifiers Version 2 (ORCHIDv2)","authors":["J. Laganier","F. Dupont"],"rawDate":"2014-09","status":"Proposed Standard","updatedBy":["RFC9374"],"obsoletes":["RFC4843"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7344":{"rfcNumber":"RFC7344","href":"https://www.rfc-editor.org/rfc/rfc7344","title":"Automating DNSSEC Delegation Trust Maintenance","authors":["W. Kumari","O. Gudmundsson","G. Barwood"],"rawDate":"2014-09","status":"Proposed Standard","updatedBy":["RFC8078"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7345":{"rfcNumber":"RFC7345","href":"https://www.rfc-editor.org/rfc/rfc7345","title":"UDP Transport Layer (UDPTL) over Datagram Transport Layer Security (DTLS)","authors":["C. Holmberg","I. Sedlacek","G. Salgueiro"],"rawDate":"2014-08","status":"Proposed Standard","updatedBy":["RFC8842"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7346":{"rfcNumber":"RFC7346","href":"https://www.rfc-editor.org/rfc/rfc7346","title":"IPv6 Multicast Address Scopes","authors":["R. Droms"],"rawDate":"2014-08","status":"Proposed Standard","updates":["RFC4007","RFC4291"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7346","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7347":{"rfcNumber":"RFC7347","href":"https://www.rfc-editor.org/rfc/rfc7347","title":"Pre-standard Linear Protection Switching in MPLS Transport Profile (MPLS-TP)","authors":["H. van Helvoort, Ed.","J. Ryoo, Ed.","H. Zhang","F. Huang","H. Li","A. D'Alessandro"],"rawDate":"2014-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7348":{"rfcNumber":"RFC7348","href":"https://www.rfc-editor.org/rfc/rfc7348","title":"Virtual eXtensible Local Area Network (VXLAN): A Framework for Overlaying Virtualized Layer 2 Networks over Layer 3 Networks","authors":["M. Mahalingam","D. Dutt","K. Duda","P. Agarwal","L. Kreeger","T. Sridhar","M. Bursell","C. Wright"],"rawDate":"2014-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7348","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7349":{"rfcNumber":"RFC7349","href":"https://www.rfc-editor.org/rfc/rfc7349","title":"LDP Hello Cryptographic Authentication","authors":["L. Zheng","M. Chen","M. Bhatia"],"rawDate":"2014-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc735":{"aliasOf":"rfc0735"},"rfc7350":{"rfcNumber":"RFC7350","href":"https://www.rfc-editor.org/rfc/rfc7350","title":"Datagram Transport Layer Security (DTLS) as Transport for Session Traversal Utilities for NAT (STUN)","authors":["M. Petit-Huguenin","G. Salgueiro"],"rawDate":"2014-08","status":"Proposed Standard","updates":["RFC5389","RFC5928"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7351":{"rfcNumber":"RFC7351","href":"https://www.rfc-editor.org/rfc/rfc7351","title":"A Media Type for XML Patch Operations","authors":["E. Wilde"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7352":{"rfcNumber":"RFC7352","href":"https://www.rfc-editor.org/rfc/rfc7352","title":"Sieve Email Filtering: Detecting Duplicate Deliveries","authors":["S. Bosch"],"rawDate":"2014-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7353":{"rfcNumber":"RFC7353","href":"https://www.rfc-editor.org/rfc/rfc7353","title":"Security Requirements for BGP Path Validation","authors":["S. Bellovin","R. Bush","D. Ward"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7354":{"rfcNumber":"RFC7354","href":"https://www.rfc-editor.org/rfc/rfc7354","title":"Update to the Registrant Information for the Digital Video Broadcasting Project (DVB) Uniform Resource Name (URN) Namespace","authors":["A. Adolf","P. Siebert"],"rawDate":"2014-09","status":"Informational","updates":["RFC5328"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7355":{"rfcNumber":"RFC7355","href":"https://www.rfc-editor.org/rfc/rfc7355","title":"Indicating WebSocket Protocol as a Transport in the Session Initiation Protocol (SIP) Common Log Format (CLF)","authors":["G. Salgueiro","V. Pascual","A. Roman","S. Garcia"],"rawDate":"2014-09","status":"Informational","updates":["RFC6873"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7356":{"rfcNumber":"RFC7356","href":"https://www.rfc-editor.org/rfc/rfc7356","title":"IS-IS Flooding Scope Link State PDUs (LSPs)","authors":["L. Ginsberg","S. Previdi","Y. Yang"],"rawDate":"2014-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7357":{"rfcNumber":"RFC7357","href":"https://www.rfc-editor.org/rfc/rfc7357","title":"Transparent Interconnection of Lots of Links (TRILL): End Station Address Distribution Information (ESADI) Protocol","authors":["H. Zhai","F. Hu","R. Perlman","D. Eastlake 3rd","O. Stokes"],"rawDate":"2014-09","status":"Proposed Standard","updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7358":{"rfcNumber":"RFC7358","href":"https://www.rfc-editor.org/rfc/rfc7358","title":"Label Advertisement Discipline for LDP Forwarding Equivalence Classes (FECs)","authors":["K. Raza","S. Boutros","L. Martini","N. Leymann"],"rawDate":"2014-10","status":"Proposed Standard","updates":["RFC3212","RFC4447","RFC5036","RFC5918","RFC6388","RFC7140"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7359":{"rfcNumber":"RFC7359","href":"https://www.rfc-editor.org/rfc/rfc7359","title":"Layer 3 Virtual Private Network (VPN) Tunnel Traffic Leakages in Dual-Stack Hosts/Networks","authors":["F. Gont"],"rawDate":"2014-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc736":{"aliasOf":"rfc0736"},"rfc7360":{"rfcNumber":"RFC7360","href":"https://www.rfc-editor.org/rfc/rfc7360","title":"Datagram Transport Layer Security (DTLS) as a Transport Layer for RADIUS","authors":["A. DeKok"],"rawDate":"2014-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7361":{"rfcNumber":"RFC7361","href":"https://www.rfc-editor.org/rfc/rfc7361","title":"LDP Extensions for Optimized MAC Address Withdrawal in a Hierarchical Virtual Private LAN Service (H-VPLS)","authors":["P. Dutta","F. Balus","O. Stokes","G. Calvignac","D. Fedyk"],"rawDate":"2014-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7361","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7362":{"rfcNumber":"RFC7362","href":"https://www.rfc-editor.org/rfc/rfc7362","title":"Latching: Hosted NAT Traversal (HNT) for Media in Real-Time Communication","authors":["E. Ivov","H. Kaplan","D. Wing"],"rawDate":"2014-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7363":{"rfcNumber":"RFC7363","href":"https://www.rfc-editor.org/rfc/rfc7363","title":"Self-Tuning Distributed Hash Table (DHT) for REsource LOcation And Discovery (RELOAD)","authors":["J. Maenpaa","G. Camarillo"],"rawDate":"2014-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7364":{"rfcNumber":"RFC7364","href":"https://www.rfc-editor.org/rfc/rfc7364","title":"Problem Statement: Overlays for Network Virtualization","authors":["T. Narten, Ed.","E. Gray, Ed.","D. Black","L. Fang","L. Kreeger","M. Napierala"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7365":{"rfcNumber":"RFC7365","href":"https://www.rfc-editor.org/rfc/rfc7365","title":"Framework for Data Center (DC) Network Virtualization","authors":["M. Lasserre","F. Balus","T. Morin","N. Bitar","Y. Rekhter"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7366":{"rfcNumber":"RFC7366","href":"https://www.rfc-editor.org/rfc/rfc7366","title":"Encrypt-then-MAC for Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)","authors":["P. Gutmann"],"rawDate":"2014-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7366","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7367":{"rfcNumber":"RFC7367","href":"https://www.rfc-editor.org/rfc/rfc7367","title":"Definition of Managed Objects for the Mobile Ad Hoc Network (MANET) Simplified Multicast Framework Relay Set Process","authors":["R. Cole","J. Macker","B. Adamson"],"rawDate":"2014-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7368":{"rfcNumber":"RFC7368","href":"https://www.rfc-editor.org/rfc/rfc7368","title":"IPv6 Home Networking Architecture Principles","authors":["T. Chown, Ed.","J. Arkko","A. Brandt","O. Troan","J. Weil"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7369":{"rfcNumber":"RFC7369","href":"https://www.rfc-editor.org/rfc/rfc7369","title":"GMPLS RSVP-TE Extensions for Ethernet Operations, Administration, and Maintenance (OAM) Configuration","authors":["A. Takacs","B. Gero","H. Long"],"rawDate":"2014-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc737":{"aliasOf":"rfc0737"},"rfc7370":{"rfcNumber":"RFC7370","href":"https://www.rfc-editor.org/rfc/rfc7370","title":"Updates to the IS-IS TLV Codepoints Registry","authors":["L. Ginsberg"],"rawDate":"2014-09","status":"Proposed Standard","updatedBy":["RFC9352"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7371":{"rfcNumber":"RFC7371","href":"https://www.rfc-editor.org/rfc/rfc7371","title":"Updates to the IPv6 Multicast Addressing Architecture","authors":["M. Boucadair","S. Venaas"],"rawDate":"2014-09","status":"Proposed Standard","updates":["RFC3306","RFC3956","RFC4291"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7372":{"rfcNumber":"RFC7372","href":"https://www.rfc-editor.org/rfc/rfc7372","title":"Email Authentication Status Codes","authors":["M. Kucherawy"],"rawDate":"2014-09","status":"Proposed Standard","updates":["RFC7208"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7373":{"rfcNumber":"RFC7373","href":"https://www.rfc-editor.org/rfc/rfc7373","title":"Textual Representation of IP Flow Information Export (IPFIX) Abstract Data Types","authors":["B. Trammell"],"rawDate":"2014-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7374":{"rfcNumber":"RFC7374","href":"https://www.rfc-editor.org/rfc/rfc7374","title":"Service Discovery Usage for REsource LOcation And Discovery (RELOAD)","authors":["J. Maenpaa","G. Camarillo"],"rawDate":"2014-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7375":{"rfcNumber":"RFC7375","href":"https://www.rfc-editor.org/rfc/rfc7375","title":"Secure Telephone Identity Threat Model","authors":["J. Peterson"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7376":{"rfcNumber":"RFC7376","href":"https://www.rfc-editor.org/rfc/rfc7376","title":"Problems with Session Traversal Utilities for NAT (STUN) Long-Term Authentication for Traversal Using Relays around NAT (TURN)","authors":["T. Reddy","R. Ravindranath","M. Perumal","A. Yegin"],"rawDate":"2014-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7377":{"rfcNumber":"RFC7377","href":"https://www.rfc-editor.org/rfc/rfc7377","title":"IMAP4 Multimailbox SEARCH Extension","authors":["B. Leiba","A. Melnikov"],"rawDate":"2014-10","status":"Proposed Standard","updates":["RFC4466"],"obsoletes":["RFC6237"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7378":{"rfcNumber":"RFC7378","href":"https://www.rfc-editor.org/rfc/rfc7378","title":"Trustworthy Location","authors":["H. Tschofenig","H. Schulzrinne","B. Aboba, Ed."],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7379":{"rfcNumber":"RFC7379","href":"https://www.rfc-editor.org/rfc/rfc7379","title":"Problem Statement and Goals for Active-Active Connection at the Transparent Interconnection of Lots of Links (TRILL) Edge","authors":["Y. Li","W. Hao","R. Perlman","J. Hudson","H. Zhai"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc738":{"aliasOf":"rfc0738"},"rfc7380":{"rfcNumber":"RFC7380","href":"https://www.rfc-editor.org/rfc/rfc7380","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for MPEG2 Transport Stream (TS) Program Specific Information (PSI) Decodability Statistics Metrics Reporting","authors":["J. Tong","C. Bi, Ed.","R. Even","Q. Wu, Ed.","R. Huang"],"rawDate":"2014-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7381":{"rfcNumber":"RFC7381","href":"https://www.rfc-editor.org/rfc/rfc7381","title":"Enterprise IPv6 Deployment Guidelines","authors":["K. Chittimaneni","T. Chown","L. Howard","V. Kuarsingh","Y. Pouffary","E. Vyncke"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7382":{"rfcNumber":"RFC7382","href":"https://www.rfc-editor.org/rfc/rfc7382","title":"Template for a Certification Practice Statement (CPS) for the Resource PKI (RPKI)","authors":["S. Kent","D. Kong","K. Seo"],"rawDate":"2015-04","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7383":{"rfcNumber":"RFC7383","href":"https://www.rfc-editor.org/rfc/rfc7383","title":"Internet Key Exchange Protocol Version 2 (IKEv2) Message Fragmentation","authors":["V. Smyslov"],"rawDate":"2014-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7384":{"rfcNumber":"RFC7384","href":"https://www.rfc-editor.org/rfc/rfc7384","title":"Security Requirements of Time Protocols in Packet Switched Networks","authors":["T. Mizrahi"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7385":{"rfcNumber":"RFC7385","href":"https://www.rfc-editor.org/rfc/rfc7385","title":"IANA Registry for P-Multicast Service Interface (PMSI) Tunnel Type Code Points","authors":["L. Andersson","G. Swallow"],"rawDate":"2014-10","status":"Proposed Standard","updatedBy":["RFC8317","RFC8338"],"updates":["RFC6514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7386":{"rfcNumber":"RFC7386","href":"https://www.rfc-editor.org/rfc/rfc7386","title":"JSON Merge Patch","authors":["P. Hoffman","J. Snell"],"rawDate":"2014-10","status":"Proposed Standard","obsoletedBy":["RFC7396"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7386","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7387":{"rfcNumber":"RFC7387","href":"https://www.rfc-editor.org/rfc/rfc7387","title":"A Framework for Ethernet Tree (E-Tree) Service over a Multiprotocol Label Switching (MPLS) Network","authors":["R. Key, Ed.","L. Yong, Ed.","S. Delord","F. Jounay","L. Jin"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7388":{"rfcNumber":"RFC7388","href":"https://www.rfc-editor.org/rfc/rfc7388","title":"Definition of Managed Objects for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)","authors":["J. Schoenwaelder","A. Sehgal","T. Tsou","C. Zhou"],"rawDate":"2014-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7389":{"rfcNumber":"RFC7389","href":"https://www.rfc-editor.org/rfc/rfc7389","title":"Separation of Control and User Plane for Proxy Mobile IPv6","authors":["R. Wakikawa","R. Pazhyannur","S. Gundavelli","C. Perkins"],"rawDate":"2014-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc739":{"aliasOf":"rfc0739"},"rfc7390":{"rfcNumber":"RFC7390","href":"https://www.rfc-editor.org/rfc/rfc7390","title":"Group Communication for the Constrained Application Protocol (CoAP)","authors":["A. Rahman, Ed.","E. Dijk, Ed."],"rawDate":"2014-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7391":{"rfcNumber":"RFC7391","href":"https://www.rfc-editor.org/rfc/rfc7391","title":"Forwarding and Control Element Separation (ForCES) Protocol Extensions","authors":["J. Hadi Salim"],"rawDate":"2014-10","status":"Proposed Standard","updates":["RFC5810","RFC7121"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7392":{"rfcNumber":"RFC7392","href":"https://www.rfc-editor.org/rfc/rfc7392","title":"Explicit Path Routing for Dynamic Multi-Segment Pseudowires","authors":["P. Dutta","M. Bocci","L. Martini"],"rawDate":"2014-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7393":{"rfcNumber":"RFC7393","href":"https://www.rfc-editor.org/rfc/rfc7393","title":"Using the Port Control Protocol (PCP) to Update Dynamic DNS","authors":["X. Deng","M. Boucadair","Q. Zhao","J. Huang","C. Zhou"],"rawDate":"2014-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7394":{"rfcNumber":"RFC7394","href":"https://www.rfc-editor.org/rfc/rfc7394","title":"Definition of Time to Live TLV for LSP-Ping Mechanisms","authors":["S. Boutros","S. Sivabalan","G. Swallow","S. Saxena","V. Manral","S. Aldrin"],"rawDate":"2014-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7394","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7395":{"rfcNumber":"RFC7395","href":"https://www.rfc-editor.org/rfc/rfc7395","title":"An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket","authors":["L. Stout, Ed.","J. Moffitt","E. Cestari"],"rawDate":"2014-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7396":{"rfcNumber":"RFC7396","href":"https://www.rfc-editor.org/rfc/rfc7396","title":"JSON Merge Patch","authors":["P. Hoffman","J. Snell"],"rawDate":"2014-10","status":"Proposed Standard","obsoletes":["RFC7386"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7397":{"rfcNumber":"RFC7397","href":"https://www.rfc-editor.org/rfc/rfc7397","title":"Report from the Smart Object Security Workshop","authors":["J. Gilger","H. Tschofenig"],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7398":{"rfcNumber":"RFC7398","href":"https://www.rfc-editor.org/rfc/rfc7398","title":"A Reference Path and Measurement Points for Large-Scale Measurement of Broadband Performance","authors":["M. Bagnulo","T. Burbridge","S. Crawford","P. Eardley","A. Morton"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7399":{"rfcNumber":"RFC7399","href":"https://www.rfc-editor.org/rfc/rfc7399","title":"Unanswered Questions in the Path Computation Element Architecture","authors":["A. Farrel","D. King"],"rawDate":"2014-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc74":{"aliasOf":"rfc0074"},"rfc740":{"aliasOf":"rfc0740"},"rfc7400":{"rfcNumber":"RFC7400","href":"https://www.rfc-editor.org/rfc/rfc7400","title":"6LoWPAN-GHC: Generic Header Compression for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)","authors":["C. Bormann"],"rawDate":"2014-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7401":{"rfcNumber":"RFC7401","href":"https://www.rfc-editor.org/rfc/rfc7401","title":"Host Identity Protocol Version 2 (HIPv2)","authors":["R. Moskowitz, Ed.","T. Heer","P. Jokela","T. Henderson"],"rawDate":"2015-04","status":"Proposed Standard","updatedBy":["RFC8002","RFC9374"],"obsoletes":["RFC5201"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7401","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7402":{"rfcNumber":"RFC7402","href":"https://www.rfc-editor.org/rfc/rfc7402","title":"Using the Encapsulating Security Payload (ESP) Transport Format with the Host Identity Protocol (HIP)","authors":["P. Jokela","R. Moskowitz","J. Melen"],"rawDate":"2015-04","status":"Proposed Standard","obsoletes":["RFC5202"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7403":{"rfcNumber":"RFC7403","href":"https://www.rfc-editor.org/rfc/rfc7403","title":"A Media-Based Traceroute Function for the Session Initiation Protocol (SIP)","authors":["H. Kaplan"],"rawDate":"2014-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7404":{"rfcNumber":"RFC7404","href":"https://www.rfc-editor.org/rfc/rfc7404","title":"Using Only Link-Local Addressing inside an IPv6 Network","authors":["M. Behringer","E. Vyncke"],"rawDate":"2014-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7404","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7405":{"rfcNumber":"RFC7405","href":"https://www.rfc-editor.org/rfc/rfc7405","title":"Case-Sensitive String Support in ABNF","authors":["P. Kyzivat"],"rawDate":"2014-12","status":"Proposed Standard","updates":["RFC5234"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7405","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7406":{"rfcNumber":"RFC7406","href":"https://www.rfc-editor.org/rfc/rfc7406","title":"Extensions to the Emergency Services Architecture for Dealing With Unauthenticated and Unauthorized Devices","authors":["H. Schulzrinne","S. McCann","G. Bajko","H. Tschofenig","D. Kroeselberg"],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7407":{"rfcNumber":"RFC7407","href":"https://www.rfc-editor.org/rfc/rfc7407","title":"A YANG Data Model for SNMP Configuration","authors":["M. Bjorklund","J. Schoenwaelder"],"rawDate":"2014-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7407","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7408":{"rfcNumber":"RFC7408","href":"https://www.rfc-editor.org/rfc/rfc7408","title":"Forwarding and Control Element Separation (ForCES) Model Extension","authors":["E. Haleplidis"],"rawDate":"2014-11","status":"Proposed Standard","updates":["RFC5812"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7408","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7409":{"rfcNumber":"RFC7409","href":"https://www.rfc-editor.org/rfc/rfc7409","title":"Forwarding and Control Element Separation (ForCES) Packet Parallelization","authors":["E. Haleplidis","J. Halpern"],"rawDate":"2014-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc741":{"aliasOf":"rfc0741"},"rfc7410":{"rfcNumber":"RFC7410","href":"https://www.rfc-editor.org/rfc/rfc7410","title":"A Property Types Registry for the Authentication-Results Header Field","authors":["M. Kucherawy"],"rawDate":"2014-12","status":"Proposed Standard","obsoletedBy":["RFC7601"],"updates":["RFC7001"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7411":{"rfcNumber":"RFC7411","href":"https://www.rfc-editor.org/rfc/rfc7411","title":"Multicast Listener Extensions for Mobile IPv6 (MIPv6) and Proxy Mobile IPv6 (PMIPv6) Fast Handovers","authors":["T. Schmidt, Ed.","M. Waehlisch","R. Koodli","G. Fairhurst","D. Liu"],"rawDate":"2014-11","status":"Experimental","updates":["RFC5568"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7412":{"rfcNumber":"RFC7412","href":"https://www.rfc-editor.org/rfc/rfc7412","title":"Requirements for MPLS Transport Profile (MPLS-TP) Shared Mesh Protection","authors":["Y. Weingarten","S. Aldrin","P. Pan","J. Ryoo","G. Mirsky"],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7413":{"rfcNumber":"RFC7413","href":"https://www.rfc-editor.org/rfc/rfc7413","title":"TCP Fast Open","authors":["Y. Cheng","J. Chu","S. Radhakrishnan","A. Jain"],"rawDate":"2014-12","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7413","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7414":{"rfcNumber":"RFC7414","href":"https://www.rfc-editor.org/rfc/rfc7414","title":"A Roadmap for Transmission Control Protocol (TCP) Specification Documents","authors":["M. Duke","R. Braden","W. Eddy","E. Blanton","A. Zimmermann"],"rawDate":"2015-02","status":"Informational","updatedBy":["RFC7805"],"obsoletes":["RFC4614"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7415":{"rfcNumber":"RFC7415","href":"https://www.rfc-editor.org/rfc/rfc7415","title":"Session Initiation Protocol (SIP) Rate Control","authors":["E. Noel","P. Williams"],"rawDate":"2015-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7416":{"rfcNumber":"RFC7416","href":"https://www.rfc-editor.org/rfc/rfc7416","title":"A Security Threat Analysis for the Routing Protocol for Low-Power and Lossy Networks (RPLs)","authors":["T. Tsao","R. Alexander","M. Dohler","V. Daza","A. Lozano","M. Richardson, Ed."],"rawDate":"2015-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7417":{"rfcNumber":"RFC7417","href":"https://www.rfc-editor.org/rfc/rfc7417","title":"Extensions to Generic Aggregate RSVP for IPv4 and IPv6 Reservations over Pre-Congestion Notification (PCN) Domains","authors":["G. Karagiannis","A. Bhargava"],"rawDate":"2014-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7418":{"rfcNumber":"RFC7418","href":"https://www.rfc-editor.org/rfc/rfc7418","title":"An IRTF Primer for IETF Participants","authors":["S. Dawkins, Ed."],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7419":{"rfcNumber":"RFC7419","href":"https://www.rfc-editor.org/rfc/rfc7419","title":"Common Interval Support in Bidirectional Forwarding Detection","authors":["N. Akiya","M. Binderberger","G. Mirsky"],"rawDate":"2014-12","status":"Informational","updates":["RFC5880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc742":{"aliasOf":"rfc0742"},"rfc7420":{"rfcNumber":"RFC7420","href":"https://www.rfc-editor.org/rfc/rfc7420","title":"Path Computation Element Communication Protocol (PCEP) Management Information Base (MIB) Module","authors":["A. Koushik","E. Stephan","Q. Zhao","D. King","J. Hardwick"],"rawDate":"2014-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7420","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7421":{"rfcNumber":"RFC7421","href":"https://www.rfc-editor.org/rfc/rfc7421","title":"Analysis of the 64-bit Boundary in IPv6 Addressing","authors":["B. Carpenter, Ed.","T. Chown","F. Gont","S. Jiang","A. Petrescu","A. Yourtchenko"],"rawDate":"2015-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7421","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7422":{"rfcNumber":"RFC7422","href":"https://www.rfc-editor.org/rfc/rfc7422","title":"Deterministic Address Mapping to Reduce Logging in Carrier-Grade NAT Deployments","authors":["C. Donley","C. Grundemann","V. Sarawat","K. Sundaresan","O. Vautrin"],"rawDate":"2014-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7422","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7423":{"rfcNumber":"RFC7423","href":"https://www.rfc-editor.org/rfc/rfc7423","title":"Diameter Applications Design Guidelines","authors":["L. Morand, Ed.","V. Fajardo","H. Tschofenig"],"rawDate":"2014-11","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7424":{"rfcNumber":"RFC7424","href":"https://www.rfc-editor.org/rfc/rfc7424","title":"Mechanisms for Optimizing Link Aggregation Group (LAG) and Equal-Cost Multipath (ECMP) Component Link Utilization in Networks","authors":["R. Krishnan","L. Yong","A. Ghanwani","N. So","B. Khasnabish"],"rawDate":"2015-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7425":{"rfcNumber":"RFC7425","href":"https://www.rfc-editor.org/rfc/rfc7425","title":"Adobe's RTMFP Profile for Flash Communication","authors":["M. Thornburgh"],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7426":{"rfcNumber":"RFC7426","href":"https://www.rfc-editor.org/rfc/rfc7426","title":"Software-Defined Networking (SDN): Layers and Architecture Terminology","authors":["E. Haleplidis, Ed.","K. Pentikousis, Ed.","S. Denazis","J. Hadi Salim","D. Meyer","O. Koufopavlou"],"rawDate":"2015-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7426","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7427":{"rfcNumber":"RFC7427","href":"https://www.rfc-editor.org/rfc/rfc7427","title":"Signature Authentication in the Internet Key Exchange Version 2 (IKEv2)","authors":["T. Kivinen","J. Snyder"],"rawDate":"2015-01","status":"Proposed Standard","updates":["RFC7296"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7427","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7428":{"rfcNumber":"RFC7428","href":"https://www.rfc-editor.org/rfc/rfc7428","title":"Transmission of IPv6 Packets over ITU-T G.9959 Networks","authors":["A. Brandt","J. Buron"],"rawDate":"2015-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7429":{"rfcNumber":"RFC7429","href":"https://www.rfc-editor.org/rfc/rfc7429","title":"Distributed Mobility Management: Current Practices and Gap Analysis","authors":["D. Liu, Ed.","JC. Zuniga, Ed.","P. Seite","H. Chan","CJ. Bernardos"],"rawDate":"2015-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc743":{"aliasOf":"rfc0743"},"rfc7430":{"rfcNumber":"RFC7430","href":"https://www.rfc-editor.org/rfc/rfc7430","title":"Analysis of Residual Threats and Possible Fixes for Multipath TCP (MPTCP)","authors":["M. Bagnulo","C. Paasch","F. Gont","O. Bonaventure","C. Raiciu"],"rawDate":"2015-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7430","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7431":{"rfcNumber":"RFC7431","href":"https://www.rfc-editor.org/rfc/rfc7431","title":"Multicast-Only Fast Reroute","authors":["A. Karan","C. Filsfils","IJ. Wijnands, Ed.","B. Decraene"],"rawDate":"2015-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7432":{"rfcNumber":"RFC7432","href":"https://www.rfc-editor.org/rfc/rfc7432","title":"BGP MPLS-Based Ethernet VPN","authors":["A. Sajassi, Ed.","R. Aggarwal","N. Bitar","A. Isaac","J. Uttaro","J. Drake","W. Henderickx"],"rawDate":"2015-02","status":"Proposed Standard","updatedBy":["RFC8584","RFC9161"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7432","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7433":{"rfcNumber":"RFC7433","href":"https://www.rfc-editor.org/rfc/rfc7433","title":"A Mechanism for Transporting User-to-User Call Control Information in SIP","authors":["A. Johnston","J. Rafferty"],"rawDate":"2015-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7434":{"rfcNumber":"RFC7434","href":"https://www.rfc-editor.org/rfc/rfc7434","title":"Interworking ISDN Call Control User Information with SIP","authors":["K. Drage, Ed.","A. Johnston"],"rawDate":"2015-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7434","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7435":{"rfcNumber":"RFC7435","href":"https://www.rfc-editor.org/rfc/rfc7435","title":"Opportunistic Security: Some Protection Most of the Time","authors":["V. Dukhovni"],"rawDate":"2014-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7436":{"rfcNumber":"RFC7436","href":"https://www.rfc-editor.org/rfc/rfc7436","title":"IP-Only LAN Service (IPLS)","authors":["H. Shah","E. Rosen","F. Le Faucheur","G. Heron"],"rawDate":"2015-01","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7437":{"rfcNumber":"RFC7437","href":"https://www.rfc-editor.org/rfc/rfc7437","title":"IAB, IESG, and IAOC Selection, Confirmation, and Recall Process: Operation of the Nominating and Recall Committees","authors":["M. Kucherawy, Ed."],"rawDate":"2015-01","status":"Best Current Practice","updatedBy":["RFC8318"],"obsoletedBy":["RFC8713"],"obsoletes":["RFC3777","RFC5078","RFC5633","RFC5680","RFC6859"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7438":{"rfcNumber":"RFC7438","href":"https://www.rfc-editor.org/rfc/rfc7438","title":"Multipoint LDP (mLDP) In-Band Signaling with Wildcards","authors":["IJ. Wijnands, Ed.","E. Rosen","A. Gulko","U. Joorde","J. Tantsura"],"rawDate":"2015-01","status":"Proposed Standard","updates":["RFC6826","RFC7246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7439":{"rfcNumber":"RFC7439","href":"https://www.rfc-editor.org/rfc/rfc7439","title":"Gap Analysis for Operating IPv6-Only MPLS Networks","authors":["W. George, Ed.","C. Pignataro, Ed."],"rawDate":"2015-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7439","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc744":{"aliasOf":"rfc0744"},"rfc7440":{"rfcNumber":"RFC7440","href":"https://www.rfc-editor.org/rfc/rfc7440","title":"TFTP Windowsize Option","authors":["P. Masotta"],"rawDate":"2015-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7441":{"rfcNumber":"RFC7441","href":"https://www.rfc-editor.org/rfc/rfc7441","title":"Encoding Multipoint LDP (mLDP) Forwarding Equivalence Classes (FECs) in the NLRI of BGP MCAST-VPN Routes","authors":["IJ. Wijnands","E. Rosen","U. Joorde"],"rawDate":"2015-01","status":"Proposed Standard","updates":["RFC6514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7442":{"rfcNumber":"RFC7442","href":"https://www.rfc-editor.org/rfc/rfc7442","title":"Carrying Protocol Independent Multicast - Sparse Mode (PIM-SM) in Any-Source Multicast (ASM) Mode Trees over Multipoint LDP (mLDP)","authors":["Y. Rekhter","R. Aggarwal","N. Leymann","W. Henderickx","Q. Zhao","R. Li"],"rawDate":"2015-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7443":{"rfcNumber":"RFC7443","href":"https://www.rfc-editor.org/rfc/rfc7443","title":"Application-Layer Protocol Negotiation (ALPN) Labels for Session Traversal Utilities for NAT (STUN) Usages","authors":["P. Patil","T. Reddy","G. Salgueiro","M. Petit-Huguenin"],"rawDate":"2015-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7444":{"rfcNumber":"RFC7444","href":"https://www.rfc-editor.org/rfc/rfc7444","title":"Security Labels in Internet Email","authors":["K. Zeilenga","A. Melnikov"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7445":{"rfcNumber":"RFC7445","href":"https://www.rfc-editor.org/rfc/rfc7445","title":"Analysis of Failure Cases in IPv6 Roaming Scenarios","authors":["G. Chen","H. Deng","D. Michaud","J. Korhonen","M. Boucadair"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7446":{"rfcNumber":"RFC7446","href":"https://www.rfc-editor.org/rfc/rfc7446","title":"Routing and Wavelength Assignment Information Model for Wavelength Switched Optical Networks","authors":["Y. Lee, Ed.","G. Bernstein, Ed.","D. Li","W. Imajuku"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7447":{"rfcNumber":"RFC7447","href":"https://www.rfc-editor.org/rfc/rfc7447","title":"Deprecation of BGP Entropy Label Capability Attribute","authors":["J. Scudder","K. Kompella"],"rawDate":"2015-02","status":"Proposed Standard","updates":["RFC6790"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7448":{"rfcNumber":"RFC7448","href":"https://www.rfc-editor.org/rfc/rfc7448","title":"MIB Transfer from the IETF to the IEEE 802.3 WG","authors":["T. Taylor, Ed.","D. Romascanu"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7449":{"rfcNumber":"RFC7449","href":"https://www.rfc-editor.org/rfc/rfc7449","title":"Path Computation Element Communication Protocol (PCEP) Requirements for Wavelength Switched Optical Network (WSON) Routing and Wavelength Assignment","authors":["Y. Lee, Ed.","G. Bernstein, Ed.","J. Martensson","T. Takeda","T. Tsuritani","O. Gonzalez de Dios"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc745":{"aliasOf":"rfc0745"},"rfc7450":{"rfcNumber":"RFC7450","href":"https://www.rfc-editor.org/rfc/rfc7450","title":"Automatic Multicast Tunneling","authors":["G. Bumgardner"],"rawDate":"2015-02","status":"Proposed Standard","updatedBy":["RFC8777"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7451":{"rfcNumber":"RFC7451","href":"https://www.rfc-editor.org/rfc/rfc7451","title":"Extension Registry for the Extensible Provisioning Protocol","authors":["S. Hollenbeck"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7452":{"rfcNumber":"RFC7452","href":"https://www.rfc-editor.org/rfc/rfc7452","title":"Architectural Considerations in Smart Object Networking","authors":["H. Tschofenig","J. Arkko","D. Thaler","D. McPherson"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7453":{"rfcNumber":"RFC7453","href":"https://www.rfc-editor.org/rfc/rfc7453","title":"MPLS Transport Profile (MPLS-TP) Traffic Engineering (TE) Management Information Base (MIB)","authors":["V. Mahalingam","K. Sampath","S. Aldrin","T. Nadeau"],"rawDate":"2015-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7454":{"rfcNumber":"RFC7454","href":"https://www.rfc-editor.org/rfc/rfc7454","title":"BGP Operations and Security","authors":["J. Durand","I. Pepelnjak","G. Doering"],"rawDate":"2015-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7455":{"rfcNumber":"RFC7455","href":"https://www.rfc-editor.org/rfc/rfc7455","title":"Transparent Interconnection of Lots of Links (TRILL): Fault Management","authors":["T. Senevirathne","N. Finn","S. Salam","D. Kumar","D. Eastlake 3rd","S. Aldrin","Y. Li"],"rawDate":"2015-03","status":"Proposed Standard","updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7456":{"rfcNumber":"RFC7456","href":"https://www.rfc-editor.org/rfc/rfc7456","title":"Loss and Delay Measurement in Transparent Interconnection of Lots of Links (TRILL)","authors":["T. Mizrahi","T. Senevirathne","S. Salam","D. Kumar","D. Eastlake 3rd"],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7457":{"rfcNumber":"RFC7457","href":"https://www.rfc-editor.org/rfc/rfc7457","title":"Summarizing Known Attacks on Transport Layer Security (TLS) and Datagram TLS (DTLS)","authors":["Y. Sheffer","R. Holz","P. Saint-Andre"],"rawDate":"2015-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7457","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7458":{"rfcNumber":"RFC7458","href":"https://www.rfc-editor.org/rfc/rfc7458","title":"Extensible Authentication Protocol (EAP) Attributes for Wi-Fi Integration with the Evolved Packet Core","authors":["R. Valmikam","R. Koodli"],"rawDate":"2015-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7459":{"rfcNumber":"RFC7459","href":"https://www.rfc-editor.org/rfc/rfc7459","title":"Representation of Uncertainty and Confidence in the Presence Information Data Format Location Object (PIDF-LO)","authors":["M. Thomson","J. Winterbottom"],"rawDate":"2015-02","status":"Proposed Standard","updates":["RFC3693","RFC4119","RFC5491"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc746":{"aliasOf":"rfc0746"},"rfc7460":{"rfcNumber":"RFC7460","href":"https://www.rfc-editor.org/rfc/rfc7460","title":"Monitoring and Control MIB for Power and Energy","authors":["M. Chandramouli","B. Claise","B. Schoening","J. Quittek","T. Dietz"],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7461":{"rfcNumber":"RFC7461","href":"https://www.rfc-editor.org/rfc/rfc7461","title":"Energy Object Context MIB","authors":["J. Parello","B. Claise","M. Chandramouli"],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7462":{"rfcNumber":"RFC7462","href":"https://www.rfc-editor.org/rfc/rfc7462","title":"URNs for the Alert-Info Header Field of the Session Initiation Protocol (SIP)","authors":["L. Liess, Ed.","R. Jesske","A. Johnston","D. Worley","P. Kyzivat"],"rawDate":"2015-03","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7463":{"rfcNumber":"RFC7463","href":"https://www.rfc-editor.org/rfc/rfc7463","title":"Shared Appearances of a Session Initiation Protocol (SIP) Address of Record (AOR)","authors":["A. Johnston, Ed.","M. Soroushnejad, Ed.","V. Venkataramanan"],"rawDate":"2015-03","status":"Proposed Standard","updates":["RFC3261","RFC4235"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7463","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7464":{"rfcNumber":"RFC7464","href":"https://www.rfc-editor.org/rfc/rfc7464","title":"JavaScript Object Notation (JSON) Text Sequences","authors":["N. Williams"],"rawDate":"2015-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7464","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7465":{"rfcNumber":"RFC7465","href":"https://www.rfc-editor.org/rfc/rfc7465","title":"Prohibiting RC4 Cipher Suites","authors":["A. Popov"],"rawDate":"2015-02","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC5246","RFC4346","RFC2246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7466":{"rfcNumber":"RFC7466","href":"https://www.rfc-editor.org/rfc/rfc7466","title":"An Optimization for the Mobile Ad Hoc Network (MANET) Neighborhood Discovery Protocol (NHDP)","authors":["C. Dearlove","T. Clausen"],"rawDate":"2015-03","status":"Proposed Standard","updates":["RFC6130","RFC7181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7467":{"rfcNumber":"RFC7467","href":"https://www.rfc-editor.org/rfc/rfc7467","title":"URN Namespace for the North Atlantic Treaty Organization (NATO)","authors":["A. Murdock"],"rawDate":"2015-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7468":{"rfcNumber":"RFC7468","href":"https://www.rfc-editor.org/rfc/rfc7468","title":"Textual Encodings of PKIX, PKCS, and CMS Structures","authors":["S. Josefsson","S. Leonard"],"rawDate":"2015-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7468","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7469":{"rfcNumber":"RFC7469","href":"https://www.rfc-editor.org/rfc/rfc7469","title":"Public Key Pinning Extension for HTTP","authors":["C. Evans","C. Palmer","R. Sleevi"],"rawDate":"2015-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7469","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc747":{"aliasOf":"rfc0747"},"rfc7470":{"rfcNumber":"RFC7470","href":"https://www.rfc-editor.org/rfc/rfc7470","title":"Conveying Vendor-Specific Constraints in the Path Computation Element Communication Protocol","authors":["F. Zhang","A. Farrel"],"rawDate":"2015-03","status":"Proposed Standard","obsoletes":["RFC7150"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7471":{"rfcNumber":"RFC7471","href":"https://www.rfc-editor.org/rfc/rfc7471","title":"OSPF Traffic Engineering (TE) Metric Extensions","authors":["S. Giacalone","D. Ward","J. Drake","A. Atlas","S. Previdi"],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7472":{"rfcNumber":"RFC7472","href":"https://www.rfc-editor.org/rfc/rfc7472","title":"Internet Printing Protocol (IPP) over HTTPS Transport Binding and the 'ipps' URI Scheme","authors":["I. McDonald","M. Sweet"],"rawDate":"2015-03","status":"Proposed Standard","updates":["RFC2910","RFC2911"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7473":{"rfcNumber":"RFC7473","href":"https://www.rfc-editor.org/rfc/rfc7473","title":"Controlling State Advertisements of Non-negotiated LDP Applications","authors":["K. Raza","S. Boutros"],"rawDate":"2015-03","status":"Proposed Standard","updatedBy":["RFC8223"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7474":{"rfcNumber":"RFC7474","href":"https://www.rfc-editor.org/rfc/rfc7474","title":"Security Extension for OSPFv2 When Using Manual Key Management","authors":["M. Bhatia","S. Hartman","D. Zhang","A. Lindem, Ed."],"rawDate":"2015-04","status":"Proposed Standard","updates":["RFC2328","RFC5709"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7475":{"rfcNumber":"RFC7475","href":"https://www.rfc-editor.org/rfc/rfc7475","title":"Increasing the Number of Area Directors in an IETF Area","authors":["S. Dawkins"],"rawDate":"2015-03","status":"Best Current Practice","updates":["RFC2026","RFC2418"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7476":{"rfcNumber":"RFC7476","href":"https://www.rfc-editor.org/rfc/rfc7476","title":"Information-Centric Networking: Baseline Scenarios","authors":["K. Pentikousis, Ed.","B. Ohlman","D. Corujo","G. Boggia","G. Tyson","E. Davies","A. Molinaro","S. Eum"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7477":{"rfcNumber":"RFC7477","href":"https://www.rfc-editor.org/rfc/rfc7477","title":"Child-to-Parent Synchronization in DNS","authors":["W. Hardaker"],"rawDate":"2015-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7477","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7478":{"rfcNumber":"RFC7478","href":"https://www.rfc-editor.org/rfc/rfc7478","title":"Web Real-Time Communication Use Cases and Requirements","authors":["C. Holmberg","S. Hakansson","G. Eriksson"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7479":{"rfcNumber":"RFC7479","href":"https://www.rfc-editor.org/rfc/rfc7479","title":"Using Ed25519 in SSHFP Resource Records","authors":["S. Moonesamy"],"rawDate":"2015-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7479","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc748":{"aliasOf":"rfc0748"},"rfc7480":{"rfcNumber":"RFC7480","href":"https://www.rfc-editor.org/rfc/rfc7480","title":"HTTP Usage in the Registration Data Access Protocol (RDAP)","authors":["A. Newton","B. Ellacott","N. Kong"],"rawDate":"2015-03","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7481":{"rfcNumber":"RFC7481","href":"https://www.rfc-editor.org/rfc/rfc7481","title":"Security Services for the Registration Data Access Protocol (RDAP)","authors":["S. Hollenbeck","N. Kong"],"rawDate":"2015-03","status":"Internet Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7482":{"rfcNumber":"RFC7482","href":"https://www.rfc-editor.org/rfc/rfc7482","title":"Registration Data Access Protocol (RDAP) Query Format","authors":["A. Newton","S. Hollenbeck"],"rawDate":"2015-03","status":"Proposed Standard","obsoletedBy":["RFC9082"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7482","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7483":{"rfcNumber":"RFC7483","href":"https://www.rfc-editor.org/rfc/rfc7483","title":"JSON Responses for the Registration Data Access Protocol (RDAP)","authors":["A. Newton","S. Hollenbeck"],"rawDate":"2015-03","status":"Proposed Standard","obsoletedBy":["RFC9083"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7483","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7484":{"rfcNumber":"RFC7484","href":"https://www.rfc-editor.org/rfc/rfc7484","title":"Finding the Authoritative Registration Data (RDAP) Service","authors":["M. Blanchet"],"rawDate":"2015-03","status":"Proposed Standard","updatedBy":["RFC8521"],"obsoletedBy":["RFC9224"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7484","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7485":{"rfcNumber":"RFC7485","href":"https://www.rfc-editor.org/rfc/rfc7485","title":"Inventory and Analysis of WHOIS Registration Objects","authors":["L. Zhou","N. Kong","S. Shen","S. Sheng","A. Servin"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7486":{"rfcNumber":"RFC7486","href":"https://www.rfc-editor.org/rfc/rfc7486","title":"HTTP Origin-Bound Authentication (HOBA)","authors":["S. Farrell","P. Hoffman","M. Thomas"],"rawDate":"2015-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7487":{"rfcNumber":"RFC7487","href":"https://www.rfc-editor.org/rfc/rfc7487","title":"Configuration of Proactive Operations, Administration, and Maintenance (OAM) Functions for MPLS-Based Transport Networks Using RSVP-TE","authors":["E. Bellagamba","A. Takacs","G. Mirsky","L. Andersson","P. Skoldstrom","D. Ward"],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7488":{"rfcNumber":"RFC7488","href":"https://www.rfc-editor.org/rfc/rfc7488","title":"Port Control Protocol (PCP) Server Selection","authors":["M. Boucadair","R. Penno","D. Wing","P. Patil","T. Reddy"],"rawDate":"2015-03","status":"Proposed Standard","updates":["RFC6887"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7489":{"rfcNumber":"RFC7489","href":"https://www.rfc-editor.org/rfc/rfc7489","title":"Domain-based Message Authentication, Reporting, and Conformance (DMARC)","authors":["M. Kucherawy, Ed.","E. Zwicky, Ed."],"rawDate":"2015-03","status":"Informational","updatedBy":["RFC8553","RFC8616"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7489","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc749":{"aliasOf":"rfc0749"},"rfc7490":{"rfcNumber":"RFC7490","href":"https://www.rfc-editor.org/rfc/rfc7490","title":"Remote Loop-Free Alternate (LFA) Fast Reroute (FRR)","authors":["S. Bryant","C. Filsfils","S. Previdi","M. Shand","N. So"],"rawDate":"2015-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7491":{"rfcNumber":"RFC7491","href":"https://www.rfc-editor.org/rfc/rfc7491","title":"A PCE-Based Architecture for Application-Based Network Operations","authors":["D. King","A. Farrel"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7492":{"rfcNumber":"RFC7492","href":"https://www.rfc-editor.org/rfc/rfc7492","title":"Analysis of Bidirectional Forwarding Detection (BFD) Security According to the Keying and Authentication for Routing Protocols (KARP) Design Guidelines","authors":["M. Bhatia","D. Zhang","M. Jethanandani"],"rawDate":"2015-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7493":{"rfcNumber":"RFC7493","href":"https://www.rfc-editor.org/rfc/rfc7493","title":"The I-JSON Message Format","authors":["T. Bray, Ed."],"rawDate":"2015-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7493","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7494":{"rfcNumber":"RFC7494","href":"https://www.rfc-editor.org/rfc/rfc7494","title":"IEEE 802.11 Medium Access Control (MAC) Profile for Control and Provisioning of Wireless Access Points (CAPWAP)","authors":["C. Shao","H. Deng","R. Pazhyannur","F. Bari","R. Zhang","S. Matsushima"],"rawDate":"2015-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7495":{"rfcNumber":"RFC7495","href":"https://www.rfc-editor.org/rfc/rfc7495","title":"Enumeration Reference Format for the Incident Object Description Exchange Format (IODEF)","authors":["A. Montville","D. Black"],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7496":{"rfcNumber":"RFC7496","href":"https://www.rfc-editor.org/rfc/rfc7496","title":"Additional Policies for the Partially Reliable Stream Control Transmission Protocol Extension","authors":["M. Tuexen","R. Seggelmann","R. Stewart","S. Loreto"],"rawDate":"2015-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7497":{"rfcNumber":"RFC7497","href":"https://www.rfc-editor.org/rfc/rfc7497","title":"Rate Measurement Test Protocol Problem Statement and Requirements","authors":["A. Morton"],"rawDate":"2015-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7498":{"rfcNumber":"RFC7498","href":"https://www.rfc-editor.org/rfc/rfc7498","title":"Problem Statement for Service Function Chaining","authors":["P. Quinn, Ed.","T. Nadeau, Ed."],"rawDate":"2015-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7498","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7499":{"rfcNumber":"RFC7499","href":"https://www.rfc-editor.org/rfc/rfc7499","title":"Support of Fragmentation of RADIUS Packets","authors":["A. Perez-Mendez, Ed.","R. Marin-Lopez","F. Pereniguez-Garcia","G. Lopez-Millan","D. Lopez","A. DeKok"],"rawDate":"2015-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc75":{"aliasOf":"rfc0075"},"rfc750":{"aliasOf":"rfc0750"},"rfc7500":{"rfcNumber":"RFC7500","href":"https://www.rfc-editor.org/rfc/rfc7500","title":"Principles for Operation of Internet Assigned Numbers Authority (IANA) Registries","authors":["R. Housley, Ed.","O. Kolkman, Ed."],"rawDate":"2015-04","status":"Informational","obsoletedBy":["RFC8720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7501":{"rfcNumber":"RFC7501","href":"https://www.rfc-editor.org/rfc/rfc7501","title":"Terminology for Benchmarking Session Initiation Protocol (SIP) Devices: Basic Session Setup and Registration","authors":["C. Davids","V. Gurbani","S. Poretsky"],"rawDate":"2015-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7502":{"rfcNumber":"RFC7502","href":"https://www.rfc-editor.org/rfc/rfc7502","title":"Methodology for Benchmarking Session Initiation Protocol (SIP) Devices: Basic Session Setup and Registration","authors":["C. Davids","V. Gurbani","S. Poretsky"],"rawDate":"2015-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7503":{"rfcNumber":"RFC7503","href":"https://www.rfc-editor.org/rfc/rfc7503","title":"OSPFv3 Autoconfiguration","authors":["A. Lindem","J. Arkko"],"rawDate":"2015-04","status":"Proposed Standard","updates":["RFC5340"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7504":{"rfcNumber":"RFC7504","href":"https://www.rfc-editor.org/rfc/rfc7504","title":"SMTP 521 and 556 Reply Codes","authors":["J. Klensin"],"rawDate":"2015-06","status":"Proposed Standard","updates":["RFC1846","RFC5321"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7505":{"rfcNumber":"RFC7505","href":"https://www.rfc-editor.org/rfc/rfc7505","title":"A \"Null MX\" No Service Resource Record for Domains That Accept No Mail","authors":["J. Levine","M. Delany"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7506":{"rfcNumber":"RFC7506","href":"https://www.rfc-editor.org/rfc/rfc7506","title":"IPv6 Router Alert Option for MPLS Operations, Administration, and Maintenance (OAM)","authors":["K. Raza","N. Akiya","C. Pignataro"],"rawDate":"2015-04","status":"Proposed Standard","updates":["RFC4379"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7507":{"rfcNumber":"RFC7507","href":"https://www.rfc-editor.org/rfc/rfc7507","title":"TLS Fallback Signaling Cipher Suite Value (SCSV) for Preventing Protocol Downgrade Attacks","authors":["B. Moeller","A. Langley"],"rawDate":"2015-04","status":"Proposed Standard","obsoletedBy":["RFC8996"],"updates":["RFC2246","RFC4346","RFC4347","RFC5246","RFC6347"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7508":{"rfcNumber":"RFC7508","href":"https://www.rfc-editor.org/rfc/rfc7508","title":"Securing Header Fields with S/MIME","authors":["L. Cailleux","C. Bonatti"],"rawDate":"2015-04","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7508","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7509":{"rfcNumber":"RFC7509","href":"https://www.rfc-editor.org/rfc/rfc7509","title":"RTP Control Protocol (RTCP) Extended Report (XR) for Post-Repair Loss Count Metrics","authors":["R. Huang","V. Singh"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc751":{"aliasOf":"rfc0751"},"rfc7510":{"rfcNumber":"RFC7510","href":"https://www.rfc-editor.org/rfc/rfc7510","title":"Encapsulating MPLS in UDP","authors":["X. Xu","N. Sheth","L. Yong","R. Callon","D. Black"],"rawDate":"2015-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7510","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7511":{"rfcNumber":"RFC7511","href":"https://www.rfc-editor.org/rfc/rfc7511","title":"Scenic Routing for IPv6","authors":["M. Wilhelm"],"rawDate":"2015-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7511","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7512":{"rfcNumber":"RFC7512","href":"https://www.rfc-editor.org/rfc/rfc7512","title":"The PKCS #11 URI Scheme","authors":["J. Pechanec","D. Moffat"],"rawDate":"2015-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7512","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7513":{"rfcNumber":"RFC7513","href":"https://www.rfc-editor.org/rfc/rfc7513","title":"Source Address Validation Improvement (SAVI) Solution for DHCP","authors":["J. Bi","J. Wu","G. Yao","F. Baker"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7514":{"rfcNumber":"RFC7514","href":"https://www.rfc-editor.org/rfc/rfc7514","title":"Really Explicit Congestion Notification (RECN)","authors":["M. Luckie"],"rawDate":"2015-04-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7515":{"rfcNumber":"RFC7515","href":"https://www.rfc-editor.org/rfc/rfc7515","title":"JSON Web Signature (JWS)","authors":["M. Jones","J. Bradley","N. Sakimura"],"rawDate":"2015-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7515","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7516":{"rfcNumber":"RFC7516","href":"https://www.rfc-editor.org/rfc/rfc7516","title":"JSON Web Encryption (JWE)","authors":["M. Jones","J. Hildebrand"],"rawDate":"2015-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7516","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7517":{"rfcNumber":"RFC7517","href":"https://www.rfc-editor.org/rfc/rfc7517","title":"JSON Web Key (JWK)","authors":["M. Jones"],"rawDate":"2015-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7517","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7518":{"rfcNumber":"RFC7518","href":"https://www.rfc-editor.org/rfc/rfc7518","title":"JSON Web Algorithms (JWA)","authors":["M. Jones"],"rawDate":"2015-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7518","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7519":{"rfcNumber":"RFC7519","href":"https://www.rfc-editor.org/rfc/rfc7519","title":"JSON Web Token (JWT)","authors":["M. Jones","J. Bradley","N. Sakimura"],"rawDate":"2015-05","status":"Proposed Standard","updatedBy":["RFC7797","RFC8725"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc752":{"aliasOf":"rfc0752"},"rfc7520":{"rfcNumber":"RFC7520","href":"https://www.rfc-editor.org/rfc/rfc7520","title":"Examples of Protecting Content Using JSON Object Signing and Encryption (JOSE)","authors":["M. Miller"],"rawDate":"2015-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7520","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7521":{"rfcNumber":"RFC7521","href":"https://www.rfc-editor.org/rfc/rfc7521","title":"Assertion Framework for OAuth 2.0 Client Authentication and Authorization Grants","authors":["B. Campbell","C. Mortimore","M. Jones","Y. Goland"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7522":{"rfcNumber":"RFC7522","href":"https://www.rfc-editor.org/rfc/rfc7522","title":"Security Assertion Markup Language (SAML) 2.0 Profile for OAuth 2.0 Client Authentication and Authorization Grants","authors":["B. Campbell","C. Mortimore","M. Jones"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7523":{"rfcNumber":"RFC7523","href":"https://www.rfc-editor.org/rfc/rfc7523","title":"JSON Web Token (JWT) Profile for OAuth 2.0 Client Authentication and Authorization Grants","authors":["M. Jones","B. Campbell","C. Mortimore"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7524":{"rfcNumber":"RFC7524","href":"https://www.rfc-editor.org/rfc/rfc7524","title":"Inter-Area Point-to-Multipoint (P2MP) Segmented Label Switched Paths (LSPs)","authors":["Y. Rekhter","E. Rosen","R. Aggarwal","T. Morin","I. Grosclaude","N. Leymann","S. Saad"],"rawDate":"2015-05","status":"Proposed Standard","updatedBy":["RFC8534"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7525":{"rfcNumber":"RFC7525","href":"https://www.rfc-editor.org/rfc/rfc7525","title":"Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)","authors":["Y. Sheffer","R. Holz","P. Saint-Andre"],"rawDate":"2015-05","status":"Best Current Practice","updatedBy":["RFC8996"],"obsoletedBy":["RFC9325"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7525","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7526":{"rfcNumber":"RFC7526","href":"https://www.rfc-editor.org/rfc/rfc7526","title":"Deprecating the Anycast Prefix for 6to4 Relay Routers","authors":["O. Troan","B. Carpenter, Ed."],"rawDate":"2015-05","status":"Best Current Practice","obsoletes":["RFC3068","RFC6732"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7527":{"rfcNumber":"RFC7527","href":"https://www.rfc-editor.org/rfc/rfc7527","title":"Enhanced Duplicate Address Detection","authors":["R. Asati","H. Singh","W. Beebee","C. Pignataro","E. Dart","W. George"],"rawDate":"2015-04","status":"Proposed Standard","updates":["RFC4429","RFC4861","RFC4862"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7528":{"rfcNumber":"RFC7528","href":"https://www.rfc-editor.org/rfc/rfc7528","title":"A Uniform Resource Name (URN) Namespace for the Hybrid Broadcast Broadband TV (HbbTV) Association","authors":["P. Higgs","J. Piesing"],"rawDate":"2015-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7529":{"rfcNumber":"RFC7529","href":"https://www.rfc-editor.org/rfc/rfc7529","title":"Non-Gregorian Recurrence Rules in the Internet Calendaring and Scheduling Core Object Specification (iCalendar)","authors":["C. Daboo","G. Yakushev"],"rawDate":"2015-05","status":"Proposed Standard","updates":["RFC5545","RFC6321","RFC7265"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc753":{"aliasOf":"rfc0753"},"rfc7530":{"rfcNumber":"RFC7530","href":"https://www.rfc-editor.org/rfc/rfc7530","title":"Network File System (NFS) Version 4 Protocol","authors":["T. Haynes, Ed.","D. Noveck, Ed."],"rawDate":"2015-03","status":"Proposed Standard","updatedBy":["RFC7931","RFC8587"],"obsoletes":["RFC3530"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7530","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7531":{"rfcNumber":"RFC7531","href":"https://www.rfc-editor.org/rfc/rfc7531","title":"Network File System (NFS) Version 4 External Data Representation Standard (XDR) Description","authors":["T. Haynes, Ed.","D. Noveck, Ed."],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7532":{"rfcNumber":"RFC7532","href":"https://www.rfc-editor.org/rfc/rfc7532","title":"Namespace Database (NSDB) Protocol for Federated File Systems","authors":["J. Lentini","R. Tewari","C. Lever, Ed."],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7533":{"rfcNumber":"RFC7533","href":"https://www.rfc-editor.org/rfc/rfc7533","title":"Administration Protocol for Federated File Systems","authors":["J. Lentini","R. Tewari","C. Lever, Ed."],"rawDate":"2015-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7534":{"rfcNumber":"RFC7534","href":"https://www.rfc-editor.org/rfc/rfc7534","title":"AS112 Nameserver Operations","authors":["J. Abley","W. Sotomayor"],"rawDate":"2015-05","status":"Informational","obsoletes":["RFC6304"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7535":{"rfcNumber":"RFC7535","href":"https://www.rfc-editor.org/rfc/rfc7535","title":"AS112 Redirection Using DNAME","authors":["J. Abley","B. Dickson","W. Kumari","G. Michaelson"],"rawDate":"2015-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7536":{"rfcNumber":"RFC7536","href":"https://www.rfc-editor.org/rfc/rfc7536","title":"Large-Scale Broadband Measurement Use Cases","authors":["M. Linsner","P. Eardley","T. Burbridge","F. Sorensen"],"rawDate":"2015-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7537":{"rfcNumber":"RFC7537","href":"https://www.rfc-editor.org/rfc/rfc7537","title":"IANA Registries for LSP Ping Code Points","authors":["B. Decraene","N. Akiya","C. Pignataro","L. Andersson","S. Aldrin"],"rawDate":"2015-05","status":"Proposed Standard","obsoletedBy":["RFC8029"],"updates":["RFC4379","RFC6424"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7538":{"rfcNumber":"RFC7538","href":"https://httpwg.org/specs/rfc7538.html","title":"The Hypertext Transfer Protocol Status Code 308 (Permanent Redirect)","authors":["J. Reschke"],"rawDate":"2015-04","status":"Proposed Standard","obsoletedBy":["RFC9110"],"obsoletes":["RFC7238"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7539":{"rfcNumber":"RFC7539","href":"https://www.rfc-editor.org/rfc/rfc7539","title":"ChaCha20 and Poly1305 for IETF Protocols","authors":["Y. Nir","A. Langley"],"rawDate":"2015-05","status":"Informational","obsoletedBy":["RFC8439"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7539","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc754":{"aliasOf":"rfc0754"},"rfc7540":{"rfcNumber":"RFC7540","href":"https://httpwg.org/specs/rfc7540.html","title":"Hypertext Transfer Protocol Version 2 (HTTP/2)","authors":["M. Belshe","R. Peon","M. Thomson, Ed."],"rawDate":"2015-05","status":"Proposed Standard","updatedBy":["RFC8740"],"obsoletedBy":["RFC9113"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7540","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7541":{"rfcNumber":"RFC7541","href":"https://httpwg.org/specs/rfc7541.html","title":"HPACK: Header Compression for HTTP/2","authors":["R. Peon","H. Ruellan"],"rawDate":"2015-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7541","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7542":{"rfcNumber":"RFC7542","href":"https://www.rfc-editor.org/rfc/rfc7542","title":"The Network Access Identifier","authors":["A. DeKok"],"rawDate":"2015-05","status":"Proposed Standard","obsoletes":["RFC4282"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7542","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7543":{"rfcNumber":"RFC7543","href":"https://www.rfc-editor.org/rfc/rfc7543","title":"Covering Prefixes Outbound Route Filter for BGP-4","authors":["H. Jeng","L. Jalil","R. Bonica","K. Patel","L. Yong"],"rawDate":"2015-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7543","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7544":{"rfcNumber":"RFC7544","href":"https://www.rfc-editor.org/rfc/rfc7544","title":"Mapping and Interworking of Diversion Information between Diversion and History-Info Header Fields in the Session Initiation Protocol (SIP)","authors":["M. Mohali"],"rawDate":"2015-08","status":"Informational","obsoletes":["RFC6044"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7544","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7545":{"rfcNumber":"RFC7545","href":"https://www.rfc-editor.org/rfc/rfc7545","title":"Protocol to Access White-Space (PAWS) Databases","authors":["V. Chen, Ed.","S. Das","L. Zhu","J. Malyar","P. McCann"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7546":{"rfcNumber":"RFC7546","href":"https://www.rfc-editor.org/rfc/rfc7546","title":"Structure of the Generic Security Service (GSS) Negotiation Loop","authors":["B. Kaduk"],"rawDate":"2015-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7547":{"rfcNumber":"RFC7547","href":"https://www.rfc-editor.org/rfc/rfc7547","title":"Management of Networks with Constrained Devices: Problem Statement and Requirements","authors":["M. Ersue, Ed.","D. Romascanu","J. Schoenwaelder","U. Herberg"],"rawDate":"2015-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7548":{"rfcNumber":"RFC7548","href":"https://www.rfc-editor.org/rfc/rfc7548","title":"Management of Networks with Constrained Devices: Use Cases","authors":["M. Ersue, Ed.","D. Romascanu","J. Schoenwaelder","A. Sehgal"],"rawDate":"2015-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7549":{"rfcNumber":"RFC7549","href":"https://www.rfc-editor.org/rfc/rfc7549","title":"3GPP SIP URI Inter-Operator Traffic Leg Parameter","authors":["C. Holmberg","J. Holm","R. Jesske","M. Dolly"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc755":{"aliasOf":"rfc0755"},"rfc7550":{"rfcNumber":"RFC7550","href":"https://www.rfc-editor.org/rfc/rfc7550","title":"Issues and Recommendations with Multiple Stateful DHCPv6 Options","authors":["O. Troan","B. Volz","M. Siodelski"],"rawDate":"2015-05","status":"Proposed Standard","obsoletedBy":["RFC8415"],"updates":["RFC3315","RFC3633"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7551":{"rfcNumber":"RFC7551","href":"https://www.rfc-editor.org/rfc/rfc7551","title":"RSVP-TE Extensions for Associated Bidirectional Label Switched Paths (LSPs)","authors":["F. Zhang, Ed.","R. Jing","R. Gandhi, Ed."],"rawDate":"2015-05","status":"Proposed Standard","updatedBy":["RFC8537"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7552":{"rfcNumber":"RFC7552","href":"https://www.rfc-editor.org/rfc/rfc7552","title":"Updates to LDP for IPv6","authors":["R. Asati","C. Pignataro","K. Raza","V. Manral","R. Papneja"],"rawDate":"2015-06","status":"Proposed Standard","updates":["RFC5036","RFC6720"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7553":{"rfcNumber":"RFC7553","href":"https://www.rfc-editor.org/rfc/rfc7553","title":"The Uniform Resource Identifier (URI) DNS Resource Record","authors":["P. Faltstrom","O. Kolkman"],"rawDate":"2015-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7554":{"rfcNumber":"RFC7554","href":"https://www.rfc-editor.org/rfc/rfc7554","title":"Using IEEE 802.15.4e Time-Slotted Channel Hopping (TSCH) in the Internet of Things (IoT): Problem Statement","authors":["T. Watteyne, Ed.","M. Palattella","L. Grieco"],"rawDate":"2015-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7554","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7555":{"rfcNumber":"RFC7555","href":"https://www.rfc-editor.org/rfc/rfc7555","title":"Proxy MPLS Echo Request","authors":["G. Swallow","V. Lim","S. Aldrin"],"rawDate":"2015-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7555","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7556":{"rfcNumber":"RFC7556","href":"https://www.rfc-editor.org/rfc/rfc7556","title":"Multiple Provisioning Domain Architecture","authors":["D. Anipko, Ed."],"rawDate":"2015-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7556","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7557":{"rfcNumber":"RFC7557","href":"https://www.rfc-editor.org/rfc/rfc7557","title":"Extension Mechanism for the Babel Routing Protocol","authors":["J. Chroboczek"],"rawDate":"2015-05","status":"Experimental","obsoletedBy":["RFC8966"],"updates":["RFC6126"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7558":{"rfcNumber":"RFC7558","href":"https://www.rfc-editor.org/rfc/rfc7558","title":"Requirements for Scalable DNS-Based Service Discovery (DNS-SD) / Multicast DNS (mDNS) Extensions","authors":["K. Lynn","S. Cheshire","M. Blanchet","D. Migault"],"rawDate":"2015-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7559":{"rfcNumber":"RFC7559","href":"https://www.rfc-editor.org/rfc/rfc7559","title":"Packet-Loss Resiliency for Router Solicitations","authors":["S. Krishnan","D. Anipko","D. Thaler"],"rawDate":"2015-05","status":"Proposed Standard","updates":["RFC4861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc756":{"aliasOf":"rfc0756"},"rfc7560":{"rfcNumber":"RFC7560","href":"https://www.rfc-editor.org/rfc/rfc7560","title":"Problem Statement and Requirements for Increased Accuracy in Explicit Congestion Notification (ECN) Feedback","authors":["M. Kuehlewind, Ed.","R. Scheffenegger","B. Briscoe"],"rawDate":"2015-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7561":{"rfcNumber":"RFC7561","href":"https://www.rfc-editor.org/rfc/rfc7561","title":"Mapping Quality of Service (QoS) Procedures of Proxy Mobile IPv6 (PMIPv6) and WLAN","authors":["J. Kaippallimalil","R. Pazhyannur","P. Yegani"],"rawDate":"2015-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7562":{"rfcNumber":"RFC7562","href":"https://www.rfc-editor.org/rfc/rfc7562","title":"Transport Layer Security (TLS) Authorization Using Digital Transmission Content Protection (DTCP) Certificates","authors":["D. Thakore"],"rawDate":"2015-07","status":"Informational","updatedBy":["RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7563":{"rfcNumber":"RFC7563","href":"https://www.rfc-editor.org/rfc/rfc7563","title":"Extensions to the Proxy Mobile IPv6 (PMIPv6) Access Network Identifier Option","authors":["R. Pazhyannur","S. Speicher","S. Gundavelli","J. Korhonen","J. Kaippallimalil"],"rawDate":"2015-06","status":"Proposed Standard","updates":["RFC6757"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7564":{"rfcNumber":"RFC7564","href":"https://www.rfc-editor.org/rfc/rfc7564","title":"PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols","authors":["P. Saint-Andre","M. Blanchet"],"rawDate":"2015-05","status":"Proposed Standard","obsoletedBy":["RFC8264"],"obsoletes":["RFC3454"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7564","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7565":{"rfcNumber":"RFC7565","href":"https://www.rfc-editor.org/rfc/rfc7565","title":"The 'acct' URI Scheme","authors":["P. Saint-Andre"],"rawDate":"2015-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7566":{"rfcNumber":"RFC7566","href":"https://www.rfc-editor.org/rfc/rfc7566","title":"Enumservice Registration for 'acct' URI","authors":["L. Goix","K. Li"],"rawDate":"2015-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7567":{"rfcNumber":"RFC7567","href":"https://www.rfc-editor.org/rfc/rfc7567","title":"IETF Recommendations Regarding Active Queue Management","authors":["F. Baker, Ed.","G. Fairhurst, Ed."],"rawDate":"2015-07","status":"Best Current Practice","obsoletes":["RFC2309"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7567","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7568":{"rfcNumber":"RFC7568","href":"https://www.rfc-editor.org/rfc/rfc7568","title":"Deprecating Secure Sockets Layer Version 3.0","authors":["R. Barnes","M. Thomson","A. Pironti","A. Langley"],"rawDate":"2015-06","status":"Proposed Standard","updatedBy":["RFC8996"],"updates":["RFC5246"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7568","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7569":{"rfcNumber":"RFC7569","href":"https://www.rfc-editor.org/rfc/rfc7569","title":"Registry Specification for Mandatory Access Control (MAC) Security Label Formats","authors":["D. Quigley","J. Lu","T. Haynes"],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc757":{"aliasOf":"rfc0757"},"rfc7570":{"rfcNumber":"RFC7570","href":"https://www.rfc-editor.org/rfc/rfc7570","title":"Label Switched Path (LSP) Attribute in the Explicit Route Object (ERO)","authors":["C. Margaria, Ed.","G. Martinelli","S. Balls","B. Wright"],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7571":{"rfcNumber":"RFC7571","href":"https://www.rfc-editor.org/rfc/rfc7571","title":"GMPLS RSVP-TE Extensions for Lock Instruct and Loopback","authors":["J. Dong","M. Chen","Z. Li","D. Ceccarelli"],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7572":{"rfcNumber":"RFC7572","href":"https://www.rfc-editor.org/rfc/rfc7572","title":"Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Instant Messaging","authors":["P. Saint-Andre","A. Houri","J. Hildebrand"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7573":{"rfcNumber":"RFC7573","href":"https://www.rfc-editor.org/rfc/rfc7573","title":"Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): One-to-One Text Chat Sessions","authors":["P. Saint-Andre","S. Loreto"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7574":{"rfcNumber":"RFC7574","href":"https://www.rfc-editor.org/rfc/rfc7574","title":"Peer-to-Peer Streaming Peer Protocol (PPSPP)","authors":["A. Bakker","R. Petrocco","V. Grishchenko"],"rawDate":"2015-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7574","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7575":{"rfcNumber":"RFC7575","href":"https://www.rfc-editor.org/rfc/rfc7575","title":"Autonomic Networking: Definitions and Design Goals","authors":["M. Behringer","M. Pritikin","S. Bjarnason","A. Clemm","B. Carpenter","S. Jiang","L. Ciavaglia"],"rawDate":"2015-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7576":{"rfcNumber":"RFC7576","href":"https://www.rfc-editor.org/rfc/rfc7576","title":"General Gap Analysis for Autonomic Networking","authors":["S. Jiang","B. Carpenter","M. Behringer"],"rawDate":"2015-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7577":{"rfcNumber":"RFC7577","href":"https://www.rfc-editor.org/rfc/rfc7577","title":"Definition of Managed Objects for Battery Monitoring","authors":["J. Quittek","R. Winter","T. Dietz"],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7578":{"rfcNumber":"RFC7578","href":"https://www.rfc-editor.org/rfc/rfc7578","title":"Returning Values from Forms: multipart/form-data","authors":["L. Masinter"],"rawDate":"2015-07","status":"Proposed Standard","obsoletes":["RFC2388"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7578","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7579":{"rfcNumber":"RFC7579","href":"https://www.rfc-editor.org/rfc/rfc7579","title":"General Network Element Constraint Encoding for GMPLS-Controlled Networks","authors":["G. Bernstein, Ed.","Y. Lee, Ed.","D. Li","W. Imajuku","J. Han"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc758":{"aliasOf":"rfc0758"},"rfc7580":{"rfcNumber":"RFC7580","href":"https://www.rfc-editor.org/rfc/rfc7580","title":"OSPF-TE Extensions for General Network Element Constraints","authors":["F. Zhang","Y. Lee","J. Han","G. Bernstein","Y. Xu"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7581":{"rfcNumber":"RFC7581","href":"https://www.rfc-editor.org/rfc/rfc7581","title":"Routing and Wavelength Assignment Information Encoding for Wavelength Switched Optical Networks","authors":["G. Bernstein, Ed.","Y. Lee, Ed.","D. Li","W. Imajuku","J. Han"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7582":{"rfcNumber":"RFC7582","href":"https://www.rfc-editor.org/rfc/rfc7582","title":"Multicast Virtual Private Network (MVPN): Using Bidirectional P-Tunnels","authors":["E. Rosen","IJ. Wijnands","Y. Cai","A. Boers"],"rawDate":"2015-07","status":"Proposed Standard","updatedBy":["RFC8534"],"updates":["RFC6513","RFC6514","RFC6625"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7583":{"rfcNumber":"RFC7583","href":"https://www.rfc-editor.org/rfc/rfc7583","title":"DNSSEC Key Rollover Timing Considerations","authors":["S. Morris","J. Ihren","J. Dickinson","W. Mekking"],"rawDate":"2015-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7584":{"rfcNumber":"RFC7584","href":"https://www.rfc-editor.org/rfc/rfc7584","title":"Session Traversal Utilities for NAT (STUN) Message Handling for SIP Back-to-Back User Agents (B2BUAs)","authors":["R. Ravindranath","T. Reddy","G. Salgueiro"],"rawDate":"2015-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7584","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7585":{"rfcNumber":"RFC7585","href":"https://www.rfc-editor.org/rfc/rfc7585","title":"Dynamic Peer Discovery for RADIUS/TLS and RADIUS/DTLS Based on the Network Access Identifier (NAI)","authors":["S. Winter","M. McCauley"],"rawDate":"2015-10","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7585","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7586":{"rfcNumber":"RFC7586","href":"https://www.rfc-editor.org/rfc/rfc7586","title":"The Scalable Address Resolution Protocol (SARP) for Large Data Centers","authors":["Y. Nachum","L. Dunbar","I. Yerushalmi","T. Mizrahi"],"rawDate":"2015-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7587":{"rfcNumber":"RFC7587","href":"https://www.rfc-editor.org/rfc/rfc7587","title":"RTP Payload Format for the Opus Speech and Audio Codec","authors":["J. Spittka","K. Vos","JM. Valin"],"rawDate":"2015-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7588":{"rfcNumber":"RFC7588","href":"https://www.rfc-editor.org/rfc/rfc7588","title":"A Widely Deployed Solution to the Generic Routing Encapsulation (GRE) Fragmentation Problem","authors":["R. Bonica","C. Pignataro","J. Touch"],"rawDate":"2015-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7589":{"rfcNumber":"RFC7589","href":"https://www.rfc-editor.org/rfc/rfc7589","title":"Using the NETCONF Protocol over Transport Layer Security (TLS) with Mutual X.509 Authentication","authors":["M. Badra","A. Luchuk","J. Schoenwaelder"],"rawDate":"2015-06","status":"Proposed Standard","obsoletes":["RFC5539"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc759":{"aliasOf":"rfc0759"},"rfc7590":{"rfcNumber":"RFC7590","href":"https://www.rfc-editor.org/rfc/rfc7590","title":"Use of Transport Layer Security (TLS) in the Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre","T. Alkemade"],"rawDate":"2015-06","status":"Proposed Standard","updates":["RFC6120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7591":{"rfcNumber":"RFC7591","href":"https://www.rfc-editor.org/rfc/rfc7591","title":"OAuth 2.0 Dynamic Client Registration Protocol","authors":["J. Richer, Ed.","M. Jones","J. Bradley","M. Machulak","P. Hunt"],"rawDate":"2015-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7591","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7592":{"rfcNumber":"RFC7592","href":"https://www.rfc-editor.org/rfc/rfc7592","title":"OAuth 2.0 Dynamic Client Registration Management Protocol","authors":["J. Richer, Ed.","M. Jones","J. Bradley","M. Machulak"],"rawDate":"2015-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7593":{"rfcNumber":"RFC7593","href":"https://www.rfc-editor.org/rfc/rfc7593","title":"The eduroam Architecture for Network Roaming","authors":["K. Wierenga","S. Winter","T. Wolniewicz"],"rawDate":"2015-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7593","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7594":{"rfcNumber":"RFC7594","href":"https://www.rfc-editor.org/rfc/rfc7594","title":"A Framework for Large-Scale Measurement of Broadband Performance (LMAP)","authors":["P. Eardley","A. Morton","M. Bagnulo","T. Burbridge","P. Aitken","A. Akhter"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7595":{"rfcNumber":"RFC7595","href":"https://www.rfc-editor.org/rfc/rfc7595","title":"Guidelines and Registration Procedures for URI Schemes","authors":["D. Thaler, Ed.","T. Hansen","T. Hardie"],"rawDate":"2015-06","status":"Best Current Practice","updatedBy":["RFC8615"],"obsoletes":["RFC4395"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7595","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7596":{"rfcNumber":"RFC7596","href":"https://www.rfc-editor.org/rfc/rfc7596","title":"Lightweight 4over6: An Extension to the Dual-Stack Lite Architecture","authors":["Y. Cui","Q. Sun","M. Boucadair","T. Tsou","Y. Lee","I. Farrer"],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7597":{"rfcNumber":"RFC7597","href":"https://www.rfc-editor.org/rfc/rfc7597","title":"Mapping of Address and Port with Encapsulation (MAP-E)","authors":["O. Troan, Ed.","W. Dec","X. Li","C. Bao","S. Matsushima","T. Murakami","T. Taylor, Ed."],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7598":{"rfcNumber":"RFC7598","href":"https://www.rfc-editor.org/rfc/rfc7598","title":"DHCPv6 Options for Configuration of Softwire Address and Port-Mapped Clients","authors":["T. Mrugalski","O. Troan","I. Farrer","S. Perreault","W. Dec","C. Bao","L. Yeh","X. Deng"],"rawDate":"2015-07","status":"Proposed Standard","updatedBy":["RFC8539"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7598","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7599":{"rfcNumber":"RFC7599","href":"https://www.rfc-editor.org/rfc/rfc7599","title":"Mapping of Address and Port using Translation (MAP-T)","authors":["X. Li","C. Bao","W. Dec, Ed.","O. Troan","S. Matsushima","T. Murakami"],"rawDate":"2015-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7599","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc76":{"aliasOf":"rfc0076"},"rfc760":{"aliasOf":"rfc0760"},"rfc7600":{"rfcNumber":"RFC7600","href":"https://www.rfc-editor.org/rfc/rfc7600","title":"IPv4 Residual Deployment via IPv6 - A Stateless Solution (4rd)","authors":["R. Despres","S. Jiang, Ed.","R. Penno","Y. Lee","G. Chen","M. Chen"],"rawDate":"2015-07","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7600","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7601":{"rfcNumber":"RFC7601","href":"https://www.rfc-editor.org/rfc/rfc7601","title":"Message Header Field for Indicating Message Authentication Status","authors":["M. Kucherawy"],"rawDate":"2015-08","status":"Proposed Standard","obsoletedBy":["RFC8601"],"obsoletes":["RFC7001","RFC7410"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7601","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7602":{"rfcNumber":"RFC7602","href":"https://www.rfc-editor.org/rfc/rfc7602","title":"IS-IS Extended Sequence Number TLV","authors":["U. Chunduri","W. Lu","A. Tian","N. Shen"],"rawDate":"2015-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7603":{"rfcNumber":"RFC7603","href":"https://www.rfc-editor.org/rfc/rfc7603","title":"Energy Management (EMAN) Applicability Statement","authors":["B. Schoening","M. Chandramouli","B. Nordman"],"rawDate":"2015-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7604":{"rfcNumber":"RFC7604","href":"https://www.rfc-editor.org/rfc/rfc7604","title":"Comparison of Different NAT Traversal Techniques for Media Controlled by the Real-Time Streaming Protocol (RTSP)","authors":["M. Westerlund","T. Zeng"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7605":{"rfcNumber":"RFC7605","href":"https://www.rfc-editor.org/rfc/rfc7605","title":"Recommendations on Using Assigned Transport Port Numbers","authors":["J. Touch"],"rawDate":"2015-08","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7605","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7606":{"rfcNumber":"RFC7606","href":"https://www.rfc-editor.org/rfc/rfc7606","title":"Revised Error Handling for BGP UPDATE Messages","authors":["E. Chen, Ed.","J. Scudder, Ed.","P. Mohapatra","K. Patel"],"rawDate":"2015-08","status":"Proposed Standard","updates":["RFC1997","RFC4271","RFC4360","RFC4456","RFC4760","RFC5543","RFC5701","RFC6368"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7606","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7607":{"rfcNumber":"RFC7607","href":"https://www.rfc-editor.org/rfc/rfc7607","title":"Codification of AS 0 Processing","authors":["W. Kumari","R. Bush","H. Schiller","K. Patel"],"rawDate":"2015-08","status":"Proposed Standard","updates":["RFC4271"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7607","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7608":{"rfcNumber":"RFC7608","href":"https://www.rfc-editor.org/rfc/rfc7608","title":"IPv6 Prefix Length Recommendation for Forwarding","authors":["M. Boucadair","A. Petrescu","F. Baker"],"rawDate":"2015-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7609":{"rfcNumber":"RFC7609","href":"https://www.rfc-editor.org/rfc/rfc7609","title":"IBM's Shared Memory Communications over RDMA (SMC-R) Protocol","authors":["M. Fox","C. Kassimis","J. Stevens"],"rawDate":"2015-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc761":{"aliasOf":"rfc0761"},"rfc7610":{"rfcNumber":"RFC7610","href":"https://www.rfc-editor.org/rfc/rfc7610","title":"DHCPv6-Shield: Protecting against Rogue DHCPv6 Servers","authors":["F. Gont","W. Liu","G. Van de Velde"],"rawDate":"2015-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7611":{"rfcNumber":"RFC7611","href":"https://www.rfc-editor.org/rfc/rfc7611","title":"BGP ACCEPT_OWN Community Attribute","authors":["J. Uttaro","P. Mohapatra","D. Smith","R. Raszuk","J. Scudder"],"rawDate":"2015-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7612":{"rfcNumber":"RFC7612","href":"https://www.rfc-editor.org/rfc/rfc7612","title":"Lightweight Directory Access Protocol (LDAP): Schema for Printer Services","authors":["P. Fleming","I. McDonald"],"rawDate":"2015-06","status":"Informational","obsoletes":["RFC3712"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7613":{"rfcNumber":"RFC7613","href":"https://www.rfc-editor.org/rfc/rfc7613","title":"Preparation, Enforcement, and Comparison of Internationalized Strings Representing Usernames and Passwords","authors":["P. Saint-Andre","A. Melnikov"],"rawDate":"2015-08","status":"Proposed Standard","obsoletedBy":["RFC8265"],"obsoletes":["RFC4013"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7614":{"rfcNumber":"RFC7614","href":"https://www.rfc-editor.org/rfc/rfc7614","title":"Explicit Subscriptions for the REFER Method","authors":["R. Sparks"],"rawDate":"2015-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7615":{"rfcNumber":"RFC7615","href":"https://httpwg.org/specs/rfc7615.html","title":"HTTP Authentication-Info and Proxy-Authentication-Info Response Header Fields","authors":["J. Reschke"],"rawDate":"2015-09","status":"Proposed Standard","obsoletedBy":["RFC9110"],"obsoletes":["RFC2617"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7616":{"rfcNumber":"RFC7616","href":"https://httpwg.org/specs/rfc7616.html","title":"HTTP Digest Access Authentication","authors":["R. Shekh-Yusef, Ed.","D. Ahrens","S. Bremer"],"rawDate":"2015-09","status":"Proposed Standard","obsoletes":["RFC2617"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7616","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7617":{"rfcNumber":"RFC7617","href":"https://httpwg.org/specs/rfc7617.html","title":"The 'Basic' HTTP Authentication Scheme","authors":["J. Reschke"],"rawDate":"2015-09","status":"Proposed Standard","obsoletes":["RFC2617"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7618":{"rfcNumber":"RFC7618","href":"https://www.rfc-editor.org/rfc/rfc7618","title":"Dynamic Allocation of Shared IPv4 Addresses","authors":["Y. Cui","Q. Sun","I. Farrer","Y. Lee","Q. Sun","M. Boucadair"],"rawDate":"2015-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7619":{"rfcNumber":"RFC7619","href":"https://www.rfc-editor.org/rfc/rfc7619","title":"The NULL Authentication Method in the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["V. Smyslov","P. Wouters"],"rawDate":"2015-08","status":"Proposed Standard","updates":["RFC4301"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc762":{"aliasOf":"rfc0762"},"rfc7620":{"rfcNumber":"RFC7620","href":"https://www.rfc-editor.org/rfc/rfc7620","title":"Scenarios with Host Identification Complications","authors":["M. Boucadair, Ed.","B. Chatras","T. Reddy","B. Williams","B. Sarikaya"],"rawDate":"2015-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7621":{"rfcNumber":"RFC7621","href":"https://www.rfc-editor.org/rfc/rfc7621","title":"A Clarification on the Use of Globally Routable User Agent URIs (GRUUs) in the SIP Event Notification Framework","authors":["A.B. Roach"],"rawDate":"2015-08","status":"Proposed Standard","updates":["RFC6665"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7622":{"rfcNumber":"RFC7622","href":"https://www.rfc-editor.org/rfc/rfc7622","title":"Extensible Messaging and Presence Protocol (XMPP): Address Format","authors":["P. Saint-Andre"],"rawDate":"2015-09","status":"Proposed Standard","obsoletes":["RFC6122"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7622","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7623":{"rfcNumber":"RFC7623","href":"https://www.rfc-editor.org/rfc/rfc7623","title":"Provider Backbone Bridging Combined with Ethernet VPN (PBB-EVPN)","authors":["A. Sajassi, Ed.","S. Salam","N. Bitar","A. Isaac","W. Henderickx"],"rawDate":"2015-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7624":{"rfcNumber":"RFC7624","href":"https://www.rfc-editor.org/rfc/rfc7624","title":"Confidentiality in the Face of Pervasive Surveillance: A Threat Model and Problem Statement","authors":["R. Barnes","B. Schneier","C. Jennings","T. Hardie","B. Trammell","C. Huitema","D. Borkmann"],"rawDate":"2015-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7625":{"rfcNumber":"RFC7625","href":"https://www.rfc-editor.org/rfc/rfc7625","title":"Architecture of an IP/MPLS Network with Hardened Pipes","authors":["J. T. Hao","P. Maheshwari","R. Huang","L. Andersson","M. Chen"],"rawDate":"2015-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7626":{"rfcNumber":"RFC7626","href":"https://www.rfc-editor.org/rfc/rfc7626","title":"DNS Privacy Considerations","authors":["S. Bortzmeyer"],"rawDate":"2015-08","status":"Informational","obsoletedBy":["RFC9076"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7627":{"rfcNumber":"RFC7627","href":"https://www.rfc-editor.org/rfc/rfc7627","title":"Transport Layer Security (TLS) Session Hash and Extended Master Secret Extension","authors":["K. Bhargavan, Ed.","A. Delignat-Lavaud","A. Pironti","A. Langley","M. Ray"],"rawDate":"2015-09","status":"Proposed Standard","updates":["RFC5246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7628":{"rfcNumber":"RFC7628","href":"https://www.rfc-editor.org/rfc/rfc7628","title":"A Set of Simple Authentication and Security Layer (SASL) Mechanisms for OAuth","authors":["W. Mills","T. Showalter","H. Tschofenig"],"rawDate":"2015-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7629":{"rfcNumber":"RFC7629","href":"https://www.rfc-editor.org/rfc/rfc7629","title":"Flow-Binding Support for Mobile IP","authors":["S. Gundavelli, Ed.","K. Leung","G. Tsirtsis","A. Petrescu"],"rawDate":"2015-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc763":{"aliasOf":"rfc0763"},"rfc7630":{"rfcNumber":"RFC7630","href":"https://www.rfc-editor.org/rfc/rfc7630","title":"HMAC-SHA-2 Authentication Protocols in the User-based Security Model (USM) for SNMPv3","authors":["J. Merkle, Ed.","M. Lochter"],"rawDate":"2015-10","status":"Proposed Standard","obsoletedBy":["RFC7860"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7630","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7631":{"rfcNumber":"RFC7631","href":"https://www.rfc-editor.org/rfc/rfc7631","title":"TLV Naming in the Mobile Ad Hoc Network (MANET) Generalized Packet/Message Format","authors":["C. Dearlove","T. Clausen"],"rawDate":"2015-09","status":"Proposed Standard","updatedBy":["RFC7722"],"updates":["RFC5444"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7632":{"rfcNumber":"RFC7632","href":"https://www.rfc-editor.org/rfc/rfc7632","title":"Endpoint Security Posture Assessment: Enterprise Use Cases","authors":["D. Waltermire","D. Harrington"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7633":{"rfcNumber":"RFC7633","href":"https://www.rfc-editor.org/rfc/rfc7633","title":"X.509v3 Transport Layer Security (TLS) Feature Extension","authors":["P. Hallam-Baker"],"rawDate":"2015-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7633","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7634":{"rfcNumber":"RFC7634","href":"https://www.rfc-editor.org/rfc/rfc7634","title":"ChaCha20, Poly1305, and Their Use in the Internet Key Exchange Protocol (IKE) and IPsec","authors":["Y. Nir"],"rawDate":"2015-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7634","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7635":{"rfcNumber":"RFC7635","href":"https://www.rfc-editor.org/rfc/rfc7635","title":"Session Traversal Utilities for NAT (STUN) Extension for Third-Party Authorization","authors":["T. Reddy","P. Patil","R. Ravindranath","J. Uberti"],"rawDate":"2015-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7635","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7636":{"rfcNumber":"RFC7636","href":"https://www.rfc-editor.org/rfc/rfc7636","title":"Proof Key for Code Exchange by OAuth Public Clients","authors":["N. Sakimura, Ed.","J. Bradley","N. Agarwal"],"rawDate":"2015-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7636","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7637":{"rfcNumber":"RFC7637","href":"https://www.rfc-editor.org/rfc/rfc7637","title":"NVGRE: Network Virtualization Using Generic Routing Encapsulation","authors":["P. Garg, Ed.","Y. Wang, Ed."],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7638":{"rfcNumber":"RFC7638","href":"https://www.rfc-editor.org/rfc/rfc7638","title":"JSON Web Key (JWK) Thumbprint","authors":["M. Jones","N. Sakimura"],"rawDate":"2015-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7639":{"rfcNumber":"RFC7639","href":"https://httpwg.org/specs/rfc7639.html","title":"The ALPN HTTP Header Field","authors":["A. Hutton","J. Uberti","M. Thomson"],"rawDate":"2015-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc764":{"aliasOf":"rfc0764"},"rfc7640":{"rfcNumber":"RFC7640","href":"https://www.rfc-editor.org/rfc/rfc7640","title":"Traffic Management Benchmarking","authors":["B. Constantine","R. Krishnan"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7641":{"rfcNumber":"RFC7641","href":"https://www.rfc-editor.org/rfc/rfc7641","title":"Observing Resources in the Constrained Application Protocol (CoAP)","authors":["K. Hartke"],"rawDate":"2015-09","status":"Proposed Standard","updatedBy":["RFC8323"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7642":{"rfcNumber":"RFC7642","href":"https://www.rfc-editor.org/rfc/rfc7642","title":"System for Cross-domain Identity Management: Definitions, Overview, Concepts, and Requirements","authors":["K. LI, Ed.","P. Hunt","B. Khasnabish","A. Nadalin","Z. Zeltsan"],"rawDate":"2015-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7642","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7643":{"rfcNumber":"RFC7643","href":"https://www.rfc-editor.org/rfc/rfc7643","title":"System for Cross-domain Identity Management: Core Schema","authors":["P. Hunt, Ed.","K. Grizzle","E. Wahlstroem","C. Mortimore"],"rawDate":"2015-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7643","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7644":{"rfcNumber":"RFC7644","href":"https://www.rfc-editor.org/rfc/rfc7644","title":"System for Cross-domain Identity Management: Protocol","authors":["P. Hunt, Ed.","K. Grizzle","M. Ansari","E. Wahlstroem","C. Mortimore"],"rawDate":"2015-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7644","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7645":{"rfcNumber":"RFC7645","href":"https://www.rfc-editor.org/rfc/rfc7645","title":"The Keying and Authentication for Routing Protocol (KARP) IS-IS Security Analysis","authors":["U. Chunduri","A. Tian","W. Lu"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7646":{"rfcNumber":"RFC7646","href":"https://www.rfc-editor.org/rfc/rfc7646","title":"Definition and Use of DNSSEC Negative Trust Anchors","authors":["P. Ebersman","W. Kumari","C. Griffiths","J. Livingood","R. Weber"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7647":{"rfcNumber":"RFC7647","href":"https://www.rfc-editor.org/rfc/rfc7647","title":"Clarifications for the Use of REFER with RFC 6665","authors":["R. Sparks","A.B. Roach"],"rawDate":"2015-09","status":"Proposed Standard","updates":["RFC3515"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7648":{"rfcNumber":"RFC7648","href":"https://www.rfc-editor.org/rfc/rfc7648","title":"Port Control Protocol (PCP) Proxy Function","authors":["S. Perreault","M. Boucadair","R. Penno","D. Wing","S. Cheshire"],"rawDate":"2015-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7649":{"rfcNumber":"RFC7649","href":"https://www.rfc-editor.org/rfc/rfc7649","title":"The Jabber Scribe Role at IETF Meetings","authors":["P. Saint-Andre","D. York"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc765":{"aliasOf":"rfc0765"},"rfc7650":{"rfcNumber":"RFC7650","href":"https://www.rfc-editor.org/rfc/rfc7650","title":"A Constrained Application Protocol (CoAP) Usage for REsource LOcation And Discovery (RELOAD)","authors":["J. Jimenez","J. Lopez-Vega","J. Maenpaa","G. Camarillo"],"rawDate":"2015-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7651":{"rfcNumber":"RFC7651","href":"https://www.rfc-editor.org/rfc/rfc7651","title":"3GPP IP Multimedia Subsystems (IMS) Option for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["A. Dodd-Noble","S. Gundavelli","J. Korhonen","F. Baboescu","B. Weis"],"rawDate":"2015-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7652":{"rfcNumber":"RFC7652","href":"https://www.rfc-editor.org/rfc/rfc7652","title":"Port Control Protocol (PCP) Authentication Mechanism","authors":["M. Cullen","S. Hartman","D. Zhang","T. Reddy"],"rawDate":"2015-09","status":"Proposed Standard","updates":["RFC6887"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7652","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7653":{"rfcNumber":"RFC7653","href":"https://www.rfc-editor.org/rfc/rfc7653","title":"DHCPv6 Active Leasequery","authors":["D. Raghuvanshi","K. Kinnear","D. Kukrety"],"rawDate":"2015-10","status":"Proposed Standard","updates":["RFC5460"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7654":{"rfcNumber":"RFC7654","href":"https://www.rfc-editor.org/rfc/rfc7654","title":"Benchmarking Methodology for In-Service Software Upgrade (ISSU)","authors":["S. Banks","F. Calabria","G. Czirjak","R. Machat"],"rawDate":"2015-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7655":{"rfcNumber":"RFC7655","href":"https://www.rfc-editor.org/rfc/rfc7655","title":"RTP Payload Format for G.711.0","authors":["M. Ramalho, Ed.","P. Jones","N. Harada","M. Perumal","L. Miao"],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7656":{"rfcNumber":"RFC7656","href":"https://www.rfc-editor.org/rfc/rfc7656","title":"A Taxonomy of Semantics and Mechanisms for Real-Time Transport Protocol (RTP) Sources","authors":["J. Lennox","K. Gross","S. Nandakumar","G. Salgueiro","B. Burman, Ed."],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7657":{"rfcNumber":"RFC7657","href":"https://www.rfc-editor.org/rfc/rfc7657","title":"Differentiated Services (Diffserv) and Real-Time Communication","authors":["D. Black, Ed.","P. Jones"],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7658":{"rfcNumber":"RFC7658","href":"https://www.rfc-editor.org/rfc/rfc7658","title":"Deprecation of MIB Module NAT-MIB: Managed Objects for Network Address Translators (NATs)","authors":["S. Perreault","T. Tsou","S. Sivakumar","T. Taylor"],"rawDate":"2015-10","status":"Proposed Standard","obsoletes":["RFC4008"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7659":{"rfcNumber":"RFC7659","href":"https://www.rfc-editor.org/rfc/rfc7659","title":"Definitions of Managed Objects for Network Address Translators (NATs)","authors":["S. Perreault","T. Tsou","S. Sivakumar","T. Taylor"],"rawDate":"2015-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7659","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc766":{"aliasOf":"rfc0766"},"rfc7660":{"rfcNumber":"RFC7660","href":"https://www.rfc-editor.org/rfc/rfc7660","title":"Diameter Congestion and Filter Attributes","authors":["L. Bertz","S. Manning","B. Hirschman"],"rawDate":"2015-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7661":{"rfcNumber":"RFC7661","href":"https://www.rfc-editor.org/rfc/rfc7661","title":"Updating TCP to Support Rate-Limited Traffic","authors":["G. Fairhurst","A. Sathiaseelan","R. Secchi"],"rawDate":"2015-10","status":"Experimental","obsoletes":["RFC2861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7662":{"rfcNumber":"RFC7662","href":"https://www.rfc-editor.org/rfc/rfc7662","title":"OAuth 2.0 Token Introspection","authors":["J. Richer, Ed."],"rawDate":"2015-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7662","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7663":{"rfcNumber":"RFC7663","href":"https://www.rfc-editor.org/rfc/rfc7663","title":"Report from the IAB Workshop on Stack Evolution in a Middlebox Internet (SEMI)","authors":["B. Trammell, Ed.","M. Kuehlewind, Ed."],"rawDate":"2015-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7664":{"rfcNumber":"RFC7664","href":"https://www.rfc-editor.org/rfc/rfc7664","title":"Dragonfly Key Exchange","authors":["D. Harkins, Ed."],"rawDate":"2015-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7664","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7665":{"rfcNumber":"RFC7665","href":"https://www.rfc-editor.org/rfc/rfc7665","title":"Service Function Chaining (SFC) Architecture","authors":["J. Halpern, Ed.","C. Pignataro, Ed."],"rawDate":"2015-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7665","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7666":{"rfcNumber":"RFC7666","href":"https://www.rfc-editor.org/rfc/rfc7666","title":"Management Information Base for Virtual Machines Controlled by a Hypervisor","authors":["H. Asai","M. MacFaden","J. Schoenwaelder","K. Shima","T. Tsou"],"rawDate":"2015-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7666","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7667":{"rfcNumber":"RFC7667","href":"https://www.rfc-editor.org/rfc/rfc7667","title":"RTP Topologies","authors":["M. Westerlund","S. Wenger"],"rawDate":"2015-11","status":"Informational","obsoletes":["RFC5117"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7667","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7668":{"rfcNumber":"RFC7668","href":"https://www.rfc-editor.org/rfc/rfc7668","title":"IPv6 over BLUETOOTH(R) Low Energy","authors":["J. Nieminen","T. Savolainen","M. Isomaki","B. Patil","Z. Shelby","C. Gomez"],"rawDate":"2015-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7669":{"rfcNumber":"RFC7669","href":"https://www.rfc-editor.org/rfc/rfc7669","title":"Assigning Digital Object Identifiers to RFCs","authors":["J. Levine"],"rawDate":"2015-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc767":{"aliasOf":"rfc0767"},"rfc7670":{"rfcNumber":"RFC7670","href":"https://www.rfc-editor.org/rfc/rfc7670","title":"Generic Raw Public-Key Support for IKEv2","authors":["T. Kivinen","P. Wouters","H. Tschofenig"],"rawDate":"2016-01","status":"Proposed Standard","updates":["RFC7296"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7671":{"rfcNumber":"RFC7671","href":"https://www.rfc-editor.org/rfc/rfc7671","title":"The DNS-Based Authentication of Named Entities (DANE) Protocol: Updates and Operational Guidance","authors":["V. Dukhovni","W. Hardaker"],"rawDate":"2015-10","status":"Proposed Standard","updates":["RFC6698"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7672":{"rfcNumber":"RFC7672","href":"https://www.rfc-editor.org/rfc/rfc7672","title":"SMTP Security via Opportunistic DNS-Based Authentication of Named Entities (DANE) Transport Layer Security (TLS)","authors":["V. Dukhovni","W. Hardaker"],"rawDate":"2015-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7672","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7673":{"rfcNumber":"RFC7673","href":"https://www.rfc-editor.org/rfc/rfc7673","title":"Using DNS-Based Authentication of Named Entities (DANE) TLSA Records with SRV Records","authors":["T. Finch","M. Miller","P. Saint-Andre"],"rawDate":"2015-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7674":{"rfcNumber":"RFC7674","href":"https://www.rfc-editor.org/rfc/rfc7674","title":"Clarification of the Flowspec Redirect Extended Community","authors":["J. Haas, Ed."],"rawDate":"2015-10","status":"Proposed Standard","obsoletedBy":["RFC8955"],"updates":["RFC5575"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7675":{"rfcNumber":"RFC7675","href":"https://www.rfc-editor.org/rfc/rfc7675","title":"Session Traversal Utilities for NAT (STUN) Usage for Consent Freshness","authors":["M. Perumal","D. Wing","R. Ravindranath","T. Reddy","M. Thomson"],"rawDate":"2015-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7676":{"rfcNumber":"RFC7676","href":"https://www.rfc-editor.org/rfc/rfc7676","title":"IPv6 Support for Generic Routing Encapsulation (GRE)","authors":["C. Pignataro","R. Bonica","S. Krishnan"],"rawDate":"2015-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7677":{"rfcNumber":"RFC7677","href":"https://www.rfc-editor.org/rfc/rfc7677","title":"SCRAM-SHA-256 and SCRAM-SHA-256-PLUS Simple Authentication and Security Layer (SASL) Mechanisms","authors":["T. Hansen"],"rawDate":"2015-11","status":"Proposed Standard","updatedBy":["RFC9266"],"updates":["RFC5802"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7678":{"rfcNumber":"RFC7678","href":"https://www.rfc-editor.org/rfc/rfc7678","title":"Attribute-Value Pairs for Provisioning Customer Equipment Supporting IPv4-Over-IPv6 Transitional Solutions","authors":["C. Zhou","T. Taylor","Q. Sun","M. Boucadair"],"rawDate":"2015-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7679":{"rfcNumber":"RFC7679","href":"https://www.rfc-editor.org/rfc/rfc7679","title":"A One-Way Delay Metric for IP Performance Metrics (IPPM)","authors":["G. Almes","S. Kalidindi","M. Zekauskas","A. Morton, Ed."],"rawDate":"2016-01","status":"Internet Standard","obsoletes":["RFC2679"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7679","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc768":{"aliasOf":"rfc0768"},"rfc7680":{"rfcNumber":"RFC7680","href":"https://www.rfc-editor.org/rfc/rfc7680","title":"A One-Way Loss Metric for IP Performance Metrics (IPPM)","authors":["G. Almes","S. Kalidindi","M. Zekauskas","A. Morton, Ed."],"rawDate":"2016-01","status":"Internet Standard","obsoletes":["RFC2680"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7681":{"rfcNumber":"RFC7681","href":"https://www.rfc-editor.org/rfc/rfc7681","title":"Email Exchange of Secondary School Transcripts","authors":["J. Davin"],"rawDate":"2015-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7682":{"rfcNumber":"RFC7682","href":"https://www.rfc-editor.org/rfc/rfc7682","title":"Considerations for Internet Routing Registries (IRRs) and Routing Policy Configuration","authors":["D. McPherson","S. Amante","E. Osterweil","L. Blunk","D. Mitchell"],"rawDate":"2015-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7683":{"rfcNumber":"RFC7683","href":"https://www.rfc-editor.org/rfc/rfc7683","title":"Diameter Overload Indication Conveyance","authors":["J. Korhonen, Ed.","S. Donovan, Ed.","B. Campbell","L. Morand"],"rawDate":"2015-10","status":"Proposed Standard","updatedBy":["RFC8581"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7683","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7684":{"rfcNumber":"RFC7684","href":"https://www.rfc-editor.org/rfc/rfc7684","title":"OSPFv2 Prefix/Link Attribute Advertisement","authors":["P. Psenak","H. Gredler","R. Shakir","W. Henderickx","J. Tantsura","A. Lindem"],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7685":{"rfcNumber":"RFC7685","href":"https://www.rfc-editor.org/rfc/rfc7685","title":"A Transport Layer Security (TLS) ClientHello Padding Extension","authors":["A. Langley"],"rawDate":"2015-10","status":"Proposed Standard","updates":["RFC5246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7686":{"rfcNumber":"RFC7686","href":"https://www.rfc-editor.org/rfc/rfc7686","title":"The \".onion\" Special-Use Domain Name","authors":["J. Appelbaum","A. Muffett"],"rawDate":"2015-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7686","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7687":{"rfcNumber":"RFC7687","href":"https://www.rfc-editor.org/rfc/rfc7687","title":"Report from the Strengthening the Internet (STRINT) Workshop","authors":["S. Farrell","R. Wenning","B. Bos","M. Blanchet","H. Tschofenig"],"rawDate":"2015-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7688":{"rfcNumber":"RFC7688","href":"https://www.rfc-editor.org/rfc/rfc7688","title":"GMPLS OSPF Enhancement for Signal and Network Element Compatibility for Wavelength Switched Optical Networks","authors":["Y. Lee, Ed.","G. Bernstein, Ed."],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7689":{"rfcNumber":"RFC7689","href":"https://www.rfc-editor.org/rfc/rfc7689","title":"Signaling Extensions for Wavelength Switched Optical Networks","authors":["G. Bernstein, Ed.","S. Xu","Y. Lee, Ed.","G. Martinelli","H. Harai"],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc769":{"aliasOf":"rfc0769"},"rfc7690":{"rfcNumber":"RFC7690","href":"https://www.rfc-editor.org/rfc/rfc7690","title":"Close Encounters of the ICMP Type 2 Kind (Near Misses with ICMPv6 Packet Too Big (PTB))","authors":["M. Byerly","M. Hite","J. Jaeggli"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7691":{"rfcNumber":"RFC7691","href":"https://www.rfc-editor.org/rfc/rfc7691","title":"Updating the Term Dates of IETF Administrative Oversight Committee (IAOC) Members","authors":["S. Bradner, Ed."],"rawDate":"2015-11","status":"Best Current Practice","obsoletedBy":["RFC8711"],"updates":["RFC4071"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7692":{"rfcNumber":"RFC7692","href":"https://www.rfc-editor.org/rfc/rfc7692","title":"Compression Extensions for WebSocket","authors":["T. Yoshino"],"rawDate":"2015-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7692","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7693":{"rfcNumber":"RFC7693","href":"https://www.rfc-editor.org/rfc/rfc7693","title":"The BLAKE2 Cryptographic Hash and Message Authentication Code (MAC)","authors":["M-J. Saarinen, Ed.","J-P. Aumasson"],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7694":{"rfcNumber":"RFC7694","href":"https://httpwg.org/specs/rfc7694.html","title":"Hypertext Transfer Protocol (HTTP) Client-Initiated Content-Encoding","authors":["J. Reschke"],"rawDate":"2015-11","status":"Proposed Standard","obsoletedBy":["RFC9110"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7695":{"rfcNumber":"RFC7695","href":"https://www.rfc-editor.org/rfc/rfc7695","title":"Distributed Prefix Assignment Algorithm","authors":["P. Pfister","B. Paterson","J. Arkko"],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7696":{"rfcNumber":"RFC7696","href":"https://www.rfc-editor.org/rfc/rfc7696","title":"Guidelines for Cryptographic Algorithm Agility and Selecting Mandatory-to-Implement Algorithms","authors":["R. Housley"],"rawDate":"2015-11","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7696","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7697":{"rfcNumber":"RFC7697","href":"https://www.rfc-editor.org/rfc/rfc7697","title":"MPLS Transport Profile (MPLS-TP) Operations, Administration, and Maintenance (OAM) Identifiers Management Information Base (MIB)","authors":["P. Pan","S. Aldrin","M. Venkatesan","K. Sampath","T. Nadeau","S. Boutros"],"rawDate":"2016-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7697","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7698":{"rfcNumber":"RFC7698","href":"https://www.rfc-editor.org/rfc/rfc7698","title":"Framework and Requirements for GMPLS-Based Control of Flexi-Grid Dense Wavelength Division Multiplexing (DWDM) Networks","authors":["O. Gonzalez de Dios, Ed.","R. Casellas, Ed.","F. Zhang","X. Fu","D. Ceccarelli","I. Hussain"],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7699":{"rfcNumber":"RFC7699","href":"https://www.rfc-editor.org/rfc/rfc7699","title":"Generalized Labels for the Flexi-Grid in Lambda Switch Capable (LSC) Label Switching Routers","authors":["A. Farrel","D. King","Y. Li","F. Zhang"],"rawDate":"2015-11","status":"Proposed Standard","updates":["RFC3471","RFC6205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc77":{"aliasOf":"rfc0077"},"rfc770":{"aliasOf":"rfc0770"},"rfc7700":{"rfcNumber":"RFC7700","href":"https://www.rfc-editor.org/rfc/rfc7700","title":"Preparation, Enforcement, and Comparison of Internationalized Strings Representing Nicknames","authors":["P. Saint-Andre"],"rawDate":"2015-12","status":"Proposed Standard","obsoletedBy":["RFC8266"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7700","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7701":{"rfcNumber":"RFC7701","href":"https://www.rfc-editor.org/rfc/rfc7701","title":"Multi-party Chat Using the Message Session Relay Protocol (MSRP)","authors":["A. Niemi","M. Garcia-Martin","G. Sandbakken"],"rawDate":"2015-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7702":{"rfcNumber":"RFC7702","href":"https://www.rfc-editor.org/rfc/rfc7702","title":"Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Groupchat","authors":["P. Saint-Andre","S. Ibarra","S. Loreto"],"rawDate":"2015-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7703":{"rfcNumber":"RFC7703","href":"https://www.rfc-editor.org/rfc/rfc7703","title":"Experience with Testing of Mapping of Address and Port Using Translation (MAP-T)","authors":["E. Cordeiro","R. Carnier","A. Moreiras"],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7704":{"rfcNumber":"RFC7704","href":"https://www.rfc-editor.org/rfc/rfc7704","title":"An IETF with Much Diversity and Professional Conduct","authors":["D. Crocker","N. Clark"],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7705":{"rfcNumber":"RFC7705","href":"https://www.rfc-editor.org/rfc/rfc7705","title":"Autonomous System Migration Mechanisms and Their Effects on the BGP AS_PATH Attribute","authors":["W. George","S. Amante"],"rawDate":"2015-11","status":"Proposed Standard","updates":["RFC4271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7706":{"rfcNumber":"RFC7706","href":"https://www.rfc-editor.org/rfc/rfc7706","title":"Decreasing Access Time to Root Servers by Running One on Loopback","authors":["W. Kumari","P. Hoffman"],"rawDate":"2015-11","status":"Informational","obsoletedBy":["RFC8806"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7706","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7707":{"rfcNumber":"RFC7707","href":"https://www.rfc-editor.org/rfc/rfc7707","title":"Network Reconnaissance in IPv6 Networks","authors":["F. Gont","T. Chown"],"rawDate":"2016-03","status":"Informational","obsoletes":["RFC5157"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7707","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7708":{"rfcNumber":"RFC7708","href":"https://www.rfc-editor.org/rfc/rfc7708","title":"Using a Generic Associated Channel Label as a Virtual Circuit Connectivity Verification Channel Indicator","authors":["T. Nadeau","L. Martini","S. Bryant"],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7709":{"rfcNumber":"RFC7709","href":"https://www.rfc-editor.org/rfc/rfc7709","title":"Requirements for Very Fast Setup of GMPLS Label Switched Paths (LSPs)","authors":["A. Malis, Ed.","B. Wilson","G. Clapp","V. Shukla"],"rawDate":"2015-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc771":{"aliasOf":"rfc0771"},"rfc7710":{"rfcNumber":"RFC7710","href":"https://www.rfc-editor.org/rfc/rfc7710","title":"Captive-Portal Identification Using DHCP or Router Advertisements (RAs)","authors":["W. Kumari","O. Gudmundsson","P. Ebersman","S. Sheng"],"rawDate":"2015-12","status":"Proposed Standard","obsoletedBy":["RFC8910"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7711":{"rfcNumber":"RFC7711","href":"https://www.rfc-editor.org/rfc/rfc7711","title":"PKIX over Secure HTTP (POSH)","authors":["M. Miller","P. Saint-Andre"],"rawDate":"2015-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7711","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7712":{"rfcNumber":"RFC7712","href":"https://www.rfc-editor.org/rfc/rfc7712","title":"Domain Name Associations (DNA) in the Extensible Messaging and Presence Protocol (XMPP)","authors":["P. Saint-Andre","M. Miller","P. Hancke"],"rawDate":"2015-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7713":{"rfcNumber":"RFC7713","href":"https://www.rfc-editor.org/rfc/rfc7713","title":"Congestion Exposure (ConEx) Concepts, Abstract Mechanism, and Requirements","authors":["M. Mathis","B. Briscoe"],"rawDate":"2015-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7714":{"rfcNumber":"RFC7714","href":"https://www.rfc-editor.org/rfc/rfc7714","title":"AES-GCM Authenticated Encryption in the Secure Real-time Transport Protocol (SRTP)","authors":["D. McGrew","K. Igoe"],"rawDate":"2015-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7714","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7715":{"rfcNumber":"RFC7715","href":"https://www.rfc-editor.org/rfc/rfc7715","title":"Multipoint LDP (mLDP) Node Protection","authors":["IJ. Wijnands, Ed.","K. Raza","A. Atlas","J. Tantsura","Q. Zhao"],"rawDate":"2016-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7716":{"rfcNumber":"RFC7716","href":"https://www.rfc-editor.org/rfc/rfc7716","title":"Global Table Multicast with BGP Multicast VPN (BGP-MVPN) Procedures","authors":["J. Zhang","L. Giuliano","E. Rosen, Ed.","K. Subramanian","D. Pacella"],"rawDate":"2015-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7717":{"rfcNumber":"RFC7717","href":"https://www.rfc-editor.org/rfc/rfc7717","title":"IKEv2-Derived Shared Secret Key for the One-Way Active Measurement Protocol (OWAMP) and Two-Way Active Measurement Protocol (TWAMP)","authors":["K. Pentikousis, Ed.","E. Zhang","Y. Cui"],"rawDate":"2015-12","status":"Proposed Standard","updates":["RFC4656","RFC5357"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7718":{"rfcNumber":"RFC7718","href":"https://www.rfc-editor.org/rfc/rfc7718","title":"Registries for the One-Way Active Measurement Protocol (OWAMP)","authors":["A. Morton"],"rawDate":"2015-12","status":"Proposed Standard","updates":["RFC4656"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7719":{"rfcNumber":"RFC7719","href":"https://www.rfc-editor.org/rfc/rfc7719","title":"DNS Terminology","authors":["P. Hoffman","A. Sullivan","K. Fujiwara"],"rawDate":"2015-12","status":"Informational","obsoletedBy":["RFC8499"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7719","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc772":{"aliasOf":"rfc0772"},"rfc7720":{"rfcNumber":"RFC7720","href":"https://www.rfc-editor.org/rfc/rfc7720","title":"DNS Root Name Service Protocol and Deployment Requirements","authors":["M. Blanchet","L-J. Liman"],"rawDate":"2015-12","status":"Best Current Practice","obsoletes":["RFC2870"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7721":{"rfcNumber":"RFC7721","href":"https://www.rfc-editor.org/rfc/rfc7721","title":"Security and Privacy Considerations for IPv6 Address Generation Mechanisms","authors":["A. Cooper","F. Gont","D. Thaler"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7722":{"rfcNumber":"RFC7722","href":"https://www.rfc-editor.org/rfc/rfc7722","title":"Multi-Topology Extension for the Optimized Link State Routing Protocol Version 2 (OLSRv2)","authors":["C. Dearlove","T. Clausen"],"rawDate":"2015-12","status":"Experimental","updates":["RFC7188","RFC7631"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7723":{"rfcNumber":"RFC7723","href":"https://www.rfc-editor.org/rfc/rfc7723","title":"Port Control Protocol (PCP) Anycast Addresses","authors":["S. Kiesel","R. Penno"],"rawDate":"2016-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7724":{"rfcNumber":"RFC7724","href":"https://www.rfc-editor.org/rfc/rfc7724","title":"Active DHCPv4 Lease Query","authors":["K. Kinnear","M. Stapp","B. Volz","N. Russell"],"rawDate":"2015-12","status":"Proposed Standard","updates":["RFC6926"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7725":{"rfcNumber":"RFC7725","href":"https://httpwg.org/specs/rfc7725.html","title":"An HTTP Status Code to Report Legal Obstacles","authors":["T. Bray"],"rawDate":"2016-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7725","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7726":{"rfcNumber":"RFC7726","href":"https://www.rfc-editor.org/rfc/rfc7726","title":"Clarifying Procedures for Establishing BFD Sessions for MPLS Label Switched Paths (LSPs)","authors":["V. Govindan","K. Rajaraman","G. Mirsky","N. Akiya","S. Aldrin"],"rawDate":"2016-01","status":"Proposed Standard","updates":["RFC5884"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7727":{"rfcNumber":"RFC7727","href":"https://www.rfc-editor.org/rfc/rfc7727","title":"Spanning Tree Protocol (STP) Application of the Inter-Chassis Communication Protocol (ICCP)","authors":["M. Zhang","H. Wen","J. Hu"],"rawDate":"2016-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7728":{"rfcNumber":"RFC7728","href":"https://www.rfc-editor.org/rfc/rfc7728","title":"RTP Stream Pause and Resume","authors":["B. Burman","A. Akram","R. Even","M. Westerlund"],"rawDate":"2016-02","status":"Proposed Standard","updates":["RFC5104"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7728","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7729":{"rfcNumber":"RFC7729","href":"https://www.rfc-editor.org/rfc/rfc7729","title":"Forwarding and Control Element Separation (ForCES) Logical Functional Block (LFB) Subsidiary Management","authors":["B. Khasnabish","E. Haleplidis","J. Hadi Salim, Ed."],"rawDate":"2015-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7729","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc773":{"aliasOf":"rfc0773"},"rfc7730":{"rfcNumber":"RFC7730","href":"https://www.rfc-editor.org/rfc/rfc7730","title":"Resource Public Key Infrastructure (RPKI) Trust Anchor Locator","authors":["G. Huston","S. Weiler","G. Michaelson","S. Kent"],"rawDate":"2016-01","status":"Proposed Standard","obsoletedBy":["RFC8630"],"obsoletes":["RFC6490"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7731":{"rfcNumber":"RFC7731","href":"https://www.rfc-editor.org/rfc/rfc7731","title":"Multicast Protocol for Low-Power and Lossy Networks (MPL)","authors":["J. Hui","R. Kelsey"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7732":{"rfcNumber":"RFC7732","href":"https://www.rfc-editor.org/rfc/rfc7732","title":"Forwarder Policy for Multicast with Admin-Local Scope in the Multicast Protocol for Low-Power and Lossy Networks (MPL)","authors":["P. van der Stok","R. Cragie"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7733":{"rfcNumber":"RFC7733","href":"https://www.rfc-editor.org/rfc/rfc7733","title":"Applicability Statement: The Use of the Routing Protocol for Low-Power and Lossy Networks (RPL) Protocol Suite in Home Automation and Building Control","authors":["A. Brandt","E. Baccelli","R. Cragie","P. van der Stok"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7734":{"rfcNumber":"RFC7734","href":"https://www.rfc-editor.org/rfc/rfc7734","title":"Support for Shortest Path Bridging MAC Mode over Ethernet VPN (EVPN)","authors":["D. Allan, Ed.","J. Tantsura","D. Fedyk","A. Sajassi"],"rawDate":"2016-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7735":{"rfcNumber":"RFC7735","href":"https://www.rfc-editor.org/rfc/rfc7735","title":"Tracking Reviews of Documents","authors":["R. Sparks","T. Kivinen"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7736":{"rfcNumber":"RFC7736","href":"https://www.rfc-editor.org/rfc/rfc7736","title":"Content Delivery Network Interconnection (CDNI) Media Type Registration","authors":["K. Ma"],"rawDate":"2015-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7737":{"rfcNumber":"RFC7737","href":"https://www.rfc-editor.org/rfc/rfc7737","title":"Label Switched Path (LSP) Ping and Traceroute Reply Mode Simplification","authors":["N. Akiya","G. Swallow","C. Pignataro","L. Andersson","M. Chen"],"rawDate":"2016-01","status":"Proposed Standard","updates":["RFC7110"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7738":{"rfcNumber":"RFC7738","href":"https://www.rfc-editor.org/rfc/rfc7738","title":"A Uniform Resource Name (URN) Namespace for the Consultative Committee for Space Data Systems (CCSDS)","authors":["M. Blanchet","A. Schiltknecht","P. Shames"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7739":{"rfcNumber":"RFC7739","href":"https://www.rfc-editor.org/rfc/rfc7739","title":"Security Implications of Predictable Fragment Identification Values","authors":["F. Gont"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc774":{"aliasOf":"rfc0774"},"rfc7740":{"rfcNumber":"RFC7740","href":"https://www.rfc-editor.org/rfc/rfc7740","title":"Simulating Partial Mesh of Multipoint-to-Multipoint (MP2MP) Provider Tunnels with Ingress Replication","authors":["Z. Zhang","Y. Rekhter","A. Dolganow"],"rawDate":"2016-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7741":{"rfcNumber":"RFC7741","href":"https://www.rfc-editor.org/rfc/rfc7741","title":"RTP Payload Format for VP8 Video","authors":["P. Westin","H. Lundin","M. Glover","J. Uberti","F. Galligan"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7742":{"rfcNumber":"RFC7742","href":"https://www.rfc-editor.org/rfc/rfc7742","title":"WebRTC Video Processing and Codec Requirements","authors":["A.B. Roach"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7743":{"rfcNumber":"RFC7743","href":"https://www.rfc-editor.org/rfc/rfc7743","title":"Relayed Echo Reply Mechanism for Label Switched Path (LSP) Ping","authors":["J. Luo, Ed.","L. Jin, Ed.","T. Nadeau, Ed.","G. Swallow, Ed."],"rawDate":"2016-01","status":"Proposed Standard","updates":["RFC4379"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7744":{"rfcNumber":"RFC7744","href":"https://www.rfc-editor.org/rfc/rfc7744","title":"Use Cases for Authentication and Authorization in Constrained Environments","authors":["L. Seitz, Ed.","S. Gerdes, Ed.","G. Selander","M. Mani","S. Kumar"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7745":{"rfcNumber":"RFC7745","href":"https://www.rfc-editor.org/rfc/rfc7745","title":"XML Schemas for Reverse DNS Management","authors":["T. Manderson"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7746":{"rfcNumber":"RFC7746","href":"https://www.rfc-editor.org/rfc/rfc7746","title":"Label Switched Path (LSP) Self-Ping","authors":["R. Bonica","I. Minei","M. Conn","D. Pacella","L. Tomotaki"],"rawDate":"2016-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7747":{"rfcNumber":"RFC7747","href":"https://www.rfc-editor.org/rfc/rfc7747","title":"Basic BGP Convergence Benchmarking Methodology for Data-Plane Convergence","authors":["R. Papneja","B. Parise","S. Hares","D. Lee","I. Varlashkin"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7748":{"rfcNumber":"RFC7748","href":"https://www.rfc-editor.org/rfc/rfc7748","title":"Elliptic Curves for Security","authors":["A. Langley","M. Hamburg","S. Turner"],"rawDate":"2016-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7748","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7749":{"rfcNumber":"RFC7749","href":"https://www.rfc-editor.org/rfc/rfc7749","title":"The \"xml2rfc\" Version 2 Vocabulary","authors":["J. Reschke"],"rawDate":"2016-02","status":"Informational","obsoletedBy":["RFC7991"],"obsoletes":["RFC2629"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7749","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc775":{"aliasOf":"rfc0775"},"rfc7750":{"rfcNumber":"RFC7750","href":"https://www.rfc-editor.org/rfc/rfc7750","title":"Differentiated Service Code Point and Explicit Congestion Notification Monitoring in the Two-Way Active Measurement Protocol (TWAMP)","authors":["J. Hedin","G. Mirsky","S. Baillargeon"],"rawDate":"2016-02","status":"Proposed Standard","updates":["RFC5357"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7751":{"rfcNumber":"RFC7751","href":"https://www.rfc-editor.org/rfc/rfc7751","title":"Kerberos Authorization Data Container Authenticated by Multiple Message Authentication Codes (MACs)","authors":["S. Sorce","T. Yu"],"rawDate":"2016-03","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7752":{"rfcNumber":"RFC7752","href":"https://www.rfc-editor.org/rfc/rfc7752","title":"North-Bound Distribution of Link-State and Traffic Engineering (TE) Information Using BGP","authors":["H. Gredler, Ed.","J. Medved","S. Previdi","A. Farrel","S. Ray"],"rawDate":"2016-03","status":"Proposed Standard","updatedBy":["RFC9029"],"obsoletedBy":["RFC9552"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7752","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7753":{"rfcNumber":"RFC7753","href":"https://www.rfc-editor.org/rfc/rfc7753","title":"Port Control Protocol (PCP) Extension for Port-Set Allocation","authors":["Q. Sun","M. Boucadair","S. Sivakumar","C. Zhou","T. Tsou","S. Perreault"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7754":{"rfcNumber":"RFC7754","href":"https://www.rfc-editor.org/rfc/rfc7754","title":"Technical Considerations for Internet Service Blocking and Filtering","authors":["R. Barnes","A. Cooper","O. Kolkman","D. Thaler","E. Nordmark"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7755":{"rfcNumber":"RFC7755","href":"https://www.rfc-editor.org/rfc/rfc7755","title":"SIIT-DC: Stateless IP/ICMP Translation for IPv6 Data Center Environments","authors":["T. Anderson"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7756":{"rfcNumber":"RFC7756","href":"https://www.rfc-editor.org/rfc/rfc7756","title":"Stateless IP/ICMP Translation for IPv6 Internet Data Center Environments (SIIT-DC): Dual Translation Mode","authors":["T. Anderson","S. Steffann"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7757":{"rfcNumber":"RFC7757","href":"https://www.rfc-editor.org/rfc/rfc7757","title":"Explicit Address Mappings for Stateless IP/ICMP Translation","authors":["T. Anderson","A. Leiva Popper"],"rawDate":"2016-02","status":"Proposed Standard","updates":["RFC6145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7758":{"rfcNumber":"RFC7758","href":"https://www.rfc-editor.org/rfc/rfc7758","title":"Time Capability in NETCONF","authors":["T. Mizrahi","Y. Moses"],"rawDate":"2016-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7759":{"rfcNumber":"RFC7759","href":"https://www.rfc-editor.org/rfc/rfc7759","title":"Configuration of Proactive Operations, Administration, and Maintenance (OAM) Functions for MPLS-Based Transport Networks Using Label Switched Path (LSP) Ping","authors":["E. Bellagamba","G. Mirsky","L. Andersson","P. Skoldstrom","D. Ward","J. Drake"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc776":{"aliasOf":"rfc0776"},"rfc7760":{"rfcNumber":"RFC7760","href":"https://www.rfc-editor.org/rfc/rfc7760","title":"Statement of Work for Extensions to the IETF Datatracker for Author Statistics","authors":["R. Housley"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7761":{"rfcNumber":"RFC7761","href":"https://www.rfc-editor.org/rfc/rfc7761","title":"Protocol Independent Multicast - Sparse Mode (PIM-SM): Protocol Specification (Revised)","authors":["B. Fenner","M. Handley","H. Holbrook","I. Kouvelas","R. Parekh","Z. Zhang","L. Zheng"],"rawDate":"2016-03","status":"Internet Standard","updatedBy":["RFC8736","RFC9436"],"obsoletes":["RFC4601"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7761","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7762":{"rfcNumber":"RFC7762","href":"https://www.rfc-editor.org/rfc/rfc7762","title":"Initial Assignment for the Content Security Policy Directives Registry","authors":["M. West"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7763":{"rfcNumber":"RFC7763","href":"https://www.rfc-editor.org/rfc/rfc7763","title":"The text/markdown Media Type","authors":["S. Leonard"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7764":{"rfcNumber":"RFC7764","href":"https://www.rfc-editor.org/rfc/rfc7764","title":"Guidance on Markdown: Design Philosophies, Stability Strategies, and Select Registrations","authors":["S. Leonard"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7765":{"rfcNumber":"RFC7765","href":"https://www.rfc-editor.org/rfc/rfc7765","title":"TCP and Stream Control Transmission Protocol (SCTP) RTO Restart","authors":["P. Hurtig","A. Brunstrom","A. Petlund","M. Welzl"],"rawDate":"2016-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7766":{"rfcNumber":"RFC7766","href":"https://www.rfc-editor.org/rfc/rfc7766","title":"DNS Transport over TCP - Implementation Requirements","authors":["J. Dickinson","S. Dickinson","R. Bellis","A. Mankin","D. Wessels"],"rawDate":"2016-03","status":"Proposed Standard","updatedBy":["RFC8490","RFC9103"],"updates":["RFC1035","RFC1123"],"obsoletes":["RFC5966"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7767":{"rfcNumber":"RFC7767","href":"https://www.rfc-editor.org/rfc/rfc7767","title":"Application-Initiated Check-Pointing via the Port Control Protocol (PCP)","authors":["S. Vinapamula","S. Sivakumar","M. Boucadair","T. Reddy"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7768":{"rfcNumber":"RFC7768","href":"https://www.rfc-editor.org/rfc/rfc7768","title":"Port Management to Reduce Logging in Large-Scale NATs","authors":["T. Tsou","W. Li","T. Taylor","J. Huang"],"rawDate":"2016-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7769":{"rfcNumber":"RFC7769","href":"https://www.rfc-editor.org/rfc/rfc7769","title":"Media Access Control (MAC) Address Withdrawal over Static Pseudowire","authors":["S. Sivabalan","S. Boutros","H. Shah","S. Aldrin","M. Venkatesan"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc777":{"aliasOf":"rfc0777"},"rfc7770":{"rfcNumber":"RFC7770","href":"https://www.rfc-editor.org/rfc/rfc7770","title":"Extensions to OSPF for Advertising Optional Router Capabilities","authors":["A. Lindem, Ed.","N. Shen","JP. Vasseur","R. Aggarwal","S. Shaffer"],"rawDate":"2016-02","status":"Proposed Standard","obsoletes":["RFC4970"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7770","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7771":{"rfcNumber":"RFC7771","href":"https://www.rfc-editor.org/rfc/rfc7771","title":"Switching Provider Edge (S-PE) Protection for MPLS and MPLS Transport Profile (MPLS-TP) Static Multi-Segment Pseudowires","authors":["A. Malis, Ed.","L. Andersson","H. van Helvoort","J. Shin","L. Wang","A. D'Alessandro"],"rawDate":"2016-01","status":"Proposed Standard","updates":["RFC6870"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7772":{"rfcNumber":"RFC7772","href":"https://www.rfc-editor.org/rfc/rfc7772","title":"Reducing Energy Consumption of Router Advertisements","authors":["A. Yourtchenko","L. Colitti"],"rawDate":"2016-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7773":{"rfcNumber":"RFC7773","href":"https://www.rfc-editor.org/rfc/rfc7773","title":"Authentication Context Certificate Extension","authors":["S. Santesson"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7774":{"rfcNumber":"RFC7774","href":"https://www.rfc-editor.org/rfc/rfc7774","title":"Multicast Protocol for Low-Power and Lossy Networks (MPL) Parameter Configuration Option for DHCPv6","authors":["Y. Doi","M. Gillmore"],"rawDate":"2016-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7774","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7775":{"rfcNumber":"RFC7775","href":"https://www.rfc-editor.org/rfc/rfc7775","title":"IS-IS Route Preference for Extended IP and IPv6 Reachability","authors":["L. Ginsberg","S. Litkowski","S. Previdi"],"rawDate":"2016-02","status":"Proposed Standard","updates":["RFC5308"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7776":{"rfcNumber":"RFC7776","href":"https://www.rfc-editor.org/rfc/rfc7776","title":"IETF Anti-Harassment Procedures","authors":["P. Resnick","A. Farrel"],"rawDate":"2016-03","status":"Best Current Practice","updatedBy":["RFC8716"],"updates":["RFC2418"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7777":{"rfcNumber":"RFC7777","href":"https://www.rfc-editor.org/rfc/rfc7777","title":"Advertising Node Administrative Tags in OSPF","authors":["S. Hegde","R. Shakir","A. Smirnov","Z. Li","B. Decraene"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7778":{"rfcNumber":"RFC7778","href":"https://www.rfc-editor.org/rfc/rfc7778","title":"Mobile Communication Congestion Exposure Scenario","authors":["D. Kutscher","F. Mir","R. Winter","S. Krishnan","Y. Zhang","CJ. Bernardos"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7779":{"rfcNumber":"RFC7779","href":"https://www.rfc-editor.org/rfc/rfc7779","title":"Directional Airtime Metric Based on Packet Sequence Numbers for Optimized Link State Routing Version 2 (OLSRv2)","authors":["H. Rogge","E. Baccelli"],"rawDate":"2016-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc778":{"aliasOf":"rfc0778"},"rfc7780":{"rfcNumber":"RFC7780","href":"https://www.rfc-editor.org/rfc/rfc7780","title":"Transparent Interconnection of Lots of Links (TRILL): Clarifications, Corrections, and Updates","authors":["D. Eastlake 3rd","M. Zhang","R. Perlman","A. Banerjee","A. Ghanwani","S. Gupta"],"rawDate":"2016-02","status":"Proposed Standard","updatedBy":["RFC8249"],"updates":["RFC6325","RFC7177","RFC7179"],"obsoletes":["RFC7180"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7781":{"rfcNumber":"RFC7781","href":"https://www.rfc-editor.org/rfc/rfc7781","title":"Transparent Interconnection of Lots of Links (TRILL): Pseudo-Nickname for Active-Active Access","authors":["H. Zhai","T. Senevirathne","R. Perlman","M. Zhang","Y. Li"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7782":{"rfcNumber":"RFC7782","href":"https://www.rfc-editor.org/rfc/rfc7782","title":"Transparent Interconnection of Lots of Links (TRILL) Active-Active Edge Using Multiple MAC Attachments","authors":["M. Zhang","R. Perlman","H. Zhai","M. Durrani","S. Gupta"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7783":{"rfcNumber":"RFC7783","href":"https://www.rfc-editor.org/rfc/rfc7783","title":"Coordinated Multicast Trees (CMT) for Transparent Interconnection of Lots of Links (TRILL)","authors":["T. Senevirathne","J. Pathangi","J. Hudson"],"rawDate":"2016-02","status":"Proposed Standard","updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7784":{"rfcNumber":"RFC7784","href":"https://www.rfc-editor.org/rfc/rfc7784","title":"Transparent Interconnection of Lots of Links (TRILL) Operations, Administration, and Maintenance (OAM) MIB","authors":["D. Kumar","S. Salam","T. Senevirathne"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7785":{"rfcNumber":"RFC7785","href":"https://www.rfc-editor.org/rfc/rfc7785","title":"Recommendations for Prefix Binding in the Context of Softwire Dual-Stack Lite","authors":["S. Vinapamula","M. Boucadair"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7786":{"rfcNumber":"RFC7786","href":"https://www.rfc-editor.org/rfc/rfc7786","title":"TCP Modifications for Congestion Exposure (ConEx)","authors":["M. Kuehlewind, Ed.","R. Scheffenegger"],"rawDate":"2016-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7787":{"rfcNumber":"RFC7787","href":"https://www.rfc-editor.org/rfc/rfc7787","title":"Distributed Node Consensus Protocol","authors":["M. Stenberg","S. Barth"],"rawDate":"2016-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7788":{"rfcNumber":"RFC7788","href":"https://www.rfc-editor.org/rfc/rfc7788","title":"Home Networking Control Protocol","authors":["M. Stenberg","S. Barth","P. Pfister"],"rawDate":"2016-04","status":"Proposed Standard","updatedBy":["RFC8375"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7788","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7789":{"rfcNumber":"RFC7789","href":"https://www.rfc-editor.org/rfc/rfc7789","title":"Impact of BGP Filtering on Inter-Domain Routing Policies","authors":["C. Cardona","P. Francois","P. Lucente"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc779":{"aliasOf":"rfc0779"},"rfc7790":{"rfcNumber":"RFC7790","href":"https://www.rfc-editor.org/rfc/rfc7790","title":"Mapping Characters for Classes of the Preparation, Enforcement, and Comparison of Internationalized Strings (PRECIS)","authors":["Y. Yoneya","T. Nemoto"],"rawDate":"2016-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7791":{"rfcNumber":"RFC7791","href":"https://www.rfc-editor.org/rfc/rfc7791","title":"Cloning the IKE Security Association in the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["D. Migault, Ed.","V. Smyslov"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7792":{"rfcNumber":"RFC7792","href":"https://www.rfc-editor.org/rfc/rfc7792","title":"RSVP-TE Signaling Extensions in Support of Flexi-Grid Dense Wavelength Division Multiplexing (DWDM) Networks","authors":["F. Zhang","X. Zhang","A. Farrel","O. Gonzalez de Dios","D. Ceccarelli"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7793":{"rfcNumber":"RFC7793","href":"https://www.rfc-editor.org/rfc/rfc7793","title":"Adding 100.64.0.0/10 Prefixes to the IPv4 Locally-Served DNS Zones Registry","authors":["M. Andrews"],"rawDate":"2016-05","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7794":{"rfcNumber":"RFC7794","href":"https://www.rfc-editor.org/rfc/rfc7794","title":"IS-IS Prefix Attributes for Extended IPv4 and IPv6 Reachability","authors":["L. Ginsberg, Ed.","B. Decraene","S. Previdi","X. Xu","U. Chunduri"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7795":{"rfcNumber":"RFC7795","href":"https://www.rfc-editor.org/rfc/rfc7795","title":"Pseudowire Redundancy on the Switching Provider Edge (S-PE)","authors":["J. Dong","H. Wang"],"rawDate":"2016-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7796":{"rfcNumber":"RFC7796","href":"https://www.rfc-editor.org/rfc/rfc7796","title":"Ethernet-Tree (E-Tree) Support in Virtual Private LAN Service (VPLS)","authors":["Y. Jiang, Ed.","L. Yong","M. Paul"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7797":{"rfcNumber":"RFC7797","href":"https://www.rfc-editor.org/rfc/rfc7797","title":"JSON Web Signature (JWS) Unencoded Payload Option","authors":["M. Jones"],"rawDate":"2016-02","status":"Proposed Standard","updates":["RFC7519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7798":{"rfcNumber":"RFC7798","href":"https://www.rfc-editor.org/rfc/rfc7798","title":"RTP Payload Format for High Efficiency Video Coding (HEVC)","authors":["Y.-K. Wang","Y. Sanchez","T. Schierl","S. Wenger","M. M. Hannuksela"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7799":{"rfcNumber":"RFC7799","href":"https://www.rfc-editor.org/rfc/rfc7799","title":"Active and Passive Metrics and Methods (with Hybrid Types In-Between)","authors":["A. Morton"],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc78":{"aliasOf":"rfc0078"},"rfc780":{"aliasOf":"rfc0780"},"rfc7800":{"rfcNumber":"RFC7800","href":"https://www.rfc-editor.org/rfc/rfc7800","title":"Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)","authors":["M. Jones","J. Bradley","H. Tschofenig"],"rawDate":"2016-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7800","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7801":{"rfcNumber":"RFC7801","href":"https://www.rfc-editor.org/rfc/rfc7801","title":"GOST R 34.12-2015: Block Cipher \"Kuznyechik\"","authors":["V. Dolmatov, Ed."],"rawDate":"2016-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7801","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7802":{"rfcNumber":"RFC7802","href":"https://www.rfc-editor.org/rfc/rfc7802","title":"A Pseudo-Random Function (PRF) for the Kerberos V Generic Security Service Application Program Interface (GSS-API) Mechanism","authors":["S. Emery","N. Williams"],"rawDate":"2016-03","status":"Proposed Standard","obsoletes":["RFC4402"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7803":{"rfcNumber":"RFC7803","href":"https://www.rfc-editor.org/rfc/rfc7803","title":"Changing the Registration Policy for the NETCONF Capability URNs Registry","authors":["B. Leiba"],"rawDate":"2016-02","status":"Best Current Practice","updates":["RFC6241"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7804":{"rfcNumber":"RFC7804","href":"https://www.rfc-editor.org/rfc/rfc7804","title":"Salted Challenge Response HTTP Authentication Mechanism","authors":["A. Melnikov"],"rawDate":"2016-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7804","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7805":{"rfcNumber":"RFC7805","href":"https://www.rfc-editor.org/rfc/rfc7805","title":"Moving Outdated TCP Extensions and TCP-Related Documents to Historic or Informational Status","authors":["A. Zimmermann","W. Eddy","L. Eggert"],"rawDate":"2016-04","status":"Informational","updates":["RFC7414"],"obsoletes":["RFC0675","RFC0721","RFC0761","RFC0813","RFC0816","RFC0879","RFC0896","RFC1078","RFC6013"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7806":{"rfcNumber":"RFC7806","href":"https://www.rfc-editor.org/rfc/rfc7806","title":"On Queuing, Marking, and Dropping","authors":["F. Baker","R. Pan"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7807":{"rfcNumber":"RFC7807","href":"https://www.rfc-editor.org/rfc/rfc7807","title":"Problem Details for HTTP APIs","authors":["M. Nottingham","E. Wilde"],"rawDate":"2016-03","status":"Proposed Standard","obsoletedBy":["RFC9457"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7807","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7808":{"rfcNumber":"RFC7808","href":"https://www.rfc-editor.org/rfc/rfc7808","title":"Time Zone Data Distribution Service","authors":["M. Douglass","C. Daboo"],"rawDate":"2016-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7809":{"rfcNumber":"RFC7809","href":"https://www.rfc-editor.org/rfc/rfc7809","title":"Calendaring Extensions to WebDAV (CalDAV): Time Zones by Reference","authors":["C. Daboo"],"rawDate":"2016-03","status":"Proposed Standard","updates":["RFC4791"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc781":{"aliasOf":"rfc0781"},"rfc7810":{"rfcNumber":"RFC7810","href":"https://www.rfc-editor.org/rfc/rfc7810","title":"IS-IS Traffic Engineering (TE) Metric Extensions","authors":["S. Previdi, Ed.","S. Giacalone","D. Ward","J. Drake","Q. Wu"],"rawDate":"2016-05","status":"Proposed Standard","obsoletedBy":["RFC8570"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7810","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7811":{"rfcNumber":"RFC7811","href":"https://www.rfc-editor.org/rfc/rfc7811","title":"An Algorithm for Computing IP/LDP Fast Reroute Using Maximally Redundant Trees (MRT-FRR)","authors":["G. Enyedi","A. Csaszar","A. Atlas","C. Bowers","A. Gopalan"],"rawDate":"2016-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7812":{"rfcNumber":"RFC7812","href":"https://www.rfc-editor.org/rfc/rfc7812","title":"An Architecture for IP/LDP Fast Reroute Using Maximally Redundant Trees (MRT-FRR)","authors":["A. Atlas","C. Bowers","G. Enyedi"],"rawDate":"2016-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7813":{"rfcNumber":"RFC7813","href":"https://www.rfc-editor.org/rfc/rfc7813","title":"IS-IS Path Control and Reservation","authors":["J. Farkas, Ed.","N. Bragg","P. Unbehagen","G. Parsons","P. Ashwood-Smith","C. Bowers"],"rawDate":"2016-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7814":{"rfcNumber":"RFC7814","href":"https://www.rfc-editor.org/rfc/rfc7814","title":"Virtual Subnet: A BGP/MPLS IP VPN-Based Subnet Extension Solution","authors":["X. Xu","C. Jacquenet","R. Raszuk","T. Boyes","B. Fee"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7815":{"rfcNumber":"RFC7815","href":"https://www.rfc-editor.org/rfc/rfc7815","title":"Minimal Internet Key Exchange Version 2 (IKEv2) Initiator Implementation","authors":["T. Kivinen"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7816":{"rfcNumber":"RFC7816","href":"https://www.rfc-editor.org/rfc/rfc7816","title":"DNS Query Name Minimisation to Improve Privacy","authors":["S. Bortzmeyer"],"rawDate":"2016-03","status":"Experimental","obsoletedBy":["RFC9156"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7816","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7817":{"rfcNumber":"RFC7817","href":"https://www.rfc-editor.org/rfc/rfc7817","title":"Updated Transport Layer Security (TLS) Server Identity Check Procedure for Email-Related Protocols","authors":["A. Melnikov"],"rawDate":"2016-03","status":"Proposed Standard","updates":["RFC2595","RFC3207","RFC3501","RFC5804"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7818":{"rfcNumber":"RFC7818","href":"https://www.rfc-editor.org/rfc/rfc7818","title":"URN Namespace for MEF Documents","authors":["M. Jethanandani"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7819":{"rfcNumber":"RFC7819","href":"https://www.rfc-editor.org/rfc/rfc7819","title":"Privacy Considerations for DHCP","authors":["S. Jiang","S. Krishnan","T. Mrugalski"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc782":{"aliasOf":"rfc0782"},"rfc7820":{"rfcNumber":"RFC7820","href":"https://www.rfc-editor.org/rfc/rfc7820","title":"UDP Checksum Complement in the One-Way Active Measurement Protocol (OWAMP) and Two-Way Active Measurement Protocol (TWAMP)","authors":["T. Mizrahi"],"rawDate":"2016-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7821":{"rfcNumber":"RFC7821","href":"https://www.rfc-editor.org/rfc/rfc7821","title":"UDP Checksum Complement in the Network Time Protocol (NTP)","authors":["T. Mizrahi"],"rawDate":"2016-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7822":{"rfcNumber":"RFC7822","href":"https://www.rfc-editor.org/rfc/rfc7822","title":"Network Time Protocol Version 4 (NTPv4) Extension Fields","authors":["T. Mizrahi","D. Mayer"],"rawDate":"2016-03","status":"Proposed Standard","updates":["RFC5905"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7823":{"rfcNumber":"RFC7823","href":"https://www.rfc-editor.org/rfc/rfc7823","title":"Performance-Based Path Selection for Explicitly Routed Label Switched Paths (LSPs) Using TE Metric Extensions","authors":["A. Atlas","J. Drake","S. Giacalone","S. Previdi"],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7824":{"rfcNumber":"RFC7824","href":"https://www.rfc-editor.org/rfc/rfc7824","title":"Privacy Considerations for DHCPv6","authors":["S. Krishnan","T. Mrugalski","S. Jiang"],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7825":{"rfcNumber":"RFC7825","href":"https://www.rfc-editor.org/rfc/rfc7825","title":"A Network Address Translator (NAT) Traversal Mechanism for Media Controlled by the Real-Time Streaming Protocol (RTSP)","authors":["J. Goldberg","M. Westerlund","T. Zeng"],"rawDate":"2016-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7826":{"rfcNumber":"RFC7826","href":"https://www.rfc-editor.org/rfc/rfc7826","title":"Real-Time Streaming Protocol Version 2.0","authors":["H. Schulzrinne","A. Rao","R. Lanphier","M. Westerlund","M. Stiemerling, Ed."],"rawDate":"2016-12","status":"Proposed Standard","obsoletes":["RFC2326"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7827":{"rfcNumber":"RFC7827","href":"https://www.rfc-editor.org/rfc/rfc7827","title":"The Role of the IRTF Chair","authors":["L. Eggert"],"rawDate":"2016-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7828":{"rfcNumber":"RFC7828","href":"https://www.rfc-editor.org/rfc/rfc7828","title":"The edns-tcp-keepalive EDNS0 Option","authors":["P. Wouters","J. Abley","S. Dickinson","R. Bellis"],"rawDate":"2016-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7829":{"rfcNumber":"RFC7829","href":"https://www.rfc-editor.org/rfc/rfc7829","title":"SCTP-PF: A Quick Failover Algorithm for the Stream Control Transmission Protocol","authors":["Y. Nishida","P. Natarajan","A. Caro","P. Amer","K. Nielsen"],"rawDate":"2016-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc783":{"aliasOf":"rfc0783"},"rfc7830":{"rfcNumber":"RFC7830","href":"https://www.rfc-editor.org/rfc/rfc7830","title":"The EDNS(0) Padding Option","authors":["A. Mayrhofer"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7831":{"rfcNumber":"RFC7831","href":"https://www.rfc-editor.org/rfc/rfc7831","title":"Application Bridging for Federated Access Beyond Web (ABFAB) Architecture","authors":["J. Howlett","S. Hartman","H. Tschofenig","J. Schaad"],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7832":{"rfcNumber":"RFC7832","href":"https://www.rfc-editor.org/rfc/rfc7832","title":"Application Bridging for Federated Access Beyond Web (ABFAB) Use Cases","authors":["R. Smith, Ed."],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7833":{"rfcNumber":"RFC7833","href":"https://www.rfc-editor.org/rfc/rfc7833","title":"A RADIUS Attribute, Binding, Profiles, Name Identifier Format, and Confirmation Methods for the Security Assertion Markup Language (SAML)","authors":["J. Howlett","S. Hartman","A. Perez-Mendez, Ed."],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7834":{"rfcNumber":"RFC7834","href":"https://www.rfc-editor.org/rfc/rfc7834","title":"Locator/ID Separation Protocol (LISP) Impact","authors":["D. Saucez","L. Iannone","A. Cabellos","F. Coras"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7835":{"rfcNumber":"RFC7835","href":"https://www.rfc-editor.org/rfc/rfc7835","title":"Locator/ID Separation Protocol (LISP) Threat Analysis","authors":["D. Saucez","L. Iannone","O. Bonaventure"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7836":{"rfcNumber":"RFC7836","href":"https://www.rfc-editor.org/rfc/rfc7836","title":"Guidelines on the Cryptographic Algorithms to Accompany the Usage of Standards GOST R 34.10-2012 and GOST R 34.11-2012","authors":["S. Smyshlyaev, Ed.","E. Alekseev","I. Oshkin","V. Popov","S. Leontiev","V. Podobaev","D. Belyavsky"],"rawDate":"2016-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7836","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7837":{"rfcNumber":"RFC7837","href":"https://www.rfc-editor.org/rfc/rfc7837","title":"IPv6 Destination Option for Congestion Exposure (ConEx)","authors":["S. Krishnan","M. Kuehlewind","B. Briscoe","C. Ralli"],"rawDate":"2016-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7838":{"rfcNumber":"RFC7838","href":"https://httpwg.org/specs/rfc7838.html","title":"HTTP Alternative Services","authors":["M. Nottingham","P. McManus","J. Reschke"],"rawDate":"2016-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7838","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7839":{"rfcNumber":"RFC7839","href":"https://www.rfc-editor.org/rfc/rfc7839","title":"Access-Network-Identifier Option in DHCP","authors":["S. Bhandari","S. Gundavelli","M. Grayson","B. Volz","J. Korhonen"],"rawDate":"2016-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7839","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc784":{"aliasOf":"rfc0784"},"rfc7840":{"rfcNumber":"RFC7840","href":"https://www.rfc-editor.org/rfc/rfc7840","title":"A Routing Request Extension for the HTTP-Enabled Location Delivery (HELD) Protocol","authors":["J. Winterbottom","H. Tschofenig","L. Liess"],"rawDate":"2016-05","status":"Proposed Standard","updates":["RFC5985","RFC6881"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7841":{"rfcNumber":"RFC7841","href":"https://www.rfc-editor.org/rfc/rfc7841","title":"RFC Streams, Headers, and Boilerplates","authors":["J. Halpern, Ed.","L. Daigle, Ed.","O. Kolkman, Ed."],"rawDate":"2016-05","status":"Informational","updatedBy":["RFC9280"],"obsoletes":["RFC5741"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7841","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7842":{"rfcNumber":"RFC7842","href":"https://www.rfc-editor.org/rfc/rfc7842","title":"Requirements for Improvements to the IETF Email List Archiving, Web-Based Browsing, and Search Tool","authors":["R. Sparks"],"rawDate":"2016-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7843":{"rfcNumber":"RFC7843","href":"https://www.rfc-editor.org/rfc/rfc7843","title":"Port Control Protocol (PCP) Third-Party ID Option","authors":["A. Ripke","R. Winter","T. Dietz","J. Quittek","R. da Silva"],"rawDate":"2016-05","status":"Proposed Standard","updates":["RFC6887"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7844":{"rfcNumber":"RFC7844","href":"https://www.rfc-editor.org/rfc/rfc7844","title":"Anonymity Profiles for DHCP Clients","authors":["C. Huitema","T. Mrugalski","S. Krishnan"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7845":{"rfcNumber":"RFC7845","href":"https://www.rfc-editor.org/rfc/rfc7845","title":"Ogg Encapsulation for the Opus Audio Codec","authors":["T. Terriberry","R. Lee","R. Giles"],"rawDate":"2016-04","status":"Proposed Standard","updatedBy":["RFC8486"],"updates":["RFC5334"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7846":{"rfcNumber":"RFC7846","href":"https://www.rfc-editor.org/rfc/rfc7846","title":"Peer-to-Peer Streaming Tracker Protocol (PPSTP)","authors":["R. Cruz","M. Nunes","J. Xia","R. Huang, Ed.","J. Taveira","D. Lingli"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7847":{"rfcNumber":"RFC7847","href":"https://www.rfc-editor.org/rfc/rfc7847","title":"Logical-Interface Support for IP Hosts with Multi-Access Support","authors":["T. Melia, Ed.","S. Gundavelli, Ed."],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7848":{"rfcNumber":"RFC7848","href":"https://www.rfc-editor.org/rfc/rfc7848","title":"Mark and Signed Mark Objects Mapping","authors":["G. Lozano"],"rawDate":"2016-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7848","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7849":{"rfcNumber":"RFC7849","href":"https://www.rfc-editor.org/rfc/rfc7849","title":"An IPv6 Profile for 3GPP Mobile Devices","authors":["D. Binet","M. Boucadair","A. Vizdal","G. Chen","N. Heatley","R. Chandler","D. Michaud","D. Lopez","W. Haeffner"],"rawDate":"2016-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7849","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc785":{"aliasOf":"rfc0785"},"rfc7850":{"rfcNumber":"RFC7850","href":"https://www.rfc-editor.org/rfc/rfc7850","title":"Registering Values of the SDP 'proto' Field for Transporting RTP Media over TCP under Various RTP Profiles","authors":["S. Nandakumar"],"rawDate":"2016-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7851":{"rfcNumber":"RFC7851","href":"https://www.rfc-editor.org/rfc/rfc7851","title":"Peer-to-Peer (P2P) Overlay Diagnostics","authors":["H. Song","X. Jiang","R. Even","D. Bryan","Y. Sun"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7852":{"rfcNumber":"RFC7852","href":"https://www.rfc-editor.org/rfc/rfc7852","title":"Additional Data Related to an Emergency Call","authors":["R. Gellens","B. Rosen","H. Tschofenig","R. Marshall","J. Winterbottom"],"rawDate":"2016-07","status":"Proposed Standard","updates":["RFC6443","RFC6881"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7852","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7853":{"rfcNumber":"RFC7853","href":"https://www.rfc-editor.org/rfc/rfc7853","title":"A URN Namespace for Globus","authors":["S. Martin","S. Tuecke","B. McCollam","M. Lidman"],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7854":{"rfcNumber":"RFC7854","href":"https://www.rfc-editor.org/rfc/rfc7854","title":"BGP Monitoring Protocol (BMP)","authors":["J. Scudder, Ed.","R. Fernando","S. Stuart"],"rawDate":"2016-06","status":"Proposed Standard","updatedBy":["RFC8671","RFC9069","RFC9515"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7854","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7855":{"rfcNumber":"RFC7855","href":"https://www.rfc-editor.org/rfc/rfc7855","title":"Source Packet Routing in Networking (SPRING) Problem Statement and Requirements","authors":["S. Previdi, Ed.","C. Filsfils, Ed.","B. Decraene","S. Litkowski","M. Horneffer","R. Shakir"],"rawDate":"2016-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7855","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7856":{"rfcNumber":"RFC7856","href":"https://www.rfc-editor.org/rfc/rfc7856","title":"Softwire Mesh Management Information Base (MIB)","authors":["Y. Cui","J. Dong","P. Wu","M. Xu","A. Yla-Jaaski"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7857":{"rfcNumber":"RFC7857","href":"https://www.rfc-editor.org/rfc/rfc7857","title":"Updates to Network Address Translation (NAT) Behavioral Requirements","authors":["R. Penno","S. Perreault","M. Boucadair, Ed.","S. Sivakumar","K. Naito"],"rawDate":"2016-04","status":"Best Current Practice","updates":["RFC4787","RFC5382","RFC5508"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7858":{"rfcNumber":"RFC7858","href":"https://www.rfc-editor.org/rfc/rfc7858","title":"Specification for DNS over Transport Layer Security (TLS)","authors":["Z. Hu","L. Zhu","J. Heidemann","A. Mankin","D. Wessels","P. Hoffman"],"rawDate":"2016-05","status":"Proposed Standard","updatedBy":["RFC8310"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7858","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7859":{"rfcNumber":"RFC7859","href":"https://www.rfc-editor.org/rfc/rfc7859","title":"Identity-Based Signatures for Mobile Ad Hoc Network (MANET) Routing Protocols","authors":["C. Dearlove"],"rawDate":"2016-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc786":{"aliasOf":"rfc0786"},"rfc7860":{"rfcNumber":"RFC7860","href":"https://www.rfc-editor.org/rfc/rfc7860","title":"HMAC-SHA-2 Authentication Protocols in User-Based Security Model (USM) for SNMPv3","authors":["J. Merkle, Ed.","M. Lochter"],"rawDate":"2016-04","status":"Proposed Standard","obsoletes":["RFC7630"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7861":{"rfcNumber":"RFC7861","href":"https://www.rfc-editor.org/rfc/rfc7861","title":"Remote Procedure Call (RPC) Security Version 3","authors":["A. Adamson","N. Williams"],"rawDate":"2016-11","status":"Proposed Standard","updates":["RFC5403"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7862":{"rfcNumber":"RFC7862","href":"https://www.rfc-editor.org/rfc/rfc7862","title":"Network File System (NFS) Version 4 Minor Version 2 Protocol","authors":["T. Haynes"],"rawDate":"2016-11","status":"Proposed Standard","updatedBy":["RFC8178"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7862","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7863":{"rfcNumber":"RFC7863","href":"https://www.rfc-editor.org/rfc/rfc7863","title":"Network File System (NFS) Version 4 Minor Version 2 External Data Representation Standard (XDR) Description","authors":["T. Haynes"],"rawDate":"2016-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7864":{"rfcNumber":"RFC7864","href":"https://www.rfc-editor.org/rfc/rfc7864","title":"Proxy Mobile IPv6 Extensions to Support Flow Mobility","authors":["CJ. Bernardos, Ed."],"rawDate":"2016-05","status":"Proposed Standard","updates":["RFC5213"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7865":{"rfcNumber":"RFC7865","href":"https://www.rfc-editor.org/rfc/rfc7865","title":"Session Initiation Protocol (SIP) Recording Metadata","authors":["R. Ravindranath","P. Ravindran","P. Kyzivat"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7866":{"rfcNumber":"RFC7866","href":"https://www.rfc-editor.org/rfc/rfc7866","title":"Session Recording Protocol","authors":["L. Portman","H. Lum, Ed.","C. Eckel","A. Johnston","A. Hutton"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7867":{"rfcNumber":"RFC7867","href":"https://www.rfc-editor.org/rfc/rfc7867","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Loss Concealment Metrics for Video Applications","authors":["R. Huang"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7868":{"rfcNumber":"RFC7868","href":"https://www.rfc-editor.org/rfc/rfc7868","title":"Cisco's Enhanced Interior Gateway Routing Protocol (EIGRP)","authors":["D. Savage","J. Ng","S. Moore","D. Slice","P. Paluch","R. White"],"rawDate":"2016-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7868","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7869":{"rfcNumber":"RFC7869","href":"https://www.rfc-editor.org/rfc/rfc7869","title":"The \"vnc\" URI Scheme","authors":["D. Warden","I. Iordanov"],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc787":{"aliasOf":"rfc0787"},"rfc7870":{"rfcNumber":"RFC7870","href":"https://www.rfc-editor.org/rfc/rfc7870","title":"Dual-Stack Lite (DS-Lite) Management Information Base (MIB) for Address Family Transition Routers (AFTRs)","authors":["Y. Fu","S. Jiang","J. Dong","Y. Chen"],"rawDate":"2016-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7871":{"rfcNumber":"RFC7871","href":"https://www.rfc-editor.org/rfc/rfc7871","title":"Client Subnet in DNS Queries","authors":["C. Contavalli","W. van der Gaast","D. Lawrence","W. Kumari"],"rawDate":"2016-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7871","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7872":{"rfcNumber":"RFC7872","href":"https://www.rfc-editor.org/rfc/rfc7872","title":"Observations on the Dropping of Packets with IPv6 Extension Headers in the Real World","authors":["F. Gont","J. Linkova","T. Chown","W. Liu"],"rawDate":"2016-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7872","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7873":{"rfcNumber":"RFC7873","href":"https://www.rfc-editor.org/rfc/rfc7873","title":"Domain Name System (DNS) Cookies","authors":["D. Eastlake 3rd","M. Andrews"],"rawDate":"2016-05","status":"Proposed Standard","updatedBy":["RFC9018"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7874":{"rfcNumber":"RFC7874","href":"https://www.rfc-editor.org/rfc/rfc7874","title":"WebRTC Audio Codec and Processing Requirements","authors":["JM. Valin","C. Bran"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7875":{"rfcNumber":"RFC7875","href":"https://www.rfc-editor.org/rfc/rfc7875","title":"Additional WebRTC Audio Codecs for Interoperability","authors":["S. Proust, Ed."],"rawDate":"2016-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7876":{"rfcNumber":"RFC7876","href":"https://www.rfc-editor.org/rfc/rfc7876","title":"UDP Return Path for Packet Loss and Delay Measurement for MPLS Networks","authors":["S. Bryant","S. Sivabalan","S. Soni"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7877":{"rfcNumber":"RFC7877","href":"https://www.rfc-editor.org/rfc/rfc7877","title":"Session Peering Provisioning Framework (SPPF)","authors":["K. Cartwright","V. Bhatia","S. Ali","D. Schwartz"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7878":{"rfcNumber":"RFC7878","href":"https://www.rfc-editor.org/rfc/rfc7878","title":"Session Peering Provisioning (SPP) Protocol over SOAP","authors":["K. Cartwright","V. Bhatia","J-F. Mule","A. Mayrhofer"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7879":{"rfcNumber":"RFC7879","href":"https://www.rfc-editor.org/rfc/rfc7879","title":"DTLS-SRTP Handling in SIP Back-to-Back User Agents","authors":["R. Ravindranath","T. Reddy","G. Salgueiro","V. Pascual","P. Ravindran"],"rawDate":"2016-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc788":{"aliasOf":"rfc0788"},"rfc7880":{"rfcNumber":"RFC7880","href":"https://www.rfc-editor.org/rfc/rfc7880","title":"Seamless Bidirectional Forwarding Detection (S-BFD)","authors":["C. Pignataro","D. Ward","N. Akiya","M. Bhatia","S. Pallagatti"],"rawDate":"2016-07","status":"Proposed Standard","updates":["RFC5880"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7880","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7881":{"rfcNumber":"RFC7881","href":"https://www.rfc-editor.org/rfc/rfc7881","title":"Seamless Bidirectional Forwarding Detection (S-BFD) for IPv4, IPv6, and MPLS","authors":["C. Pignataro","D. Ward","N. Akiya"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7882":{"rfcNumber":"RFC7882","href":"https://www.rfc-editor.org/rfc/rfc7882","title":"Seamless Bidirectional Forwarding Detection (S-BFD) Use Cases","authors":["S. Aldrin","C. Pignataro","G. Mirsky","N. Kumar"],"rawDate":"2016-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7883":{"rfcNumber":"RFC7883","href":"https://www.rfc-editor.org/rfc/rfc7883","title":"Advertising Seamless Bidirectional Forwarding Detection (S-BFD) Discriminators in IS-IS","authors":["L. Ginsberg","N. Akiya","M. Chen"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7884":{"rfcNumber":"RFC7884","href":"https://www.rfc-editor.org/rfc/rfc7884","title":"OSPF Extensions to Advertise Seamless Bidirectional Forwarding Detection (S-BFD) Target Discriminators","authors":["C. Pignataro","M. Bhatia","S. Aldrin","T. Ranganath"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7885":{"rfcNumber":"RFC7885","href":"https://www.rfc-editor.org/rfc/rfc7885","title":"Seamless Bidirectional Forwarding Detection (S-BFD) for Virtual Circuit Connectivity Verification (VCCV)","authors":["V. Govindan","C. Pignataro"],"rawDate":"2016-07","status":"Proposed Standard","updates":["RFC5885"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7886":{"rfcNumber":"RFC7886","href":"https://www.rfc-editor.org/rfc/rfc7886","title":"Advertising Seamless Bidirectional Forwarding Detection (S-BFD) Discriminators in the Layer Two Tunneling Protocol Version 3 (L2TPv3)","authors":["V. Govindan","C. Pignataro"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7887":{"rfcNumber":"RFC7887","href":"https://www.rfc-editor.org/rfc/rfc7887","title":"Hierarchical Join/Prune Attributes","authors":["S. Venaas","J. Arango","I. Kouvelas"],"rawDate":"2016-06","status":"Proposed Standard","updates":["RFC5384"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7888":{"rfcNumber":"RFC7888","href":"https://www.rfc-editor.org/rfc/rfc7888","title":"IMAP4 Non-synchronizing Literals","authors":["A. Melnikov, Ed."],"rawDate":"2016-05","status":"Proposed Standard","obsoletes":["RFC2088"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7889":{"rfcNumber":"RFC7889","href":"https://www.rfc-editor.org/rfc/rfc7889","title":"The IMAP APPENDLIMIT Extension","authors":["J. SrimushnamBoovaraghamoorthy","N. Bisht"],"rawDate":"2016-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7889","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc789":{"aliasOf":"rfc0789"},"rfc7890":{"rfcNumber":"RFC7890","href":"https://www.rfc-editor.org/rfc/rfc7890","title":"Concepts and Terminology for Peer-to-Peer SIP (P2PSIP)","authors":["D. Bryan","P. Matthews","E. Shim","D. Willis","S. Dawkins"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7891":{"rfcNumber":"RFC7891","href":"https://www.rfc-editor.org/rfc/rfc7891","title":"Explicit Reverse Path Forwarding (RPF) Vector","authors":["J. Asghar","IJ. Wijnands, Ed.","S. Krishnaswamy","A. Karan","V. Arya"],"rawDate":"2016-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7892":{"rfcNumber":"RFC7892","href":"https://www.rfc-editor.org/rfc/rfc7892","title":"IANA Allocation Procedures for the GMPLS OTN Signal Type Registry","authors":["Z. Ali","A. Bonfanti","M. Hartley","F. Zhang"],"rawDate":"2016-05","status":"Proposed Standard","updates":["RFC7139"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7893":{"rfcNumber":"RFC7893","href":"https://www.rfc-editor.org/rfc/rfc7893","title":"Pseudowire Congestion Considerations","authors":["Y(J) Stein","D. Black","B. Briscoe"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7894":{"rfcNumber":"RFC7894","href":"https://www.rfc-editor.org/rfc/rfc7894","title":"Alternative Challenge Password Attributes for Enrollment over Secure Transport","authors":["M. Pritikin","C. Wallace"],"rawDate":"2016-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7895":{"rfcNumber":"RFC7895","href":"https://www.rfc-editor.org/rfc/rfc7895","title":"YANG Module Library","authors":["A. Bierman","M. Bjorklund","K. Watsen"],"rawDate":"2016-06","status":"Proposed Standard","obsoletedBy":["RFC8525"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7896":{"rfcNumber":"RFC7896","href":"https://www.rfc-editor.org/rfc/rfc7896","title":"Update to the Include Route Object (IRO) Specification in the Path Computation Element Communication Protocol (PCEP)","authors":["D. Dhody"],"rawDate":"2016-06","status":"Proposed Standard","updates":["RFC5440"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7897":{"rfcNumber":"RFC7897","href":"https://www.rfc-editor.org/rfc/rfc7897","title":"Domain Subobjects for the Path Computation Element Communication Protocol (PCEP)","authors":["D. Dhody","U. Palle","R. Casellas"],"rawDate":"2016-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7898":{"rfcNumber":"RFC7898","href":"https://www.rfc-editor.org/rfc/rfc7898","title":"Domain Subobjects for Resource Reservation Protocol - Traffic Engineering (RSVP-TE)","authors":["D. Dhody","U. Palle","V. Kondreddy","R. Casellas"],"rawDate":"2016-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7899":{"rfcNumber":"RFC7899","href":"https://www.rfc-editor.org/rfc/rfc7899","title":"Multicast VPN State Damping","authors":["T. Morin, Ed.","S. Litkowski","K. Patel","Z. Zhang","R. Kebler","J. Haas"],"rawDate":"2016-06","status":"Proposed Standard","updates":["RFC6514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc79":{"aliasOf":"rfc0079"},"rfc790":{"aliasOf":"rfc0790"},"rfc7900":{"rfcNumber":"RFC7900","href":"https://www.rfc-editor.org/rfc/rfc7900","title":"Extranet Multicast in BGP/IP MPLS VPNs","authors":["Y. Rekhter, Ed.","E. Rosen, Ed.","R. Aggarwal","Y. Cai","T. Morin"],"rawDate":"2016-06","status":"Proposed Standard","updatedBy":["RFC8534"],"updates":["RFC6513","RFC6514","RFC6625"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7901":{"rfcNumber":"RFC7901","href":"https://www.rfc-editor.org/rfc/rfc7901","title":"CHAIN Query Requests in DNS","authors":["P. Wouters"],"rawDate":"2016-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7902":{"rfcNumber":"RFC7902","href":"https://www.rfc-editor.org/rfc/rfc7902","title":"Registry and Extensions for P-Multicast Service Interface Tunnel Attribute Flags","authors":["E. Rosen","T. Morin"],"rawDate":"2016-06","status":"Proposed Standard","updates":["RFC6514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7903":{"rfcNumber":"RFC7903","href":"https://www.rfc-editor.org/rfc/rfc7903","title":"Windows Image Media Types","authors":["S. Leonard"],"rawDate":"2016-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7904":{"rfcNumber":"RFC7904","href":"https://www.rfc-editor.org/rfc/rfc7904","title":"A SIP Usage for REsource LOcation And Discovery (RELOAD)","authors":["C. Jennings","B. Lowekamp","E. Rescorla","S. Baset","H. Schulzrinne","T. Schmidt, Ed."],"rawDate":"2016-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7905":{"rfcNumber":"RFC7905","href":"https://www.rfc-editor.org/rfc/rfc7905","title":"ChaCha20-Poly1305 Cipher Suites for Transport Layer Security (TLS)","authors":["A. Langley","W. Chang","N. Mavrogiannopoulos","J. Strombergson","S. Josefsson"],"rawDate":"2016-06","status":"Proposed Standard","updates":["RFC5246","RFC6347"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7905","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7906":{"rfcNumber":"RFC7906","href":"https://www.rfc-editor.org/rfc/rfc7906","title":"NSA's Cryptographic Message Syntax (CMS) Key Management Attributes","authors":["P. Timmel","R. Housley","S. Turner"],"rawDate":"2016-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7906","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7908":{"rfcNumber":"RFC7908","href":"https://www.rfc-editor.org/rfc/rfc7908","title":"Problem Definition and Classification of BGP Route Leaks","authors":["K. Sriram","D. Montgomery","D. McPherson","E. Osterweil","B. Dickson"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7909":{"rfcNumber":"RFC7909","href":"https://www.rfc-editor.org/rfc/rfc7909","title":"Securing Routing Policy Specification Language (RPSL) Objects with Resource Public Key Infrastructure (RPKI) Signatures","authors":["R. Kisteleki","B. Haberman"],"rawDate":"2016-06","status":"Proposed Standard","updates":["RFC2622","RFC4012"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc791":{"aliasOf":"rfc0791"},"rfc7910":{"rfcNumber":"RFC7910","href":"https://www.rfc-editor.org/rfc/rfc7910","title":"Interoperability between the Virtual Router Redundancy Protocol and PIM","authors":["W. Zhou"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7911":{"rfcNumber":"RFC7911","href":"https://www.rfc-editor.org/rfc/rfc7911","title":"Advertisement of Multiple Paths in BGP","authors":["D. Walton","A. Retana","E. Chen","J. Scudder"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7912":{"rfcNumber":"RFC7912","href":"https://www.rfc-editor.org/rfc/rfc7912","title":"Message Authorizing Email Header Field and Its Use for the Draft and Release Procedure","authors":["A. Melnikov"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7913":{"rfcNumber":"RFC7913","href":"https://www.rfc-editor.org/rfc/rfc7913","title":"P-Access-Network-Info ABNF Update","authors":["C. Holmberg"],"rawDate":"2016-06","status":"Informational","updates":["RFC7315"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7913","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7914":{"rfcNumber":"RFC7914","href":"https://www.rfc-editor.org/rfc/rfc7914","title":"The scrypt Password-Based Key Derivation Function","authors":["C. Percival","S. Josefsson"],"rawDate":"2016-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7914","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7915":{"rfcNumber":"RFC7915","href":"https://www.rfc-editor.org/rfc/rfc7915","title":"IP/ICMP Translation Algorithm","authors":["C. Bao","X. Li","F. Baker","T. Anderson","F. Gont"],"rawDate":"2016-06","status":"Proposed Standard","obsoletes":["RFC6145"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7915","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7916":{"rfcNumber":"RFC7916","href":"https://www.rfc-editor.org/rfc/rfc7916","title":"Operational Management of Loop-Free Alternates","authors":["S. Litkowski, Ed.","B. Decraene","C. Filsfils","K. Raza","M. Horneffer","P. Sarkar"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7917":{"rfcNumber":"RFC7917","href":"https://www.rfc-editor.org/rfc/rfc7917","title":"Advertising Node Administrative Tags in IS-IS","authors":["P. Sarkar, Ed.","H. Gredler","S. Hegde","S. Litkowski","B. Decraene"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7918":{"rfcNumber":"RFC7918","href":"https://www.rfc-editor.org/rfc/rfc7918","title":"Transport Layer Security (TLS) False Start","authors":["A. Langley","N. Modadugu","B. Moeller"],"rawDate":"2016-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7919":{"rfcNumber":"RFC7919","href":"https://www.rfc-editor.org/rfc/rfc7919","title":"Negotiated Finite Field Diffie-Hellman Ephemeral Parameters for Transport Layer Security (TLS)","authors":["D. Gillmor"],"rawDate":"2016-08","status":"Proposed Standard","updates":["RFC2246","RFC4346","RFC4492","RFC5246"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7919","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc792":{"aliasOf":"rfc0792"},"rfc7920":{"rfcNumber":"RFC7920","href":"https://www.rfc-editor.org/rfc/rfc7920","title":"Problem Statement for the Interface to the Routing System","authors":["A. Atlas, Ed.","T. Nadeau, Ed.","D. Ward"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7921":{"rfcNumber":"RFC7921","href":"https://www.rfc-editor.org/rfc/rfc7921","title":"An Architecture for the Interface to the Routing System","authors":["A. Atlas","J. Halpern","S. Hares","D. Ward","T. Nadeau"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7922":{"rfcNumber":"RFC7922","href":"https://www.rfc-editor.org/rfc/rfc7922","title":"Interface to the Routing System (I2RS) Traceability: Framework and Information Model","authors":["J. Clarke","G. Salgueiro","C. Pignataro"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7923":{"rfcNumber":"RFC7923","href":"https://www.rfc-editor.org/rfc/rfc7923","title":"Requirements for Subscription to YANG Datastores","authors":["E. Voit","A. Clemm","A. Gonzalez Prieto"],"rawDate":"2016-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7924":{"rfcNumber":"RFC7924","href":"https://www.rfc-editor.org/rfc/rfc7924","title":"Transport Layer Security (TLS) Cached Information Extension","authors":["S. Santesson","H. Tschofenig"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7925":{"rfcNumber":"RFC7925","href":"https://www.rfc-editor.org/rfc/rfc7925","title":"Transport Layer Security (TLS) / Datagram Transport Layer Security (DTLS) Profiles for the Internet of Things","authors":["H. Tschofenig, Ed.","T. Fossati"],"rawDate":"2016-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7926":{"rfcNumber":"RFC7926","href":"https://www.rfc-editor.org/rfc/rfc7926","title":"Problem Statement and Architecture for Information Exchange between Interconnected Traffic-Engineered Networks","authors":["A. Farrel, Ed.","J. Drake","N. Bitar","G. Swallow","D. Ceccarelli","X. Zhang"],"rawDate":"2016-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7927":{"rfcNumber":"RFC7927","href":"https://www.rfc-editor.org/rfc/rfc7927","title":"Information-Centric Networking (ICN) Research Challenges","authors":["D. Kutscher, Ed.","S. Eum","K. Pentikousis","I. Psaras","D. Corujo","D. Saucez","T. Schmidt","M. Waehlisch"],"rawDate":"2016-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7928":{"rfcNumber":"RFC7928","href":"https://www.rfc-editor.org/rfc/rfc7928","title":"Characterization Guidelines for Active Queue Management (AQM)","authors":["N. Kuhn, Ed.","P. Natarajan, Ed.","N. Khademi, Ed.","D. Ros"],"rawDate":"2016-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7929":{"rfcNumber":"RFC7929","href":"https://www.rfc-editor.org/rfc/rfc7929","title":"DNS-Based Authentication of Named Entities (DANE) Bindings for OpenPGP","authors":["P. Wouters"],"rawDate":"2016-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7929","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc793":{"aliasOf":"rfc0793"},"rfc7930":{"rfcNumber":"RFC7930","href":"https://www.rfc-editor.org/rfc/rfc7930","title":"Larger Packets for RADIUS over TCP","authors":["S. Hartman"],"rawDate":"2016-08","status":"Experimental","updates":["RFC6613"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7931":{"rfcNumber":"RFC7931","href":"https://www.rfc-editor.org/rfc/rfc7931","title":"NFSv4.0 Migration: Specification Update","authors":["D. Noveck, Ed.","P. Shivam","C. Lever","B. Baker"],"rawDate":"2016-07","status":"Proposed Standard","updates":["RFC7530"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7931","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7932":{"rfcNumber":"RFC7932","href":"https://www.rfc-editor.org/rfc/rfc7932","title":"Brotli Compressed Data Format","authors":["J. Alakuijala","Z. Szabadka"],"rawDate":"2016-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7932","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7933":{"rfcNumber":"RFC7933","href":"https://www.rfc-editor.org/rfc/rfc7933","title":"Adaptive Video Streaming over Information-Centric Networking (ICN)","authors":["C. Westphal, Ed.","S. Lederer","D. Posch","C. Timmerer","A. Azgin","W. Liu","C. Mueller","A. Detti","D. Corujo","J. Wang","M. Montpetit","N. Murray"],"rawDate":"2016-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7934":{"rfcNumber":"RFC7934","href":"https://www.rfc-editor.org/rfc/rfc7934","title":"Host Address Availability Recommendations","authors":["L. Colitti","V. Cerf","S. Cheshire","D. Schinazi"],"rawDate":"2016-07","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7934","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7935":{"rfcNumber":"RFC7935","href":"https://www.rfc-editor.org/rfc/rfc7935","title":"The Profile for Algorithms and Key Sizes for Use in the Resource Public Key Infrastructure","authors":["G. Huston","G. Michaelson, Ed."],"rawDate":"2016-08","status":"Proposed Standard","updatedBy":["RFC8208","RFC8608"],"obsoletes":["RFC6485"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7935","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7936":{"rfcNumber":"RFC7936","href":"https://www.rfc-editor.org/rfc/rfc7936","title":"Clarifying Registry Procedures for the WebSocket Subprotocol Name Registry","authors":["T. Hardie"],"rawDate":"2016-07","status":"Proposed Standard","updates":["RFC6455"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7937":{"rfcNumber":"RFC7937","href":"https://www.rfc-editor.org/rfc/rfc7937","title":"Content Distribution Network Interconnection (CDNI) Logging Interface","authors":["F. Le Faucheur, Ed.","G. Bertrand, Ed.","I. Oprescu, Ed.","R. Peterkofsky"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7938":{"rfcNumber":"RFC7938","href":"https://www.rfc-editor.org/rfc/rfc7938","title":"Use of BGP for Routing in Large-Scale Data Centers","authors":["P. Lapukhov","A. Premji","J. Mitchell, Ed."],"rawDate":"2016-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7938","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7939":{"rfcNumber":"RFC7939","href":"https://www.rfc-editor.org/rfc/rfc7939","title":"Definition of Managed Objects for the Neighborhood Discovery Protocol","authors":["U. Herberg","R. Cole","I. Chakeres","T. Clausen"],"rawDate":"2016-08","status":"Proposed Standard","obsoletes":["RFC6779"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc794":{"aliasOf":"rfc0794"},"rfc7940":{"rfcNumber":"RFC7940","href":"https://www.rfc-editor.org/rfc/rfc7940","title":"Representing Label Generation Rulesets Using XML","authors":["K. Davies","A. Freytag"],"rawDate":"2016-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7940","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7941":{"rfcNumber":"RFC7941","href":"https://www.rfc-editor.org/rfc/rfc7941","title":"RTP Header Extension for the RTP Control Protocol (RTCP) Source Description Items","authors":["M. Westerlund","B. Burman","R. Even","M. Zanaty"],"rawDate":"2016-08","status":"Proposed Standard","updatedBy":["RFC8843","RFC9143"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7942":{"rfcNumber":"RFC7942","href":"https://www.rfc-editor.org/rfc/rfc7942","title":"Improving Awareness of Running Code: The Implementation Status Section","authors":["Y. Sheffer","A. Farrel"],"rawDate":"2016-07","status":"Best Current Practice","obsoletes":["RFC6982"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7943":{"rfcNumber":"RFC7943","href":"https://www.rfc-editor.org/rfc/rfc7943","title":"A Method for Generating Semantically Opaque Interface Identifiers (IIDs) with the Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["F. Gont","W. Liu"],"rawDate":"2016-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7944":{"rfcNumber":"RFC7944","href":"https://www.rfc-editor.org/rfc/rfc7944","title":"Diameter Routing Message Priority","authors":["S. Donovan"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7945":{"rfcNumber":"RFC7945","href":"https://www.rfc-editor.org/rfc/rfc7945","title":"Information-Centric Networking: Evaluation and Security Considerations","authors":["K. Pentikousis, Ed.","B. Ohlman","E. Davies","S. Spirou","G. Boggia"],"rawDate":"2016-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7945","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7946":{"rfcNumber":"RFC7946","href":"https://www.rfc-editor.org/rfc/rfc7946","title":"The GeoJSON Format","authors":["H. Butler","M. Daly","A. Doyle","S. Gillies","S. Hagen","T. Schaub"],"rawDate":"2016-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7946","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7947":{"rfcNumber":"RFC7947","href":"https://www.rfc-editor.org/rfc/rfc7947","title":"Internet Exchange BGP Route Server","authors":["E. Jasinska","N. Hilliard","R. Raszuk","N. Bakker"],"rawDate":"2016-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7948":{"rfcNumber":"RFC7948","href":"https://www.rfc-editor.org/rfc/rfc7948","title":"Internet Exchange BGP Route Server Operations","authors":["N. Hilliard","E. Jasinska","R. Raszuk","N. Bakker"],"rawDate":"2016-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7948","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7949":{"rfcNumber":"RFC7949","href":"https://www.rfc-editor.org/rfc/rfc7949","title":"OSPFv3 over IPv4 for IPv6 Transition","authors":["I. Chen","A. Lindem","R. Atkinson"],"rawDate":"2016-08","status":"Proposed Standard","updates":["RFC5838"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc795":{"aliasOf":"rfc0795"},"rfc7950":{"rfcNumber":"RFC7950","href":"https://www.rfc-editor.org/rfc/rfc7950","title":"The YANG 1.1 Data Modeling Language","authors":["M. Bjorklund, Ed."],"rawDate":"2016-08","status":"Proposed Standard","updatedBy":["RFC8342","RFC8526"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7950","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7951":{"rfcNumber":"RFC7951","href":"https://www.rfc-editor.org/rfc/rfc7951","title":"JSON Encoding of Data Modeled with YANG","authors":["L. Lhotka"],"rawDate":"2016-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7951","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7952":{"rfcNumber":"RFC7952","href":"https://www.rfc-editor.org/rfc/rfc7952","title":"Defining and Using Metadata with YANG","authors":["L. Lhotka"],"rawDate":"2016-08","status":"Proposed Standard","updates":["RFC6110"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7953":{"rfcNumber":"RFC7953","href":"https://www.rfc-editor.org/rfc/rfc7953","title":"Calendar Availability","authors":["C. Daboo","M. Douglass"],"rawDate":"2016-08","status":"Proposed Standard","updates":["RFC4791","RFC5545","RFC6638"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7953","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7954":{"rfcNumber":"RFC7954","href":"https://www.rfc-editor.org/rfc/rfc7954","title":"Locator/ID Separation Protocol (LISP) Endpoint Identifier (EID) Block","authors":["L. Iannone","D. Lewis","D. Meyer","V. Fuller"],"rawDate":"2016-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7955":{"rfcNumber":"RFC7955","href":"https://www.rfc-editor.org/rfc/rfc7955","title":"Management Guidelines for the Locator/ID Separation Protocol (LISP) Endpoint Identifier (EID) Block","authors":["L. Iannone","R. Jorgensen","D. Conrad","G. Huston"],"rawDate":"2016-09","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7956":{"rfcNumber":"RFC7956","href":"https://www.rfc-editor.org/rfc/rfc7956","title":"Transparent Interconnection of Lots of Links (TRILL) Distributed Layer 3 Gateway","authors":["W. Hao","Y. Li","A. Qu","M. Durrani","P. Sivamurugan"],"rawDate":"2016-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7957":{"rfcNumber":"RFC7957","href":"https://www.rfc-editor.org/rfc/rfc7957","title":"DISPATCH-Style Working Groups and the SIP Change Process","authors":["B. Campbell, Ed.","A. Cooper","B. Leiba"],"rawDate":"2016-08","status":"Best Current Practice","updates":["RFC5727"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7958":{"rfcNumber":"RFC7958","href":"https://www.rfc-editor.org/rfc/rfc7958","title":"DNSSEC Trust Anchor Publication for the Root Zone","authors":["J. Abley","J. Schlyter","G. Bailey","P. Hoffman"],"rawDate":"2016-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7958","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7959":{"rfcNumber":"RFC7959","href":"https://www.rfc-editor.org/rfc/rfc7959","title":"Block-Wise Transfers in the Constrained Application Protocol (CoAP)","authors":["C. Bormann","Z. Shelby, Ed."],"rawDate":"2016-08","status":"Proposed Standard","updatedBy":["RFC8323"],"updates":["RFC7252"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7959","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc796":{"aliasOf":"rfc0796"},"rfc7960":{"rfcNumber":"RFC7960","href":"https://www.rfc-editor.org/rfc/rfc7960","title":"Interoperability Issues between Domain-based Message Authentication, Reporting, and Conformance (DMARC) and Indirect Email Flows","authors":["F. Martin, Ed.","E. Lear, Ed.","T. Draegen, Ed.","E. Zwicky, Ed.","K. Andersen, Ed."],"rawDate":"2016-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7961":{"rfcNumber":"RFC7961","href":"https://www.rfc-editor.org/rfc/rfc7961","title":"Transparent Interconnection of Lots of Links (TRILL): Interface Addresses APPsub-TLV","authors":["D. Eastlake 3rd","L. Yizhou"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7962":{"rfcNumber":"RFC7962","href":"https://www.rfc-editor.org/rfc/rfc7962","title":"Alternative Network Deployments: Taxonomy, Characterization, Technologies, and Architectures","authors":["J. Saldana, Ed.","A. Arcia-Moret","B. Braem","E. Pietrosemoli","A. Sathiaseelan","M. Zennaro"],"rawDate":"2016-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7963":{"rfcNumber":"RFC7963","href":"https://www.rfc-editor.org/rfc/rfc7963","title":"RSVP-TE Extension for Additional Signal Types in G.709 Optical Transport Networks (OTNs)","authors":["Z. Ali","A. Bonfanti","M. Hartley","F. Zhang"],"rawDate":"2016-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7964":{"rfcNumber":"RFC7964","href":"https://www.rfc-editor.org/rfc/rfc7964","title":"Solutions for BGP Persistent Route Oscillation","authors":["D. Walton","A. Retana","E. Chen","J. Scudder"],"rawDate":"2016-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7965":{"rfcNumber":"RFC7965","href":"https://www.rfc-editor.org/rfc/rfc7965","title":"LDP Extensions for Pseudowire Binding to Label Switched Path (LSP) Tunnels","authors":["M. Chen","W. Cao","A. Takacs","P. Pan"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7966":{"rfcNumber":"RFC7966","href":"https://www.rfc-editor.org/rfc/rfc7966","title":"Security at the Attribute-Value Pair (AVP) Level for Non-neighboring Diameter Nodes: Scenarios and Requirements","authors":["H. Tschofenig","J. Korhonen, Ed.","G. Zorn","K. Pillay"],"rawDate":"2016-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7967":{"rfcNumber":"RFC7967","href":"https://www.rfc-editor.org/rfc/rfc7967","title":"Constrained Application Protocol (CoAP) Option for No Server Response","authors":["A. Bhattacharyya","S. Bandyopadhyay","A. Pal","T. Bose"],"rawDate":"2016-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7968":{"rfcNumber":"RFC7968","href":"https://www.rfc-editor.org/rfc/rfc7968","title":"Transparent Interconnection of Lots of Links (TRILL): Using Data Labels for Tree Selection for Multi-Destination Data","authors":["Y. Li","D. Eastlake 3rd","W. Hao","H. Chen","S. Chatterjee"],"rawDate":"2016-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7969":{"rfcNumber":"RFC7969","href":"https://www.rfc-editor.org/rfc/rfc7969","title":"Customizing DHCP Configuration on the Basis of Network Topology","authors":["T. Lemon","T. Mrugalski"],"rawDate":"2016-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc797":{"aliasOf":"rfc0797"},"rfc7970":{"rfcNumber":"RFC7970","href":"https://www.rfc-editor.org/rfc/rfc7970","title":"The Incident Object Description Exchange Format Version 2","authors":["R. Danyliw"],"rawDate":"2016-11","status":"Proposed Standard","obsoletes":["RFC5070","RFC6685"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7970","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7971":{"rfcNumber":"RFC7971","href":"https://www.rfc-editor.org/rfc/rfc7971","title":"Application-Layer Traffic Optimization (ALTO) Deployment Considerations","authors":["M. Stiemerling","S. Kiesel","M. Scharf","H. Seidel","S. Previdi"],"rawDate":"2016-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7972":{"rfcNumber":"RFC7972","href":"https://www.rfc-editor.org/rfc/rfc7972","title":"Entertainment Identifier Registry (EIDR) URN Namespace Definition","authors":["P. Lemieux"],"rawDate":"2016-09","status":"Informational","obsoletes":["RFC7302"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7973":{"rfcNumber":"RFC7973","href":"https://www.rfc-editor.org/rfc/rfc7973","title":"Assignment of an Ethertype for IPv6 with Low-Power Wireless Personal Area Network (LoWPAN) Encapsulation","authors":["R. Droms","P. Duffy"],"rawDate":"2016-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7974":{"rfcNumber":"RFC7974","href":"https://www.rfc-editor.org/rfc/rfc7974","title":"An Experimental TCP Option for Host Identification","authors":["B. Williams","M. Boucadair","D. Wing"],"rawDate":"2016-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7975":{"rfcNumber":"RFC7975","href":"https://www.rfc-editor.org/rfc/rfc7975","title":"Request Routing Redirection Interface for Content Delivery Network (CDN) Interconnection","authors":["B. Niven-Jenkins, Ed.","R. van Brandenburg, Ed."],"rawDate":"2016-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7976":{"rfcNumber":"RFC7976","href":"https://www.rfc-editor.org/rfc/rfc7976","title":"Updates to Private Header (P-Header) Extension Usage in Session Initiation Protocol (SIP) Requests and Responses","authors":["C. Holmberg","N. Biondic","G. Salgueiro"],"rawDate":"2016-09","status":"Informational","updates":["RFC7315"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7976","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7977":{"rfcNumber":"RFC7977","href":"https://www.rfc-editor.org/rfc/rfc7977","title":"The WebSocket Protocol as a Transport for the Message Session Relay Protocol (MSRP)","authors":["P. Dunkley","G. Llewellyn","V. Pascual","G. Salgueiro","R. Ravindranath"],"rawDate":"2016-09","status":"Proposed Standard","updates":["RFC4975","RFC4976"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7978":{"rfcNumber":"RFC7978","href":"https://www.rfc-editor.org/rfc/rfc7978","title":"Transparent Interconnection of Lots of Links (TRILL): RBridge Channel Header Extension","authors":["D. Eastlake 3rd","M. Umair","Y. Li"],"rawDate":"2016-09","status":"Proposed Standard","updates":["RFC7178"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7979":{"rfcNumber":"RFC7979","href":"https://www.rfc-editor.org/rfc/rfc7979","title":"Response to the IANA Stewardship Transition Coordination Group (ICG) Request for Proposals on the IANA Protocol Parameters Registries","authors":["E. Lear, Ed.","R. Housley, Ed."],"rawDate":"2016-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc798":{"aliasOf":"rfc0798"},"rfc7980":{"rfcNumber":"RFC7980","href":"https://www.rfc-editor.org/rfc/rfc7980","title":"A Framework for Defining Network Complexity","authors":["M. Behringer","A. Retana","R. White","G. Huston"],"rawDate":"2016-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7981":{"rfcNumber":"RFC7981","href":"https://www.rfc-editor.org/rfc/rfc7981","title":"IS-IS Extensions for Advertising Router Information","authors":["L. Ginsberg","S. Previdi","M. Chen"],"rawDate":"2016-10","status":"Proposed Standard","obsoletes":["RFC4971"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7982":{"rfcNumber":"RFC7982","href":"https://www.rfc-editor.org/rfc/rfc7982","title":"Measurement of Round-Trip Time and Fractional Loss Using Session Traversal Utilities for NAT (STUN)","authors":["P. Martinsen","T. Reddy","D. Wing","V. Singh"],"rawDate":"2016-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7983":{"rfcNumber":"RFC7983","href":"https://www.rfc-editor.org/rfc/rfc7983","title":"Multiplexing Scheme Updates for Secure Real-time Transport Protocol (SRTP) Extension for Datagram Transport Layer Security (DTLS)","authors":["M. Petit-Huguenin","G. Salgueiro"],"rawDate":"2016-09","status":"Proposed Standard","updatedBy":["RFC9443"],"updates":["RFC5764"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7984":{"rfcNumber":"RFC7984","href":"https://www.rfc-editor.org/rfc/rfc7984","title":"Locating Session Initiation Protocol (SIP) Servers in a Dual-Stack IP Network","authors":["O. Johansson","G. Salgueiro","V. Gurbani","D. Worley, Ed."],"rawDate":"2016-09","status":"Proposed Standard","updates":["RFC3263"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7985":{"rfcNumber":"RFC7985","href":"https://www.rfc-editor.org/rfc/rfc7985","title":"Security Threats to Simplified Multicast Forwarding (SMF)","authors":["J. Yi","T. Clausen","U. Herberg"],"rawDate":"2016-11","status":"Informational","updates":["RFC7186"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7986":{"rfcNumber":"RFC7986","href":"https://www.rfc-editor.org/rfc/rfc7986","title":"New Properties for iCalendar","authors":["C. Daboo"],"rawDate":"2016-10","status":"Proposed Standard","updates":["RFC5545"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7986","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7987":{"rfcNumber":"RFC7987","href":"https://www.rfc-editor.org/rfc/rfc7987","title":"IS-IS Minimum Remaining Lifetime","authors":["L. Ginsberg","P. Wells","B. Decraene","T. Przygienda","H. Gredler"],"rawDate":"2016-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7988":{"rfcNumber":"RFC7988","href":"https://www.rfc-editor.org/rfc/rfc7988","title":"Ingress Replication Tunnels in Multicast VPN","authors":["E. Rosen, Ed.","K. Subramanian","Z. Zhang"],"rawDate":"2016-10","status":"Proposed Standard","updates":["RFC6513","RFC6514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7989":{"rfcNumber":"RFC7989","href":"https://www.rfc-editor.org/rfc/rfc7989","title":"End-to-End Session Identification in IP-Based Multimedia Communication Networks","authors":["P. Jones","G. Salgueiro","C. Pearce","P. Giralt"],"rawDate":"2016-10","status":"Proposed Standard","obsoletes":["RFC7329"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc799":{"aliasOf":"rfc0799"},"rfc7990":{"rfcNumber":"RFC7990","href":"https://www.rfc-editor.org/rfc/rfc7990","title":"RFC Format Framework","authors":["H. Flanagan"],"rawDate":"2016-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7991":{"rfcNumber":"RFC7991","href":"https://www.rfc-editor.org/rfc/rfc7991","title":"The \"xml2rfc\" Version 3 Vocabulary","authors":["P. Hoffman"],"rawDate":"2016-12","status":"Informational","obsoletes":["RFC7749"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7991","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7992":{"rfcNumber":"RFC7992","href":"https://www.rfc-editor.org/rfc/rfc7992","title":"HTML Format for RFCs","authors":["J. Hildebrand, Ed.","P. Hoffman"],"rawDate":"2016-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7993":{"rfcNumber":"RFC7993","href":"https://www.rfc-editor.org/rfc/rfc7993","title":"Cascading Style Sheets (CSS) Requirements for RFCs","authors":["H. Flanagan"],"rawDate":"2016-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7994":{"rfcNumber":"RFC7994","href":"https://www.rfc-editor.org/rfc/rfc7994","title":"Requirements for Plain-Text RFCs","authors":["H. Flanagan"],"rawDate":"2016-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7995":{"rfcNumber":"RFC7995","href":"https://www.rfc-editor.org/rfc/rfc7995","title":"PDF Format for RFCs","authors":["T. Hansen, Ed.","L. Masinter","M. Hardy"],"rawDate":"2016-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7996":{"rfcNumber":"RFC7996","href":"https://www.rfc-editor.org/rfc/rfc7996","title":"SVG Drawings for RFCs: SVG 1.2 RFC","authors":["N. Brownlee"],"rawDate":"2016-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7996","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7997":{"rfcNumber":"RFC7997","href":"https://www.rfc-editor.org/rfc/rfc7997","title":"The Use of Non-ASCII Characters in RFCs","authors":["H. Flanagan, Ed."],"rawDate":"2016-12","status":"Informational","updates":["RFC7322"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7997","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7998":{"rfcNumber":"RFC7998","href":"https://www.rfc-editor.org/rfc/rfc7998","title":"\"xml2rfc\" Version 3 Preparation Tool Description","authors":["P. Hoffman","J. Hildebrand"],"rawDate":"2016-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=7998","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc7999":{"rfcNumber":"RFC7999","href":"https://www.rfc-editor.org/rfc/rfc7999","title":"BLACKHOLE Community","authors":["T. King","C. Dietzel","J. Snijders","G. Doering","G. Hankins"],"rawDate":"2016-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8":{"aliasOf":"rfc0008"},"rfc80":{"aliasOf":"rfc0080"},"rfc800":{"aliasOf":"rfc0800"},"rfc8000":{"rfcNumber":"RFC8000","href":"https://www.rfc-editor.org/rfc/rfc8000","title":"Requirements for NFSv4 Multi-Domain Namespace Deployment","authors":["A. Adamson","N. Williams"],"rawDate":"2016-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8001":{"rfcNumber":"RFC8001","href":"https://www.rfc-editor.org/rfc/rfc8001","title":"RSVP-TE Extensions for Collecting Shared Risk Link Group (SRLG) Information","authors":["F. Zhang, Ed.","O. Gonzalez de Dios, Ed.","C. Margaria","M. Hartley","Z. Ali"],"rawDate":"2017-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8002":{"rfcNumber":"RFC8002","href":"https://www.rfc-editor.org/rfc/rfc8002","title":"Host Identity Protocol Certificates","authors":["T. Heer","S. Varjonen"],"rawDate":"2016-10","status":"Proposed Standard","updates":["RFC7401"],"obsoletes":["RFC6253"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8003":{"rfcNumber":"RFC8003","href":"https://www.rfc-editor.org/rfc/rfc8003","title":"Host Identity Protocol (HIP) Registration Extension","authors":["J. Laganier","L. Eggert"],"rawDate":"2016-10","status":"Proposed Standard","obsoletes":["RFC5203"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8004":{"rfcNumber":"RFC8004","href":"https://www.rfc-editor.org/rfc/rfc8004","title":"Host Identity Protocol (HIP) Rendezvous Extension","authors":["J. Laganier","L. Eggert"],"rawDate":"2016-10","status":"Proposed Standard","obsoletes":["RFC5204"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8005":{"rfcNumber":"RFC8005","href":"https://www.rfc-editor.org/rfc/rfc8005","title":"Host Identity Protocol (HIP) Domain Name System (DNS) Extension","authors":["J. Laganier"],"rawDate":"2016-10","status":"Proposed Standard","obsoletes":["RFC5205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8006":{"rfcNumber":"RFC8006","href":"https://www.rfc-editor.org/rfc/rfc8006","title":"Content Delivery Network Interconnection (CDNI) Metadata","authors":["B. Niven-Jenkins","R. Murray","M. Caulfield","K. Ma"],"rawDate":"2016-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8006","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8007":{"rfcNumber":"RFC8007","href":"https://www.rfc-editor.org/rfc/rfc8007","title":"Content Delivery Network Interconnection (CDNI) Control Interface / Triggers","authors":["R. Murray","B. Niven-Jenkins"],"rawDate":"2016-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8007","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8008":{"rfcNumber":"RFC8008","href":"https://www.rfc-editor.org/rfc/rfc8008","title":"Content Delivery Network Interconnection (CDNI) Request Routing: Footprint and Capabilities Semantics","authors":["J. Seedorf","J. Peterson","S. Previdi","R. van Brandenburg","K. Ma"],"rawDate":"2016-12","status":"Proposed Standard","updatedBy":["RFC9388"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8009":{"rfcNumber":"RFC8009","href":"https://www.rfc-editor.org/rfc/rfc8009","title":"AES Encryption with HMAC-SHA2 for Kerberos 5","authors":["M. Jenkins","M. Peck","K. Burgin"],"rawDate":"2016-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc801":{"aliasOf":"rfc0801"},"rfc8010":{"rfcNumber":"RFC8010","href":"https://www.rfc-editor.org/rfc/rfc8010","title":"Internet Printing Protocol/1.1: Encoding and Transport","authors":["M. Sweet","I. McDonald"],"rawDate":"2017-01","status":"Internet Standard","obsoletes":["RFC2910","RFC3382"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8011":{"rfcNumber":"RFC8011","href":"https://www.rfc-editor.org/rfc/rfc8011","title":"Internet Printing Protocol/1.1: Model and Semantics","authors":["M. Sweet","I. McDonald"],"rawDate":"2017-01","status":"Internet Standard","obsoletes":["RFC2911","RFC3381","RFC3382"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8011","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8012":{"rfcNumber":"RFC8012","href":"https://www.rfc-editor.org/rfc/rfc8012","title":"Label Switched Path (LSP) and Pseudowire (PW) Ping/Trace over MPLS Networks Using Entropy Labels (ELs)","authors":["N. Akiya","G. Swallow","C. Pignataro","A. Malis","S. Aldrin"],"rawDate":"2016-11","status":"Proposed Standard","updates":["RFC6790"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8013":{"rfcNumber":"RFC8013","href":"https://www.rfc-editor.org/rfc/rfc8013","title":"Forwarding and Control Element Separation (ForCES) Inter-FE Logical Functional Block (LFB)","authors":["D. Joachimpillai","J. Hadi Salim"],"rawDate":"2017-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8013","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8014":{"rfcNumber":"RFC8014","href":"https://www.rfc-editor.org/rfc/rfc8014","title":"An Architecture for Data-Center Network Virtualization over Layer 3 (NVO3)","authors":["D. Black","J. Hudson","L. Kreeger","M. Lasserre","T. Narten"],"rawDate":"2016-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8015":{"rfcNumber":"RFC8015","href":"https://www.rfc-editor.org/rfc/rfc8015","title":"RTP Control Protocol (RTCP) Extended Report (XR) Block for Independent Reporting of Burst/Gap Discard Metrics","authors":["V. Singh","C. Perkins","A. Clark","R. Huang"],"rawDate":"2016-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8016":{"rfcNumber":"RFC8016","href":"https://www.rfc-editor.org/rfc/rfc8016","title":"Mobility with Traversal Using Relays around NAT (TURN)","authors":["T. Reddy","D. Wing","P. Patil","P. Martinsen"],"rawDate":"2016-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8016","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8017":{"rfcNumber":"RFC8017","href":"https://www.rfc-editor.org/rfc/rfc8017","title":"PKCS #1: RSA Cryptography Specifications Version 2.2","authors":["K. Moriarty, Ed.","B. Kaliski","J. Jonsson","A. Rusch"],"rawDate":"2016-11","status":"Informational","obsoletes":["RFC3447"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8017","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8018":{"rfcNumber":"RFC8018","href":"https://www.rfc-editor.org/rfc/rfc8018","title":"PKCS #5: Password-Based Cryptography Specification Version 2.1","authors":["K. Moriarty, Ed.","B. Kaliski","A. Rusch"],"rawDate":"2017-01","status":"Informational","obsoletes":["RFC2898"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8018","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8019":{"rfcNumber":"RFC8019","href":"https://www.rfc-editor.org/rfc/rfc8019","title":"Protecting Internet Key Exchange Protocol Version 2 (IKEv2) Implementations from Distributed Denial-of-Service Attacks","authors":["Y. Nir","V. Smyslov"],"rawDate":"2016-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc802":{"aliasOf":"rfc0802"},"rfc8020":{"rfcNumber":"RFC8020","href":"https://www.rfc-editor.org/rfc/rfc8020","title":"NXDOMAIN: There Really Is Nothing Underneath","authors":["S. Bortzmeyer","S. Huque"],"rawDate":"2016-11","status":"Proposed Standard","updates":["RFC1034","RFC2308"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8020","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8021":{"rfcNumber":"RFC8021","href":"https://www.rfc-editor.org/rfc/rfc8021","title":"Generation of IPv6 Atomic Fragments Considered Harmful","authors":["F. Gont","W. Liu","T. Anderson"],"rawDate":"2017-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8022":{"rfcNumber":"RFC8022","href":"https://www.rfc-editor.org/rfc/rfc8022","title":"A YANG Data Model for Routing Management","authors":["L. Lhotka","A. Lindem"],"rawDate":"2016-11","status":"Proposed Standard","obsoletedBy":["RFC8349"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8023":{"rfcNumber":"RFC8023","href":"https://www.rfc-editor.org/rfc/rfc8023","title":"Report from the Workshop and Prize on Root Causes and Mitigation of Name Collisions","authors":["M. Thomas","A. Mankin","L. Zhang"],"rawDate":"2016-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8024":{"rfcNumber":"RFC8024","href":"https://www.rfc-editor.org/rfc/rfc8024","title":"Multi-Chassis Passive Optical Network (MC-PON) Protection in MPLS","authors":["Y. Jiang, Ed.","Y. Luo","E. Mallette, Ed.","Y. Shen","W. Cheng"],"rawDate":"2016-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8025":{"rfcNumber":"RFC8025","href":"https://www.rfc-editor.org/rfc/rfc8025","title":"IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Paging Dispatch","authors":["P. Thubert, Ed.","R. Cragie"],"rawDate":"2016-11","status":"Proposed Standard","updates":["RFC4944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8026":{"rfcNumber":"RFC8026","href":"https://www.rfc-editor.org/rfc/rfc8026","title":"Unified IPv4-in-IPv6 Softwire Customer Premises Equipment (CPE): A DHCPv6-Based Prioritization Mechanism","authors":["M. Boucadair","I. Farrer"],"rawDate":"2016-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8027":{"rfcNumber":"RFC8027","href":"https://www.rfc-editor.org/rfc/rfc8027","title":"DNSSEC Roadblock Avoidance","authors":["W. Hardaker","O. Gudmundsson","S. Krishnaswamy"],"rawDate":"2016-11","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8027","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8028":{"rfcNumber":"RFC8028","href":"https://www.rfc-editor.org/rfc/rfc8028","title":"First-Hop Router Selection by Hosts in a Multi-Prefix Network","authors":["F. Baker","B. Carpenter"],"rawDate":"2016-11","status":"Proposed Standard","updates":["RFC4861"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8028","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8029":{"rfcNumber":"RFC8029","href":"https://www.rfc-editor.org/rfc/rfc8029","title":"Detecting Multiprotocol Label Switched (MPLS) Data-Plane Failures","authors":["K. Kompella","G. Swallow","C. Pignataro, Ed.","N. Kumar","S. Aldrin","M. Chen"],"rawDate":"2017-03","status":"Proposed Standard","updatedBy":["RFC8611","RFC9041"],"updates":["RFC1122"],"obsoletes":["RFC4379","RFC6424","RFC6829","RFC7537"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8029","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc803":{"aliasOf":"rfc0803"},"rfc8030":{"rfcNumber":"RFC8030","href":"https://www.rfc-editor.org/rfc/rfc8030","title":"Generic Event Delivery Using HTTP Push","authors":["M. Thomson","E. Damaggio","B. Raymor, Ed."],"rawDate":"2016-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8031":{"rfcNumber":"RFC8031","href":"https://www.rfc-editor.org/rfc/rfc8031","title":"Curve25519 and Curve448 for the Internet Key Exchange Protocol Version 2 (IKEv2) Key Agreement","authors":["Y. Nir","S. Josefsson"],"rawDate":"2016-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8031","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8032":{"rfcNumber":"RFC8032","href":"https://www.rfc-editor.org/rfc/rfc8032","title":"Edwards-Curve Digital Signature Algorithm (EdDSA)","authors":["S. Josefsson","I. Liusvaara"],"rawDate":"2017-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8032","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8033":{"rfcNumber":"RFC8033","href":"https://www.rfc-editor.org/rfc/rfc8033","title":"Proportional Integral Controller Enhanced (PIE): A Lightweight Control Scheme to Address the Bufferbloat Problem","authors":["R. Pan","P. Natarajan","F. Baker","G. White"],"rawDate":"2017-02","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8033","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8034":{"rfcNumber":"RFC8034","href":"https://www.rfc-editor.org/rfc/rfc8034","title":"Active Queue Management (AQM) Based on Proportional Integral Controller Enhanced (PIE) for Data-Over-Cable Service Interface Specifications (DOCSIS) Cable Modems","authors":["G. White","R. Pan"],"rawDate":"2017-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8035":{"rfcNumber":"RFC8035","href":"https://www.rfc-editor.org/rfc/rfc8035","title":"Session Description Protocol (SDP) Offer/Answer Clarifications for RTP/RTCP Multiplexing","authors":["C. Holmberg"],"rawDate":"2016-11","status":"Proposed Standard","updates":["RFC5761"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8036":{"rfcNumber":"RFC8036","href":"https://www.rfc-editor.org/rfc/rfc8036","title":"Applicability Statement for the Routing Protocol for Low-Power and Lossy Networks (RPL) in Advanced Metering Infrastructure (AMI) Networks","authors":["N. Cam-Winget, Ed.","J. Hui","D. Popa"],"rawDate":"2017-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8037":{"rfcNumber":"RFC8037","href":"https://www.rfc-editor.org/rfc/rfc8037","title":"CFRG Elliptic Curve Diffie-Hellman (ECDH) and Signatures in JSON Object Signing and Encryption (JOSE)","authors":["I. Liusvaara"],"rawDate":"2017-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8037","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8038":{"rfcNumber":"RFC8038","href":"https://www.rfc-editor.org/rfc/rfc8038","title":"Exporting MIB Variables Using the IP Flow Information Export (IPFIX) Protocol","authors":["P. Aitken, Ed.","B. Claise","S. B S","C. McDowall","J. Schoenwaelder"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8039":{"rfcNumber":"RFC8039","href":"https://www.rfc-editor.org/rfc/rfc8039","title":"Multipath Time Synchronization","authors":["A. Shpiner","R. Tse","C. Schelp","T. Mizrahi"],"rawDate":"2016-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc804":{"aliasOf":"rfc0804"},"rfc8040":{"rfcNumber":"RFC8040","href":"https://www.rfc-editor.org/rfc/rfc8040","title":"RESTCONF Protocol","authors":["A. Bierman","M. Bjorklund","K. Watsen"],"rawDate":"2017-01","status":"Proposed Standard","updatedBy":["RFC8527"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8040","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8041":{"rfcNumber":"RFC8041","href":"https://www.rfc-editor.org/rfc/rfc8041","title":"Use Cases and Operational Experience with Multipath TCP","authors":["O. Bonaventure","C. Paasch","G. Detal"],"rawDate":"2017-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8042":{"rfcNumber":"RFC8042","href":"https://www.rfc-editor.org/rfc/rfc8042","title":"OSPF Two-Part Metric","authors":["Z. Zhang","L. Wang","A. Lindem"],"rawDate":"2016-12","status":"Proposed Standard","updates":["RFC2328"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8043":{"rfcNumber":"RFC8043","href":"https://www.rfc-editor.org/rfc/rfc8043","title":"Source-Address-Dependent Routing and Source Address Selection for IPv6 Hosts: Overview of the Problem Space","authors":["B. Sarikaya","M. Boucadair"],"rawDate":"2017-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8044":{"rfcNumber":"RFC8044","href":"https://www.rfc-editor.org/rfc/rfc8044","title":"Data Types in RADIUS","authors":["A. DeKok"],"rawDate":"2017-01","status":"Proposed Standard","updates":["RFC2865","RFC3162","RFC4072","RFC6158","RFC6572","RFC7268"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8045":{"rfcNumber":"RFC8045","href":"https://www.rfc-editor.org/rfc/rfc8045","title":"RADIUS Extensions for IP Port Configuration and Reporting","authors":["D. Cheng","J. Korhonen","M. Boucadair","S. Sivakumar"],"rawDate":"2017-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8045","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8046":{"rfcNumber":"RFC8046","href":"https://www.rfc-editor.org/rfc/rfc8046","title":"Host Mobility with the Host Identity Protocol","authors":["T. Henderson, Ed.","C. Vogt","J. Arkko"],"rawDate":"2017-02","status":"Proposed Standard","obsoletes":["RFC5206"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8047":{"rfcNumber":"RFC8047","href":"https://www.rfc-editor.org/rfc/rfc8047","title":"Host Multihoming with the Host Identity Protocol","authors":["T. Henderson, Ed.","C. Vogt","J. Arkko"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8048":{"rfcNumber":"RFC8048","href":"https://www.rfc-editor.org/rfc/rfc8048","title":"Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Presence","authors":["P. Saint-Andre"],"rawDate":"2016-12","status":"Proposed Standard","obsoletes":["RFC7248"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8049":{"rfcNumber":"RFC8049","href":"https://www.rfc-editor.org/rfc/rfc8049","title":"YANG Data Model for L3VPN Service Delivery","authors":["S. Litkowski","L. Tomotaki","K. Ogaki"],"rawDate":"2017-02","status":"Proposed Standard","obsoletedBy":["RFC8299"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc805":{"aliasOf":"rfc0805"},"rfc8050":{"rfcNumber":"RFC8050","href":"https://www.rfc-editor.org/rfc/rfc8050","title":"Multi-Threaded Routing Toolkit (MRT) Routing Information Export Format with BGP Additional Path Extensions","authors":["C. Petrie","T. King"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8051":{"rfcNumber":"RFC8051","href":"https://www.rfc-editor.org/rfc/rfc8051","title":"Applicability of a Stateful Path Computation Element (PCE)","authors":["X. Zhang, Ed.","I. Minei, Ed."],"rawDate":"2017-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8052":{"rfcNumber":"RFC8052","href":"https://www.rfc-editor.org/rfc/rfc8052","title":"Group Domain of Interpretation (GDOI) Protocol Support for IEC 62351 Security Services","authors":["B. Weis","M. Seewald","H. Falk"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8053":{"rfcNumber":"RFC8053","href":"https://www.rfc-editor.org/rfc/rfc8053","title":"HTTP Authentication Extensions for Interactive Clients","authors":["Y. Oiwa","H. Watanabe","H. Takagi","K. Maeda","T. Hayashi","Y. Ioku"],"rawDate":"2017-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8054":{"rfcNumber":"RFC8054","href":"https://www.rfc-editor.org/rfc/rfc8054","title":"Network News Transfer Protocol (NNTP) Extension for Compression","authors":["K. Murchison","J. Elie"],"rawDate":"2017-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8055":{"rfcNumber":"RFC8055","href":"https://www.rfc-editor.org/rfc/rfc8055","title":"Session Initiation Protocol (SIP) Via Header Field Parameter to Indicate Received Realm","authors":["C. Holmberg","Y. Jiang"],"rawDate":"2017-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8056":{"rfcNumber":"RFC8056","href":"https://www.rfc-editor.org/rfc/rfc8056","title":"Extensible Provisioning Protocol (EPP) and Registration Data Access Protocol (RDAP) Status Mapping","authors":["J. Gould"],"rawDate":"2017-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8057":{"rfcNumber":"RFC8057","href":"https://www.rfc-editor.org/rfc/rfc8057","title":"Uniform Resource Name (URN) Namespaces for Broadband Forum","authors":["B. Stark","D. Sinicrope","W. Lupton"],"rawDate":"2017-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8058":{"rfcNumber":"RFC8058","href":"https://www.rfc-editor.org/rfc/rfc8058","title":"Signaling One-Click Functionality for List Email Headers","authors":["J. Levine","T. Herkula"],"rawDate":"2017-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8058","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8059":{"rfcNumber":"RFC8059","href":"https://www.rfc-editor.org/rfc/rfc8059","title":"PIM Join Attributes for Locator/ID Separation Protocol (LISP) Environments","authors":["J. Arango","S. Venaas","I. Kouvelas","D. Farinacci"],"rawDate":"2017-01","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8059","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc806":{"aliasOf":"rfc0806"},"rfc8060":{"rfcNumber":"RFC8060","href":"https://www.rfc-editor.org/rfc/rfc8060","title":"LISP Canonical Address Format (LCAF)","authors":["D. Farinacci","D. Meyer","J. Snijders"],"rawDate":"2017-02","status":"Experimental","updatedBy":["RFC9306"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8060","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8061":{"rfcNumber":"RFC8061","href":"https://www.rfc-editor.org/rfc/rfc8061","title":"Locator/ID Separation Protocol (LISP) Data-Plane Confidentiality","authors":["D. Farinacci","B. Weis"],"rawDate":"2017-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8062":{"rfcNumber":"RFC8062","href":"https://www.rfc-editor.org/rfc/rfc8062","title":"Anonymity Support for Kerberos","authors":["L. Zhu","P. Leach","S. Hartman","S. Emery, Ed."],"rawDate":"2017-02","status":"Proposed Standard","updates":["RFC4120","RFC4121","RFC4556"],"obsoletes":["RFC6112"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8063":{"rfcNumber":"RFC8063","href":"https://www.rfc-editor.org/rfc/rfc8063","title":"Key Relay Mapping for the Extensible Provisioning Protocol","authors":["H.W. Ribbers","M.W. Groeneweg","R. Gieben","A.L.J. Verschuren"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8064":{"rfcNumber":"RFC8064","href":"https://www.rfc-editor.org/rfc/rfc8064","title":"Recommendation on Stable IPv6 Interface Identifiers","authors":["F. Gont","A. Cooper","D. Thaler","W. Liu"],"rawDate":"2017-02","status":"Proposed Standard","updates":["RFC2464","RFC2467","RFC2470","RFC2491","RFC2492","RFC2497","RFC2590","RFC3146","RFC3572","RFC4291","RFC4338","RFC4391","RFC5072","RFC5121"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8065":{"rfcNumber":"RFC8065","href":"https://www.rfc-editor.org/rfc/rfc8065","title":"Privacy Considerations for IPv6 Adaptation-Layer Mechanisms","authors":["D. Thaler"],"rawDate":"2017-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8066":{"rfcNumber":"RFC8066","href":"https://www.rfc-editor.org/rfc/rfc8066","title":"IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) ESC Dispatch Code Points and Guidelines","authors":["S. Chakrabarti","G. Montenegro","R. Droms","J. Woodyatt"],"rawDate":"2017-02","status":"Proposed Standard","updates":["RFC4944","RFC6282"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8067":{"rfcNumber":"RFC8067","href":"https://www.rfc-editor.org/rfc/rfc8067","title":"Updating When Standards Track Documents May Refer Normatively to Documents at a Lower Level","authors":["B. Leiba"],"rawDate":"2017-01","status":"Best Current Practice","updates":["RFC3967"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8068":{"rfcNumber":"RFC8068","href":"https://www.rfc-editor.org/rfc/rfc8068","title":"Session Initiation Protocol (SIP) Recording Call Flows","authors":["R. Ravindranath","P. Ravindran","P. Kyzivat"],"rawDate":"2017-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8069":{"rfcNumber":"RFC8069","href":"https://www.rfc-editor.org/rfc/rfc8069","title":"URN Namespace for IEEE","authors":["A. Thomas"],"rawDate":"2017-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc807":{"aliasOf":"rfc0807"},"rfc8070":{"rfcNumber":"RFC8070","href":"https://www.rfc-editor.org/rfc/rfc8070","title":"Public Key Cryptography for Initial Authentication in Kerberos (PKINIT) Freshness Extension","authors":["M. Short, Ed.","S. Moore","P. Miller"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8071":{"rfcNumber":"RFC8071","href":"https://www.rfc-editor.org/rfc/rfc8071","title":"NETCONF Call Home and RESTCONF Call Home","authors":["K. Watsen"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8072":{"rfcNumber":"RFC8072","href":"https://www.rfc-editor.org/rfc/rfc8072","title":"YANG Patch Media Type","authors":["A. Bierman","M. Bjorklund","K. Watsen"],"rawDate":"2017-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8072","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8073":{"rfcNumber":"RFC8073","href":"https://www.rfc-editor.org/rfc/rfc8073","title":"Coordinating Attack Response at Internet Scale (CARIS) Workshop Report","authors":["K. Moriarty","M. Ford"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8074":{"rfcNumber":"RFC8074","href":"https://www.rfc-editor.org/rfc/rfc8074","title":"Source Address Validation Improvement (SAVI) for Mixed Address Assignment Methods Scenario","authors":["J. Bi","G. Yao","J. Halpern","E. Levy-Abegnoli, Ed."],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8075":{"rfcNumber":"RFC8075","href":"https://www.rfc-editor.org/rfc/rfc8075","title":"Guidelines for Mapping Implementations: HTTP to the Constrained Application Protocol (CoAP)","authors":["A. Castellani","S. Loreto","A. Rahman","T. Fossati","E. Dijk"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8076":{"rfcNumber":"RFC8076","href":"https://www.rfc-editor.org/rfc/rfc8076","title":"A Usage for Shared Resources in RELOAD (ShaRe)","authors":["A. Knauf","T. Schmidt, Ed.","G. Hege","M. Waehlisch"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8077":{"rfcNumber":"RFC8077","href":"https://www.rfc-editor.org/rfc/rfc8077","title":"Pseudowire Setup and Maintenance Using the Label Distribution Protocol (LDP)","authors":["L. Martini, Ed.","G. Heron, Ed."],"rawDate":"2017-02","status":"Internet Standard","obsoletes":["RFC4447","RFC6723"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8077","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8078":{"rfcNumber":"RFC8078","href":"https://www.rfc-editor.org/rfc/rfc8078","title":"Managing DS Records from the Parent via CDS/CDNSKEY","authors":["O. Gudmundsson","P. Wouters"],"rawDate":"2017-03","status":"Proposed Standard","updates":["RFC7344"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8078","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8079":{"rfcNumber":"RFC8079","href":"https://www.rfc-editor.org/rfc/rfc8079","title":"Guidelines for End-to-End Support of the RTP Control Protocol (RTCP) in Back-to-Back User Agents (B2BUAs)","authors":["L. Miniero","S. Garcia Murillo","V. Pascual"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc808":{"aliasOf":"rfc0808"},"rfc8080":{"rfcNumber":"RFC8080","href":"https://www.rfc-editor.org/rfc/rfc8080","title":"Edwards-Curve Digital Security Algorithm (EdDSA) for DNSSEC","authors":["O. Sury","R. Edmonds"],"rawDate":"2017-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8080","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8081":{"rfcNumber":"RFC8081","href":"https://www.rfc-editor.org/rfc/rfc8081","title":"The \"font\" Top-Level Media Type","authors":["C. Lilley"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8082":{"rfcNumber":"RFC8082","href":"https://www.rfc-editor.org/rfc/rfc8082","title":"Using Codec Control Messages in the RTP Audio-Visual Profile with Feedback with Layered Codecs","authors":["S. Wenger","J. Lennox","B. Burman","M. Westerlund"],"rawDate":"2017-03","status":"Proposed Standard","updates":["RFC5104"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8083":{"rfcNumber":"RFC8083","href":"https://www.rfc-editor.org/rfc/rfc8083","title":"Multimedia Congestion Control: Circuit Breakers for Unicast RTP Sessions","authors":["C. Perkins","V. Singh"],"rawDate":"2017-03","status":"Proposed Standard","updates":["RFC3550"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8084":{"rfcNumber":"RFC8084","href":"https://www.rfc-editor.org/rfc/rfc8084","title":"Network Transport Circuit Breakers","authors":["G. Fairhurst"],"rawDate":"2017-03","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8085":{"rfcNumber":"RFC8085","href":"https://www.rfc-editor.org/rfc/rfc8085","title":"UDP Usage Guidelines","authors":["L. Eggert","G. Fairhurst","G. Shepherd"],"rawDate":"2017-03","status":"Best Current Practice","updatedBy":["RFC8899"],"obsoletes":["RFC5405"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8085","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8086":{"rfcNumber":"RFC8086","href":"https://www.rfc-editor.org/rfc/rfc8086","title":"GRE-in-UDP Encapsulation","authors":["L. Yong, Ed.","E. Crabbe","X. Xu","T. Herbert"],"rawDate":"2017-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8086","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8087":{"rfcNumber":"RFC8087","href":"https://www.rfc-editor.org/rfc/rfc8087","title":"The Benefits of Using Explicit Congestion Notification (ECN)","authors":["G. Fairhurst","M. Welzl"],"rawDate":"2017-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8087","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8088":{"rfcNumber":"RFC8088","href":"https://www.rfc-editor.org/rfc/rfc8088","title":"How to Write an RTP Payload Format","authors":["M. Westerlund"],"rawDate":"2017-05","status":"Informational","updates":["RFC2736"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8089":{"rfcNumber":"RFC8089","href":"https://www.rfc-editor.org/rfc/rfc8089","title":"The \"file\" URI Scheme","authors":["M. Kerwin"],"rawDate":"2017-02","status":"Proposed Standard","updates":["RFC1738"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8089","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc809":{"aliasOf":"rfc0809"},"rfc8090":{"rfcNumber":"RFC8090","href":"https://www.rfc-editor.org/rfc/rfc8090","title":"Appointment Procedures for the IETF Representatives to the Community Coordination Group (CCG)","authors":["R. Housley"],"rawDate":"2017-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8091":{"rfcNumber":"RFC8091","href":"https://www.rfc-editor.org/rfc/rfc8091","title":"A Media Type Structured Syntax Suffix for JSON Text Sequences","authors":["E. Wilde"],"rawDate":"2017-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8092":{"rfcNumber":"RFC8092","href":"https://www.rfc-editor.org/rfc/rfc8092","title":"BGP Large Communities Attribute","authors":["J. Heitz, Ed.","J. Snijders, Ed.","K. Patel","I. Bagdonas","N. Hilliard"],"rawDate":"2017-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8092","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8093":{"rfcNumber":"RFC8093","href":"https://www.rfc-editor.org/rfc/rfc8093","title":"Deprecation of BGP Path Attribute Values 30, 31, 129, 241, 242, and 243","authors":["J. Snijders"],"rawDate":"2017-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8094":{"rfcNumber":"RFC8094","href":"https://www.rfc-editor.org/rfc/rfc8094","title":"DNS over Datagram Transport Layer Security (DTLS)","authors":["T. Reddy","D. Wing","P. Patil"],"rawDate":"2017-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8095":{"rfcNumber":"RFC8095","href":"https://www.rfc-editor.org/rfc/rfc8095","title":"Services Provided by IETF Transport Protocols and Congestion Control Mechanisms","authors":["G. Fairhurst, Ed.","B. Trammell, Ed.","M. Kuehlewind, Ed."],"rawDate":"2017-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8095","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8096":{"rfcNumber":"RFC8096","href":"https://www.rfc-editor.org/rfc/rfc8096","title":"The IPv6-Specific MIB Modules Are Obsolete","authors":["B. Fenner"],"rawDate":"2017-04","status":"Informational","obsoletes":["RFC2452","RFC2454","RFC2465","RFC2466"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8097":{"rfcNumber":"RFC8097","href":"https://www.rfc-editor.org/rfc/rfc8097","title":"BGP Prefix Origin Validation State Extended Community","authors":["P. Mohapatra","K. Patel","J. Scudder","D. Ward","R. Bush"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8098":{"rfcNumber":"RFC8098","href":"https://www.rfc-editor.org/rfc/rfc8098","title":"Message Disposition Notification","authors":["T. Hansen, Ed.","A. Melnikov, Ed."],"rawDate":"2017-02","status":"Internet Standard","updates":["RFC2046","RFC3461"],"obsoletes":["RFC3798"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8099":{"rfcNumber":"RFC8099","href":"https://www.rfc-editor.org/rfc/rfc8099","title":"OSPF Topology-Transparent Zone","authors":["H. Chen","R. Li","A. Retana","Y. Yang","Z. Liu"],"rawDate":"2017-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc81":{"aliasOf":"rfc0081"},"rfc810":{"aliasOf":"rfc0810"},"rfc8100":{"rfcNumber":"RFC8100","href":"https://www.rfc-editor.org/rfc/rfc8100","title":"Diffserv-Interconnection Classes and Practice","authors":["R. Geib, Ed.","D. Black"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8101":{"rfcNumber":"RFC8101","href":"https://www.rfc-editor.org/rfc/rfc8101","title":"IANA Registration of New Session Initiation Protocol (SIP) Resource-Priority Namespace for Mission Critical Push To Talk Service","authors":["C. Holmberg","J. Axell"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8102":{"rfcNumber":"RFC8102","href":"https://www.rfc-editor.org/rfc/rfc8102","title":"Remote-LFA Node Protection and Manageability","authors":["P. Sarkar, Ed.","S. Hegde","C. Bowers","H. Gredler","S. Litkowski"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8103":{"rfcNumber":"RFC8103","href":"https://www.rfc-editor.org/rfc/rfc8103","title":"Using ChaCha20-Poly1305 Authenticated Encryption in the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2017-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8103","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8104":{"rfcNumber":"RFC8104","href":"https://www.rfc-editor.org/rfc/rfc8104","title":"Pseudowire (PW) Endpoint Fast Failure Protection","authors":["Y. Shen","R. Aggarwal","W. Henderickx","Y. Jiang"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8105":{"rfcNumber":"RFC8105","href":"https://www.rfc-editor.org/rfc/rfc8105","title":"Transmission of IPv6 Packets over Digital Enhanced Cordless Telecommunications (DECT) Ultra Low Energy (ULE)","authors":["P. Mariager","J. Petersen, Ed.","Z. Shelby","M. Van de Logt","D. Barthel"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8106":{"rfcNumber":"RFC8106","href":"https://www.rfc-editor.org/rfc/rfc8106","title":"IPv6 Router Advertisement Options for DNS Configuration","authors":["J. Jeong","S. Park","L. Beloeil","S. Madanapalli"],"rawDate":"2017-03","status":"Proposed Standard","obsoletes":["RFC6106"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8107":{"rfcNumber":"RFC8107","href":"https://www.rfc-editor.org/rfc/rfc8107","title":"Advertising Digital Identifier (Ad-ID) URN Namespace Definition","authors":["J. Wold"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8108":{"rfcNumber":"RFC8108","href":"https://www.rfc-editor.org/rfc/rfc8108","title":"Sending Multiple RTP Streams in a Single RTP Session","authors":["J. Lennox","M. Westerlund","Q. Wu","C. Perkins"],"rawDate":"2017-03","status":"Proposed Standard","updates":["RFC3550","RFC4585"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8109":{"rfcNumber":"RFC8109","href":"https://www.rfc-editor.org/rfc/rfc8109","title":"Initializing a DNS Resolver with Priming Queries","authors":["P. Koch","M. Larson","P. Hoffman"],"rawDate":"2017-03","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc811":{"aliasOf":"rfc0811"},"rfc8110":{"rfcNumber":"RFC8110","href":"https://www.rfc-editor.org/rfc/rfc8110","title":"Opportunistic Wireless Encryption","authors":["D. Harkins, Ed.","W. Kumari, Ed."],"rawDate":"2017-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8110","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8111":{"rfcNumber":"RFC8111","href":"https://www.rfc-editor.org/rfc/rfc8111","title":"Locator/ID Separation Protocol Delegated Database Tree (LISP-DDT)","authors":["V. Fuller","D. Lewis","V. Ermagan","A. Jain","A. Smirnov"],"rawDate":"2017-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8112":{"rfcNumber":"RFC8112","href":"https://www.rfc-editor.org/rfc/rfc8112","title":"Locator/ID Separation Protocol Delegated Database Tree (LISP-DDT) Referral Internet Groper (RIG)","authors":["D. Farinacci","A. Jain","I. Kouvelas","D. Lewis"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8113":{"rfcNumber":"RFC8113","href":"https://www.rfc-editor.org/rfc/rfc8113","title":"Locator/ID Separation Protocol (LISP): Shared Extension Message & IANA Registry for Packet Type Allocations","authors":["M. Boucadair","C. Jacquenet"],"rawDate":"2017-03","status":"Experimental","obsoletedBy":["RFC9304"],"updates":["RFC6830"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8114":{"rfcNumber":"RFC8114","href":"https://www.rfc-editor.org/rfc/rfc8114","title":"Delivery of IPv4 Multicast Services to IPv4 Clients over an IPv6 Multicast Network","authors":["M. Boucadair","C. Qin","C. Jacquenet","Y. Lee","Q. Wang"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8115":{"rfcNumber":"RFC8115","href":"https://www.rfc-editor.org/rfc/rfc8115","title":"DHCPv6 Option for IPv4-Embedded Multicast and Unicast IPv6 Prefixes","authors":["M. Boucadair","J. Qin","T. Tsou","X. Deng"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8116":{"rfcNumber":"RFC8116","href":"https://www.rfc-editor.org/rfc/rfc8116","title":"Security Threats to the Optimized Link State Routing Protocol Version 2 (OLSRv2)","authors":["T. Clausen","U. Herberg","J. Yi"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8117":{"rfcNumber":"RFC8117","href":"https://www.rfc-editor.org/rfc/rfc8117","title":"Current Hostname Practice Considered Harmful","authors":["C. Huitema","D. Thaler","R. Winter"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8118":{"rfcNumber":"RFC8118","href":"https://www.rfc-editor.org/rfc/rfc8118","title":"The application/pdf Media Type","authors":["M. Hardy","L. Masinter","D. Markovic","D. Johnson","M. Bailey"],"rawDate":"2017-03","status":"Informational","obsoletes":["RFC3778"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8119":{"rfcNumber":"RFC8119","href":"https://www.rfc-editor.org/rfc/rfc8119","title":"SIP \"cause\" URI Parameter for Service Number Translation","authors":["M. Mohali","M. Barnes"],"rawDate":"2017-03","status":"Informational","updates":["RFC4458"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc812":{"aliasOf":"rfc0812"},"rfc8120":{"rfcNumber":"RFC8120","href":"https://www.rfc-editor.org/rfc/rfc8120","title":"Mutual Authentication Protocol for HTTP","authors":["Y. Oiwa","H. Watanabe","H. Takagi","K. Maeda","T. Hayashi","Y. Ioku"],"rawDate":"2017-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8121":{"rfcNumber":"RFC8121","href":"https://www.rfc-editor.org/rfc/rfc8121","title":"Mutual Authentication Protocol for HTTP: Cryptographic Algorithms Based on the Key Agreement Mechanism 3 (KAM3)","authors":["Y. Oiwa","H. Watanabe","H. Takagi","K. Maeda","T. Hayashi","Y. Ioku"],"rawDate":"2017-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8122":{"rfcNumber":"RFC8122","href":"https://www.rfc-editor.org/rfc/rfc8122","title":"Connection-Oriented Media Transport over the Transport Layer Security (TLS) Protocol in the Session Description Protocol (SDP)","authors":["J. Lennox","C. Holmberg"],"rawDate":"2017-03","status":"Proposed Standard","updatedBy":["RFC8844"],"obsoletes":["RFC4572"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8122","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8123":{"rfcNumber":"RFC8123","href":"https://www.rfc-editor.org/rfc/rfc8123","title":"Requirements for Marking SIP Messages to be Logged","authors":["P. Dawes","C. Arunachalam"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8124":{"rfcNumber":"RFC8124","href":"https://www.rfc-editor.org/rfc/rfc8124","title":"The Session Description Protocol (SDP) WebSocket Connection URI Attribute","authors":["R. Ravindranath","G. Salgueiro"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8125":{"rfcNumber":"RFC8125","href":"https://www.rfc-editor.org/rfc/rfc8125","title":"Requirements for Password-Authenticated Key Agreement (PAKE) Schemes","authors":["J. Schmidt"],"rawDate":"2017-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8126":{"rfcNumber":"RFC8126","href":"https://www.rfc-editor.org/rfc/rfc8126","title":"Guidelines for Writing an IANA Considerations Section in RFCs","authors":["M. Cotton","B. Leiba","T. Narten"],"rawDate":"2017-06","status":"Best Current Practice","obsoletes":["RFC5226"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8126","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8127":{"rfcNumber":"RFC8127","href":"https://www.rfc-editor.org/rfc/rfc8127","title":"Mobile Access Gateway Configuration Parameters Controlled by the Local Mobility Anchor","authors":["D. Patki","S. Gundavelli","J. Lee","Q. Fu","L. Bertz"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8128":{"rfcNumber":"RFC8128","href":"https://www.rfc-editor.org/rfc/rfc8128","title":"IETF Appointment Procedures for the ICANN Root Zone Evolution Review Committee","authors":["C. Morgan"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8129":{"rfcNumber":"RFC8129","href":"https://www.rfc-editor.org/rfc/rfc8129","title":"Authentication Indicator in Kerberos Tickets","authors":["A. Jain","N. Kinder","N. McCallum"],"rawDate":"2017-03","status":"Proposed Standard","updates":["RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc813":{"aliasOf":"rfc0813"},"rfc8130":{"rfcNumber":"RFC8130","href":"https://www.rfc-editor.org/rfc/rfc8130","title":"RTP Payload Format for the Mixed Excitation Linear Prediction Enhanced (MELPe) Codec","authors":["V. Demjanenko","D. Satterlee"],"rawDate":"2017-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8131":{"rfcNumber":"RFC8131","href":"https://www.rfc-editor.org/rfc/rfc8131","title":"RSVP-TE Signaling Procedure for End-to-End GMPLS Restoration and Resource Sharing","authors":["X. Zhang","H. Zheng, Ed.","R. Gandhi, Ed.","Z. Ali","P. Brzozowski"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8132":{"rfcNumber":"RFC8132","href":"https://www.rfc-editor.org/rfc/rfc8132","title":"PATCH and FETCH Methods for the Constrained Application Protocol (CoAP)","authors":["P. van der Stok","C. Bormann","A. Sehgal"],"rawDate":"2017-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8133":{"rfcNumber":"RFC8133","href":"https://www.rfc-editor.org/rfc/rfc8133","title":"The Security Evaluated Standardized Password-Authenticated Key Exchange (SESPAKE) Protocol","authors":["S. Smyshlyaev, Ed.","E. Alekseev","I. Oshkin","V. Popov"],"rawDate":"2017-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8134":{"rfcNumber":"RFC8134","href":"https://www.rfc-editor.org/rfc/rfc8134","title":"Management Incident Lightweight Exchange (MILE) Implementation Report","authors":["C. Inacio","D. Miyamoto"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8135":{"rfcNumber":"RFC8135","href":"https://www.rfc-editor.org/rfc/rfc8135","title":"Complex Addressing in IPv6","authors":["M. Danielson","M. Nilsson"],"rawDate":"2017-04-01","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8135","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8136":{"rfcNumber":"RFC8136","href":"https://www.rfc-editor.org/rfc/rfc8136","title":"Additional Transition Functionality for IPv6","authors":["B. Carpenter","R. Hinden"],"rawDate":"2017-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8137":{"rfcNumber":"RFC8137","href":"https://www.rfc-editor.org/rfc/rfc8137","title":"IEEE 802.15.4 Information Element for the IETF","authors":["T. Kivinen","P. Kinney"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8138":{"rfcNumber":"RFC8138","href":"https://www.rfc-editor.org/rfc/rfc8138","title":"IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Routing Header","authors":["P. Thubert, Ed.","C. Bormann","L. Toutain","R. Cragie"],"rawDate":"2017-04","status":"Proposed Standard","updatedBy":["RFC9008","RFC9035"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8138","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8139":{"rfcNumber":"RFC8139","href":"https://www.rfc-editor.org/rfc/rfc8139","title":"Transparent Interconnection of Lots of Links (TRILL): Appointed Forwarders","authors":["D. Eastlake 3rd","Y. Li","M. Umair","A. Banerjee","F. Hu"],"rawDate":"2017-06","status":"Proposed Standard","updates":["RFC6325","RFC7177"],"obsoletes":["RFC6439"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc814":{"aliasOf":"rfc0814"},"rfc8140":{"rfcNumber":"RFC8140","href":"https://www.rfc-editor.org/rfc/rfc8140","title":"The Arte of ASCII: Or, An True and Accurate Representation of an Menagerie of Thynges Fabulous and Wonderful in Ye Forme of Character","authors":["A. Farrel"],"rawDate":"2017-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8140","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8141":{"rfcNumber":"RFC8141","href":"https://www.rfc-editor.org/rfc/rfc8141","title":"Uniform Resource Names (URNs)","authors":["P. Saint-Andre","J. Klensin"],"rawDate":"2017-04","status":"Proposed Standard","obsoletes":["RFC2141","RFC3406"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8142":{"rfcNumber":"RFC8142","href":"https://www.rfc-editor.org/rfc/rfc8142","title":"GeoJSON Text Sequences","authors":["S. Gillies"],"rawDate":"2017-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8143":{"rfcNumber":"RFC8143","href":"https://www.rfc-editor.org/rfc/rfc8143","title":"Using Transport Layer Security (TLS) with Network News Transfer Protocol (NNTP)","authors":["J. Elie"],"rawDate":"2017-04","status":"Proposed Standard","updates":["RFC4642"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8144":{"rfcNumber":"RFC8144","href":"https://httpwg.org/specs/rfc8144.html","title":"Use of the Prefer Header Field in Web Distributed Authoring and Versioning (WebDAV)","authors":["K. Murchison"],"rawDate":"2017-04","status":"Proposed Standard","updates":["RFC7240"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8145":{"rfcNumber":"RFC8145","href":"https://www.rfc-editor.org/rfc/rfc8145","title":"Signaling Trust Anchor Knowledge in DNS Security Extensions (DNSSEC)","authors":["D. Wessels","W. Kumari","P. Hoffman"],"rawDate":"2017-04","status":"Proposed Standard","updatedBy":["RFC8553"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8146":{"rfcNumber":"RFC8146","href":"https://www.rfc-editor.org/rfc/rfc8146","title":"Adding Support for Salted Password Databases to EAP-pwd","authors":["D. Harkins"],"rawDate":"2017-04","status":"Informational","updates":["RFC5931"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8146","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8147":{"rfcNumber":"RFC8147","href":"https://www.rfc-editor.org/rfc/rfc8147","title":"Next-Generation Pan-European eCall","authors":["R. Gellens","H. Tschofenig"],"rawDate":"2017-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8147","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8148":{"rfcNumber":"RFC8148","href":"https://www.rfc-editor.org/rfc/rfc8148","title":"Next-Generation Vehicle-Initiated Emergency Calls","authors":["R. Gellens","B. Rosen","H. Tschofenig"],"rawDate":"2017-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8148","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8149":{"rfcNumber":"RFC8149","href":"https://www.rfc-editor.org/rfc/rfc8149","title":"RSVP Extensions for Reoptimization of Loosely Routed Point-to-Multipoint Traffic Engineering Label Switched Paths (LSPs)","authors":["T. Saad, Ed.","R. Gandhi, Ed.","Z. Ali","R. Venator","Y. Kamite"],"rawDate":"2017-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc815":{"aliasOf":"rfc0815"},"rfc8150":{"rfcNumber":"RFC8150","href":"https://www.rfc-editor.org/rfc/rfc8150","title":"MPLS Transport Profile Linear Protection MIB","authors":["S. Kingston Smiler","M. Venkatesan","D. King","S. Aldrin","J. Ryoo"],"rawDate":"2017-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8151":{"rfcNumber":"RFC8151","href":"https://www.rfc-editor.org/rfc/rfc8151","title":"Use Cases for Data Center Network Virtualization Overlay Networks","authors":["L. Yong","L. Dunbar","M. Toy","A. Isaac","V. Manral"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8152":{"rfcNumber":"RFC8152","href":"https://www.rfc-editor.org/rfc/rfc8152","title":"CBOR Object Signing and Encryption (COSE)","authors":["J. Schaad"],"rawDate":"2017-07","status":"Proposed Standard","obsoletedBy":["RFC9052","RFC9053"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8152","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8153":{"rfcNumber":"RFC8153","href":"https://www.rfc-editor.org/rfc/rfc8153","title":"Digital Preservation Considerations for the RFC Series","authors":["H. Flanagan"],"rawDate":"2017-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8154":{"rfcNumber":"RFC8154","href":"https://www.rfc-editor.org/rfc/rfc8154","title":"Parallel NFS (pNFS) Small Computer System Interface (SCSI) Layout","authors":["C. Hellwig"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8155":{"rfcNumber":"RFC8155","href":"https://www.rfc-editor.org/rfc/rfc8155","title":"Traversal Using Relays around NAT (TURN) Server Auto Discovery","authors":["P. Patil","T. Reddy","D. Wing"],"rawDate":"2017-04","status":"Proposed Standard","updates":["RFC5766"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8156":{"rfcNumber":"RFC8156","href":"https://www.rfc-editor.org/rfc/rfc8156","title":"DHCPv6 Failover Protocol","authors":["T. Mrugalski","K. Kinnear"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8157":{"rfcNumber":"RFC8157","href":"https://www.rfc-editor.org/rfc/rfc8157","title":"Huawei's GRE Tunnel Bonding Protocol","authors":["N. Leymann","C. Heidemann","M. Zhang","B. Sarikaya","M. Cullen"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8158":{"rfcNumber":"RFC8158","href":"https://www.rfc-editor.org/rfc/rfc8158","title":"IP Flow Information Export (IPFIX) Information Elements for Logging NAT Events","authors":["S. Sivakumar","R. Penno"],"rawDate":"2017-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8159":{"rfcNumber":"RFC8159","href":"https://www.rfc-editor.org/rfc/rfc8159","title":"Keyed IPv6 Tunnel","authors":["M. Konstantynowicz, Ed.","G. Heron, Ed.","R. Schatzmayr","W. Henderickx"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc816":{"aliasOf":"rfc0816"},"rfc8160":{"rfcNumber":"RFC8160","href":"https://www.rfc-editor.org/rfc/rfc8160","title":"IUTF8 Terminal Mode in Secure Shell (SSH)","authors":["S. Tatham","D. Tucker"],"rawDate":"2017-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8161":{"rfcNumber":"RFC8161","href":"https://www.rfc-editor.org/rfc/rfc8161","title":"Benchmarking the Neighbor Discovery Protocol","authors":["W. Cerveny","R. Bonica","R. Thomas"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8162":{"rfcNumber":"RFC8162","href":"https://www.rfc-editor.org/rfc/rfc8162","title":"Using Secure DNS to Associate Certificates with Domain Names for S/MIME","authors":["P. Hoffman","J. Schlyter"],"rawDate":"2017-05","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8162","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8163":{"rfcNumber":"RFC8163","href":"https://www.rfc-editor.org/rfc/rfc8163","title":"Transmission of IPv6 over Master-Slave/Token-Passing (MS/TP) Networks","authors":["K. Lynn, Ed.","J. Martocci","C. Neilson","S. Donaldson"],"rawDate":"2017-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8163","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8164":{"rfcNumber":"RFC8164","href":"https://httpwg.org/specs/rfc8164.html","title":"Opportunistic Security for HTTP/2","authors":["M. Nottingham","M. Thomson"],"rawDate":"2017-05","status":"Historic","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8164","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8165":{"rfcNumber":"RFC8165","href":"https://www.rfc-editor.org/rfc/rfc8165","title":"Design Considerations for Metadata Insertion","authors":["T. Hardie"],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8166":{"rfcNumber":"RFC8166","href":"https://www.rfc-editor.org/rfc/rfc8166","title":"Remote Direct Memory Access Transport for Remote Procedure Call Version 1","authors":["C. Lever, Ed.","W. Simpson","T. Talpey"],"rawDate":"2017-06","status":"Proposed Standard","updatedBy":["RFC8797"],"obsoletes":["RFC5666"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8166","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8167":{"rfcNumber":"RFC8167","href":"https://www.rfc-editor.org/rfc/rfc8167","title":"Bidirectional Remote Procedure Call on RPC-over-RDMA Transports","authors":["C. Lever"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8168":{"rfcNumber":"RFC8168","href":"https://www.rfc-editor.org/rfc/rfc8168","title":"DHCPv6 Prefix-Length Hint Issues","authors":["T. Li","C. Liu","Y. Cui"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8169":{"rfcNumber":"RFC8169","href":"https://www.rfc-editor.org/rfc/rfc8169","title":"Residence Time Measurement in MPLS Networks","authors":["G. Mirsky","S. Ruffini","E. Gray","J. Drake","S. Bryant","A. Vainshtein"],"rawDate":"2017-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc817":{"aliasOf":"rfc0817"},"rfc8170":{"rfcNumber":"RFC8170","href":"https://www.rfc-editor.org/rfc/rfc8170","title":"Planning for Protocol Adoption and Subsequent Transitions","authors":["D. Thaler, Ed."],"rawDate":"2017-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8171":{"rfcNumber":"RFC8171","href":"https://www.rfc-editor.org/rfc/rfc8171","title":"Transparent Interconnection of Lots of Links (TRILL): Edge Directory Assistance Mechanisms","authors":["D. Eastlake 3rd","L. Dunbar","R. Perlman","Y. Li"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8172":{"rfcNumber":"RFC8172","href":"https://www.rfc-editor.org/rfc/rfc8172","title":"Considerations for Benchmarking Virtual Network Functions and Their Infrastructure","authors":["A. Morton"],"rawDate":"2017-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8173":{"rfcNumber":"RFC8173","href":"https://www.rfc-editor.org/rfc/rfc8173","title":"Precision Time Protocol Version 2 (PTPv2) Management Information Base","authors":["V. Shankarkumar","L. Montini","T. Frost","G. Dowd"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8174":{"rfcNumber":"RFC8174","href":"https://www.rfc-editor.org/rfc/rfc8174","title":"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words","authors":["B. Leiba"],"rawDate":"2017-05","status":"Best Current Practice","updates":["RFC2119"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8174","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8175":{"rfcNumber":"RFC8175","href":"https://www.rfc-editor.org/rfc/rfc8175","title":"Dynamic Link Exchange Protocol (DLEP)","authors":["S. Ratliff","S. Jury","D. Satterwhite","R. Taylor","B. Berry"],"rawDate":"2017-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8175","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8176":{"rfcNumber":"RFC8176","href":"https://www.rfc-editor.org/rfc/rfc8176","title":"Authentication Method Reference Values","authors":["M. Jones","P. Hunt","A. Nadalin"],"rawDate":"2017-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8176","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8177":{"rfcNumber":"RFC8177","href":"https://www.rfc-editor.org/rfc/rfc8177","title":"YANG Data Model for Key Chains","authors":["A. Lindem, Ed.","Y. Qu","D. Yeung","I. Chen","J. Zhang"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8178":{"rfcNumber":"RFC8178","href":"https://www.rfc-editor.org/rfc/rfc8178","title":"Rules for NFSv4 Extensions and Minor Versions","authors":["D. Noveck"],"rawDate":"2017-07","status":"Proposed Standard","updates":["RFC5661","RFC7862"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8179":{"rfcNumber":"RFC8179","href":"https://www.rfc-editor.org/rfc/rfc8179","title":"Intellectual Property Rights in IETF Technology","authors":["S. Bradner","J. Contreras"],"rawDate":"2017-05","status":"Best Current Practice","updates":["RFC2026"],"obsoletes":["RFC3979","RFC4879"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8179","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc818":{"aliasOf":"rfc0818"},"rfc8180":{"rfcNumber":"RFC8180","href":"https://www.rfc-editor.org/rfc/rfc8180","title":"Minimal IPv6 over the TSCH Mode of IEEE 802.15.4e (6TiSCH) Configuration","authors":["X. Vilajosana, Ed.","K. Pister","T. Watteyne"],"rawDate":"2017-05","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8180","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8181":{"rfcNumber":"RFC8181","href":"https://www.rfc-editor.org/rfc/rfc8181","title":"A Publication Protocol for the Resource Public Key Infrastructure (RPKI)","authors":["S. Weiler","A. Sonalker","R. Austein"],"rawDate":"2017-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8182":{"rfcNumber":"RFC8182","href":"https://www.rfc-editor.org/rfc/rfc8182","title":"The RPKI Repository Delta Protocol (RRDP)","authors":["T. Bruijnzeels","O. Muravskiy","B. Weber","R. Austein"],"rawDate":"2017-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8182","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8183":{"rfcNumber":"RFC8183","href":"https://www.rfc-editor.org/rfc/rfc8183","title":"An Out-of-Band Setup Protocol for Resource Public Key Infrastructure (RPKI) Production Services","authors":["R. Austein"],"rawDate":"2017-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8184":{"rfcNumber":"RFC8184","href":"https://www.rfc-editor.org/rfc/rfc8184","title":"Dual-Homing Protection for MPLS and the MPLS Transport Profile (MPLS-TP) Pseudowires","authors":["W. Cheng","L. Wang","H. Li","S. Davari","J. Dong"],"rawDate":"2017-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8185":{"rfcNumber":"RFC8185","href":"https://www.rfc-editor.org/rfc/rfc8185","title":"Dual-Homing Coordination for MPLS Transport Profile (MPLS-TP) Pseudowires Protection","authors":["W. Cheng","L. Wang","H. Li","J. Dong","A. D'Alessandro"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8186":{"rfcNumber":"RFC8186","href":"https://www.rfc-editor.org/rfc/rfc8186","title":"Support of the IEEE 1588 Timestamp Format in a Two-Way Active Measurement Protocol (TWAMP)","authors":["G. Mirsky","I. Meilik"],"rawDate":"2017-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8187":{"rfcNumber":"RFC8187","href":"https://www.rfc-editor.org/rfc/rfc8187","title":"Indicating Character Encoding and Language for HTTP Header Field Parameters","authors":["J. Reschke"],"rawDate":"2017-09","status":"Proposed Standard","obsoletes":["RFC5987"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8188":{"rfcNumber":"RFC8188","href":"https://httpwg.org/specs/rfc8188.html","title":"Encrypted Content-Encoding for HTTP","authors":["M. Thomson"],"rawDate":"2017-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8188","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8189":{"rfcNumber":"RFC8189","href":"https://www.rfc-editor.org/rfc/rfc8189","title":"Multi-Cost Application-Layer Traffic Optimization (ALTO)","authors":["S. Randriamasy","W. Roome","N. Schwan"],"rawDate":"2017-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc819":{"aliasOf":"rfc0819"},"rfc8190":{"rfcNumber":"RFC8190","href":"https://www.rfc-editor.org/rfc/rfc8190","title":"Updates to the Special-Purpose IP Address Registries","authors":["R. Bonica","M. Cotton","B. Haberman","L. Vegoda"],"rawDate":"2017-06","status":"Best Current Practice","updates":["RFC6890"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8191":{"rfcNumber":"RFC8191","href":"https://www.rfc-editor.org/rfc/rfc8191","title":"Home Network Prefix Renumbering in Proxy Mobile IPv6 (PMIPv6)","authors":["Z. Yan","J. Lee","X. Lee"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8192":{"rfcNumber":"RFC8192","href":"https://www.rfc-editor.org/rfc/rfc8192","title":"Interface to Network Security Functions (I2NSF): Problem Statement and Use Cases","authors":["S. Hares","D. Lopez","M. Zarny","C. Jacquenet","R. Kumar","J. Jeong"],"rawDate":"2017-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8193":{"rfcNumber":"RFC8193","href":"https://www.rfc-editor.org/rfc/rfc8193","title":"Information Model for Large-Scale Measurement Platforms (LMAPs)","authors":["T. Burbridge","P. Eardley","M. Bagnulo","J. Schoenwaelder"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8194":{"rfcNumber":"RFC8194","href":"https://www.rfc-editor.org/rfc/rfc8194","title":"A YANG Data Model for LMAP Measurement Agents","authors":["J. Schoenwaelder","V. Bajpai"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8195":{"rfcNumber":"RFC8195","href":"https://www.rfc-editor.org/rfc/rfc8195","title":"Use of BGP Large Communities","authors":["J. Snijders","J. Heasley","M. Schmidt"],"rawDate":"2017-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8196":{"rfcNumber":"RFC8196","href":"https://www.rfc-editor.org/rfc/rfc8196","title":"IS-IS Autoconfiguration","authors":["B. Liu, Ed.","L. Ginsberg","B. Decraene","I. Farrer","M. Abrahamsson"],"rawDate":"2017-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8197":{"rfcNumber":"RFC8197","href":"https://www.rfc-editor.org/rfc/rfc8197","title":"A SIP Response Code for Unwanted Calls","authors":["H. Schulzrinne"],"rawDate":"2017-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8198":{"rfcNumber":"RFC8198","href":"https://www.rfc-editor.org/rfc/rfc8198","title":"Aggressive Use of DNSSEC-Validated Cache","authors":["K. Fujiwara","A. Kato","W. Kumari"],"rawDate":"2017-07","status":"Proposed Standard","updatedBy":["RFC9077"],"updates":["RFC4035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8199":{"rfcNumber":"RFC8199","href":"https://www.rfc-editor.org/rfc/rfc8199","title":"YANG Module Classification","authors":["D. Bogdanovic","B. Claise","C. Moberg"],"rawDate":"2017-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8199","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc82":{"aliasOf":"rfc0082"},"rfc820":{"aliasOf":"rfc0820"},"rfc8200":{"rfcNumber":"RFC8200","href":"https://www.rfc-editor.org/rfc/rfc8200","title":"Internet Protocol, Version 6 (IPv6) Specification","authors":["S. Deering","R. Hinden"],"rawDate":"2017-07","status":"Internet Standard","obsoletes":["RFC2460"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8200","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8201":{"rfcNumber":"RFC8201","href":"https://www.rfc-editor.org/rfc/rfc8201","title":"Path MTU Discovery for IP version 6","authors":["J. McCann","S. Deering","J. Mogul","R. Hinden, Ed."],"rawDate":"2017-07","status":"Internet Standard","obsoletes":["RFC1981"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8202":{"rfcNumber":"RFC8202","href":"https://www.rfc-editor.org/rfc/rfc8202","title":"IS-IS Multi-Instance","authors":["L. Ginsberg","S. Previdi","W. Henderickx"],"rawDate":"2017-06","status":"Proposed Standard","obsoletes":["RFC6822"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8203":{"rfcNumber":"RFC8203","href":"https://www.rfc-editor.org/rfc/rfc8203","title":"BGP Administrative Shutdown Communication","authors":["J. Snijders","J. Heitz","J. Scudder"],"rawDate":"2017-07","status":"Proposed Standard","obsoletedBy":["RFC9003"],"updates":["RFC4486"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8204":{"rfcNumber":"RFC8204","href":"https://www.rfc-editor.org/rfc/rfc8204","title":"Benchmarking Virtual Switches in the Open Platform for NFV (OPNFV)","authors":["M. Tahhan","B. O'Mahony","A. Morton"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8205":{"rfcNumber":"RFC8205","href":"https://www.rfc-editor.org/rfc/rfc8205","title":"BGPsec Protocol Specification","authors":["M. Lepinski, Ed.","K. Sriram, Ed."],"rawDate":"2017-09","status":"Proposed Standard","updatedBy":["RFC8206"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8206":{"rfcNumber":"RFC8206","href":"https://www.rfc-editor.org/rfc/rfc8206","title":"BGPsec Considerations for Autonomous System (AS) Migration","authors":["W. George","S. Murphy"],"rawDate":"2017-09","status":"Proposed Standard","updates":["RFC8205"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8206","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8207":{"rfcNumber":"RFC8207","href":"https://www.rfc-editor.org/rfc/rfc8207","title":"BGPsec Operational Considerations","authors":["R. Bush"],"rawDate":"2017-09","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8208":{"rfcNumber":"RFC8208","href":"https://www.rfc-editor.org/rfc/rfc8208","title":"BGPsec Algorithms, Key Formats, and Signature Formats","authors":["S. Turner","O. Borchert"],"rawDate":"2017-09","status":"Proposed Standard","obsoletedBy":["RFC8608"],"updates":["RFC7935"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8209":{"rfcNumber":"RFC8209","href":"https://www.rfc-editor.org/rfc/rfc8209","title":"A Profile for BGPsec Router Certificates, Certificate Revocation Lists, and Certification Requests","authors":["M. Reynolds","S. Turner","S. Kent"],"rawDate":"2017-09","status":"Proposed Standard","updates":["RFC6487"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc821":{"aliasOf":"rfc0821"},"rfc8210":{"rfcNumber":"RFC8210","href":"https://www.rfc-editor.org/rfc/rfc8210","title":"The Resource Public Key Infrastructure (RPKI) to Router Protocol, Version 1","authors":["R. Bush","R. Austein"],"rawDate":"2017-09","status":"Proposed Standard","updates":["RFC6810"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8211":{"rfcNumber":"RFC8211","href":"https://www.rfc-editor.org/rfc/rfc8211","title":"Adverse Actions by a Certification Authority (CA) or Repository Manager in the Resource Public Key Infrastructure (RPKI)","authors":["S. Kent","D. Ma"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8212":{"rfcNumber":"RFC8212","href":"https://www.rfc-editor.org/rfc/rfc8212","title":"Default External BGP (EBGP) Route Propagation Behavior without Policies","authors":["J. Mauch","J. Snijders","G. Hankins"],"rawDate":"2017-07","status":"Proposed Standard","updates":["RFC4271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8213":{"rfcNumber":"RFC8213","href":"https://www.rfc-editor.org/rfc/rfc8213","title":"Security of Messages Exchanged between Servers and Relay Agents","authors":["B. Volz","Y. Pal"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8214":{"rfcNumber":"RFC8214","href":"https://www.rfc-editor.org/rfc/rfc8214","title":"Virtual Private Wire Service Support in Ethernet VPN","authors":["S. Boutros","A. Sajassi","S. Salam","J. Drake","J. Rabadan"],"rawDate":"2017-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8214","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8215":{"rfcNumber":"RFC8215","href":"https://www.rfc-editor.org/rfc/rfc8215","title":"Local-Use IPv4/IPv6 Translation Prefix","authors":["T. Anderson"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8216":{"rfcNumber":"RFC8216","href":"https://www.rfc-editor.org/rfc/rfc8216","title":"HTTP Live Streaming","authors":["R. Pantos, Ed.","W. May"],"rawDate":"2017-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8216","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8217":{"rfcNumber":"RFC8217","href":"https://www.rfc-editor.org/rfc/rfc8217","title":"Clarifications for When to Use the name-addr Production in SIP Messages","authors":["R. Sparks"],"rawDate":"2017-08","status":"Proposed Standard","updates":["RFC3261","RFC3325","RFC3515","RFC3892","RFC4508","RFC5002","RFC5318","RFC5360","RFC5502"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8218":{"rfcNumber":"RFC8218","href":"https://www.rfc-editor.org/rfc/rfc8218","title":"Multipath Extension for the Optimized Link State Routing Protocol Version 2 (OLSRv2)","authors":["J. Yi","B. Parrein"],"rawDate":"2017-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8219":{"rfcNumber":"RFC8219","href":"https://www.rfc-editor.org/rfc/rfc8219","title":"Benchmarking Methodology for IPv6 Transition Technologies","authors":["M. Georgescu","L. Pislaru","G. Lencse"],"rawDate":"2017-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc822":{"aliasOf":"rfc0822"},"rfc8220":{"rfcNumber":"RFC8220","href":"https://www.rfc-editor.org/rfc/rfc8220","title":"Protocol Independent Multicast (PIM) over Virtual Private LAN Service (VPLS)","authors":["O. Dornon","J. Kotalwar","V. Hemige","R. Qiu","Z. Zhang"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8221":{"rfcNumber":"RFC8221","href":"https://www.rfc-editor.org/rfc/rfc8221","title":"Cryptographic Algorithm Implementation Requirements and Usage Guidance for Encapsulating Security Payload (ESP) and Authentication Header (AH)","authors":["P. Wouters","D. Migault","J. Mattsson","Y. Nir","T. Kivinen"],"rawDate":"2017-10","status":"Proposed Standard","updatedBy":["RFC9395"],"obsoletes":["RFC7321"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8222":{"rfcNumber":"RFC8222","href":"https://www.rfc-editor.org/rfc/rfc8222","title":"Selecting Labels for Use with Conventional DNS and Other Resolution Systems in DNS-Based Service Discovery","authors":["A. Sullivan"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8223":{"rfcNumber":"RFC8223","href":"https://www.rfc-editor.org/rfc/rfc8223","title":"Application-Aware Targeted LDP","authors":["S. Esale","R. Torvi","L. Jalil","U. Chunduri","K. Raza"],"rawDate":"2017-08","status":"Proposed Standard","updates":["RFC7473"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8223","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8224":{"rfcNumber":"RFC8224","href":"https://www.rfc-editor.org/rfc/rfc8224","title":"Authenticated Identity Management in the Session Initiation Protocol (SIP)","authors":["J. Peterson","C. Jennings","E. Rescorla","C. Wendt"],"rawDate":"2018-02","status":"Proposed Standard","updatedBy":["RFC8946"],"obsoletes":["RFC4474"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8224","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8225":{"rfcNumber":"RFC8225","href":"https://www.rfc-editor.org/rfc/rfc8225","title":"PASSporT: Personal Assertion Token","authors":["C. Wendt","J. Peterson"],"rawDate":"2018-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8225","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8226":{"rfcNumber":"RFC8226","href":"https://www.rfc-editor.org/rfc/rfc8226","title":"Secure Telephone Identity Credentials: Certificates","authors":["J. Peterson","S. Turner"],"rawDate":"2018-02","status":"Proposed Standard","updatedBy":["RFC9118"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8226","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8227":{"rfcNumber":"RFC8227","href":"https://www.rfc-editor.org/rfc/rfc8227","title":"MPLS-TP Shared-Ring Protection (MSRP) Mechanism for Ring Topology","authors":["W. Cheng","L. Wang","H. Li","H. van Helvoort","J. Dong"],"rawDate":"2017-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8228":{"rfcNumber":"RFC8228","href":"https://www.rfc-editor.org/rfc/rfc8228","title":"Guidance on Designing Label Generation Rulesets (LGRs) Supporting Variant Labels","authors":["A. Freytag"],"rawDate":"2017-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8228","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8229":{"rfcNumber":"RFC8229","href":"https://www.rfc-editor.org/rfc/rfc8229","title":"TCP Encapsulation of IKE and IPsec Packets","authors":["T. Pauly","S. Touati","R. Mantha"],"rawDate":"2017-08","status":"Proposed Standard","obsoletedBy":["RFC9329"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8229","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc823":{"aliasOf":"rfc0823"},"rfc8230":{"rfcNumber":"RFC8230","href":"https://www.rfc-editor.org/rfc/rfc8230","title":"Using RSA Algorithms with CBOR Object Signing and Encryption (COSE) Messages","authors":["M. Jones"],"rawDate":"2017-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8231":{"rfcNumber":"RFC8231","href":"https://www.rfc-editor.org/rfc/rfc8231","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Stateful PCE","authors":["E. Crabbe","I. Minei","J. Medved","R. Varga"],"rawDate":"2017-09","status":"Proposed Standard","updatedBy":["RFC8786","RFC9353"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8231","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8232":{"rfcNumber":"RFC8232","href":"https://www.rfc-editor.org/rfc/rfc8232","title":"Optimizations of Label Switched Path State Synchronization Procedures for a Stateful PCE","authors":["E. Crabbe","I. Minei","J. Medved","R. Varga","X. Zhang","D. Dhody"],"rawDate":"2017-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8233":{"rfcNumber":"RFC8233","href":"https://www.rfc-editor.org/rfc/rfc8233","title":"Extensions to the Path Computation Element Communication Protocol (PCEP) to Compute Service-Aware Label Switched Paths (LSPs)","authors":["D. Dhody","Q. Wu","V. Manral","Z. Ali","K. Kumaki"],"rawDate":"2017-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8233","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8234":{"rfcNumber":"RFC8234","href":"https://www.rfc-editor.org/rfc/rfc8234","title":"Updates to MPLS Transport Profile (MPLS-TP) Linear Protection in Automatic Protection Switching (APS) Mode","authors":["J. Ryoo","T. Cheung","H. van Helvoort","I. Busi","G. Wen"],"rawDate":"2017-08","status":"Proposed Standard","updates":["RFC7271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8235":{"rfcNumber":"RFC8235","href":"https://www.rfc-editor.org/rfc/rfc8235","title":"Schnorr Non-interactive Zero-Knowledge Proof","authors":["F. Hao, Ed."],"rawDate":"2017-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8235","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8236":{"rfcNumber":"RFC8236","href":"https://www.rfc-editor.org/rfc/rfc8236","title":"J-PAKE: Password-Authenticated Key Exchange by Juggling","authors":["F. Hao, Ed."],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8237":{"rfcNumber":"RFC8237","href":"https://www.rfc-editor.org/rfc/rfc8237","title":"MPLS Label Switched Path (LSP) Pseudowire (PW) Status Refresh Reduction for Static PWs","authors":["L. Martini","G. Swallow","E. Bellagamba"],"rawDate":"2017-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8238":{"rfcNumber":"RFC8238","href":"https://www.rfc-editor.org/rfc/rfc8238","title":"Data Center Benchmarking Terminology","authors":["L. Avramov","J. Rapp"],"rawDate":"2017-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8239":{"rfcNumber":"RFC8239","href":"https://www.rfc-editor.org/rfc/rfc8239","title":"Data Center Benchmarking Methodology","authors":["L. Avramov","J. Rapp"],"rawDate":"2017-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8239","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc824":{"aliasOf":"rfc0824"},"rfc8240":{"rfcNumber":"RFC8240","href":"https://www.rfc-editor.org/rfc/rfc8240","title":"Report from the Internet of Things Software Update (IoTSU) Workshop 2016","authors":["H. Tschofenig","S. Farrell"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8241":{"rfcNumber":"RFC8241","href":"https://www.rfc-editor.org/rfc/rfc8241","title":"Interface to the Routing System (I2RS) Security-Related Requirements","authors":["S. Hares","D. Migault","J. Halpern"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8242":{"rfcNumber":"RFC8242","href":"https://www.rfc-editor.org/rfc/rfc8242","title":"Interface to the Routing System (I2RS) Ephemeral State Requirements","authors":["J. Haas","S. Hares"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8243":{"rfcNumber":"RFC8243","href":"https://www.rfc-editor.org/rfc/rfc8243","title":"Alternatives for Multilevel Transparent Interconnection of Lots of Links (TRILL)","authors":["R. Perlman","D. Eastlake 3rd","M. Zhang","A. Ghanwani","H. Zhai"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8244":{"rfcNumber":"RFC8244","href":"https://www.rfc-editor.org/rfc/rfc8244","title":"Special-Use Domain Names Problem Statement","authors":["T. Lemon","R. Droms","W. Kumari"],"rawDate":"2017-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8245":{"rfcNumber":"RFC8245","href":"https://www.rfc-editor.org/rfc/rfc8245","title":"Rules for Designing Protocols Using the Generalized Packet/Message Format from RFC 5444","authors":["T. Clausen","C. Dearlove","U. Herberg","H. Rogge"],"rawDate":"2017-10","status":"Proposed Standard","updates":["RFC5444"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8246":{"rfcNumber":"RFC8246","href":"https://httpwg.org/specs/rfc8246.html","title":"HTTP Immutable Responses","authors":["P. McManus"],"rawDate":"2017-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8247":{"rfcNumber":"RFC8247","href":"https://www.rfc-editor.org/rfc/rfc8247","title":"Algorithm Implementation Requirements and Usage Guidance for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["Y. Nir","T. Kivinen","P. Wouters","D. Migault"],"rawDate":"2017-09","status":"Proposed Standard","updatedBy":["RFC9395"],"updates":["RFC7296"],"obsoletes":["RFC4307"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8248":{"rfcNumber":"RFC8248","href":"https://www.rfc-editor.org/rfc/rfc8248","title":"Security Automation and Continuous Monitoring (SACM) Requirements","authors":["N. Cam-Winget","L. Lorenzin"],"rawDate":"2017-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8249":{"rfcNumber":"RFC8249","href":"https://www.rfc-editor.org/rfc/rfc8249","title":"Transparent Interconnection of Lots of Links (TRILL): MTU Negotiation","authors":["M. Zhang","X. Zhang","D. Eastlake 3rd","R. Perlman","S. Chatterjee"],"rawDate":"2017-09","status":"Proposed Standard","updates":["RFC6325","RFC7177","RFC7780"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc825":{"aliasOf":"rfc0825"},"rfc8250":{"rfcNumber":"RFC8250","href":"https://www.rfc-editor.org/rfc/rfc8250","title":"IPv6 Performance and Diagnostic Metrics (PDM) Destination Option","authors":["N. Elkins","R. Hamilton","M. Ackermann"],"rawDate":"2017-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8250","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8251":{"rfcNumber":"RFC8251","href":"https://www.rfc-editor.org/rfc/rfc8251","title":"Updates to the Opus Audio Codec","authors":["JM. Valin","K. Vos"],"rawDate":"2017-10","status":"Proposed Standard","updates":["RFC6716"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8252":{"rfcNumber":"RFC8252","href":"https://www.rfc-editor.org/rfc/rfc8252","title":"OAuth 2.0 for Native Apps","authors":["W. Denniss","J. Bradley"],"rawDate":"2017-10","status":"Best Current Practice","updates":["RFC6749"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8252","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8253":{"rfcNumber":"RFC8253","href":"https://www.rfc-editor.org/rfc/rfc8253","title":"PCEPS: Usage of TLS to Provide a Secure Transport for the Path Computation Element Communication Protocol (PCEP)","authors":["D. Lopez","O. Gonzalez de Dios","Q. Wu","D. Dhody"],"rawDate":"2017-10","status":"Proposed Standard","updates":["RFC5440"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8253","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8254":{"rfcNumber":"RFC8254","href":"https://www.rfc-editor.org/rfc/rfc8254","title":"Uniform Resource Name (URN) Namespace Registration Transition","authors":["J. Klensin","J. Hakala"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC3044","RFC3187"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8255":{"rfcNumber":"RFC8255","href":"https://www.rfc-editor.org/rfc/rfc8255","title":"Multiple Language Content Type","authors":["N. Tomkinson","N. Borenstein"],"rawDate":"2017-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8256":{"rfcNumber":"RFC8256","href":"https://www.rfc-editor.org/rfc/rfc8256","title":"Requirements for Hitless MPLS Path Segment Monitoring","authors":["A. D'Alessandro","L. Andersson","S. Ueno","K. Arai","Y. Koike"],"rawDate":"2017-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8257":{"rfcNumber":"RFC8257","href":"https://www.rfc-editor.org/rfc/rfc8257","title":"Data Center TCP (DCTCP): TCP Congestion Control for Data Centers","authors":["S. Bensley","D. Thaler","P. Balasubramanian","L. Eggert","G. Judd"],"rawDate":"2017-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8257","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8258":{"rfcNumber":"RFC8258","href":"https://www.rfc-editor.org/rfc/rfc8258","title":"Generalized SCSI: A Generic Structure for Interface Switching Capability Descriptor (ISCD) Switching Capability Specific Information (SCSI)","authors":["D. Ceccarelli","L. Berger"],"rawDate":"2017-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8259":{"rfcNumber":"RFC8259","href":"https://www.rfc-editor.org/rfc/rfc8259","title":"The JavaScript Object Notation (JSON) Data Interchange Format","authors":["T. Bray, Ed."],"rawDate":"2017-12","status":"Internet Standard","obsoletes":["RFC7159"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8259","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc826":{"aliasOf":"rfc0826"},"rfc8260":{"rfcNumber":"RFC8260","href":"https://www.rfc-editor.org/rfc/rfc8260","title":"Stream Schedulers and User Message Interleaving for the Stream Control Transmission Protocol","authors":["R. Stewart","M. Tuexen","S. Loreto","R. Seggelmann"],"rawDate":"2017-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8261":{"rfcNumber":"RFC8261","href":"https://www.rfc-editor.org/rfc/rfc8261","title":"Datagram Transport Layer Security (DTLS) Encapsulation of SCTP Packets","authors":["M. Tuexen","R. Stewart","R. Jesup","S. Loreto"],"rawDate":"2017-11","status":"Proposed Standard","updatedBy":["RFC8899","RFC8996"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8262":{"rfcNumber":"RFC8262","href":"https://www.rfc-editor.org/rfc/rfc8262","title":"Content-ID Header Field in the Session Initiation Protocol (SIP)","authors":["C. Holmberg","I. Sedlacek"],"rawDate":"2017-10","status":"Proposed Standard","updates":["RFC5621","RFC5368","RFC6442"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8263":{"rfcNumber":"RFC8263","href":"https://www.rfc-editor.org/rfc/rfc8263","title":"Group Domain of Interpretation (GDOI) GROUPKEY-PUSH Acknowledgement Message","authors":["B. Weis","U. Mangla","T. Karl","N. Maheshwari"],"rawDate":"2017-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8264":{"rfcNumber":"RFC8264","href":"https://www.rfc-editor.org/rfc/rfc8264","title":"PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols","authors":["P. Saint-Andre","M. Blanchet"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC7564"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8264","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8265":{"rfcNumber":"RFC8265","href":"https://www.rfc-editor.org/rfc/rfc8265","title":"Preparation, Enforcement, and Comparison of Internationalized Strings Representing Usernames and Passwords","authors":["P. Saint-Andre","A. Melnikov"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC7613"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8265","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8266":{"rfcNumber":"RFC8266","href":"https://www.rfc-editor.org/rfc/rfc8266","title":"Preparation, Enforcement, and Comparison of Internationalized Strings Representing Nicknames","authors":["P. Saint-Andre"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC7700"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8267":{"rfcNumber":"RFC8267","href":"https://www.rfc-editor.org/rfc/rfc8267","title":"Network File System (NFS) Upper-Layer Binding to RPC-over-RDMA Version 1","authors":["C. Lever"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC5667"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8268":{"rfcNumber":"RFC8268","href":"https://www.rfc-editor.org/rfc/rfc8268","title":"More Modular Exponentiation (MODP) Diffie-Hellman (DH) Key Exchange (KEX) Groups for Secure Shell (SSH)","authors":["M. Baushke"],"rawDate":"2017-12","status":"Proposed Standard","updates":["RFC4250","RFC4253"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8269":{"rfcNumber":"RFC8269","href":"https://www.rfc-editor.org/rfc/rfc8269","title":"The ARIA Algorithm and Its Use with the Secure Real-Time Transport Protocol (SRTP)","authors":["W. Kim","J. Lee","J. Park","D. Kwon","D. Kim"],"rawDate":"2017-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc827":{"aliasOf":"rfc0827"},"rfc8270":{"rfcNumber":"RFC8270","href":"https://www.rfc-editor.org/rfc/rfc8270","title":"Increase the Secure Shell Minimum Recommended Diffie-Hellman Modulus Size to 2048 Bits","authors":["L. Velvindron","M. Baushke"],"rawDate":"2017-12","status":"Proposed Standard","updates":["RFC4419"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8270","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8271":{"rfcNumber":"RFC8271","href":"https://www.rfc-editor.org/rfc/rfc8271","title":"Updates to the Resource Reservation Protocol for Fast Reroute of Traffic Engineering GMPLS Label Switched Paths (LSPs)","authors":["M. Taillon","T. Saad, Ed.","R. Gandhi, Ed.","Z. Ali","M. Bhatia"],"rawDate":"2017-10","status":"Proposed Standard","updates":["RFC4090"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8272":{"rfcNumber":"RFC8272","href":"https://www.rfc-editor.org/rfc/rfc8272","title":"TinyIPFIX for Smart Meters in Constrained Networks","authors":["C. Schmitt","B. Stiller","B. Trammell"],"rawDate":"2017-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8272","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8273":{"rfcNumber":"RFC8273","href":"https://www.rfc-editor.org/rfc/rfc8273","title":"Unique IPv6 Prefix per Host","authors":["J. Brzozowski","G. Van de Velde"],"rawDate":"2017-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8274":{"rfcNumber":"RFC8274","href":"https://www.rfc-editor.org/rfc/rfc8274","title":"Incident Object Description Exchange Format Usage Guidance","authors":["P. Kampanakis","M. Suzuki"],"rawDate":"2017-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8275":{"rfcNumber":"RFC8275","href":"https://www.rfc-editor.org/rfc/rfc8275","title":"Allowing Inheritable NFSv4 Access Control Entries to Override the Umask","authors":["J. Fields","A. Gruenbacher"],"rawDate":"2017-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8275","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8276":{"rfcNumber":"RFC8276","href":"https://www.rfc-editor.org/rfc/rfc8276","title":"File System Extended Attributes in NFSv4","authors":["M. Naik","M. Eshel"],"rawDate":"2017-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8276","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8277":{"rfcNumber":"RFC8277","href":"https://www.rfc-editor.org/rfc/rfc8277","title":"Using BGP to Bind MPLS Labels to Address Prefixes","authors":["E. Rosen"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC3107"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8278":{"rfcNumber":"RFC8278","href":"https://www.rfc-editor.org/rfc/rfc8278","title":"Mobile Access Gateway (MAG) Multipath Options","authors":["P. Seite","A. Yegin","S. Gundavelli"],"rawDate":"2018-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8279":{"rfcNumber":"RFC8279","href":"https://www.rfc-editor.org/rfc/rfc8279","title":"Multicast Using Bit Index Explicit Replication (BIER)","authors":["IJ. Wijnands, Ed.","E. Rosen, Ed.","A. Dolganow","T. Przygienda","S. Aldrin"],"rawDate":"2017-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc828":{"aliasOf":"rfc0828"},"rfc8280":{"rfcNumber":"RFC8280","href":"https://www.rfc-editor.org/rfc/rfc8280","title":"Research into Human Rights Protocol Considerations","authors":["N. ten Oever","C. Cath"],"rawDate":"2017-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8280","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8281":{"rfcNumber":"RFC8281","href":"https://www.rfc-editor.org/rfc/rfc8281","title":"Path Computation Element Communication Protocol (PCEP) Extensions for PCE-Initiated LSP Setup in a Stateful PCE Model","authors":["E. Crabbe","I. Minei","S. Sivabalan","R. Varga"],"rawDate":"2017-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8281","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8282":{"rfcNumber":"RFC8282","href":"https://www.rfc-editor.org/rfc/rfc8282","title":"Extensions to the Path Computation Element Communication Protocol (PCEP) for Inter-Layer MPLS and GMPLS Traffic Engineering","authors":["E. Oki","T. Takeda","A. Farrel","F. Zhang"],"rawDate":"2017-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8283":{"rfcNumber":"RFC8283","href":"https://www.rfc-editor.org/rfc/rfc8283","title":"An Architecture for Use of PCE and the PCE Communication Protocol (PCEP) in a Network with Central Control","authors":["A. Farrel, Ed.","Q. Zhao, Ed.","Z. Li","C. Zhou"],"rawDate":"2017-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8284":{"rfcNumber":"RFC8284","href":"https://www.rfc-editor.org/rfc/rfc8284","title":"Lightweight Directory Access Protocol (LDAP) Schema for Supporting the Extensible Messaging and Presence Protocol (XMPP) in White Pages","authors":["S. Kille"],"rawDate":"2017-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8285":{"rfcNumber":"RFC8285","href":"https://www.rfc-editor.org/rfc/rfc8285","title":"A General Mechanism for RTP Header Extensions","authors":["D. Singer","H. Desineni","R. Even, Ed."],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC5285"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8286":{"rfcNumber":"RFC8286","href":"https://www.rfc-editor.org/rfc/rfc8286","title":"RTP/RTCP Extension for RTP Splicing Notification","authors":["J. Xia","R. Even","R. Huang","L. Deng"],"rawDate":"2017-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8287":{"rfcNumber":"RFC8287","href":"https://www.rfc-editor.org/rfc/rfc8287","title":"Label Switched Path (LSP) Ping/Traceroute for Segment Routing (SR) IGP-Prefix and IGP-Adjacency Segment Identifiers (SIDs) with MPLS Data Planes","authors":["N. Kumar, Ed.","C. Pignataro, Ed.","G. Swallow","N. Akiya","S. Kini","M. Chen"],"rawDate":"2017-12","status":"Proposed Standard","updatedBy":["RFC8690","RFC9214"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8287","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8288":{"rfcNumber":"RFC8288","href":"https://httpwg.org/specs/rfc8288.html","title":"Web Linking","authors":["M. Nottingham"],"rawDate":"2017-10","status":"Proposed Standard","obsoletes":["RFC5988"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8288","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8289":{"rfcNumber":"RFC8289","href":"https://www.rfc-editor.org/rfc/rfc8289","title":"Controlled Delay Active Queue Management","authors":["K. Nichols","V. Jacobson","A. McGregor, Ed.","J. Iyengar, Ed."],"rawDate":"2018-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc829":{"aliasOf":"rfc0829"},"rfc8290":{"rfcNumber":"RFC8290","href":"https://www.rfc-editor.org/rfc/rfc8290","title":"The Flow Queue CoDel Packet Scheduler and Active Queue Management Algorithm","authors":["T. Hoeiland-Joergensen","P. McKenney","D. Taht","J. Gettys","E. Dumazet"],"rawDate":"2018-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8291":{"rfcNumber":"RFC8291","href":"https://www.rfc-editor.org/rfc/rfc8291","title":"Message Encryption for Web Push","authors":["M. Thomson"],"rawDate":"2017-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8291","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8292":{"rfcNumber":"RFC8292","href":"https://www.rfc-editor.org/rfc/rfc8292","title":"Voluntary Application Server Identification (VAPID) for Web Push","authors":["M. Thomson","P. Beverloo"],"rawDate":"2017-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8293":{"rfcNumber":"RFC8293","href":"https://www.rfc-editor.org/rfc/rfc8293","title":"A Framework for Multicast in Network Virtualization over Layer 3","authors":["A. Ghanwani","L. Dunbar","M. McBride","V. Bannai","R. Krishnan"],"rawDate":"2018-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8294":{"rfcNumber":"RFC8294","href":"https://www.rfc-editor.org/rfc/rfc8294","title":"Common YANG Data Types for the Routing Area","authors":["X. Liu","Y. Qu","A. Lindem","C. Hopps","L. Berger"],"rawDate":"2017-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8294","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8295":{"rfcNumber":"RFC8295","href":"https://www.rfc-editor.org/rfc/rfc8295","title":"EST (Enrollment over Secure Transport) Extensions","authors":["S. Turner"],"rawDate":"2018-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8295","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8296":{"rfcNumber":"RFC8296","href":"https://www.rfc-editor.org/rfc/rfc8296","title":"Encapsulation for Bit Index Explicit Replication (BIER) in MPLS and Non-MPLS Networks","authors":["IJ. Wijnands, Ed.","E. Rosen, Ed.","A. Dolganow","J. Tantsura","S. Aldrin","I. Meilik"],"rawDate":"2018-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8296","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8297":{"rfcNumber":"RFC8297","href":"https://httpwg.org/specs/rfc8297.html","title":"An HTTP Status Code for Indicating Hints","authors":["K. Oku"],"rawDate":"2017-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8298":{"rfcNumber":"RFC8298","href":"https://www.rfc-editor.org/rfc/rfc8298","title":"Self-Clocked Rate Adaptation for Multimedia","authors":["I. Johansson","Z. Sarker"],"rawDate":"2017-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8299":{"rfcNumber":"RFC8299","href":"https://www.rfc-editor.org/rfc/rfc8299","title":"YANG Data Model for L3VPN Service Delivery","authors":["Q. Wu, Ed.","S. Litkowski","L. Tomotaki","K. Ogaki"],"rawDate":"2018-01","status":"Proposed Standard","obsoletes":["RFC8049"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8299","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc83":{"aliasOf":"rfc0083"},"rfc830":{"aliasOf":"rfc0830"},"rfc8300":{"rfcNumber":"RFC8300","href":"https://www.rfc-editor.org/rfc/rfc8300","title":"Network Service Header (NSH)","authors":["P. Quinn, Ed.","U. Elzur, Ed.","C. Pignataro, Ed."],"rawDate":"2018-01","status":"Proposed Standard","updatedBy":["RFC9451"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8300","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8301":{"rfcNumber":"RFC8301","href":"https://www.rfc-editor.org/rfc/rfc8301","title":"Cryptographic Algorithm and Key Usage Update to DomainKeys Identified Mail (DKIM)","authors":["S. Kitterman"],"rawDate":"2018-01","status":"Proposed Standard","updates":["RFC6376"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8302":{"rfcNumber":"RFC8302","href":"https://www.rfc-editor.org/rfc/rfc8302","title":"Transparent Interconnection of Lots of Links (TRILL): ARP and Neighbor Discovery (ND) Optimization","authors":["Y. Li","D. Eastlake 3rd","L. Dunbar","R. Perlman","M. Umair"],"rawDate":"2018-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8303":{"rfcNumber":"RFC8303","href":"https://www.rfc-editor.org/rfc/rfc8303","title":"On the Usage of Transport Features Provided by IETF Transport Protocols","authors":["M. Welzl","M. Tuexen","N. Khademi"],"rawDate":"2018-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8303","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8304":{"rfcNumber":"RFC8304","href":"https://www.rfc-editor.org/rfc/rfc8304","title":"Transport Features of the User Datagram Protocol (UDP) and Lightweight UDP (UDP-Lite)","authors":["G. Fairhurst","T. Jones"],"rawDate":"2018-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8304","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8305":{"rfcNumber":"RFC8305","href":"https://www.rfc-editor.org/rfc/rfc8305","title":"Happy Eyeballs Version 2: Better Connectivity Using Concurrency","authors":["D. Schinazi","T. Pauly"],"rawDate":"2017-12","status":"Proposed Standard","obsoletes":["RFC6555"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8306":{"rfcNumber":"RFC8306","href":"https://www.rfc-editor.org/rfc/rfc8306","title":"Extensions to the Path Computation Element Communication Protocol (PCEP) for Point-to-Multipoint Traffic Engineering Label Switched Paths","authors":["Q. Zhao","D. Dhody, Ed.","R. Palleti","D. King"],"rawDate":"2017-11","status":"Proposed Standard","updatedBy":["RFC9353"],"obsoletes":["RFC6006"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8306","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8307":{"rfcNumber":"RFC8307","href":"https://www.rfc-editor.org/rfc/rfc8307","title":"Well-Known URIs for the WebSocket Protocol","authors":["C. Bormann"],"rawDate":"2018-01","status":"Proposed Standard","updates":["RFC6455"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8308":{"rfcNumber":"RFC8308","href":"https://www.rfc-editor.org/rfc/rfc8308","title":"Extension Negotiation in the Secure Shell (SSH) Protocol","authors":["D. Bider"],"rawDate":"2018-03","status":"Proposed Standard","updatedBy":["RFC9519"],"updates":["RFC4251","RFC4252","RFC4253","RFC4254"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8309":{"rfcNumber":"RFC8309","href":"https://www.rfc-editor.org/rfc/rfc8309","title":"Service Models Explained","authors":["Q. Wu","W. Liu","A. Farrel"],"rawDate":"2018-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc831":{"aliasOf":"rfc0831"},"rfc8310":{"rfcNumber":"RFC8310","href":"https://www.rfc-editor.org/rfc/rfc8310","title":"Usage Profiles for DNS over TLS and DNS over DTLS","authors":["S. Dickinson","D. Gillmor","T. Reddy"],"rawDate":"2018-03","status":"Proposed Standard","updates":["RFC7858"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8311":{"rfcNumber":"RFC8311","href":"https://www.rfc-editor.org/rfc/rfc8311","title":"Relaxing Restrictions on Explicit Congestion Notification (ECN) Experimentation","authors":["D. Black"],"rawDate":"2018-01","status":"Proposed Standard","updates":["RFC3168","RFC4341","RFC4342","RFC5622","RFC6679"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8311","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8312":{"rfcNumber":"RFC8312","href":"https://www.rfc-editor.org/rfc/rfc8312","title":"CUBIC for Fast Long-Distance Networks","authors":["I. Rhee","L. Xu","S. Ha","A. Zimmermann","L. Eggert","R. Scheffenegger"],"rawDate":"2018-02","status":"Informational","obsoletedBy":["RFC9438"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8312","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8313":{"rfcNumber":"RFC8313","href":"https://www.rfc-editor.org/rfc/rfc8313","title":"Use of Multicast across Inter-domain Peering Points","authors":["P. Tarapore, Ed.","R. Sayko","G. Shepherd","T. Eckert, Ed.","R. Krishnan"],"rawDate":"2018-01","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8314":{"rfcNumber":"RFC8314","href":"https://www.rfc-editor.org/rfc/rfc8314","title":"Cleartext Considered Obsolete: Use of Transport Layer Security (TLS) for Email Submission and Access","authors":["K. Moore","C. Newman"],"rawDate":"2018-01","status":"Proposed Standard","updatedBy":["RFC8997"],"updates":["RFC1939","RFC2595","RFC3501","RFC5068","RFC6186","RFC6409"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8314","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8315":{"rfcNumber":"RFC8315","href":"https://www.rfc-editor.org/rfc/rfc8315","title":"Cancel-Locks in Netnews Articles","authors":["M. Baeuerle"],"rawDate":"2018-02","status":"Proposed Standard","updates":["RFC5537"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8316":{"rfcNumber":"RFC8316","href":"https://www.rfc-editor.org/rfc/rfc8316","title":"Autonomic Networking Use Case for Distributed Detection of Service Level Agreement (SLA) Violations","authors":["J. Nobre","L. Granville","A. Clemm","A. Gonzalez Prieto"],"rawDate":"2018-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8317":{"rfcNumber":"RFC8317","href":"https://www.rfc-editor.org/rfc/rfc8317","title":"Ethernet-Tree (E-Tree) Support in Ethernet VPN (EVPN) and Provider Backbone Bridging EVPN (PBB-EVPN)","authors":["A. Sajassi, Ed.","S. Salam","J. Drake","J. Uttaro","S. Boutros","J. Rabadan"],"rawDate":"2018-01","status":"Proposed Standard","updates":["RFC7385"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8318":{"rfcNumber":"RFC8318","href":"https://www.rfc-editor.org/rfc/rfc8318","title":"IAB, IESG, and IAOC Selection, Confirmation, and Recall Process: IAOC Advisor for the Nominating Committee","authors":["S. Dawkins"],"rawDate":"2018-01","status":"Best Current Practice","obsoletedBy":["RFC8713"],"updates":["RFC7437"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8319":{"rfcNumber":"RFC8319","href":"https://www.rfc-editor.org/rfc/rfc8319","title":"Support for Adjustable Maximum Router Lifetimes per Link","authors":["S. Krishnan","J. Korhonen","S. Chakrabarti","E. Nordmark","A. Yourtchenko"],"rawDate":"2018-02","status":"Proposed Standard","updates":["RFC4861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc832":{"aliasOf":"rfc0832"},"rfc8320":{"rfcNumber":"RFC8320","href":"https://www.rfc-editor.org/rfc/rfc8320","title":"LDP Extensions to Support Maximally Redundant Trees","authors":["A. Atlas","K. Tiruveedhula","C. Bowers","J. Tantsura","IJ. Wijnands"],"rawDate":"2018-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8321":{"rfcNumber":"RFC8321","href":"https://www.rfc-editor.org/rfc/rfc8321","title":"Alternate-Marking Method for Passive and Hybrid Performance Monitoring","authors":["G. Fioccola, Ed.","A. Capello","M. Cociglio","L. Castaldelli","M. Chen","L. Zheng","G. Mirsky","T. Mizrahi"],"rawDate":"2018-01","status":"Experimental","obsoletedBy":["RFC9341"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8322":{"rfcNumber":"RFC8322","href":"https://www.rfc-editor.org/rfc/rfc8322","title":"Resource-Oriented Lightweight Information Exchange (ROLIE)","authors":["J. Field","S. Banghart","D. Waltermire"],"rawDate":"2018-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8323":{"rfcNumber":"RFC8323","href":"https://www.rfc-editor.org/rfc/rfc8323","title":"CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets","authors":["C. Bormann","S. Lemay","H. Tschofenig","K. Hartke","B. Silverajan","B. Raymor, Ed."],"rawDate":"2018-02","status":"Proposed Standard","updatedBy":["RFC8974"],"updates":["RFC7641","RFC7959"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8324":{"rfcNumber":"RFC8324","href":"https://www.rfc-editor.org/rfc/rfc8324","title":"DNS Privacy, Authorization, Special Uses, Encoding, Characters, Matching, and Root Structure: Time for Another Look?","authors":["J. Klensin"],"rawDate":"2018-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8324","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8325":{"rfcNumber":"RFC8325","href":"https://www.rfc-editor.org/rfc/rfc8325","title":"Mapping Diffserv to IEEE 802.11","authors":["T. Szigeti","J. Henry","F. Baker"],"rawDate":"2018-02","status":"Proposed Standard","updatedBy":["RFC8622"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8325","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8326":{"rfcNumber":"RFC8326","href":"https://www.rfc-editor.org/rfc/rfc8326","title":"Graceful BGP Session Shutdown","authors":["P. Francois, Ed.","B. Decraene, Ed.","C. Pelsser","K. Patel","C. Filsfils"],"rawDate":"2018-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8326","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8327":{"rfcNumber":"RFC8327","href":"https://www.rfc-editor.org/rfc/rfc8327","title":"Mitigating the Negative Impact of Maintenance through BGP Session Culling","authors":["W. Hargrave","M. Griswold","J. Snijders","N. Hilliard"],"rawDate":"2018-03","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8327","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8328":{"rfcNumber":"RFC8328","href":"https://www.rfc-editor.org/rfc/rfc8328","title":"Policy-Based Management Framework for the Simplified Use of Policy Abstractions (SUPA)","authors":["W. Liu","C. Xie","J. Strassner","G. Karagiannis","M. Klyus","J. Bi","Y. Cheng","D. Zhang"],"rawDate":"2018-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8329":{"rfcNumber":"RFC8329","href":"https://www.rfc-editor.org/rfc/rfc8329","title":"Framework for Interface to Network Security Functions","authors":["D. Lopez","E. Lopez","L. Dunbar","J. Strassner","R. Kumar"],"rawDate":"2018-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc833":{"aliasOf":"rfc0833"},"rfc8330":{"rfcNumber":"RFC8330","href":"https://www.rfc-editor.org/rfc/rfc8330","title":"OSPF Traffic Engineering (OSPF-TE) Link Availability Extension for Links with Variable Discrete Bandwidth","authors":["H. Long","M. Ye","G. Mirsky","A. D'Alessandro","H. Shah"],"rawDate":"2018-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8331":{"rfcNumber":"RFC8331","href":"https://www.rfc-editor.org/rfc/rfc8331","title":"RTP Payload for Society of Motion Picture and Television Engineers (SMPTE) ST 291-1 Ancillary Data","authors":["T. Edwards"],"rawDate":"2018-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8331","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8332":{"rfcNumber":"RFC8332","href":"https://www.rfc-editor.org/rfc/rfc8332","title":"Use of RSA Keys with SHA-256 and SHA-512 in the Secure Shell (SSH) Protocol","authors":["D. Bider"],"rawDate":"2018-03","status":"Proposed Standard","updates":["RFC4252","RFC4253"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8333":{"rfcNumber":"RFC8333","href":"https://www.rfc-editor.org/rfc/rfc8333","title":"Micro-loop Prevention by Introducing a Local Convergence Delay","authors":["S. Litkowski","B. Decraene","C. Filsfils","P. Francois"],"rawDate":"2018-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8334":{"rfcNumber":"RFC8334","href":"https://www.rfc-editor.org/rfc/rfc8334","title":"Launch Phase Mapping for the Extensible Provisioning Protocol (EPP)","authors":["J. Gould","W. Tan","G. Brown"],"rawDate":"2018-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8335":{"rfcNumber":"RFC8335","href":"https://www.rfc-editor.org/rfc/rfc8335","title":"PROBE: A Utility for Probing Interfaces","authors":["R. Bonica","R. Thomas","J. Linkova","C. Lenart","M. Boucadair"],"rawDate":"2018-02","status":"Proposed Standard","updates":["RFC4884"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8336":{"rfcNumber":"RFC8336","href":"https://httpwg.org/specs/rfc8336.html","title":"The ORIGIN HTTP/2 Frame","authors":["M. Nottingham","E. Nygren"],"rawDate":"2018-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8336","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8337":{"rfcNumber":"RFC8337","href":"https://www.rfc-editor.org/rfc/rfc8337","title":"Model-Based Metrics for Bulk Transport Capacity","authors":["M. Mathis","A. Morton"],"rawDate":"2018-03","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8338":{"rfcNumber":"RFC8338","href":"https://www.rfc-editor.org/rfc/rfc8338","title":"Signaling Root-Initiated Point-to-Multipoint Pseudowire Using LDP","authors":["S. Boutros, Ed.","S. Sivabalan, Ed."],"rawDate":"2018-03","status":"Proposed Standard","updates":["RFC7385"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8339":{"rfcNumber":"RFC8339","href":"https://www.rfc-editor.org/rfc/rfc8339","title":"Definition of P2MP PW TLV for Label Switched Path (LSP) Ping Mechanisms","authors":["P. Jain, Ed.","S. Boutros","S. Aldrin"],"rawDate":"2018-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc834":{"aliasOf":"rfc0834"},"rfc8340":{"rfcNumber":"RFC8340","href":"https://www.rfc-editor.org/rfc/rfc8340","title":"YANG Tree Diagrams","authors":["M. Bjorklund","L. Berger, Ed."],"rawDate":"2018-03","status":"Best Current Practice","updatedBy":["RFC8791"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8341":{"rfcNumber":"RFC8341","href":"https://www.rfc-editor.org/rfc/rfc8341","title":"Network Configuration Access Control Model","authors":["A. Bierman","M. Bjorklund"],"rawDate":"2018-03","status":"Internet Standard","obsoletes":["RFC6536"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8341","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8342":{"rfcNumber":"RFC8342","href":"https://www.rfc-editor.org/rfc/rfc8342","title":"Network Management Datastore Architecture (NMDA)","authors":["M. Bjorklund","J. Schoenwaelder","P. Shafer","K. Watsen","R. Wilton"],"rawDate":"2018-03","status":"Proposed Standard","updates":["RFC7950"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8342","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8343":{"rfcNumber":"RFC8343","href":"https://www.rfc-editor.org/rfc/rfc8343","title":"A YANG Data Model for Interface Management","authors":["M. Bjorklund"],"rawDate":"2018-03","status":"Proposed Standard","obsoletes":["RFC7223"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8344":{"rfcNumber":"RFC8344","href":"https://www.rfc-editor.org/rfc/rfc8344","title":"A YANG Data Model for IP Management","authors":["M. Bjorklund"],"rawDate":"2018-03","status":"Proposed Standard","obsoletes":["RFC7277"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8345":{"rfcNumber":"RFC8345","href":"https://www.rfc-editor.org/rfc/rfc8345","title":"A YANG Data Model for Network Topologies","authors":["A. Clemm","J. Medved","R. Varga","N. Bahadur","H. Ananthakrishnan","X. Liu"],"rawDate":"2018-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8345","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8346":{"rfcNumber":"RFC8346","href":"https://www.rfc-editor.org/rfc/rfc8346","title":"A YANG Data Model for Layer 3 Topologies","authors":["A. Clemm","J. Medved","R. Varga","X. Liu","H. Ananthakrishnan","N. Bahadur"],"rawDate":"2018-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8347":{"rfcNumber":"RFC8347","href":"https://www.rfc-editor.org/rfc/rfc8347","title":"A YANG Data Model for the Virtual Router Redundancy Protocol (VRRP)","authors":["X. Liu, Ed.","A. Kyparlis","R. Parikh","A. Lindem","M. Zhang"],"rawDate":"2018-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8348":{"rfcNumber":"RFC8348","href":"https://www.rfc-editor.org/rfc/rfc8348","title":"A YANG Data Model for Hardware Management","authors":["A. Bierman","M. Bjorklund","J. Dong","D. Romascanu"],"rawDate":"2018-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8349":{"rfcNumber":"RFC8349","href":"https://www.rfc-editor.org/rfc/rfc8349","title":"A YANG Data Model for Routing Management (NMDA Version)","authors":["L. Lhotka","A. Lindem","Y. Qu"],"rawDate":"2018-03","status":"Proposed Standard","obsoletes":["RFC8022"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8349","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc835":{"aliasOf":"rfc0835"},"rfc8350":{"rfcNumber":"RFC8350","href":"https://www.rfc-editor.org/rfc/rfc8350","title":"Alternate Tunnel Encapsulation for Data Frames in Control and Provisioning of Wireless Access Points (CAPWAP)","authors":["R. Zhang","R. Pazhyannur","S. Gundavelli","Z. Cao","H. Deng","Z. Du"],"rawDate":"2018-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8351":{"rfcNumber":"RFC8351","href":"https://www.rfc-editor.org/rfc/rfc8351","title":"The PKCS #8 EncryptedPrivateKeyInfo Media Type","authors":["S. Leonard"],"rawDate":"2018-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8352":{"rfcNumber":"RFC8352","href":"https://www.rfc-editor.org/rfc/rfc8352","title":"Energy-Efficient Features of Internet of Things Protocols","authors":["C. Gomez","M. Kovatsch","H. Tian","Z. Cao, Ed."],"rawDate":"2018-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8353":{"rfcNumber":"RFC8353","href":"https://www.rfc-editor.org/rfc/rfc8353","title":"Generic Security Service API Version 2: Java Bindings Update","authors":["M. Upadhyay","S. Malkani","W. Wang"],"rawDate":"2018-05","status":"Proposed Standard","obsoletes":["RFC5653"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8354":{"rfcNumber":"RFC8354","href":"https://www.rfc-editor.org/rfc/rfc8354","title":"Use Cases for IPv6 Source Packet Routing in Networking (SPRING)","authors":["J. Brzozowski","J. Leddy","C. Filsfils","R. Maglione, Ed.","M. Townsley"],"rawDate":"2018-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8355":{"rfcNumber":"RFC8355","href":"https://www.rfc-editor.org/rfc/rfc8355","title":"Resiliency Use Cases in Source Packet Routing in Networking (SPRING) Networks","authors":["C. Filsfils, Ed.","S. Previdi, Ed.","B. Decraene","R. Shakir"],"rawDate":"2018-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8355","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8356":{"rfcNumber":"RFC8356","href":"https://www.rfc-editor.org/rfc/rfc8356","title":"Experimental Codepoint Allocation for the Path Computation Element Communication Protocol (PCEP)","authors":["D. Dhody","D. King","A. Farrel"],"rawDate":"2018-03","status":"Proposed Standard","updates":["RFC5440"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8357":{"rfcNumber":"RFC8357","href":"https://www.rfc-editor.org/rfc/rfc8357","title":"Generalized UDP Source Port for DHCP Relay","authors":["N. Shen","E. Chen"],"rawDate":"2018-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8357","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8358":{"rfcNumber":"RFC8358","href":"https://www.rfc-editor.org/rfc/rfc8358","title":"Update to Digital Signatures on Internet-Draft Documents","authors":["R. Housley"],"rawDate":"2018-03","status":"Informational","updates":["RFC5485"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8358","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8359":{"rfcNumber":"RFC8359","href":"https://www.rfc-editor.org/rfc/rfc8359","title":"Network-Assigned Upstream Label","authors":["X. Zhang, Ed.","V. Beeram, Ed.","I. Bryskin","D. Ceccarelli","O. Gonzalez de Dios"],"rawDate":"2018-03","status":"Proposed Standard","updates":["RFC3471","RFC3473","RFC6205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc836":{"aliasOf":"rfc0836"},"rfc8360":{"rfcNumber":"RFC8360","href":"https://www.rfc-editor.org/rfc/rfc8360","title":"Resource Public Key Infrastructure (RPKI) Validation Reconsidered","authors":["G. Huston","G. Michaelson","C. Martinez","T. Bruijnzeels","A. Newton","D. Shaw"],"rawDate":"2018-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8360","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8361":{"rfcNumber":"RFC8361","href":"https://www.rfc-editor.org/rfc/rfc8361","title":"Transparent Interconnection of Lots of Links (TRILL): Centralized Replication for Active-Active Broadcast, Unknown Unicast, and Multicast (BUM) Traffic","authors":["W. Hao","Y. Li","M. Durrani","S. Gupta","A. Qu"],"rawDate":"2018-04","status":"Proposed Standard","updates":["RFC6325"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8362":{"rfcNumber":"RFC8362","href":"https://www.rfc-editor.org/rfc/rfc8362","title":"OSPFv3 Link State Advertisement (LSA) Extensibility","authors":["A. Lindem","A. Roy","D. Goethals","V. Reddy Vallem","F. Baker"],"rawDate":"2018-04","status":"Proposed Standard","updates":["RFC5340","RFC5838"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8363":{"rfcNumber":"RFC8363","href":"https://www.rfc-editor.org/rfc/rfc8363","title":"GMPLS OSPF-TE Extensions in Support of Flexi-Grid Dense Wavelength Division Multiplexing (DWDM) Networks","authors":["X. Zhang","H. Zheng","R. Casellas","O. Gonzalez de Dios","D. Ceccarelli"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8364":{"rfcNumber":"RFC8364","href":"https://www.rfc-editor.org/rfc/rfc8364","title":"PIM Flooding Mechanism (PFM) and Source Discovery (SD)","authors":["IJ. Wijnands","S. Venaas","M. Brig","A. Jonasson"],"rawDate":"2018-03","status":"Experimental","updatedBy":["RFC8736","RFC9436"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8365":{"rfcNumber":"RFC8365","href":"https://www.rfc-editor.org/rfc/rfc8365","title":"A Network Virtualization Overlay Solution Using Ethernet VPN (EVPN)","authors":["A. Sajassi, Ed.","J. Drake, Ed.","N. Bitar","R. Shekhar","J. Uttaro","W. Henderickx"],"rawDate":"2018-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8365","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8366":{"rfcNumber":"RFC8366","href":"https://www.rfc-editor.org/rfc/rfc8366","title":"A Voucher Artifact for Bootstrapping Protocols","authors":["K. Watsen","M. Richardson","M. Pritikin","T. Eckert"],"rawDate":"2018-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8366","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8367":{"rfcNumber":"RFC8367","href":"https://www.rfc-editor.org/rfc/rfc8367","title":"Wrongful Termination of Internet Protocol (IP) Packets","authors":["T. Mizrahi","J. Yallouz"],"rawDate":"2018-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8368":{"rfcNumber":"RFC8368","href":"https://www.rfc-editor.org/rfc/rfc8368","title":"Using an Autonomic Control Plane for Stable Connectivity of Network Operations, Administration, and Maintenance (OAM)","authors":["T. Eckert, Ed.","M. Behringer"],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8369":{"rfcNumber":"RFC8369","href":"https://www.rfc-editor.org/rfc/rfc8369","title":"Internationalizing IPv6 Using 128-Bit Unicode","authors":["H. Kaplan"],"rawDate":"2018-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8369","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc837":{"aliasOf":"rfc0837"},"rfc8370":{"rfcNumber":"RFC8370","href":"https://www.rfc-editor.org/rfc/rfc8370","title":"Techniques to Improve the Scalability of RSVP-TE Deployments","authors":["V. Beeram, Ed.","I. Minei","R. Shakir","D. Pacella","T. Saad"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8371":{"rfcNumber":"RFC8371","href":"https://www.rfc-editor.org/rfc/rfc8371","title":"Mobile Node Identifier Types for MIPv6","authors":["C. Perkins","V. Devarapalli"],"rawDate":"2018-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8372":{"rfcNumber":"RFC8372","href":"https://www.rfc-editor.org/rfc/rfc8372","title":"MPLS Flow Identification Considerations","authors":["S. Bryant","C. Pignataro","M. Chen","Z. Li","G. Mirsky"],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8373":{"rfcNumber":"RFC8373","href":"https://www.rfc-editor.org/rfc/rfc8373","title":"Negotiating Human Language in Real-Time Communications","authors":["R. Gellens"],"rawDate":"2018-05","status":"Proposed Standard","updatedBy":["RFC8865"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8373","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8374":{"rfcNumber":"RFC8374","href":"https://www.rfc-editor.org/rfc/rfc8374","title":"BGPsec Design Choices and Summary of Supporting Discussions","authors":["K. Sriram, Ed."],"rawDate":"2018-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8375":{"rfcNumber":"RFC8375","href":"https://www.rfc-editor.org/rfc/rfc8375","title":"Special-Use Domain 'home.arpa.'","authors":["P. Pfister","T. Lemon"],"rawDate":"2018-05","status":"Proposed Standard","updates":["RFC7788"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8375","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8376":{"rfcNumber":"RFC8376","href":"https://www.rfc-editor.org/rfc/rfc8376","title":"Low-Power Wide Area Network (LPWAN) Overview","authors":["S. Farrell, Ed."],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8377":{"rfcNumber":"RFC8377","href":"https://www.rfc-editor.org/rfc/rfc8377","title":"Transparent Interconnection of Lots of Links (TRILL): Multi-Topology","authors":["D. Eastlake 3rd","M. Zhang","A. Banerjee"],"rawDate":"2018-07","status":"Proposed Standard","updates":["RFC6325","RFC7177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8378":{"rfcNumber":"RFC8378","href":"https://www.rfc-editor.org/rfc/rfc8378","title":"Signal-Free Locator/ID Separation Protocol (LISP) Multicast","authors":["V. Moreno","D. Farinacci"],"rawDate":"2018-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8379":{"rfcNumber":"RFC8379","href":"https://www.rfc-editor.org/rfc/rfc8379","title":"OSPF Graceful Link Shutdown","authors":["S. Hegde","P. Sarkar","H. Gredler","M. Nanduri","L. Jalil"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc838":{"aliasOf":"rfc0838"},"rfc8380":{"rfcNumber":"RFC8380","href":"https://www.rfc-editor.org/rfc/rfc8380","title":"Directory-Assisted Transparent Interconnection of Lots of Links (TRILL) Encapsulation","authors":["L. Dunbar","D. Eastlake 3rd","R. Perlman"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8381":{"rfcNumber":"RFC8381","href":"https://www.rfc-editor.org/rfc/rfc8381","title":"Transparent Interconnection of Lots of Links (TRILL): Vendor-Specific RBridge Channel Protocol","authors":["D. Eastlake 3rd","Y. Li","W. Hao","A. Banerjee"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8382":{"rfcNumber":"RFC8382","href":"https://www.rfc-editor.org/rfc/rfc8382","title":"Shared Bottleneck Detection for Coupled Congestion Control for RTP Media","authors":["D. Hayes, Ed.","S. Ferlin","M. Welzl","K. Hiorth"],"rawDate":"2018-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8383":{"rfcNumber":"RFC8383","href":"https://www.rfc-editor.org/rfc/rfc8383","title":"Transparent Interconnection of Lots of Links (TRILL): Address Flush Message","authors":["W. Hao","D. Eastlake 3rd","Y. Li","M. Umair"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8384":{"rfcNumber":"RFC8384","href":"https://www.rfc-editor.org/rfc/rfc8384","title":"Transparent Interconnection of Lots of Links (TRILL) Smart Endnodes","authors":["R. Perlman","F. Hu","D. Eastlake 3rd","T. Liao"],"rawDate":"2018-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8385":{"rfcNumber":"RFC8385","href":"https://www.rfc-editor.org/rfc/rfc8385","title":"Transparent Interconnection of Lots of Links (TRILL) Transparent Transport over MPLS","authors":["M. Umair","S. Kingston Smiler","D. Eastlake 3rd","L. Yong"],"rawDate":"2018-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8386":{"rfcNumber":"RFC8386","href":"https://www.rfc-editor.org/rfc/rfc8386","title":"Privacy Considerations for Protocols Relying on IP Broadcast or Multicast","authors":["R. Winter","M. Faath","F. Weisshaar"],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8387":{"rfcNumber":"RFC8387","href":"https://www.rfc-editor.org/rfc/rfc8387","title":"Practical Considerations and Implementation Experiences in Securing Smart Object Networks","authors":["M. Sethi","J. Arkko","A. Keranen","H. Back"],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8388":{"rfcNumber":"RFC8388","href":"https://www.rfc-editor.org/rfc/rfc8388","title":"Usage and Applicability of BGP MPLS-Based Ethernet VPN","authors":["J. Rabadan, Ed.","S. Palislamovic","W. Henderickx","A. Sajassi","J. Uttaro"],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8389":{"rfcNumber":"RFC8389","href":"https://www.rfc-editor.org/rfc/rfc8389","title":"Definitions of Managed Objects for Mapping of Address and Port with Encapsulation (MAP-E)","authors":["Y. Fu","S. Jiang","B. Liu","J. Dong","Y. Chen"],"rawDate":"2018-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc839":{"aliasOf":"rfc0839"},"rfc8390":{"rfcNumber":"RFC8390","href":"https://www.rfc-editor.org/rfc/rfc8390","title":"RSVP-TE Path Diversity Using Exclude Route","authors":["Z. Ali, Ed.","G. Swallow, Ed.","F. Zhang, Ed.","D. Beller, Ed."],"rawDate":"2018-07","status":"Proposed Standard","updates":["RFC4874"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8391":{"rfcNumber":"RFC8391","href":"https://www.rfc-editor.org/rfc/rfc8391","title":"XMSS: eXtended Merkle Signature Scheme","authors":["A. Huelsing","D. Butin","S. Gazdag","J. Rijneveld","A. Mohaisen"],"rawDate":"2018-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8391","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8392":{"rfcNumber":"RFC8392","href":"https://www.rfc-editor.org/rfc/rfc8392","title":"CBOR Web Token (CWT)","authors":["M. Jones","E. Wahlstroem","S. Erdtman","H. Tschofenig"],"rawDate":"2018-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8392","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8393":{"rfcNumber":"RFC8393","href":"https://www.rfc-editor.org/rfc/rfc8393","title":"Operating the Network Service Header (NSH) with Next Protocol \"None\"","authors":["A. Farrel","J. Drake"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8394":{"rfcNumber":"RFC8394","href":"https://www.rfc-editor.org/rfc/rfc8394","title":"Split Network Virtualization Edge (Split-NVE) Control-Plane Requirements","authors":["Y. Li","D. Eastlake 3rd","L. Kreeger","T. Narten","D. Black"],"rawDate":"2018-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8395":{"rfcNumber":"RFC8395","href":"https://www.rfc-editor.org/rfc/rfc8395","title":"Extensions to BGP-Signaled Pseudowires to Support Flow-Aware Transport Labels","authors":["K. Patel","S. Boutros","J. Liste","B. Wen","J. Rabadan"],"rawDate":"2018-06","status":"Proposed Standard","updates":["RFC4761"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8396":{"rfcNumber":"RFC8396","href":"https://www.rfc-editor.org/rfc/rfc8396","title":"Managing, Ordering, Distributing, Exposing, and Registering Telephone Numbers (MODERN): Problem Statement, Use Cases, and Framework","authors":["J. Peterson","T. McGarry"],"rawDate":"2018-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8397":{"rfcNumber":"RFC8397","href":"https://www.rfc-editor.org/rfc/rfc8397","title":"Transparent Interconnection of Lots of Links (TRILL) Multilevel Using Unique Nicknames","authors":["M. Zhang","D. Eastlake 3rd","R. Perlman","H. Zhai","D. Liu"],"rawDate":"2018-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8398":{"rfcNumber":"RFC8398","href":"https://www.rfc-editor.org/rfc/rfc8398","title":"Internationalized Email Addresses in X.509 Certificates","authors":["A. Melnikov, Ed.","W. Chuang, Ed."],"rawDate":"2018-05","status":"Proposed Standard","updates":["RFC5280"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8398","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8399":{"rfcNumber":"RFC8399","href":"https://www.rfc-editor.org/rfc/rfc8399","title":"Internationalization Updates to RFC 5280","authors":["R. Housley"],"rawDate":"2018-05","status":"Proposed Standard","updates":["RFC5280"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc84":{"aliasOf":"rfc0084"},"rfc840":{"aliasOf":"rfc0840"},"rfc8400":{"rfcNumber":"RFC8400","href":"https://www.rfc-editor.org/rfc/rfc8400","title":"Extensions to RSVP-TE for Label Switched Path (LSP) Egress Protection","authors":["H. Chen","A. Liu","T. Saad","F. Xu","L. Huang"],"rawDate":"2018-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8400","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8401":{"rfcNumber":"RFC8401","href":"https://www.rfc-editor.org/rfc/rfc8401","title":"Bit Index Explicit Replication (BIER) Support via IS-IS","authors":["L. Ginsberg, Ed.","T. Przygienda","S. Aldrin","Z. Zhang"],"rawDate":"2018-06","status":"Proposed Standard","updatedBy":["RFC9272"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8401","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8402":{"rfcNumber":"RFC8402","href":"https://www.rfc-editor.org/rfc/rfc8402","title":"Segment Routing Architecture","authors":["C. Filsfils, Ed.","S. Previdi, Ed.","L. Ginsberg","B. Decraene","S. Litkowski","R. Shakir"],"rawDate":"2018-07","status":"Proposed Standard","updatedBy":["RFC9256"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8402","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8403":{"rfcNumber":"RFC8403","href":"https://www.rfc-editor.org/rfc/rfc8403","title":"A Scalable and Topology-Aware MPLS Data-Plane Monitoring System","authors":["R. Geib, Ed.","C. Filsfils","C. Pignataro, Ed.","N. Kumar"],"rawDate":"2018-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8404":{"rfcNumber":"RFC8404","href":"https://www.rfc-editor.org/rfc/rfc8404","title":"Effects of Pervasive Encryption on Operators","authors":["K. Moriarty, Ed.","A. Morton, Ed."],"rawDate":"2018-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8405":{"rfcNumber":"RFC8405","href":"https://www.rfc-editor.org/rfc/rfc8405","title":"Shortest Path First (SPF) Back-Off Delay Algorithm for Link-State IGPs","authors":["B. Decraene","S. Litkowski","H. Gredler","A. Lindem","P. Francois","C. Bowers"],"rawDate":"2018-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8406":{"rfcNumber":"RFC8406","href":"https://www.rfc-editor.org/rfc/rfc8406","title":"Taxonomy of Coding Techniques for Efficient Network Communications","authors":["B. Adamson","C. Adjih","J. Bilbao","V. Firoiu","F. Fitzek","S. Ghanem","E. Lochin","A. Masucci","M-J. Montpetit","M. Pedersen","G. Peralta","V. Roca, Ed.","P. Saxena","S. Sivakumar"],"rawDate":"2018-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8407":{"rfcNumber":"RFC8407","href":"https://www.rfc-editor.org/rfc/rfc8407","title":"Guidelines for Authors and Reviewers of Documents Containing YANG Data Models","authors":["A. Bierman"],"rawDate":"2018-10","status":"Best Current Practice","updatedBy":["RFC8819"],"obsoletes":["RFC6087"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8407","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8408":{"rfcNumber":"RFC8408","href":"https://www.rfc-editor.org/rfc/rfc8408","title":"Conveying Path Setup Type in PCE Communication Protocol (PCEP) Messages","authors":["S. Sivabalan","J. Tantsura","I. Minei","R. Varga","J. Hardwick"],"rawDate":"2018-07","status":"Proposed Standard","updatedBy":["RFC8664"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8409":{"rfcNumber":"RFC8409","href":"https://www.rfc-editor.org/rfc/rfc8409","title":"The Entity Category Security Assertion Markup Language (SAML) Attribute Types","authors":["I. Young, Ed.","L. Johansson","S. Cantor"],"rawDate":"2018-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc841":{"aliasOf":"rfc0841"},"rfc8410":{"rfcNumber":"RFC8410","href":"https://www.rfc-editor.org/rfc/rfc8410","title":"Algorithm Identifiers for Ed25519, Ed448, X25519, and X448 for Use in the Internet X.509 Public Key Infrastructure","authors":["S. Josefsson","J. Schaad"],"rawDate":"2018-08","status":"Proposed Standard","updatedBy":["RFC9295"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8410","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8411":{"rfcNumber":"RFC8411","href":"https://www.rfc-editor.org/rfc/rfc8411","title":"IANA Registration for the Cryptographic Algorithm Object Identifier Range","authors":["J. Schaad","R. Andrews"],"rawDate":"2018-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8412":{"rfcNumber":"RFC8412","href":"https://www.rfc-editor.org/rfc/rfc8412","title":"Software Inventory Message and Attributes (SWIMA) for PA-TNC","authors":["C. Schmidt","D. Haynes","C. Coffin","D. Waltermire","J. Fitzgerald-McKay"],"rawDate":"2018-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8413":{"rfcNumber":"RFC8413","href":"https://www.rfc-editor.org/rfc/rfc8413","title":"Framework for Scheduled Use of Resources","authors":["Y. Zhuang","Q. Wu","H. Chen","A. Farrel"],"rawDate":"2018-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8414":{"rfcNumber":"RFC8414","href":"https://www.rfc-editor.org/rfc/rfc8414","title":"OAuth 2.0 Authorization Server Metadata","authors":["M. Jones","N. Sakimura","J. Bradley"],"rawDate":"2018-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8414","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8415":{"rfcNumber":"RFC8415","href":"https://www.rfc-editor.org/rfc/rfc8415","title":"Dynamic Host Configuration Protocol for IPv6 (DHCPv6)","authors":["T. Mrugalski","M. Siodelski","B. Volz","A. Yourtchenko","M. Richardson","S. Jiang","T. Lemon","T. Winters"],"rawDate":"2018-11","status":"Proposed Standard","obsoletes":["RFC3315","RFC3633","RFC3736","RFC4242","RFC7083","RFC7283","RFC7550"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8415","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8416":{"rfcNumber":"RFC8416","href":"https://www.rfc-editor.org/rfc/rfc8416","title":"Simplified Local Internet Number Resource Management with the RPKI (SLURM)","authors":["D. Ma","D. Mandelberg","T. Bruijnzeels"],"rawDate":"2018-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8416","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8417":{"rfcNumber":"RFC8417","href":"https://www.rfc-editor.org/rfc/rfc8417","title":"Security Event Token (SET)","authors":["P. Hunt, Ed.","M. Jones","W. Denniss","M. Ansari"],"rawDate":"2018-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8417","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8418":{"rfcNumber":"RFC8418","href":"https://www.rfc-editor.org/rfc/rfc8418","title":"Use of the Elliptic Curve Diffie-Hellman Key Agreement Algorithm with X25519 and X448 in the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2018-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8419":{"rfcNumber":"RFC8419","href":"https://www.rfc-editor.org/rfc/rfc8419","title":"Use of Edwards-Curve Digital Signature Algorithm (EdDSA) Signatures in the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2018-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8419","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc842":{"aliasOf":"rfc0842"},"rfc8420":{"rfcNumber":"RFC8420","href":"https://www.rfc-editor.org/rfc/rfc8420","title":"Using the Edwards-Curve Digital Signature Algorithm (EdDSA) in the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["Y. Nir"],"rawDate":"2018-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8421":{"rfcNumber":"RFC8421","href":"https://www.rfc-editor.org/rfc/rfc8421","title":"Guidelines for Multihomed and IPv4/IPv6 Dual-Stack Interactive Connectivity Establishment (ICE)","authors":["P. Martinsen","T. Reddy","P. Patil"],"rawDate":"2018-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8422":{"rfcNumber":"RFC8422","href":"https://www.rfc-editor.org/rfc/rfc8422","title":"Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS) Versions 1.2 and Earlier","authors":["Y. Nir","S. Josefsson","M. Pegourie-Gonnard"],"rawDate":"2018-08","status":"Proposed Standard","updatedBy":["RFC8996"],"obsoletes":["RFC4492"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8422","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8423":{"rfcNumber":"RFC8423","href":"https://www.rfc-editor.org/rfc/rfc8423","title":"Reclassification of Suite B Documents to Historic Status","authors":["R. Housley","L. Zieglar"],"rawDate":"2018-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8423","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8424":{"rfcNumber":"RFC8424","href":"https://www.rfc-editor.org/rfc/rfc8424","title":"Extensions to RSVP-TE for Label Switched Path (LSP) Ingress Fast Reroute (FRR) Protection","authors":["H. Chen, Ed.","R. Torvi, Ed."],"rawDate":"2018-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8425":{"rfcNumber":"RFC8425","href":"https://www.rfc-editor.org/rfc/rfc8425","title":"IANA Considerations for IPv6 Neighbor Discovery Prefix Information Option Flags","authors":["O. Troan"],"rawDate":"2018-07","status":"Proposed Standard","updates":["RFC4861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8426":{"rfcNumber":"RFC8426","href":"https://www.rfc-editor.org/rfc/rfc8426","title":"Recommendations for RSVP-TE and Segment Routing (SR) Label Switched Path (LSP) Coexistence","authors":["H. Sitaraman, Ed.","V. Beeram","I. Minei","S. Sivabalan"],"rawDate":"2018-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8427":{"rfcNumber":"RFC8427","href":"https://www.rfc-editor.org/rfc/rfc8427","title":"Representing DNS Messages in JSON","authors":["P. Hoffman"],"rawDate":"2018-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8427","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8428":{"rfcNumber":"RFC8428","href":"https://www.rfc-editor.org/rfc/rfc8428","title":"Sensor Measurement Lists (SenML)","authors":["C. Jennings","Z. Shelby","J. Arkko","A. Keranen","C. Bormann"],"rawDate":"2018-08","status":"Proposed Standard","updatedBy":["RFC9100"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8428","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8429":{"rfcNumber":"RFC8429","href":"https://www.rfc-editor.org/rfc/rfc8429","title":"Deprecate Triple-DES (3DES) and RC4 in Kerberos","authors":["B. Kaduk","M. Short"],"rawDate":"2018-10","status":"Best Current Practice","updates":["RFC3961","RFC4120"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc843":{"aliasOf":"rfc0843"},"rfc8430":{"rfcNumber":"RFC8430","href":"https://www.rfc-editor.org/rfc/rfc8430","title":"RIB Information Model","authors":["N. Bahadur, Ed.","S. Kini, Ed.","J. Medved"],"rawDate":"2018-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8431":{"rfcNumber":"RFC8431","href":"https://www.rfc-editor.org/rfc/rfc8431","title":"A YANG Data Model for the Routing Information Base (RIB)","authors":["L. Wang","M. Chen","A. Dass","H. Ananthakrishnan","S. Kini","N. Bahadur"],"rawDate":"2018-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8431","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8432":{"rfcNumber":"RFC8432","href":"https://www.rfc-editor.org/rfc/rfc8432","title":"A Framework for Management and Control of Microwave and Millimeter Wave Interface Parameters","authors":["J. Ahlberg, Ed.","M. Ye, Ed.","X. Li","LM. Contreras","CJ. Bernardos"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8433":{"rfcNumber":"RFC8433","href":"https://www.rfc-editor.org/rfc/rfc8433","title":"A Simpler Method for Resolving Alert-Info URNs","authors":["D. Worley"],"rawDate":"2018-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8434":{"rfcNumber":"RFC8434","href":"https://www.rfc-editor.org/rfc/rfc8434","title":"Requirements for Parallel NFS (pNFS) Layout Types","authors":["T. Haynes"],"rawDate":"2018-08","status":"Proposed Standard","updates":["RFC5661"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8435":{"rfcNumber":"RFC8435","href":"https://www.rfc-editor.org/rfc/rfc8435","title":"Parallel NFS (pNFS) Flexible File Layout","authors":["B. Halevy","T. Haynes"],"rawDate":"2018-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8436":{"rfcNumber":"RFC8436","href":"https://www.rfc-editor.org/rfc/rfc8436","title":"Update to IANA Registration Procedures for Pool 3 Values in the Differentiated Services Field Codepoints (DSCP) Registry","authors":["G. Fairhurst"],"rawDate":"2018-08","status":"Proposed Standard","updates":["RFC2474"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8437":{"rfcNumber":"RFC8437","href":"https://www.rfc-editor.org/rfc/rfc8437","title":"IMAP UNAUTHENTICATE Extension for Connection Reuse","authors":["C. Newman"],"rawDate":"2018-08","status":"Proposed Standard","updates":["RFC3501"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8438":{"rfcNumber":"RFC8438","href":"https://www.rfc-editor.org/rfc/rfc8438","title":"IMAP Extension for STATUS=SIZE","authors":["S. Bosch"],"rawDate":"2018-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8439":{"rfcNumber":"RFC8439","href":"https://www.rfc-editor.org/rfc/rfc8439","title":"ChaCha20 and Poly1305 for IETF Protocols","authors":["Y. Nir","A. Langley"],"rawDate":"2018-06","status":"Informational","obsoletes":["RFC7539"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8439","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc844":{"aliasOf":"rfc0844"},"rfc8440":{"rfcNumber":"RFC8440","href":"https://www.rfc-editor.org/rfc/rfc8440","title":"IMAP4 Extension for Returning MYRIGHTS Information in Extended LIST","authors":["K. Murchison","B. Gondwana"],"rawDate":"2018-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8441":{"rfcNumber":"RFC8441","href":"https://httpwg.org/specs/rfc8441.html","title":"Bootstrapping WebSockets with HTTP/2","authors":["P. McManus"],"rawDate":"2018-09","status":"Proposed Standard","updates":["RFC6455"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8441","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8442":{"rfcNumber":"RFC8442","href":"https://www.rfc-editor.org/rfc/rfc8442","title":"ECDHE_PSK with AES-GCM and AES-CCM Cipher Suites for TLS 1.2 and DTLS 1.2","authors":["J. Mattsson","D. Migault"],"rawDate":"2018-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8443":{"rfcNumber":"RFC8443","href":"https://www.rfc-editor.org/rfc/rfc8443","title":"Personal Assertion Token (PASSporT) Extension for Resource Priority Authorization","authors":["R. Singh","M. Dolly","S. Das","A. Nguyen"],"rawDate":"2018-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8444":{"rfcNumber":"RFC8444","href":"https://www.rfc-editor.org/rfc/rfc8444","title":"OSPFv2 Extensions for Bit Index Explicit Replication (BIER)","authors":["P. Psenak, Ed.","N. Kumar","IJ. Wijnands","A. Dolganow","T. Przygienda","J. Zhang","S. Aldrin"],"rawDate":"2018-11","status":"Proposed Standard","updatedBy":["RFC9272"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8445":{"rfcNumber":"RFC8445","href":"https://www.rfc-editor.org/rfc/rfc8445","title":"Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal","authors":["A. Keranen","C. Holmberg","J. Rosenberg"],"rawDate":"2018-07","status":"Proposed Standard","updatedBy":["RFC8863"],"obsoletes":["RFC5245"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8445","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8446":{"rfcNumber":"RFC8446","href":"https://www.rfc-editor.org/rfc/rfc8446","title":"The Transport Layer Security (TLS) Protocol Version 1.3","authors":["E. Rescorla"],"rawDate":"2018-08","status":"Proposed Standard","updates":["RFC5705","RFC6066"],"obsoletes":["RFC5077","RFC5246","RFC6961"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8446","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8447":{"rfcNumber":"RFC8447","href":"https://www.rfc-editor.org/rfc/rfc8447","title":"IANA Registry Updates for TLS and DTLS","authors":["J. Salowey","S. Turner"],"rawDate":"2018-08","status":"Proposed Standard","updates":["RFC3749","RFC4680","RFC5077","RFC5246","RFC5705","RFC5878","RFC6520","RFC7301"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8447","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8448":{"rfcNumber":"RFC8448","href":"https://www.rfc-editor.org/rfc/rfc8448","title":"Example Handshake Traces for TLS 1.3","authors":["M. Thomson"],"rawDate":"2019-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8448","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8449":{"rfcNumber":"RFC8449","href":"https://www.rfc-editor.org/rfc/rfc8449","title":"Record Size Limit Extension for TLS","authors":["M. Thomson"],"rawDate":"2018-08","status":"Proposed Standard","updates":["RFC6066"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc845":{"aliasOf":"rfc0845"},"rfc8450":{"rfcNumber":"RFC8450","href":"https://www.rfc-editor.org/rfc/rfc8450","title":"RTP Payload Format for VC-2 High Quality (HQ) Profile","authors":["J. Weaver"],"rawDate":"2018-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8451":{"rfcNumber":"RFC8451","href":"https://www.rfc-editor.org/rfc/rfc8451","title":"Considerations for Selecting RTP Control Protocol (RTCP) Extended Report (XR) Metrics for the WebRTC Statistics API","authors":["V. Singh","R. Huang","R. Even","D. Romascanu","L. Deng"],"rawDate":"2018-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8452":{"rfcNumber":"RFC8452","href":"https://www.rfc-editor.org/rfc/rfc8452","title":"AES-GCM-SIV: Nonce Misuse-Resistant Authenticated Encryption","authors":["S. Gueron","A. Langley","Y. Lindell"],"rawDate":"2019-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8452","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8453":{"rfcNumber":"RFC8453","href":"https://www.rfc-editor.org/rfc/rfc8453","title":"Framework for Abstraction and Control of TE Networks (ACTN)","authors":["D. Ceccarelli, Ed.","Y. Lee, Ed."],"rawDate":"2018-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8454":{"rfcNumber":"RFC8454","href":"https://www.rfc-editor.org/rfc/rfc8454","title":"Information Model for Abstraction and Control of TE Networks (ACTN)","authors":["Y. Lee","S. Belotti","D. Dhody","D. Ceccarelli","B. Yoon"],"rawDate":"2018-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8455":{"rfcNumber":"RFC8455","href":"https://www.rfc-editor.org/rfc/rfc8455","title":"Terminology for Benchmarking Software-Defined Networking (SDN) Controller Performance","authors":["V. Bhuvaneswaran","A. Basil","M. Tassinari","V. Manral","S. Banks"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8456":{"rfcNumber":"RFC8456","href":"https://www.rfc-editor.org/rfc/rfc8456","title":"Benchmarking Methodology for Software-Defined Networking (SDN) Controller Performance","authors":["V. Bhuvaneswaran","A. Basil","M. Tassinari","V. Manral","S. Banks"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8457":{"rfcNumber":"RFC8457","href":"https://www.rfc-editor.org/rfc/rfc8457","title":"IMAP \"$Important\" Keyword and \"\\Important\" Special-Use Attribute","authors":["B. Leiba, Ed."],"rawDate":"2018-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8458":{"rfcNumber":"RFC8458","href":"https://www.rfc-editor.org/rfc/rfc8458","title":"Using National Bibliography Numbers as Uniform Resource Names","authors":["J. Hakala"],"rawDate":"2018-10","status":"Informational","obsoletes":["RFC3188"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8459":{"rfcNumber":"RFC8459","href":"https://www.rfc-editor.org/rfc/rfc8459","title":"Hierarchical Service Function Chaining (hSFC)","authors":["D. Dolson","S. Homma","D. Lopez","M. Boucadair"],"rawDate":"2018-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc846":{"aliasOf":"rfc0846"},"rfc8460":{"rfcNumber":"RFC8460","href":"https://www.rfc-editor.org/rfc/rfc8460","title":"SMTP TLS Reporting","authors":["D. Margolis","A. Brotman","B. Ramakrishnan","J. Jones","M. Risher"],"rawDate":"2018-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8460","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8461":{"rfcNumber":"RFC8461","href":"https://www.rfc-editor.org/rfc/rfc8461","title":"SMTP MTA Strict Transport Security (MTA-STS)","authors":["D. Margolis","M. Risher","B. Ramakrishnan","A. Brotman","J. Jones"],"rawDate":"2018-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8461","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8462":{"rfcNumber":"RFC8462","href":"https://www.rfc-editor.org/rfc/rfc8462","title":"Report from the IAB Workshop on Managing Radio Networks in an Encrypted World (MaRNEW)","authors":["N. Rooney","S. Dawkins, Ed."],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8463":{"rfcNumber":"RFC8463","href":"https://www.rfc-editor.org/rfc/rfc8463","title":"A New Cryptographic Signature Method for DomainKeys Identified Mail (DKIM)","authors":["J. Levine"],"rawDate":"2018-09","status":"Proposed Standard","updates":["RFC6376"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8464":{"rfcNumber":"RFC8464","href":"https://www.rfc-editor.org/rfc/rfc8464","title":"A URN Namespace for Device Identity and Mobile Equipment Identity (MEID)","authors":["R. Atarius"],"rawDate":"2018-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8465":{"rfcNumber":"RFC8465","href":"https://www.rfc-editor.org/rfc/rfc8465","title":"Using the Mobile Equipment Identity (MEID) URN as an Instance ID","authors":["R. Atarius, Ed."],"rawDate":"2018-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8466":{"rfcNumber":"RFC8466","href":"https://www.rfc-editor.org/rfc/rfc8466","title":"A YANG Data Model for Layer 2 Virtual Private Network (L2VPN) Service Delivery","authors":["B. Wen","G. Fioccola, Ed.","C. Xie","L. Jalil"],"rawDate":"2018-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8466","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8467":{"rfcNumber":"RFC8467","href":"https://www.rfc-editor.org/rfc/rfc8467","title":"Padding Policies for Extension Mechanisms for DNS (EDNS(0))","authors":["A. Mayrhofer"],"rawDate":"2018-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8468":{"rfcNumber":"RFC8468","href":"https://www.rfc-editor.org/rfc/rfc8468","title":"IPv4, IPv6, and IPv4-IPv6 Coexistence: Updates for the IP Performance Metrics (IPPM) Framework","authors":["A. Morton","J. Fabini","N. Elkins","M. Ackermann","V. Hegde"],"rawDate":"2018-11","status":"Informational","updates":["RFC2330"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8469":{"rfcNumber":"RFC8469","href":"https://www.rfc-editor.org/rfc/rfc8469","title":"Recommendation to Use the Ethernet Control Word","authors":["S. Bryant","A. Malis","I. Bagdonas"],"rawDate":"2018-11","status":"Proposed Standard","updates":["RFC4448"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8469","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc847":{"aliasOf":"rfc0847"},"rfc8470":{"rfcNumber":"RFC8470","href":"https://httpwg.org/specs/rfc8470.html","title":"Using Early Data in HTTP","authors":["M. Thomson","M. Nottingham","W. Tarreau"],"rawDate":"2018-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8471":{"rfcNumber":"RFC8471","href":"https://www.rfc-editor.org/rfc/rfc8471","title":"The Token Binding Protocol Version 1.0","authors":["A. Popov, Ed.","M. Nystroem","D. Balfanz","J. Hodges"],"rawDate":"2018-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8472":{"rfcNumber":"RFC8472","href":"https://www.rfc-editor.org/rfc/rfc8472","title":"Transport Layer Security (TLS) Extension for Token Binding Protocol Negotiation","authors":["A. Popov, Ed.","M. Nystroem","D. Balfanz"],"rawDate":"2018-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8473":{"rfcNumber":"RFC8473","href":"https://www.rfc-editor.org/rfc/rfc8473","title":"Token Binding over HTTP","authors":["A. Popov","M. Nystroem","D. Balfanz, Ed.","N. Harper","J. Hodges"],"rawDate":"2018-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8474":{"rfcNumber":"RFC8474","href":"https://www.rfc-editor.org/rfc/rfc8474","title":"IMAP Extension for Object Identifiers","authors":["B. Gondwana, Ed."],"rawDate":"2018-09","status":"Proposed Standard","updates":["RFC3501"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8475":{"rfcNumber":"RFC8475","href":"https://www.rfc-editor.org/rfc/rfc8475","title":"Using Conditional Router Advertisements for Enterprise Multihoming","authors":["J. Linkova","M. Stucchi"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8476":{"rfcNumber":"RFC8476","href":"https://www.rfc-editor.org/rfc/rfc8476","title":"Signaling Maximum SID Depth (MSD) Using OSPF","authors":["J. Tantsura","U. Chunduri","S. Aldrin","P. Psenak"],"rawDate":"2018-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8477":{"rfcNumber":"RFC8477","href":"https://www.rfc-editor.org/rfc/rfc8477","title":"Report from the Internet of Things (IoT) Semantic Interoperability (IOTSI) Workshop 2016","authors":["J. Jimenez","H. Tschofenig","D. Thaler"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8478":{"rfcNumber":"RFC8478","href":"https://www.rfc-editor.org/rfc/rfc8478","title":"Zstandard Compression and the application/zstd Media Type","authors":["Y. Collet","M. Kucherawy, Ed."],"rawDate":"2018-10","status":"Informational","obsoletedBy":["RFC8878"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8478","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8479":{"rfcNumber":"RFC8479","href":"https://www.rfc-editor.org/rfc/rfc8479","title":"Storing Validation Parameters in PKCS#8","authors":["N. Mavrogiannopoulos"],"rawDate":"2018-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc848":{"aliasOf":"rfc0848"},"rfc8480":{"rfcNumber":"RFC8480","href":"https://www.rfc-editor.org/rfc/rfc8480","title":"6TiSCH Operation Sublayer (6top) Protocol (6P)","authors":["Q. Wang, Ed.","X. Vilajosana","T. Watteyne"],"rawDate":"2018-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8481":{"rfcNumber":"RFC8481","href":"https://www.rfc-editor.org/rfc/rfc8481","title":"Clarifications to BGP Origin Validation Based on Resource Public Key Infrastructure (RPKI)","authors":["R. Bush"],"rawDate":"2018-09","status":"Proposed Standard","updatedBy":["RFC9324"],"updates":["RFC6811"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8482":{"rfcNumber":"RFC8482","href":"https://www.rfc-editor.org/rfc/rfc8482","title":"Providing Minimal-Sized Responses to DNS Queries That Have QTYPE=ANY","authors":["J. Abley","O. Gudmundsson","M. Majkowski","E. Hunt"],"rawDate":"2019-01","status":"Proposed Standard","updates":["RFC1034","RFC1035"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8483":{"rfcNumber":"RFC8483","href":"https://www.rfc-editor.org/rfc/rfc8483","title":"Yeti DNS Testbed","authors":["L. Song, Ed.","D. Liu","P. Vixie","A. Kato","S. Kerr"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8484":{"rfcNumber":"RFC8484","href":"https://www.rfc-editor.org/rfc/rfc8484","title":"DNS Queries over HTTPS (DoH)","authors":["P. Hoffman","P. McManus"],"rawDate":"2018-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8484","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8485":{"rfcNumber":"RFC8485","href":"https://www.rfc-editor.org/rfc/rfc8485","title":"Vectors of Trust","authors":["J. Richer, Ed.","L. Johansson"],"rawDate":"2018-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8486":{"rfcNumber":"RFC8486","href":"https://www.rfc-editor.org/rfc/rfc8486","title":"Ambisonics in an Ogg Opus Container","authors":["J. Skoglund","M. Graczyk"],"rawDate":"2018-10","status":"Proposed Standard","updates":["RFC7845"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8486","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8487":{"rfcNumber":"RFC8487","href":"https://www.rfc-editor.org/rfc/rfc8487","title":"Mtrace Version 2: Traceroute Facility for IP Multicast","authors":["H. Asaeda","K. Meyer","W. Lee, Ed."],"rawDate":"2018-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8488":{"rfcNumber":"RFC8488","href":"https://www.rfc-editor.org/rfc/rfc8488","title":"RIPE NCC's Implementation of Resource Public Key Infrastructure (RPKI) Certificate Tree Validation","authors":["O. Muravskiy","T. Bruijnzeels"],"rawDate":"2018-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8489":{"rfcNumber":"RFC8489","href":"https://www.rfc-editor.org/rfc/rfc8489","title":"Session Traversal Utilities for NAT (STUN)","authors":["M. Petit-Huguenin","G. Salgueiro","J. Rosenberg","D. Wing","R. Mahy","P. Matthews"],"rawDate":"2020-02","status":"Proposed Standard","obsoletes":["RFC5389"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8489","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc849":{"aliasOf":"rfc0849"},"rfc8490":{"rfcNumber":"RFC8490","href":"https://www.rfc-editor.org/rfc/rfc8490","title":"DNS Stateful Operations","authors":["R. Bellis","S. Cheshire","J. Dickinson","S. Dickinson","T. Lemon","T. Pusateri"],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC1035","RFC7766"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8491":{"rfcNumber":"RFC8491","href":"https://www.rfc-editor.org/rfc/rfc8491","title":"Signaling Maximum SID Depth (MSD) Using IS-IS","authors":["J. Tantsura","U. Chunduri","S. Aldrin","L. Ginsberg"],"rawDate":"2018-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8492":{"rfcNumber":"RFC8492","href":"https://www.rfc-editor.org/rfc/rfc8492","title":"Secure Password Ciphersuites for Transport Layer Security (TLS)","authors":["D. Harkins, Ed."],"rawDate":"2019-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8492","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8493":{"rfcNumber":"RFC8493","href":"https://www.rfc-editor.org/rfc/rfc8493","title":"The BagIt File Packaging Format (V1.0)","authors":["J. Kunze","J. Littman","E. Madden","J. Scancella","C. Adams"],"rawDate":"2018-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8493","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8494":{"rfcNumber":"RFC8494","href":"https://www.rfc-editor.org/rfc/rfc8494","title":"Multicast Email (MULE) over Allied Communications Publication (ACP) 142","authors":["D. Wilson","A. Melnikov, Ed."],"rawDate":"2018-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8495":{"rfcNumber":"RFC8495","href":"https://www.rfc-editor.org/rfc/rfc8495","title":"Allocation Token Extension for the Extensible Provisioning Protocol (EPP)","authors":["J. Gould","K. Feher"],"rawDate":"2018-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8496":{"rfcNumber":"RFC8496","href":"https://www.rfc-editor.org/rfc/rfc8496","title":"P-Charge-Info: A Private Header Field (P-Header) Extension to the Session Initiation Protocol (SIP)","authors":["D. York","T. Asveren"],"rawDate":"2018-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8497":{"rfcNumber":"RFC8497","href":"https://www.rfc-editor.org/rfc/rfc8497","title":"Marking SIP Messages to Be Logged","authors":["P. Dawes","C. Arunachalam"],"rawDate":"2018-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8498":{"rfcNumber":"RFC8498","href":"https://www.rfc-editor.org/rfc/rfc8498","title":"A P-Served-User Header Field Parameter for an Originating Call Diversion (CDIV) Session Case in the Session Initiation Protocol (SIP)","authors":["M. Mohali"],"rawDate":"2019-02","status":"Informational","updates":["RFC5502"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8499":{"rfcNumber":"RFC8499","href":"https://www.rfc-editor.org/rfc/rfc8499","title":"DNS Terminology","authors":["P. Hoffman","A. Sullivan","K. Fujiwara"],"rawDate":"2019-01","status":"Best Current Practice","updates":["RFC2308"],"obsoletes":["RFC7719"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc85":{"aliasOf":"rfc0085"},"rfc850":{"aliasOf":"rfc0850"},"rfc8500":{"rfcNumber":"RFC8500","href":"https://www.rfc-editor.org/rfc/rfc8500","title":"IS-IS Routing with Reverse Metric","authors":["N. Shen","S. Amante","M. Abrahamsson"],"rawDate":"2019-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8501":{"rfcNumber":"RFC8501","href":"https://www.rfc-editor.org/rfc/rfc8501","title":"Reverse DNS in IPv6 for Internet Service Providers","authors":["L. Howard"],"rawDate":"2018-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8502":{"rfcNumber":"RFC8502","href":"https://www.rfc-editor.org/rfc/rfc8502","title":"L2L3 VPN Multicast MIB","authors":["Z. Zhang","H. Tsunoda"],"rawDate":"2018-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8503":{"rfcNumber":"RFC8503","href":"https://www.rfc-editor.org/rfc/rfc8503","title":"BGP/MPLS Layer 3 VPN Multicast Management Information Base","authors":["H. Tsunoda"],"rawDate":"2018-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8504":{"rfcNumber":"RFC8504","href":"https://www.rfc-editor.org/rfc/rfc8504","title":"IPv6 Node Requirements","authors":["T. Chown","J. Loughney","T. Winters"],"rawDate":"2019-01","status":"Best Current Practice","obsoletes":["RFC6434"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8505":{"rfcNumber":"RFC8505","href":"https://www.rfc-editor.org/rfc/rfc8505","title":"Registration Extensions for IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Neighbor Discovery","authors":["P. Thubert, Ed.","E. Nordmark","S. Chakrabarti","C. Perkins"],"rawDate":"2018-11","status":"Proposed Standard","updatedBy":["RFC8928","RFC8929","RFC9010"],"updates":["RFC6775"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8505","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8506":{"rfcNumber":"RFC8506","href":"https://www.rfc-editor.org/rfc/rfc8506","title":"Diameter Credit-Control Application","authors":["L. Bertz, Ed.","D. Dolson, Ed.","Y. Lifshitz, Ed."],"rawDate":"2019-03","status":"Proposed Standard","obsoletes":["RFC4006"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8507":{"rfcNumber":"RFC8507","href":"https://www.rfc-editor.org/rfc/rfc8507","title":"Simple Internet Protocol (SIP) Specification","authors":["S. Deering","R. Hinden, Ed."],"rawDate":"2018-12","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8508":{"rfcNumber":"RFC8508","href":"https://www.rfc-editor.org/rfc/rfc8508","title":"IMAP REPLACE Extension","authors":["S. Brandt"],"rawDate":"2019-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8509":{"rfcNumber":"RFC8509","href":"https://www.rfc-editor.org/rfc/rfc8509","title":"A Root Key Trust Anchor Sentinel for DNSSEC","authors":["G. Huston","J. Damas","W. Kumari"],"rawDate":"2018-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc851":{"aliasOf":"rfc0851"},"rfc8510":{"rfcNumber":"RFC8510","href":"https://www.rfc-editor.org/rfc/rfc8510","title":"OSPF Link-Local Signaling (LLS) Extensions for Local Interface ID Advertisement","authors":["P. Psenak, Ed.","K. Talaulikar","W. Henderickx","P. Pillay-Esnault"],"rawDate":"2019-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8511":{"rfcNumber":"RFC8511","href":"https://www.rfc-editor.org/rfc/rfc8511","title":"TCP Alternative Backoff with ECN (ABE)","authors":["N. Khademi","M. Welzl","G. Armitage","G. Fairhurst"],"rawDate":"2018-12","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8512":{"rfcNumber":"RFC8512","href":"https://www.rfc-editor.org/rfc/rfc8512","title":"A YANG Module for Network Address Translation (NAT) and Network Prefix Translation (NPT)","authors":["M. Boucadair, Ed.","S. Sivakumar","C. Jacquenet","S. Vinapamula","Q. Wu"],"rawDate":"2019-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8513":{"rfcNumber":"RFC8513","href":"https://www.rfc-editor.org/rfc/rfc8513","title":"A YANG Data Model for Dual-Stack Lite (DS-Lite)","authors":["M. Boucadair","C. Jacquenet","S. Sivakumar"],"rawDate":"2019-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8514":{"rfcNumber":"RFC8514","href":"https://www.rfc-editor.org/rfc/rfc8514","title":"Internet Message Access Protocol (IMAP) - SAVEDATE Extension","authors":["S. Bosch"],"rawDate":"2019-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8515":{"rfcNumber":"RFC8515","href":"https://www.rfc-editor.org/rfc/rfc8515","title":"URN Namespace for ETSI Documents","authors":["M. Jethanandani","M.A. Reina Ortega"],"rawDate":"2019-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8516":{"rfcNumber":"RFC8516","href":"https://www.rfc-editor.org/rfc/rfc8516","title":"\"Too Many Requests\" Response Code for the Constrained Application Protocol","authors":["A. Keranen"],"rawDate":"2019-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8517":{"rfcNumber":"RFC8517","href":"https://www.rfc-editor.org/rfc/rfc8517","title":"An Inventory of Transport-Centric Functions Provided by Middleboxes: An Operator Perspective","authors":["D. Dolson, Ed.","J. Snellman","M. Boucadair, Ed.","C. Jacquenet"],"rawDate":"2019-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8518":{"rfcNumber":"RFC8518","href":"https://www.rfc-editor.org/rfc/rfc8518","title":"Selection of Loop-Free Alternates for Multi-Homed Prefixes","authors":["P. Sarkar, Ed.","U. Chunduri, Ed.","S. Hegde","J. Tantsura","H. Gredler"],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC5286"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8519":{"rfcNumber":"RFC8519","href":"https://www.rfc-editor.org/rfc/rfc8519","title":"YANG Data Model for Network Access Control Lists (ACLs)","authors":["M. Jethanandani","S. Agarwal","L. Huang","D. Blair"],"rawDate":"2019-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8519","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc852":{"aliasOf":"rfc0852"},"rfc8520":{"rfcNumber":"RFC8520","href":"https://www.rfc-editor.org/rfc/rfc8520","title":"Manufacturer Usage Description Specification","authors":["E. Lear","R. Droms","D. Romascanu"],"rawDate":"2019-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8520","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8521":{"rfcNumber":"RFC8521","href":"https://www.rfc-editor.org/rfc/rfc8521","title":"Registration Data Access Protocol (RDAP) Object Tagging","authors":["S. Hollenbeck","A. Newton"],"rawDate":"2018-11","status":"Best Current Practice","updates":["RFC7484"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8521","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8522":{"rfcNumber":"RFC8522","href":"https://www.rfc-editor.org/rfc/rfc8522","title":"Looking Glass Command Set","authors":["M. Stubbig"],"rawDate":"2019-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8525":{"rfcNumber":"RFC8525","href":"https://www.rfc-editor.org/rfc/rfc8525","title":"YANG Library","authors":["A. Bierman","M. Bjorklund","J. Schoenwaelder","K. Watsen","R. Wilton"],"rawDate":"2019-03","status":"Proposed Standard","obsoletes":["RFC7895"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8525","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8526":{"rfcNumber":"RFC8526","href":"https://www.rfc-editor.org/rfc/rfc8526","title":"NETCONF Extensions to Support the Network Management Datastore Architecture","authors":["M. Bjorklund","J. Schoenwaelder","P. Shafer","K. Watsen","R. Wilton"],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC6241","RFC7950"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8527":{"rfcNumber":"RFC8527","href":"https://www.rfc-editor.org/rfc/rfc8527","title":"RESTCONF Extensions to Support the Network Management Datastore Architecture","authors":["M. Bjorklund","J. Schoenwaelder","P. Shafer","K. Watsen","R. Wilton"],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC8040"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8528":{"rfcNumber":"RFC8528","href":"https://www.rfc-editor.org/rfc/rfc8528","title":"YANG Schema Mount","authors":["M. Bjorklund","L. Lhotka"],"rawDate":"2019-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8528","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8529":{"rfcNumber":"RFC8529","href":"https://www.rfc-editor.org/rfc/rfc8529","title":"YANG Data Model for Network Instances","authors":["L. Berger","C. Hopps","A. Lindem","D. Bogdanovic","X. Liu"],"rawDate":"2019-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8530":{"rfcNumber":"RFC8530","href":"https://www.rfc-editor.org/rfc/rfc8530","title":"YANG Model for Logical Network Elements","authors":["L. Berger","C. Hopps","A. Lindem","D. Bogdanovic","X. Liu"],"rawDate":"2019-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8531":{"rfcNumber":"RFC8531","href":"https://www.rfc-editor.org/rfc/rfc8531","title":"Generic YANG Data Model for Connection-Oriented Operations, Administration, and Maintenance (OAM) Protocols","authors":["D. Kumar","Q. Wu","Z. Wang"],"rawDate":"2019-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8531","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8532":{"rfcNumber":"RFC8532","href":"https://www.rfc-editor.org/rfc/rfc8532","title":"Generic YANG Data Model for the Management of Operations, Administration, and Maintenance (OAM) Protocols That Use Connectionless Communications","authors":["D. Kumar","Z. Wang","Q. Wu, Ed.","R. Rahman","S. Raghavan"],"rawDate":"2019-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8533":{"rfcNumber":"RFC8533","href":"https://www.rfc-editor.org/rfc/rfc8533","title":"A YANG Data Model for Retrieval Methods for the Management of Operations, Administration, and Maintenance (OAM) Protocols That Use Connectionless Communications","authors":["D. Kumar","M. Wang","Q. Wu, Ed.","R. Rahman","S. Raghavan"],"rawDate":"2019-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8534":{"rfcNumber":"RFC8534","href":"https://www.rfc-editor.org/rfc/rfc8534","title":"Explicit Tracking with Wildcard Routes in Multicast VPN","authors":["A. Dolganow","J. Kotalwar","E. Rosen, Ed.","Z. Zhang"],"rawDate":"2019-02","status":"Proposed Standard","updates":["RFC6514","RFC6625","RFC7524","RFC7582","RFC7900"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8536":{"rfcNumber":"RFC8536","href":"https://www.rfc-editor.org/rfc/rfc8536","title":"The Time Zone Information Format (TZif)","authors":["A. Olson","P. Eggert","K. Murchison"],"rawDate":"2019-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8536","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8537":{"rfcNumber":"RFC8537","href":"https://www.rfc-editor.org/rfc/rfc8537","title":"Updates to the Fast Reroute Procedures for Co-routed Associated Bidirectional Label Switched Paths (LSPs)","authors":["R. Gandhi, Ed.","H. Shah","J. Whittaker"],"rawDate":"2019-02","status":"Proposed Standard","updates":["RFC4090","RFC7551"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8538":{"rfcNumber":"RFC8538","href":"https://www.rfc-editor.org/rfc/rfc8538","title":"Notification Message Support for BGP Graceful Restart","authors":["K. Patel","R. Fernando","J. Scudder","J. Haas"],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC4724"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8539":{"rfcNumber":"RFC8539","href":"https://www.rfc-editor.org/rfc/rfc8539","title":"Softwire Provisioning Using DHCPv4 over DHCPv6","authors":["I. Farrer","Q. Sun","Y. Cui","L. Sun"],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC7598"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc854":{"aliasOf":"rfc0854"},"rfc8540":{"rfcNumber":"RFC8540","href":"https://www.rfc-editor.org/rfc/rfc8540","title":"Stream Control Transmission Protocol: Errata and Issues in RFC 4960","authors":["R. Stewart","M. Tuexen","M. Proshin"],"rawDate":"2019-02","status":"Informational","obsoletedBy":["RFC9260"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8541":{"rfcNumber":"RFC8541","href":"https://www.rfc-editor.org/rfc/rfc8541","title":"Impact of Shortest Path First (SPF) Trigger and Delay Strategies on IGP Micro-loops","authors":["S. Litkowski","B. Decraene","M. Horneffer"],"rawDate":"2019-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8542":{"rfcNumber":"RFC8542","href":"https://www.rfc-editor.org/rfc/rfc8542","title":"A YANG Data Model for Fabric Topology in Data-Center Networks","authors":["Y. Zhuang","D. Shi","R. Gu","H. Ananthakrishnan"],"rawDate":"2019-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8542","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8543":{"rfcNumber":"RFC8543","href":"https://www.rfc-editor.org/rfc/rfc8543","title":"Extensible Provisioning Protocol (EPP) Organization Mapping","authors":["L. Zhou","N. Kong","J. Yao","J. Gould","G. Zhou"],"rawDate":"2019-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8544":{"rfcNumber":"RFC8544","href":"https://www.rfc-editor.org/rfc/rfc8544","title":"Organization Extension for the Extensible Provisioning Protocol (EPP)","authors":["L. Zhou","N. Kong","J. Wei","J. Yao","J. Gould"],"rawDate":"2019-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8545":{"rfcNumber":"RFC8545","href":"https://www.rfc-editor.org/rfc/rfc8545","title":"Well-Known Port Assignments for the One-Way Active Measurement Protocol (OWAMP) and the Two-Way Active Measurement Protocol (TWAMP)","authors":["A. Morton, Ed.","G. Mirsky, Ed."],"rawDate":"2019-03","status":"Proposed Standard","updates":["RFC4656","RFC5357"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8546":{"rfcNumber":"RFC8546","href":"https://www.rfc-editor.org/rfc/rfc8546","title":"The Wire Image of a Network Protocol","authors":["B. Trammell","M. Kuehlewind"],"rawDate":"2019-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8547":{"rfcNumber":"RFC8547","href":"https://www.rfc-editor.org/rfc/rfc8547","title":"TCP-ENO: Encryption Negotiation Option","authors":["A. Bittau","D. Giffin","M. Handley","D. Mazieres","E. Smith"],"rawDate":"2019-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8548":{"rfcNumber":"RFC8548","href":"https://www.rfc-editor.org/rfc/rfc8548","title":"Cryptographic Protection of TCP Streams (tcpcrypt)","authors":["A. Bittau","D. Giffin","M. Handley","D. Mazieres","Q. Slack","E. Smith"],"rawDate":"2019-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8549":{"rfcNumber":"RFC8549","href":"https://www.rfc-editor.org/rfc/rfc8549","title":"Export of BGP Community Information in IP Flow Information Export (IPFIX)","authors":["Z. Li","R. Gu","J. Dong"],"rawDate":"2019-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc855":{"aliasOf":"rfc0855"},"rfc8550":{"rfcNumber":"RFC8550","href":"https://www.rfc-editor.org/rfc/rfc8550","title":"Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 4.0 Certificate Handling","authors":["J. Schaad","B. Ramsdell","S. Turner"],"rawDate":"2019-04","status":"Proposed Standard","obsoletes":["RFC5750"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8551":{"rfcNumber":"RFC8551","href":"https://www.rfc-editor.org/rfc/rfc8551","title":"Secure/Multipurpose Internet Mail Extensions (S/MIME) Version 4.0 Message Specification","authors":["J. Schaad","B. Ramsdell","S. Turner"],"rawDate":"2019-04","status":"Proposed Standard","obsoletes":["RFC5751"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8552":{"rfcNumber":"RFC8552","href":"https://www.rfc-editor.org/rfc/rfc8552","title":"Scoped Interpretation of DNS Resource Records through \"Underscored\" Naming of Attribute Leaves","authors":["D. Crocker"],"rawDate":"2019-03","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8552","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8553":{"rfcNumber":"RFC8553","href":"https://www.rfc-editor.org/rfc/rfc8553","title":"DNS Attrleaf Changes: Fixing Specifications That Use Underscored Node Names","authors":["D. Crocker"],"rawDate":"2019-03","status":"Best Current Practice","updates":["RFC2782","RFC3263","RFC3529","RFC3620","RFC3832","RFC3887","RFC3958","RFC4120","RFC4227","RFC4386","RFC4387","RFC4976","RFC5026","RFC5328","RFC5389","RFC5415","RFC5518","RFC5555","RFC5617","RFC5679","RFC5766","RFC5780","RFC5804","RFC5864","RFC5928","RFC6120","RFC6186","RFC6376","RFC6733","RFC6763","RFC7208","RFC7489","RFC8145"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8554":{"rfcNumber":"RFC8554","href":"https://www.rfc-editor.org/rfc/rfc8554","title":"Leighton-Micali Hash-Based Signatures","authors":["D. McGrew","M. Curcio","S. Fluhrer"],"rawDate":"2019-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8554","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8555":{"rfcNumber":"RFC8555","href":"https://www.rfc-editor.org/rfc/rfc8555","title":"Automatic Certificate Management Environment (ACME)","authors":["R. Barnes","J. Hoffman-Andrews","D. McCarney","J. Kasten"],"rawDate":"2019-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8555","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8556":{"rfcNumber":"RFC8556","href":"https://www.rfc-editor.org/rfc/rfc8556","title":"Multicast VPN Using Bit Index Explicit Replication (BIER)","authors":["E. Rosen, Ed.","M. Sivakumar","T. Przygienda","S. Aldrin","A. Dolganow"],"rawDate":"2019-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8557":{"rfcNumber":"RFC8557","href":"https://www.rfc-editor.org/rfc/rfc8557","title":"Deterministic Networking Problem Statement","authors":["N. Finn","P. Thubert"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8558":{"rfcNumber":"RFC8558","href":"https://www.rfc-editor.org/rfc/rfc8558","title":"Transport Protocol Path Signals","authors":["T. Hardie, Ed."],"rawDate":"2019-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8558","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8559":{"rfcNumber":"RFC8559","href":"https://www.rfc-editor.org/rfc/rfc8559","title":"Dynamic Authorization Proxying in the Remote Authentication Dial-In User Service (RADIUS) Protocol","authors":["A. DeKok","J. Korhonen"],"rawDate":"2019-04","status":"Proposed Standard","updates":["RFC5176","RFC5580"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc856":{"aliasOf":"rfc0856"},"rfc8560":{"rfcNumber":"RFC8560","href":"https://www.rfc-editor.org/rfc/rfc8560","title":"Seamless Integration of Ethernet VPN (EVPN) with Virtual Private LAN Service (VPLS) and Their Provider Backbone Bridge (PBB) Equivalents","authors":["A. Sajassi, Ed.","S. Salam","N. Del Regno","J. Rabadan"],"rawDate":"2019-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8561":{"rfcNumber":"RFC8561","href":"https://www.rfc-editor.org/rfc/rfc8561","title":"A YANG Data Model for Microwave Radio Link","authors":["J. Ahlberg","M. Ye","X. Li","D. Spreafico","M. Vaupotic"],"rawDate":"2019-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8561","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8562":{"rfcNumber":"RFC8562","href":"https://www.rfc-editor.org/rfc/rfc8562","title":"Bidirectional Forwarding Detection (BFD) for Multipoint Networks","authors":["D. Katz","D. Ward","S. Pallagatti, Ed.","G. Mirsky, Ed."],"rawDate":"2019-04","status":"Proposed Standard","updates":["RFC5880"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8563":{"rfcNumber":"RFC8563","href":"https://www.rfc-editor.org/rfc/rfc8563","title":"Bidirectional Forwarding Detection (BFD) Multipoint Active Tails","authors":["D. Katz","D. Ward","S. Pallagatti, Ed.","G. Mirsky, Ed."],"rawDate":"2019-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8564":{"rfcNumber":"RFC8564","href":"https://www.rfc-editor.org/rfc/rfc8564","title":"Support of Point-to-Multipoint Bidirectional Forwarding Detection (BFD) in Transparent Interconnection of Lots of Links (TRILL)","authors":["M. Zhang","S. Pallagatti","V. Govindan"],"rawDate":"2019-04","status":"Proposed Standard","updates":["RFC7175","RFC7177"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8565":{"rfcNumber":"RFC8565","href":"https://www.rfc-editor.org/rfc/rfc8565","title":"Hypertext Jeopardy Protocol (HTJP/1.0)","authors":["E. Fokschaner"],"rawDate":"2019-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8567":{"rfcNumber":"RFC8567","href":"https://www.rfc-editor.org/rfc/rfc8567","title":"Customer Management DNS Resource Records","authors":["E. Rye","R. Beverly"],"rawDate":"2019-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8568":{"rfcNumber":"RFC8568","href":"https://www.rfc-editor.org/rfc/rfc8568","title":"Network Virtualization Research Challenges","authors":["CJ. Bernardos","A. Rahman","JC. Zuniga","LM. Contreras","P. Aranda","P. Lynch"],"rawDate":"2019-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8569":{"rfcNumber":"RFC8569","href":"https://www.rfc-editor.org/rfc/rfc8569","title":"Content-Centric Networking (CCNx) Semantics","authors":["M. Mosko","I. Solis","C. Wood"],"rawDate":"2019-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc857":{"aliasOf":"rfc0857"},"rfc8570":{"rfcNumber":"RFC8570","href":"https://www.rfc-editor.org/rfc/rfc8570","title":"IS-IS Traffic Engineering (TE) Metric Extensions","authors":["L. Ginsberg, Ed.","S. Previdi, Ed.","S. Giacalone","D. Ward","J. Drake","Q. Wu"],"rawDate":"2019-03","status":"Proposed Standard","obsoletes":["RFC7810"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8571":{"rfcNumber":"RFC8571","href":"https://www.rfc-editor.org/rfc/rfc8571","title":"BGP - Link State (BGP-LS) Advertisement of IGP Traffic Engineering Performance Metric Extensions","authors":["L. Ginsberg, Ed.","S. Previdi","Q. Wu","J. Tantsura","C. Filsfils"],"rawDate":"2019-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8572":{"rfcNumber":"RFC8572","href":"https://www.rfc-editor.org/rfc/rfc8572","title":"Secure Zero Touch Provisioning (SZTP)","authors":["K. Watsen","I. Farrer","M. Abrahamsson"],"rawDate":"2019-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8572","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8573":{"rfcNumber":"RFC8573","href":"https://www.rfc-editor.org/rfc/rfc8573","title":"Message Authentication Code for the Network Time Protocol","authors":["A. Malhotra","S. Goldberg"],"rawDate":"2019-06","status":"Proposed Standard","updates":["RFC5905"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8574":{"rfcNumber":"RFC8574","href":"https://www.rfc-editor.org/rfc/rfc8574","title":"cite-as: A Link Relation to Convey a Preferred URI for Referencing","authors":["H. Van de Sompel","M. Nelson","G. Bilder","J. Kunze","S. Warner"],"rawDate":"2019-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8574","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8575":{"rfcNumber":"RFC8575","href":"https://www.rfc-editor.org/rfc/rfc8575","title":"YANG Data Model for the Precision Time Protocol (PTP)","authors":["Y. Jiang, Ed.","X. Liu","J. Xu","R. Cummings, Ed."],"rawDate":"2019-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8576":{"rfcNumber":"RFC8576","href":"https://www.rfc-editor.org/rfc/rfc8576","title":"Internet of Things (IoT) Security: State of the Art and Challenges","authors":["O. Garcia-Morchon","S. Kumar","M. Sethi"],"rawDate":"2019-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8577":{"rfcNumber":"RFC8577","href":"https://www.rfc-editor.org/rfc/rfc8577","title":"Signaling RSVP-TE Tunnels on a Shared MPLS Forwarding Plane","authors":["H. Sitaraman","V. Beeram","T. Parikh","T. Saad"],"rawDate":"2019-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8577","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8578":{"rfcNumber":"RFC8578","href":"https://www.rfc-editor.org/rfc/rfc8578","title":"Deterministic Networking Use Cases","authors":["E. Grossman, Ed."],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8579":{"rfcNumber":"RFC8579","href":"https://www.rfc-editor.org/rfc/rfc8579","title":"Sieve Email Filtering: Delivering to Special-Use Mailboxes","authors":["S. Bosch"],"rawDate":"2019-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8579","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc858":{"aliasOf":"rfc0858"},"rfc8580":{"rfcNumber":"RFC8580","href":"https://www.rfc-editor.org/rfc/rfc8580","title":"Sieve Extension: File Carbon Copy (FCC)","authors":["K. Murchison","B. Gondwana"],"rawDate":"2019-05","status":"Proposed Standard","updates":["RFC5230","RFC5435"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8581":{"rfcNumber":"RFC8581","href":"https://www.rfc-editor.org/rfc/rfc8581","title":"Diameter Agent Overload and the Peer Overload Report","authors":["S. Donovan"],"rawDate":"2019-08","status":"Proposed Standard","updates":["RFC7683"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8582":{"rfcNumber":"RFC8582","href":"https://www.rfc-editor.org/rfc/rfc8582","title":"Diameter Overload Rate Control","authors":["S. Donovan, Ed.","E. Noel"],"rawDate":"2019-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8583":{"rfcNumber":"RFC8583","href":"https://www.rfc-editor.org/rfc/rfc8583","title":"Diameter Load Information Conveyance","authors":["B. Campbell","S. Donovan, Ed.","JJ. Trottin"],"rawDate":"2019-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8584":{"rfcNumber":"RFC8584","href":"https://www.rfc-editor.org/rfc/rfc8584","title":"Framework for Ethernet VPN Designated Forwarder Election Extensibility","authors":["J. Rabadan, Ed.","S. Mohanty, Ed.","A. Sajassi","J. Drake","K. Nagaraj","S. Sathappan"],"rawDate":"2019-04","status":"Proposed Standard","updates":["RFC7432"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8584","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8585":{"rfcNumber":"RFC8585","href":"https://www.rfc-editor.org/rfc/rfc8585","title":"Requirements for IPv6 Customer Edge Routers to Support IPv4-as-a-Service","authors":["J. Palet Martinez","H. M.-H. Liu","M. Kawashima"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8586":{"rfcNumber":"RFC8586","href":"https://www.rfc-editor.org/rfc/rfc8586","title":"Loop Detection in Content Delivery Networks (CDNs)","authors":["S. Ludin","M. Nottingham","N. Sullivan"],"rawDate":"2019-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8586","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8587":{"rfcNumber":"RFC8587","href":"https://www.rfc-editor.org/rfc/rfc8587","title":"NFS Version 4.0 Trunking Update","authors":["C. Lever, Ed.","D. Noveck"],"rawDate":"2019-05","status":"Proposed Standard","updates":["RFC7530"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8588":{"rfcNumber":"RFC8588","href":"https://www.rfc-editor.org/rfc/rfc8588","title":"Personal Assertion Token (PaSSporT) Extension for Signature-based Handling of Asserted information using toKENs (SHAKEN)","authors":["C. Wendt","M. Barnes"],"rawDate":"2019-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8588","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8589":{"rfcNumber":"RFC8589","href":"https://www.rfc-editor.org/rfc/rfc8589","title":"The 'leaptofrogans' URI Scheme","authors":["A. Tamas","B. Phister, Ed.","J-E. Rodriguez"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc859":{"aliasOf":"rfc0859"},"rfc8590":{"rfcNumber":"RFC8590","href":"https://www.rfc-editor.org/rfc/rfc8590","title":"Change Poll Extension for the Extensible Provisioning Protocol (EPP)","authors":["J. Gould","K. Feher"],"rawDate":"2019-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8591":{"rfcNumber":"RFC8591","href":"https://www.rfc-editor.org/rfc/rfc8591","title":"SIP-Based Messaging with S/MIME","authors":["B. Campbell","R. Housley"],"rawDate":"2019-04","status":"Proposed Standard","updates":["RFC3261","RFC3428","RFC4975"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8592":{"rfcNumber":"RFC8592","href":"https://www.rfc-editor.org/rfc/rfc8592","title":"Key Performance Indicator (KPI) Stamping for the Network Service Header (NSH)","authors":["R. Browne","A. Chilikin","T. Mizrahi"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8593":{"rfcNumber":"RFC8593","href":"https://www.rfc-editor.org/rfc/rfc8593","title":"Video Traffic Models for RTP Congestion Control Evaluations","authors":["X. Zhu","S. Mena","Z. Sarker"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8594":{"rfcNumber":"RFC8594","href":"https://www.rfc-editor.org/rfc/rfc8594","title":"The Sunset HTTP Header Field","authors":["E. Wilde"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8595":{"rfcNumber":"RFC8595","href":"https://www.rfc-editor.org/rfc/rfc8595","title":"An MPLS-Based Forwarding Plane for Service Function Chaining","authors":["A. Farrel","S. Bryant","J. Drake"],"rawDate":"2019-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8596":{"rfcNumber":"RFC8596","href":"https://www.rfc-editor.org/rfc/rfc8596","title":"MPLS Transport Encapsulation for the Service Function Chaining (SFC) Network Service Header (NSH)","authors":["A. Malis","S. Bryant","J. Halpern","W. Henderickx"],"rawDate":"2019-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8597":{"rfcNumber":"RFC8597","href":"https://www.rfc-editor.org/rfc/rfc8597","title":"Cooperating Layered Architecture for Software-Defined Networking (CLAS)","authors":["LM. Contreras","CJ. Bernardos","D. Lopez","M. Boucadair","P. Iovanna"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8598":{"rfcNumber":"RFC8598","href":"https://www.rfc-editor.org/rfc/rfc8598","title":"Split DNS Configuration for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["T. Pauly","P. Wouters"],"rawDate":"2019-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8599":{"rfcNumber":"RFC8599","href":"https://www.rfc-editor.org/rfc/rfc8599","title":"Push Notification with the Session Initiation Protocol (SIP)","authors":["C. Holmberg","M. Arnold"],"rawDate":"2019-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8599","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc86":{"aliasOf":"rfc0086"},"rfc860":{"aliasOf":"rfc0860"},"rfc8600":{"rfcNumber":"RFC8600","href":"https://www.rfc-editor.org/rfc/rfc8600","title":"Using Extensible Messaging and Presence Protocol (XMPP) for Security Information Exchange","authors":["N. Cam-Winget, Ed.","S. Appala","S. Pope","P. Saint-Andre"],"rawDate":"2019-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8601":{"rfcNumber":"RFC8601","href":"https://www.rfc-editor.org/rfc/rfc8601","title":"Message Header Field for Indicating Message Authentication Status","authors":["M. Kucherawy"],"rawDate":"2019-05","status":"Proposed Standard","obsoletes":["RFC7601"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8601","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8602":{"rfcNumber":"RFC8602","href":"https://www.rfc-editor.org/rfc/rfc8602","title":"Update to the Telephony Routing over IP (TRIP) IANA Registry Rules regarding Postal Addresses","authors":["J. Arkko","T. Hardie"],"rawDate":"2019-07","status":"Proposed Standard","updates":["RFC3219"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8603":{"rfcNumber":"RFC8603","href":"https://www.rfc-editor.org/rfc/rfc8603","title":"Commercial National Security Algorithm (CNSA) Suite Certificate and Certificate Revocation List (CRL) Profile","authors":["M. Jenkins","L. Zieglar"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8604":{"rfcNumber":"RFC8604","href":"https://www.rfc-editor.org/rfc/rfc8604","title":"Interconnecting Millions of Endpoints with Segment Routing","authors":["C. Filsfils, Ed.","S. Previdi","G. Dawra, Ed.","W. Henderickx","D. Cooper"],"rawDate":"2019-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8605":{"rfcNumber":"RFC8605","href":"https://www.rfc-editor.org/rfc/rfc8605","title":"vCard Format Extensions: ICANN Extensions for the Registration Data Access Protocol (RDAP)","authors":["S. Hollenbeck","R. Carney"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8606":{"rfcNumber":"RFC8606","href":"https://www.rfc-editor.org/rfc/rfc8606","title":"ISDN User Part (ISUP) Cause Location Parameter for the SIP Reason Header Field","authors":["R. Jesske"],"rawDate":"2019-06","status":"Proposed Standard","updates":["RFC3326"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8607":{"rfcNumber":"RFC8607","href":"https://www.rfc-editor.org/rfc/rfc8607","title":"Calendaring Extensions to WebDAV (CalDAV): Managed Attachments","authors":["C. Daboo","A. Quillaud","K. Murchison, Ed."],"rawDate":"2019-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8608":{"rfcNumber":"RFC8608","href":"https://www.rfc-editor.org/rfc/rfc8608","title":"BGPsec Algorithms, Key Formats, and Signature Formats","authors":["S. Turner","O. Borchert"],"rawDate":"2019-06","status":"Proposed Standard","updates":["RFC7935"],"obsoletes":["RFC8208"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8609":{"rfcNumber":"RFC8609","href":"https://www.rfc-editor.org/rfc/rfc8609","title":"Content-Centric Networking (CCNx) Messages in TLV Format","authors":["M. Mosko","I. Solis","C. Wood"],"rawDate":"2019-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc861":{"aliasOf":"rfc0861"},"rfc8610":{"rfcNumber":"RFC8610","href":"https://www.rfc-editor.org/rfc/rfc8610","title":"Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures","authors":["H. Birkholz","C. Vigano","C. Bormann"],"rawDate":"2019-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8610","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8611":{"rfcNumber":"RFC8611","href":"https://www.rfc-editor.org/rfc/rfc8611","title":"Label Switched Path (LSP) Ping and Traceroute Multipath Support for Link Aggregation Group (LAG) Interfaces","authors":["N. Akiya","G. Swallow","S. Litkowski","B. Decraene","J. Drake","M. Chen"],"rawDate":"2019-06","status":"Proposed Standard","updatedBy":["RFC9041"],"updates":["RFC8029"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8612":{"rfcNumber":"RFC8612","href":"https://www.rfc-editor.org/rfc/rfc8612","title":"DDoS Open Threat Signaling (DOTS) Requirements","authors":["A. Mortensen","T. Reddy","R. Moskowitz"],"rawDate":"2019-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8613":{"rfcNumber":"RFC8613","href":"https://www.rfc-editor.org/rfc/rfc8613","title":"Object Security for Constrained RESTful Environments (OSCORE)","authors":["G. Selander","J. Mattsson","F. Palombini","L. Seitz"],"rawDate":"2019-07","status":"Proposed Standard","updates":["RFC7252"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8614":{"rfcNumber":"RFC8614","href":"https://www.rfc-editor.org/rfc/rfc8614","title":"Updated Processing of Control Flags for BGP Virtual Private LAN Service (VPLS)","authors":["R. Singh","K. Kompella","S. Palislamovic"],"rawDate":"2019-06","status":"Proposed Standard","updates":["RFC4761"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8615":{"rfcNumber":"RFC8615","href":"https://www.rfc-editor.org/rfc/rfc8615","title":"Well-Known Uniform Resource Identifiers (URIs)","authors":["M. Nottingham"],"rawDate":"2019-05","status":"Proposed Standard","updates":["RFC7230","RFC7595"],"obsoletes":["RFC5785"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8616":{"rfcNumber":"RFC8616","href":"https://www.rfc-editor.org/rfc/rfc8616","title":"Email Authentication for Internationalized Mail","authors":["J. Levine"],"rawDate":"2019-06","status":"Proposed Standard","updates":["RFC6376","RFC7208","RFC7489"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8617":{"rfcNumber":"RFC8617","href":"https://www.rfc-editor.org/rfc/rfc8617","title":"The Authenticated Received Chain (ARC) Protocol","authors":["K. Andersen","B. Long, Ed.","S. Blank, Ed.","M. Kucherawy, Ed."],"rawDate":"2019-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8618":{"rfcNumber":"RFC8618","href":"https://www.rfc-editor.org/rfc/rfc8618","title":"Compacted-DNS (C-DNS): A Format for DNS Packet Capture","authors":["J. Dickinson","J. Hague","S. Dickinson","T. Manderson","J. Bond"],"rawDate":"2019-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8619":{"rfcNumber":"RFC8619","href":"https://www.rfc-editor.org/rfc/rfc8619","title":"Algorithm Identifiers for the HMAC-based Extract-and-Expand Key Derivation Function (HKDF)","authors":["R. Housley"],"rawDate":"2019-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc862":{"aliasOf":"rfc0862"},"rfc8620":{"rfcNumber":"RFC8620","href":"https://www.rfc-editor.org/rfc/rfc8620","title":"The JSON Meta Application Protocol (JMAP)","authors":["N. Jenkins","C. Newman"],"rawDate":"2019-07","status":"Proposed Standard","updatedBy":["RFC9404"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8620","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8621":{"rfcNumber":"RFC8621","href":"https://www.rfc-editor.org/rfc/rfc8621","title":"The JSON Meta Application Protocol (JMAP) for Mail","authors":["N. Jenkins","C. Newman"],"rawDate":"2019-08","status":"Proposed Standard","updates":["RFC5788"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8622":{"rfcNumber":"RFC8622","href":"https://www.rfc-editor.org/rfc/rfc8622","title":"A Lower-Effort Per-Hop Behavior (LE PHB) for Differentiated Services","authors":["R. Bless"],"rawDate":"2019-06","status":"Proposed Standard","updates":["RFC4594","RFC8325"],"obsoletes":["RFC3662"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8623":{"rfcNumber":"RFC8623","href":"https://www.rfc-editor.org/rfc/rfc8623","title":"Stateful Path Computation Element (PCE) Protocol Extensions for Usage with Point-to-Multipoint TE Label Switched Paths (LSPs)","authors":["U. Palle","D. Dhody","Y. Tanaka","V. Beeram"],"rawDate":"2019-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8624":{"rfcNumber":"RFC8624","href":"https://www.rfc-editor.org/rfc/rfc8624","title":"Algorithm Implementation Requirements and Usage Guidance for DNSSEC","authors":["P. Wouters","O. Sury"],"rawDate":"2019-06","status":"Proposed Standard","updatedBy":["RFC9157"],"obsoletes":["RFC6944"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8624","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8625":{"rfcNumber":"RFC8625","href":"https://www.rfc-editor.org/rfc/rfc8625","title":"Ethernet Traffic Parameters with Availability Information","authors":["H. Long","M. Ye, Ed.","G. Mirsky, Ed.","A. D'Alessandro","H. Shah"],"rawDate":"2019-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8627":{"rfcNumber":"RFC8627","href":"https://www.rfc-editor.org/rfc/rfc8627","title":"RTP Payload Format for Flexible Forward Error Correction (FEC)","authors":["M. Zanaty","V. Singh","A. Begen","G. Mandyam"],"rawDate":"2019-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8627","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8628":{"rfcNumber":"RFC8628","href":"https://www.rfc-editor.org/rfc/rfc8628","title":"OAuth 2.0 Device Authorization Grant","authors":["W. Denniss","J. Bradley","M. Jones","H. Tschofenig"],"rawDate":"2019-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8628","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8629":{"rfcNumber":"RFC8629","href":"https://www.rfc-editor.org/rfc/rfc8629","title":"Dynamic Link Exchange Protocol (DLEP) Multi-Hop Forwarding Extension","authors":["B. Cheng","L. Berger, Ed."],"rawDate":"2019-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc863":{"aliasOf":"rfc0863"},"rfc8630":{"rfcNumber":"RFC8630","href":"https://www.rfc-editor.org/rfc/rfc8630","title":"Resource Public Key Infrastructure (RPKI) Trust Anchor Locator","authors":["G. Huston","S. Weiler","G. Michaelson","S. Kent","T. Bruijnzeels"],"rawDate":"2019-08","status":"Proposed Standard","obsoletes":["RFC7730"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8631":{"rfcNumber":"RFC8631","href":"https://www.rfc-editor.org/rfc/rfc8631","title":"Link Relation Types for Web Services","authors":["E. Wilde"],"rawDate":"2019-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8632":{"rfcNumber":"RFC8632","href":"https://www.rfc-editor.org/rfc/rfc8632","title":"A YANG Data Model for Alarm Management","authors":["S. Vallin","M. Bjorklund"],"rawDate":"2019-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8632","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8633":{"rfcNumber":"RFC8633","href":"https://www.rfc-editor.org/rfc/rfc8633","title":"Network Time Protocol Best Current Practices","authors":["D. Reilly","H. Stenn","D. Sibold"],"rawDate":"2019-07","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8634":{"rfcNumber":"RFC8634","href":"https://www.rfc-editor.org/rfc/rfc8634","title":"BGPsec Router Certificate Rollover","authors":["B. Weis","R. Gagliano","K. Patel"],"rawDate":"2019-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8635":{"rfcNumber":"RFC8635","href":"https://www.rfc-editor.org/rfc/rfc8635","title":"Router Keying for BGPsec","authors":["R. Bush","S. Turner","K. Patel"],"rawDate":"2019-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8636":{"rfcNumber":"RFC8636","href":"https://www.rfc-editor.org/rfc/rfc8636","title":"Public Key Cryptography for Initial Authentication in Kerberos (PKINIT) Algorithm Agility","authors":["L. Hornquist Astrand","L. Zhu","M. Cullen","G. Hudson"],"rawDate":"2019-07","status":"Proposed Standard","updates":["RFC4556"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8637":{"rfcNumber":"RFC8637","href":"https://www.rfc-editor.org/rfc/rfc8637","title":"Applicability of the Path Computation Element (PCE) to the Abstraction and Control of TE Networks (ACTN)","authors":["D. Dhody","Y. Lee","D. Ceccarelli"],"rawDate":"2019-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8638":{"rfcNumber":"RFC8638","href":"https://www.rfc-editor.org/rfc/rfc8638","title":"IPv4 Multicast over an IPv6 Multicast in Softwire Mesh Networks","authors":["M. Xu","Y. Cui","J. Wu","S. Yang","C. Metz"],"rawDate":"2019-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8639":{"rfcNumber":"RFC8639","href":"https://www.rfc-editor.org/rfc/rfc8639","title":"Subscription to YANG Notifications","authors":["E. Voit","A. Clemm","A. Gonzalez Prieto","E. Nilsen-Nygaard","A. Tripathy"],"rawDate":"2019-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8639","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc864":{"aliasOf":"rfc0864"},"rfc8640":{"rfcNumber":"RFC8640","href":"https://www.rfc-editor.org/rfc/rfc8640","title":"Dynamic Subscription to YANG Events and Datastores over NETCONF","authors":["E. Voit","A. Clemm","A. Gonzalez Prieto","E. Nilsen-Nygaard","A. Tripathy"],"rawDate":"2019-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8640","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8641":{"rfcNumber":"RFC8641","href":"https://www.rfc-editor.org/rfc/rfc8641","title":"Subscription to YANG Notifications for Datastore Updates","authors":["A. Clemm","E. Voit"],"rawDate":"2019-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8642":{"rfcNumber":"RFC8642","href":"https://www.rfc-editor.org/rfc/rfc8642","title":"Policy Behavior for Well-Known BGP Communities","authors":["J. Borkenhagen","R. Bush","R. Bonica","S. Bayraktar"],"rawDate":"2019-08","status":"Proposed Standard","updates":["RFC1997"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8643":{"rfcNumber":"RFC8643","href":"https://www.rfc-editor.org/rfc/rfc8643","title":"An Opportunistic Approach for Secure Real-time Transport Protocol (OSRTP)","authors":["A. Johnston","B. Aboba","A. Hutton","R. Jesske","T. Stach"],"rawDate":"2019-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8645":{"rfcNumber":"RFC8645","href":"https://www.rfc-editor.org/rfc/rfc8645","title":"Re-keying Mechanisms for Symmetric Keys","authors":["S. Smyshlyaev, Ed."],"rawDate":"2019-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8649":{"rfcNumber":"RFC8649","href":"https://www.rfc-editor.org/rfc/rfc8649","title":"Hash Of Root Key Certificate Extension","authors":["R. Housley"],"rawDate":"2019-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc865":{"aliasOf":"rfc0865"},"rfc8650":{"rfcNumber":"RFC8650","href":"https://www.rfc-editor.org/rfc/rfc8650","title":"Dynamic Subscription to YANG Events and Datastores over RESTCONF","authors":["E. Voit","R. Rahman","E. Nilsen-Nygaard","A. Clemm","A. Bierman"],"rawDate":"2019-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8650","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8651":{"rfcNumber":"RFC8651","href":"https://www.rfc-editor.org/rfc/rfc8651","title":"Dynamic Link Exchange Protocol (DLEP) Control-Plane-Based Pause Extension","authors":["B. Cheng","D. Wiggins","L. Berger, Ed."],"rawDate":"2019-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8652":{"rfcNumber":"RFC8652","href":"https://www.rfc-editor.org/rfc/rfc8652","title":"A YANG Data Model for the Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD)","authors":["X. Liu","F. Guo","M. Sivakumar","P. McAllister","A. Peter"],"rawDate":"2019-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8653":{"rfcNumber":"RFC8653","href":"https://www.rfc-editor.org/rfc/rfc8653","title":"On-Demand Mobility Management","authors":["A. Yegin","D. Moses","S. Jeon"],"rawDate":"2019-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8654":{"rfcNumber":"RFC8654","href":"https://www.rfc-editor.org/rfc/rfc8654","title":"Extended Message Support for BGP","authors":["R. Bush","K. Patel","D. Ward"],"rawDate":"2019-10","status":"Proposed Standard","updates":["RFC4271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8655":{"rfcNumber":"RFC8655","href":"https://www.rfc-editor.org/rfc/rfc8655","title":"Deterministic Networking Architecture","authors":["N. Finn","P. Thubert","B. Varga","J. Farkas"],"rawDate":"2019-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8656":{"rfcNumber":"RFC8656","href":"https://www.rfc-editor.org/rfc/rfc8656","title":"Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)","authors":["T. Reddy, Ed.","A. Johnston, Ed.","P. Matthews","J. Rosenberg"],"rawDate":"2020-02","status":"Proposed Standard","obsoletes":["RFC5766","RFC6156"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8657":{"rfcNumber":"RFC8657","href":"https://www.rfc-editor.org/rfc/rfc8657","title":"Certification Authority Authorization (CAA) Record Extensions for Account URI and Automatic Certificate Management Environment (ACME) Method Binding","authors":["H. Landau"],"rawDate":"2019-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8658":{"rfcNumber":"RFC8658","href":"https://www.rfc-editor.org/rfc/rfc8658","title":"RADIUS Attributes for Softwire Mechanisms Based on Address plus Port (A+P)","authors":["S. Jiang, Ed.","Y. Fu, Ed.","C. Xie","T. Li","M. Boucadair, Ed."],"rawDate":"2019-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8659":{"rfcNumber":"RFC8659","href":"https://www.rfc-editor.org/rfc/rfc8659","title":"DNS Certification Authority Authorization (CAA) Resource Record","authors":["P. Hallam-Baker","R. Stradling","J. Hoffman-Andrews"],"rawDate":"2019-11","status":"Proposed Standard","obsoletes":["RFC6844"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8659","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc866":{"aliasOf":"rfc0866"},"rfc8660":{"rfcNumber":"RFC8660","href":"https://www.rfc-editor.org/rfc/rfc8660","title":"Segment Routing with the MPLS Data Plane","authors":["A. Bashandy, Ed.","C. Filsfils, Ed.","S. Previdi","B. Decraene","S. Litkowski","R. Shakir"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8661":{"rfcNumber":"RFC8661","href":"https://www.rfc-editor.org/rfc/rfc8661","title":"Segment Routing MPLS Interworking with LDP","authors":["A. Bashandy, Ed.","C. Filsfils, Ed.","S. Previdi","B. Decraene","S. Litkowski"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8662":{"rfcNumber":"RFC8662","href":"https://www.rfc-editor.org/rfc/rfc8662","title":"Entropy Label for Source Packet Routing in Networking (SPRING) Tunnels","authors":["S. Kini","K. Kompella","S. Sivabalan","S. Litkowski","R. Shakir","J. Tantsura"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8663":{"rfcNumber":"RFC8663","href":"https://www.rfc-editor.org/rfc/rfc8663","title":"MPLS Segment Routing over IP","authors":["X. Xu","S. Bryant","A. Farrel","S. Hassan","W. Henderickx","Z. Li"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8664":{"rfcNumber":"RFC8664","href":"https://www.rfc-editor.org/rfc/rfc8664","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Segment Routing","authors":["S. Sivabalan","C. Filsfils","J. Tantsura","W. Henderickx","J. Hardwick"],"rawDate":"2019-12","status":"Proposed Standard","updates":["RFC8408"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8664","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8665":{"rfcNumber":"RFC8665","href":"https://www.rfc-editor.org/rfc/rfc8665","title":"OSPF Extensions for Segment Routing","authors":["P. Psenak, Ed.","S. Previdi, Ed.","C. Filsfils","H. Gredler","R. Shakir","W. Henderickx","J. Tantsura"],"rawDate":"2019-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8665","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8666":{"rfcNumber":"RFC8666","href":"https://www.rfc-editor.org/rfc/rfc8666","title":"OSPFv3 Extensions for Segment Routing","authors":["P. Psenak, Ed.","S. Previdi, Ed."],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8667":{"rfcNumber":"RFC8667","href":"https://www.rfc-editor.org/rfc/rfc8667","title":"IS-IS Extensions for Segment Routing","authors":["S. Previdi, Ed.","L. Ginsberg, Ed.","C. Filsfils","A. Bashandy","H. Gredler","B. Decraene"],"rawDate":"2019-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8667","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8668":{"rfcNumber":"RFC8668","href":"https://www.rfc-editor.org/rfc/rfc8668","title":"Advertising Layer 2 Bundle Member Link Attributes in IS-IS","authors":["L. Ginsberg, Ed.","A. Bashandy","C. Filsfils","M. Nanduri","E. Aries"],"rawDate":"2019-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8668","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8669":{"rfcNumber":"RFC8669","href":"https://www.rfc-editor.org/rfc/rfc8669","title":"Segment Routing Prefix Segment Identifier Extensions for BGP","authors":["S. Previdi","C. Filsfils","A. Lindem, Ed.","A. Sreekantiah","H. Gredler"],"rawDate":"2019-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8669","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc867":{"aliasOf":"rfc0867"},"rfc8670":{"rfcNumber":"RFC8670","href":"https://www.rfc-editor.org/rfc/rfc8670","title":"BGP Prefix Segment in Large-Scale Data Centers","authors":["C. Filsfils, Ed.","S. Previdi","G. Dawra","E. Aries","P. Lapukhov"],"rawDate":"2019-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8671":{"rfcNumber":"RFC8671","href":"https://www.rfc-editor.org/rfc/rfc8671","title":"Support for Adj-RIB-Out in the BGP Monitoring Protocol (BMP)","authors":["T. Evens","S. Bayraktar","P. Lucente","P. Mi","S. Zhuang"],"rawDate":"2019-11","status":"Proposed Standard","updates":["RFC7854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8672":{"rfcNumber":"RFC8672","href":"https://www.rfc-editor.org/rfc/rfc8672","title":"TLS Server Identity Pinning with Tickets","authors":["Y. Sheffer","D. Migault"],"rawDate":"2019-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8673":{"rfcNumber":"RFC8673","href":"https://www.rfc-editor.org/rfc/rfc8673","title":"HTTP Random Access and Live Content","authors":["C. Pratt","D. Thakore","B. Stark"],"rawDate":"2019-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8674":{"rfcNumber":"RFC8674","href":"https://www.rfc-editor.org/rfc/rfc8674","title":"The \"safe\" HTTP Preference","authors":["M. Nottingham"],"rawDate":"2019-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8675":{"rfcNumber":"RFC8675","href":"https://www.rfc-editor.org/rfc/rfc8675","title":"A YANG Data Model for Tunnel Interface Types","authors":["M. Boucadair","I. Farrer","R. Asati"],"rawDate":"2019-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8676":{"rfcNumber":"RFC8676","href":"https://www.rfc-editor.org/rfc/rfc8676","title":"YANG Modules for IPv4-in-IPv6 Address plus Port (A+P) Softwires","authors":["I. Farrer, Ed.","M. Boucadair, Ed."],"rawDate":"2019-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8677":{"rfcNumber":"RFC8677","href":"https://www.rfc-editor.org/rfc/rfc8677","title":"Name-Based Service Function Forwarder (nSFF) Component within a Service Function Chaining (SFC) Framework","authors":["D. Trossen","D. Purkayastha","A. Rahman"],"rawDate":"2019-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8678":{"rfcNumber":"RFC8678","href":"https://www.rfc-editor.org/rfc/rfc8678","title":"Enterprise Multihoming using Provider-Assigned IPv6 Addresses without Network Prefix Translation: Requirements and Solutions","authors":["F. Baker","C. Bowers","J. Linkova"],"rawDate":"2019-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8679":{"rfcNumber":"RFC8679","href":"https://www.rfc-editor.org/rfc/rfc8679","title":"MPLS Egress Protection Framework","authors":["Y. Shen","M. Jeganathan","B. Decraene","H. Gredler","C. Michel","H. Chen"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc868":{"aliasOf":"rfc0868"},"rfc8680":{"rfcNumber":"RFC8680","href":"https://www.rfc-editor.org/rfc/rfc8680","title":"Forward Error Correction (FEC) Framework Extension to Sliding Window Codes","authors":["V. Roca","A. Begen"],"rawDate":"2020-01","status":"Proposed Standard","updates":["RFC6363"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8681":{"rfcNumber":"RFC8681","href":"https://www.rfc-editor.org/rfc/rfc8681","title":"Sliding Window Random Linear Code (RLC) Forward Erasure Correction (FEC) Schemes for FECFRAME","authors":["V. Roca","B. Teibi"],"rawDate":"2020-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8682":{"rfcNumber":"RFC8682","href":"https://www.rfc-editor.org/rfc/rfc8682","title":"TinyMT32 Pseudorandom Number Generator (PRNG)","authors":["M. Saito","M. Matsumoto","V. Roca, Ed.","E. Baccelli"],"rawDate":"2020-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8683":{"rfcNumber":"RFC8683","href":"https://www.rfc-editor.org/rfc/rfc8683","title":"Additional Deployment Guidelines for NAT64/464XLAT in Operator and Enterprise Networks","authors":["J. Palet Martinez"],"rawDate":"2019-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8684":{"rfcNumber":"RFC8684","href":"https://www.rfc-editor.org/rfc/rfc8684","title":"TCP Extensions for Multipath Operation with Multiple Addresses","authors":["A. Ford","C. Raiciu","M. Handley","O. Bonaventure","C. Paasch"],"rawDate":"2020-03","status":"Proposed Standard","obsoletes":["RFC6824"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8684","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8685":{"rfcNumber":"RFC8685","href":"https://www.rfc-editor.org/rfc/rfc8685","title":"Path Computation Element Communication Protocol (PCEP) Extensions for the Hierarchical Path Computation Element (H-PCE) Architecture","authors":["F. Zhang","Q. Zhao","O. Gonzalez de Dios","R. Casellas","D. King"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8686":{"rfcNumber":"RFC8686","href":"https://www.rfc-editor.org/rfc/rfc8686","title":"Application-Layer Traffic Optimization (ALTO) Cross-Domain Server Discovery","authors":["S. Kiesel","M. Stiemerling"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8687":{"rfcNumber":"RFC8687","href":"https://www.rfc-editor.org/rfc/rfc8687","title":"OSPF Routing with Cross-Address Family Traffic Engineering Tunnels","authors":["A. Smirnov","A. Retana","M. Barnes"],"rawDate":"2019-11","status":"Proposed Standard","updates":["RFC5786"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8688":{"rfcNumber":"RFC8688","href":"https://www.rfc-editor.org/rfc/rfc8688","title":"A Session Initiation Protocol (SIP) Response Code for Rejected Calls","authors":["E.W. Burger","B. Nagda"],"rawDate":"2019-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8688","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8689":{"rfcNumber":"RFC8689","href":"https://www.rfc-editor.org/rfc/rfc8689","title":"SMTP Require TLS Option","authors":["J. Fenton"],"rawDate":"2019-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8689","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc869":{"aliasOf":"rfc0869"},"rfc8690":{"rfcNumber":"RFC8690","href":"https://www.rfc-editor.org/rfc/rfc8690","title":"Clarification of Segment ID Sub-TLV Length for RFC 8287","authors":["N. Nainar","C. Pignataro","F. Iqbal","A. Vainshtein"],"rawDate":"2019-12","status":"Proposed Standard","updates":["RFC8287"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8691":{"rfcNumber":"RFC8691","href":"https://www.rfc-editor.org/rfc/rfc8691","title":"Basic Support for IPv6 Networks Operating Outside the Context of a Basic Service Set over IEEE Std 802.11","authors":["N. Benamar","J. Härri","J. Lee","T. Ernst"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8692":{"rfcNumber":"RFC8692","href":"https://www.rfc-editor.org/rfc/rfc8692","title":"Internet X.509 Public Key Infrastructure: Additional Algorithm Identifiers for RSASSA-PSS and ECDSA Using SHAKEs","authors":["P. Kampanakis","Q. Dang"],"rawDate":"2019-12","status":"Proposed Standard","updates":["RFC3279"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8693":{"rfcNumber":"RFC8693","href":"https://www.rfc-editor.org/rfc/rfc8693","title":"OAuth 2.0 Token Exchange","authors":["M. Jones","A. Nadalin","B. Campbell, Ed.","J. Bradley","C. Mortimore"],"rawDate":"2020-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8693","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8694":{"rfcNumber":"RFC8694","href":"https://www.rfc-editor.org/rfc/rfc8694","title":"Applicability of the Path Computation Element to Inter-area and Inter-AS MPLS and GMPLS Traffic Engineering","authors":["D. King","H. Zheng"],"rawDate":"2019-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8695":{"rfcNumber":"RFC8695","href":"https://www.rfc-editor.org/rfc/rfc8695","title":"A YANG Data Model for the Routing Information Protocol (RIP)","authors":["X. Liu","P. Sarda","V. Choudhary"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8696":{"rfcNumber":"RFC8696","href":"https://www.rfc-editor.org/rfc/rfc8696","title":"Using Pre-Shared Key (PSK) in the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2019-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8697":{"rfcNumber":"RFC8697","href":"https://www.rfc-editor.org/rfc/rfc8697","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Establishing Relationships between Sets of Label Switched Paths (LSPs)","authors":["I. Minei","E. Crabbe","S. Sivabalan","H. Ananthakrishnan","D. Dhody","Y. Tanaka"],"rawDate":"2020-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8698":{"rfcNumber":"RFC8698","href":"https://www.rfc-editor.org/rfc/rfc8698","title":"Network-Assisted Dynamic Adaptation (NADA): A Unified Congestion Control Scheme for Real-Time Media","authors":["X. Zhu","R. Pan","M. Ramalho","S. Mena"],"rawDate":"2020-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8699":{"rfcNumber":"RFC8699","href":"https://www.rfc-editor.org/rfc/rfc8699","title":"Coupled Congestion Control for RTP Media","authors":["S. Islam","M. Welzl","S. Gjessing"],"rawDate":"2020-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc87":{"aliasOf":"rfc0087"},"rfc870":{"aliasOf":"rfc0870"},"rfc8700":{"rfcNumber":"RFC8700","href":"https://www.rfc-editor.org/rfc/rfc8700","title":"Fifty Years of RFCs","authors":["H. Flanagan, Ed."],"rawDate":"2019-12","status":"Informational","updates":["RFC2555","RFC5540"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8700","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8701":{"rfcNumber":"RFC8701","href":"https://www.rfc-editor.org/rfc/rfc8701","title":"Applying Generate Random Extensions And Sustain Extensibility (GREASE) to TLS Extensibility","authors":["D. Benjamin"],"rawDate":"2020-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8702":{"rfcNumber":"RFC8702","href":"https://www.rfc-editor.org/rfc/rfc8702","title":"Use of the SHAKE One-Way Hash Functions in the Cryptographic Message Syntax (CMS)","authors":["P. Kampanakis","Q. Dang"],"rawDate":"2020-01","status":"Proposed Standard","updates":["RFC3370"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8702","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8703":{"rfcNumber":"RFC8703","href":"https://www.rfc-editor.org/rfc/rfc8703","title":"Dynamic Link Exchange Protocol (DLEP) Link Identifier Extension","authors":["R. Taylor","S. Ratliff"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8704":{"rfcNumber":"RFC8704","href":"https://www.rfc-editor.org/rfc/rfc8704","title":"Enhanced Feasible-Path Unicast Reverse Path Forwarding","authors":["K. Sriram","D. Montgomery","J. Haas"],"rawDate":"2020-02","status":"Best Current Practice","updates":["RFC3704"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8705":{"rfcNumber":"RFC8705","href":"https://www.rfc-editor.org/rfc/rfc8705","title":"OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens","authors":["B. Campbell","J. Bradley","N. Sakimura","T. Lodderstedt"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8706":{"rfcNumber":"RFC8706","href":"https://www.rfc-editor.org/rfc/rfc8706","title":"Restart Signaling for IS-IS","authors":["L. Ginsberg","P. Wells"],"rawDate":"2020-02","status":"Proposed Standard","obsoletes":["RFC5306"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8707":{"rfcNumber":"RFC8707","href":"https://www.rfc-editor.org/rfc/rfc8707","title":"Resource Indicators for OAuth 2.0","authors":["B. Campbell","J. Bradley","H. Tschofenig"],"rawDate":"2020-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8707","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8708":{"rfcNumber":"RFC8708","href":"https://www.rfc-editor.org/rfc/rfc8708","title":"Use of the HSS/LMS Hash-Based Signature Algorithm in the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8709":{"rfcNumber":"RFC8709","href":"https://www.rfc-editor.org/rfc/rfc8709","title":"Ed25519 and Ed448 Public Key Algorithms for the Secure Shell (SSH) Protocol","authors":["B. Harris","L. Velvindron"],"rawDate":"2020-02","status":"Proposed Standard","updates":["RFC4253"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8709","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc871":{"aliasOf":"rfc0871"},"rfc8710":{"rfcNumber":"RFC8710","href":"https://www.rfc-editor.org/rfc/rfc8710","title":"Multipart Content-Format for the Constrained Application Protocol (CoAP)","authors":["T. Fossati","K. Hartke","C. Bormann"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8711":{"rfcNumber":"RFC8711","href":"https://www.rfc-editor.org/rfc/rfc8711","title":"Structure of the IETF Administrative Support Activity, Version 2.0","authors":["B. Haberman","J. Hall","J. Livingood"],"rawDate":"2020-02","status":"Best Current Practice","obsoletes":["RFC4071","RFC4333","RFC7691"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8712":{"rfcNumber":"RFC8712","href":"https://www.rfc-editor.org/rfc/rfc8712","title":"The IETF-ISOC Relationship","authors":["G. Camarillo","J. Livingood"],"rawDate":"2020-02","status":"Informational","obsoletes":["RFC2031"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8713":{"rfcNumber":"RFC8713","href":"https://www.rfc-editor.org/rfc/rfc8713","title":"IAB, IESG, IETF Trust, and IETF LLC Selection, Confirmation, and Recall Process: Operation of the IETF Nominating and Recall Committees","authors":["M. Kucherawy, Ed.","R. Hinden, Ed.","J. Livingood, Ed."],"rawDate":"2020-02","status":"Best Current Practice","updatedBy":["RFC9389"],"obsoletes":["RFC7437","RFC8318"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8713","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8714":{"rfcNumber":"RFC8714","href":"https://www.rfc-editor.org/rfc/rfc8714","title":"Update to the Process for Selection of Trustees for the IETF Trust","authors":["J. Arkko","T. Hardie"],"rawDate":"2020-02","status":"Best Current Practice","obsoletes":["RFC4371"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8714","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8715":{"rfcNumber":"RFC8715","href":"https://www.rfc-editor.org/rfc/rfc8715","title":"IETF Administrative Support Activity 2.0: Update to the Process for Selection of Trustees for the IETF Trust","authors":["J. Arkko"],"rawDate":"2020-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8716":{"rfcNumber":"RFC8716","href":"https://www.rfc-editor.org/rfc/rfc8716","title":"Update to the IETF Anti-Harassment Procedures for the Replacement of the IETF Administrative Oversight Committee (IAOC) with the IETF Administration LLC","authors":["P. Resnick","A. Farrel"],"rawDate":"2020-02","status":"Best Current Practice","updates":["RFC7776"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8717":{"rfcNumber":"RFC8717","href":"https://www.rfc-editor.org/rfc/rfc8717","title":"IETF Administrative Support Activity 2.0: Consolidated Updates to IETF Administrative Terminology","authors":["J. Klensin, Ed."],"rawDate":"2020-02","status":"Best Current Practice","updates":["RFC2028","RFC2418","RFC3005","RFC3710","RFC3929","RFC4633","RFC6702"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8718":{"rfcNumber":"RFC8718","href":"https://www.rfc-editor.org/rfc/rfc8718","title":"IETF Plenary Meeting Venue Selection Process","authors":["E. Lear, Ed."],"rawDate":"2020-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8719":{"rfcNumber":"RFC8719","href":"https://www.rfc-editor.org/rfc/rfc8719","title":"High-Level Guidance for the Meeting Policy of the IETF","authors":["S. Krishnan"],"rawDate":"2020-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc872":{"aliasOf":"rfc0872"},"rfc8720":{"rfcNumber":"RFC8720","href":"https://www.rfc-editor.org/rfc/rfc8720","title":"Principles for Operation of Internet Assigned Numbers Authority (IANA) Registries","authors":["R. Housley, Ed.","O. Kolkman, Ed."],"rawDate":"2020-02","status":"Informational","obsoletes":["RFC7500"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8721":{"rfcNumber":"RFC8721","href":"https://www.rfc-editor.org/rfc/rfc8721","title":"Advice to the Trustees of the IETF Trust on Rights to Be Granted in IETF Documents","authors":["J. Halpern, Ed."],"rawDate":"2020-02","status":"Informational","obsoletes":["RFC5377"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8722":{"rfcNumber":"RFC8722","href":"https://www.rfc-editor.org/rfc/rfc8722","title":"Defining the Role and Function of IETF Protocol Parameter Registry Operators","authors":["D. McPherson, Ed.","O. Kolkman, Ed.","J. Klensin, Ed.","G. Huston, Ed."],"rawDate":"2020-02","status":"Informational","obsoletes":["RFC6220"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8723":{"rfcNumber":"RFC8723","href":"https://www.rfc-editor.org/rfc/rfc8723","title":"Double Encryption Procedures for the Secure Real-Time Transport Protocol (SRTP)","authors":["C. Jennings","P. Jones","R. Barnes","A.B. Roach"],"rawDate":"2020-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8724":{"rfcNumber":"RFC8724","href":"https://www.rfc-editor.org/rfc/rfc8724","title":"SCHC: Generic Framework for Static Context Header Compression and Fragmentation","authors":["A. Minaburo","L. Toutain","C. Gomez","D. Barthel","JC. Zuniga"],"rawDate":"2020-04","status":"Proposed Standard","updatedBy":["RFC9441"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8725":{"rfcNumber":"RFC8725","href":"https://www.rfc-editor.org/rfc/rfc8725","title":"JSON Web Token Best Current Practices","authors":["Y. Sheffer","D. Hardt","M. Jones"],"rawDate":"2020-02","status":"Best Current Practice","updates":["RFC7519"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8726":{"rfcNumber":"RFC8726","href":"https://www.rfc-editor.org/rfc/rfc8726","title":"How Requests for IANA Action Will Be Handled on the Independent Stream","authors":["A. Farrel"],"rawDate":"2020-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8727":{"rfcNumber":"RFC8727","href":"https://www.rfc-editor.org/rfc/rfc8727","title":"JSON Binding of the Incident Object Description Exchange Format","authors":["T. Takahashi","R. Danyliw","M. Suzuki"],"rawDate":"2020-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8727","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8728":{"rfcNumber":"RFC8728","href":"https://www.rfc-editor.org/rfc/rfc8728","title":"RFC Editor Model (Version 2)","authors":["O. Kolkman, Ed.","J. Halpern, Ed.","R. Hinden, Ed."],"rawDate":"2020-02","status":"Informational","obsoletedBy":["RFC9280"],"obsoletes":["RFC6635"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8729":{"rfcNumber":"RFC8729","href":"https://www.rfc-editor.org/rfc/rfc8729","title":"The RFC Series and RFC Editor","authors":["R. Housley, Ed.","L. Daigle, Ed."],"rawDate":"2020-02","status":"Informational","updatedBy":["RFC9280"],"obsoletes":["RFC4844"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc873":{"aliasOf":"rfc0873"},"rfc8730":{"rfcNumber":"RFC8730","href":"https://www.rfc-editor.org/rfc/rfc8730","title":"Independent Submission Editor Model","authors":["N. Brownlee, Ed.","B. Hinden, Ed."],"rawDate":"2020-02","status":"Informational","updatedBy":["RFC9280"],"obsoletes":["RFC6548"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8731":{"rfcNumber":"RFC8731","href":"https://www.rfc-editor.org/rfc/rfc8731","title":"Secure Shell (SSH) Key Exchange Method Using Curve25519 and Curve448","authors":["A. Adamantiadis","S. Josefsson","M. Baushke"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8732":{"rfcNumber":"RFC8732","href":"https://www.rfc-editor.org/rfc/rfc8732","title":"Generic Security Service Application Program Interface (GSS-API) Key Exchange with SHA-2","authors":["S. Sorce","H. Kario"],"rawDate":"2020-02","status":"Proposed Standard","updates":["RFC4462"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8733":{"rfcNumber":"RFC8733","href":"https://www.rfc-editor.org/rfc/rfc8733","title":"Path Computation Element Communication Protocol (PCEP) Extensions for MPLS-TE Label Switched Path (LSP) Auto-Bandwidth Adjustment with Stateful PCE","authors":["D. Dhody, Ed.","R. Gandhi, Ed.","U. Palle","R. Singh","L. Fang"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8734":{"rfcNumber":"RFC8734","href":"https://www.rfc-editor.org/rfc/rfc8734","title":"Elliptic Curve Cryptography (ECC) Brainpool Curves for Transport Layer Security (TLS) Version 1.3","authors":["L. Bruckert","J. Merkle","M. Lochter"],"rawDate":"2020-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8735":{"rfcNumber":"RFC8735","href":"https://www.rfc-editor.org/rfc/rfc8735","title":"Scenarios and Simulation Results of PCE in a Native IP Network","authors":["A. Wang","X. Huang","C. Kou","Z. Li","P. Mi"],"rawDate":"2020-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8736":{"rfcNumber":"RFC8736","href":"https://www.rfc-editor.org/rfc/rfc8736","title":"PIM Message Type Space Extension and Reserved Bits","authors":["S. Venaas","A. Retana"],"rawDate":"2020-02","status":"Proposed Standard","obsoletedBy":["RFC9436"],"updates":["RFC3973","RFC5015","RFC5059","RFC6754","RFC7761","RFC8364"],"obsoletes":["RFC6166"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8737":{"rfcNumber":"RFC8737","href":"https://www.rfc-editor.org/rfc/rfc8737","title":"Automated Certificate Management Environment (ACME) TLS Application-Layer Protocol Negotiation (ALPN) Challenge Extension","authors":["R.B. Shoemaker"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8738":{"rfcNumber":"RFC8738","href":"https://www.rfc-editor.org/rfc/rfc8738","title":"Automated Certificate Management Environment (ACME) IP Identifier Validation Extension","authors":["R.B. Shoemaker"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8739":{"rfcNumber":"RFC8739","href":"https://www.rfc-editor.org/rfc/rfc8739","title":"Support for Short-Term, Automatically Renewed (STAR) Certificates in the Automated Certificate Management Environment (ACME)","authors":["Y. Sheffer","D. Lopez","O. Gonzalez de Dios","A. Pastor Perales","T. Fossati"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc874":{"aliasOf":"rfc0874"},"rfc8740":{"rfcNumber":"RFC8740","href":"https://www.rfc-editor.org/rfc/rfc8740","title":"Using TLS 1.3 with HTTP/2","authors":["D. Benjamin"],"rawDate":"2020-02","status":"Proposed Standard","obsoletedBy":["RFC9113"],"updates":["RFC7540"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8741":{"rfcNumber":"RFC8741","href":"https://www.rfc-editor.org/rfc/rfc8741","title":"Ability for a Stateful Path Computation Element (PCE) to Request and Obtain Control of a Label Switched Path (LSP)","authors":["A. Raghuram","A. Goddard","J. Karthik","S. Sivabalan","M. Negi"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8742":{"rfcNumber":"RFC8742","href":"https://www.rfc-editor.org/rfc/rfc8742","title":"Concise Binary Object Representation (CBOR) Sequences","authors":["C. Bormann"],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8743":{"rfcNumber":"RFC8743","href":"https://www.rfc-editor.org/rfc/rfc8743","title":"Multiple Access Management Services Multi-Access Management Services (MAMS)","authors":["S. Kanugovi","F. Baboescu","J. Zhu","S. Seo"],"rawDate":"2020-03","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8743","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8744":{"rfcNumber":"RFC8744","href":"https://www.rfc-editor.org/rfc/rfc8744","title":"Issues and Requirements for Server Name Identification (SNI) Encryption in TLS","authors":["C. Huitema"],"rawDate":"2020-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8745":{"rfcNumber":"RFC8745","href":"https://www.rfc-editor.org/rfc/rfc8745","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Associating Working and Protection Label Switched Paths (LSPs) with Stateful PCE","authors":["H. Ananthakrishnan","S. Sivabalan","C. Barth","I. Minei","M. Negi"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8746":{"rfcNumber":"RFC8746","href":"https://www.rfc-editor.org/rfc/rfc8746","title":"Concise Binary Object Representation (CBOR) Tags for Typed Arrays","authors":["C. Bormann, Ed."],"rawDate":"2020-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8747":{"rfcNumber":"RFC8747","href":"https://www.rfc-editor.org/rfc/rfc8747","title":"Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)","authors":["M. Jones","L. Seitz","G. Selander","S. Erdtman","H. Tschofenig"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8748":{"rfcNumber":"RFC8748","href":"https://www.rfc-editor.org/rfc/rfc8748","title":"Registry Fee Extension for the Extensible Provisioning Protocol (EPP)","authors":["R. Carney","G. Brown","J. Frakes"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8749":{"rfcNumber":"RFC8749","href":"https://www.rfc-editor.org/rfc/rfc8749","title":"Moving DNSSEC Lookaside Validation (DLV) to Historic Status","authors":["W. Mekking","D. Mahoney"],"rawDate":"2020-03","status":"Proposed Standard","updates":["RFC6698","RFC6840"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc875":{"aliasOf":"rfc0875"},"rfc8750":{"rfcNumber":"RFC8750","href":"https://www.rfc-editor.org/rfc/rfc8750","title":"Implicit Initialization Vector (IV) for Counter-Based Ciphers in Encapsulating Security Payload (ESP)","authors":["D. Migault","T. Guggemos","Y. Nir"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8751":{"rfcNumber":"RFC8751","href":"https://www.rfc-editor.org/rfc/rfc8751","title":"Hierarchical Stateful Path Computation Element (PCE)","authors":["D. Dhody","Y. Lee","D. Ceccarelli","J. Shin","D. King"],"rawDate":"2020-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8752":{"rfcNumber":"RFC8752","href":"https://www.rfc-editor.org/rfc/rfc8752","title":"Report from the IAB Workshop on Exploring Synergy between Content Aggregation and the Publisher Ecosystem (ESCAPE)","authors":["M. Thomson","M. Nottingham"],"rawDate":"2020-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8753":{"rfcNumber":"RFC8753","href":"https://www.rfc-editor.org/rfc/rfc8753","title":"Internationalized Domain Names for Applications (IDNA) Review for New Unicode Versions","authors":["J. Klensin","P. Fältström"],"rawDate":"2020-04","status":"Proposed Standard","updates":["RFC5892"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8754":{"rfcNumber":"RFC8754","href":"https://www.rfc-editor.org/rfc/rfc8754","title":"IPv6 Segment Routing Header (SRH)","authors":["C. Filsfils, Ed.","D. Dukes, Ed.","S. Previdi","J. Leddy","S. Matsushima","D. Voyer"],"rawDate":"2020-03","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8754","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8755":{"rfcNumber":"RFC8755","href":"https://www.rfc-editor.org/rfc/rfc8755","title":"Using Commercial National Security Algorithm Suite Algorithms in Secure/Multipurpose Internet Mail Extensions","authors":["M. Jenkins"],"rawDate":"2020-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8756":{"rfcNumber":"RFC8756","href":"https://www.rfc-editor.org/rfc/rfc8756","title":"Commercial National Security Algorithm (CNSA) Suite Profile of Certificate Management over CMS","authors":["M. Jenkins","L. Zieglar"],"rawDate":"2020-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8757":{"rfcNumber":"RFC8757","href":"https://www.rfc-editor.org/rfc/rfc8757","title":"Dynamic Link Exchange Protocol (DLEP) Latency Range Extension","authors":["B. Cheng","L. Berger, Ed."],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8758":{"rfcNumber":"RFC8758","href":"https://www.rfc-editor.org/rfc/rfc8758","title":"Deprecating RC4 in Secure Shell (SSH)","authors":["L. Velvindron"],"rawDate":"2020-04","status":"Best Current Practice","updates":["RFC4253"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8759":{"rfcNumber":"RFC8759","href":"https://www.rfc-editor.org/rfc/rfc8759","title":"RTP Payload for Timed Text Markup Language (TTML)","authors":["J. Sandford"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc876":{"aliasOf":"rfc0876"},"rfc8760":{"rfcNumber":"RFC8760","href":"https://www.rfc-editor.org/rfc/rfc8760","title":"The Session Initiation Protocol (SIP) Digest Access Authentication Scheme","authors":["R. Shekh-Yusef"],"rawDate":"2020-03","status":"Proposed Standard","updates":["RFC3261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8761":{"rfcNumber":"RFC8761","href":"https://www.rfc-editor.org/rfc/rfc8761","title":"Video Codec Requirements and Evaluation Methodology","authors":["A. Filippov","A. Norkin","J.R. Alvarez"],"rawDate":"2020-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8762":{"rfcNumber":"RFC8762","href":"https://www.rfc-editor.org/rfc/rfc8762","title":"Simple Two-Way Active Measurement Protocol","authors":["G. Mirsky","G. Jun","H. Nydell","R. Foote"],"rawDate":"2020-03","status":"Proposed Standard","updatedBy":["RFC8972"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8763":{"rfcNumber":"RFC8763","href":"https://www.rfc-editor.org/rfc/rfc8763","title":"Deployment Considerations for Information-Centric Networking (ICN)","authors":["A. Rahman","D. Trossen","D. Kutscher","R. Ravindran"],"rawDate":"2020-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8764":{"rfcNumber":"RFC8764","href":"https://www.rfc-editor.org/rfc/rfc8764","title":"Apple's DNS Long-Lived Queries Protocol","authors":["S. Cheshire","M. Krochmal"],"rawDate":"2020-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8765":{"rfcNumber":"RFC8765","href":"https://www.rfc-editor.org/rfc/rfc8765","title":"DNS Push Notifications","authors":["T. Pusateri","S. Cheshire"],"rawDate":"2020-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8766":{"rfcNumber":"RFC8766","href":"https://www.rfc-editor.org/rfc/rfc8766","title":"Discovery Proxy for Multicast DNS-Based Service Discovery","authors":["S. Cheshire"],"rawDate":"2020-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8767":{"rfcNumber":"RFC8767","href":"https://www.rfc-editor.org/rfc/rfc8767","title":"Serving Stale Data to Improve DNS Resiliency","authors":["D. Lawrence","W. Kumari","P. Sood"],"rawDate":"2020-03","status":"Proposed Standard","updates":["RFC1034","RFC1035","RFC2181"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8768":{"rfcNumber":"RFC8768","href":"https://www.rfc-editor.org/rfc/rfc8768","title":"Constrained Application Protocol (CoAP) Hop-Limit Option","authors":["M. Boucadair","T. Reddy.K","J. Shallow"],"rawDate":"2020-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8769":{"rfcNumber":"RFC8769","href":"https://www.rfc-editor.org/rfc/rfc8769","title":"Cryptographic Message Syntax (CMS) Content Types for Concise Binary Object Representation (CBOR)","authors":["J. Schaad"],"rawDate":"2020-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc877":{"aliasOf":"rfc0877"},"rfc8770":{"rfcNumber":"RFC8770","href":"https://www.rfc-editor.org/rfc/rfc8770","title":"Host Router Support for OSPFv2","authors":["K. Patel","P. Pillay-Esnault","M. Bhardwaj","S. Bayraktar"],"rawDate":"2020-04","status":"Proposed Standard","updates":["RFC6987"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8771":{"rfcNumber":"RFC8771","href":"https://www.rfc-editor.org/rfc/rfc8771","title":"The Internationalized Deliberately Unreadable Network NOtation (I-DUNNO)","authors":["A. Mayrhofer","J. Hague"],"rawDate":"2020-04-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8772":{"rfcNumber":"RFC8772","href":"https://www.rfc-editor.org/rfc/rfc8772","title":"The China Mobile, Huawei, and ZTE Broadband Network Gateway (BNG) Simple Control and User Plane Separation Protocol (S-CUSP)","authors":["S. Hu","D. Eastlake","F. Qin","T. Chua","D. Huang"],"rawDate":"2020-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8773":{"rfcNumber":"RFC8773","href":"https://www.rfc-editor.org/rfc/rfc8773","title":"TLS 1.3 Extension for Certificate-Based Authentication with an External Pre-Shared Key","authors":["R. Housley"],"rawDate":"2020-03","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8773","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8774":{"rfcNumber":"RFC8774","href":"https://www.rfc-editor.org/rfc/rfc8774","title":"The Quantum Bug","authors":["M. Welzl"],"rawDate":"2020-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8774","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8775":{"rfcNumber":"RFC8775","href":"https://www.rfc-editor.org/rfc/rfc8775","title":"PIM Designated Router Load Balancing","authors":["Y. Cai","H. Ou","S. Vallepalli","M. Mishra","S. Venaas","A. Green"],"rawDate":"2020-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8776":{"rfcNumber":"RFC8776","href":"https://www.rfc-editor.org/rfc/rfc8776","title":"Common YANG Data Types for Traffic Engineering","authors":["T. Saad","R. Gandhi","X. Liu","V. Beeram","I. Bryskin"],"rawDate":"2020-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8777":{"rfcNumber":"RFC8777","href":"https://www.rfc-editor.org/rfc/rfc8777","title":"DNS Reverse IP Automatic Multicast Tunneling (AMT) Discovery","authors":["J. Holland"],"rawDate":"2020-04","status":"Proposed Standard","updates":["RFC7450"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8777","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8778":{"rfcNumber":"RFC8778","href":"https://www.rfc-editor.org/rfc/rfc8778","title":"Use of the HSS/LMS Hash-Based Signature Algorithm with CBOR Object Signing and Encryption (COSE)","authors":["R. Housley"],"rawDate":"2020-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8779":{"rfcNumber":"RFC8779","href":"https://www.rfc-editor.org/rfc/rfc8779","title":"Path Computation Element Communication Protocol (PCEP) Extensions for GMPLS","authors":["C. Margaria, Ed.","O. Gonzalez de Dios, Ed.","F. Zhang, Ed."],"rawDate":"2020-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc878":{"aliasOf":"rfc0878"},"rfc8780":{"rfcNumber":"RFC8780","href":"https://www.rfc-editor.org/rfc/rfc8780","title":"The Path Computation Element Communication Protocol (PCEP) Extension for Wavelength Switched Optical Network (WSON) Routing and Wavelength Assignment (RWA)","authors":["Y. Lee, Ed.","R. Casellas, Ed."],"rawDate":"2020-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8781":{"rfcNumber":"RFC8781","href":"https://www.rfc-editor.org/rfc/rfc8781","title":"Discovering PREF64 in Router Advertisements","authors":["L. Colitti","J. Linkova"],"rawDate":"2020-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8782":{"rfcNumber":"RFC8782","href":"https://www.rfc-editor.org/rfc/rfc8782","title":"Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel Specification","authors":["T. Reddy.K, Ed.","M. Boucadair, Ed.","P. Patil","A. Mortensen","N. Teague"],"rawDate":"2020-05","status":"Proposed Standard","obsoletedBy":["RFC9132"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8782","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8783":{"rfcNumber":"RFC8783","href":"https://www.rfc-editor.org/rfc/rfc8783","title":"Distributed Denial-of-Service Open Threat Signaling (DOTS) Data Channel Specification","authors":["M. Boucadair, Ed.","T. Reddy.K, Ed."],"rawDate":"2020-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8783","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8784":{"rfcNumber":"RFC8784","href":"https://www.rfc-editor.org/rfc/rfc8784","title":"Mixing Preshared Keys in the Internet Key Exchange Protocol Version 2 (IKEv2) for Post-quantum Security","authors":["S. Fluhrer","P. Kampanakis","D. McGrew","V. Smyslov"],"rawDate":"2020-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8785":{"rfcNumber":"RFC8785","href":"https://www.rfc-editor.org/rfc/rfc8785","title":"JSON Canonicalization Scheme (JCS)","authors":["A. Rundgren","B. Jordan","S. Erdtman"],"rawDate":"2020-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8785","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8786":{"rfcNumber":"RFC8786","href":"https://www.rfc-editor.org/rfc/rfc8786","title":"Updated Rules for Processing Stateful PCE Request Parameters Flags","authors":["A. Farrel"],"rawDate":"2020-05","status":"Proposed Standard","updates":["RFC8231"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8787":{"rfcNumber":"RFC8787","href":"https://www.rfc-editor.org/rfc/rfc8787","title":"Location Source Parameter for the SIP Geolocation Header Field","authors":["J. Winterbottom","R. Jesske","B. Chatras","A. Hutton"],"rawDate":"2020-05","status":"Proposed Standard","updates":["RFC6442"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8788":{"rfcNumber":"RFC8788","href":"https://www.rfc-editor.org/rfc/rfc8788","title":"Eligibility for the 2020-2021 Nominating Committee","authors":["B. Leiba"],"rawDate":"2020-05","status":"Best Current Practice","obsoletedBy":["RFC9389"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8789":{"rfcNumber":"RFC8789","href":"https://www.rfc-editor.org/rfc/rfc8789","title":"IETF Stream Documents Require IETF Rough Consensus","authors":["J. Halpern, Ed.","E. Rescorla, Ed."],"rawDate":"2020-06","status":"Best Current Practice","updates":["RFC2026"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc879":{"aliasOf":"rfc0879"},"rfc8790":{"rfcNumber":"RFC8790","href":"https://www.rfc-editor.org/rfc/rfc8790","title":"FETCH and PATCH with Sensor Measurement Lists (SenML)","authors":["A. Keränen","M. Mohajer"],"rawDate":"2020-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8791":{"rfcNumber":"RFC8791","href":"https://www.rfc-editor.org/rfc/rfc8791","title":"YANG Data Structure Extensions","authors":["A. Bierman","M. Björklund","K. Watsen"],"rawDate":"2020-06","status":"Proposed Standard","updates":["RFC8340"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8792":{"rfcNumber":"RFC8792","href":"https://www.rfc-editor.org/rfc/rfc8792","title":"Handling Long Lines in Content of Internet-Drafts and RFCs","authors":["K. Watsen","E. Auerswald","A. Farrel","Q. Wu"],"rawDate":"2020-06","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8792","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8793":{"rfcNumber":"RFC8793","href":"https://www.rfc-editor.org/rfc/rfc8793","title":"Information-Centric Networking (ICN): Content-Centric Networking (CCNx) and Named Data Networking (NDN) Terminology","authors":["B. Wissingh","C. Wood","A. Afanasyev","L. Zhang","D. Oran","C. Tschudin"],"rawDate":"2020-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8794":{"rfcNumber":"RFC8794","href":"https://www.rfc-editor.org/rfc/rfc8794","title":"Extensible Binary Meta Language","authors":["S. Lhomme","D. Rice","M. Bunkus"],"rawDate":"2020-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8794","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8795":{"rfcNumber":"RFC8795","href":"https://www.rfc-editor.org/rfc/rfc8795","title":"YANG Data Model for Traffic Engineering (TE) Topologies","authors":["X. Liu","I. Bryskin","V. Beeram","T. Saad","H. Shah","O. Gonzalez de Dios"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8796":{"rfcNumber":"RFC8796","href":"https://www.rfc-editor.org/rfc/rfc8796","title":"RSVP-TE Summary Fast Reroute Extensions for Label Switched Path (LSP) Tunnels","authors":["M. Taillon","T. Saad, Ed.","R. Gandhi","A. Deshmukh","M. Jork","V. Beeram"],"rawDate":"2020-07","status":"Proposed Standard","updates":["RFC4090"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8797":{"rfcNumber":"RFC8797","href":"https://www.rfc-editor.org/rfc/rfc8797","title":"Remote Direct Memory Access - Connection Manager (RDMA-CM) Private Data for RPC-over-RDMA Version 1","authors":["C. Lever"],"rawDate":"2020-06","status":"Proposed Standard","updates":["RFC8166"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8798":{"rfcNumber":"RFC8798","href":"https://www.rfc-editor.org/rfc/rfc8798","title":"Additional Units for Sensor Measurement Lists (SenML)","authors":["C. Bormann"],"rawDate":"2020-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8799":{"rfcNumber":"RFC8799","href":"https://www.rfc-editor.org/rfc/rfc8799","title":"Limited Domains and Internet Protocols","authors":["B. Carpenter","B. Liu"],"rawDate":"2020-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc88":{"aliasOf":"rfc0088"},"rfc880":{"aliasOf":"rfc0880"},"rfc8800":{"rfcNumber":"RFC8800","href":"https://www.rfc-editor.org/rfc/rfc8800","title":"Path Computation Element Communication Protocol (PCEP) Extension for Label Switched Path (LSP) Diversity Constraint Signaling","authors":["S. Litkowski","S. Sivabalan","C. Barth","M. Negi"],"rawDate":"2020-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8801":{"rfcNumber":"RFC8801","href":"https://www.rfc-editor.org/rfc/rfc8801","title":"Discovering Provisioning Domain Names and Data","authors":["P. Pfister","É. Vyncke","T. Pauly","D. Schinazi","W. Shao"],"rawDate":"2020-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8802":{"rfcNumber":"RFC8802","href":"https://www.rfc-editor.org/rfc/rfc8802","title":"The Quality for Service (Q4S) Protocol","authors":["J.J. Aranda","M. Cortes","J. Salvachúa","M. Narganes","I. Martínez-Sarriegui"],"rawDate":"2020-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8803":{"rfcNumber":"RFC8803","href":"https://www.rfc-editor.org/rfc/rfc8803","title":"0-RTT TCP Convert Protocol","authors":["O. Bonaventure, Ed.","M. Boucadair, Ed.","S. Gundavelli","S. Seo","B. Hesmans"],"rawDate":"2020-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8804":{"rfcNumber":"RFC8804","href":"https://www.rfc-editor.org/rfc/rfc8804","title":"Content Delivery Network Interconnection (CDNI) Request Routing Extensions","authors":["O. Finkelman","S. Mishra"],"rawDate":"2020-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8805":{"rfcNumber":"RFC8805","href":"https://www.rfc-editor.org/rfc/rfc8805","title":"A Format for Self-Published IP Geolocation Feeds","authors":["E. Kline","K. Duleba","Z. Szamonek","S. Moser","W. Kumari"],"rawDate":"2020-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8806":{"rfcNumber":"RFC8806","href":"https://www.rfc-editor.org/rfc/rfc8806","title":"Running a Root Server Local to a Resolver","authors":["W. Kumari","P. Hoffman"],"rawDate":"2020-06","status":"Informational","obsoletes":["RFC7706"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8806","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8807":{"rfcNumber":"RFC8807","href":"https://www.rfc-editor.org/rfc/rfc8807","title":"Login Security Extension for the Extensible Provisioning Protocol (EPP)","authors":["J. Gould","M. Pozun"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8808":{"rfcNumber":"RFC8808","href":"https://www.rfc-editor.org/rfc/rfc8808","title":"A YANG Data Model for Factory Default Settings","authors":["Q. Wu","B. Lengyel","Y. Niu"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8809":{"rfcNumber":"RFC8809","href":"https://www.rfc-editor.org/rfc/rfc8809","title":"Registries for Web Authentication (WebAuthn)","authors":["J. Hodges","G. Mandyam","M. Jones"],"rawDate":"2020-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc881":{"aliasOf":"rfc0881"},"rfc8810":{"rfcNumber":"RFC8810","href":"https://www.rfc-editor.org/rfc/rfc8810","title":"Revision to Capability Codes Registration Procedures","authors":["J. Scudder"],"rawDate":"2020-08","status":"Proposed Standard","updates":["RFC5492"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8811":{"rfcNumber":"RFC8811","href":"https://www.rfc-editor.org/rfc/rfc8811","title":"DDoS Open Threat Signaling (DOTS) Architecture","authors":["A. Mortensen, Ed.","T. Reddy.K, Ed.","F. Andreasen","N. Teague","R. Compton"],"rawDate":"2020-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8812":{"rfcNumber":"RFC8812","href":"https://www.rfc-editor.org/rfc/rfc8812","title":"CBOR Object Signing and Encryption (COSE) and JSON Object Signing and Encryption (JOSE) Registrations for Web Authentication (WebAuthn) Algorithms","authors":["M. Jones"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8813":{"rfcNumber":"RFC8813","href":"https://www.rfc-editor.org/rfc/rfc8813","title":"Clarifications for Elliptic Curve Cryptography Subject Public Key Information","authors":["T. Ito","S. Turner"],"rawDate":"2020-08","status":"Proposed Standard","updates":["RFC5480"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8814":{"rfcNumber":"RFC8814","href":"https://www.rfc-editor.org/rfc/rfc8814","title":"Signaling Maximum SID Depth (MSD) Using the Border Gateway Protocol - Link State","authors":["J. Tantsura","U. Chunduri","K. Talaulikar","G. Mirsky","N. Triantafillis"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8815":{"rfcNumber":"RFC8815","href":"https://www.rfc-editor.org/rfc/rfc8815","title":"Deprecating Any-Source Multicast (ASM) for Interdomain Multicast","authors":["M. Abrahamsson","T. Chown","L. Giuliano","T. Eckert"],"rawDate":"2020-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8816":{"rfcNumber":"RFC8816","href":"https://www.rfc-editor.org/rfc/rfc8816","title":"Secure Telephone Identity Revisited (STIR) Out-of-Band Architecture and Use Cases","authors":["E. Rescorla","J. Peterson"],"rawDate":"2021-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8817":{"rfcNumber":"RFC8817","href":"https://www.rfc-editor.org/rfc/rfc8817","title":"RTP Payload Format for Tactical Secure Voice Cryptographic Interoperability Specification (TSVCIS) Codec","authors":["V. Demjanenko","J. Punaro","D. Satterlee"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8818":{"rfcNumber":"RFC8818","href":"https://www.rfc-editor.org/rfc/rfc8818","title":"Distributed Mobility Anchoring","authors":["H. Chan, Ed.","X. Wei","J. Lee","S. Jeon","CJ. Bernardos, Ed."],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8819":{"rfcNumber":"RFC8819","href":"https://www.rfc-editor.org/rfc/rfc8819","title":"YANG Module Tags","authors":["C. Hopps","L. Berger","D. Bogdanovic"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC8407"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc882":{"aliasOf":"rfc0882"},"rfc8820":{"rfcNumber":"RFC8820","href":"https://www.rfc-editor.org/rfc/rfc8820","title":"URI Design and Ownership","authors":["M. Nottingham"],"rawDate":"2020-06","status":"Best Current Practice","updates":["RFC3986"],"obsoletes":["RFC7320"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8821":{"rfcNumber":"RFC8821","href":"https://www.rfc-editor.org/rfc/rfc8821","title":"PCE-Based Traffic Engineering (TE) in Native IP Networks","authors":["A. Wang","B. Khasanov","Q. Zhao","H. Chen"],"rawDate":"2021-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8822":{"rfcNumber":"RFC8822","href":"https://www.rfc-editor.org/rfc/rfc8822","title":"5G Wireless Wireline Convergence User Plane Encapsulation (5WE)","authors":["D. Allan, Ed.","D. Eastlake","D. Woolley"],"rawDate":"2021-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8823":{"rfcNumber":"RFC8823","href":"https://www.rfc-editor.org/rfc/rfc8823","title":"Extensions to Automatic Certificate Management Environment for End-User S/MIME Certificates","authors":["A. Melnikov"],"rawDate":"2021-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8823","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8824":{"rfcNumber":"RFC8824","href":"https://www.rfc-editor.org/rfc/rfc8824","title":"Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)","authors":["A. Minaburo","L. Toutain","R. Andreasen"],"rawDate":"2021-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8824","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8825":{"rfcNumber":"RFC8825","href":"https://www.rfc-editor.org/rfc/rfc8825","title":"Overview: Real-Time Protocols for Browser-Based Applications","authors":["H. Alvestrand"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8826":{"rfcNumber":"RFC8826","href":"https://www.rfc-editor.org/rfc/rfc8826","title":"Security Considerations for WebRTC","authors":["E. Rescorla"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8827":{"rfcNumber":"RFC8827","href":"https://www.rfc-editor.org/rfc/rfc8827","title":"WebRTC Security Architecture","authors":["E. Rescorla"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8828":{"rfcNumber":"RFC8828","href":"https://www.rfc-editor.org/rfc/rfc8828","title":"WebRTC IP Address Handling Requirements","authors":["J. Uberti","G. Shieh"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8829":{"rfcNumber":"RFC8829","href":"https://www.rfc-editor.org/rfc/rfc8829","title":"JavaScript Session Establishment Protocol (JSEP)","authors":["J. Uberti","C. Jennings","E. Rescorla, Ed."],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc883":{"aliasOf":"rfc0883"},"rfc8830":{"rfcNumber":"RFC8830","href":"https://www.rfc-editor.org/rfc/rfc8830","title":"WebRTC MediaStream Identification in the Session Description Protocol","authors":["H. Alvestrand"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8831":{"rfcNumber":"RFC8831","href":"https://www.rfc-editor.org/rfc/rfc8831","title":"WebRTC Data Channels","authors":["R. Jesup","S. Loreto","M. Tüxen"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8832":{"rfcNumber":"RFC8832","href":"https://www.rfc-editor.org/rfc/rfc8832","title":"WebRTC Data Channel Establishment Protocol","authors":["R. Jesup","S. Loreto","M. Tüxen"],"rawDate":"2021-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8832","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8833":{"rfcNumber":"RFC8833","href":"https://www.rfc-editor.org/rfc/rfc8833","title":"Application-Layer Protocol Negotiation (ALPN) for WebRTC","authors":["M. Thomson"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8834":{"rfcNumber":"RFC8834","href":"https://www.rfc-editor.org/rfc/rfc8834","title":"Media Transport and Use of RTP in WebRTC","authors":["C. Perkins","M. Westerlund","J. Ott"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8835":{"rfcNumber":"RFC8835","href":"https://www.rfc-editor.org/rfc/rfc8835","title":"Transports for WebRTC","authors":["H. Alvestrand"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8836":{"rfcNumber":"RFC8836","href":"https://www.rfc-editor.org/rfc/rfc8836","title":"Congestion Control Requirements for Interactive Real-Time Media","authors":["R. Jesup","Z. Sarker, Ed."],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8837":{"rfcNumber":"RFC8837","href":"https://www.rfc-editor.org/rfc/rfc8837","title":"Differentiated Services Code Point (DSCP) Packet Markings for WebRTC QoS","authors":["P. Jones","S. Dhesikan","C. Jennings","D. Druta"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8838":{"rfcNumber":"RFC8838","href":"https://www.rfc-editor.org/rfc/rfc8838","title":"Trickle ICE: Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol","authors":["E. Ivov","J. Uberti","P. Saint-Andre"],"rawDate":"2021-01","status":"Proposed Standard","updatedBy":["RFC8863"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8839":{"rfcNumber":"RFC8839","href":"https://www.rfc-editor.org/rfc/rfc8839","title":"Session Description Protocol (SDP) Offer/Answer Procedures for Interactive Connectivity Establishment (ICE)","authors":["M. Petit-Huguenin","S. Nandakumar","C. Holmberg","A. Keränen","R. Shpount"],"rawDate":"2021-01","status":"Proposed Standard","obsoletes":["RFC5245","RFC6336"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc884":{"aliasOf":"rfc0884"},"rfc8840":{"rfcNumber":"RFC8840","href":"https://www.rfc-editor.org/rfc/rfc8840","title":"A Session Initiation Protocol (SIP) Usage for Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (Trickle ICE)","authors":["E. Ivov","T. Stach","E. Marocco","C. Holmberg"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8841":{"rfcNumber":"RFC8841","href":"https://www.rfc-editor.org/rfc/rfc8841","title":"Session Description Protocol (SDP) Offer/Answer Procedures for Stream Control Transmission Protocol (SCTP) over Datagram Transport Layer Security (DTLS) Transport","authors":["C. Holmberg","R. Shpount","S. Loreto","G. Camarillo"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8842":{"rfcNumber":"RFC8842","href":"https://www.rfc-editor.org/rfc/rfc8842","title":"Session Description Protocol (SDP) Offer/Answer Considerations for Datagram Transport Layer Security (DTLS) and Transport Layer Security (TLS)","authors":["C. Holmberg","R. Shpount"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC5763","RFC7345"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8843":{"rfcNumber":"RFC8843","href":"https://www.rfc-editor.org/rfc/rfc8843","title":"Negotiating Media Multiplexing Using the Session Description Protocol (SDP)","authors":["C. Holmberg","H. Alvestrand","C. Jennings"],"rawDate":"2021-01","status":"Proposed Standard","obsoletedBy":["RFC9143"],"updates":["RFC3264","RFC5888","RFC7941"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8843","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8844":{"rfcNumber":"RFC8844","href":"https://www.rfc-editor.org/rfc/rfc8844","title":"Unknown Key-Share Attacks on Uses of TLS with the Session Description Protocol (SDP)","authors":["M. Thomson","E. Rescorla"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC8122"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8845":{"rfcNumber":"RFC8845","href":"https://www.rfc-editor.org/rfc/rfc8845","title":"Framework for Telepresence Multi-Streams","authors":["M. Duckworth, Ed.","A. Pepperell","S. Wenger"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8846":{"rfcNumber":"RFC8846","href":"https://www.rfc-editor.org/rfc/rfc8846","title":"An XML Schema for the Controlling Multiple Streams for Telepresence (CLUE) Data Model","authors":["R. Presta","S P. Romano"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8847":{"rfcNumber":"RFC8847","href":"https://www.rfc-editor.org/rfc/rfc8847","title":"Protocol for Controlling Multiple Streams for Telepresence (CLUE)","authors":["R. Presta","S P. Romano"],"rawDate":"2021-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8848":{"rfcNumber":"RFC8848","href":"https://www.rfc-editor.org/rfc/rfc8848","title":"Session Signaling for Controlling Multiple Streams for Telepresence (CLUE)","authors":["R. Hanton","P. Kyzivat","L. Xiao","C. Groves"],"rawDate":"2021-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8849":{"rfcNumber":"RFC8849","href":"https://www.rfc-editor.org/rfc/rfc8849","title":"Mapping RTP Streams to Controlling Multiple Streams for Telepresence (CLUE) Media Captures","authors":["R. Even","J. Lennox"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc885":{"aliasOf":"rfc0885"},"rfc8850":{"rfcNumber":"RFC8850","href":"https://www.rfc-editor.org/rfc/rfc8850","title":"Controlling Multiple Streams for Telepresence (CLUE) Protocol Data Channel","authors":["C. Holmberg"],"rawDate":"2021-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8851":{"rfcNumber":"RFC8851","href":"https://www.rfc-editor.org/rfc/rfc8851","title":"RTP Payload Format Restrictions","authors":["A.B. Roach, Ed."],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC4855"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8851","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8852":{"rfcNumber":"RFC8852","href":"https://www.rfc-editor.org/rfc/rfc8852","title":"RTP Stream Identifier Source Description (SDES)","authors":["A.B. Roach","S. Nandakumar","P. Thatcher"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8853":{"rfcNumber":"RFC8853","href":"https://www.rfc-editor.org/rfc/rfc8853","title":"Using Simulcast in Session Description Protocol (SDP) and RTP Sessions","authors":["B. Burman","M. Westerlund","S. Nandakumar","M. Zanaty"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8854":{"rfcNumber":"RFC8854","href":"https://www.rfc-editor.org/rfc/rfc8854","title":"WebRTC Forward Error Correction Requirements","authors":["J. Uberti"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8855":{"rfcNumber":"RFC8855","href":"https://www.rfc-editor.org/rfc/rfc8855","title":"The Binary Floor Control Protocol (BFCP)","authors":["G. Camarillo","K. Drage","T. Kristensen","J. Ott","C. Eckel"],"rawDate":"2021-01","status":"Proposed Standard","obsoletes":["RFC4582"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8856":{"rfcNumber":"RFC8856","href":"https://www.rfc-editor.org/rfc/rfc8856","title":"Session Description Protocol (SDP) Format for Binary Floor Control Protocol (BFCP) Streams","authors":["G. Camarillo","T. Kristensen","C. Holmberg"],"rawDate":"2021-01","status":"Proposed Standard","obsoletes":["RFC4583"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8857":{"rfcNumber":"RFC8857","href":"https://www.rfc-editor.org/rfc/rfc8857","title":"The WebSocket Protocol as a Transport for the Binary Floor Control Protocol (BFCP)","authors":["V. Pascual","A. Román","S. Cazeaux","G. Salgueiro","R. Ravindranath"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8858":{"rfcNumber":"RFC8858","href":"https://www.rfc-editor.org/rfc/rfc8858","title":"Indicating Exclusive Support of RTP and RTP Control Protocol (RTCP) Multiplexing Using the Session Description Protocol (SDP)","authors":["C. Holmberg"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC5761"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8859":{"rfcNumber":"RFC8859","href":"https://www.rfc-editor.org/rfc/rfc8859","title":"A Framework for Session Description Protocol (SDP) Attributes When Multiplexing","authors":["S. Nandakumar"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc886":{"aliasOf":"rfc0886"},"rfc8860":{"rfcNumber":"RFC8860","href":"https://www.rfc-editor.org/rfc/rfc8860","title":"Sending Multiple Types of Media in a Single RTP Session","authors":["M. Westerlund","C. Perkins","J. Lennox"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC3550","RFC3551"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8861":{"rfcNumber":"RFC8861","href":"https://www.rfc-editor.org/rfc/rfc8861","title":"Sending Multiple RTP Streams in a Single RTP Session: Grouping RTP Control Protocol (RTCP) Reception Statistics and Other Feedback","authors":["J. Lennox","M. Westerlund","Q. Wu","C. Perkins"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8862":{"rfcNumber":"RFC8862","href":"https://www.rfc-editor.org/rfc/rfc8862","title":"Best Practices for Securing RTP Media Signaled with SIP","authors":["J. Peterson","R. Barnes","R. Housley"],"rawDate":"2021-01","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8863":{"rfcNumber":"RFC8863","href":"https://www.rfc-editor.org/rfc/rfc8863","title":"Interactive Connectivity Establishment Patiently Awaiting Connectivity (ICE PAC)","authors":["C. Holmberg","J. Uberti"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC8445","RFC8838"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8864":{"rfcNumber":"RFC8864","href":"https://www.rfc-editor.org/rfc/rfc8864","title":"Negotiation Data Channels Using the Session Description Protocol (SDP)","authors":["K. Drage","M. Makaraju","R. Ejzak","J. Marcon","R. Even, Ed."],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8865":{"rfcNumber":"RFC8865","href":"https://www.rfc-editor.org/rfc/rfc8865","title":"T.140 Real-Time Text Conversation over WebRTC Data Channels","authors":["C. Holmberg","G. Hellström"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC8373"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8866":{"rfcNumber":"RFC8866","href":"https://www.rfc-editor.org/rfc/rfc8866","title":"SDP: Session Description Protocol","authors":["A. Begen","P. Kyzivat","C. Perkins","M. Handley"],"rawDate":"2021-01","status":"Proposed Standard","obsoletes":["RFC4566"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8867":{"rfcNumber":"RFC8867","href":"https://www.rfc-editor.org/rfc/rfc8867","title":"Test Cases for Evaluating Congestion Control for Interactive Real-Time Media","authors":["Z. Sarker","V. Singh","X. Zhu","M. Ramalho"],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8868":{"rfcNumber":"RFC8868","href":"https://www.rfc-editor.org/rfc/rfc8868","title":"Evaluating Congestion Control for Interactive Real-Time Media","authors":["V. Singh","J. Ott","S. Holmer"],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8869":{"rfcNumber":"RFC8869","href":"https://www.rfc-editor.org/rfc/rfc8869","title":"Evaluation Test Cases for Interactive Real-Time Media over Wireless Networks","authors":["Z. Sarker","X. Zhu","J. Fu"],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc887":{"aliasOf":"rfc0887"},"rfc8870":{"rfcNumber":"RFC8870","href":"https://www.rfc-editor.org/rfc/rfc8870","title":"Encrypted Key Transport for DTLS and Secure RTP","authors":["C. Jennings","J. Mattsson","D. McGrew","D. Wing","F. Andreasen"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8871":{"rfcNumber":"RFC8871","href":"https://www.rfc-editor.org/rfc/rfc8871","title":"A Solution Framework for Private Media in Privacy-Enhanced RTP Conferencing (PERC)","authors":["P. Jones","D. Benham","C. Groves"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8872":{"rfcNumber":"RFC8872","href":"https://www.rfc-editor.org/rfc/rfc8872","title":"Guidelines for Using the Multiplexing Features of RTP to Support Multiple Media Streams","authors":["M. Westerlund","B. Burman","C. Perkins","H. Alvestrand","R. Even"],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8873":{"rfcNumber":"RFC8873","href":"https://www.rfc-editor.org/rfc/rfc8873","title":"Message Session Relay Protocol (MSRP) over Data Channels","authors":["JM. Recio, Ed.","C. Holmberg"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC4975"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8874":{"rfcNumber":"RFC8874","href":"https://www.rfc-editor.org/rfc/rfc8874","title":"Working Group GitHub Usage Guidance","authors":["M. Thomson","B. Stark"],"rawDate":"2020-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8875":{"rfcNumber":"RFC8875","href":"https://www.rfc-editor.org/rfc/rfc8875","title":"Working Group GitHub Administration","authors":["A. Cooper","P. Hoffman"],"rawDate":"2020-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8876":{"rfcNumber":"RFC8876","href":"https://www.rfc-editor.org/rfc/rfc8876","title":"Non-interactive Emergency Calls","authors":["B. Rosen","H. Schulzrinne","H. Tschofenig","R. Gellens"],"rawDate":"2020-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8877":{"rfcNumber":"RFC8877","href":"https://www.rfc-editor.org/rfc/rfc8877","title":"Guidelines for Defining Packet Timestamps","authors":["T. Mizrahi","J. Fabini","A. Morton"],"rawDate":"2020-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8877","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8878":{"rfcNumber":"RFC8878","href":"https://www.rfc-editor.org/rfc/rfc8878","title":"Zstandard Compression and the 'application/zstd' Media Type","authors":["Y. Collet","M. Kucherawy, Ed."],"rawDate":"2021-02","status":"Informational","obsoletes":["RFC8478"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8878","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8879":{"rfcNumber":"RFC8879","href":"https://www.rfc-editor.org/rfc/rfc8879","title":"TLS Certificate Compression","authors":["A. Ghedini","V. Vasiliev"],"rawDate":"2020-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc888":{"aliasOf":"rfc0888"},"rfc8880":{"rfcNumber":"RFC8880","href":"https://www.rfc-editor.org/rfc/rfc8880","title":"Special Use Domain Name 'ipv4only.arpa'","authors":["S. Cheshire","D. Schinazi"],"rawDate":"2020-08","status":"Proposed Standard","updates":["RFC7050"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8881":{"rfcNumber":"RFC8881","href":"https://www.rfc-editor.org/rfc/rfc8881","title":"Network File System (NFS) Version 4 Minor Version 1 Protocol","authors":["D. Noveck, Ed.","C. Lever"],"rawDate":"2020-08","status":"Proposed Standard","obsoletes":["RFC5661"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8881","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8882":{"rfcNumber":"RFC8882","href":"https://www.rfc-editor.org/rfc/rfc8882","title":"DNS-Based Service Discovery (DNS-SD) Privacy and Security Requirements","authors":["C. Huitema","D. Kaiser"],"rawDate":"2020-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8883":{"rfcNumber":"RFC8883","href":"https://www.rfc-editor.org/rfc/rfc8883","title":"ICMPv6 Errors for Discarding Packets Due to Processing Limits","authors":["T. Herbert"],"rawDate":"2020-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8884":{"rfcNumber":"RFC8884","href":"https://www.rfc-editor.org/rfc/rfc8884","title":"Research Directions for Using Information-Centric Networking (ICN) in Disaster Scenarios","authors":["J. Seedorf","M. Arumaithurai","A. Tagami","K. Ramakrishnan","N. Blefari-Melazzi"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8885":{"rfcNumber":"RFC8885","href":"https://www.rfc-editor.org/rfc/rfc8885","title":"Proxy Mobile IPv6 Extensions for Distributed Mobility Management","authors":["CJ. Bernardos","A. de la Oliva","F. Giust","JC. Zúñiga","A. Mourad"],"rawDate":"2020-10","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8886":{"rfcNumber":"RFC8886","href":"https://www.rfc-editor.org/rfc/rfc8886","title":"Secure Device Install","authors":["W. Kumari","C. Doyle"],"rawDate":"2020-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8886","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8887":{"rfcNumber":"RFC8887","href":"https://www.rfc-editor.org/rfc/rfc8887","title":"A JSON Meta Application Protocol (JMAP) Subprotocol for WebSocket","authors":["K. Murchison"],"rawDate":"2020-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8888":{"rfcNumber":"RFC8888","href":"https://www.rfc-editor.org/rfc/rfc8888","title":"RTP Control Protocol (RTCP) Feedback for Congestion Control","authors":["Z. Sarker","C. Perkins","V. Singh","M. Ramalho"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8889":{"rfcNumber":"RFC8889","href":"https://www.rfc-editor.org/rfc/rfc8889","title":"Multipoint Alternate-Marking Method for Passive and Hybrid Performance Monitoring","authors":["G. Fioccola, Ed.","M. Cociglio","A. Sapio","R. Sisto"],"rawDate":"2020-08","status":"Experimental","obsoletedBy":["RFC9342"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc889":{"aliasOf":"rfc0889"},"rfc8890":{"rfcNumber":"RFC8890","href":"https://www.rfc-editor.org/rfc/rfc8890","title":"The Internet is for End Users","authors":["M. Nottingham"],"rawDate":"2020-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8890","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8891":{"rfcNumber":"RFC8891","href":"https://www.rfc-editor.org/rfc/rfc8891","title":"GOST R 34.12-2015: Block Cipher \"Magma\"","authors":["V. Dolmatov, Ed.","D. Baryshkov"],"rawDate":"2020-09","status":"Informational","updates":["RFC5830"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8892":{"rfcNumber":"RFC8892","href":"https://www.rfc-editor.org/rfc/rfc8892","title":"Guidelines and Registration Procedures for Interface Types and Tunnel Types","authors":["D. Thaler","D. Romascanu"],"rawDate":"2020-08","status":"Proposed Standard","updates":["RFC2863"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8893":{"rfcNumber":"RFC8893","href":"https://www.rfc-editor.org/rfc/rfc8893","title":"Resource Public Key Infrastructure (RPKI) Origin Validation for BGP Export","authors":["R. Bush","R. Volk","J. Heitz"],"rawDate":"2020-09","status":"Proposed Standard","updates":["RFC6811"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8894":{"rfcNumber":"RFC8894","href":"https://www.rfc-editor.org/rfc/rfc8894","title":"Simple Certificate Enrolment Protocol","authors":["P. Gutmann"],"rawDate":"2020-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8894","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8895":{"rfcNumber":"RFC8895","href":"https://www.rfc-editor.org/rfc/rfc8895","title":"Application-Layer Traffic Optimization (ALTO) Incremental Updates Using Server-Sent Events (SSE)","authors":["W. Roome","Y. Yang"],"rawDate":"2020-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8895","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8896":{"rfcNumber":"RFC8896","href":"https://www.rfc-editor.org/rfc/rfc8896","title":"Application-Layer Traffic Optimization (ALTO) Cost Calendar","authors":["S. Randriamasy","R. Yang","Q. Wu","L. Deng","N. Schwan"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8897":{"rfcNumber":"RFC8897","href":"https://www.rfc-editor.org/rfc/rfc8897","title":"Requirements for Resource Public Key Infrastructure (RPKI) Relying Parties","authors":["D. Ma","S. Kent"],"rawDate":"2020-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8898":{"rfcNumber":"RFC8898","href":"https://www.rfc-editor.org/rfc/rfc8898","title":"Third-Party Token-Based Authentication and Authorization for Session Initiation Protocol (SIP)","authors":["R. Shekh-Yusef","C. Holmberg","V. Pascual"],"rawDate":"2020-09","status":"Proposed Standard","updates":["RFC3261"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8898","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8899":{"rfcNumber":"RFC8899","href":"https://www.rfc-editor.org/rfc/rfc8899","title":"Packetization Layer Path MTU Discovery for Datagram Transports","authors":["G. Fairhurst","T. Jones","M. Tüxen","I. Rüngeler","T. Völker"],"rawDate":"2020-09","status":"Proposed Standard","updates":["RFC4821","RFC4960","RFC6951","RFC8085","RFC8261"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc89":{"aliasOf":"rfc0089"},"rfc890":{"aliasOf":"rfc0890"},"rfc8900":{"rfcNumber":"RFC8900","href":"https://www.rfc-editor.org/rfc/rfc8900","title":"IP Fragmentation Considered Fragile","authors":["R. Bonica","F. Baker","G. Huston","R. Hinden","O. Troan","F. Gont"],"rawDate":"2020-09","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8901":{"rfcNumber":"RFC8901","href":"https://www.rfc-editor.org/rfc/rfc8901","title":"Multi-Signer DNSSEC Models","authors":["S. Huque","P. Aras","J. Dickinson","J. Vcelak","D. Blacka"],"rawDate":"2020-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8902":{"rfcNumber":"RFC8902","href":"https://www.rfc-editor.org/rfc/rfc8902","title":"TLS Authentication Using Intelligent Transport System (ITS) Certificates","authors":["M. Msahli, Ed.","N. Cam-Winget, Ed.","W. Whyte, Ed.","A. Serhrouchni","H. Labiod"],"rawDate":"2020-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8903":{"rfcNumber":"RFC8903","href":"https://www.rfc-editor.org/rfc/rfc8903","title":"Use Cases for DDoS Open Threat Signaling","authors":["R. Dobbins","D. Migault","R. Moskowitz","N. Teague","L. Xia","K. Nishizuka"],"rawDate":"2021-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8904":{"rfcNumber":"RFC8904","href":"https://www.rfc-editor.org/rfc/rfc8904","title":"DNS Whitelist (DNSWL) Email Authentication Method Extension","authors":["A. Vesely"],"rawDate":"2020-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8905":{"rfcNumber":"RFC8905","href":"https://www.rfc-editor.org/rfc/rfc8905","title":"The 'payto' URI Scheme for Payments","authors":["F. Dold","C. Grothoff"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8906":{"rfcNumber":"RFC8906","href":"https://www.rfc-editor.org/rfc/rfc8906","title":"A Common Operational Problem in DNS Servers: Failure to Communicate","authors":["M. Andrews","R. Bellis"],"rawDate":"2020-09","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8906","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8907":{"rfcNumber":"RFC8907","href":"https://www.rfc-editor.org/rfc/rfc8907","title":"The Terminal Access Controller Access-Control System Plus (TACACS+) Protocol","authors":["T. Dahm","A. Ota","D.C. Medway Gash","D. Carrel","L. Grant"],"rawDate":"2020-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8907","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8908":{"rfcNumber":"RFC8908","href":"https://www.rfc-editor.org/rfc/rfc8908","title":"Captive Portal API","authors":["T. Pauly, Ed.","D. Thakore, Ed."],"rawDate":"2020-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8909":{"rfcNumber":"RFC8909","href":"https://www.rfc-editor.org/rfc/rfc8909","title":"Registry Data Escrow Specification","authors":["G. Lozano"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc891":{"aliasOf":"rfc0891"},"rfc8910":{"rfcNumber":"RFC8910","href":"https://www.rfc-editor.org/rfc/rfc8910","title":"Captive-Portal Identification in DHCP and Router Advertisements (RAs)","authors":["W. Kumari","E. Kline"],"rawDate":"2020-09","status":"Proposed Standard","updates":["RFC3679"],"obsoletes":["RFC7710"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8910","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8911":{"rfcNumber":"RFC8911","href":"https://www.rfc-editor.org/rfc/rfc8911","title":"Registry for Performance Metrics","authors":["M. Bagnulo","B. Claise","P. Eardley","A. Morton","A. Akhter"],"rawDate":"2021-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8912":{"rfcNumber":"RFC8912","href":"https://www.rfc-editor.org/rfc/rfc8912","title":"Initial Performance Metrics Registry Entries","authors":["A. Morton","M. Bagnulo","P. Eardley","K. D'Souza"],"rawDate":"2021-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8912","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8913":{"rfcNumber":"RFC8913","href":"https://www.rfc-editor.org/rfc/rfc8913","title":"Two-Way Active Measurement Protocol (TWAMP) YANG Data Model","authors":["R. Civil","A. Morton","R. Rahman","M. Jethanandani","K. Pentikousis, Ed."],"rawDate":"2021-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8913","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8914":{"rfcNumber":"RFC8914","href":"https://www.rfc-editor.org/rfc/rfc8914","title":"Extended DNS Errors","authors":["W. Kumari","E. Hunt","R. Arends","W. Hardaker","D. Lawrence"],"rawDate":"2020-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8915":{"rfcNumber":"RFC8915","href":"https://www.rfc-editor.org/rfc/rfc8915","title":"Network Time Security for the Network Time Protocol","authors":["D. Franke","D. Sibold","K. Teichel","M. Dansarie","R. Sundblad"],"rawDate":"2020-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8916":{"rfcNumber":"RFC8916","href":"https://www.rfc-editor.org/rfc/rfc8916","title":"A YANG Data Model for the Multicast Source Discovery Protocol (MSDP)","authors":["X. Liu","Z. Zhang, Ed.","A. Peter","M. Sivakumar","F. Guo","P. McAllister"],"rawDate":"2020-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8917":{"rfcNumber":"RFC8917","href":"https://www.rfc-editor.org/rfc/rfc8917","title":"The LoST-Validation Straightforward-Naming Authority PoinTeR (S-NAPTR) Application Service Tag","authors":["R. Gellens","B. Rosen"],"rawDate":"2020-10","status":"Proposed Standard","updates":["RFC5222"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8918":{"rfcNumber":"RFC8918","href":"https://www.rfc-editor.org/rfc/rfc8918","title":"Invalid TLV Handling in IS-IS","authors":["L. Ginsberg","P. Wells","T. Li","T. Przygienda","S. Hegde"],"rawDate":"2020-09","status":"Proposed Standard","updates":["RFC5305","RFC6232"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8919":{"rfcNumber":"RFC8919","href":"https://www.rfc-editor.org/rfc/rfc8919","title":"IS-IS Application-Specific Link Attributes","authors":["L. Ginsberg","P. Psenak","S. Previdi","W. Henderickx","J. Drake"],"rawDate":"2020-10","status":"Proposed Standard","obsoletedBy":["RFC9479"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8919","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc892":{"aliasOf":"rfc0892"},"rfc8920":{"rfcNumber":"RFC8920","href":"https://www.rfc-editor.org/rfc/rfc8920","title":"OSPF Application-Specific Link Attributes","authors":["P. Psenak, Ed.","L. Ginsberg","W. Henderickx","J. Tantsura","J. Drake"],"rawDate":"2020-10","status":"Proposed Standard","obsoletedBy":["RFC9492"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8920","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8921":{"rfcNumber":"RFC8921","href":"https://www.rfc-editor.org/rfc/rfc8921","title":"Dynamic Service Negotiation: The Connectivity Provisioning Negotiation Protocol (CPNP)","authors":["M. Boucadair, Ed.","C. Jacquenet","D. Zhang","P. Georgatsos"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8922":{"rfcNumber":"RFC8922","href":"https://www.rfc-editor.org/rfc/rfc8922","title":"A Survey of the Interaction between Security Protocols and Transport Services","authors":["T. Enghardt","T. Pauly","C. Perkins","K. Rose","C. Wood"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8923":{"rfcNumber":"RFC8923","href":"https://www.rfc-editor.org/rfc/rfc8923","title":"A Minimal Set of Transport Services for End Systems","authors":["M. Welzl","S. Gjessing"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8924":{"rfcNumber":"RFC8924","href":"https://www.rfc-editor.org/rfc/rfc8924","title":"Service Function Chaining (SFC) Operations, Administration, and Maintenance (OAM) Framework","authors":["S. Aldrin","C. Pignataro, Ed.","N. Kumar, Ed.","R. Krishnan","A. Ghanwani"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8925":{"rfcNumber":"RFC8925","href":"https://www.rfc-editor.org/rfc/rfc8925","title":"IPv6-Only Preferred Option for DHCPv4","authors":["L. Colitti","J. Linkova","M. Richardson","T. Mrugalski"],"rawDate":"2020-10","status":"Proposed Standard","updates":["RFC2563"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8926":{"rfcNumber":"RFC8926","href":"https://www.rfc-editor.org/rfc/rfc8926","title":"Geneve: Generic Network Virtualization Encapsulation","authors":["J. Gross, Ed.","I. Ganga, Ed.","T. Sridhar, Ed."],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8927":{"rfcNumber":"RFC8927","href":"https://www.rfc-editor.org/rfc/rfc8927","title":"JSON Type Definition","authors":["U. Carion"],"rawDate":"2020-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8928":{"rfcNumber":"RFC8928","href":"https://www.rfc-editor.org/rfc/rfc8928","title":"Address-Protected Neighbor Discovery for Low-Power and Lossy Networks","authors":["P. Thubert, Ed.","B. Sarikaya","M. Sethi","R. Struik"],"rawDate":"2020-11","status":"Proposed Standard","updates":["RFC8505"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8929":{"rfcNumber":"RFC8929","href":"https://www.rfc-editor.org/rfc/rfc8929","title":"IPv6 Backbone Router","authors":["P. Thubert, Ed.","C.E. Perkins","E. Levy-Abegnoli"],"rawDate":"2020-11","status":"Proposed Standard","updates":["RFC6775","RFC8505"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc893":{"aliasOf":"rfc0893"},"rfc8930":{"rfcNumber":"RFC8930","href":"https://www.rfc-editor.org/rfc/rfc8930","title":"On Forwarding 6LoWPAN Fragments over a Multi-Hop IPv6 Network","authors":["T. Watteyne, Ed.","P. Thubert, Ed.","C. Bormann"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8931":{"rfcNumber":"RFC8931","href":"https://www.rfc-editor.org/rfc/rfc8931","title":"IPv6 over Low-Power Wireless Personal Area Network (6LoWPAN) Selective Fragment Recovery","authors":["P. Thubert, Ed."],"rawDate":"2020-11","status":"Proposed Standard","updates":["RFC4944"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8932":{"rfcNumber":"RFC8932","href":"https://www.rfc-editor.org/rfc/rfc8932","title":"Recommendations for DNS Privacy Service Operators","authors":["S. Dickinson","B. Overeinder","R. van Rijswijk-Deij","A. Mankin"],"rawDate":"2020-10","status":"Best Current Practice","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8932","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8933":{"rfcNumber":"RFC8933","href":"https://www.rfc-editor.org/rfc/rfc8933","title":"Update to the Cryptographic Message Syntax (CMS) for Algorithm Identifier Protection","authors":["R. Housley"],"rawDate":"2020-10","status":"Proposed Standard","updates":["RFC5652"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8934":{"rfcNumber":"RFC8934","href":"https://www.rfc-editor.org/rfc/rfc8934","title":"PCE Communication Protocol (PCEP) Extensions for Label Switched Path (LSP) Scheduling with Stateful PCE","authors":["H. Chen, Ed.","Y. Zhuang, Ed.","Q. Wu","D. Ceccarelli"],"rawDate":"2020-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8935":{"rfcNumber":"RFC8935","href":"https://www.rfc-editor.org/rfc/rfc8935","title":"Push-Based Security Event Token (SET) Delivery Using HTTP","authors":["A. Backman, Ed.","M. Jones, Ed.","M. Scurtescu","M. Ansari","A. Nadalin"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8936":{"rfcNumber":"RFC8936","href":"https://www.rfc-editor.org/rfc/rfc8936","title":"Poll-Based Security Event Token (SET) Delivery Using HTTP","authors":["A. Backman, Ed.","M. Jones, Ed.","M. Scurtescu","M. Ansari","A. Nadalin"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8937":{"rfcNumber":"RFC8937","href":"https://www.rfc-editor.org/rfc/rfc8937","title":"Randomness Improvements for Security Protocols","authors":["C. Cremers","L. Garratt","S. Smyshlyaev","N. Sullivan","C. Wood"],"rawDate":"2020-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8938":{"rfcNumber":"RFC8938","href":"https://www.rfc-editor.org/rfc/rfc8938","title":"Deterministic Networking (DetNet) Data Plane Framework","authors":["B. Varga, Ed.","J. Farkas","L. Berger","A. Malis","S. Bryant"],"rawDate":"2020-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8939":{"rfcNumber":"RFC8939","href":"https://www.rfc-editor.org/rfc/rfc8939","title":"Deterministic Networking (DetNet) Data Plane: IP","authors":["B. Varga, Ed.","J. Farkas","L. Berger","D. Fedyk","S. Bryant"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc894":{"aliasOf":"rfc0894"},"rfc8940":{"rfcNumber":"RFC8940","href":"https://www.rfc-editor.org/rfc/rfc8940","title":"Extensible Authentication Protocol (EAP) Session-Id Derivation for EAP Subscriber Identity Module (EAP-SIM), EAP Authentication and Key Agreement (EAP-AKA), and Protected EAP (PEAP)","authors":["A. DeKok"],"rawDate":"2020-10","status":"Proposed Standard","updates":["RFC5247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8941":{"rfcNumber":"RFC8941","href":"https://httpwg.org/specs/rfc8941.html","title":"Structured Field Values for HTTP","authors":["M. Nottingham","P-H. Kamp"],"rawDate":"2021-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8942":{"rfcNumber":"RFC8942","href":"https://www.rfc-editor.org/rfc/rfc8942","title":"HTTP Client Hints","authors":["I. Grigorik","Y. Weiss"],"rawDate":"2021-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8943":{"rfcNumber":"RFC8943","href":"https://www.rfc-editor.org/rfc/rfc8943","title":"Concise Binary Object Representation (CBOR) Tags for Date","authors":["M. Jones","A. Nadalin","J. Richter"],"rawDate":"2020-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8944":{"rfcNumber":"RFC8944","href":"https://www.rfc-editor.org/rfc/rfc8944","title":"A YANG Data Model for Layer 2 Network Topologies","authors":["J. Dong","X. Wei","Q. Wu","M. Boucadair","A. Liu"],"rawDate":"2020-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8944","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8945":{"rfcNumber":"RFC8945","href":"https://www.rfc-editor.org/rfc/rfc8945","title":"Secret Key Transaction Authentication for DNS (TSIG)","authors":["F. Dupont","S. Morris","P. Vixie","D. Eastlake 3rd","O. Gudmundsson","B. Wellington"],"rawDate":"2020-11","status":"Internet Standard","obsoletes":["RFC2845","RFC4635"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8946":{"rfcNumber":"RFC8946","href":"https://www.rfc-editor.org/rfc/rfc8946","title":"Personal Assertion Token (PASSporT) Extension for Diverted Calls","authors":["J. Peterson"],"rawDate":"2021-02","status":"Proposed Standard","updates":["RFC8224"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8947":{"rfcNumber":"RFC8947","href":"https://www.rfc-editor.org/rfc/rfc8947","title":"Link-Layer Address Assignment Mechanism for DHCPv6","authors":["B. Volz","T. Mrugalski","C. Bernardos"],"rawDate":"2020-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8948":{"rfcNumber":"RFC8948","href":"https://www.rfc-editor.org/rfc/rfc8948","title":"Structured Local Address Plan (SLAP) Quadrant Selection Option for DHCPv6","authors":["CJ. Bernardos","A. Mourad"],"rawDate":"2020-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8949":{"rfcNumber":"RFC8949","href":"https://www.rfc-editor.org/rfc/rfc8949","title":"Concise Binary Object Representation (CBOR)","authors":["C. Bormann","P. Hoffman"],"rawDate":"2020-12","status":"Internet Standard","obsoletes":["RFC7049"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc895":{"aliasOf":"rfc0895"},"rfc8950":{"rfcNumber":"RFC8950","href":"https://www.rfc-editor.org/rfc/rfc8950","title":"Advertising IPv4 Network Layer Reachability Information (NLRI) with an IPv6 Next Hop","authors":["S. Litkowski","S. Agrawal","K. Ananthamurthy","K. Patel"],"rawDate":"2020-11","status":"Proposed Standard","obsoletes":["RFC5549"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8951":{"rfcNumber":"RFC8951","href":"https://www.rfc-editor.org/rfc/rfc8951","title":"Clarification of Enrollment over Secure Transport (EST): Transfer Encodings and ASN.1","authors":["M. Richardson","T. Werner","W. Pan"],"rawDate":"2020-11","status":"Proposed Standard","updates":["RFC7030"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8952":{"rfcNumber":"RFC8952","href":"https://www.rfc-editor.org/rfc/rfc8952","title":"Captive Portal Architecture","authors":["K. Larose","D. Dolson","H. Liu"],"rawDate":"2020-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8953":{"rfcNumber":"RFC8953","href":"https://www.rfc-editor.org/rfc/rfc8953","title":"Coordinating Attack Response at Internet Scale 2 (CARIS2) Workshop Report","authors":["K. Moriarty"],"rawDate":"2020-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8954":{"rfcNumber":"RFC8954","href":"https://www.rfc-editor.org/rfc/rfc8954","title":"Online Certificate Status Protocol (OCSP) Nonce Extension","authors":["M. Sahni, Ed."],"rawDate":"2020-11","status":"Proposed Standard","updates":["RFC6960"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8955":{"rfcNumber":"RFC8955","href":"https://www.rfc-editor.org/rfc/rfc8955","title":"Dissemination of Flow Specification Rules","authors":["C. Loibl","S. Hares","R. Raszuk","D. McPherson","M. Bacher"],"rawDate":"2020-12","status":"Proposed Standard","updatedBy":["RFC8956","RFC9117","RFC9184"],"obsoletes":["RFC5575","RFC7674"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8955","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8956":{"rfcNumber":"RFC8956","href":"https://www.rfc-editor.org/rfc/rfc8956","title":"Dissemination of Flow Specification Rules for IPv6","authors":["C. Loibl, Ed.","R. Raszuk, Ed.","S. Hares, Ed."],"rawDate":"2020-12","status":"Proposed Standard","updates":["RFC8955"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8956","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8957":{"rfcNumber":"RFC8957","href":"https://www.rfc-editor.org/rfc/rfc8957","title":"Synonymous Flow Label Framework","authors":["S. Bryant","M. Chen","G. Swallow","S. Sivabalan","G. Mirsky"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8958":{"rfcNumber":"RFC8958","href":"https://www.rfc-editor.org/rfc/rfc8958","title":"Updated Registration Rules for URI.ARPA","authors":["T. Hardie"],"rawDate":"2020-12","status":"Best Current Practice","updates":["RFC3405"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8959":{"rfcNumber":"RFC8959","href":"https://www.rfc-editor.org/rfc/rfc8959","title":"The \"secret-token\" URI Scheme","authors":["M. Nottingham"],"rawDate":"2021-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8959","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc896":{"aliasOf":"rfc0896"},"rfc8960":{"rfcNumber":"RFC8960","href":"https://www.rfc-editor.org/rfc/rfc8960","title":"A YANG Data Model for MPLS Base","authors":["T. Saad","K. Raza","R. Gandhi","X. Liu","V. Beeram"],"rawDate":"2020-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8960","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8961":{"rfcNumber":"RFC8961","href":"https://www.rfc-editor.org/rfc/rfc8961","title":"Requirements for Time-Based Loss Detection","authors":["M. Allman"],"rawDate":"2020-11","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8962":{"rfcNumber":"RFC8962","href":"https://www.rfc-editor.org/rfc/rfc8962","title":"Establishing the Protocol Police","authors":["G. Grover","N. ten Oever","C. Cath","S. Sahib"],"rawDate":"2021-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8962","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8963":{"rfcNumber":"RFC8963","href":"https://www.rfc-editor.org/rfc/rfc8963","title":"Evaluation of a Sample of RFCs Produced in 2018","authors":["C. Huitema"],"rawDate":"2021-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8963","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8964":{"rfcNumber":"RFC8964","href":"https://www.rfc-editor.org/rfc/rfc8964","title":"Deterministic Networking (DetNet) Data Plane: MPLS","authors":["B. Varga, Ed.","J. Farkas","L. Berger","A. Malis","S. Bryant","J. Korhonen"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8965":{"rfcNumber":"RFC8965","href":"https://www.rfc-editor.org/rfc/rfc8965","title":"Applicability of the Babel Routing Protocol","authors":["J. Chroboczek"],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8966":{"rfcNumber":"RFC8966","href":"https://www.rfc-editor.org/rfc/rfc8966","title":"The Babel Routing Protocol","authors":["J. Chroboczek","D. Schinazi"],"rawDate":"2021-01","status":"Proposed Standard","obsoletes":["RFC6126","RFC7557"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8966","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8967":{"rfcNumber":"RFC8967","href":"https://www.rfc-editor.org/rfc/rfc8967","title":"MAC Authentication for the Babel Routing Protocol","authors":["C. Dô","W. Kolodziejak","J. Chroboczek"],"rawDate":"2021-01","status":"Proposed Standard","updatedBy":["RFC9467"],"obsoletes":["RFC7298"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8968":{"rfcNumber":"RFC8968","href":"https://www.rfc-editor.org/rfc/rfc8968","title":"Babel Routing Protocol over Datagram Transport Layer Security","authors":["A. Décimo","D. Schinazi","J. Chroboczek"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8969":{"rfcNumber":"RFC8969","href":"https://www.rfc-editor.org/rfc/rfc8969","title":"A Framework for Automating Service and Network Management with YANG","authors":["Q. Wu, Ed.","M. Boucadair, Ed.","D. Lopez","C. Xie","L. Geng"],"rawDate":"2021-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8969","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc897":{"aliasOf":"rfc0897"},"rfc8970":{"rfcNumber":"RFC8970","href":"https://www.rfc-editor.org/rfc/rfc8970","title":"IMAP4 Extension: Message Preview Generation","authors":["M. Slusarz"],"rawDate":"2020-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8971":{"rfcNumber":"RFC8971","href":"https://www.rfc-editor.org/rfc/rfc8971","title":"Bidirectional Forwarding Detection (BFD) for Virtual eXtensible Local Area Network (VXLAN)","authors":["S. Pallagatti, Ed.","G. Mirsky, Ed.","S. Paragiri","V. Govindan","M. Mudigonda"],"rawDate":"2020-12","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8971","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8972":{"rfcNumber":"RFC8972","href":"https://www.rfc-editor.org/rfc/rfc8972","title":"Simple Two-Way Active Measurement Protocol Optional Extensions","authors":["G. Mirsky","X. Min","H. Nydell","R. Foote","A. Masputra","E. Ruffini"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC8762"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8973":{"rfcNumber":"RFC8973","href":"https://www.rfc-editor.org/rfc/rfc8973","title":"DDoS Open Threat Signaling (DOTS) Agent Discovery","authors":["M. Boucadair","T. Reddy.K"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8974":{"rfcNumber":"RFC8974","href":"https://www.rfc-editor.org/rfc/rfc8974","title":"Extended Tokens and Stateless Clients in the Constrained Application Protocol (CoAP)","authors":["K. Hartke","M. Richardson"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC7252","RFC8323"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8975":{"rfcNumber":"RFC8975","href":"https://www.rfc-editor.org/rfc/rfc8975","title":"Network Coding for Satellite Systems","authors":["N. Kuhn, Ed.","E. Lochin, Ed."],"rawDate":"2021-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8976":{"rfcNumber":"RFC8976","href":"https://www.rfc-editor.org/rfc/rfc8976","title":"Message Digest for DNS Zones","authors":["D. Wessels","P. Barber","M. Weinberg","W. Kumari","W. Hardaker"],"rawDate":"2021-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8976","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8977":{"rfcNumber":"RFC8977","href":"https://www.rfc-editor.org/rfc/rfc8977","title":"Registration Data Access Protocol (RDAP) Query Parameters for Result Sorting and Paging","authors":["M. Loffredo","M. Martinelli","S. Hollenbeck"],"rawDate":"2021-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8978":{"rfcNumber":"RFC8978","href":"https://www.rfc-editor.org/rfc/rfc8978","title":"Reaction of IPv6 Stateless Address Autoconfiguration (SLAAC) to Flash-Renumbering Events","authors":["F. Gont","J. Žorž","R. Patterson"],"rawDate":"2021-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8979":{"rfcNumber":"RFC8979","href":"https://www.rfc-editor.org/rfc/rfc8979","title":"Subscriber and Performance Policy Identifier Context Headers in the Network Service Header (NSH)","authors":["B. Sarikaya","D. von Hugo","M. Boucadair"],"rawDate":"2021-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc898":{"aliasOf":"rfc0898"},"rfc8980":{"rfcNumber":"RFC8980","href":"https://www.rfc-editor.org/rfc/rfc8980","title":"Report from the IAB Workshop on Design Expectations vs. Deployment Reality in Protocol Development","authors":["J. Arkko","T. Hardie"],"rawDate":"2021-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8981":{"rfcNumber":"RFC8981","href":"https://www.rfc-editor.org/rfc/rfc8981","title":"Temporary Address Extensions for Stateless Address Autoconfiguration in IPv6","authors":["F. Gont","S. Krishnan","T. Narten","R. Draves"],"rawDate":"2021-02","status":"Proposed Standard","obsoletes":["RFC4941"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8982":{"rfcNumber":"RFC8982","href":"https://www.rfc-editor.org/rfc/rfc8982","title":"Registration Data Access Protocol (RDAP) Partial Response","authors":["M. Loffredo","M. Martinelli"],"rawDate":"2021-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8983":{"rfcNumber":"RFC8983","href":"https://www.rfc-editor.org/rfc/rfc8983","title":"Internet Key Exchange Protocol Version 2 (IKEv2) Notification Status Types for IPv4/IPv6 Coexistence","authors":["M. Boucadair"],"rawDate":"2021-02","status":"Proposed Standard","updates":["RFC7296"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8984":{"rfcNumber":"RFC8984","href":"https://www.rfc-editor.org/rfc/rfc8984","title":"JSCalendar: A JSON Representation of Calendar Data","authors":["N. Jenkins","R. Stepanek"],"rawDate":"2021-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8984","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8985":{"rfcNumber":"RFC8985","href":"https://www.rfc-editor.org/rfc/rfc8985","title":"The RACK-TLP Loss Detection Algorithm for TCP","authors":["Y. Cheng","N. Cardwell","N. Dukkipati","P. Jha"],"rawDate":"2021-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8986":{"rfcNumber":"RFC8986","href":"https://www.rfc-editor.org/rfc/rfc8986","title":"Segment Routing over IPv6 (SRv6) Network Programming","authors":["C. Filsfils, Ed.","P. Camarillo, Ed.","J. Leddy","D. Voyer","S. Matsushima","Z. Li"],"rawDate":"2021-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8986","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8987":{"rfcNumber":"RFC8987","href":"https://www.rfc-editor.org/rfc/rfc8987","title":"DHCPv6 Prefix Delegating Relay Requirements","authors":["I. Farrer","N. Kottapalli","M. Hunek","R. Patterson"],"rawDate":"2021-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8989":{"rfcNumber":"RFC8989","href":"https://www.rfc-editor.org/rfc/rfc8989","title":"Additional Criteria for Nominating Committee Eligibility","authors":["B. Carpenter","S. Farrell"],"rawDate":"2021-02","status":"Experimental","obsoletedBy":["RFC9389"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc899":{"aliasOf":"rfc0899"},"rfc8990":{"rfcNumber":"RFC8990","href":"https://www.rfc-editor.org/rfc/rfc8990","title":"GeneRic Autonomic Signaling Protocol (GRASP)","authors":["C. Bormann","B. Carpenter, Ed.","B. Liu, Ed."],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8991":{"rfcNumber":"RFC8991","href":"https://www.rfc-editor.org/rfc/rfc8991","title":"GeneRic Autonomic Signaling Protocol Application Program Interface (GRASP API)","authors":["B. Carpenter","B. Liu, Ed.","W. Wang","X. Gong"],"rawDate":"2021-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8992":{"rfcNumber":"RFC8992","href":"https://www.rfc-editor.org/rfc/rfc8992","title":"Autonomic IPv6 Edge Prefix Management in Large-Scale Networks","authors":["S. Jiang, Ed.","Z. Du","B. Carpenter","Q. Sun"],"rawDate":"2021-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8992","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8993":{"rfcNumber":"RFC8993","href":"https://www.rfc-editor.org/rfc/rfc8993","title":"A Reference Model for Autonomic Networking","authors":["M. Behringer, Ed.","B. Carpenter","T. Eckert","L. Ciavaglia","J. Nobre"],"rawDate":"2021-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8994":{"rfcNumber":"RFC8994","href":"https://www.rfc-editor.org/rfc/rfc8994","title":"An Autonomic Control Plane (ACP)","authors":["T. Eckert, Ed.","M. Behringer, Ed.","S. Bjarnason"],"rawDate":"2021-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8994","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8995":{"rfcNumber":"RFC8995","href":"https://www.rfc-editor.org/rfc/rfc8995","title":"Bootstrapping Remote Secure Key Infrastructure (BRSKI)","authors":["M. Pritikin","M. Richardson","T. Eckert","M. Behringer","K. Watsen"],"rawDate":"2021-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8995","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8996":{"rfcNumber":"RFC8996","href":"https://www.rfc-editor.org/rfc/rfc8996","title":"Deprecating TLS 1.0 and TLS 1.1","authors":["K. Moriarty","S. Farrell"],"rawDate":"2021-03","status":"Best Current Practice","updates":["RFC3261","RFC3329","RFC3436","RFC3470","RFC3501","RFC3552","RFC3568","RFC3656","RFC3749","RFC3767","RFC3856","RFC3871","RFC3887","RFC3903","RFC3943","RFC3983","RFC4097","RFC4111","RFC4162","RFC4168","RFC4217","RFC4235","RFC4261","RFC4279","RFC4497","RFC4513","RFC4531","RFC4540","RFC4582","RFC4616","RFC4642","RFC4680","RFC4681","RFC4712","RFC4732","RFC4743","RFC4744","RFC4785","RFC4791","RFC4823","RFC4851","RFC4964","RFC4975","RFC4976","RFC4992","RFC5018","RFC5019","RFC5023","RFC5024","RFC5049","RFC5054","RFC5091","RFC5158","RFC5216","RFC5238","RFC5263","RFC5281","RFC5364","RFC5415","RFC5422","RFC5456","RFC5734","RFC5878","RFC5953","RFC6012","RFC6042","RFC6083","RFC6084","RFC6176","RFC6347","RFC6353","RFC6367","RFC6460","RFC6614","RFC6739","RFC6749","RFC6750","RFC7030","RFC7465","RFC7525","RFC7562","RFC7568","RFC8261","RFC8422"],"obsoletes":["RFC5469","RFC7507"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=8996","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8997":{"rfcNumber":"RFC8997","href":"https://www.rfc-editor.org/rfc/rfc8997","title":"Deprecation of TLS 1.1 for Email Submission and Access","authors":["L. Velvindron","S. Farrell"],"rawDate":"2021-03","status":"Proposed Standard","updates":["RFC8314"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8998":{"rfcNumber":"RFC8998","href":"https://www.rfc-editor.org/rfc/rfc8998","title":"ShangMi (SM) Cipher Suites for TLS 1.3","authors":["P. Yang"],"rawDate":"2021-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc8999":{"rfcNumber":"RFC8999","href":"https://www.rfc-editor.org/rfc/rfc8999","title":"Version-Independent Properties of QUIC","authors":["M. Thomson"],"rawDate":"2021-05","status":"Proposed Standard","updatedBy":["RFC9368"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9":{"aliasOf":"rfc0009"},"rfc90":{"aliasOf":"rfc0090"},"rfc900":{"aliasOf":"rfc0900"},"rfc9000":{"rfcNumber":"RFC9000","href":"https://www.rfc-editor.org/rfc/rfc9000","title":"QUIC: A UDP-Based Multiplexed and Secure Transport","authors":["J. Iyengar, Ed.","M. Thomson, Ed."],"rawDate":"2021-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9000","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9001":{"rfcNumber":"RFC9001","href":"https://www.rfc-editor.org/rfc/rfc9001","title":"Using TLS to Secure QUIC","authors":["M. Thomson, Ed.","S. Turner, Ed."],"rawDate":"2021-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9001","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9002":{"rfcNumber":"RFC9002","href":"https://www.rfc-editor.org/rfc/rfc9002","title":"QUIC Loss Detection and Congestion Control","authors":["J. Iyengar, Ed.","I. Swett, Ed."],"rawDate":"2021-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9002","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9003":{"rfcNumber":"RFC9003","href":"https://www.rfc-editor.org/rfc/rfc9003","title":"Extended BGP Administrative Shutdown Communication","authors":["J. Snijders","J. Heitz","J. Scudder","A. Azimov"],"rawDate":"2021-01","status":"Proposed Standard","updates":["RFC4486"],"obsoletes":["RFC8203"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9004":{"rfcNumber":"RFC9004","href":"https://www.rfc-editor.org/rfc/rfc9004","title":"Updates for the Back-to-Back Frame Benchmark in RFC 2544","authors":["A. Morton"],"rawDate":"2021-05","status":"Informational","updates":["RFC2544"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9005":{"rfcNumber":"RFC9005","href":"https://www.rfc-editor.org/rfc/rfc9005","title":"Path Computation Element Communication Protocol (PCEP) Extension for Associating Policies and Label Switched Paths (LSPs)","authors":["S. Litkowski","S. Sivabalan","J. Tantsura","J. Hardwick","C. Li"],"rawDate":"2021-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9006":{"rfcNumber":"RFC9006","href":"https://www.rfc-editor.org/rfc/rfc9006","title":"TCP Usage Guidance in the Internet of Things (IoT)","authors":["C. Gomez","J. Crowcroft","M. Scharf"],"rawDate":"2021-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9007":{"rfcNumber":"RFC9007","href":"https://www.rfc-editor.org/rfc/rfc9007","title":"Handling Message Disposition Notification with the JSON Meta Application Protocol (JMAP)","authors":["R. Ouazana, Ed."],"rawDate":"2021-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9008":{"rfcNumber":"RFC9008","href":"https://www.rfc-editor.org/rfc/rfc9008","title":"Using RPI Option Type, Routing Header for Source Routes, and IPv6-in-IPv6 Encapsulation in the RPL Data Plane","authors":["M.I. Robles","M. Richardson","P. Thubert"],"rawDate":"2021-04","status":"Proposed Standard","updates":["RFC6553","RFC6550","RFC8138"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9008","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9009":{"rfcNumber":"RFC9009","href":"https://www.rfc-editor.org/rfc/rfc9009","title":"Efficient Route Invalidation","authors":["R.A. Jadhav, Ed.","P. Thubert","R.N. Sahoo","Z. Cao"],"rawDate":"2021-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc901":{"aliasOf":"rfc0901"},"rfc9010":{"rfcNumber":"RFC9010","href":"https://www.rfc-editor.org/rfc/rfc9010","title":"Routing for RPL (Routing Protocol for Low-Power and Lossy Networks) Leaves","authors":["P. Thubert, Ed.","M. Richardson"],"rawDate":"2021-04","status":"Proposed Standard","updates":["RFC6550","RFC6775","RFC8505"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9010","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9011":{"rfcNumber":"RFC9011","href":"https://www.rfc-editor.org/rfc/rfc9011","title":"Static Context Header Compression and Fragmentation (SCHC) over LoRaWAN","authors":["O. Gimenez, Ed.","I. Petrov, Ed."],"rawDate":"2021-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9012":{"rfcNumber":"RFC9012","href":"https://www.rfc-editor.org/rfc/rfc9012","title":"The BGP Tunnel Encapsulation Attribute","authors":["K. Patel","G. Van de Velde","S. Sangli","J. Scudder"],"rawDate":"2021-04","status":"Proposed Standard","updates":["RFC5640"],"obsoletes":["RFC5512","RFC5566"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9013":{"rfcNumber":"RFC9013","href":"https://www.rfc-editor.org/rfc/rfc9013","title":"OSPF Advertisement of Tunnel Encapsulations","authors":["X. Xu, Ed.","B. Decraene, Ed.","R. Raszuk","L. Contreras","L. Jalil"],"rawDate":"2021-04","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9013","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9014":{"rfcNumber":"RFC9014","href":"https://www.rfc-editor.org/rfc/rfc9014","title":"Interconnect Solution for Ethernet VPN (EVPN) Overlay Networks","authors":["J. Rabadan, Ed.","S. Sathappan","W. Henderickx","A. Sajassi","J. Drake"],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9015":{"rfcNumber":"RFC9015","href":"https://www.rfc-editor.org/rfc/rfc9015","title":"BGP Control Plane for the Network Service Header in Service Function Chaining","authors":["A. Farrel","J. Drake","E. Rosen","J. Uttaro","L. Jalil"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9016":{"rfcNumber":"RFC9016","href":"https://www.rfc-editor.org/rfc/rfc9016","title":"Flow and Service Information Model for Deterministic Networking (DetNet)","authors":["B. Varga","J. Farkas","R. Cummings","Y. Jiang","D. Fedyk"],"rawDate":"2021-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9017":{"rfcNumber":"RFC9017","href":"https://www.rfc-editor.org/rfc/rfc9017","title":"Special-Purpose Label Terminology","authors":["L. Andersson","K. Kompella","A. Farrel"],"rawDate":"2021-04","status":"Proposed Standard","updates":["RFC3032","RFC7274"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9018":{"rfcNumber":"RFC9018","href":"https://www.rfc-editor.org/rfc/rfc9018","title":"Interoperable Domain Name System (DNS) Server Cookies","authors":["O. Sury","W. Toorop","D. Eastlake 3rd","M. Andrews"],"rawDate":"2021-04","status":"Proposed Standard","updates":["RFC7873"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9019":{"rfcNumber":"RFC9019","href":"https://www.rfc-editor.org/rfc/rfc9019","title":"A Firmware Update Architecture for Internet of Things","authors":["B. Moran","H. Tschofenig","D. Brown","M. Meriac"],"rawDate":"2021-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc902":{"aliasOf":"rfc0902"},"rfc9020":{"rfcNumber":"RFC9020","href":"https://www.rfc-editor.org/rfc/rfc9020","title":"YANG Data Model for Segment Routing","authors":["S. Litkowski","Y. Qu","A. Lindem","P. Sarkar","J. Tantsura"],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9021":{"rfcNumber":"RFC9021","href":"https://www.rfc-editor.org/rfc/rfc9021","title":"Use of the Walnut Digital Signature Algorithm with CBOR Object Signing and Encryption (COSE)","authors":["D. Atkins"],"rawDate":"2021-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9022":{"rfcNumber":"RFC9022","href":"https://www.rfc-editor.org/rfc/rfc9022","title":"Domain Name Registration Data (DNRD) Objects Mapping","authors":["G. Lozano","J. Gould","C. Thippeswamy"],"rawDate":"2021-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9022","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9023":{"rfcNumber":"RFC9023","href":"https://www.rfc-editor.org/rfc/rfc9023","title":"Deterministic Networking (DetNet) Data Plane: IP over IEEE 802.1 Time-Sensitive Networking (TSN)","authors":["B. Varga, Ed.","J. Farkas","A. Malis","S. Bryant"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9024":{"rfcNumber":"RFC9024","href":"https://www.rfc-editor.org/rfc/rfc9024","title":"Deterministic Networking (DetNet) Data Plane: IEEE 802.1 Time-Sensitive Networking over MPLS","authors":["B. Varga, Ed.","J. Farkas","A. Malis","S. Bryant","D. Fedyk"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9025":{"rfcNumber":"RFC9025","href":"https://www.rfc-editor.org/rfc/rfc9025","title":"Deterministic Networking (DetNet) Data Plane: MPLS over UDP/IP","authors":["B. Varga, Ed.","J. Farkas","L. Berger","A. Malis","S. Bryant"],"rawDate":"2021-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9026":{"rfcNumber":"RFC9026","href":"https://www.rfc-editor.org/rfc/rfc9026","title":"Multicast VPN Fast Upstream Failover","authors":["T. Morin, Ed.","R. Kebler, Ed.","G. Mirsky, Ed."],"rawDate":"2021-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9027":{"rfcNumber":"RFC9027","href":"https://www.rfc-editor.org/rfc/rfc9027","title":"Assertion Values for Resource Priority Header and SIP Priority Header Claims in Support of Emergency Services Networks","authors":["M. Dolly","C. Wendt"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9028":{"rfcNumber":"RFC9028","href":"https://www.rfc-editor.org/rfc/rfc9028","title":"Native NAT Traversal Mode for the Host Identity Protocol","authors":["A. Keränen","J. Melén","M. Komu, Ed."],"rawDate":"2021-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9029":{"rfcNumber":"RFC9029","href":"https://www.rfc-editor.org/rfc/rfc9029","title":"Updates to the Allocation Policy for the Border Gateway Protocol - Link State (BGP-LS) Parameters Registries","authors":["A. Farrel"],"rawDate":"2021-06","status":"Proposed Standard","obsoletedBy":["RFC9552"],"updates":["RFC7752"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc903":{"aliasOf":"rfc0903"},"rfc9030":{"rfcNumber":"RFC9030","href":"https://www.rfc-editor.org/rfc/rfc9030","title":"An Architecture for IPv6 over the Time-Slotted Channel Hopping Mode of IEEE 802.15.4 (6TiSCH)","authors":["P. Thubert, Ed."],"rawDate":"2021-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9031":{"rfcNumber":"RFC9031","href":"https://www.rfc-editor.org/rfc/rfc9031","title":"Constrained Join Protocol (CoJP) for 6TiSCH","authors":["M. Vučinić, Ed.","J. Simon","K. Pister","M. Richardson"],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9032":{"rfcNumber":"RFC9032","href":"https://www.rfc-editor.org/rfc/rfc9032","title":"Encapsulation of 6TiSCH Join and Enrollment Information Elements","authors":["D. Dujovne, Ed.","M. Richardson"],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9033":{"rfcNumber":"RFC9033","href":"https://www.rfc-editor.org/rfc/rfc9033","title":"6TiSCH Minimal Scheduling Function (MSF)","authors":["T. Chang, Ed.","M. Vučinić","X. Vilajosana","S. Duquennoy","D. Dujovne"],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9034":{"rfcNumber":"RFC9034","href":"https://www.rfc-editor.org/rfc/rfc9034","title":"Packet Delivery Deadline Time in the Routing Header for IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs)","authors":["L. Thomas","S. Anamalamudi","S.V.R. Anand","M. Hegde","C. Perkins"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9035":{"rfcNumber":"RFC9035","href":"https://www.rfc-editor.org/rfc/rfc9035","title":"A Routing Protocol for Low-Power and Lossy Networks (RPL) Destination-Oriented Directed Acyclic Graph (DODAG) Configuration Option for the 6LoWPAN Routing Header","authors":["P. Thubert, Ed.","L. Zhao"],"rawDate":"2021-04","status":"Proposed Standard","updates":["RFC8138"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9036":{"rfcNumber":"RFC9036","href":"https://www.rfc-editor.org/rfc/rfc9036","title":"Changing the Location-to-Service Translation (LoST) Location Profiles Registry Policy","authors":["R. Gellens"],"rawDate":"2021-06","status":"Proposed Standard","updates":["RFC5222"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9037":{"rfcNumber":"RFC9037","href":"https://www.rfc-editor.org/rfc/rfc9037","title":"Deterministic Networking (DetNet) Data Plane: MPLS over IEEE 802.1 Time-Sensitive Networking (TSN)","authors":["B. Varga, Ed.","J. Farkas","A. Malis","S. Bryant"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9038":{"rfcNumber":"RFC9038","href":"https://www.rfc-editor.org/rfc/rfc9038","title":"Extensible Provisioning Protocol (EPP) Unhandled Namespaces","authors":["J. Gould","M. Casanova"],"rawDate":"2021-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9039":{"rfcNumber":"RFC9039","href":"https://www.rfc-editor.org/rfc/rfc9039","title":"Uniform Resource Names for Device Identifiers","authors":["J. Arkko","C. Jennings","Z. Shelby"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc904":{"aliasOf":"rfc0904"},"rfc9040":{"rfcNumber":"RFC9040","href":"https://www.rfc-editor.org/rfc/rfc9040","title":"TCP Control Block Interdependence","authors":["J. Touch","M. Welzl","S. Islam"],"rawDate":"2021-07","status":"Informational","obsoletes":["RFC2140"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9041":{"rfcNumber":"RFC9041","href":"https://www.rfc-editor.org/rfc/rfc9041","title":"Updating the MPLS Label Switched Paths (LSPs) Ping Parameters IANA Registry","authors":["L. Andersson","M. Chen","C. Pignataro","T. Saad"],"rawDate":"2021-07","status":"Proposed Standard","updates":["RFC8029","RFC8611"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9042":{"rfcNumber":"RFC9042","href":"https://www.rfc-editor.org/rfc/rfc9042","title":"Sieve Email Filtering: Delivery by MAILBOXID","authors":["B. Gondwana, Ed."],"rawDate":"2021-06","status":"Proposed Standard","updates":["RFC5228"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9043":{"rfcNumber":"RFC9043","href":"https://www.rfc-editor.org/rfc/rfc9043","title":"FFV1 Video Coding Format Versions 0, 1, and 3","authors":["M. Niedermayer","D. Rice","J. Martinez"],"rawDate":"2021-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9044":{"rfcNumber":"RFC9044","href":"https://www.rfc-editor.org/rfc/rfc9044","title":"Using the AES-GMAC Algorithm with the Cryptographic Message Syntax (CMS)","authors":["R. Housley"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9045":{"rfcNumber":"RFC9045","href":"https://www.rfc-editor.org/rfc/rfc9045","title":"Algorithm Requirements Update to the Internet X.509 Public Key Infrastructure Certificate Request Message Format (CRMF)","authors":["R. Housley"],"rawDate":"2021-06","status":"Proposed Standard","updates":["RFC4211"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9046":{"rfcNumber":"RFC9046","href":"https://www.rfc-editor.org/rfc/rfc9046","title":"Babel Information Model","authors":["B. Stark","M. Jethanandani"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9047":{"rfcNumber":"RFC9047","href":"https://www.rfc-editor.org/rfc/rfc9047","title":"Propagation of ARP/ND Flags in an Ethernet Virtual Private Network (EVPN)","authors":["J. Rabadan, Ed.","S. Sathappan","K. Nagaraj","W. Lin"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9048":{"rfcNumber":"RFC9048","href":"https://www.rfc-editor.org/rfc/rfc9048","title":"Improved Extensible Authentication Protocol Method for 3GPP Mobile Network Authentication and Key Agreement (EAP-AKA')","authors":["J. Arkko","V. Lehtovirta","V. Torvinen","P. Eronen"],"rawDate":"2021-10","status":"Informational","updates":["RFC5448","RFC4187"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9049":{"rfcNumber":"RFC9049","href":"https://www.rfc-editor.org/rfc/rfc9049","title":"Path Aware Networking: Obstacles to Deployment (A Bestiary of Roads Not Taken)","authors":["S. Dawkins, Ed."],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc905":{"aliasOf":"rfc0905"},"rfc9050":{"rfcNumber":"RFC9050","href":"https://www.rfc-editor.org/rfc/rfc9050","title":"Path Computation Element Communication Protocol (PCEP) Procedures and Extensions for Using the PCE as a Central Controller (PCECC) of LSPs","authors":["Z. Li","S. Peng","M. Negi","Q. Zhao","C. Zhou"],"rawDate":"2021-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9051":{"rfcNumber":"RFC9051","href":"https://www.rfc-editor.org/rfc/rfc9051","title":"Internet Message Access Protocol (IMAP) - Version 4rev2","authors":["A. Melnikov, Ed.","B. Leiba, Ed."],"rawDate":"2021-08","status":"Proposed Standard","obsoletes":["RFC3501"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9051","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9052":{"rfcNumber":"RFC9052","href":"https://www.rfc-editor.org/rfc/rfc9052","title":"CBOR Object Signing and Encryption (COSE): Structures and Process","authors":["J. Schaad"],"rawDate":"2022-08","status":"Internet Standard","updatedBy":["RFC9338"],"obsoletes":["RFC8152"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9053":{"rfcNumber":"RFC9053","href":"https://www.rfc-editor.org/rfc/rfc9053","title":"CBOR Object Signing and Encryption (COSE): Initial Algorithms","authors":["J. Schaad"],"rawDate":"2022-08","status":"Informational","obsoletes":["RFC8152"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9054":{"rfcNumber":"RFC9054","href":"https://www.rfc-editor.org/rfc/rfc9054","title":"CBOR Object Signing and Encryption (COSE): Hash Algorithms","authors":["J. Schaad"],"rawDate":"2022-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9054","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9055":{"rfcNumber":"RFC9055","href":"https://www.rfc-editor.org/rfc/rfc9055","title":"Deterministic Networking (DetNet) Security Considerations","authors":["E. Grossman, Ed.","T. Mizrahi","A. Hacker"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9056":{"rfcNumber":"RFC9056","href":"https://www.rfc-editor.org/rfc/rfc9056","title":"Deterministic Networking (DetNet) Data Plane: IP over MPLS","authors":["B. Varga, Ed.","L. Berger","D. Fedyk","S. Bryant","J. Korhonen"],"rawDate":"2021-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9057":{"rfcNumber":"RFC9057","href":"https://www.rfc-editor.org/rfc/rfc9057","title":"Email Author Header Field","authors":["D. Crocker"],"rawDate":"2021-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9058":{"rfcNumber":"RFC9058","href":"https://www.rfc-editor.org/rfc/rfc9058","title":"Multilinear Galois Mode (MGM)","authors":["S. Smyshlyaev, Ed.","V. Nozdrunov","V. Shishkin","E. Griboedova"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9059":{"rfcNumber":"RFC9059","href":"https://www.rfc-editor.org/rfc/rfc9059","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Associated Bidirectional Label Switched Paths (LSPs)","authors":["R. Gandhi, Ed.","C. Barth","B. Wen"],"rawDate":"2021-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc906":{"aliasOf":"rfc0906"},"rfc9060":{"rfcNumber":"RFC9060","href":"https://www.rfc-editor.org/rfc/rfc9060","title":"Secure Telephone Identity Revisited (STIR) Certificate Delegation","authors":["J. Peterson"],"rawDate":"2021-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9061":{"rfcNumber":"RFC9061","href":"https://www.rfc-editor.org/rfc/rfc9061","title":"A YANG Data Model for IPsec Flow Protection Based on Software-Defined Networking (SDN)","authors":["R. Marin-Lopez","G. Lopez-Millan","F. Pereniguez-Garcia"],"rawDate":"2021-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9062":{"rfcNumber":"RFC9062","href":"https://www.rfc-editor.org/rfc/rfc9062","title":"Framework and Requirements for Ethernet VPN (EVPN) Operations, Administration, and Maintenance (OAM)","authors":["S. Salam","A. Sajassi","S. Aldrin","J. Drake","D. Eastlake 3rd"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9063":{"rfcNumber":"RFC9063","href":"https://www.rfc-editor.org/rfc/rfc9063","title":"Host Identity Protocol Architecture","authors":["R. Moskowitz, Ed.","M. Komu"],"rawDate":"2021-07","status":"Informational","obsoletes":["RFC4423"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9064":{"rfcNumber":"RFC9064","href":"https://www.rfc-editor.org/rfc/rfc9064","title":"Considerations in the Development of a QoS Architecture for CCNx-Like Information-Centric Networking Protocols","authors":["D. Oran"],"rawDate":"2021-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9065":{"rfcNumber":"RFC9065","href":"https://www.rfc-editor.org/rfc/rfc9065","title":"Considerations around Transport Header Confidentiality, Network Operations, and the Evolution of Internet Transport Protocols","authors":["G. Fairhurst","C. Perkins"],"rawDate":"2021-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9066":{"rfcNumber":"RFC9066","href":"https://www.rfc-editor.org/rfc/rfc9066","title":"Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel Call Home","authors":["T. Reddy.K","M. Boucadair, Ed.","J. Shallow"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9067":{"rfcNumber":"RFC9067","href":"https://www.rfc-editor.org/rfc/rfc9067","title":"A YANG Data Model for Routing Policy","authors":["Y. Qu","J. Tantsura","A. Lindem","X. Liu"],"rawDate":"2021-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9067","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9068":{"rfcNumber":"RFC9068","href":"https://www.rfc-editor.org/rfc/rfc9068","title":"JSON Web Token (JWT) Profile for OAuth 2.0 Access Tokens","authors":["V. Bertocci"],"rawDate":"2021-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9069":{"rfcNumber":"RFC9069","href":"https://www.rfc-editor.org/rfc/rfc9069","title":"Support for Local RIB in the BGP Monitoring Protocol (BMP)","authors":["T. Evens","S. Bayraktar","M. Bhardwaj","P. Lucente"],"rawDate":"2022-02","status":"Proposed Standard","updates":["RFC7854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc907":{"aliasOf":"rfc0907"},"rfc9070":{"rfcNumber":"RFC9070","href":"https://www.rfc-editor.org/rfc/rfc9070","title":"YANG Data Model for MPLS LDP","authors":["K. Raza, Ed.","R. Asati","X. Liu","S. Esale","X. Chen","H. Shah"],"rawDate":"2022-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9071":{"rfcNumber":"RFC9071","href":"https://www.rfc-editor.org/rfc/rfc9071","title":"RTP-Mixer Formatting of Multiparty Real-Time Text","authors":["G. Hellström"],"rawDate":"2021-07","status":"Proposed Standard","updates":["RFC4103"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9072":{"rfcNumber":"RFC9072","href":"https://www.rfc-editor.org/rfc/rfc9072","title":"Extended Optional Parameters Length for BGP OPEN Message","authors":["E. Chen","J. Scudder"],"rawDate":"2021-07","status":"Proposed Standard","updates":["RFC4271"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9073":{"rfcNumber":"RFC9073","href":"https://www.rfc-editor.org/rfc/rfc9073","title":"Event Publishing Extensions to iCalendar","authors":["M. Douglass"],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC5545"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9073","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9074":{"rfcNumber":"RFC9074","href":"https://www.rfc-editor.org/rfc/rfc9074","title":"\"VALARM\" Extensions for iCalendar","authors":["C. Daboo","K. Murchison, Ed."],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC5545"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9075":{"rfcNumber":"RFC9075","href":"https://www.rfc-editor.org/rfc/rfc9075","title":"Report from the IAB COVID-19 Network Impacts Workshop 2020","authors":["J. Arkko","S. Farrell","M. Kühlewind","C. Perkins"],"rawDate":"2021-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9076":{"rfcNumber":"RFC9076","href":"https://www.rfc-editor.org/rfc/rfc9076","title":"DNS Privacy Considerations","authors":["T. Wicinski, Ed."],"rawDate":"2021-07","status":"Informational","obsoletes":["RFC7626"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9077":{"rfcNumber":"RFC9077","href":"https://www.rfc-editor.org/rfc/rfc9077","title":"NSEC and NSEC3: TTLs and Aggressive Use","authors":["P. van Dijk"],"rawDate":"2021-07","status":"Proposed Standard","updates":["RFC4034","RFC4035","RFC5155","RFC8198"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9078":{"rfcNumber":"RFC9078","href":"https://www.rfc-editor.org/rfc/rfc9078","title":"Reaction: Indicating Summary Reaction to a Message","authors":["D. Crocker","R. Signes","N. Freed"],"rawDate":"2021-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9079":{"rfcNumber":"RFC9079","href":"https://www.rfc-editor.org/rfc/rfc9079","title":"Source-Specific Routing in the Babel Routing Protocol","authors":["M. Boutier","J. Chroboczek"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc908":{"aliasOf":"rfc0908"},"rfc9080":{"rfcNumber":"RFC9080","href":"https://www.rfc-editor.org/rfc/rfc9080","title":"Homenet Profile of the Babel Routing Protocol","authors":["J. Chroboczek"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9081":{"rfcNumber":"RFC9081","href":"https://www.rfc-editor.org/rfc/rfc9081","title":"Interoperation between Multicast Virtual Private Network (MVPN) and Multicast Source Directory Protocol (MSDP) Source-Active Routes","authors":["Z. Zhang","L. Giuliano"],"rawDate":"2021-07","status":"Proposed Standard","updates":["RFC6514"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9082":{"rfcNumber":"RFC9082","href":"https://www.rfc-editor.org/rfc/rfc9082","title":"Registration Data Access Protocol (RDAP) Query Format","authors":["S. Hollenbeck","A. Newton"],"rawDate":"2021-06","status":"Internet Standard","obsoletes":["RFC7482"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9083":{"rfcNumber":"RFC9083","href":"https://www.rfc-editor.org/rfc/rfc9083","title":"JSON Responses for the Registration Data Access Protocol (RDAP)","authors":["S. Hollenbeck","A. Newton"],"rawDate":"2021-06","status":"Internet Standard","obsoletes":["RFC7483"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9083","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9084":{"rfcNumber":"RFC9084","href":"https://www.rfc-editor.org/rfc/rfc9084","title":"OSPF Prefix Originator Extensions","authors":["A. Wang","A. Lindem","J. Dong","P. Psenak","K. Talaulikar, Ed."],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9085":{"rfcNumber":"RFC9085","href":"https://www.rfc-editor.org/rfc/rfc9085","title":"Border Gateway Protocol - Link State (BGP-LS) Extensions for Segment Routing","authors":["S. Previdi","K. Talaulikar, Ed.","C. Filsfils","H. Gredler","M. Chen"],"rawDate":"2021-08","status":"Proposed Standard","updatedBy":["RFC9356"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9085","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9086":{"rfcNumber":"RFC9086","href":"https://www.rfc-editor.org/rfc/rfc9086","title":"Border Gateway Protocol - Link State (BGP-LS) Extensions for Segment Routing BGP Egress Peer Engineering","authors":["S. Previdi","K. Talaulikar, Ed.","C. Filsfils","K. Patel","S. Ray","J. Dong"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9087":{"rfcNumber":"RFC9087","href":"https://www.rfc-editor.org/rfc/rfc9087","title":"Segment Routing Centralized BGP Egress Peer Engineering","authors":["C. Filsfils, Ed.","S. Previdi","G. Dawra, Ed.","E. Aries","D. Afanasiev"],"rawDate":"2021-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9088":{"rfcNumber":"RFC9088","href":"https://www.rfc-editor.org/rfc/rfc9088","title":"Signaling Entropy Label Capability and Entropy Readable Label Depth Using IS-IS","authors":["X. Xu","S. Kini","P. Psenak","C. Filsfils","S. Litkowski","M. Bocci"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9089":{"rfcNumber":"RFC9089","href":"https://www.rfc-editor.org/rfc/rfc9089","title":"Signaling Entropy Label Capability and Entropy Readable Label Depth Using OSPF","authors":["X. Xu","S. Kini","P. Psenak","C. Filsfils","S. Litkowski","M. Bocci"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc909":{"aliasOf":"rfc0909"},"rfc9090":{"rfcNumber":"RFC9090","href":"https://www.rfc-editor.org/rfc/rfc9090","title":"Concise Binary Object Representation (CBOR) Tags for Object Identifiers","authors":["C. Bormann"],"rawDate":"2021-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9091":{"rfcNumber":"RFC9091","href":"https://www.rfc-editor.org/rfc/rfc9091","title":"Experimental Domain-Based Message Authentication, Reporting, and Conformance (DMARC) Extension for Public Suffix Domains","authors":["S. Kitterman","T. Wicinski, Ed."],"rawDate":"2021-07","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9092":{"rfcNumber":"RFC9092","href":"https://www.rfc-editor.org/rfc/rfc9092","title":"Finding and Using Geofeed Data","authors":["R. Bush","M. Candela","W. Kumari","R. Housley"],"rawDate":"2021-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9093":{"rfcNumber":"RFC9093","href":"https://www.rfc-editor.org/rfc/rfc9093","title":"A YANG Data Model for Layer 0 Types","authors":["H. Zheng","Y. Lee","A. Guo","V. Lopez","D. King"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9094":{"rfcNumber":"RFC9094","href":"https://www.rfc-editor.org/rfc/rfc9094","title":"A YANG Data Model for Wavelength Switched Optical Networks (WSONs)","authors":["H. Zheng","Y. Lee","A. Guo","V. Lopez","D. King"],"rawDate":"2021-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9094","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9095":{"rfcNumber":"RFC9095","href":"https://www.rfc-editor.org/rfc/rfc9095","title":"Extensible Provisioning Protocol (EPP) Domain Name Mapping Extension for Strict Bundling Registration","authors":["J. Yao","L. Zhou","H. Li","N. Kong","J. Xie"],"rawDate":"2021-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9096":{"rfcNumber":"RFC9096","href":"https://www.rfc-editor.org/rfc/rfc9096","title":"Improving the Reaction of Customer Edge Routers to IPv6 Renumbering Events","authors":["F. Gont","J. Žorž","R. Patterson","B. Volz"],"rawDate":"2021-08","status":"Best Current Practice","updates":["RFC7084"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9097":{"rfcNumber":"RFC9097","href":"https://www.rfc-editor.org/rfc/rfc9097","title":"Metrics and Methods for One-Way IP Capacity","authors":["A. Morton","R. Geib","L. Ciavattone"],"rawDate":"2021-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9098":{"rfcNumber":"RFC9098","href":"https://www.rfc-editor.org/rfc/rfc9098","title":"Operational Implications of IPv6 Packets with Extension Headers","authors":["F. Gont","N. Hilliard","G. Doering","W. Kumari","G. Huston","W. Liu"],"rawDate":"2021-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9098","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9099":{"rfcNumber":"RFC9099","href":"https://www.rfc-editor.org/rfc/rfc9099","title":"Operational Security Considerations for IPv6 Networks","authors":["É. Vyncke","K. Chittimaneni","M. Kaeo","E. Rey"],"rawDate":"2021-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc91":{"aliasOf":"rfc0091"},"rfc910":{"aliasOf":"rfc0910"},"rfc9100":{"rfcNumber":"RFC9100","href":"https://www.rfc-editor.org/rfc/rfc9100","title":"Sensor Measurement Lists (SenML) Features and Versions","authors":["C. Bormann"],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC8428"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9101":{"rfcNumber":"RFC9101","href":"https://www.rfc-editor.org/rfc/rfc9101","title":"The OAuth 2.0 Authorization Framework: JWT-Secured Authorization Request (JAR)","authors":["N. Sakimura","J. Bradley","M. Jones"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9102":{"rfcNumber":"RFC9102","href":"https://www.rfc-editor.org/rfc/rfc9102","title":"TLS DNSSEC Chain Extension","authors":["V. Dukhovni","S. Huque","W. Toorop","P. Wouters","M. Shore"],"rawDate":"2021-08","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9102","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9103":{"rfcNumber":"RFC9103","href":"https://www.rfc-editor.org/rfc/rfc9103","title":"DNS Zone Transfer over TLS","authors":["W. Toorop","S. Dickinson","S. Sahib","P. Aras","A. Mankin"],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC1995","RFC5936","RFC7766"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9104":{"rfcNumber":"RFC9104","href":"https://www.rfc-editor.org/rfc/rfc9104","title":"Distribution of Traffic Engineering Extended Administrative Groups Using the Border Gateway Protocol - Link State (BGP-LS)","authors":["J. Tantsura","Z. Wang","Q. Wu","K. Talaulikar"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9105":{"rfcNumber":"RFC9105","href":"https://www.rfc-editor.org/rfc/rfc9105","title":"A YANG Data Model for Terminal Access Controller Access-Control System Plus (TACACS+)","authors":["B. Wu, Ed.","G. Zheng","M. Wang, Ed."],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9106":{"rfcNumber":"RFC9106","href":"https://www.rfc-editor.org/rfc/rfc9106","title":"Argon2 Memory-Hard Function for Password Hashing and Proof-of-Work Applications","authors":["A. Biryukov","D. Dinu","D. Khovratovich","S. Josefsson"],"rawDate":"2021-09","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9106","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9107":{"rfcNumber":"RFC9107","href":"https://www.rfc-editor.org/rfc/rfc9107","title":"BGP Optimal Route Reflection (BGP ORR)","authors":["R. Raszuk, Ed.","B. Decraene, Ed.","C. Cassar","E. Åman","K. Wang"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9108":{"rfcNumber":"RFC9108","href":"https://www.rfc-editor.org/rfc/rfc9108","title":"YANG Types for DNS Classes and Resource Record Types","authors":["L. Lhotka","P. Špaček"],"rawDate":"2021-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9109":{"rfcNumber":"RFC9109","href":"https://www.rfc-editor.org/rfc/rfc9109","title":"Network Time Protocol Version 4: Port Randomization","authors":["F. Gont","G. Gont","M. Lichvar"],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC5905"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc911":{"aliasOf":"rfc0911"},"rfc9110":{"rfcNumber":"RFC9110","href":"https://httpwg.org/specs/rfc9110.html","title":"HTTP Semantics","authors":["R. Fielding, Ed.","M. Nottingham, Ed.","J. Reschke, Ed."],"rawDate":"2022-06","status":"Internet Standard","updates":["RFC3864"],"obsoletes":["RFC2818","RFC7230","RFC7231","RFC7232","RFC7233","RFC7235","RFC7538","RFC7615","RFC7694"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9110","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9111":{"rfcNumber":"RFC9111","href":"https://httpwg.org/specs/rfc9111.html","title":"HTTP Caching","authors":["R. Fielding, Ed.","M. Nottingham, Ed.","J. Reschke, Ed."],"rawDate":"2022-06","status":"Internet Standard","obsoletes":["RFC7234"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9111","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9112":{"rfcNumber":"RFC9112","href":"https://httpwg.org/specs/rfc9112.html","title":"HTTP/1.1","authors":["R. Fielding, Ed.","M. Nottingham, Ed.","J. Reschke, Ed."],"rawDate":"2022-06","status":"Internet Standard","obsoletes":["RFC7230"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9112","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9113":{"rfcNumber":"RFC9113","href":"https://httpwg.org/specs/rfc9113.html","title":"HTTP/2","authors":["M. Thomson, Ed.","C. Benfield, Ed."],"rawDate":"2022-06","status":"Proposed Standard","obsoletes":["RFC7540","RFC8740"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9113","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9114":{"rfcNumber":"RFC9114","href":"https://httpwg.org/specs/rfc9114.html","title":"HTTP/3","authors":["M. Bishop, Ed."],"rawDate":"2022-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9114","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9115":{"rfcNumber":"RFC9115","href":"https://www.rfc-editor.org/rfc/rfc9115","title":"An Automatic Certificate Management Environment (ACME) Profile for Generating Delegated Certificates","authors":["Y. Sheffer","D. López","A. Pastor Perales","T. Fossati"],"rawDate":"2021-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9115","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9116":{"rfcNumber":"RFC9116","href":"https://www.rfc-editor.org/rfc/rfc9116","title":"A File Format to Aid in Security Vulnerability Disclosure","authors":["E. Foudil","Y. Shafranovich"],"rawDate":"2022-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9116","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9117":{"rfcNumber":"RFC9117","href":"https://www.rfc-editor.org/rfc/rfc9117","title":"Revised Validation Procedure for BGP Flow Specifications","authors":["J. Uttaro","J. Alcaide","C. Filsfils","D. Smith","P. Mohapatra"],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC8955"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9118":{"rfcNumber":"RFC9118","href":"https://www.rfc-editor.org/rfc/rfc9118","title":"Enhanced JSON Web Token (JWT) Claim Constraints for Secure Telephone Identity Revisited (STIR) Certificates","authors":["R. Housley"],"rawDate":"2021-08","status":"Proposed Standard","updates":["RFC8226"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9119":{"rfcNumber":"RFC9119","href":"https://www.rfc-editor.org/rfc/rfc9119","title":"Multicast Considerations over IEEE 802 Wireless Media","authors":["C. Perkins","M. McBride","D. Stanley","W. Kumari","JC. Zúñiga"],"rawDate":"2021-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc912":{"aliasOf":"rfc0912"},"rfc9120":{"rfcNumber":"RFC9120","href":"https://www.rfc-editor.org/rfc/rfc9120","title":"Nameservers for the Address and Routing Parameter Area (\"arpa\") Domain","authors":["K. Davies","J. Arkko"],"rawDate":"2021-10","status":"Informational","updates":["RFC3172"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9121":{"rfcNumber":"RFC9121","href":"https://www.rfc-editor.org/rfc/rfc9121","title":"Deprecating Infrastructure \"int\" Domains","authors":["K. Davies","A. Baber"],"rawDate":"2023-04","status":"Informational","updates":["RFC1706"],"obsoletes":["RFC1528"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9122":{"rfcNumber":"RFC9122","href":"https://www.rfc-editor.org/rfc/rfc9122","title":"IANA Registry for Sieve Actions","authors":["A. Melnikov","K. Murchison"],"rawDate":"2023-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9124":{"rfcNumber":"RFC9124","href":"https://www.rfc-editor.org/rfc/rfc9124","title":"A Manifest Information Model for Firmware Updates in Internet of Things (IoT) Devices","authors":["B. Moran","H. Tschofenig","H. Birkholz"],"rawDate":"2022-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9124","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9125":{"rfcNumber":"RFC9125","href":"https://www.rfc-editor.org/rfc/rfc9125","title":"Gateway Auto-Discovery and Route Advertisement for Site Interconnection Using Segment Routing","authors":["A. Farrel","J. Drake","E. Rosen","K. Patel","L. Jalil"],"rawDate":"2021-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9126":{"rfcNumber":"RFC9126","href":"https://www.rfc-editor.org/rfc/rfc9126","title":"OAuth 2.0 Pushed Authorization Requests","authors":["T. Lodderstedt","B. Campbell","N. Sakimura","D. Tonge","F. Skokan"],"rawDate":"2021-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9126","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9127":{"rfcNumber":"RFC9127","href":"https://www.rfc-editor.org/rfc/rfc9127","title":"YANG Data Model for Bidirectional Forwarding Detection (BFD)","authors":["R. Rahman, Ed.","L. Zheng, Ed.","M. Jethanandani, Ed.","S. Pallagatti","G. Mirsky"],"rawDate":"2021-10","status":"Proposed Standard","updatedBy":["RFC9314"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9128":{"rfcNumber":"RFC9128","href":"https://www.rfc-editor.org/rfc/rfc9128","title":"YANG Data Model for Protocol Independent Multicast (PIM)","authors":["X. Liu","P. McAllister","A. Peter","M. Sivakumar","Y. Liu","F. Hu"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9129":{"rfcNumber":"RFC9129","href":"https://www.rfc-editor.org/rfc/rfc9129","title":"YANG Data Model for the OSPF Protocol","authors":["D. Yeung","Y. Qu","Z. Zhang","I. Chen","A. Lindem"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc913":{"aliasOf":"rfc0913"},"rfc9130":{"rfcNumber":"RFC9130","href":"https://www.rfc-editor.org/rfc/rfc9130","title":"YANG Data Model for the IS-IS Protocol","authors":["S. Litkowski, Ed.","D. Yeung","A. Lindem","J. Zhang","L. Lhotka"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9131":{"rfcNumber":"RFC9131","href":"https://www.rfc-editor.org/rfc/rfc9131","title":"Gratuitous Neighbor Discovery: Creating Neighbor Cache Entries on First-Hop Routers","authors":["J. Linkova"],"rawDate":"2021-10","status":"Proposed Standard","updates":["RFC4861"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9132":{"rfcNumber":"RFC9132","href":"https://www.rfc-editor.org/rfc/rfc9132","title":"Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel Specification","authors":["M. Boucadair, Ed.","J. Shallow","T. Reddy.K"],"rawDate":"2021-09","status":"Proposed Standard","obsoletes":["RFC8782"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9132","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9133":{"rfcNumber":"RFC9133","href":"https://www.rfc-editor.org/rfc/rfc9133","title":"Controlling Filtering Rules Using Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel","authors":["K. Nishizuka","M. Boucadair","T. Reddy.K","T. Nagata"],"rawDate":"2021-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9134":{"rfcNumber":"RFC9134","href":"https://www.rfc-editor.org/rfc/rfc9134","title":"RTP Payload Format for ISO/IEC 21122 (JPEG XS)","authors":["T. Bruylants","A. Descampe","C. Damman","T. Richter"],"rawDate":"2021-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9134","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9135":{"rfcNumber":"RFC9135","href":"https://www.rfc-editor.org/rfc/rfc9135","title":"Integrated Routing and Bridging in Ethernet VPN (EVPN)","authors":["A. Sajassi","S. Salam","S. Thoria","J. Drake","J. Rabadan"],"rawDate":"2021-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9135","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9136":{"rfcNumber":"RFC9136","href":"https://www.rfc-editor.org/rfc/rfc9136","title":"IP Prefix Advertisement in Ethernet VPN (EVPN)","authors":["J. Rabadan, Ed.","W. Henderickx","J. Drake","W. Lin","A. Sajassi"],"rawDate":"2021-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9137":{"rfcNumber":"RFC9137","href":"https://www.rfc-editor.org/rfc/rfc9137","title":"Considerations for Cancellation of IETF Meetings","authors":["M. Duke"],"rawDate":"2021-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9138":{"rfcNumber":"RFC9138","href":"https://www.rfc-editor.org/rfc/rfc9138","title":"Design Considerations for Name Resolution Service in Information-Centric Networking (ICN)","authors":["J. Hong","T. You","L. Dong","C. Westphal","B. Ohlman"],"rawDate":"2021-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9139":{"rfcNumber":"RFC9139","href":"https://www.rfc-editor.org/rfc/rfc9139","title":"Information-Centric Networking (ICN) Adaptation to Low-Power Wireless Personal Area Networks (LoWPANs)","authors":["C. Gündoğan","T. Schmidt","M. Wählisch","C. Scherb","C. Marxer","C. Tschudin"],"rawDate":"2021-11","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc914":{"aliasOf":"rfc0914"},"rfc9140":{"rfcNumber":"RFC9140","href":"https://www.rfc-editor.org/rfc/rfc9140","title":"Nimble Out-of-Band Authentication for EAP (EAP-NOOB)","authors":["T. Aura","M. Sethi","A. Peltonen"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9141":{"rfcNumber":"RFC9141","href":"https://www.rfc-editor.org/rfc/rfc9141","title":"Updating References to the IETF FTP Service","authors":["R. Danyliw"],"rawDate":"2021-11","status":"Proposed Standard","updates":["RFC2077","RFC2418","RFC2648","RFC2954","RFC2955","RFC3020","RFC3083","RFC3201","RFC3202","RFC3295","RFC3684","RFC3962","RFC3970","RFC4036","RFC4131","RFC4251","RFC4323","RFC4546","RFC4547","RFC4639","RFC4682","RFC5098","RFC5428","RFC6756","RFC7241"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9142":{"rfcNumber":"RFC9142","href":"https://www.rfc-editor.org/rfc/rfc9142","title":"Key Exchange (KEX) Method Updates and Recommendations for Secure Shell (SSH)","authors":["M. Baushke"],"rawDate":"2022-01","status":"Proposed Standard","updates":["RFC4250","RFC4253","RFC4432","RFC4462"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9142","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9143":{"rfcNumber":"RFC9143","href":"https://www.rfc-editor.org/rfc/rfc9143","title":"Negotiating Media Multiplexing Using the Session Description Protocol (SDP)","authors":["C. Holmberg","H. Alvestrand","C. Jennings"],"rawDate":"2022-02","status":"Proposed Standard","updates":["RFC3264","RFC5888","RFC7941"],"obsoletes":["RFC8843"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9144":{"rfcNumber":"RFC9144","href":"https://www.rfc-editor.org/rfc/rfc9144","title":"Comparison of Network Management Datastore Architecture (NMDA) Datastores","authors":["A. Clemm","Y. Qu","J. Tantsura","A. Bierman"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9145":{"rfcNumber":"RFC9145","href":"https://www.rfc-editor.org/rfc/rfc9145","title":"Integrity Protection for the Network Service Header (NSH) and Encryption of Sensitive Context Headers","authors":["M. Boucadair","T. Reddy.K","D. Wing"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9146":{"rfcNumber":"RFC9146","href":"https://www.rfc-editor.org/rfc/rfc9146","title":"Connection Identifier for DTLS 1.2","authors":["E. Rescorla, Ed.","H. Tschofenig, Ed.","T. Fossati","A. Kraus"],"rawDate":"2022-03","status":"Proposed Standard","updates":["RFC6347"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9147":{"rfcNumber":"RFC9147","href":"https://www.rfc-editor.org/rfc/rfc9147","title":"The Datagram Transport Layer Security (DTLS) Protocol Version 1.3","authors":["E. Rescorla","H. Tschofenig","N. Modadugu"],"rawDate":"2022-04","status":"Proposed Standard","obsoletes":["RFC6347"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9148":{"rfcNumber":"RFC9148","href":"https://www.rfc-editor.org/rfc/rfc9148","title":"EST-coaps: Enrollment over Secure Transport with the Secure Constrained Application Protocol","authors":["P. van der Stok","P. Kampanakis","M. Richardson","S. Raza"],"rawDate":"2022-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9149":{"rfcNumber":"RFC9149","href":"https://www.rfc-editor.org/rfc/rfc9149","title":"TLS Ticket Requests","authors":["T. Pauly","D. Schinazi","C.A. Wood"],"rawDate":"2022-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc915":{"aliasOf":"rfc0915"},"rfc9150":{"rfcNumber":"RFC9150","href":"https://www.rfc-editor.org/rfc/rfc9150","title":"TLS 1.3 Authentication and Integrity-Only Cipher Suites","authors":["N. Cam-Winget","J. Visoky"],"rawDate":"2022-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9151":{"rfcNumber":"RFC9151","href":"https://www.rfc-editor.org/rfc/rfc9151","title":"Commercial National Security Algorithm (CNSA) Suite Profile for TLS and DTLS 1.2 and 1.3","authors":["D. Cooley"],"rawDate":"2022-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9151","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9152":{"rfcNumber":"RFC9152","href":"https://www.rfc-editor.org/rfc/rfc9152","title":"Secure Object Delivery Protocol (SODP) Server Interfaces: NSA's Profile for Delivery of Certificates, Certificate Revocation Lists (CRLs), and Symmetric Keys to Clients","authors":["M. Jenkins","S. Turner"],"rawDate":"2022-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9153":{"rfcNumber":"RFC9153","href":"https://www.rfc-editor.org/rfc/rfc9153","title":"Drone Remote Identification Protocol (DRIP) Requirements and Terminology","authors":["S. Card, Ed.","A. Wiethuechter","R. Moskowitz","A. Gurtov"],"rawDate":"2022-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9154":{"rfcNumber":"RFC9154","href":"https://www.rfc-editor.org/rfc/rfc9154","title":"Extensible Provisioning Protocol (EPP) Secure Authorization Information for Transfer","authors":["J. Gould","R. Wilhelm"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9155":{"rfcNumber":"RFC9155","href":"https://www.rfc-editor.org/rfc/rfc9155","title":"Deprecating MD5 and SHA-1 Signature Hashes in TLS 1.2 and DTLS 1.2","authors":["L. Velvindron","K. Moriarty","A. Ghedini"],"rawDate":"2021-12","status":"Proposed Standard","updates":["RFC5246"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9156":{"rfcNumber":"RFC9156","href":"https://www.rfc-editor.org/rfc/rfc9156","title":"DNS Query Name Minimisation to Improve Privacy","authors":["S. Bortzmeyer","R. Dolmans","P. Hoffman"],"rawDate":"2021-11","status":"Proposed Standard","obsoletes":["RFC7816"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9157":{"rfcNumber":"RFC9157","href":"https://www.rfc-editor.org/rfc/rfc9157","title":"Revised IANA Considerations for DNSSEC","authors":["P. Hoffman"],"rawDate":"2021-12","status":"Proposed Standard","updates":["RFC5155","RFC6014","RFC8624"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9158":{"rfcNumber":"RFC9158","href":"https://www.rfc-editor.org/rfc/rfc9158","title":"Update to the Object Identifier Registry for the PKIX Working Group","authors":["R. Housley"],"rawDate":"2021-11","status":"Informational","updates":["RFC7299"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9159":{"rfcNumber":"RFC9159","href":"https://www.rfc-editor.org/rfc/rfc9159","title":"IPv6 Mesh over BLUETOOTH(R) Low Energy Using the Internet Protocol Support Profile (IPSP)","authors":["C. Gomez","S.M. Darroudi","T. Savolainen","M. Spoerk"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc916":{"aliasOf":"rfc0916"},"rfc9160":{"rfcNumber":"RFC9160","href":"https://www.rfc-editor.org/rfc/rfc9160","title":"Export of MPLS Segment Routing Label Type Information in IP Flow Information Export (IPFIX)","authors":["T. Graf"],"rawDate":"2021-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9161":{"rfcNumber":"RFC9161","href":"https://www.rfc-editor.org/rfc/rfc9161","title":"Operational Aspects of Proxy ARP/ND in Ethernet Virtual Private Networks","authors":["J. Rabadan, Ed.","S. Sathappan","K. Nagaraj","G. Hankins","T. King"],"rawDate":"2022-01","status":"Proposed Standard","updates":["RFC7432"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9162":{"rfcNumber":"RFC9162","href":"https://www.rfc-editor.org/rfc/rfc9162","title":"Certificate Transparency Version 2.0","authors":["B. Laurie","E. Messeri","R. Stradling"],"rawDate":"2021-12","status":"Experimental","obsoletes":["RFC6962"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9163":{"rfcNumber":"RFC9163","href":"https://www.rfc-editor.org/rfc/rfc9163","title":"Expect-CT Extension for HTTP","authors":["E. Stark"],"rawDate":"2022-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9164":{"rfcNumber":"RFC9164","href":"https://www.rfc-editor.org/rfc/rfc9164","title":"Concise Binary Object Representation (CBOR) Tags for IPv4 and IPv6 Addresses and Prefixes","authors":["M. Richardson","C. Bormann"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9165":{"rfcNumber":"RFC9165","href":"https://www.rfc-editor.org/rfc/rfc9165","title":"Additional Control Operators for the Concise Data Definition Language (CDDL)","authors":["C. Bormann"],"rawDate":"2021-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9166":{"rfcNumber":"RFC9166","href":"https://www.rfc-editor.org/rfc/rfc9166","title":"A YANG Data Model for Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) Snooping","authors":["H. Zhao","X. Liu","Y. Liu","A. Peter","M. Sivakumar"],"rawDate":"2022-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9167":{"rfcNumber":"RFC9167","href":"https://www.rfc-editor.org/rfc/rfc9167","title":"Registry Maintenance Notification for the Extensible Provisioning Protocol (EPP)","authors":["T. Sattler","R. Carney","J. Kolker"],"rawDate":"2021-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9167","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9168":{"rfcNumber":"RFC9168","href":"https://www.rfc-editor.org/rfc/rfc9168","title":"Path Computation Element Communication Protocol (PCEP) Extension for Flow Specification","authors":["D. Dhody","A. Farrel","Z. Li"],"rawDate":"2022-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9169":{"rfcNumber":"RFC9169","href":"https://www.rfc-editor.org/rfc/rfc9169","title":"New ASN.1 Modules for the Evidence Record Syntax (ERS)","authors":["R. Housley","C. Wallace"],"rawDate":"2021-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc917":{"aliasOf":"rfc0917"},"rfc9170":{"rfcNumber":"RFC9170","href":"https://www.rfc-editor.org/rfc/rfc9170","title":"Long-Term Viability of Protocol Extension Mechanisms","authors":["M. Thomson","T. Pauly"],"rawDate":"2021-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9171":{"rfcNumber":"RFC9171","href":"https://www.rfc-editor.org/rfc/rfc9171","title":"Bundle Protocol Version 7","authors":["S. Burleigh","K. Fall","E. Birrane, III"],"rawDate":"2022-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9171","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9172":{"rfcNumber":"RFC9172","href":"https://www.rfc-editor.org/rfc/rfc9172","title":"Bundle Protocol Security (BPSec)","authors":["E. Birrane, III","K. McKeever"],"rawDate":"2022-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9172","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9173":{"rfcNumber":"RFC9173","href":"https://www.rfc-editor.org/rfc/rfc9173","title":"Default Security Contexts for Bundle Protocol Security (BPSec)","authors":["E. Birrane, III","A. White","S. Heiner"],"rawDate":"2022-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9173","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9174":{"rfcNumber":"RFC9174","href":"https://www.rfc-editor.org/rfc/rfc9174","title":"Delay-Tolerant Networking TCP Convergence-Layer Protocol Version 4","authors":["B. Sipos","M. Demmer","J. Ott","S. Perreault"],"rawDate":"2022-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9175":{"rfcNumber":"RFC9175","href":"https://www.rfc-editor.org/rfc/rfc9175","title":"Constrained Application Protocol (CoAP): Echo, Request-Tag, and Token Processing","authors":["C. Amsüss","J. Preuß Mattsson","G. Selander"],"rawDate":"2022-02","status":"Proposed Standard","updates":["RFC7252"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9176":{"rfcNumber":"RFC9176","href":"https://www.rfc-editor.org/rfc/rfc9176","title":"Constrained RESTful Environments (CoRE) Resource Directory","authors":["C. Amsüss, Ed.","Z. Shelby","M. Koster","C. Bormann","P. van der Stok"],"rawDate":"2022-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9177":{"rfcNumber":"RFC9177","href":"https://www.rfc-editor.org/rfc/rfc9177","title":"Constrained Application Protocol (CoAP) Block-Wise Transfer Options Supporting Robust Transmission","authors":["M. Boucadair","J. Shallow"],"rawDate":"2022-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9178":{"rfcNumber":"RFC9178","href":"https://www.rfc-editor.org/rfc/rfc9178","title":"Building Power-Efficient Constrained Application Protocol (CoAP) Devices for Cellular Networks","authors":["J. Arkko","A. Eriksson","A. Keränen"],"rawDate":"2022-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9179":{"rfcNumber":"RFC9179","href":"https://www.rfc-editor.org/rfc/rfc9179","title":"A YANG Grouping for Geographic Locations","authors":["C. Hopps"],"rawDate":"2022-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc918":{"aliasOf":"rfc0918"},"rfc9180":{"rfcNumber":"RFC9180","href":"https://www.rfc-editor.org/rfc/rfc9180","title":"Hybrid Public Key Encryption","authors":["R. Barnes","K. Bhargavan","B. Lipp","C. Wood"],"rawDate":"2022-02","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9180","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9181":{"rfcNumber":"RFC9181","href":"https://www.rfc-editor.org/rfc/rfc9181","title":"A Common YANG Data Model for Layer 2 and Layer 3 VPNs","authors":["S. Barguil","O. Gonzalez de Dios, Ed.","M. Boucadair, Ed.","Q. Wu"],"rawDate":"2022-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9182":{"rfcNumber":"RFC9182","href":"https://www.rfc-editor.org/rfc/rfc9182","title":"A YANG Network Data Model for Layer 3 VPNs","authors":["S. Barguil","O. Gonzalez de Dios, Ed.","M. Boucadair, Ed.","L. Munoz","A. Aguado"],"rawDate":"2022-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9183":{"rfcNumber":"RFC9183","href":"https://www.rfc-editor.org/rfc/rfc9183","title":"Single Nickname for an Area Border RBridge in Multilevel Transparent Interconnection of Lots of Links (TRILL)","authors":["M. Zhang","D. Eastlake 3rd","R. Perlman","M. Cullen","H. Zhai"],"rawDate":"2022-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9184":{"rfcNumber":"RFC9184","href":"https://www.rfc-editor.org/rfc/rfc9184","title":"BGP Extended Community Registries Update","authors":["C. Loibl"],"rawDate":"2022-01","status":"Proposed Standard","updates":["RFC7153","RFC8955"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9185":{"rfcNumber":"RFC9185","href":"https://www.rfc-editor.org/rfc/rfc9185","title":"DTLS Tunnel between a Media Distributor and Key Distributor to Facilitate Key Exchange","authors":["P. Jones","P. Ellenbogen","N. Ohlmeier"],"rawDate":"2022-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9186":{"rfcNumber":"RFC9186","href":"https://www.rfc-editor.org/rfc/rfc9186","title":"Fast Failover in Protocol Independent Multicast - Sparse Mode (PIM-SM) Using Bidirectional Forwarding Detection (BFD) for Multipoint Networks","authors":["G. Mirsky","X. Ji"],"rawDate":"2022-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9187":{"rfcNumber":"RFC9187","href":"https://www.rfc-editor.org/rfc/rfc9187","title":"Sequence Number Extension for Windowed Protocols","authors":["J. Touch"],"rawDate":"2022-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9187","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9188":{"rfcNumber":"RFC9188","href":"https://www.rfc-editor.org/rfc/rfc9188","title":"Generic Multi-Access (GMA) Encapsulation Protocol","authors":["J. Zhu","S. Kanugovi"],"rawDate":"2022-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9189":{"rfcNumber":"RFC9189","href":"https://www.rfc-editor.org/rfc/rfc9189","title":"GOST Cipher Suites for Transport Layer Security (TLS) Protocol Version 1.2","authors":["S. Smyshlyaev, Ed.","D. Belyavsky","E. Alekseev"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc919":{"aliasOf":"rfc0919"},"rfc9190":{"rfcNumber":"RFC9190","href":"https://www.rfc-editor.org/rfc/rfc9190","title":"EAP-TLS 1.3: Using the Extensible Authentication Protocol with TLS 1.3","authors":["J. Preuß Mattsson","M. Sethi"],"rawDate":"2022-02","status":"Proposed Standard","updates":["RFC5216"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9190","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9191":{"rfcNumber":"RFC9191","href":"https://www.rfc-editor.org/rfc/rfc9191","title":"Handling Large Certificates and Long Certificate Chains in TLS-Based EAP Methods","authors":["M. Sethi","J. Preuß Mattsson","S. Turner"],"rawDate":"2022-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9192":{"rfcNumber":"RFC9192","href":"https://www.rfc-editor.org/rfc/rfc9192","title":"Network Service Header (NSH) Fixed-Length Context Header Allocation","authors":["T. Mizrahi","I. Yerushalmi","D. Melman","R. Browne"],"rawDate":"2022-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9193":{"rfcNumber":"RFC9193","href":"https://www.rfc-editor.org/rfc/rfc9193","title":"Sensor Measurement Lists (SenML) Fields for Indicating Data Value Content-Format","authors":["A. Keränen","C. Bormann"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9194":{"rfcNumber":"RFC9194","href":"https://www.rfc-editor.org/rfc/rfc9194","title":"A YANG Module for IS-IS Reverse Metric","authors":["C. Hopps"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9195":{"rfcNumber":"RFC9195","href":"https://www.rfc-editor.org/rfc/rfc9195","title":"A File Format for YANG Instance Data","authors":["B. Lengyel","B. Claise"],"rawDate":"2022-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9196":{"rfcNumber":"RFC9196","href":"https://www.rfc-editor.org/rfc/rfc9196","title":"YANG Modules Describing Capabilities for Systems and Datastore Update Notifications","authors":["B. Lengyel","A. Clemm","B. Claise"],"rawDate":"2022-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9196","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9197":{"rfcNumber":"RFC9197","href":"https://www.rfc-editor.org/rfc/rfc9197","title":"Data Fields for In Situ Operations, Administration, and Maintenance (IOAM)","authors":["F. Brockners, Ed.","S. Bhandari, Ed.","T. Mizrahi, Ed."],"rawDate":"2022-05","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9197","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9198":{"rfcNumber":"RFC9198","href":"https://www.rfc-editor.org/rfc/rfc9198","title":"Advanced Unidirectional Route Assessment (AURA)","authors":["J. Alvarez-Hamelin","A. Morton","J. Fabini","C. Pignataro","R. Geib"],"rawDate":"2022-05","status":"Proposed Standard","updates":["RFC2330"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9199":{"rfcNumber":"RFC9199","href":"https://www.rfc-editor.org/rfc/rfc9199","title":"Considerations for Large Authoritative DNS Server Operators","authors":["G. Moura","W. Hardaker","J. Heidemann","M. Davids"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc920":{"aliasOf":"rfc0920"},"rfc9200":{"rfcNumber":"RFC9200","href":"https://www.rfc-editor.org/rfc/rfc9200","title":"Authentication and Authorization for Constrained Environments Using the OAuth 2.0 Framework (ACE-OAuth)","authors":["L. Seitz","G. Selander","E. Wahlstroem","S. Erdtman","H. Tschofenig"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9201":{"rfcNumber":"RFC9201","href":"https://www.rfc-editor.org/rfc/rfc9201","title":"Additional OAuth Parameters for Authentication and Authorization for Constrained Environments (ACE)","authors":["L. Seitz"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9202":{"rfcNumber":"RFC9202","href":"https://www.rfc-editor.org/rfc/rfc9202","title":"Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE)","authors":["S. Gerdes","O. Bergmann","C. Bormann","G. Selander","L. Seitz"],"rawDate":"2022-08","status":"Proposed Standard","updatedBy":["RFC9430"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9203":{"rfcNumber":"RFC9203","href":"https://www.rfc-editor.org/rfc/rfc9203","title":"The Object Security for Constrained RESTful Environments (OSCORE) Profile of the Authentication and Authorization for Constrained Environments (ACE) Framework","authors":["F. Palombini","L. Seitz","G. Selander","M. Gunnarsson"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9204":{"rfcNumber":"RFC9204","href":"https://httpwg.org/specs/rfc9204.html","title":"QPACK: Field Compression for HTTP/3","authors":["C. Krasic","M. Bishop","A. Frindell, Ed."],"rawDate":"2022-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9204","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9205":{"rfcNumber":"RFC9205","href":"https://httpwg.org/specs/rfc9205.html","title":"Building Protocols with HTTP","authors":["M. Nottingham"],"rawDate":"2022-06","status":"Best Current Practice","obsoletes":["RFC3205"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9206":{"rfcNumber":"RFC9206","href":"https://www.rfc-editor.org/rfc/rfc9206","title":"Commercial National Security Algorithm (CNSA) Suite Cryptography for Internet Protocol Security (IPsec)","authors":["L. Corcoran","M. Jenkins"],"rawDate":"2022-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9207":{"rfcNumber":"RFC9207","href":"https://www.rfc-editor.org/rfc/rfc9207","title":"OAuth 2.0 Authorization Server Issuer Identification","authors":["K. Meyer zu Selhausen","D. Fett"],"rawDate":"2022-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9208":{"rfcNumber":"RFC9208","href":"https://www.rfc-editor.org/rfc/rfc9208","title":"IMAP QUOTA Extension","authors":["A. Melnikov"],"rawDate":"2022-03","status":"Proposed Standard","obsoletes":["RFC2087"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9209":{"rfcNumber":"RFC9209","href":"https://httpwg.org/specs/rfc9209.html","title":"The Proxy-Status HTTP Response Header Field","authors":["M. Nottingham","P. Sikora"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc921":{"aliasOf":"rfc0921"},"rfc9210":{"rfcNumber":"RFC9210","href":"https://www.rfc-editor.org/rfc/rfc9210","title":"DNS Transport over TCP - Operational Requirements","authors":["J. Kristoff","D. Wessels"],"rawDate":"2022-03","status":"Best Current Practice","updates":["RFC1123","RFC1536"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9211":{"rfcNumber":"RFC9211","href":"https://httpwg.org/specs/rfc9211.html","title":"The Cache-Status HTTP Response Header Field","authors":["M. Nottingham"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9212":{"rfcNumber":"RFC9212","href":"https://www.rfc-editor.org/rfc/rfc9212","title":"Commercial National Security Algorithm (CNSA) Suite Cryptography for Secure Shell (SSH)","authors":["N. Gajcowski","M. Jenkins"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9213":{"rfcNumber":"RFC9213","href":"https://httpwg.org/specs/rfc9213.html","title":"Targeted HTTP Cache Control","authors":["S. Ludin","M. Nottingham","Y. Wu"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9214":{"rfcNumber":"RFC9214","href":"https://www.rfc-editor.org/rfc/rfc9214","title":"OSPFv3 Code Point for MPLS LSP Ping","authors":["N. Nainar","C. Pignataro","M. Aissaoui"],"rawDate":"2022-04","status":"Proposed Standard","updates":["RFC8287"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9215":{"rfcNumber":"RFC9215","href":"https://www.rfc-editor.org/rfc/rfc9215","title":"Using GOST R 34.10-2012 and GOST R 34.11-2012 Algorithms with the Internet X.509 Public Key Infrastructure","authors":["D. Baryshkov, Ed.","V. Nikolaev","A. Chelpanov"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9216":{"rfcNumber":"RFC9216","href":"https://www.rfc-editor.org/rfc/rfc9216","title":"S/MIME Example Keys and Certificates","authors":["D. K. Gillmor, Ed."],"rawDate":"2022-04","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9216","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9217":{"rfcNumber":"RFC9217","href":"https://www.rfc-editor.org/rfc/rfc9217","title":"Current Open Questions in Path-Aware Networking","authors":["B. Trammell"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9218":{"rfcNumber":"RFC9218","href":"https://httpwg.org/specs/rfc9218.html","title":"Extensible Prioritization Scheme for HTTP","authors":["K. Oku","L. Pardue"],"rawDate":"2022-06","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9218","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9219":{"rfcNumber":"RFC9219","href":"https://www.rfc-editor.org/rfc/rfc9219","title":"S/MIME Signature Verification Extension to the JSON Meta Application Protocol (JMAP)","authors":["A. Melnikov"],"rawDate":"2022-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc922":{"aliasOf":"rfc0922"},"rfc9220":{"rfcNumber":"RFC9220","href":"https://httpwg.org/specs/rfc9220.html","title":"Bootstrapping WebSockets with HTTP/3","authors":["R. Hamilton"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9221":{"rfcNumber":"RFC9221","href":"https://www.rfc-editor.org/rfc/rfc9221","title":"An Unreliable Datagram Extension to QUIC","authors":["T. Pauly","E. Kinnear","D. Schinazi"],"rawDate":"2022-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9222":{"rfcNumber":"RFC9222","href":"https://www.rfc-editor.org/rfc/rfc9222","title":"Guidelines for Autonomic Service Agents","authors":["B. E. Carpenter","L. Ciavaglia","S. Jiang","P. Peloso"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9223":{"rfcNumber":"RFC9223","href":"https://www.rfc-editor.org/rfc/rfc9223","title":"Real-Time Transport Object Delivery over Unidirectional Transport (ROUTE)","authors":["W. Zia","T. Stockhammer","L. Chaponniere","G. Mandyam","M. Luby"],"rawDate":"2022-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9224":{"rfcNumber":"RFC9224","href":"https://www.rfc-editor.org/rfc/rfc9224","title":"Finding the Authoritative Registration Data Access Protocol (RDAP) Service","authors":["M. Blanchet"],"rawDate":"2022-03","status":"Internet Standard","obsoletes":["RFC7484"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9225":{"rfcNumber":"RFC9225","href":"https://www.rfc-editor.org/rfc/rfc9225","title":"Software Defects Considered Harmful","authors":["J. Snijders","C. Morrow","R. van Mook"],"rawDate":"2022-04-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9225","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9226":{"rfcNumber":"RFC9226","href":"https://www.rfc-editor.org/rfc/rfc9226","title":"Bioctal: Hexadecimal 2.0","authors":["M. Breen"],"rawDate":"2022-04-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9227":{"rfcNumber":"RFC9227","href":"https://www.rfc-editor.org/rfc/rfc9227","title":"Using GOST Ciphers in the Encapsulating Security Payload (ESP) and Internet Key Exchange Version 2 (IKEv2) Protocols","authors":["V. Smyslov"],"rawDate":"2022-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9228":{"rfcNumber":"RFC9228","href":"https://www.rfc-editor.org/rfc/rfc9228","title":"Delivered-To Email Header Field","authors":["D. Crocker, Ed."],"rawDate":"2022-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9229":{"rfcNumber":"RFC9229","href":"https://www.rfc-editor.org/rfc/rfc9229","title":"IPv4 Routes with an IPv6 Next Hop in the Babel Routing Protocol","authors":["J. Chroboczek"],"rawDate":"2022-05","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc923":{"aliasOf":"rfc0923"},"rfc9230":{"rfcNumber":"RFC9230","href":"https://www.rfc-editor.org/rfc/rfc9230","title":"Oblivious DNS over HTTPS","authors":["E. Kinnear","P. McManus","T. Pauly","T. Verma","C.A. Wood"],"rawDate":"2022-06","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9230","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9231":{"rfcNumber":"RFC9231","href":"https://www.rfc-editor.org/rfc/rfc9231","title":"Additional XML Security Uniform Resource Identifiers (URIs)","authors":["D. Eastlake 3rd"],"rawDate":"2022-07","status":"Proposed Standard","obsoletes":["RFC6931"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9232":{"rfcNumber":"RFC9232","href":"https://www.rfc-editor.org/rfc/rfc9232","title":"Network Telemetry Framework","authors":["H. Song","F. Qin","P. Martinez-Julia","L. Ciavaglia","A. Wang"],"rawDate":"2022-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9233":{"rfcNumber":"RFC9233","href":"https://www.rfc-editor.org/rfc/rfc9233","title":"Internationalized Domain Names for Applications 2008 (IDNA2008) and Unicode 12.0.0","authors":["P. Fältström"],"rawDate":"2022-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9234":{"rfcNumber":"RFC9234","href":"https://www.rfc-editor.org/rfc/rfc9234","title":"Route Leak Prevention and Detection Using Roles in UPDATE and OPEN Messages","authors":["A. Azimov","E. Bogomazov","R. Bush","K. Patel","K. Sriram"],"rawDate":"2022-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9235":{"rfcNumber":"RFC9235","href":"https://www.rfc-editor.org/rfc/rfc9235","title":"TCP Authentication Option (TCP-AO) Test Vectors","authors":["J. Touch","J. Kuusisaari"],"rawDate":"2022-05","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9235","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9236":{"rfcNumber":"RFC9236","href":"https://www.rfc-editor.org/rfc/rfc9236","title":"Architectural Considerations of Information-Centric Networking (ICN) Using a Name Resolution Service","authors":["J. Hong","T. You","V. Kafle"],"rawDate":"2022-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9237":{"rfcNumber":"RFC9237","href":"https://www.rfc-editor.org/rfc/rfc9237","title":"An Authorization Information Format (AIF) for Authentication and Authorization for Constrained Environments (ACE)","authors":["C. Bormann"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9238":{"rfcNumber":"RFC9238","href":"https://www.rfc-editor.org/rfc/rfc9238","title":"Loading Manufacturer Usage Description (MUD) URLs from QR Codes","authors":["M. Richardson","J. Latour","H. Habibi Gharakheili"],"rawDate":"2022-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9239":{"rfcNumber":"RFC9239","href":"https://www.rfc-editor.org/rfc/rfc9239","title":"Updates to ECMAScript Media Types","authors":["M. Miller","M. Borins","M. Bynens","B. Farias"],"rawDate":"2022-05","status":"Informational","obsoletes":["RFC4329"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc924":{"aliasOf":"rfc0924"},"rfc9240":{"rfcNumber":"RFC9240","href":"https://www.rfc-editor.org/rfc/rfc9240","title":"An Extension for Application-Layer Traffic Optimization (ALTO): Entity Property Maps","authors":["W. Roome","S. Randriamasy","Y. Yang","J. Zhang","K. Gao"],"rawDate":"2022-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9241":{"rfcNumber":"RFC9241","href":"https://www.rfc-editor.org/rfc/rfc9241","title":"Content Delivery Network Interconnection (CDNI) Footprint and Capabilities Advertisement Using Application-Layer Traffic Optimization (ALTO)","authors":["J. Seedorf","Y. Yang","K. Ma","J. Peterson","J. Zhang"],"rawDate":"2022-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9242":{"rfcNumber":"RFC9242","href":"https://www.rfc-editor.org/rfc/rfc9242","title":"Intermediate Exchange in the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["V. Smyslov"],"rawDate":"2022-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9243":{"rfcNumber":"RFC9243","href":"https://www.rfc-editor.org/rfc/rfc9243","title":"A YANG Data Model for DHCPv6 Configuration","authors":["I. Farrer, Ed."],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9244":{"rfcNumber":"RFC9244","href":"https://www.rfc-editor.org/rfc/rfc9244","title":"Distributed Denial-of-Service Open Threat Signaling (DOTS) Telemetry","authors":["M. Boucadair, Ed.","T. Reddy.K, Ed.","E. Doron","M. Chen","J. Shallow"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9245":{"rfcNumber":"RFC9245","href":"https://www.rfc-editor.org/rfc/rfc9245","title":"IETF Discussion List Charter","authors":["L. Eggert","S. Harris"],"rawDate":"2022-06","status":"Best Current Practice","updates":["RFC3683"],"obsoletes":["RFC3005"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9246":{"rfcNumber":"RFC9246","href":"https://www.rfc-editor.org/rfc/rfc9246","title":"URI Signing for Content Delivery Network Interconnection (CDNI)","authors":["R. van Brandenburg","K. Leung","P. Sorber"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9247":{"rfcNumber":"RFC9247","href":"https://www.rfc-editor.org/rfc/rfc9247","title":"BGP - Link State (BGP-LS) Extensions for Seamless Bidirectional Forwarding Detection (S-BFD)","authors":["Z. Li","S. Zhuang","K. Talaulikar, Ed.","S. Aldrin","J. Tantsura","G. Mirsky"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9248":{"rfcNumber":"RFC9248","href":"https://www.rfc-editor.org/rfc/rfc9248","title":"Interoperability Profile for Relay User Equipment","authors":["B. Rosen"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9249":{"rfcNumber":"RFC9249","href":"https://www.rfc-editor.org/rfc/rfc9249","title":"A YANG Data Model for NTP","authors":["N. Wu","D. Dhody, Ed.","A. Sinha, Ed.","A. Kumar S N","Y. Zhao"],"rawDate":"2022-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9249","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc925":{"aliasOf":"rfc0925"},"rfc9250":{"rfcNumber":"RFC9250","href":"https://www.rfc-editor.org/rfc/rfc9250","title":"DNS over Dedicated QUIC Connections","authors":["C. Huitema","S. Dickinson","A. Mankin"],"rawDate":"2022-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9251":{"rfcNumber":"RFC9251","href":"https://www.rfc-editor.org/rfc/rfc9251","title":"Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) Proxies for Ethernet VPN (EVPN)","authors":["A. Sajassi","S. Thoria","M. Mishra","K. Patel","J. Drake","W. Lin"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9252":{"rfcNumber":"RFC9252","href":"https://www.rfc-editor.org/rfc/rfc9252","title":"BGP Overlay Services Based on Segment Routing over IPv6 (SRv6)","authors":["G. Dawra, Ed.","K. Talaulikar, Ed.","R. Raszuk","B. Decraene","S. Zhuang","J. Rabadan"],"rawDate":"2022-07","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9252","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9253":{"rfcNumber":"RFC9253","href":"https://www.rfc-editor.org/rfc/rfc9253","title":"Support for iCalendar Relationships","authors":["M. Douglass"],"rawDate":"2022-08","status":"Proposed Standard","updates":["RFC5545"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9254":{"rfcNumber":"RFC9254","href":"https://www.rfc-editor.org/rfc/rfc9254","title":"Encoding of Data Modeled with YANG in the Concise Binary Object Representation (CBOR)","authors":["M. Veillette, Ed.","I. Petrov, Ed.","A. Pelov","C. Bormann","M. Richardson"],"rawDate":"2022-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9255":{"rfcNumber":"RFC9255","href":"https://www.rfc-editor.org/rfc/rfc9255","title":"The 'I' in RPKI Does Not Stand for Identity","authors":["R. Bush","R. Housley"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9256":{"rfcNumber":"RFC9256","href":"https://www.rfc-editor.org/rfc/rfc9256","title":"Segment Routing Policy Architecture","authors":["C. Filsfils","K. Talaulikar, Ed.","D. Voyer","A. Bogdanov","P. Mattes"],"rawDate":"2022-07","status":"Proposed Standard","updates":["RFC8402"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9257":{"rfcNumber":"RFC9257","href":"https://www.rfc-editor.org/rfc/rfc9257","title":"Guidance for External Pre-Shared Key (PSK) Usage in TLS","authors":["R. Housley","J. Hoyland","M. Sethi","C. A. Wood"],"rawDate":"2022-07","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9257","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9258":{"rfcNumber":"RFC9258","href":"https://www.rfc-editor.org/rfc/rfc9258","title":"Importing External Pre-Shared Keys (PSKs) for TLS 1.3","authors":["D. Benjamin","C. A. Wood"],"rawDate":"2022-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9259":{"rfcNumber":"RFC9259","href":"https://www.rfc-editor.org/rfc/rfc9259","title":"Operations, Administration, and Maintenance (OAM) in Segment Routing over IPv6 (SRv6)","authors":["Z. Ali","C. Filsfils","S. Matsushima","D. Voyer","M. Chen"],"rawDate":"2022-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc926":{"aliasOf":"rfc0926"},"rfc9260":{"rfcNumber":"RFC9260","href":"https://www.rfc-editor.org/rfc/rfc9260","title":"Stream Control Transmission Protocol","authors":["R. Stewart","M. Tüxen","K. Nielsen"],"rawDate":"2022-06","status":"Proposed Standard","obsoletes":["RFC4460","RFC4960","RFC6096","RFC7053","RFC8540"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9260","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9261":{"rfcNumber":"RFC9261","href":"https://www.rfc-editor.org/rfc/rfc9261","title":"Exported Authenticators in TLS","authors":["N. Sullivan"],"rawDate":"2022-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9262":{"rfcNumber":"RFC9262","href":"https://www.rfc-editor.org/rfc/rfc9262","title":"Tree Engineering for Bit Index Explicit Replication (BIER-TE)","authors":["T. Eckert, Ed.","M. Menth","G. Cauchie"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9263":{"rfcNumber":"RFC9263","href":"https://www.rfc-editor.org/rfc/rfc9263","title":"Network Service Header (NSH) Metadata Type 2 Variable-Length Context Headers","authors":["Y. Wei, Ed.","U. Elzur","S. Majee","C. Pignataro","D. Eastlake 3rd"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9264":{"rfcNumber":"RFC9264","href":"https://www.rfc-editor.org/rfc/rfc9264","title":"Linkset: Media Types and a Link Relation Type for Link Sets","authors":["E. Wilde","H. Van de Sompel"],"rawDate":"2022-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9265":{"rfcNumber":"RFC9265","href":"https://www.rfc-editor.org/rfc/rfc9265","title":"Forward Erasure Correction (FEC) Coding and Congestion Control in Transport","authors":["N. Kuhn","E. Lochin","F. Michel","M. Welzl"],"rawDate":"2022-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9266":{"rfcNumber":"RFC9266","href":"https://www.rfc-editor.org/rfc/rfc9266","title":"Channel Bindings for TLS 1.3","authors":["S. Whited"],"rawDate":"2022-07","status":"Proposed Standard","updates":["RFC5801","RFC5802","RFC5929","RFC7677"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9267":{"rfcNumber":"RFC9267","href":"https://www.rfc-editor.org/rfc/rfc9267","title":"Common Implementation Anti-Patterns Related to Domain Name System (DNS) Resource Record (RR) Processing","authors":["S. Dashevskyi","D. dos Santos","J. Wetzels","A. Amri"],"rawDate":"2022-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9268":{"rfcNumber":"RFC9268","href":"https://www.rfc-editor.org/rfc/rfc9268","title":"IPv6 Minimum Path MTU Hop-by-Hop Option","authors":["R. Hinden","G. Fairhurst"],"rawDate":"2022-08","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9269":{"rfcNumber":"RFC9269","href":"https://www.rfc-editor.org/rfc/rfc9269","title":"Experimental Scenarios of Information-Centric Networking (ICN) Integration in 4G Mobile Networks","authors":["P. Suthar","M. Stolic","A. Jangam, Ed.","D. Trossen","R. Ravindran"],"rawDate":"2022-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc927":{"aliasOf":"rfc0927"},"rfc9270":{"rfcNumber":"RFC9270","href":"https://www.rfc-editor.org/rfc/rfc9270","title":"GMPLS Signaling Extensions for Shared Mesh Protection","authors":["J. He","I. Busi","J. Ryoo","B. Yoon","P. Park"],"rawDate":"2022-08","status":"Proposed Standard","updates":["RFC4872","RFC4873"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9271":{"rfcNumber":"RFC9271","href":"https://www.rfc-editor.org/rfc/rfc9271","title":"Uninterruptible Power Supply (UPS) Management Protocol -- Commands and Responses","authors":["R. Price, Ed."],"rawDate":"2022-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9272":{"rfcNumber":"RFC9272","href":"https://www.rfc-editor.org/rfc/rfc9272","title":"Underlay Path Calculation Algorithm and Constraints for Bit Index Explicit Replication (BIER)","authors":["Z. Zhang","T. Przygienda","A. Dolganow","H. Bidgoli","IJ. Wijnands","A. Gulko"],"rawDate":"2022-09","status":"Proposed Standard","updates":["RFC8401","RFC8444"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9273":{"rfcNumber":"RFC9273","href":"https://www.rfc-editor.org/rfc/rfc9273","title":"Network Coding for Content-Centric Networking / Named Data Networking: Considerations and Challenges","authors":["K. Matsuzono","H. Asaeda","C. Westphal"],"rawDate":"2022-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9274":{"rfcNumber":"RFC9274","href":"https://www.rfc-editor.org/rfc/rfc9274","title":"A Cost Mode Registry for the Application-Layer Traffic Optimization (ALTO) Protocol","authors":["M. Boucadair","Q. Wu"],"rawDate":"2022-07","status":"Proposed Standard","updates":["RFC7285"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9275":{"rfcNumber":"RFC9275","href":"https://www.rfc-editor.org/rfc/rfc9275","title":"An Extension for Application-Layer Traffic Optimization (ALTO): Path Vector","authors":["K. Gao","Y. Lee","S. Randriamasy","Y. Yang","J. Zhang"],"rawDate":"2022-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9276":{"rfcNumber":"RFC9276","href":"https://www.rfc-editor.org/rfc/rfc9276","title":"Guidance for NSEC3 Parameter Settings","authors":["W. Hardaker","V. Dukhovni"],"rawDate":"2022-08","status":"Best Current Practice","updates":["RFC5155"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9276","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9277":{"rfcNumber":"RFC9277","href":"https://www.rfc-editor.org/rfc/rfc9277","title":"On Stable Storage for Items in Concise Binary Object Representation (CBOR)","authors":["M. Richardson","C. Bormann"],"rawDate":"2022-08","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9277","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9278":{"rfcNumber":"RFC9278","href":"https://www.rfc-editor.org/rfc/rfc9278","title":"JWK Thumbprint URI","authors":["M. Jones","K. Yasuda"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9279":{"rfcNumber":"RFC9279","href":"https://www.rfc-editor.org/rfc/rfc9279","title":"Internet Group Management Protocol Version 3 (IGMPv3) and Multicast Listener Discovery Version 2 (MLDv2) Message Extension","authors":["M. Sivakumar","S. Venaas","Z. Zhang","H. Asaeda"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc928":{"aliasOf":"rfc0928"},"rfc9280":{"rfcNumber":"RFC9280","href":"https://www.rfc-editor.org/rfc/rfc9280","title":"RFC Editor Model (Version 3)","authors":["P. Saint-Andre, Ed."],"rawDate":"2022-06","status":"Informational","updates":["RFC7841","RFC8729","RFC8730"],"obsoletes":["RFC8728"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9280","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9281":{"rfcNumber":"RFC9281","href":"https://www.rfc-editor.org/rfc/rfc9281","title":"Entities Involved in the IETF Standards Process","authors":["R. Salz"],"rawDate":"2022-06","status":"Best Current Practice","obsoletes":["RFC2028"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9282":{"rfcNumber":"RFC9282","href":"https://www.rfc-editor.org/rfc/rfc9282","title":"Responsibility Change for the RFC Series","authors":["B. Rosen"],"rawDate":"2022-06","status":"Best Current Practice","updates":["RFC2026"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9283":{"rfcNumber":"RFC9283","href":"https://www.rfc-editor.org/rfc/rfc9283","title":"IAB Charter Update for RFC Editor Model","authors":["B. Carpenter, Ed."],"rawDate":"2022-06","status":"Best Current Practice","updates":["RFC2850"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9284":{"rfcNumber":"RFC9284","href":"https://www.rfc-editor.org/rfc/rfc9284","title":"Multihoming Deployment Considerations for DDoS Open Threat Signaling (DOTS)","authors":["M. Boucadair","T. Reddy.K","W. Pan"],"rawDate":"2022-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9285":{"rfcNumber":"RFC9285","href":"https://www.rfc-editor.org/rfc/rfc9285","title":"The Base45 Data Encoding","authors":["P. Fältström","F. Ljunggren","D.W. van Gulik"],"rawDate":"2022-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9285","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9286":{"rfcNumber":"RFC9286","href":"https://www.rfc-editor.org/rfc/rfc9286","title":"Manifests for the Resource Public Key Infrastructure (RPKI)","authors":["R. Austein","G. Huston","S. Kent","M. Lepinski"],"rawDate":"2022-06","status":"Proposed Standard","obsoletes":["RFC6486"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9286","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9287":{"rfcNumber":"RFC9287","href":"https://www.rfc-editor.org/rfc/rfc9287","title":"Greasing the QUIC Bit","authors":["M. Thomson"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9288":{"rfcNumber":"RFC9288","href":"https://www.rfc-editor.org/rfc/rfc9288","title":"Recommendations on the Filtering of IPv6 Packets Containing IPv6 Extension Headers at Transit Routers","authors":["F. Gont","W. Liu"],"rawDate":"2022-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9289":{"rfcNumber":"RFC9289","href":"https://www.rfc-editor.org/rfc/rfc9289","title":"Towards Remote Procedure Call Encryption by Default","authors":["T. Myklebust","C. Lever, Ed."],"rawDate":"2022-09","status":"Proposed Standard","updates":["RFC5531"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc929":{"aliasOf":"rfc0929"},"rfc9290":{"rfcNumber":"RFC9290","href":"https://www.rfc-editor.org/rfc/rfc9290","title":"Concise Problem Details for Constrained Application Protocol (CoAP) APIs","authors":["T. Fossati","C. Bormann"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9291":{"rfcNumber":"RFC9291","href":"https://www.rfc-editor.org/rfc/rfc9291","title":"A YANG Network Data Model for Layer 2 VPNs","authors":["M. Boucadair, Ed.","O. Gonzalez de Dios, Ed.","S. Barguil","L. Munoz"],"rawDate":"2022-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9291","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9292":{"rfcNumber":"RFC9292","href":"https://www.rfc-editor.org/rfc/rfc9292","title":"Binary Representation of HTTP Messages","authors":["M. Thomson","C. A. Wood"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9293":{"rfcNumber":"RFC9293","href":"https://www.rfc-editor.org/rfc/rfc9293","title":"Transmission Control Protocol (TCP)","authors":["W. Eddy, Ed."],"rawDate":"2022-08","status":"Internet Standard","updates":["RFC1011","RFC1122","RFC5961"],"obsoletes":["RFC0793","RFC0879","RFC2873","RFC6093","RFC6429","RFC6528","RFC6691"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9294":{"rfcNumber":"RFC9294","href":"https://www.rfc-editor.org/rfc/rfc9294","title":"Application-Specific Link Attributes Advertisement Using the Border Gateway Protocol - Link State (BGP-LS)","authors":["K. Talaulikar, Ed.","P. Psenak","J. Tantsura"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9295":{"rfcNumber":"RFC9295","href":"https://www.rfc-editor.org/rfc/rfc9295","title":"Clarifications for Ed25519, Ed448, X25519, and X448 Algorithm Identifiers","authors":["S. Turner","S. Josefsson","D. McCarney","T. Ito"],"rawDate":"2022-09","status":"Proposed Standard","updates":["RFC8410"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9296":{"rfcNumber":"RFC9296","href":"https://www.rfc-editor.org/rfc/rfc9296","title":"ifStackTable for the Point-to-Point (P2P) Interface over a LAN Type: Definition and Examples","authors":["D. Liu","J. Halpern","C. Zhang"],"rawDate":"2022-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9297":{"rfcNumber":"RFC9297","href":"https://www.rfc-editor.org/rfc/rfc9297","title":"HTTP Datagrams and the Capsule Protocol","authors":["D. Schinazi","L. Pardue"],"rawDate":"2022-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9298":{"rfcNumber":"RFC9298","href":"https://www.rfc-editor.org/rfc/rfc9298","title":"Proxying UDP in HTTP","authors":["D. Schinazi"],"rawDate":"2022-08","status":"Proposed Standard","updatedBy":["RFC9484"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9299":{"rfcNumber":"RFC9299","href":"https://www.rfc-editor.org/rfc/rfc9299","title":"An Architectural Introduction to the Locator/ID Separation Protocol (LISP)","authors":["A. Cabellos","D. Saucez, Ed."],"rawDate":"2022-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc93":{"aliasOf":"rfc0093"},"rfc930":{"aliasOf":"rfc0930"},"rfc9300":{"rfcNumber":"RFC9300","href":"https://www.rfc-editor.org/rfc/rfc9300","title":"The Locator/ID Separation Protocol (LISP)","authors":["D. Farinacci","V. Fuller","D. Meyer","D. Lewis","A. Cabellos, Ed."],"rawDate":"2022-10","status":"Proposed Standard","obsoletes":["RFC6830"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9301":{"rfcNumber":"RFC9301","href":"https://www.rfc-editor.org/rfc/rfc9301","title":"Locator/ID Separation Protocol (LISP) Control Plane","authors":["D. Farinacci","F. Maino","V. Fuller","A. Cabellos, Ed."],"rawDate":"2022-10","status":"Proposed Standard","obsoletes":["RFC6830","RFC6833"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9302":{"rfcNumber":"RFC9302","href":"https://www.rfc-editor.org/rfc/rfc9302","title":"Locator/ID Separation Protocol (LISP) Map-Versioning","authors":["L. Iannone","D. Saucez","O. Bonaventure"],"rawDate":"2022-10","status":"Proposed Standard","obsoletes":["RFC6834"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9303":{"rfcNumber":"RFC9303","href":"https://www.rfc-editor.org/rfc/rfc9303","title":"Locator/ID Separation Protocol Security (LISP-SEC)","authors":["F. Maino","V. Ermagan","A. Cabellos","D. Saucez"],"rawDate":"2022-10","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9303","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9304":{"rfcNumber":"RFC9304","href":"https://www.rfc-editor.org/rfc/rfc9304","title":"Locator/ID Separation Protocol (LISP): Shared Extension Message and IANA Registry for Packet Type Allocations","authors":["M. Boucadair","C. Jacquenet"],"rawDate":"2022-10","status":"Proposed Standard","obsoletes":["RFC8113"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9305":{"rfcNumber":"RFC9305","href":"https://www.rfc-editor.org/rfc/rfc9305","title":"Locator/ID Separation Protocol (LISP) Generic Protocol Extension","authors":["F. Maino, Ed.","J. Lemon","P. Agarwal","D. Lewis","M. Smith"],"rawDate":"2022-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9306":{"rfcNumber":"RFC9306","href":"https://www.rfc-editor.org/rfc/rfc9306","title":"Vendor-Specific LISP Canonical Address Format (LCAF)","authors":["A. Rodriguez-Natal","V. Ermagan","A. Smirnov","V. Ashtaputre","D. Farinacci"],"rawDate":"2022-10","status":"Experimental","updates":["RFC8060"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9307":{"rfcNumber":"RFC9307","href":"https://www.rfc-editor.org/rfc/rfc9307","title":"Report from the IAB Workshop on Analyzing IETF Data (AID) 2021","authors":["N. ten Oever","C. Cath","M. Kühlewind","C. S. Perkins"],"rawDate":"2022-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9308":{"rfcNumber":"RFC9308","href":"https://www.rfc-editor.org/rfc/rfc9308","title":"Applicability of the QUIC Transport Protocol","authors":["M. Kühlewind","B. Trammell"],"rawDate":"2022-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9309":{"rfcNumber":"RFC9309","href":"https://www.rfc-editor.org/rfc/rfc9309","title":"Robots Exclusion Protocol","authors":["M. Koster","G. Illyes","H. Zeller","L. Sassman"],"rawDate":"2022-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9309","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc931":{"aliasOf":"rfc0931"},"rfc9310":{"rfcNumber":"RFC9310","href":"https://www.rfc-editor.org/rfc/rfc9310","title":"X.509 Certificate Extension for 5G Network Function Types","authors":["R. Housley","S. Turner","J. Preuß Mattsson","D. Migault"],"rawDate":"2023-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9311":{"rfcNumber":"RFC9311","href":"https://www.rfc-editor.org/rfc/rfc9311","title":"Running an IETF Hackathon","authors":["C. Eckel"],"rawDate":"2022-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9312":{"rfcNumber":"RFC9312","href":"https://www.rfc-editor.org/rfc/rfc9312","title":"Manageability of the QUIC Transport Protocol","authors":["M. Kühlewind","B. Trammell"],"rawDate":"2022-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9313":{"rfcNumber":"RFC9313","href":"https://www.rfc-editor.org/rfc/rfc9313","title":"Pros and Cons of IPv6 Transition Technologies for IPv4-as-a-Service (IPv4aaS)","authors":["G. Lencse","J. Palet Martinez","L. Howard","R. Patterson","I. Farrer"],"rawDate":"2022-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9314":{"rfcNumber":"RFC9314","href":"https://www.rfc-editor.org/rfc/rfc9314","title":"YANG Data Model for Bidirectional Forwarding Detection (BFD)","authors":["M. Jethanandani, Ed.","R. Rahman, Ed.","L. Zheng, Ed.","S. Pallagatti","G. Mirsky"],"rawDate":"2022-09","status":"Proposed Standard","updates":["RFC9127"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9315":{"rfcNumber":"RFC9315","href":"https://www.rfc-editor.org/rfc/rfc9315","title":"Intent-Based Networking - Concepts and Definitions","authors":["A. Clemm","L. Ciavaglia","L. Z. Granville","J. Tantsura"],"rawDate":"2022-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9316":{"rfcNumber":"RFC9316","href":"https://www.rfc-editor.org/rfc/rfc9316","title":"Intent Classification","authors":["C. Li","O. Havel","A. Olariu","P. Martinez-Julia","J. Nobre","D. Lopez"],"rawDate":"2022-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9316","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9317":{"rfcNumber":"RFC9317","href":"https://www.rfc-editor.org/rfc/rfc9317","title":"Operational Considerations for Streaming Media","authors":["J. Holland","A. Begen","S. Dawkins"],"rawDate":"2022-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9318":{"rfcNumber":"RFC9318","href":"https://www.rfc-editor.org/rfc/rfc9318","title":"IAB Workshop Report: Measuring Network Quality for End-Users","authors":["W. Hardaker","O. Shapira"],"rawDate":"2022-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9319":{"rfcNumber":"RFC9319","href":"https://www.rfc-editor.org/rfc/rfc9319","title":"The Use of maxLength in the Resource Public Key Infrastructure (RPKI)","authors":["Y. Gilad","S. Goldberg","K. Sriram","J. Snijders","B. Maddison"],"rawDate":"2022-10","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc932":{"aliasOf":"rfc0932"},"rfc9320":{"rfcNumber":"RFC9320","href":"https://www.rfc-editor.org/rfc/rfc9320","title":"Deterministic Networking (DetNet) Bounded Latency","authors":["N. Finn","J.-Y. Le Boudec","E. Mohammadpour","J. Zhang","B. Varga"],"rawDate":"2022-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9321":{"rfcNumber":"RFC9321","href":"https://www.rfc-editor.org/rfc/rfc9321","title":"Signature Validation Token","authors":["S. Santesson","R. Housley"],"rawDate":"2022-10","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9321","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9322":{"rfcNumber":"RFC9322","href":"https://www.rfc-editor.org/rfc/rfc9322","title":"In Situ Operations, Administration, and Maintenance (IOAM) Loopback and Active Flags","authors":["T. Mizrahi","F. Brockners","S. Bhandari","B. Gafni","M. Spiegel"],"rawDate":"2022-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9323":{"rfcNumber":"RFC9323","href":"https://www.rfc-editor.org/rfc/rfc9323","title":"A Profile for RPKI Signed Checklists (RSCs)","authors":["J. Snijders","T. Harrison","B. Maddison"],"rawDate":"2022-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9324":{"rfcNumber":"RFC9324","href":"https://www.rfc-editor.org/rfc/rfc9324","title":"Policy Based on the Resource Public Key Infrastructure (RPKI) without Route Refresh","authors":["R. Bush","K. Patel","P. Smith","M. Tinka"],"rawDate":"2022-12","status":"Proposed Standard","updates":["RFC8481"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9325":{"rfcNumber":"RFC9325","href":"https://www.rfc-editor.org/rfc/rfc9325","title":"Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)","authors":["Y. Sheffer","P. Saint-Andre","T. Fossati"],"rawDate":"2022-11","status":"Best Current Practice","updates":["RFC5288","RFC6066"],"obsoletes":["RFC7525"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9326":{"rfcNumber":"RFC9326","href":"https://www.rfc-editor.org/rfc/rfc9326","title":"In Situ Operations, Administration, and Maintenance (IOAM) Direct Exporting","authors":["H. Song","B. Gafni","F. Brockners","S. Bhandari","T. Mizrahi"],"rawDate":"2022-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9327":{"rfcNumber":"RFC9327","href":"https://www.rfc-editor.org/rfc/rfc9327","title":"Control Messages Protocol for Use with Network Time Protocol Version 4","authors":["B. Haberman, Ed."],"rawDate":"2022-11","status":"Historic","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9328":{"rfcNumber":"RFC9328","href":"https://www.rfc-editor.org/rfc/rfc9328","title":"RTP Payload Format for Versatile Video Coding (VVC)","authors":["S. Zhao","S. Wenger","Y. Sanchez","Y.-K. Wang","M. M Hannuksela"],"rawDate":"2022-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9329":{"rfcNumber":"RFC9329","href":"https://www.rfc-editor.org/rfc/rfc9329","title":"TCP Encapsulation of Internet Key Exchange Protocol (IKE) and IPsec Packets","authors":["T. Pauly","V. Smyslov"],"rawDate":"2022-11","status":"Proposed Standard","obsoletes":["RFC8229"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc933":{"aliasOf":"rfc0933"},"rfc9330":{"rfcNumber":"RFC9330","href":"https://www.rfc-editor.org/rfc/rfc9330","title":"Low Latency, Low Loss, and Scalable Throughput (L4S) Internet Service: Architecture","authors":["B. Briscoe, Ed.","K. De Schepper","M. Bagnulo","G. White"],"rawDate":"2023-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9331":{"rfcNumber":"RFC9331","href":"https://www.rfc-editor.org/rfc/rfc9331","title":"The Explicit Congestion Notification (ECN) Protocol for Low Latency, Low Loss, and Scalable Throughput (L4S)","authors":["K. De Schepper","B. Briscoe, Ed."],"rawDate":"2023-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9332":{"rfcNumber":"RFC9332","href":"https://www.rfc-editor.org/rfc/rfc9332","title":"Dual-Queue Coupled Active Queue Management (AQM) for Low Latency, Low Loss, and Scalable Throughput (L4S)","authors":["K. De Schepper","B. Briscoe, Ed.","G. White"],"rawDate":"2023-01","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9333":{"rfcNumber":"RFC9333","href":"https://www.rfc-editor.org/rfc/rfc9333","title":"Minimal IP Encapsulating Security Payload (ESP)","authors":["D. Migault","T. Guggemos"],"rawDate":"2023-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9334":{"rfcNumber":"RFC9334","href":"https://www.rfc-editor.org/rfc/rfc9334","title":"Remote ATtestation procedureS (RATS) Architecture","authors":["H. Birkholz","D. Thaler","M. Richardson","N. Smith","W. Pan"],"rawDate":"2023-01","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9334","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9335":{"rfcNumber":"RFC9335","href":"https://www.rfc-editor.org/rfc/rfc9335","title":"Completely Encrypting RTP Header Extensions and Contributing Sources","authors":["J. Uberti","C. Jennings","S. Murillo"],"rawDate":"2023-01","status":"Proposed Standard","updates":["RFC3711"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9336":{"rfcNumber":"RFC9336","href":"https://www.rfc-editor.org/rfc/rfc9336","title":"X.509 Certificate General-Purpose Extended Key Usage (EKU) for Document Signing","authors":["T. Ito","T. Okubo","S. Turner"],"rawDate":"2022-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9337":{"rfcNumber":"RFC9337","href":"https://www.rfc-editor.org/rfc/rfc9337","title":"Generating Password-Based Keys Using the GOST Algorithms","authors":["E. Karelina, Ed."],"rawDate":"2022-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9338":{"rfcNumber":"RFC9338","href":"https://www.rfc-editor.org/rfc/rfc9338","title":"CBOR Object Signing and Encryption (COSE): Countersignatures","authors":["J. Schaad"],"rawDate":"2022-12","status":"Internet Standard","updates":["RFC9052"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9338","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9339":{"rfcNumber":"RFC9339","href":"https://www.rfc-editor.org/rfc/rfc9339","title":"OSPF Reverse Metric","authors":["K. Talaulikar, Ed.","P. Psenak","H. Johnston"],"rawDate":"2022-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc934":{"aliasOf":"rfc0934"},"rfc9340":{"rfcNumber":"RFC9340","href":"https://www.rfc-editor.org/rfc/rfc9340","title":"Architectural Principles for a Quantum Internet","authors":["W. Kozlowski","S. Wehner","R. Van Meter","B. Rijsman","A. S. Cacciapuoti","M. Caleffi","S. Nagayama"],"rawDate":"2023-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9341":{"rfcNumber":"RFC9341","href":"https://www.rfc-editor.org/rfc/rfc9341","title":"Alternate-Marking Method","authors":["G. Fioccola, Ed.","M. Cociglio","G. Mirsky","T. Mizrahi","T. Zhou"],"rawDate":"2022-12","status":"Proposed Standard","obsoletes":["RFC8321"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9342":{"rfcNumber":"RFC9342","href":"https://www.rfc-editor.org/rfc/rfc9342","title":"Clustered Alternate-Marking Method","authors":["G. Fioccola, Ed.","M. Cociglio","A. Sapio","R. Sisto","T. Zhou"],"rawDate":"2022-12","status":"Proposed Standard","obsoletes":["RFC8889"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9343":{"rfcNumber":"RFC9343","href":"https://www.rfc-editor.org/rfc/rfc9343","title":"IPv6 Application of the Alternate-Marking Method","authors":["G. Fioccola","T. Zhou","M. Cociglio","F. Qin","R. Pang"],"rawDate":"2022-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9344":{"rfcNumber":"RFC9344","href":"https://www.rfc-editor.org/rfc/rfc9344","title":"CCNinfo: Discovering Content and Network Information in Content-Centric Networks","authors":["H. Asaeda","A. Ooka","X. Shao"],"rawDate":"2023-02","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9345":{"rfcNumber":"RFC9345","href":"https://www.rfc-editor.org/rfc/rfc9345","title":"Delegated Credentials for TLS and DTLS","authors":["R. Barnes","S. Iyengar","N. Sullivan","E. Rescorla"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9346":{"rfcNumber":"RFC9346","href":"https://www.rfc-editor.org/rfc/rfc9346","title":"IS-IS Extensions in Support of Inter-Autonomous System (AS) MPLS and GMPLS Traffic Engineering","authors":["M. Chen","L. Ginsberg","S. Previdi","D. Xiaodong"],"rawDate":"2023-02","status":"Proposed Standard","obsoletes":["RFC5316"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9347":{"rfcNumber":"RFC9347","href":"https://www.rfc-editor.org/rfc/rfc9347","title":"Aggregation and Fragmentation Mode for Encapsulating Security Payload (ESP) and Its Use for IP Traffic Flow Security (IP-TFS)","authors":["C. Hopps"],"rawDate":"2023-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9348":{"rfcNumber":"RFC9348","href":"https://www.rfc-editor.org/rfc/rfc9348","title":"A YANG Data Model for IP Traffic Flow Security","authors":["D. Fedyk","C. Hopps"],"rawDate":"2023-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9349":{"rfcNumber":"RFC9349","href":"https://www.rfc-editor.org/rfc/rfc9349","title":"Definitions of Managed Objects for IP Traffic Flow Security","authors":["D. Fedyk","E. Kinzie"],"rawDate":"2023-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc935":{"aliasOf":"rfc0935"},"rfc9350":{"rfcNumber":"RFC9350","href":"https://www.rfc-editor.org/rfc/rfc9350","title":"IGP Flexible Algorithm","authors":["P. Psenak, Ed.","S. Hegde","C. Filsfils","K. Talaulikar","A. Gulko"],"rawDate":"2023-02","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9350","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9351":{"rfcNumber":"RFC9351","href":"https://www.rfc-editor.org/rfc/rfc9351","title":"Border Gateway Protocol - Link State (BGP-LS) Extensions for Flexible Algorithm Advertisement","authors":["K. Talaulikar, Ed.","P. Psenak","S. Zandi","G. Dawra"],"rawDate":"2023-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9352":{"rfcNumber":"RFC9352","href":"https://www.rfc-editor.org/rfc/rfc9352","title":"IS-IS Extensions to Support Segment Routing over the IPv6 Data Plane","authors":["P. Psenak, Ed.","C. Filsfils","A. Bashandy","B. Decraene","Z. Hu"],"rawDate":"2023-02","status":"Proposed Standard","updates":["RFC7370"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9353":{"rfcNumber":"RFC9353","href":"https://www.rfc-editor.org/rfc/rfc9353","title":"IGP Extension for Path Computation Element Communication Protocol (PCEP) Security Capability Support in PCE Discovery (PCED)","authors":["D. Lopez","Q. Wu","D. Dhody","Q. Ma","D. King"],"rawDate":"2023-01","status":"Proposed Standard","updates":["RFC5088","RFC5089","RFC8231","RFC8306"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9354":{"rfcNumber":"RFC9354","href":"https://www.rfc-editor.org/rfc/rfc9354","title":"Transmission of IPv6 Packets over Power Line Communication (PLC) Networks","authors":["J. Hou","B. Liu","Y-G. Hong","X. Tang","C. Perkins"],"rawDate":"2023-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9355":{"rfcNumber":"RFC9355","href":"https://www.rfc-editor.org/rfc/rfc9355","title":"OSPF Bidirectional Forwarding Detection (BFD) Strict-Mode","authors":["K. Talaulikar, Ed.","P. Psenak","A. Fu","M. Rajesh"],"rawDate":"2023-02","status":"Proposed Standard","updates":["RFC2328"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9356":{"rfcNumber":"RFC9356","href":"https://www.rfc-editor.org/rfc/rfc9356","title":"Advertising Layer 2 Bundle Member Link Attributes in OSPF","authors":["K. Talaulikar, Ed.","P. Psenak"],"rawDate":"2023-01","status":"Proposed Standard","updates":["RFC9085"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9357":{"rfcNumber":"RFC9357","href":"https://www.rfc-editor.org/rfc/rfc9357","title":"Label Switched Path (LSP) Object Flag Extension for Stateful PCE","authors":["Q. Xiong"],"rawDate":"2023-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9358":{"rfcNumber":"RFC9358","href":"https://www.rfc-editor.org/rfc/rfc9358","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Establishing Relationships between Sets of Label Switched Paths and Virtual Networks","authors":["Y. Lee","H. Zheng","D. Ceccarelli"],"rawDate":"2023-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9359":{"rfcNumber":"RFC9359","href":"https://www.rfc-editor.org/rfc/rfc9359","title":"Echo Request/Reply for Enabled In Situ OAM (IOAM) Capabilities","authors":["X. Min","G. Mirsky","L. Bo"],"rawDate":"2023-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc936":{"aliasOf":"rfc0936"},"rfc9360":{"rfcNumber":"RFC9360","href":"https://www.rfc-editor.org/rfc/rfc9360","title":"CBOR Object Signing and Encryption (COSE): Header Parameters for Carrying and Referencing X.509 Certificates","authors":["J. Schaad"],"rawDate":"2023-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9361":{"rfcNumber":"RFC9361","href":"https://www.rfc-editor.org/rfc/rfc9361","title":"ICANN Trademark Clearinghouse (TMCH) Functional Specifications","authors":["G. Lozano"],"rawDate":"2023-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9362":{"rfcNumber":"RFC9362","href":"https://www.rfc-editor.org/rfc/rfc9362","title":"Distributed Denial-of-Service Open Threat Signaling (DOTS) Signal Channel Configuration Attributes for Robust Block Transmission","authors":["M. Boucadair","J. Shallow"],"rawDate":"2023-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9363":{"rfcNumber":"RFC9363","href":"https://www.rfc-editor.org/rfc/rfc9363","title":"A YANG Data Model for Static Context Header Compression (SCHC)","authors":["A. Minaburo","L. Toutain"],"rawDate":"2023-03","status":"Proposed Standard","updatedBy":["RFC9441"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9364":{"rfcNumber":"RFC9364","href":"https://www.rfc-editor.org/rfc/rfc9364","title":"DNS Security Extensions (DNSSEC)","authors":["P. Hoffman"],"rawDate":"2023-02","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9365":{"rfcNumber":"RFC9365","href":"https://www.rfc-editor.org/rfc/rfc9365","title":"IPv6 Wireless Access in Vehicular Environments (IPWAVE): Problem Statement and Use Cases","authors":["J. Jeong, Ed."],"rawDate":"2023-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9366":{"rfcNumber":"RFC9366","href":"https://www.rfc-editor.org/rfc/rfc9366","title":"Multiple SIP Reason Header Field Values","authors":["R. Sparks"],"rawDate":"2023-03","status":"Proposed Standard","updates":["RFC3326"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9367":{"rfcNumber":"RFC9367","href":"https://www.rfc-editor.org/rfc/rfc9367","title":"GOST Cipher Suites for Transport Layer Security (TLS) Protocol Version 1.3","authors":["S. Smyshlyaev, Ed.","E. Alekseev","E. Griboedova","A. Babueva","L. Nikiforova"],"rawDate":"2023-02","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9368":{"rfcNumber":"RFC9368","href":"https://www.rfc-editor.org/rfc/rfc9368","title":"Compatible Version Negotiation for QUIC","authors":["D. Schinazi","E. Rescorla"],"rawDate":"2023-05","status":"Proposed Standard","updates":["RFC8999"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9369":{"rfcNumber":"RFC9369","href":"https://www.rfc-editor.org/rfc/rfc9369","title":"QUIC Version 2","authors":["M. Duke"],"rawDate":"2023-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc937":{"aliasOf":"rfc0937"},"rfc9370":{"rfcNumber":"RFC9370","href":"https://www.rfc-editor.org/rfc/rfc9370","title":"Multiple Key Exchanges in the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["CJ. Tjhai","M. Tomlinson","G. Bartlett","S. Fluhrer","D. Van Geest","O. Garcia-Morchon","V. Smyslov"],"rawDate":"2023-05","status":"Proposed Standard","updates":["RFC7296"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9371":{"rfcNumber":"RFC9371","href":"https://www.rfc-editor.org/rfc/rfc9371","title":"Registration Procedures for Private Enterprise Numbers (PENs)","authors":["A. Baber","P. Hoffman"],"rawDate":"2023-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9372":{"rfcNumber":"RFC9372","href":"https://www.rfc-editor.org/rfc/rfc9372","title":"L-Band Digital Aeronautical Communications System (LDACS)","authors":["N. Mäurer, Ed.","T. Gräupl, Ed.","C. Schmitt, Ed."],"rawDate":"2023-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9373":{"rfcNumber":"RFC9373","href":"https://www.rfc-editor.org/rfc/rfc9373","title":"EdDSA Value for IPSECKEY","authors":["R. Moskowitz","T. Kivinen","M. Richardson"],"rawDate":"2023-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9374":{"rfcNumber":"RFC9374","href":"https://www.rfc-editor.org/rfc/rfc9374","title":"DRIP Entity Tag (DET) for Unmanned Aircraft System Remote ID (UAS RID)","authors":["R. Moskowitz","S. Card","A. Wiethuechter","A. Gurtov"],"rawDate":"2023-03","status":"Proposed Standard","updates":["RFC7343","RFC7401"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9375":{"rfcNumber":"RFC9375","href":"https://www.rfc-editor.org/rfc/rfc9375","title":"A YANG Data Model for Network and VPN Service Performance Monitoring","authors":["B. Wu, Ed.","Q. Wu, Ed.","M. Boucadair, Ed.","O. Gonzalez de Dios","B. Wen"],"rawDate":"2023-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9376":{"rfcNumber":"RFC9376","href":"https://www.rfc-editor.org/rfc/rfc9376","title":"Applicability of GMPLS for beyond 100 Gbit/s Optical Transport Network","authors":["Q. Wang, Ed.","R. Valiveti, Ed.","H. Zheng, Ed.","H. van Helvoort","S. Belotti"],"rawDate":"2023-03","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9377":{"rfcNumber":"RFC9377","href":"https://www.rfc-editor.org/rfc/rfc9377","title":"IS-IS Flood Reflection","authors":["T. Przygienda, Ed.","C. Bowers","Y. Lee","A. Sharma","R. White"],"rawDate":"2023-04","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9378":{"rfcNumber":"RFC9378","href":"https://www.rfc-editor.org/rfc/rfc9378","title":"In Situ Operations, Administration, and Maintenance (IOAM) Deployment","authors":["F. Brockners, Ed.","S. Bhandari, Ed.","D. Bernier","T. Mizrahi, Ed."],"rawDate":"2023-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc938":{"aliasOf":"rfc0938"},"rfc9380":{"rfcNumber":"RFC9380","href":"https://www.rfc-editor.org/rfc/rfc9380","title":"Hashing to Elliptic Curves","authors":["A. Faz-Hernandez","S. Scott","N. Sullivan","R. S. Wahby","C. A. Wood"],"rawDate":"2023-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9381":{"rfcNumber":"RFC9381","href":"https://www.rfc-editor.org/rfc/rfc9381","title":"Verifiable Random Functions (VRFs)","authors":["S. Goldberg","L. Reyzin","D. Papadopoulos","J. Včelák"],"rawDate":"2023-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9382":{"rfcNumber":"RFC9382","href":"https://www.rfc-editor.org/rfc/rfc9382","title":"SPAKE2, a Password-Authenticated Key Exchange","authors":["W. Ladd"],"rawDate":"2023-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9383":{"rfcNumber":"RFC9383","href":"https://www.rfc-editor.org/rfc/rfc9383","title":"SPAKE2+, an Augmented Password-Authenticated Key Exchange (PAKE) Protocol","authors":["T. Taubert","C. A. Wood"],"rawDate":"2023-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9384":{"rfcNumber":"RFC9384","href":"https://www.rfc-editor.org/rfc/rfc9384","title":"A BGP Cease NOTIFICATION Subcode for Bidirectional Forwarding Detection (BFD)","authors":["J. Haas"],"rawDate":"2023-03","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9385":{"rfcNumber":"RFC9385","href":"https://www.rfc-editor.org/rfc/rfc9385","title":"Using GOST Cryptographic Algorithms in the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["V. Smyslov"],"rawDate":"2023-05","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9386":{"rfcNumber":"RFC9386","href":"https://www.rfc-editor.org/rfc/rfc9386","title":"IPv6 Deployment Status","authors":["G. Fioccola","P. Volpato","J. Palet Martinez","G. Mishra","C. Xie"],"rawDate":"2023-04","status":"Informational","obsoletes":["RFC6036"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9387":{"rfcNumber":"RFC9387","href":"https://www.rfc-editor.org/rfc/rfc9387","title":"Use Cases for DDoS Open Threat Signaling (DOTS) Telemetry","authors":["Y. Hayashi","M. Chen","L. Su"],"rawDate":"2023-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9388":{"rfcNumber":"RFC9388","href":"https://www.rfc-editor.org/rfc/rfc9388","title":"Content Delivery Network Interconnection (CDNI) Footprint Types: Country Subdivision Code and Footprint Union","authors":["N. Sopher","S. Mishra"],"rawDate":"2023-07","status":"Proposed Standard","updates":["RFC8008"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9389":{"rfcNumber":"RFC9389","href":"https://www.rfc-editor.org/rfc/rfc9389","title":"Nominating Committee Eligibility","authors":["M. Duke"],"rawDate":"2023-04","status":"Best Current Practice","updates":["RFC8713"],"obsoletes":["RFC8788","RFC8989"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc939":{"aliasOf":"rfc0939"},"rfc9390":{"rfcNumber":"RFC9390","href":"https://www.rfc-editor.org/rfc/rfc9390","title":"Diameter Group Signaling","authors":["M. Jones","M. Liebsch","L. Morand"],"rawDate":"2023-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9391":{"rfcNumber":"RFC9391","href":"https://www.rfc-editor.org/rfc/rfc9391","title":"Static Context Header Compression over Narrowband Internet of Things","authors":["E. Ramos","A. Minaburo"],"rawDate":"2023-04","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9392":{"rfcNumber":"RFC9392","href":"https://www.rfc-editor.org/rfc/rfc9392","title":"Sending RTP Control Protocol (RTCP) Feedback for Congestion Control in Interactive Multimedia Conferences","authors":["C. Perkins"],"rawDate":"2023-04","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9393":{"rfcNumber":"RFC9393","href":"https://www.rfc-editor.org/rfc/rfc9393","title":"Concise Software Identification Tags","authors":["H. Birkholz","J. Fitzgerald-McKay","C. Schmidt","D. Waltermire"],"rawDate":"2023-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9394":{"rfcNumber":"RFC9394","href":"https://www.rfc-editor.org/rfc/rfc9394","title":"IMAP PARTIAL Extension for Paged SEARCH and FETCH","authors":["A. Melnikov","A. P. Achuthan","V. Nagulakonda","L. Alves"],"rawDate":"2023-06","status":"Proposed Standard","updates":["RFC4731","RFC5267"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9395":{"rfcNumber":"RFC9395","href":"https://www.rfc-editor.org/rfc/rfc9395","title":"Deprecation of the Internet Key Exchange Version 1 (IKEv1) Protocol and Obsoleted Algorithms","authors":["P. Wouters, Ed."],"rawDate":"2023-04","status":"Proposed Standard","updates":["RFC8221","RFC8247"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9396":{"rfcNumber":"RFC9396","href":"https://www.rfc-editor.org/rfc/rfc9396","title":"OAuth 2.0 Rich Authorization Requests","authors":["T. Lodderstedt","J. Richer","B. Campbell"],"rawDate":"2023-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9397":{"rfcNumber":"RFC9397","href":"https://www.rfc-editor.org/rfc/rfc9397","title":"Trusted Execution Environment Provisioning (TEEP) Architecture","authors":["M. Pei","H. Tschofenig","D. Thaler","D. Wheeler"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9398":{"rfcNumber":"RFC9398","href":"https://www.rfc-editor.org/rfc/rfc9398","title":"A YANG Data Model for Internet Group Management Protocol (IGMP) and Multicast Listener Discovery (MLD) Proxy Devices","authors":["H. Zhao","X. Liu","Y. Liu","M. Panchanathan","M. Sivakumar"],"rawDate":"2023-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9399":{"rfcNumber":"RFC9399","href":"https://www.rfc-editor.org/rfc/rfc9399","title":"Internet X.509 Public Key Infrastructure: Logotypes in X.509 Certificates","authors":["S. Santesson","R. Housley","T. Freeman","L. Rosenthol"],"rawDate":"2023-05","status":"Proposed Standard","obsoletes":["RFC3709","RFC6170"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9399","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc94":{"aliasOf":"rfc0094"},"rfc940":{"aliasOf":"rfc0940"},"rfc9400":{"rfcNumber":"RFC9400","href":"https://www.rfc-editor.org/rfc/rfc9400","title":"Guidelines for the Organization of Fully Online Meetings","authors":["M. Kühlewind","M. Duke"],"rawDate":"2023-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9401":{"rfcNumber":"RFC9401","href":"https://www.rfc-editor.org/rfc/rfc9401","title":"The Addition of the Death (DTH) Flag to TCP","authors":["S. Toyosawa"],"rawDate":"2023-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9402":{"rfcNumber":"RFC9402","href":"https://www.rfc-editor.org/rfc/rfc9402","title":"Concat Notation","authors":["M. Basaglia","J. Bernards","J. Maas"],"rawDate":"2023-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9403":{"rfcNumber":"RFC9403","href":"https://www.rfc-editor.org/rfc/rfc9403","title":"A YANG Data Model for RIB Extensions","authors":["A. Lindem","Y. Qu"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9404":{"rfcNumber":"RFC9404","href":"https://www.rfc-editor.org/rfc/rfc9404","title":"JSON Meta Application Protocol (JMAP) Blob Management Extension","authors":["B. Gondwana, Ed."],"rawDate":"2023-08","status":"Proposed Standard","updates":["RFC8620"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9405":{"rfcNumber":"RFC9405","href":"https://www.rfc-editor.org/rfc/rfc9405","title":"AI Sarcasm Detection: Insult Your AI without Offending It","authors":["C. GPT","R. L. Barnes, Ed."],"rawDate":"2023-04-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9406":{"rfcNumber":"RFC9406","href":"https://www.rfc-editor.org/rfc/rfc9406","title":"HyStart++: Modified Slow Start for TCP","authors":["P. Balasubramanian","Y. Huang","M. Olson"],"rawDate":"2023-05","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9407":{"rfcNumber":"RFC9407","href":"https://www.rfc-editor.org/rfc/rfc9407","title":"Tetrys: An On-the-Fly Network Coding Protocol","authors":["J. Detchart","E. Lochin","J. Lacan","V. Roca"],"rawDate":"2023-06","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9408":{"rfcNumber":"RFC9408","href":"https://www.rfc-editor.org/rfc/rfc9408","title":"A YANG Network Data Model for Service Attachment Points (SAPs)","authors":["M. Boucadair, Ed.","O. Gonzalez de Dios","S. Barguil","Q. Wu","V. Lopez"],"rawDate":"2023-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9409":{"rfcNumber":"RFC9409","href":"https://www.rfc-editor.org/rfc/rfc9409","title":"The 'sip-trunking-capability' Link Relation Type","authors":["K. Inamdar","S. Narayanan","D. Engi","G. Salgueiro"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc941":{"aliasOf":"rfc0941"},"rfc9410":{"rfcNumber":"RFC9410","href":"https://www.rfc-editor.org/rfc/rfc9410","title":"Handling of Identity Header Errors for Secure Telephone Identity Revisited (STIR)","authors":["C. Wendt"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9411":{"rfcNumber":"RFC9411","href":"https://www.rfc-editor.org/rfc/rfc9411","title":"Benchmarking Methodology for Network Security Device Performance","authors":["B. Balarajah","C. Rossenhoevel","B. Monkman"],"rawDate":"2023-03","status":"Informational","obsoletes":["RFC3511"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9412":{"rfcNumber":"RFC9412","href":"https://httpwg.org/specs/rfc9412.html","title":"The ORIGIN Extension in HTTP/3","authors":["M. Bishop"],"rawDate":"2023-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9413":{"rfcNumber":"RFC9413","href":"https://www.rfc-editor.org/rfc/rfc9413","title":"Maintaining Robust Protocols","authors":["M. Thomson","D. Schinazi"],"rawDate":"2023-06","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9414":{"rfcNumber":"RFC9414","href":"https://www.rfc-editor.org/rfc/rfc9414","title":"Unfortunate History of Transient Numeric Identifiers","authors":["F. Gont","I. Arce"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9415":{"rfcNumber":"RFC9415","href":"https://www.rfc-editor.org/rfc/rfc9415","title":"On the Generation of Transient Numeric Identifiers","authors":["F. Gont","I. Arce"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9416":{"rfcNumber":"RFC9416","href":"https://www.rfc-editor.org/rfc/rfc9416","title":"Security Considerations for Transient Numeric Identifiers Employed in Network Protocols","authors":["F. Gont","I. Arce"],"rawDate":"2023-07","status":"Best Current Practice","updates":["RFC3552"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9417":{"rfcNumber":"RFC9417","href":"https://www.rfc-editor.org/rfc/rfc9417","title":"Service Assurance for Intent-Based Networking Architecture","authors":["B. Claise","J. Quilbeuf","D. Lopez","D. Voyer","T. Arumugam"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9418":{"rfcNumber":"RFC9418","href":"https://www.rfc-editor.org/rfc/rfc9418","title":"A YANG Data Model for Service Assurance","authors":["B. Claise","J. Quilbeuf","P. Lucente","P. Fasano","T. Arumugam"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9419":{"rfcNumber":"RFC9419","href":"https://www.rfc-editor.org/rfc/rfc9419","title":"Considerations on Application - Network Collaboration Using Path Signals","authors":["J. Arkko","T. Hardie","T. Pauly","M. Kühlewind"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc942":{"aliasOf":"rfc0942"},"rfc9420":{"rfcNumber":"RFC9420","href":"https://www.rfc-editor.org/rfc/rfc9420","title":"The Messaging Layer Security (MLS) Protocol","authors":["R. Barnes","B. Beurdouche","R. Robert","J. Millican","E. Omara","K. Cohn-Gordon"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9422":{"rfcNumber":"RFC9422","href":"https://www.rfc-editor.org/rfc/rfc9422","title":"The LIMITS SMTP Service Extension","authors":["N. Freed","J. Klensin"],"rawDate":"2024-02","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9424":{"rfcNumber":"RFC9424","href":"https://www.rfc-editor.org/rfc/rfc9424","title":"Indicators of Compromise (IoCs) and Their Role in Attack Defence","authors":["K. Paine","O. Whitehouse","J. Sellwood","A. Shaw"],"rawDate":"2023-08","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9425":{"rfcNumber":"RFC9425","href":"https://www.rfc-editor.org/rfc/rfc9425","title":"JSON Meta Application Protocol (JMAP) for Quotas","authors":["R. Cordier, Ed."],"rawDate":"2023-06","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9426":{"rfcNumber":"RFC9426","href":"https://www.rfc-editor.org/rfc/rfc9426","title":"BATched Sparse (BATS) Coding Scheme for Multi-hop Data Transport","authors":["S. Yang","X. Huang","R. Yeung","J. Zao"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9427":{"rfcNumber":"RFC9427","href":"https://www.rfc-editor.org/rfc/rfc9427","title":"TLS-Based Extensible Authentication Protocol (EAP) Types for Use with TLS 1.3","authors":["A. DeKok"],"rawDate":"2023-06","status":"Proposed Standard","updates":["RFC4851","RFC5281","RFC7170"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9428":{"rfcNumber":"RFC9428","href":"https://www.rfc-editor.org/rfc/rfc9428","title":"Transmission of IPv6 Packets over Near Field Communication","authors":["Y. Choi, Ed.","Y-G. Hong","J-S. Youn"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc943":{"aliasOf":"rfc0943"},"rfc9430":{"rfcNumber":"RFC9430","href":"https://www.rfc-editor.org/rfc/rfc9430","title":"Extension of the Datagram Transport Layer Security (DTLS) Profile for Authentication and Authorization for Constrained Environments (ACE) to Transport Layer Security (TLS)","authors":["O. Bergmann","J. Preuß Mattsson","G. Selander"],"rawDate":"2023-07","status":"Proposed Standard","updates":["RFC9202"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9431":{"rfcNumber":"RFC9431","href":"https://www.rfc-editor.org/rfc/rfc9431","title":"Message Queuing Telemetry Transport (MQTT) and Transport Layer Security (TLS) Profile of Authentication and Authorization for Constrained Environments (ACE) Framework","authors":["C. Sengul","A. Kirby"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9432":{"rfcNumber":"RFC9432","href":"https://www.rfc-editor.org/rfc/rfc9432","title":"DNS Catalog Zones","authors":["P. van Dijk","L. Peltan","O. Surý","W. Toorop","C.R. Monshouwer","P. Thomassen","A. Sargsyan"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9433":{"rfcNumber":"RFC9433","href":"https://www.rfc-editor.org/rfc/rfc9433","title":"Segment Routing over IPv6 for the Mobile User Plane","authors":["S. Matsushima, Ed.","C. Filsfils","M. Kohno","P. Camarillo, Ed.","D. Voyer"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9434":{"rfcNumber":"RFC9434","href":"https://www.rfc-editor.org/rfc/rfc9434","title":"Drone Remote Identification Protocol (DRIP) Architecture","authors":["S. Card","A. Wiethuechter","R. Moskowitz","S. Zhao, Ed.","A. Gurtov"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9435":{"rfcNumber":"RFC9435","href":"https://www.rfc-editor.org/rfc/rfc9435","title":"Considerations for Assigning a New Recommended Differentiated Services Code Point (DSCP)","authors":["A. Custura","G. Fairhurst","R. Secchi"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9436":{"rfcNumber":"RFC9436","href":"https://www.rfc-editor.org/rfc/rfc9436","title":"PIM Message Type Space Extension and Reserved Bits","authors":["S. Venaas","A. Retana"],"rawDate":"2023-08","status":"Proposed Standard","updates":["RFC3973","RFC5015","RFC5059","RFC6754","RFC7761","RFC8364"],"obsoletes":["RFC8736"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9437":{"rfcNumber":"RFC9437","href":"https://www.rfc-editor.org/rfc/rfc9437","title":"Publish/Subscribe Functionality for the Locator/ID Separation Protocol (LISP)","authors":["A. Rodriguez-Natal","V. Ermagan","A. Cabellos","S. Barkai","M. Boucadair"],"rawDate":"2023-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9438":{"rfcNumber":"RFC9438","href":"https://www.rfc-editor.org/rfc/rfc9438","title":"CUBIC for Fast and Long-Distance Networks","authors":["L. Xu","S. Ha","I. Rhee","V. Goel","L. Eggert, Ed."],"rawDate":"2023-08","status":"Proposed Standard","updates":["RFC5681"],"obsoletes":["RFC8312"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9439":{"rfcNumber":"RFC9439","href":"https://www.rfc-editor.org/rfc/rfc9439","title":"Application-Layer Traffic Optimization (ALTO) Performance Cost Metrics","authors":["Q. Wu","Y. Yang","Y. Lee","D. Dhody","S. Randriamasy","L. Contreras"],"rawDate":"2023-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc944":{"aliasOf":"rfc0944"},"rfc9440":{"rfcNumber":"RFC9440","href":"https://httpwg.org/specs/rfc9440.html","title":"Client-Cert HTTP Header Field","authors":["B. Campbell","M. Bishop"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9441":{"rfcNumber":"RFC9441","href":"https://www.rfc-editor.org/rfc/rfc9441","title":"Static Context Header Compression (SCHC) Compound Acknowledgement (ACK)","authors":["J. Zúñiga","C. Gomez","S. Aguilar","L. Toutain","S. Céspedes","D. Wistuba"],"rawDate":"2023-07","status":"Proposed Standard","updates":["RFC8724","RFC9363"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9442":{"rfcNumber":"RFC9442","href":"https://www.rfc-editor.org/rfc/rfc9442","title":"Static Context Header Compression (SCHC) over Sigfox Low-Power Wide Area Network (LPWAN)","authors":["J. Zúñiga","C. Gomez","S. Aguilar","L. Toutain","S. Céspedes","D. Wistuba","J. Boite"],"rawDate":"2023-07","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9443":{"rfcNumber":"RFC9443","href":"https://www.rfc-editor.org/rfc/rfc9443","title":"Multiplexing Scheme Updates for QUIC","authors":["B. Aboba","G. Salgueiro","C. Perkins"],"rawDate":"2023-07","status":"Proposed Standard","updates":["RFC5764","RFC7983"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9444":{"rfcNumber":"RFC9444","href":"https://www.rfc-editor.org/rfc/rfc9444","title":"Automated Certificate Management Environment (ACME) for Subdomains","authors":["O. Friel","R. Barnes","T. Hollebeek","M. Richardson"],"rawDate":"2023-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9445":{"rfcNumber":"RFC9445","href":"https://www.rfc-editor.org/rfc/rfc9445","title":"RADIUS Extensions for DHCP-Configured Services","authors":["M. Boucadair","T. Reddy.K","A. DeKok"],"rawDate":"2023-08","status":"Proposed Standard","updates":["RFC4014"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9446":{"rfcNumber":"RFC9446","href":"https://www.rfc-editor.org/rfc/rfc9446","title":"Reflections on Ten Years Past the Snowden Revelations","authors":["S. Farrell","F. Badii","B. Schneier","S. M. Bellovin"],"rawDate":"2023-07","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9447":{"rfcNumber":"RFC9447","href":"https://www.rfc-editor.org/rfc/rfc9447","title":"Automated Certificate Management Environment (ACME) Challenges Using an Authority Token","authors":["J. Peterson","M. Barnes","D. Hancock","C. Wendt"],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9448":{"rfcNumber":"RFC9448","href":"https://www.rfc-editor.org/rfc/rfc9448","title":"TNAuthList Profile of Automated Certificate Management Environment (ACME) Authority Token","authors":["C. Wendt","D. Hancock","M. Barnes","J. Peterson"],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9449":{"rfcNumber":"RFC9449","href":"https://www.rfc-editor.org/rfc/rfc9449","title":"OAuth 2.0 Demonstrating Proof of Possession (DPoP)","authors":["D. Fett","B. Campbell","J. Bradley","T. Lodderstedt","M. Jones","D. Waite"],"rawDate":"2023-09","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9449","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc945":{"aliasOf":"rfc0945"},"rfc9450":{"rfcNumber":"RFC9450","href":"https://www.rfc-editor.org/rfc/rfc9450","title":"Reliable and Available Wireless (RAW) Use Cases","authors":["CJ. Bernardos, Ed.","G. Papadopoulos","P. Thubert","F. Theoleyre"],"rawDate":"2023-08","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9450","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9451":{"rfcNumber":"RFC9451","href":"https://www.rfc-editor.org/rfc/rfc9451","title":"Operations, Administration, and Maintenance (OAM) Packet and Behavior in the Network Service Header (NSH)","authors":["M. Boucadair"],"rawDate":"2023-08","status":"Proposed Standard","updates":["RFC8300"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9452":{"rfcNumber":"RFC9452","href":"https://www.rfc-editor.org/rfc/rfc9452","title":"Network Service Header (NSH) Encapsulation for In Situ OAM (IOAM) Data","authors":["F. Brockners, Ed.","S. Bhandari, Ed."],"rawDate":"2023-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9453":{"rfcNumber":"RFC9453","href":"https://www.rfc-editor.org/rfc/rfc9453","title":"Applicability and Use Cases for IPv6 over Networks of Resource-constrained Nodes (6lo)","authors":["Y. Hong","C. Gomez","Y. Choi","A. Sangi","S. Chakrabarti"],"rawDate":"2023-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9454":{"rfcNumber":"RFC9454","href":"https://www.rfc-editor.org/rfc/rfc9454","title":"Update to OSPF Terminology","authors":["M. Fox","A. Lindem","A. Retana"],"rawDate":"2023-08","status":"Proposed Standard","updates":["RFC2328","RFC4222","RFC4811","RFC5243","RFC5340","RFC5614","RFC5838"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9455":{"rfcNumber":"RFC9455","href":"https://www.rfc-editor.org/rfc/rfc9455","title":"Avoiding Route Origin Authorizations (ROAs) Containing Multiple IP Prefixes","authors":["Z. Yan","R. Bush","G. Geng","T. de Kock","J. Yao"],"rawDate":"2023-08","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9456":{"rfcNumber":"RFC9456","href":"https://www.rfc-editor.org/rfc/rfc9456","title":"Updates to the TLS Transport Model for SNMP","authors":["K. Vaughn, Ed."],"rawDate":"2023-11","status":"Proposed Standard","updates":["RFC6353"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9457":{"rfcNumber":"RFC9457","href":"https://www.rfc-editor.org/rfc/rfc9457","title":"Problem Details for HTTP APIs","authors":["M. Nottingham","E. Wilde","S. Dalal"],"rawDate":"2023-07","status":"Proposed Standard","obsoletes":["RFC7807"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9457","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9458":{"rfcNumber":"RFC9458","href":"https://www.rfc-editor.org/rfc/rfc9458","title":"Oblivious HTTP","authors":["M. Thomson","C. A. Wood"],"rawDate":"2024-01","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9458","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9459":{"rfcNumber":"RFC9459","href":"https://www.rfc-editor.org/rfc/rfc9459","title":"CBOR Object Signing and Encryption (COSE): AES-CTR and AES-CBC","authors":["R. Housley","H. Tschofenig"],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc946":{"aliasOf":"rfc0946"},"rfc9460":{"rfcNumber":"RFC9460","href":"https://www.rfc-editor.org/rfc/rfc9460","title":"Service Binding and Parameter Specification via the DNS (SVCB and HTTPS Resource Records)","authors":["B. Schwartz","M. Bishop","E. Nygren"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9461":{"rfcNumber":"RFC9461","href":"https://www.rfc-editor.org/rfc/rfc9461","title":"Service Binding Mapping for DNS Servers","authors":["B. Schwartz"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9462":{"rfcNumber":"RFC9462","href":"https://www.rfc-editor.org/rfc/rfc9462","title":"Discovery of Designated Resolvers","authors":["T. Pauly","E. Kinnear","C. A. Wood","P. McManus","T. Jensen"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9463":{"rfcNumber":"RFC9463","href":"https://www.rfc-editor.org/rfc/rfc9463","title":"DHCP and Router Advertisement Options for the Discovery of Network-designated Resolvers (DNR)","authors":["M. Boucadair, Ed.","T. Reddy.K, Ed.","D. Wing","N. Cook","T. Jensen"],"rawDate":"2023-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9463","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9464":{"rfcNumber":"RFC9464","href":"https://www.rfc-editor.org/rfc/rfc9464","title":"Internet Key Exchange Protocol Version 2 (IKEv2) Configuration for Encrypted DNS","authors":["M. Boucadair","T. Reddy.K","D. Wing","V. Smyslov"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9465":{"rfcNumber":"RFC9465","href":"https://www.rfc-editor.org/rfc/rfc9465","title":"PIM Null-Register Packing","authors":["V. Kamath","R. Chokkanathapuram Sundaram","R. Banthia","A. Gopal"],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9466":{"rfcNumber":"RFC9466","href":"https://www.rfc-editor.org/rfc/rfc9466","title":"PIM Assert Message Packing","authors":["Y. Liu, Ed.","T. Eckert, Ed.","M. McBride","Z. Zhang"],"rawDate":"2023-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9467":{"rfcNumber":"RFC9467","href":"https://www.rfc-editor.org/rfc/rfc9467","title":"Relaxed Packet Counter Verification for Babel MAC Authentication","authors":["J. Chroboczek","T. Høiland-Jørgensen"],"rawDate":"2024-01","status":"Proposed Standard","updates":["RFC8967"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9468":{"rfcNumber":"RFC9468","href":"https://www.rfc-editor.org/rfc/rfc9468","title":"Unsolicited Bidirectional Forwarding Detection (BFD) for Sessionless Applications","authors":["E. Chen","N. Shen","R. Raszuk","R. Rahman"],"rawDate":"2023-08","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9469":{"rfcNumber":"RFC9469","href":"https://www.rfc-editor.org/rfc/rfc9469","title":"Applicability of Ethernet Virtual Private Network (EVPN) to Network Virtualization over Layer 3 (NVO3) Networks","authors":["J. Rabadan, Ed.","M. Bocci","S. Boutros","A. Sajassi"],"rawDate":"2023-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc947":{"aliasOf":"rfc0947"},"rfc9470":{"rfcNumber":"RFC9470","href":"https://www.rfc-editor.org/rfc/rfc9470","title":"OAuth 2.0 Step Up Authentication Challenge Protocol","authors":["V. Bertocci","B. Campbell"],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9471":{"rfcNumber":"RFC9471","href":"https://www.rfc-editor.org/rfc/rfc9471","title":"DNS Glue Requirements in Referral Responses","authors":["M. Andrews","S. Huque","P. Wouters","D. Wessels"],"rawDate":"2023-09","status":"Proposed Standard","updates":["RFC1034"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9472":{"rfcNumber":"RFC9472","href":"https://www.rfc-editor.org/rfc/rfc9472","title":"A YANG Data Model for Reporting Software Bills of Materials (SBOMs) and Vulnerability Information","authors":["E. Lear","S. Rose"],"rawDate":"2023-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9473":{"rfcNumber":"RFC9473","href":"https://www.rfc-editor.org/rfc/rfc9473","title":"A Vocabulary of Path Properties","authors":["R. Enghardt","C. Krähenbühl"],"rawDate":"2023-09","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9474":{"rfcNumber":"RFC9474","href":"https://www.rfc-editor.org/rfc/rfc9474","title":"RSA Blind Signatures","authors":["F. Denis","F. Jacobs","C. A. Wood"],"rawDate":"2023-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9475":{"rfcNumber":"RFC9475","href":"https://www.rfc-editor.org/rfc/rfc9475","title":"Messaging Use Cases and Extensions for Secure Telephone Identity Revisited (STIR)","authors":["J. Peterson","C. Wendt"],"rawDate":"2023-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9476":{"rfcNumber":"RFC9476","href":"https://www.rfc-editor.org/rfc/rfc9476","title":"The .alt Special-Use Top-Level Domain","authors":["W. Kumari","P. Hoffman"],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9477":{"rfcNumber":"RFC9477","href":"https://www.rfc-editor.org/rfc/rfc9477","title":"Complaint Feedback Loop Address Header","authors":["J. Benecke"],"rawDate":"2023-09","status":"Experimental","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9478":{"rfcNumber":"RFC9478","href":"https://www.rfc-editor.org/rfc/rfc9478","title":"Labeled IPsec Traffic Selector Support for the Internet Key Exchange Protocol Version 2 (IKEv2)","authors":["P. Wouters","S. Prasad"],"rawDate":"2023-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9479":{"rfcNumber":"RFC9479","href":"https://www.rfc-editor.org/rfc/rfc9479","title":"IS-IS Application-Specific Link Attributes","authors":["L. Ginsberg","P. Psenak","S. Previdi","W. Henderickx","J. Drake"],"rawDate":"2023-10","status":"Proposed Standard","obsoletes":["RFC8919"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc948":{"aliasOf":"rfc0948"},"rfc9480":{"rfcNumber":"RFC9480","href":"https://www.rfc-editor.org/rfc/rfc9480","title":"Certificate Management Protocol (CMP) Updates","authors":["H. Brockhaus","D. von Oheimb","J. Gray"],"rawDate":"2023-11","status":"Proposed Standard","updates":["RFC4210","RFC5912","RFC6712"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9481":{"rfcNumber":"RFC9481","href":"https://www.rfc-editor.org/rfc/rfc9481","title":"Certificate Management Protocol (CMP) Algorithms","authors":["H. Brockhaus","H. Aschauer","M. Ounsworth","J. Gray"],"rawDate":"2023-11","status":"Proposed Standard","updates":["RFC4210"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9481","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9482":{"rfcNumber":"RFC9482","href":"https://www.rfc-editor.org/rfc/rfc9482","title":"Constrained Application Protocol (CoAP) Transfer for the Certificate Management Protocol","authors":["M. Sahni, Ed.","S. Tripathi, Ed."],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9483":{"rfcNumber":"RFC9483","href":"https://www.rfc-editor.org/rfc/rfc9483","title":"Lightweight Certificate Management Protocol (CMP) Profile","authors":["H. Brockhaus","D. von Oheimb","S. Fries"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9484":{"rfcNumber":"RFC9484","href":"https://www.rfc-editor.org/rfc/rfc9484","title":"Proxying IP in HTTP","authors":["T. Pauly, Ed.","D. Schinazi","A. Chernyakhovsky","M. Kühlewind","M. Westerlund"],"rawDate":"2023-10","status":"Proposed Standard","updates":["RFC9298"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9485":{"rfcNumber":"RFC9485","href":"https://www.rfc-editor.org/rfc/rfc9485","title":"I-Regexp: An Interoperable Regular Expression Format","authors":["C. Bormann","T. Bray"],"rawDate":"2023-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9486":{"rfcNumber":"RFC9486","href":"https://www.rfc-editor.org/rfc/rfc9486","title":"IPv6 Options for In Situ Operations, Administration, and Maintenance (IOAM)","authors":["S. Bhandari, Ed.","F. Brockners, Ed."],"rawDate":"2023-09","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9487":{"rfcNumber":"RFC9487","href":"https://www.rfc-editor.org/rfc/rfc9487","title":"Export of Segment Routing over IPv6 Information in IP Flow Information Export (IPFIX)","authors":["T. Graf","B. Claise","P. Francois"],"rawDate":"2023-11","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9487","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9488":{"rfcNumber":"RFC9488","href":"https://www.rfc-editor.org/rfc/rfc9488","title":"Local Protection Enforcement in the Path Computation Element Communication Protocol (PCEP)","authors":["A. Stone","M. Aissaoui","S. Sidor","S. Sivabalan"],"rawDate":"2023-10","status":"Proposed Standard","updates":["RFC5440"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9489":{"rfcNumber":"RFC9489","href":"https://www.rfc-editor.org/rfc/rfc9489","title":"Label Switched Path (LSP) Ping Mechanisms for EVPN and Provider Backbone Bridging EVPN (PBB-EVPN)","authors":["P. Jain","A. Sajassi","S. Salam","S. Boutros","G. Mirsky"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc949":{"aliasOf":"rfc0949"},"rfc9490":{"rfcNumber":"RFC9490","href":"https://www.rfc-editor.org/rfc/rfc9490","title":"Report from the IAB Workshop on Management Techniques in Encrypted Networks (M-TEN)","authors":["M. Knodel","W. Hardaker","T. Pauly"],"rawDate":"2024-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9491":{"rfcNumber":"RFC9491","href":"https://www.rfc-editor.org/rfc/rfc9491","title":"Integration of the Network Service Header (NSH) and Segment Routing for Service Function Chaining (SFC)","authors":["J. Guichard, Ed.","J. Tantsura, Ed."],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9492":{"rfcNumber":"RFC9492","href":"https://www.rfc-editor.org/rfc/rfc9492","title":"OSPF Application-Specific Link Attributes","authors":["P. Psenak, Ed.","L. Ginsberg","W. Henderickx","J. Tantsura","J. Drake"],"rawDate":"2023-10","status":"Proposed Standard","obsoletes":["RFC8920"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9493":{"rfcNumber":"RFC9493","href":"https://www.rfc-editor.org/rfc/rfc9493","title":"Subject Identifiers for Security Event Tokens","authors":["A. Backman, Ed.","M. Scurtescu","P. Jain"],"rawDate":"2023-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9493","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9494":{"rfcNumber":"RFC9494","href":"https://www.rfc-editor.org/rfc/rfc9494","title":"Long-Lived Graceful Restart for BGP","authors":["J. Uttaro","E. Chen","B. Decraene","J. Scudder"],"rawDate":"2023-11","status":"Proposed Standard","updates":["RFC6368"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9495":{"rfcNumber":"RFC9495","href":"https://www.rfc-editor.org/rfc/rfc9495","title":"Certification Authority Authorization (CAA) Processing for Email Addresses","authors":["C. Bonnell"],"rawDate":"2023-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9496":{"rfcNumber":"RFC9496","href":"https://www.rfc-editor.org/rfc/rfc9496","title":"The ristretto255 and decaf448 Groups","authors":["H. de Valence","J. Grigg","M. Hamburg","I. Lovecruft","G. Tankersley","F. Valsorda"],"rawDate":"2023-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9497":{"rfcNumber":"RFC9497","href":"https://www.rfc-editor.org/rfc/rfc9497","title":"Oblivious Pseudorandom Functions (OPRFs) Using Prime-Order Groups","authors":["A. Davidson","A. Faz-Hernandez","N. Sullivan","C. A. Wood"],"rawDate":"2023-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9498":{"rfcNumber":"RFC9498","href":"https://www.rfc-editor.org/rfc/rfc9498","title":"The GNU Name System","authors":["M. Schanzenbach","C. Grothoff","B. Fix"],"rawDate":"2023-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc95":{"aliasOf":"rfc0095"},"rfc950":{"aliasOf":"rfc0950"},"rfc9500":{"rfcNumber":"RFC9500","href":"https://www.rfc-editor.org/rfc/rfc9500","title":"Standard Public Key Cryptography (PKC) Test Keys","authors":["P. Gutmann","C. Bonnell"],"rawDate":"2023-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9501":{"rfcNumber":"RFC9501","href":"https://www.rfc-editor.org/rfc/rfc9501","title":"Open Participation Principle regarding Remote Registration Fee","authors":["M. Kühlewind","J. Reed","R. Salz"],"rawDate":"2023-12","status":"Best Current Practice","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9502":{"rfcNumber":"RFC9502","href":"https://www.rfc-editor.org/rfc/rfc9502","title":"IGP Flexible Algorithm in IP Networks","authors":["W. Britto","S. Hegde","P. Kaneriya","R. Shetty","R. Bonica","P. Psenak"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9503":{"rfcNumber":"RFC9503","href":"https://www.rfc-editor.org/rfc/rfc9503","title":"Simple Two-Way Active Measurement Protocol (STAMP) Extensions for Segment Routing Networks","authors":["R. Gandhi, Ed.","C. Filsfils","M. Chen","B. Janssens","R. Foote"],"rawDate":"2023-10","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9504":{"rfcNumber":"RFC9504","href":"https://www.rfc-editor.org/rfc/rfc9504","title":"Path Computation Element Communication Protocol (PCEP) Extensions for Stateful PCE Usage in GMPLS-Controlled Networks","authors":["Y. Lee","H. Zheng","O. Gonzalez de Dios","V. Lopez","Z. Ali"],"rawDate":"2023-12","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9505":{"rfcNumber":"RFC9505","href":"https://www.rfc-editor.org/rfc/rfc9505","title":"A Survey of Worldwide Censorship Techniques","authors":["J. L. Hall","M. D. Aaron","A. Andersdotter","B. Jones","N. Feamster","M. Knodel"],"rawDate":"2023-11","status":"Informational","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9505","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9506":{"rfcNumber":"RFC9506","href":"https://www.rfc-editor.org/rfc/rfc9506","title":"Explicit Host-to-Network Flow Measurements Techniques","authors":["M. Cociglio","A. Ferrieux","G. Fioccola","I. Lubashev","F. Bulgarella","M. Nilo","I. Hamchaoui","R. Sisto"],"rawDate":"2023-10","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc951":{"aliasOf":"rfc0951"},"rfc9511":{"rfcNumber":"RFC9511","href":"https://www.rfc-editor.org/rfc/rfc9511","title":"Attribution of Internet Probes","authors":["É. Vyncke","B. Donnet","J. Iurman"],"rawDate":"2023-11","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9513":{"rfcNumber":"RFC9513","href":"https://www.rfc-editor.org/rfc/rfc9513","title":"OSPFv3 Extensions for Segment Routing over IPv6 (SRv6)","authors":["Z. Li","Z. Hu","K. Talaulikar, Ed.","P. Psenak"],"rawDate":"2023-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9513","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9514":{"rfcNumber":"RFC9514","href":"https://www.rfc-editor.org/rfc/rfc9514","title":"Border Gateway Protocol - Link State (BGP-LS) Extensions for Segment Routing over IPv6 (SRv6)","authors":["G. Dawra","C. Filsfils","K. Talaulikar, Ed.","M. Chen","D. Bernier","B. Decraene"],"rawDate":"2023-12","status":"Proposed Standard","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9514","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9515":{"rfcNumber":"RFC9515","href":"https://www.rfc-editor.org/rfc/rfc9515","title":"Revision to Registration Procedures for Multiple BMP Registries","authors":["J. Scudder"],"rawDate":"2023-12","status":"Proposed Standard","updates":["RFC7854"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9516":{"rfcNumber":"RFC9516","href":"https://www.rfc-editor.org/rfc/rfc9516","title":"Active Operations, Administration, and Maintenance (OAM) for Service Function Chaining (SFC)","authors":["G. Mirsky","W. Meng","T. Ao","B. Khasnabish","K. Leung","G. Mishra"],"rawDate":"2023-11","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9517":{"rfcNumber":"RFC9517","href":"https://www.rfc-editor.org/rfc/rfc9517","title":"A URN Namespace for the Data Documentation Initiative (DDI)","authors":["J. Wackerow"],"rawDate":"2024-01","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9518":{"rfcNumber":"RFC9518","href":"https://www.rfc-editor.org/rfc/rfc9518","title":"Centralization, Decentralization, and Internet Standards","authors":["M. Nottingham"],"rawDate":"2023-12","status":"Informational","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9519":{"rfcNumber":"RFC9519","href":"https://www.rfc-editor.org/rfc/rfc9519","title":"Update to the IANA SSH Protocol Parameters Registry Requirements","authors":["P. Yee"],"rawDate":"2024-01","status":"Proposed Standard","updates":["RFC4250","RFC4716","RFC4819","RFC8308"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc952":{"aliasOf":"rfc0952"},"rfc9520":{"rfcNumber":"RFC9520","href":"https://www.rfc-editor.org/rfc/rfc9520","title":"Negative Caching of DNS Resolution Failures","authors":["D. Wessels","W. Carroll","M. Thomas"],"rawDate":"2023-12","status":"Proposed Standard","updates":["RFC2308","RFC4035","RFC4697"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9521":{"rfcNumber":"RFC9521","href":"https://www.rfc-editor.org/rfc/rfc9521","title":"Bidirectional Forwarding Detection (BFD) for Generic Network Virtualization Encapsulation (Geneve)","authors":["X. Min","G. Mirsky","S. Pallagatti","J. Tantsura","S. Aldrin"],"rawDate":"2024-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9522":{"rfcNumber":"RFC9522","href":"https://www.rfc-editor.org/rfc/rfc9522","title":"Overview and Principles of Internet Traffic Engineering","authors":["A. Farrel, Ed."],"rawDate":"2024-01","status":"Informational","obsoletes":["RFC3272"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9525":{"rfcNumber":"RFC9525","href":"https://www.rfc-editor.org/rfc/rfc9525","title":"Service Identity in TLS","authors":["P. Saint-Andre","R. Salz"],"rawDate":"2023-11","status":"Proposed Standard","obsoletes":["RFC6125"],"publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9526":{"rfcNumber":"RFC9526","href":"https://www.rfc-editor.org/rfc/rfc9526","title":"Simple Provisioning of Public Names for Residential Networks","authors":["D. Migault","R. Weber","M. Richardson","R. Hunter"],"rawDate":"2024-01","status":"Experimental","hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9526","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9527":{"rfcNumber":"RFC9527","href":"https://www.rfc-editor.org/rfc/rfc9527","title":"DHCPv6 Options for the Homenet Naming Authority","authors":["D. Migault","R. Weber","T. Mrugalski"],"rawDate":"2024-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc953":{"aliasOf":"rfc0953"},"rfc9532":{"rfcNumber":"RFC9532","href":"https://www.rfc-editor.org/rfc/rfc9532","title":"HTTP Proxy-Status Parameter for Next-Hop Aliases","authors":["T. Pauly"],"rawDate":"2024-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9533":{"rfcNumber":"RFC9533","href":"https://www.rfc-editor.org/rfc/rfc9533","title":"One-Way and Two-Way Active Measurement Protocol Extensions for Performance Measurement on a Link Aggregation Group","authors":["Z. Li","T. Zhou","J. Guo","G. Mirsky","R. Gandhi"],"rawDate":"2024-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc9534":{"rfcNumber":"RFC9534","href":"https://www.rfc-editor.org/rfc/rfc9534","title":"Simple Two-Way Active Measurement Protocol Extensions for Performance Measurement on a Link Aggregation Group","authors":["Z. Li","T. Zhou","J. Guo","G. Mirsky","R. Gandhi"],"rawDate":"2024-01","status":"Proposed Standard","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc954":{"aliasOf":"rfc0954"},"rfc955":{"aliasOf":"rfc0955"},"rfc9552":{"rfcNumber":"RFC9552","href":"https://www.rfc-editor.org/rfc/rfc9552","title":"Distribution of Link-State and Traffic Engineering Information Using BGP","authors":["K. Talaulikar, Ed."],"rawDate":"2023-12","status":"Proposed Standard","obsoletes":["RFC7752","RFC9029"],"hasErrata":"http://www.rfc-editor.org/errata_search.php?rfc=9552","publisher":"IETF","source":"https://www.rfc-editor.org/in-notes/rfc-index.xml"},"rfc956":{"aliasOf":"rfc0956"},"rfc957":{"aliasOf":"rfc0957"},"rfc958":{"aliasOf":"rfc0958"},"rfc959":{"aliasOf":"rfc0959"},"rfc96":{"aliasOf":"rfc0096"},"rfc960":{"aliasOf":"rfc0960"},"rfc961":{"aliasOf":"rfc0961"},"rfc962":{"aliasOf":"rfc0962"},"rfc963":{"aliasOf":"rfc0963"},"rfc964":{"aliasOf":"rfc0964"},"rfc965":{"aliasOf":"rfc0965"},"rfc966":{"aliasOf":"rfc0966"},"rfc967":{"aliasOf":"rfc0967"},"rfc968":{"aliasOf":"rfc0968"},"rfc969":{"aliasOf":"rfc0969"},"rfc97":{"aliasOf":"rfc0097"},"rfc970":{"aliasOf":"rfc0970"},"rfc971":{"aliasOf":"rfc0971"},"rfc972":{"aliasOf":"rfc0972"},"rfc973":{"aliasOf":"rfc0973"},"rfc974":{"aliasOf":"rfc0974"},"rfc975":{"aliasOf":"rfc0975"},"rfc976":{"aliasOf":"rfc0976"},"rfc977":{"aliasOf":"rfc0977"},"rfc978":{"aliasOf":"rfc0978"},"rfc979":{"aliasOf":"rfc0979"},"rfc98":{"aliasOf":"rfc0098"},"rfc980":{"aliasOf":"rfc0980"},"rfc981":{"aliasOf":"rfc0981"},"rfc982":{"aliasOf":"rfc0982"},"rfc983":{"aliasOf":"rfc0983"},"rfc984":{"aliasOf":"rfc0984"},"rfc985":{"aliasOf":"rfc0985"},"rfc986":{"aliasOf":"rfc0986"},"rfc987":{"aliasOf":"rfc0987"},"rfc988":{"aliasOf":"rfc0988"},"rfc989":{"aliasOf":"rfc0989"},"rfc99":{"aliasOf":"rfc0099"},"rfc990":{"aliasOf":"rfc0990"},"rfc991":{"aliasOf":"rfc0991"},"rfc992":{"aliasOf":"rfc0992"},"rfc993":{"aliasOf":"rfc0993"},"rfc994":{"aliasOf":"rfc0994"},"rfc995":{"aliasOf":"rfc0995"},"rfc996":{"aliasOf":"rfc0996"},"rfc997":{"aliasOf":"rfc0997"},"rfc998":{"aliasOf":"rfc0998"},"rfc999":{"aliasOf":"rfc0999"},"2dcontext":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2dcontext/","title":"HTML Canvas 2D Context","status":"REC","publisher":"W3C","versions":{"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-2dcontext-20100304/","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-2dcontext-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-2dcontext-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-2dcontext-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-2dcontext-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-2dcontext-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-2dcontext-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"status":"WD","rawDate":"2012-10-25","href":"https://www.w3.org/TR/2012/WD-2dcontext-20121025/","source":"./data/w3c-specs.txt"},"20121217":{"authors":["Rik Cabanier","Eliot Graff","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2012/CR-2dcontext-20121217/","title":"HTML Canvas 2D Context","rawDate":"2012-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130806":{"authors":["Rik Cabanier","Eliot Graff","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2013/CR-2dcontext-20130806/","title":"HTML Canvas 2D Context","rawDate":"2013-08-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140520":{"authors":["Rik Cabanier","Eliot Graff","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2014/WD-2dcontext-20140520/","title":"HTML Canvas 2D Context","rawDate":"2014-05-20","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140821":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2014/CR-2dcontext-20140821/","title":"HTML Canvas 2D Context","rawDate":"2014-08-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150514":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2015/WD-2dcontext-20150514/","title":"HTML Canvas 2D Context","rawDate":"2015-05-14","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150702":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2015/CR-2dcontext-20150702/","title":"HTML Canvas 2D Context","rawDate":"2015-07-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2015/PR-2dcontext-20150924/","title":"HTML Canvas 2D Context","rawDate":"2015-09-24","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2015/REC-2dcontext-20151119/","title":"HTML Canvas 2D Context","rawDate":"2015-11-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2021/SPSD-2dcontext-20210128/","title":"HTML Canvas 2D Context","rawDate":"2021-01-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"rawDate":"2021-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/html/wg/drafts/2dcontext/html5_canvas_CR/","isRetired":true},"2dcontext2":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2dcontext2/","title":"HTML Canvas 2D Context, Level 2","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121217":{"authors":["Rik Cabanier","Eliot Graff","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2012/WD-2dcontext2-20121217/","title":"HTML Canvas 2D Context, Level 2","rawDate":"2012-12-17","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Ian Hickson","Rik Cabanier","Eliot Graff","Jay Munro","Tom Wiltzius"],"href":"https://www.w3.org/TR/2013/WD-2dcontext2-20130528/","title":"HTML Canvas 2D Context, Level 2","rawDate":"2013-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131029":{"authors":["Rik Cabanier","Eliot Graff","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2013/WD-2dcontext2-20131029/","title":"HTML Canvas 2D Context, Level 2","rawDate":"2013-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140828":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2014/WD-2dcontext2-20140828/","title":"HTML Canvas 2D Context, Level 2","rawDate":"2014-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Rik Cabanier","Jatinder Mann","Jay Munro","Tom Wiltzius","Ian Hickson"],"href":"https://www.w3.org/TR/2015/NOTE-2dcontext2-20150929/","title":"HTML Canvas 2D Context, Level 2","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/html/wg/drafts/2dcontext/master/","isRetired":true},"AERT":{"authors":["Chris Ridpath","Wendy Chisholm"],"href":"https://www.w3.org/TR/AERT/","title":"Techniques For Accessibility Evaluation And Repair Tools","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"versions":{"20000426":{"authors":["Chris Ridpath","Wendy Chisholm"],"href":"https://www.w3.org/TR/2000/WD-AERT-20000426","title":"Techniques For Accessibility Evaluation And Repair Tools","rawDate":"2000-04-26","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-04-26","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"AS":{"versions":{"19980619":{"status":"NOTE","rawDate":"1998-06-19","href":"https://www.w3.org/TR/1998/NOTE-AS-19980619","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-AS","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-06-19","title":"Action Sheets"},"ATAG-wombat":{"authors":["Jutta Treviranus","Charles McCathieNevile","Jan Richards"],"href":"https://www.w3.org/TR/ATAG-wombat/","title":"Authoring Tool Accessibility Guidelines \"Wombat\"","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"versions":{"20011221":{"authors":["Jutta Treviranus","Charles McCathieNevile","Jan Richards"],"href":"https://www.w3.org/TR/2001/WD-ATAG-wombat-20011221/","title":"Authoring Tool Accessibility Guidelines \"Wombat\"","rawDate":"2001-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-12-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["ATAG20"]},"ATAG10":{"authors":["Jutta Treviranus","Charles McCathieNevile","Ian Jacobs","Jan Richards"],"etAl":true,"href":"https://www.w3.org/TR/ATAG10/","title":"Authoring Tool Accessibility Guidelines 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"hasErrata":"https://www.w3.org/WAI/AU/ATAG-ERRATA","versions":{"19981112":{"status":"WD","rawDate":"1998-11-12","href":"https://www.w3.org/TR/1998/WD-WAI-AUTOOLS-19981112","source":"./data/w3c-specs.txt"},"19990128":{"status":"WD","rawDate":"1999-01-28","href":"https://www.w3.org/TR/1999/WD-WAI-AUTOOLS-19990128","source":"./data/w3c-specs.txt"},"19990226":{"status":"WD","rawDate":"1999-02-26","href":"https://www.w3.org/TR/1999/WD-WAI-AUTOOLS-19990226","source":"./data/w3c-specs.txt"},"19990301":{"status":"WD","rawDate":"1999-03-01","href":"https://www.w3.org/TR/1999/WD-WAI-AUTOOLS-19990301","source":"./data/w3c-specs.txt"},"19990503":{"rawDate":"1999-05-03","href":"https://www.w3.org/TR/1999/WAI-AUTOOLS-19990503","source":"./data/w3c-specs.txt"},"19990713":{"rawDate":"1999-07-13","href":"https://www.w3.org/TR/1999/WAI-AUTOOLS-19990713/","source":"./data/w3c-specs.txt"},"19990903":{"rawDate":"1999-09-03","href":"https://www.w3.org/TR/1999/WAI-AUTOOLS-19990903/","source":"./data/w3c-specs.txt"},"19991009":{"rawDate":"1999-10-09","href":"https://www.w3.org/WAI/AU/WAI-AUTOOLS-19991009","source":"./data/w3c-specs.txt"},"19991014":{"rawDate":"1999-10-14","href":"https://www.w3.org/WAI/AU/WAI-AUTOOLS-19991014","source":"./data/w3c-specs.txt"},"19991022":{"rawDate":"1999-10-22","href":"https://www.w3.org/WAI/AU/WAI-AUTOOLS-19991022","source":"./data/w3c-specs.txt"},"19991026":{"status":"PR","rawDate":"1999-10-26","href":"https://www.w3.org/TR/1999/PR-WAI-AUTOOLS-19991026","source":"./data/w3c-specs.txt"},"20000203":{"authors":["Jutta Treviranus","Charles McCathieNevile","Ian Jacobs","Jan Richards"],"href":"https://www.w3.org/TR/2000/REC-ATAG10-20000203/","title":"Authoring Tool Accessibility Guidelines 1.0","rawDate":"2000-02-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"hasErrata":"https://www.w3.org/WAI/AU/ATAG-ERRATA","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2000-02-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ATAG10-TECHS":{"authors":["Jutta Treviranus","Charles McCathieNevile","Jan Richards","Gregory Rosmaita"],"etAl":true,"href":"https://www.w3.org/TR/ATAG10-TECHS/","title":"Techniques for Authoring Tool Accessibility Guidelines 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"versions":{"20000504":{"status":"NOTE","rawDate":"2000-05-04","href":"https://www.w3.org/TR/2000/NOTE-ATAG10-TECHS-20000504","source":"./data/w3c-specs.txt"},"20021029":{"authors":["Jutta Treviranus","Charles McCathieNevile","Jan Richards","Gregory Rosmaita"],"href":"https://www.w3.org/TR/2002/NOTE-ATAG10-TECHS-20021029/","title":"Techniques for Authoring Tool Accessibility Guidelines 1.0","rawDate":"2002-10-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-10-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ATAG20":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/ATAG20/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"versions":{"20030314":{"status":"WD","rawDate":"2003-03-14","href":"https://www.w3.org/TR/2003/WD-ATAG20-20030314/","source":"./data/w3c-specs.txt"},"20040224":{"status":"WD","rawDate":"2004-02-24","href":"https://www.w3.org/TR/2004/WD-ATAG20-20040224/","source":"./data/w3c-specs.txt"},"20041122":{"status":"WD","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/WD-ATAG20-20041122/","source":"./data/w3c-specs.txt"},"20051123":{"status":"WD","rawDate":"2005-11-23","href":"https://www.w3.org/TR/2005/WD-ATAG20-20051123/","source":"./data/w3c-specs.txt"},"20061207":{"status":"WD","rawDate":"2006-12-07","href":"https://www.w3.org/TR/2006/WD-ATAG20-20061207/","source":"./data/w3c-specs.txt"},"20080310":{"status":"WD","rawDate":"2008-03-10","href":"https://www.w3.org/TR/2008/WD-ATAG20-20080310/","source":"./data/w3c-specs.txt"},"20081124":{"status":"WD","rawDate":"2008-11-24","href":"https://www.w3.org/TR/2008/WD-ATAG20-20081124/","source":"./data/w3c-specs.txt"},"20090217":{"status":"WD","rawDate":"2009-02-17","href":"https://www.w3.org/TR/2009/WD-ATAG20-20090217/","source":"./data/w3c-specs.txt"},"20090521":{"status":"WD","rawDate":"2009-05-21","href":"https://www.w3.org/TR/2009/WD-ATAG20-20090521/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-ATAG20-20091029/","source":"./data/w3c-specs.txt"},"20100708":{"status":"WD","rawDate":"2010-07-08","href":"https://www.w3.org/TR/2010/WD-ATAG20-20100708/","source":"./data/w3c-specs.txt"},"20110426":{"status":"WD","rawDate":"2011-04-26","href":"https://www.w3.org/TR/2011/WD-ATAG20-20110426/","source":"./data/w3c-specs.txt"},"20110721":{"status":"WD","rawDate":"2011-07-21","href":"https://www.w3.org/TR/2011/WD-ATAG20-20110721/","source":"./data/w3c-specs.txt"},"20120410":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2012/WD-ATAG20-20120410/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","rawDate":"2012-04-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2013/WD-ATAG20-20130910/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","rawDate":"2013-09-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2013/CR-ATAG20-20131107/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","rawDate":"2013-11-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150604":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2015/CR-ATAG20-20150604/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","rawDate":"2015-06-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2015/PR-ATAG20-20150721/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","rawDate":"2015-07-21","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2015/REC-ATAG20-20150924/","title":"Authoring Tool Accessibility Guidelines (ATAG) 2.0","rawDate":"2015-09-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"hasErrata":"https://www.w3.org/WAI/AU/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-09-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/WAI/AU/ATAG20/","hasErrata":"https://www.w3.org/WAI/AU/errata/","obsoletes":["ATAG-wombat"]},"ATAG20-TECHS":{"aliasOf":"IMPLEMENTING-ATAG20"},"C14N-issues":{"authors":["José Kahan","Konrad Lanz"],"href":"https://www.w3.org/TR/C14N-issues/","title":"Known Issues with Canonical XML 1.0 (C14N/1.0)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20060915":{"status":"WD","rawDate":"2006-09-15","href":"https://www.w3.org/TR/2006/WD-C14N-issues-20060915/","source":"./data/w3c-specs.txt"},"20061220":{"authors":["José Kahan","Konrad Lanz"],"href":"https://www.w3.org/TR/2006/NOTE-C14N-issues-20061220/","title":"Known Issues with Canonical XML 1.0 (C14N/1.0)","rawDate":"2006-12-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-12-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"CCPP-COORDINATION":{"authors":["Johan Hjelm","Lalitha Suryanarayana"],"href":"https://www.w3.org/TR/CCPP-COORDINATION/","title":"CC/PP Implementors Guide: Harmonization with Existing Vocabularies and Content Transformation Heuristics","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"versions":{"20011220":{"authors":["Johan Hjelm","Lalitha Suryanarayana"],"href":"https://www.w3.org/TR/2001/NOTE-CCPP-COORDINATION-20011220/","title":"CC/PP Implementors Guide: Harmonization with Existing Vocabularies and Content Transformation Heuristics","rawDate":"2001-12-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-12-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"CCPP-ra":{"authors":["Mikael Nilsson","Johan Hjelm","Hidetaka Ohto"],"href":"https://www.w3.org/TR/CCPP-ra/","title":"Composite Capabilities/Preference Profiles: Requirements and Architecture","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"versions":{"20000228":{"status":"WD","rawDate":"2000-02-28","href":"https://www.w3.org/TR/2000/WD-CCPP-ra-20000228/","source":"./data/w3c-specs.txt"},"20000721":{"authors":["Mikael Nilsson","Johan Hjelm","Hidetaka Ohto"],"href":"https://www.w3.org/TR/2000/WD-CCPP-ra-20000721/","title":"Composite Capabilities/Preference Profiles: Requirements and Architecture","rawDate":"2000-07-21","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-07-21","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"CCPP-struct-vocab":{"authors":["Graham Klyne","Franklin Reynolds","Christopher Woodrow","Hidetaka Ohto","Johan Hjelm","Mark Butler","Luu Tran"],"etAl":true,"href":"https://www.w3.org/TR/CCPP-struct-vocab/","title":"Composite Capability/Preference Profiles (CC/PP): Structure and Vocabularies 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"hasErrata":"https://www.w3.org/2003/07/ccpp-SV-PR/errata/","versions":{"20000721":{"status":"WD","rawDate":"2000-07-21","href":"https://www.w3.org/TR/2000/WD-CCPP-struct-20000721/","source":"./data/w3c-specs.txt"},"20010129":{"status":"WD","rawDate":"2001-01-29","href":"https://www.w3.org/TR/2001/WD-CCPP-struct-vocab-20010129/","source":"./data/w3c-specs.txt"},"20010315":{"status":"WD","rawDate":"2001-03-15","href":"https://www.w3.org/TR/2001/WD-CCPP-struct-vocab-20010315/","source":"./data/w3c-specs.txt"},"20021108":{"status":"WD","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/WD-CCPP-struct-vocab-20021108/","source":"./data/w3c-specs.txt"},"20030325":{"status":"WD","rawDate":"2003-03-25","href":"https://www.w3.org/TR/2003/WD-CCPP-struct-vocab-20030325/","source":"./data/w3c-specs.txt"},"20030728":{"status":"WD","rawDate":"2003-07-28","href":"https://www.w3.org/TR/2003/WD-CCPP-struct-vocab-20030728/","source":"./data/w3c-specs.txt"},"20031015":{"status":"PR","rawDate":"2003-10-15","href":"https://www.w3.org/TR/2003/PR-CCPP-struct-vocab-20031015/","source":"./data/w3c-specs.txt"},"20040115":{"authors":["Graham Klyne","Franklin Reynolds","Christopher Woodrow","Hidetaka Ohto","Johan Hjelm","Mark Butler","Luu Tran"],"href":"https://www.w3.org/TR/2004/REC-CCPP-struct-vocab-20040115/","title":"Composite Capability/Preference Profiles (CC/PP): Structure and Vocabularies 1.0","rawDate":"2004-01-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"hasErrata":"https://www.w3.org/2003/07/ccpp-SV-PR/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-01-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"CCPP-struct-vocab2":{"authors":["Cédric Kiss"],"href":"https://www.w3.org/TR/CCPP-struct-vocab2/","title":"Composite Capability/Preference Profiles (CC/PP): Structure and Vocabularies 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20061208":{"status":"WD","rawDate":"2006-12-08","href":"https://www.w3.org/TR/2006/WD-CCPP-struct-vocab2-20061208","source":"./data/w3c-specs.txt"},"20070430":{"status":"WD","rawDate":"2007-04-30","href":"https://www.w3.org/TR/2007/WD-CCPP-struct-vocab2-20070430","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Cédric Kiss"],"href":"https://www.w3.org/TR/2010/NOTE-CCPP-struct-vocab2-20100629/","title":"Composite Capability/Preference Profiles (CC/PP): Structure and Vocabularies 2.0","rawDate":"2010-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-06-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"CCPP-ta":{"authors":["Mikael Nilsson"],"href":"https://www.w3.org/TR/CCPP-ta/","title":"Composite Capabilities/Preference Profiles: Terminology and Abbreviations","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"versions":{"20000721":{"authors":["Mikael Nilsson"],"href":"https://www.w3.org/TR/2000/WD-CCPP-ta-20000721/","title":"Composite Capabilities/Preference Profiles: Terminology and Abbreviations","rawDate":"2000-07-21","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-07-21","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"CCPP-trust":{"authors":["Hidetaka Ohto","Lalitha Suryanarayana","Johan Hjelm"],"href":"https://www.w3.org/TR/CCPP-trust/","title":"CC/PP Implementors Guide: Privacy and Protocols","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"versions":{"20011220":{"authors":["Hidetaka Ohto","Lalitha Suryanarayana","Johan Hjelm"],"href":"https://www.w3.org/TR/2001/WD-CCPP-trust-20011220/","title":"CC/PP Implementors Guide: Privacy and Protocols","rawDate":"2001-12-20","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Mobile/CCPP/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-12-20","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"CCPPexchange":{"versions":{"19990624":{"status":"NOTE","rawDate":"1999-06-24","href":"https://www.w3.org/1999/06/NOTE-CCPPexchange-19990624","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-CCPPexchange","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-06-24","title":"CC/PP exchange protocol using HTTP Extension Framework"},"CDFReqs":{"authors":["Steve Speicher","Petri Vuorimaa"],"href":"https://www.w3.org/TR/CDFReqs/","title":"Compound Document Use Cases and Requirements Version 2.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"versions":{"20051219":{"authors":["Steve Speicher","Petri Vuorimaa"],"href":"https://www.w3.org/TR/2005/WD-CDFReqs-20051219/","title":"Compound Document Use Cases and Requirements Version 2.0","rawDate":"2005-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2005-12-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"CDR":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"etAl":true,"href":"https://www.w3.org/TR/CDR/","title":"Compound Document by Reference Framework 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"versions":{"20051121":{"status":"WD","rawDate":"2005-11-21","href":"https://www.w3.org/TR/2005/WD-CDR-20051121/","source":"./data/w3c-specs.txt"},"20051219":{"status":"WD","rawDate":"2005-12-19","href":"https://www.w3.org/TR/2005/WD-CDR-20051219/","source":"./data/w3c-specs.txt"},"20060811":{"status":"WD","rawDate":"2006-08-11","href":"https://www.w3.org/TR/2006/WD-CDR-20060811/","source":"./data/w3c-specs.txt"},"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-CDR-20061122/","source":"./data/w3c-specs.txt"},"20070718":{"status":"CR","rawDate":"2007-07-18","href":"https://www.w3.org/TR/2007/CR-CDR-20070718","source":"./data/w3c-specs.txt"},"20100819":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"href":"https://www.w3.org/TR/2010/NOTE-CDR-20100819/","title":"Compound Document by Reference Framework 1.0","rawDate":"2010-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-08-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"CDRReqs":{"authors":["Daniel Appelquist","Timur Mehrvarz","Antoine Quint"],"href":"https://www.w3.org/TR/CDRReqs/","title":"Compound Document by Reference Use Cases and Requirements Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"versions":{"20050315":{"status":"WD","rawDate":"2005-03-15","href":"https://www.w3.org/TR/2005/WD-CDRReqs-20050315/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-CDRReqs-20050404/","source":"./data/w3c-specs.txt"},"20050809":{"status":"WD","rawDate":"2005-08-09","href":"https://www.w3.org/TR/2005/WD-CDRReqs-20050809/","source":"./data/w3c-specs.txt"},"20051219":{"authors":["Daniel Appelquist","Timur Mehrvarz","Antoine Quint"],"href":"https://www.w3.org/TR/2005/NOTE-CDRReqs-20051219/","title":"Compound Document by Reference Use Cases and Requirements Version 1.0","rawDate":"2005-12-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2005-12-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"COWL":{"authors":["Deian Stefan"],"href":"https://www.w3.org/TR/COWL/","title":"Confinement with Origin Web Labels","rawDate":"2015-10-15","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-cowl/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151015":{"authors":["Deian Stefan"],"href":"https://www.w3.org/TR/2015/WD-COWL-20151015/","title":"Confinement with Origin Web Labels","rawDate":"2015-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-cowl"},"CSP":{"aliasOf":"CSP3"},"CSP-20111129":{"aliasOf":"CSP1-20111129"},"CSP-20120710":{"aliasOf":"CSP1-20120710"},"CSP-20121115":{"aliasOf":"CSP1-20121115"},"CSP-20150219":{"aliasOf":"CSP1-20150219"},"CSP1":{"authors":["Brandon Sterne","Adam Barth"],"href":"https://www.w3.org/TR/CSP1/","title":"Content Security Policy 1.0","rawDate":"2015-02-19","status":"NOTE","publisher":"W3C","edDraft":"https://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-1.0-specification.html","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111129":{"status":"WD","rawDate":"2011-11-29","href":"https://www.w3.org/TR/2011/WD-CSP-20111129/","source":"./data/w3c-specs.txt"},"20120710":{"status":"WD","rawDate":"2012-07-10","href":"https://www.w3.org/TR/2012/WD-CSP-20120710/","source":"./data/w3c-specs.txt"},"20121115":{"authors":["Brandon Sterne","Adam Barth"],"href":"https://www.w3.org/TR/2012/CR-CSP-20121115/","title":"Content Security Policy 1.0","rawDate":"2012-11-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150219":{"authors":["Brandon Sterne","Adam Barth"],"href":"https://www.w3.org/TR/2015/NOTE-CSP1-20150219/","title":"Content Security Policy 1.0","rawDate":"2015-02-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"CSP11":{"aliasOf":"CSP2"},"CSP2":{"authors":["Mike West","Adam Barth","Daniel Veditz"],"href":"https://www.w3.org/TR/CSP2/","title":"Content Security Policy Level 2","rawDate":"2016-12-15","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-csp/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121213":{"authors":["Adam Barth","Dan Veditz","Mike West"],"href":"https://www.w3.org/TR/2012/WD-CSP11-20121213/","title":"Content Security Policy 1.1","rawDate":"2012-12-13","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130604":{"authors":["Adam Barth","Daniel Veditz","Mike West"],"href":"https://www.w3.org/TR/2013/WD-CSP11-20130604/","title":"Content Security Policy 1.1","rawDate":"2013-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["Adam Barth","Daniel Veditz","Mike West"],"href":"https://www.w3.org/TR/2014/WD-CSP11-20140211/","title":"Content Security Policy 1.1","rawDate":"2014-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140703":{"authors":["Mike West","Adam Barth","Daniel Veditz"],"href":"https://www.w3.org/TR/2014/WD-CSP2-20140703/","title":"Content Security Policy Level 2","rawDate":"2014-07-03","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150219":{"authors":["Mike West","Adam Barth","Daniel Veditz"],"href":"https://www.w3.org/TR/2015/CR-CSP2-20150219/","title":"Content Security Policy Level 2","rawDate":"2015-02-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Mike West","Adam Barth","Daniel Veditz"],"href":"https://www.w3.org/TR/2015/CR-CSP2-20150721/","title":"Content Security Policy Level 2","rawDate":"2015-07-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161108":{"authors":["Mike West","Adam Barth","Daniel Veditz"],"href":"https://www.w3.org/TR/2016/PR-CSP2-20161108/","title":"Content Security Policy Level 2","rawDate":"2016-11-08","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Mike West","Adam Barth","Daniel Veditz"],"href":"https://www.w3.org/TR/2016/REC-CSP2-20161215/","title":"Content Security Policy Level 2","rawDate":"2016-12-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"hasErrata":"https://github.com/w3c/webappsec-csp/issues","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://github.com/w3c/webappsec-csp/issues","repository":"https://github.com/w3c/webappsec-csp"},"CSP3":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/CSP3/","title":"Content Security Policy Level 3","rawDate":"2024-01-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-csp/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160126":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/WD-CSP3-20160126/","title":"Content Security Policy Level 3","rawDate":"2016-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160425":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/WD-CSP3-20160425/","title":"Content Security Policy Level 3","rawDate":"2016-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160621":{"href":"https://www.w3.org/TR/2016/WD-CSP3-20160621/","title":"Content Security Policy Level 3","rawDate":"2016-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160801":{"href":"https://www.w3.org/TR/2016/WD-CSP3-20160801/","title":"Content Security Policy Level 3","rawDate":"2016-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160818":{"href":"https://www.w3.org/TR/2016/WD-CSP3-20160818/","title":"Content Security Policy Level 3","rawDate":"2016-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160901":{"href":"https://www.w3.org/TR/2016/WD-CSP3-20160901/","title":"Content Security Policy Level 3","rawDate":"2016-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"href":"https://www.w3.org/TR/2016/WD-CSP3-20160913/","title":"Content Security Policy Level 3","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181015":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2018/WD-CSP3-20181015/","title":"Content Security Policy Level 3","rawDate":"2018-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210310":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210310/","title":"Content Security Policy Level 3","rawDate":"2021-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210313":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210313/","title":"Content Security Policy Level 3","rawDate":"2021-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210319":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210319/","title":"Content Security Policy Level 3","rawDate":"2021-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210324":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210324/","title":"Content Security Policy Level 3","rawDate":"2021-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210416":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210416/","title":"Content Security Policy Level 3","rawDate":"2021-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210505":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210505/","title":"Content Security Policy Level 3","rawDate":"2021-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210510":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210510/","title":"Content Security Policy Level 3","rawDate":"2021-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210512":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210512/","title":"Content Security Policy Level 3","rawDate":"2021-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210604/","title":"Content Security Policy Level 3","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210616/","title":"Content Security Policy Level 3","rawDate":"2021-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210628":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210628/","title":"Content Security Policy Level 3","rawDate":"2021-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210629":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-CSP3-20210629/","title":"Content Security Policy Level 3","rawDate":"2021-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2022/WD-CSP3-20220916/","title":"Content Security Policy Level 3","rawDate":"2022-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221004":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2022/WD-CSP3-20221004/","title":"Content Security Policy Level 3","rawDate":"2022-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221005":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2022/WD-CSP3-20221005/","title":"Content Security Policy Level 3","rawDate":"2022-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221013":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2022/WD-CSP3-20221013/","title":"Content Security Policy Level 3","rawDate":"2022-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2022/WD-CSP3-20221014/","title":"Content Security Policy Level 3","rawDate":"2022-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221201":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2022/WD-CSP3-20221201/","title":"Content Security Policy Level 3","rawDate":"2022-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230113/","title":"Content Security Policy Level 3","rawDate":"2023-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230220":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230220/","title":"Content Security Policy Level 3","rawDate":"2023-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230406/","title":"Content Security Policy Level 3","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230411":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230411/","title":"Content Security Policy Level 3","rawDate":"2023-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230428":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230428/","title":"Content Security Policy Level 3","rawDate":"2023-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230503":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230503/","title":"Content Security Policy Level 3","rawDate":"2023-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230615/","title":"Content Security Policy Level 3","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230628/","title":"Content Security Policy Level 3","rawDate":"2023-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230726/","title":"Content Security Policy Level 3","rawDate":"2023-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230727/","title":"Content Security Policy Level 3","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230731":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230731/","title":"Content Security Policy Level 3","rawDate":"2023-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230904":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230904/","title":"Content Security Policy Level 3","rawDate":"2023-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230920":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20230920/","title":"Content Security Policy Level 3","rawDate":"2023-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231030":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20231030/","title":"Content Security Policy Level 3","rawDate":"2023-10-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231206":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2023/WD-CSP3-20231206/","title":"Content Security Policy Level 3","rawDate":"2023-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240115":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2024/WD-CSP3-20240115/","title":"Content Security Policy Level 3","rawDate":"2024-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240123":{"authors":["Mike West","Antonio Sartori"],"href":"https://www.w3.org/TR/2024/WD-CSP3-20240123/","title":"Content Security Policy Level 3","rawDate":"2024-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-csp"},"CSS-access":{"versions":{"19990804":{"status":"NOTE","rawDate":"1999-08-04","href":"https://www.w3.org/1999/08/NOTE-CSS-access-19990804","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/CSS-access","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-08-04","title":"Accessibility Features of CSS"},"CSS-potential":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/NOTE-CSS-potential","title":"List of suggested extensions to CSS","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"19981210":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/1998/NOTE-CSS-potential-19981210","title":"List of suggested extensions to CSS","rawDate":"1998-12-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"1998-12-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"CSS-smil":{"versions":{"19980720":{"status":"NOTE","rawDate":"1998-07-20","href":"https://www.w3.org/TR/1998/NOTE-CSS-smil-19980720","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-CSS-smil","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-07-20","title":"Displaying SMIL Basic Layout with a CSS2 Rendering Engine"},"CSS1":{"authors":["Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/CSS1/","title":"Cascading Style Sheets, level 1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/CSS/Errata/REC-CSS1-19990111-errata","versions":{"19951117":{"status":"WD","rawDate":"1995-11-17","href":"https://www.w3.org/pub/WWW/TR/WD-css1-951117.html","source":"./data/w3c-specs.txt"},"19951123":{"status":"WD","rawDate":"1995-11-23","href":"https://www.w3.org/pub/WWW/TR/WD-css1-951123.html","source":"./data/w3c-specs.txt"},"19951209":{"status":"WD","rawDate":"1995-12-09","href":"https://www.w3.org/pub/WWW/TR/WD-css1-951209.html","source":"./data/w3c-specs.txt"},"19951222":{"status":"WD","rawDate":"1995-12-22","href":"https://www.w3.org/pub/WWW/TR/WD-css1-951222.html","source":"./data/w3c-specs.txt"},"19960220":{"status":"WD","rawDate":"1996-02-20","href":"https://www.w3.org/pub/WWW/TR/WD-css1-960220.html","source":"./data/w3c-specs.txt"},"19960418":{"status":"WD","rawDate":"1996-04-18","href":"https://www.w3.org/pub/WWW/TR/WD-css1-960418.html","source":"./data/w3c-specs.txt"},"19960505":{"status":"WD","rawDate":"1996-05-05","href":"https://www.w3.org/pub/WWW/TR/WD-css1-960505.html","source":"./data/w3c-specs.txt"},"19960726":{"status":"WD","rawDate":"1996-07-26","href":"https://www.w3.org/pub/WWW/TR/WD-css1-960726.html","source":"./data/w3c-specs.txt"},"19960911":{"status":"WD","rawDate":"1996-09-11","href":"https://www.w3.org/pub/WWW/TR/WD-css1-960911.html","source":"./data/w3c-specs.txt"},"19961217":{"authors":["Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/REC-CSS1-961217","title":"Cascading Style Sheets, level 1","rawDate":"1996-12-17","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/CSS/Errata/REC-CSS1-19990111-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"19990111":{"authors":["Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/1999/REC-CSS1-19990111","title":"Cascading Style Sheets (CSS1) Level 1 Specification","rawDate":"1999-01-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/CSS/Errata/REC-CSS1-19990111-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20080411":{"authors":["Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/2008/REC-CSS1-20080411/","title":"Cascading Style Sheets (CSS1) Level 1 Specification","rawDate":"2008-04-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/CSS/Errata/REC-CSS1-19990111-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180913":{"authors":["Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/2018/SPSD-CSS1-20180913/","title":"Cascading Style Sheets, level 1","rawDate":"2018-09-13","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-09-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"CSS2":{"aliasOf":"CSS21"},"CSS21":{"authors":["Bert Bos","Tantek Çelik","Ian Hickson","Håkon Wium Lie"],"href":"https://www.w3.org/TR/CSS21/","title":"Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification","rawDate":"2011-06-07","status":"REC","publisher":"W3C","edDraft":"https://drafts.csswg.org/css2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/css2-updates/REC-CSS2-20110607-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971104":{"status":"WD","rawDate":"1997-11-04","href":"https://www.w3.org/TR/WD-CSS2-971104","source":"./data/w3c-specs.txt"},"19980128":{"status":"WD","rawDate":"1998-01-28","href":"https://www.w3.org/TR/1998/WD-css2-19980128","source":"./data/w3c-specs.txt"},"19980324":{"status":"PR","rawDate":"1998-03-24","href":"https://www.w3.org/TR/1998/PR-CSS2-19980324","source":"./data/w3c-specs.txt"},"19980512":{"authors":["Bert Bos","Håkon Wium Lie","Chris Lilley","Ian Jacobs"],"href":"https://www.w3.org/TR/1998/REC-CSS2-19980512/","title":"Cascading Style Sheets, level 2 (CSS2) Specification","rawDate":"1998-05-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/css2-updates/REC-CSS2-19980512-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20020802":{"status":"WD","rawDate":"2002-08-02","href":"https://www.w3.org/TR/2002/WD-CSS21-20020802","source":"./data/w3c-specs.txt"},"20030128":{"status":"WD","rawDate":"2003-01-28","href":"https://www.w3.org/TR/2003/WD-CSS21-20030128","source":"./data/w3c-specs.txt"},"20030915":{"status":"WD","rawDate":"2003-09-15","href":"https://www.w3.org/TR/2003/WD-CSS21-20030915","source":"./data/w3c-specs.txt"},"20040225":{"status":"CR","rawDate":"2004-02-25","href":"https://www.w3.org/TR/2004/CR-CSS21-20040225","source":"./data/w3c-specs.txt"},"20050613":{"status":"WD","rawDate":"2005-06-13","href":"https://www.w3.org/TR/2005/WD-CSS21-20050613","source":"./data/w3c-specs.txt"},"20060411":{"status":"WD","rawDate":"2006-04-11","href":"https://www.w3.org/TR/2006/WD-CSS21-20060411","source":"./data/w3c-specs.txt"},"20061106":{"status":"WD","rawDate":"2006-11-06","href":"https://www.w3.org/TR/2006/WD-CSS21-20061106","source":"./data/w3c-specs.txt"},"20070719":{"status":"CR","rawDate":"2007-07-19","href":"https://www.w3.org/TR/2007/CR-CSS21-20070719","source":"./data/w3c-specs.txt"},"20080411":{"authors":["Bert Bos","Håkon Wium Lie","Chris Lilley","Ian Jacobs"],"href":"https://www.w3.org/TR/2008/REC-CSS2-20080411/","title":"Cascading Style Sheets, level 2 (CSS2) Specification","rawDate":"2008-04-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/css2-updates/REC-CSS2-19980512-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20090423":{"status":"CR","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/CR-CSS2-20090423","source":"./data/w3c-specs.txt"},"20090908":{"status":"CR","rawDate":"2009-09-08","href":"https://www.w3.org/TR/2009/CR-CSS2-20090908","source":"./data/w3c-specs.txt"},"20101207":{"status":"WD","rawDate":"2010-12-07","href":"https://www.w3.org/TR/2010/WD-CSS2-20101207","source":"./data/w3c-specs.txt"},"20110412":{"status":"PR","rawDate":"2011-04-12","href":"https://www.w3.org/TR/2011/PR-CSS2-20110412","source":"./data/w3c-specs.txt"},"20110607":{"authors":["Bert Bos","Tantek Çelik","Ian Hickson","Håkon Wium Lie"],"href":"https://www.w3.org/TR/2011/REC-CSS2-20110607/","title":"Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification","rawDate":"2011-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/css2-updates/REC-CSS2-20110607-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletes":["font"],"repository":"https://github.com/w3c/csswg-drafts"},"CSS22":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/CSS22/","title":"Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification","rawDate":"2016-04-12","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160412":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2016/WD-CSS22-20160412/","title":"Cascading Style Sheets Level 2 Revision 2 (CSS 2.2) Specification","rawDate":"2016-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"CX":{"authors":["Angel Diaz","Jon Ferraiolo","Philippe Le Hegaret","Chris Lilley","Charles McCathieNevile","Tapas Roy","Ray Whitmer"],"etAl":true,"href":"https://www.w3.org/TR/CX/","title":"Component Extension (CX) API requirements Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/CoordGroup/"],"versions":{"20011211":{"authors":["Angel Diaz","Jon Ferraiolo","Philippe Le Hegaret","Chris Lilley","Charles McCathieNevile","Tapas Roy","Ray Whitmer"],"href":"https://www.w3.org/TR/2001/NOTE-CX-20011211","title":"Component Extension (CX) API requirements Version 1.0","rawDate":"2001-12-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/CoordGroup/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"Content-in-RDF":{"aliasOf":"Content-in-RDF10"},"Content-in-RDF10":{"authors":["Johannes Koch","Carlos A. Velasco","Philip Ackermann"],"href":"https://www.w3.org/TR/Content-in-RDF10/","title":"Representing Content in RDF 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20080908":{"status":"WD","rawDate":"2008-09-08","href":"https://www.w3.org/TR/2008/WD-Content-in-RDF-20080908","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-Content-in-RDF10-20091029/","source":"./data/w3c-specs.txt"},"20110510":{"authors":["Johannes Koch","Carlos A. Velasco","Philip Ackermann"],"href":"https://www.w3.org/TR/2011/WD-Content-in-RDF10-20110510/","title":"Representing Content in RDF 1.0","rawDate":"2011-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Johannes Koch","Carlos A. Velasco","Philip Ackermann"],"href":"https://www.w3.org/TR/2017/NOTE-Content-in-RDF10-20170202/","title":"Representing Content in RDF 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"DDR-Simple-API":{"authors":["Jo Rabin","Jose Manuel Cantera Fonseca","Rotan Hanrahan","Ignacio Marin"],"etAl":true,"href":"https://www.w3.org/TR/DDR-Simple-API/","title":"Device Description Repository Simple API","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"hasErrata":"https://www.w3.org/2008/11/DDR-Simple-API-errata.html","versions":{"20080404":{"status":"WD","rawDate":"2008-04-04","href":"https://www.w3.org/TR/2008/WD-DDR-Simple-API-20080404/","source":"./data/w3c-specs.txt"},"20080917":{"status":"PR","rawDate":"2008-09-17","href":"https://www.w3.org/TR/2008/PR-DDR-Simple-API-20080917/","source":"./data/w3c-specs.txt"},"20081205":{"authors":["Jo Rabin","Jose Manuel Cantera Fonseca","Rotan Hanrahan","Ignacio Marin"],"href":"https://www.w3.org/TR/2008/REC-DDR-Simple-API-20081205/","title":"Device Description Repository Simple API","rawDate":"2008-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"hasErrata":"https://www.w3.org/2008/11/DDR-Simple-API-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"DDR-requirements":{"authors":["Kevin Smith","David Sanders"],"href":"https://www.w3.org/TR/DDR-requirements/","title":"Device Description Repository Requirements 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"versions":{"20060410":{"status":"WD","rawDate":"2006-04-10","href":"https://www.w3.org/TR/2006/WD-DDR-requirements-20060410","source":"./data/w3c-specs.txt"},"20071217":{"authors":["Kevin Smith","David Sanders"],"href":"https://www.w3.org/TR/2007/NOTE-DDR-requirements-20071217/","title":"Device Description Repository Requirements 1.0","rawDate":"2007-12-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-12-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"DOM-Bindings":{"aliasOf":"WebIDL"},"DOM-Level-1":{"authors":["Scott Isaacson","Steven B Byrne","Mike Champion","Ian Jacobs","Arnaud Le Hors","Gavin Nicol","Jonathan Robie","Robert S Sutor","Chris Wilson","Lauren Wood"],"etAl":true,"href":"https://www.w3.org/TR/REC-DOM-Level-1/","status":"WD","versions":{"19971009":{"status":"WD","rawDate":"1997-10-09","href":"https://www.w3.org/TR/WD-DOM-971009","source":"./data/w3c-specs.txt"},"19971209":{"status":"WD","rawDate":"1997-12-09","href":"https://www.w3.org/TR/WD-DOM-971209","source":"./data/w3c-specs.txt"},"19980318":{"status":"WD","rawDate":"1998-03-18","href":"https://www.w3.org/TR/WD-DOM-19980318","source":"./data/w3c-specs.txt"},"19980416":{"status":"WD","rawDate":"1998-04-16","href":"https://www.w3.org/TR/1998/WD-DOM-19980416","source":"./data/w3c-specs.txt"},"19980720":{"status":"WD","rawDate":"1998-07-20","href":"https://www.w3.org/TR/1998/WD-DOM-19980720","source":"./data/w3c-specs.txt"},"19980818":{"status":"PR","rawDate":"1998-08-18","href":"https://www.w3.org/TR/1998/PR-DOM-Level-1-19980818","source":"./data/w3c-specs.txt"},"19981001":{"authors":["Scott Isaacson","Steven B Byrne","Mike Champion","Ian Jacobs","Arnaud Le Hors","Gavin Nicol","Jonathan Robie","Robert S Sutor","Chris Wilson","Lauren Wood"],"href":"https://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/","title":"Document Object Model (DOM) Level 1","rawDate":"1998-10-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20000929":{"status":"WD","rawDate":"2000-09-29","href":"https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/","source":"./data/w3c-specs.txt"},"2e":{"authors":["Jonathan Robie"],"etAl":true,"href":"https://www.w3.org/TR/2000/WD-DOM-Level-1-20000929","title":"Document Object Model (DOM) Level 1 Specification (Second Edition)","rawDate":"2000-09-29","status":"WD","publisher":"W3C"}},"deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/DOM/updates/REC-DOM-Level-1-19981001-errata.html","rawDate":"2000-09-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","title":"Document Object Model (DOM) Level 1","publisher":"W3C"},"DOM-Level-2-Core":{"authors":["Arnaud Le Hors","Philippe Le Hegaret","Lauren Wood","Gavin Nicol","Jonathan Robie","Mike Champion","Steven B Byrne"],"etAl":true,"href":"https://www.w3.org/TR/DOM-Level-2-Core/","title":"Document Object Model (DOM) Level 2 Core Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","versions":{"19981228":{"status":"WD","rawDate":"1998-12-28","href":"https://www.w3.org/TR/1998/WD-DOM-Level-2-19981228","source":"./data/w3c-specs.txt"},"19990304":{"status":"WD","rawDate":"1999-03-04","href":"https://www.w3.org/TR/1999/WD-DOM-Level-2-19990304","source":"./data/w3c-specs.txt"},"19990719":{"status":"WD","rawDate":"1999-07-19","href":"https://www.w3.org/TR/1999/WD-DOM-Level-2-19990719","source":"./data/w3c-specs.txt"},"19990923":{"status":"WD","rawDate":"1999-09-23","href":"https://www.w3.org/TR/1999/WD-DOM-Level-2-19990923","source":"./data/w3c-specs.txt"},"19991210":{"status":"CR","rawDate":"1999-12-10","href":"https://www.w3.org/TR/1999/CR-DOM-Level-2-19991210","source":"./data/w3c-specs.txt"},"20000307":{"status":"CR","rawDate":"2000-03-07","href":"https://www.w3.org/TR/2000/CR-DOM-Level-2-20000307","source":"./data/w3c-specs.txt"},"20000510":{"status":"CR","rawDate":"2000-05-10","href":"https://www.w3.org/TR/2000/CR-DOM-Level-2-20000510","source":"./data/w3c-specs.txt"},"20000927":{"status":"PR","rawDate":"2000-09-27","href":"https://www.w3.org/TR/2000/PR-DOM-Level-2-Core-20000927","source":"./data/w3c-specs.txt"},"20001113":{"authors":["Arnaud Le Hors","Philippe Le Hegaret","Lauren Wood","Gavin Nicol","Jonathan Robie","Mike Champion","Steven B Byrne"],"href":"https://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/","title":"Document Object Model (DOM) Level 2 Core Specification","rawDate":"2000-11-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Arnaud Le Hors","Philippe Le Hegaret","Lauren Wood","Gavin Nicol","Jonathan Robie","Mike Champion","Steven B Byrne"],"href":"https://www.w3.org/TR/2020/SPSD-DOM-Level-2-Core-20201103/","title":"Document Object Model (DOM) Level 2 Core Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"DOM-Level-2-Events":{"authors":["Tom Pixley"],"href":"https://www.w3.org/TR/DOM-Level-2-Events/","title":"Document Object Model (DOM) Level 2 Events Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","versions":{"20000927":{"status":"PR","rawDate":"2000-09-27","href":"https://www.w3.org/TR/2000/PR-DOM-Level-2-Events-20000927","source":"./data/w3c-specs.txt"},"20001113":{"authors":["Tom Pixley"],"href":"https://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/","title":"Document Object Model (DOM) Level 2 Events Specification","rawDate":"2000-11-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"href":"https://www.w3.org/TR/2020/SPSD-DOM-Level-2-Events-20201103/","title":"Document Object Model (DOM) Level 2 Events Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"DOM-Level-2-HTML":{"authors":["Johnny Stenback","Philippe Le Hegaret","Arnaud Le Hors"],"href":"https://www.w3.org/TR/DOM-Level-2-HTML/","title":"Document Object Model (DOM) Level 2 HTML Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","versions":{"20000927":{"status":"PR","rawDate":"2000-09-27","href":"https://www.w3.org/TR/2000/PR-DOM-Level-2-HTML-20000927","source":"./data/w3c-specs.txt"},"20001113":{"status":"WD","rawDate":"2000-11-13","href":"https://www.w3.org/TR/2000/WD-DOM-Level-2-HTML-20001113","source":"./data/w3c-specs.txt"},"20011207":{"status":"WD","rawDate":"2001-12-07","href":"https://www.w3.org/TR/2001/WD-DOM-Level-2-HTML-20011207","source":"./data/w3c-specs.txt"},"20011210":{"status":"WD","rawDate":"2001-12-10","href":"https://www.w3.org/TR/2001/WD-DOM-Level-2-HTML-20011210/","source":"./data/w3c-specs.txt"},"20020605":{"status":"CR","rawDate":"2002-06-05","href":"https://www.w3.org/TR/2002/CR-DOM-Level-2-HTML-20020605","source":"./data/w3c-specs.txt"},"20021007":{"status":"CR","rawDate":"2002-10-07","href":"https://www.w3.org/TR/2002/CR-DOM-Level-2-HTML-20021007","source":"./data/w3c-specs.txt"},"20021108":{"status":"PR","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/PR-DOM-Level-2-HTML-20021108","source":"./data/w3c-specs.txt"},"20030109":{"authors":["Johnny Stenback","Philippe Le Hegaret","Arnaud Le Hors"],"href":"https://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/","title":"Document Object Model (DOM) Level 2 HTML Specification","rawDate":"2003-01-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Johnny Stenback","Philippe Le Hegaret","Arnaud Le Hors"],"href":"https://www.w3.org/TR/2020/SPSD-DOM-Level-2-HTML-20201103/","title":"Document Object Model (DOM) Level 2 HTML Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"DOM-Level-2-Style":{"authors":["Chris Wilson","Philippe Le Hegaret"],"href":"https://www.w3.org/TR/DOM-Level-2-Style/","title":"Document Object Model (DOM) Level 2 Style Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","versions":{"20000927":{"status":"PR","rawDate":"2000-09-27","href":"https://www.w3.org/TR/2000/PR-DOM-Level-2-Style-20000927","source":"./data/w3c-specs.txt"},"20001113":{"authors":["Chris Wilson","Philippe Le Hegaret"],"href":"https://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/","title":"Document Object Model (DOM) Level 2 Style Specification","rawDate":"2000-11-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Chris Wilson","Philippe Le Hegaret"],"href":"https://www.w3.org/TR/2020/SPSD-DOM-Level-2-Style-20201103/","title":"Document Object Model (DOM) Level 2 Style Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"DOM-Level-2-Traversal-Range":{"authors":["Joseph Kesselman","Jonathan Robie","Mike Champion","Peter Sharpe","Lauren Wood"],"etAl":true,"href":"https://www.w3.org/TR/DOM-Level-2-Traversal-Range/","title":"Document Object Model (DOM) Level 2 Traversal and Range Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","versions":{"20000927":{"status":"PR","rawDate":"2000-09-27","href":"https://www.w3.org/TR/2000/PR-DOM-Level-2-Traversal-Range-20000927","source":"./data/w3c-specs.txt"},"20001113":{"authors":["Joseph Kesselman","Jonathan Robie","Mike Champion","Peter Sharpe","Lauren Wood"],"href":"https://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/","title":"Document Object Model (DOM) Level 2 Traversal and Range Specification","rawDate":"2000-11-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Joseph Kesselman","Jonathan Robie","Mike Champion","Peter Sharpe","Lauren Wood"],"href":"https://www.w3.org/TR/2020/SPSD-DOM-Level-2-Traversal-Range-20201103/","title":"Document Object Model (DOM) Level 2 Traversal and Range Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"DOM-Level-2-Views":{"authors":["Arnaud Le Hors","Laurence Cable"],"href":"https://www.w3.org/TR/DOM-Level-2-Views/","title":"Document Object Model (DOM) Level 2 Views Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","versions":{"20000927":{"status":"PR","rawDate":"2000-09-27","href":"https://www.w3.org/TR/2000/PR-DOM-Level-2-Views-20000927","source":"./data/w3c-specs.txt"},"20001113":{"authors":["Arnaud Le Hors","Laurence Cable"],"href":"https://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/","title":"Document Object Model (DOM) Level 2 Views Specification","rawDate":"2000-11-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2000/11/DOM-Level-2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Arnaud Le Hors","Laurence Cable"],"href":"https://www.w3.org/TR/2020/SPSD-DOM-Level-2-Views-20201103/","title":"Document Object Model (DOM) Level 2 Views Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"DOM-Level-3-AS":{"authors":["Ben Chang","Elena Litani","Joseph Kesselman","rezaur rahman"],"etAl":true,"href":"https://www.w3.org/TR/DOM-Level-3-AS/","title":"Document Object Model (DOM) Level 3 Abstract Schemas Specification","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"versions":{"20020725":{"authors":["Ben Chang","Elena Litani","Joseph Kesselman","rezaur rahman"],"href":"https://www.w3.org/TR/2002/NOTE-DOM-Level-3-AS-20020725/","title":"Document Object Model (DOM) Level 3 Abstract Schemas Specification","rawDate":"2002-07-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Ben Chang","Elena Litani","Joseph Kesselman","rezaur rahman"],"href":"https://www.w3.org/TR/2020/NOTE-DOM-Level-3-AS-20201103/","title":"Document Object Model (DOM) Level 3 Abstract Schemas Specification","rawDate":"2020-11-03","status":"NOTE","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["DOM-Level-3-ASLS"],"isRetired":true},"DOM-Level-3-ASLS":{"authors":["Ben Chang","Elena Litani","J.M. van Rotterdam","Johnny Stenback","Andy Heninger","Joseph Kesselman","rezaur rahman"],"href":"https://www.w3.org/TR/DOM-Level-3-ASLS/","title":"Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification","rawDate":"2002-07-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20020114":{"status":"WD","rawDate":"2002-01-14","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020114/","source":"./data/w3c-specs.txt"},"20020409":{"status":"WD","rawDate":"2002-04-09","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409","source":"./data/w3c-specs.txt"},"20020725":{"authors":["Ben Chang","Elena Litani","J.M. van Rotterdam","Johnny Stenback","Andy Heninger","Joseph Kesselman","rezaur rahman"],"href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020725/","title":"Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification","rawDate":"2002-07-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"obsoletedBy":["DOM-Level-3-AS"],"status":"WD"},"DOM-Level-3-Core":{"authors":["Arnaud Le Hors","Philippe Le Hegaret","Lauren Wood","Gavin Nicol","Jonathan Robie","Mike Champion","Steven B Byrne"],"etAl":true,"href":"https://www.w3.org/TR/DOM-Level-3-Core/","title":"Document Object Model (DOM) Level 3 Core Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2004/01/DOM-Level-3-errata","versions":{"20000901":{"status":"WD","rawDate":"2000-09-01","href":"https://www.w3.org/TR/2000/WD-DOM-Level-3-Core-20000901/","source":"./data/w3c-specs.txt"},"20010126":{"status":"WD","rawDate":"2001-01-26","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010126/","source":"./data/w3c-specs.txt"},"20010605":{"status":"WD","rawDate":"2001-06-05","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010605/","source":"./data/w3c-specs.txt"},"20010913":{"status":"WD","rawDate":"2001-09-13","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010913/","source":"./data/w3c-specs.txt"},"20020114":{"status":"WD","rawDate":"2002-01-14","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Core-20020114/","source":"./data/w3c-specs.txt"},"20020409":{"status":"WD","rawDate":"2002-04-09","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Core-20020409","source":"./data/w3c-specs.txt"},"20021022":{"status":"WD","rawDate":"2002-10-22","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Core-20021022","source":"./data/w3c-specs.txt"},"20030226":{"status":"WD","rawDate":"2003-02-26","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226","source":"./data/w3c-specs.txt"},"20030609":{"status":"WD","rawDate":"2003-06-09","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030609","source":"./data/w3c-specs.txt"},"20031107":{"status":"CR","rawDate":"2003-11-07","href":"https://www.w3.org/TR/2003/CR-DOM-Level-3-Core-20031107","source":"./data/w3c-specs.txt"},"20040205":{"status":"PR","rawDate":"2004-02-05","href":"https://www.w3.org/TR/2004/PR-DOM-Level-3-Core-20040205","source":"./data/w3c-specs.txt"},"20040407":{"authors":["Arnaud Le Hors","Philippe Le Hegaret","Lauren Wood","Gavin Nicol","Jonathan Robie","Mike Champion","Steven B Byrne"],"href":"https://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/","title":"Document Object Model (DOM) Level 3 Core Specification","rawDate":"2004-04-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2004/01/DOM-Level-3-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Arnaud Le Hors","Philippe Le Hegaret","Lauren Wood","Gavin Nicol","Jonathan Robie","Mike Champion","Steven B Byrne"],"href":"https://www.w3.org/TR/2021/SPSD-DOM-Level-3-Core-20210928/","title":"Document Object Model (DOM) Level 3 Core Specification","rawDate":"2021-09-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2021-09-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"DOM-Level-3-Events":{"aliasOf":"uievents"},"DOM-Level-3-Events-code":{"aliasOf":"uievents-code"},"DOM-Level-3-Events-key":{"aliasOf":"uievents-key"},"DOM-Level-3-LS":{"authors":["Johnny Stenback","Andy Heninger"],"href":"https://www.w3.org/TR/DOM-Level-3-LS/","title":"Document Object Model (DOM) Level 3 Load and Save Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2004/01/DOM-Level-3-errata","versions":{"20000901":{"status":"WD","rawDate":"2000-09-01","href":"https://www.w3.org/TR/2000/WD-DOM-Level-3-Content-Models-and-Load-Save-20000901/","source":"./data/w3c-specs.txt"},"20010209":{"status":"WD","rawDate":"2001-02-09","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-CMLS-20010209/","source":"./data/w3c-specs.txt"},"20010419":{"status":"WD","rawDate":"2001-04-19","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-CMLS-20010419/","source":"./data/w3c-specs.txt"},"20010607":{"status":"WD","rawDate":"2001-06-07","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20010607/","source":"./data/w3c-specs.txt"},"20011025":{"status":"WD","rawDate":"2001-10-25","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025/","source":"./data/w3c-specs.txt"},"20020725":{"status":"WD","rawDate":"2002-07-25","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-LS-20020725","source":"./data/w3c-specs.txt"},"20030226":{"status":"WD","rawDate":"2003-02-26","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-LS-20030226","source":"./data/w3c-specs.txt"},"20030619":{"status":"WD","rawDate":"2003-06-19","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-LS-20030619","source":"./data/w3c-specs.txt"},"20031107":{"status":"CR","rawDate":"2003-11-07","href":"https://www.w3.org/TR/2003/CR-DOM-Level-3-LS-20031107","source":"./data/w3c-specs.txt"},"20040205":{"status":"PR","rawDate":"2004-02-05","href":"https://www.w3.org/TR/2004/PR-DOM-Level-3-LS-20040205","source":"./data/w3c-specs.txt"},"20040407":{"authors":["Johnny Stenback","Andy Heninger"],"href":"https://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/","title":"Document Object Model (DOM) Level 3 Load and Save Specification","rawDate":"2004-04-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2004/01/DOM-Level-3-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-04-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"DOM-Level-3-Val":{"authors":["Ben Chang","Joseph Kesselman","rezaur rahman"],"href":"https://www.w3.org/TR/DOM-Level-3-Val/","title":"Document Object Model (DOM) Level 3 Validation Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2004/01/DOM-Level-3-errata","versions":{"20020725":{"status":"WD","rawDate":"2002-07-25","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Val-20020725","source":"./data/w3c-specs.txt"},"20021008":{"status":"WD","rawDate":"2002-10-08","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Val-20021008","source":"./data/w3c-specs.txt"},"20030205":{"status":"WD","rawDate":"2003-02-05","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-Val-20030205","source":"./data/w3c-specs.txt"},"20030730":{"status":"CR","rawDate":"2003-07-30","href":"https://www.w3.org/TR/2003/CR-DOM-Level-3-Val-20030730","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-DOM-Level-3-Val-20031215","source":"./data/w3c-specs.txt"},"20040127":{"authors":["Ben Chang","Joseph Kesselman","rezaur rahman"],"href":"https://www.w3.org/TR/2004/REC-DOM-Level-3-Val-20040127/","title":"Document Object Model (DOM) Level 3 Validation Specification","rawDate":"2004-01-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"hasErrata":"https://www.w3.org/2004/01/DOM-Level-3-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-01-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"DOM-Level-3-Views":{"authors":["Ray Whitmer"],"href":"https://www.w3.org/TR/DOM-Level-3-Views/","title":"Document Object Model (DOM) Level 3 Views and Formatting Specification","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"versions":{"20001115":{"status":"WD","rawDate":"2000-11-15","href":"https://www.w3.org/TR/2000/WD-DOM-Level-3-Views-20001115","source":"./data/w3c-specs.txt"},"20040226":{"authors":["Ray Whitmer"],"href":"https://www.w3.org/TR/2004/NOTE-DOM-Level-3-Views-20040226/","title":"Document Object Model (DOM) Level 3 Views and Formatting Specification","rawDate":"2004-02-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Ray Whitmer"],"href":"https://www.w3.org/TR/2020/NOTE-DOM-Level-3-Views-20201103/","title":"Document Object Model (DOM) Level 3 Views and Formatting Specification","rawDate":"2020-11-03","status":"NOTE","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"DOM-Level-3-XPath":{"authors":["Ray Whitmer"],"href":"https://www.w3.org/TR/DOM-Level-3-XPath/","title":"Document Object Model (DOM) Level 3 XPath Specification","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"versions":{"20010618":{"status":"WD","rawDate":"2001-06-18","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-XPath-20010618/","source":"./data/w3c-specs.txt"},"20010830":{"status":"WD","rawDate":"2001-08-30","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-XPath-20010830/","source":"./data/w3c-specs.txt"},"20011031":{"status":"WD","rawDate":"2001-10-31","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-XPath-20011031/","source":"./data/w3c-specs.txt"},"20020208":{"status":"WD","rawDate":"2002-02-08","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-XPath-20020208/","source":"./data/w3c-specs.txt"},"20020328":{"status":"WD","rawDate":"2002-03-28","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-XPath-20020328","source":"./data/w3c-specs.txt"},"20030331":{"status":"CR","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331","source":"./data/w3c-specs.txt"},"20040226":{"authors":["Ray Whitmer"],"href":"https://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226/","title":"Document Object Model (DOM) Level 3 XPath Specification","rawDate":"2004-02-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Ray Whitmer"],"href":"https://www.w3.org/TR/2020/NOTE-DOM-Level-3-XPath-20201103/","title":"Document Object Model (DOM) Level 3 XPath Specification","rawDate":"2020-11-03","status":"NOTE","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"DOM-Parsing":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/DOM-Parsing/","title":"DOM Parsing and Serialization","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120920":{"authors":["Travis Leithead","Ms2ger"],"href":"https://www.w3.org/TR/2012/WD-DOM-Parsing-20120920/","title":"DOM Parsing and Serialization","rawDate":"2012-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131210":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2013/WD-DOM-Parsing-20131210/","title":"DOM Parsing and Serialization","rawDate":"2013-12-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140501":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2014/WD-DOM-Parsing-20140501/","title":"DOM Parsing and Serialization","rawDate":"2014-05-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140617":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2014/CR-DOM-Parsing-20140617/","title":"DOM Parsing and Serialization","rawDate":"2014-06-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-DOM-Parsing-20160517/","title":"DOM Parsing and Serialization","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/DOM-Parsing/","repository":"https://github.com/w3c/DOM-Parsing"},"DOM-Requirements":{"authors":["Ben Chang","Philippe Le Hegaret","Arnaud Le Hors","Ray Whitmer","Mike Champion","Joseph Kesselman","Andy Heninger","Angel Diaz","James Davidson","Lauren Wood","Jared Sorensen"],"etAl":true,"href":"https://www.w3.org/TR/DOM-Requirements/","title":"Document Object Model (DOM) Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"versions":{"19980416":{"status":"WD","rawDate":"1998-04-16","href":"https://www.w3.org/TR/1998/WD-DOM-19980416/requirements","source":"./data/w3c-specs.txt"},"20000208":{"status":"WD","rawDate":"2000-02-08","href":"https://www.w3.org/TR/2000/WD-DOM-Requirements-20000208","source":"./data/w3c-specs.txt"},"20000412":{"status":"WD","rawDate":"2000-04-12","href":"https://www.w3.org/TR/2000/WD-DOM-Requirements-20000412","source":"./data/w3c-specs.txt"},"20001214":{"status":"WD","rawDate":"2000-12-14","href":"https://www.w3.org/TR/2000/WD-DOM-Requirements-20001214","source":"./data/w3c-specs.txt"},"20010419":{"status":"WD","rawDate":"2001-04-19","href":"https://www.w3.org/TR/2001/WD-DOM-Requirements-20010419/","source":"./data/w3c-specs.txt"},"20040226":{"authors":["Ben Chang","Philippe Le Hégaret","Arnaud Le Hors","Ray Whitmer","Mike Champion","Joseph Kesselman","Andy Heninger","Angel Diaz","James Davidson","Lauren Wood","Jared Sorensen"],"href":"https://www.w3.org/TR/2004/NOTE-DOM-Requirements-20040226/","title":"Document Object Model (DOM) Requirements","rawDate":"2004-02-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/DOM/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Ben Chang","Philippe Le Hegaret","Arnaud Le Hors","Ray Whitmer","Mike Champion","Joseph Kesselman","Andy Heninger","Angel Diaz","James Davidson","Lauren Wood","Jared Sorensen"],"href":"https://www.w3.org/TR/2020/NOTE-DOM-Requirements-20201103/","title":"Document Object Model (DOM) Requirements","rawDate":"2020-11-03","status":"NOTE","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"DPF":{"authors":["Keith Waters","Rafah Hosn","Dave Raggett","Sailesh Sathish","Matt Womer","Max Froumentin","Rhys Lewis","Keith Rosenblatt"],"etAl":true,"href":"https://www.w3.org/TR/DPF/","title":"Delivery Context: Client Interfaces (DCCI) 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20040728":{"status":"WD","rawDate":"2004-07-28","href":"https://www.w3.org/TR/2004/WD-sysenv-20040728/","source":"./data/w3c-specs.txt"},"20041122":{"status":"WD","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/WD-DPF-20041122/","source":"./data/w3c-specs.txt"},"20051111":{"status":"WD","rawDate":"2005-11-11","href":"https://www.w3.org/TR/2005/WD-DPF-20051111","source":"./data/w3c-specs.txt"},"20061019":{"status":"CR","rawDate":"2006-10-19","href":"https://www.w3.org/TR/2006/CR-DPF-20061019","source":"./data/w3c-specs.txt"},"20070704":{"status":"WD","rawDate":"2007-07-04","href":"https://www.w3.org/TR/2007/WD-DPF-20070704/","source":"./data/w3c-specs.txt"},"20071221":{"status":"CR","rawDate":"2007-12-21","href":"https://www.w3.org/TR/2007/CR-DPF-20071221/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Keith Waters","Rafah Hosn","Dave Raggett","Sailesh Sathish","Matt Womer","Max Froumentin","Rhys Lewis","Keith Rosenblatt"],"href":"https://www.w3.org/TR/2010/NOTE-DPF-20100629/","title":"Delivery Context: Client Interfaces (DCCI) 1.0","rawDate":"2010-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-06-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"DSIG-label-arch":{"authors":["Rohit Khare"],"href":"https://www.w3.org/TR/WD-DSIG-label-arch","title":"Digital Signature Label Architecture","rawDate":"1997-06-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19970610":{"authors":["Rohit Khare"],"href":"https://www.w3.org/TR/WD-DSIG-label-arch-970610","title":"Digital Signature Label Architecture","rawDate":"1997-06-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"DSig-label":{"authors":["Yanghua Chu","Philip DesAutels","Brian LaMacchia","Peter Lipp"],"etAl":true,"href":"https://www.w3.org/TR/DSig-label/","title":"PICS Signed Labels (DSig) 1.0 Specification","status":"REC","publisher":"W3C","versions":{"19970516":{"status":"WD","rawDate":"1997-05-16","href":"https://www.w3.org/pub/WWW/TR/WD-DSIG-label-970516.html","source":"./data/w3c-specs.txt"},"19970523":{"status":"WD","rawDate":"1997-05-23","href":"https://www.w3.org/pub/WWW/TR/WD-DSIG-label-970523.html","source":"./data/w3c-specs.txt"},"19970605":{"status":"WD","rawDate":"1997-06-05","href":"https://www.w3.org/pub/WWW/TR/WD-DSIG-label-970605.html","source":"./data/w3c-specs.txt"},"19971024":{"status":"WD","rawDate":"1997-10-24","href":"https://www.w3.org/pub/WWW/TR/WD-DSIG-label-971024.html","source":"./data/w3c-specs.txt"},"19971111":{"status":"PR","rawDate":"1997-11-11","href":"https://www.w3.org/TR/PR-DSig-label-971111","source":"./data/w3c-specs.txt"},"19980403":{"status":"PR","rawDate":"1998-04-03","href":"https://www.w3.org/TR/1998/PR-DSig-label-19980403/","source":"./data/w3c-specs.txt"},"19980527":{"authors":["Yanghua Chu","Philip DesAutels","Brian LaMacchia","Peter Lipp"],"href":"https://www.w3.org/TR/1998/REC-DSig-label-19980527/","title":"PICS Signed Labels (DSig) 1.0 Specification","rawDate":"1998-05-27","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20091124":{"authors":["Yanghua Chu","Philip DesAutels","Brian LaMacchia","Peter Lipp"],"href":"https://www.w3.org/TR/2009/REC-DSig-label-20091124/","title":"PICS Signed Labels (DSig) 1.0 Specification","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-11-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"DSig-usage":{"authors":["Thomas Roessler"],"href":"https://www.w3.org/TR/DSig-usage/","title":"Using XML Digital Signatures in the 2006 XML Environment","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20060915":{"status":"WD","rawDate":"2006-09-15","href":"https://www.w3.org/TR/2006/WD-DSig-usage-20060915/","source":"./data/w3c-specs.txt"},"20061220":{"authors":["Thomas Roessler"],"href":"https://www.w3.org/TR/2006/NOTE-DSig-usage-20061220/","title":"Using XML Digital Signatures in the 2006 XML Environment","rawDate":"2006-12-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-12-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"DataCache":{"authors":["Nikunj Mehta"],"href":"https://www.w3.org/TR/DataCache/","title":"Programmable HTTP Caching and Serving","rawDate":"2011-03-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-DataCache-20091029/","source":"./data/w3c-specs.txt"},"20100114":{"status":"WD","rawDate":"2010-01-14","href":"https://www.w3.org/TR/2010/WD-DataCache-20100114/","source":"./data/w3c-specs.txt"},"20110329":{"authors":["Nikunj Mehta"],"href":"https://www.w3.org/TR/2011/NOTE-DataCache-20110329/","title":"Programmable HTTP Caching and Serving","rawDate":"2011-03-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"status":"NOTE"},"EARL10":{"aliasOf":"EARL10-Schema"},"EARL10-Guide":{"authors":["Carlos A. Velasco","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/EARL10-Guide/","title":"Developer Guide for Evaluation and Report Language (EARL) 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-EARL10-Guide-20091029/","source":"./data/w3c-specs.txt"},"20110510":{"authors":["Carlos A. Velasco","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2011/WD-EARL10-Guide-20110510/","title":"Developer Guide for Evaluation and Report Language (EARL) 1.0","rawDate":"2011-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Carlos A. Velasco","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2017/NOTE-EARL10-Guide-20170202/","title":"Developer Guide for Evaluation and Report Language (EARL) 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"EARL10-Requirements":{"authors":["Michael Squillace","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/EARL10-Requirements/","title":"Requirements for the Evaluation and Report Language (EARL) 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"versions":{"20050711":{"status":"WD","rawDate":"2005-07-11","href":"https://www.w3.org/TR/2005/WD-EARL10-Requirements-20050711","source":"./data/w3c-specs.txt"},"20091029":{"authors":["Michael Squillace","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2009/WD-EARL10-Requirements-20091029/","title":"Requirements for the Evaluation and Report Language (EARL) 1.0","rawDate":"2009-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Michael Squillace","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2017/NOTE-EARL10-Requirements-20170202/","title":"Requirements for the Evaluation and Report Language (EARL) 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2017-02-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"EARL10-Schema":{"authors":["Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/EARL10-Schema/","title":"Evaluation and Report Language (EARL) 1.0 Schema","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"versions":{"20021206":{"status":"WD","rawDate":"2002-12-06","href":"https://www.w3.org/TR/2002/WD-EARL10-20021206/","source":"./data/w3c-specs.txt"},"20050909":{"status":"WD","rawDate":"2005-09-09","href":"https://www.w3.org/TR/2005/WD-EARL10-Schema-20050909","source":"./data/w3c-specs.txt"},"20060927":{"status":"WD","rawDate":"2006-09-27","href":"https://www.w3.org/TR/2006/WD-EARL10-Schema-20060927","source":"./data/w3c-specs.txt"},"20070323":{"status":"WD","rawDate":"2007-03-23","href":"https://www.w3.org/TR/2007/WD-EARL10-Schema-20070323","source":"./data/w3c-specs.txt"},"20090428":{"status":"WD","rawDate":"2009-04-28","href":"https://www.w3.org/TR/2009/WD-EARL10-Schema-20090428/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-EARL10-Schema-20091029/","source":"./data/w3c-specs.txt"},"20110510":{"authors":["Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2011/WD-EARL10-Schema-20110510/","title":"Evaluation and Report Language (EARL) 1.0 Schema","rawDate":"2011-05-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2017/NOTE-EARL10-Schema-20170202/","title":"Evaluation and Report Language (EARL) 1.0 Schema","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2017-02-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"EC-related-activities":{"authors":["Thierry Michel"],"href":"https://www.w3.org/TR/EC-related-activities/","title":"W3C and Electronic Commerce","status":"NOTE","publisher":"W3C","versions":{"20000107":{"authors":["Thierry Michel"],"href":"https://www.w3.org/TR/2000/NOTE-EC-related-activities-20000107","title":"W3C and Electronic Commerce","rawDate":"2000-01-07","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2000-01-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"EGIX":{"versions":{"20021220":{"status":"NOTE","rawDate":"2002-12-20","href":"https://www.w3.org/TR/2002/NOTE-EGIX-20021220/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/EGIX","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-12-20","title":"Embedding Glyph Identifiers in XML Documents"},"EMMAreqs":{"authors":["Stéphane Maes","Stephen Potter"],"href":"https://www.w3.org/TR/EMMAreqs/","title":"Requirements for EMMA","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20030113":{"authors":["Stéphane Maes","Stephen Potter"],"href":"https://www.w3.org/TR/2003/NOTE-EMMAreqs-20030113/","title":"Requirements for EMMA","rawDate":"2003-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-01-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ElementTraversal":{"authors":["Doug Schepers","Robin Berjon"],"href":"https://www.w3.org/TR/ElementTraversal/","title":"Element Traversal Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"https://www.w3.org/2008/12/REC-ElementTraversal-20081222-errata.html","versions":{"20070727":{"status":"WD","rawDate":"2007-07-27","href":"https://www.w3.org/TR/2007/WD-ElementTraversal-20070727/","source":"./data/w3c-specs.txt"},"20080303":{"status":"WD","rawDate":"2008-03-03","href":"https://www.w3.org/TR/2008/WD-ElementTraversal-20080303/","source":"./data/w3c-specs.txt"},"20080813":{"status":"CR","rawDate":"2008-08-13","href":"https://www.w3.org/TR/2008/CR-ElementTraversal-20080813/","source":"./data/w3c-specs.txt"},"20081117":{"status":"PR","rawDate":"2008-11-17","href":"https://www.w3.org/TR/2008/PR-ElementTraversal-20081117/","source":"./data/w3c-specs.txt"},"20081222":{"authors":["Doug Schepers","Robin Berjon"],"href":"https://www.w3.org/TR/2008/REC-ElementTraversal-20081222/","title":"Element Traversal Specification","rawDate":"2008-12-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"https://www.w3.org/2008/12/REC-ElementTraversal-20081222-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Doug Schepers","Robin Berjon"],"href":"https://www.w3.org/TR/2020/SPSD-ElementTraversal-20201103/","title":"Element Traversal Specification","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"FileAPI":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/FileAPI/","title":"File API","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"versions":{"20061018":{"status":"WD","rawDate":"2006-10-18","href":"https://www.w3.org/TR/2006/WD-file-upload-20061018/","source":"./data/w3c-specs.txt"},"20091117":{"status":"WD","rawDate":"2009-11-17","href":"https://www.w3.org/TR/2009/WD-FileAPI-20091117/","source":"./data/w3c-specs.txt"},"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-FileAPI-20101026/","source":"./data/w3c-specs.txt"},"20111020":{"status":"WD","rawDate":"2011-10-20","href":"https://www.w3.org/TR/2011/WD-FileAPI-20111020/","source":"./data/w3c-specs.txt"},"20120712":{"status":"WD","rawDate":"2012-07-12","href":"https://www.w3.org/TR/2012/WD-FileAPI-20120712/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Arun Ranganathan","Jonas Sicking"],"href":"https://www.w3.org/TR/2012/WD-FileAPI-20121025/","title":"File API","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130912":{"authors":["Arun Ranganathan","Jonas Sicking"],"href":"https://www.w3.org/TR/2013/WD-FileAPI-20130912/","title":"File API","rawDate":"2013-09-12","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150421":{"authors":["Arun Ranganathan","Jonas Sicking"],"href":"https://www.w3.org/TR/2015/WD-FileAPI-20150421/","title":"File API","rawDate":"2015-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171026":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2017/WD-FileAPI-20171026/","title":"File API","rawDate":"2017-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181106":{"authors":["Marijn Kruisselbrink","Arun Ranganathan"],"href":"https://www.w3.org/TR/2018/WD-FileAPI-20181106/","title":"File API","rawDate":"2018-11-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2019/WD-FileAPI-20190530/","title":"File API","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Marijn Kruisselbrink","Arun Ranganathan"],"href":"https://www.w3.org/TR/2019/WD-FileAPI-20190531/","title":"File API","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190911":{"authors":["Marijn Kruisselbrink","Arun Ranganathan"],"href":"https://www.w3.org/TR/2019/WD-FileAPI-20190911/","title":"File API","rawDate":"2019-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210422":{"authors":["Marijn Kruisselbrink","Arun Ranganathan"],"href":"https://www.w3.org/TR/2021/WD-FileAPI-20210422/","title":"File API","rawDate":"2021-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210427":{"authors":["Marijn Kruisselbrink","Arun Ranganathan"],"href":"https://www.w3.org/TR/2021/WD-FileAPI-20210427/","title":"File API","rawDate":"2021-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Marijn Kruisselbrink","Arun Ranganathan"],"href":"https://www.w3.org/TR/2021/WD-FileAPI-20210604/","title":"File API","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2022/WD-FileAPI-20221010/","title":"File API","rawDate":"2022-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2022/WD-FileAPI-20221020/","title":"File API","rawDate":"2022-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221114":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2022/WD-FileAPI-20221114/","title":"File API","rawDate":"2022-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221130":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2022/WD-FileAPI-20221130/","title":"File API","rawDate":"2022-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230206":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2023/WD-FileAPI-20230206/","title":"File API","rawDate":"2023-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-02-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/FileAPI/","repository":"https://github.com/w3c/FileAPI"},"HGML":{"versions":{"19980619":{"status":"NOTE","rawDate":"1998-06-19","href":"https://www.w3.org/TR/1998/NOTE-HGML-19980619","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-HGML","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-06-19","title":"Hyper Graphics Markup Language (HGML)"},"HIGHRES-TIME-20131203":{"aliasOf":"hr-time-2-20131203"},"HIGHRES-TIME-20150617":{"aliasOf":"hr-time-2-20150617"},"HIGHRES-TIME-20150714":{"aliasOf":"hr-time-2-20150714"},"HIGHRES-TIME-20150718":{"aliasOf":"hr-time-2-20150718"},"HIGHRES-TIME-20150721":{"aliasOf":"hr-time-2-20150721"},"HIGHRES-TIME-20150916":{"aliasOf":"hr-time-2-20150916"},"HIGHRES-TIME-20150918":{"aliasOf":"hr-time-2-20150918"},"HIGHRES-TIME-20150928":{"aliasOf":"hr-time-2-20150928"},"HIGHRES-TIME-20151021":{"aliasOf":"hr-time-2-20151021"},"HIGHRES-TIME-20151116":{"aliasOf":"hr-time-2-20151116"},"HIGHRES-TIME-20160202":{"aliasOf":"hr-time-2-20160202"},"HIGHRES-TIME-20160203":{"aliasOf":"hr-time-2-20160203"},"HIGHRES-TIME-20160204":{"aliasOf":"hr-time-2-20160204"},"HIGHRES-TIME-20160225":{"aliasOf":"hr-time-2-20160225"},"HIGHRES-TIME-20160713":{"aliasOf":"hr-time-2-20160713"},"HIGHRES-TIME-20160720":{"aliasOf":"hr-time-2-20160720"},"HIGHRES-TIME-20161008":{"aliasOf":"hr-time-2-20161008"},"HIGHRES-TIME-20161024":{"aliasOf":"hr-time-2-20161024"},"HIGHRES-TIME-20161025":{"aliasOf":"hr-time-2-20161025"},"HIGHRES-TIME-20161101":{"aliasOf":"hr-time-2-20161101"},"HIGHRES-TIME-20180301":{"aliasOf":"hr-time-2-20180301"},"HIGHRES-TIME-20190626":{"aliasOf":"hr-time-2-20190626"},"HIGHRES-TIME-20191015":{"aliasOf":"hr-time-2-20191015"},"HIGHRES-TIME-20191121":{"aliasOf":"hr-time-2-20191121"},"HTML32":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/REC-html32","title":"HTML 3.2 Reference Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"19960909":{"status":"WD","rawDate":"1996-09-09","href":"https://www.w3.org/pub/WWW/TR/WD-html32-960909","source":"./data/w3c-specs.txt"},"19961105":{"status":"PR","rawDate":"1996-11-05","href":"https://www.w3.org/pub/WWW/TR/PR-html32-961105","source":"./data/w3c-specs.txt"},"19970114":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/REC-html32-19970114","title":"HTML 3.2 Reference Specification","rawDate":"1997-01-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180315":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/2018/SPSD-html32-20180315/","title":"HTML 3.2 Reference Specification","rawDate":"2018-03-15","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"HTMLComponents":{"versions":{"19981023":{"status":"NOTE","rawDate":"1998-10-23","href":"https://www.w3.org/TR/1998/NOTE-HTMLComponents-19981023","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-HTMLComponents","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-10-23","title":"HTML Components"},"HTMLplusTIME":{"versions":{"19980918":{"status":"NOTE","rawDate":"1998-09-18","href":"https://www.w3.org/TR/1998/NOTE-HTMLplusTIME-19980918","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-HTMLplusTIME","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-09-18","title":"HTML+TIME"},"HTTP-NG-architecture":{"authors":["Henrik Frystyk Nielsen","Mike Spreitzer"],"href":"https://www.w3.org/TR/WD-HTTP-NG-architecture/","title":"HTTP-ng Architectural Model","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980710":{"authors":["Henrik Frystyk Nielsen","Mike Spreitzer"],"href":"https://www.w3.org/TR/1998/WD-HTTP-NG-architecture-19980710/","title":"HTTP-ng Architectural Model","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"HTTP-NG-goals":{"authors":["Mike Spreitzer","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/1998/WD-HTTP-NG-goals","title":"Short- and Long-Term Goals for the HTTP-NG Project","rawDate":"1998-03-27","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980327":{"authors":["Mike Spreitzer","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/1998/WD-HTTP-NG-goals-19980327","title":"Short- and Long-Term Goals for the HTTP-NG Project","rawDate":"1998-03-27","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"HTTP-NG-interfaces":{"authors":["Dan Larner"],"href":"https://www.w3.org/TR/WD-HTTP-NG-interfaces/","title":"HTTP-ng Web Interfaces","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980710":{"authors":["Dan Larner"],"href":"https://www.w3.org/TR/1998/WD-HTTP-NG-interfaces-19980710/","title":"HTTP-ng Web Interfaces","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"HTTP-NG-testbed":{"authors":["Daniel Veillard"],"href":"https://www.w3.org/TR/NOTE-HTTP-NG-testbed/","title":"Design of HTTP-ng Testbed","status":"NOTE","publisher":"W3C","versions":{"19980710":{"authors":["Daniel Veillard"],"href":"https://www.w3.org/TR/1998/NOTE-HTTP-NG-testbed-19980710/","title":"Design of HTTP-ng Testbed","rawDate":"1998-07-10","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"1998-07-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"HTTP-NG-wire":{"authors":["Bill Janssen"],"href":"https://www.w3.org/TR/WD-HTTP-NG-wire/","title":"HTTP-ng Binary Wire Protocol","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980710":{"authors":["Bill Janssen"],"href":"https://www.w3.org/TR/1998/WD-HTTP-NG-wire-19980710/","title":"HTTP-ng Binary Wire Protocol","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"HTTP-in-RDF":{"aliasOf":"HTTP-in-RDF10"},"HTTP-in-RDF10":{"authors":["Johannes Koch","Carlos A. Velasco","Philip Ackermann"],"href":"https://www.w3.org/TR/HTTP-in-RDF10/","title":"HTTP Vocabulary in RDF 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20061220":{"status":"WD","rawDate":"2006-12-20","href":"https://www.w3.org/TR/2006/WD-HTTP-in-RDF-20061220/","source":"./data/w3c-specs.txt"},"20070323":{"status":"WD","rawDate":"2007-03-23","href":"https://www.w3.org/TR/2007/WD-HTTP-in-RDF-20070323/","source":"./data/w3c-specs.txt"},"20080908":{"status":"WD","rawDate":"2008-09-08","href":"https://www.w3.org/TR/2008/WD-HTTP-in-RDF-20080908","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-HTTP-in-RDF10-20091029/","source":"./data/w3c-specs.txt"},"20110510":{"authors":["Johannes Koch","Carlos A. Velasco","Philip Ackermann"],"href":"https://www.w3.org/TR/2011/WD-HTTP-in-RDF10-20110510/","title":"HTTP Vocabulary in RDF 1.0","rawDate":"2011-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Johannes Koch","Carlos A. Velasco","Philip Ackermann"],"href":"https://www.w3.org/TR/2017/NOTE-HTTP-in-RDF10-20170202/","title":"HTTP Vocabulary in RDF 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"IFT":{"authors":["Chris Lilley","Garret Rieger","Myles Maxfield"],"href":"https://www.w3.org/TR/IFT/","title":"Incremental Font Transfer","rawDate":"2023-05-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/IFT/Overview.html","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210907":{"authors":["Chris Lilley","Myles Maxfield","Garret Rieger"],"href":"https://www.w3.org/TR/2021/WD-IFT-20210907/","title":"Incremental Font Transfer","rawDate":"2021-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Chris Lilley","Myles Maxfield","Garret Rieger"],"href":"https://www.w3.org/TR/2022/WD-IFT-20220628/","title":"Incremental Font Transfer","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Chris Lilley","Garret Rieger","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-IFT-20230530/","title":"Incremental Font Transfer","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/IFT","obsoletes":["RangeRequest"]},"IMPLEMENTING-ATAG20":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/IMPLEMENTING-ATAG20/","title":"Implementing ATAG 2.0","rawDate":"2015-09-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20030314":{"status":"WD","rawDate":"2003-03-14","href":"https://www.w3.org/TR/2003/WD-ATAG20-TECHS-20030314/","source":"./data/w3c-specs.txt"},"20041122":{"status":"WD","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/WD-ATAG20-TECHS-20041122/","source":"./data/w3c-specs.txt"},"20070423":{"status":"WD","rawDate":"2007-04-23","href":"https://www.w3.org/TR/2007/WD-ATAG20-TECHS-20070423/","source":"./data/w3c-specs.txt"},"20080310":{"status":"WD","rawDate":"2008-03-10","href":"https://www.w3.org/TR/2008/WD-ATAG20-TECHS-20080310/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-IMPLEMENTING-ATAG20-20091029/","source":"./data/w3c-specs.txt"},"20100708":{"status":"WD","rawDate":"2010-07-08","href":"https://www.w3.org/TR/2010/WD-IMPLEMENTING-ATAG20-20100708/","source":"./data/w3c-specs.txt"},"20110426":{"status":"WD","rawDate":"2011-04-26","href":"https://www.w3.org/TR/2011/WD-IMPLEMENTING-ATAG20-20110426/","source":"./data/w3c-specs.txt"},"20110721":{"status":"WD","rawDate":"2011-07-21","href":"https://www.w3.org/TR/2011/WD-IMPLEMENTING-ATAG20-20110721/","source":"./data/w3c-specs.txt"},"20120410":{"status":"WD","rawDate":"2012-04-10","href":"https://www.w3.org/TR/2012/WD-IMPLEMENTING-ATAG20-20120410/","source":"./data/w3c-specs.txt"},"20121011":{"authors":["Jutta Treviranus","Jan Richards","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2012/WD-IMPLEMENTING-ATAG20-20121011/","title":"Implementing ATAG 2.0","rawDate":"2012-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2013/WD-IMPLEMENTING-ATAG20-20130910/","title":"Implementing ATAG 2.0","rawDate":"2013-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2013/WD-IMPLEMENTING-ATAG20-20131107/","title":"Implementing ATAG 2.0","rawDate":"2013-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150604":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2015/WD-IMPLEMENTING-ATAG20-20150604/","title":"Implementing ATAG 2.0","rawDate":"2015-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2015/WD-IMPLEMENTING-ATAG20-20150721/","title":"Implementing ATAG 2.0","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Jan Richards","Jeanne F Spellman","Jutta Treviranus"],"href":"https://www.w3.org/TR/2015/NOTE-IMPLEMENTING-ATAG20-20150924/","title":"Implementing ATAG 2.0","rawDate":"2015-09-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/AU/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/WAI/AU/IMPLEMENTING-ATAG20/"},"IMPLEMENTING-UAAG20":{"aliasOf":"UAAG20-Reference"},"IPWG-Practices":{"versions":{"19971017":{"status":"NOTE","rawDate":"1997-10-17","href":"https://www.w3.org/TR/NOTE-IPWG-Practices-971017","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-IPWG-Practices","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-10-17","title":"IPWG: Privacy Practices for the Web"},"IndexedDB":{"authors":["Nikunj Mehta","Jonas Sicking","Eliot Graff","Andrei Popescu","Jeremy Orlow","Joshua Bell"],"href":"https://www.w3.org/TR/IndexedDB/","title":"Indexed Database API","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20090929":{"status":"WD","rawDate":"2009-09-29","href":"https://www.w3.org/TR/2009/WD-WebSimpleDB-20090929/","source":"./data/w3c-specs.txt"},"20100105":{"status":"WD","rawDate":"2010-01-05","href":"https://www.w3.org/TR/2010/WD-IndexedDB-20100105/","source":"./data/w3c-specs.txt"},"20100819":{"status":"WD","rawDate":"2010-08-19","href":"https://www.w3.org/TR/2010/WD-IndexedDB-20100819/","source":"./data/w3c-specs.txt"},"20110419":{"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-IndexedDB-20110419/","source":"./data/w3c-specs.txt"},"20111206":{"status":"WD","rawDate":"2011-12-06","href":"https://www.w3.org/TR/2011/WD-IndexedDB-20111206/","source":"./data/w3c-specs.txt"},"20120524":{"status":"WD","rawDate":"2012-05-24","href":"https://www.w3.org/TR/2012/WD-IndexedDB-20120524/","source":"./data/w3c-specs.txt"},"20130516":{"authors":["Nikunj Mehta","Jonas Sicking","Eliot Graff","Andrei Popescu","Jeremy Orlow","Joshua Bell"],"href":"https://www.w3.org/TR/2013/WD-IndexedDB-20130516/","title":"Indexed Database API","rawDate":"2013-05-16","status":"LCWD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130704":{"authors":["Nikunj Mehta","Jonas Sicking","Eliot Graff","Andrei Popescu","Jeremy Orlow","Joshua Bell"],"href":"https://www.w3.org/TR/2013/CR-IndexedDB-20130704/","title":"Indexed Database API","rawDate":"2013-07-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141120":{"authors":["Nikunj Mehta","Jonas Sicking","Eliot Graff","Andrei Popescu","Jeremy Orlow","Joshua Bell"],"href":"https://www.w3.org/TR/2014/PR-IndexedDB-20141120/","title":"Indexed Database API","rawDate":"2014-11-20","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150108":{"authors":["Nikunj Mehta","Jonas Sicking","Eliot Graff","Andrei Popescu","Jeremy Orlow","Joshua Bell"],"href":"https://www.w3.org/TR/2015/REC-IndexedDB-20150108/","title":"Indexed Database API","rawDate":"2015-01-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-01-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/IndexedDB/","repository":"https://github.com/w3c/IndexedDB"},"IndexedDB-2":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/IndexedDB-2/","title":"Indexed Database API 2.0","rawDate":"2018-01-30","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/IndexedDB/","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160818":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2016/WD-IndexedDB-2-20160818/","title":"Indexed Database API 2.0","rawDate":"2016-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161101":{"href":"https://www.w3.org/TR/2016/WD-IndexedDB-2-20161101/","title":"Indexed Database API 2.0","rawDate":"2016-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170313":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2017/WD-IndexedDB-2-20170313/","title":"Indexed Database API 2.0","rawDate":"2017-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170804":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2017/WD-IndexedDB-2-20170804/","title":"Indexed Database API 2.0","rawDate":"2017-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170810":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2017/CR-IndexedDB-2-20170810/","title":"Indexed Database API 2.0","rawDate":"2017-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171116":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2017/PR-IndexedDB-2-20171116/","title":"Indexed Database API 2.0","rawDate":"2017-11-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180130":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2018/REC-IndexedDB-2-20180130/","title":"Indexed Database API 2.0","rawDate":"2018-01-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"hasErrata":"https://github.com/w3c/IndexedDB/labels/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/IndexedDB","hasErrata":"https://github.com/w3c/IndexedDB/labels/errata"},"IndexedDB-3":{"authors":["Joshua Bell"],"href":"https://www.w3.org/TR/IndexedDB-3/","title":"Indexed Database API 3.0","rawDate":"2023-12-12","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/IndexedDB/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210311":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2021/WD-IndexedDB-3-20210311/","title":"Indexed Database API 3.0","rawDate":"2021-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210618":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2021/WD-IndexedDB-3-20210618/","title":"Indexed Database API 3.0","rawDate":"2021-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211006":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2021/WD-IndexedDB-3-20211006/","title":"Indexed Database API 3.0","rawDate":"2021-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2022/WD-IndexedDB-3-20220608/","title":"Indexed Database API 3.0","rawDate":"2022-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220629":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2022/WD-IndexedDB-3-20220629/","title":"Indexed Database API 3.0","rawDate":"2022-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2022/WD-IndexedDB-3-20220706/","title":"Indexed Database API 3.0","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220915":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2022/WD-IndexedDB-3-20220915/","title":"Indexed Database API 3.0","rawDate":"2022-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230210":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230210/","title":"Indexed Database API 3.0","rawDate":"2023-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230303/","title":"Indexed Database API 3.0","rawDate":"2023-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230413/","title":"Indexed Database API 3.0","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230613":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230613/","title":"Indexed Database API 3.0","rawDate":"2023-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230803":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230803/","title":"Indexed Database API 3.0","rawDate":"2023-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230804":{"authors":["Ali Alabbas","Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230804/","title":"Indexed Database API 3.0","rawDate":"2023-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230808":{"authors":["Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20230808/","title":"Indexed Database API 3.0","rawDate":"2023-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231212":{"authors":["Joshua Bell"],"href":"https://www.w3.org/TR/2023/WD-IndexedDB-3-20231212/","title":"Indexed Database API 3.0","rawDate":"2023-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/IndexedDB"},"InkML":{"authors":["Stephen Watt","Tom Underhill"],"href":"https://www.w3.org/TR/InkML/","title":"Ink Markup Language (InkML)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"hasErrata":"https://www.w3.org/2011/06/InkML-errata.html","versions":{"20030806":{"status":"WD","rawDate":"2003-08-06","href":"https://www.w3.org/TR/2003/WD-InkML-20030806","source":"./data/w3c-specs.txt"},"20040223":{"status":"WD","rawDate":"2004-02-23","href":"https://www.w3.org/TR/2004/WD-InkML-20040223","source":"./data/w3c-specs.txt"},"20040928":{"status":"WD","rawDate":"2004-09-28","href":"https://www.w3.org/TR/2004/WD-InkML-20040928","source":"./data/w3c-specs.txt"},"20061023":{"status":"WD","rawDate":"2006-10-23","href":"https://www.w3.org/TR/2006/WD-InkML-20061023","source":"./data/w3c-specs.txt"},"20100527":{"status":"WD","rawDate":"2010-05-27","href":"https://www.w3.org/TR/2010/WD-InkML-20100527/","source":"./data/w3c-specs.txt"},"20110111":{"status":"CR","rawDate":"2011-01-11","href":"https://www.w3.org/TR/2011/CR-InkML-20110111/","source":"./data/w3c-specs.txt"},"20110510":{"status":"PR","rawDate":"2011-05-10","href":"https://www.w3.org/TR/2011/PR-InkML-20110510/","source":"./data/w3c-specs.txt"},"20110920":{"authors":["Stephen Watt","Tom Underhill"],"href":"https://www.w3.org/TR/2011/REC-InkML-20110920/","title":"Ink Markup Language (InkML)","rawDate":"2011-09-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"hasErrata":"https://www.w3.org/2011/06/InkML-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-09-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"MCF-XML":{"versions":{"19970624":{"status":"NOTE","rawDate":"1997-06-24","href":"https://www.w3.org/TR/NOTE-MCF-XML-970624","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-MCF-XML","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-06-24","title":"Meta Content Framework Using XML"},"MathML":{"authors":["Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/REC-MathML/","title":"Mathematical Markup Language (MathML™) 1.01 Specification","rawDate":"2023-03-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/MarkUp/mathml101-updates/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19970515":{"status":"WD","rawDate":"1997-05-15","href":"https://www.w3.org/pub/WWW/TR/WD-math-970515","source":"./data/w3c-specs.txt"},"19970710":{"status":"WD","rawDate":"1997-07-10","href":"https://www.w3.org/TR/WD-math-970710","source":"./data/w3c-specs.txt"},"19980106":{"status":"WD","rawDate":"1998-01-06","href":"https://www.w3.org/TR/WD-math-980106","source":"./data/w3c-specs.txt"},"19980224":{"status":"PR","rawDate":"1998-02-24","href":"https://www.w3.org/TR/1998/PR-math-19980224","source":"./data/w3c-specs.txt"},"19980407":{"authors":["Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/1998/REC-MathML-19980407/","title":"Mathematical Markup Language (MathML) 1.0 Specification","rawDate":"1998-04-07","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/MarkUp/mathml101-updates/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"19990707":{"authors":["Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/1999/07/REC-MathML-19990707/","title":"Mathematical Markup Language (MathML) 1.01 Specification","rawDate":"1999-07-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/MarkUp/mathml101-updates/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/2023/SPSD-MathML-20230307/","title":"Mathematical Markup Language (MathML™) 1.01 Specification","rawDate":"2023-03-07","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"MathML2":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner","Nico Poppelier"],"etAl":true,"href":"https://www.w3.org/TR/MathML2/","title":"Mathematical Markup Language (MathML) Version 2.0 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/2003/06/mathml2e2-errata.html","versions":{"19991201":{"status":"WD","rawDate":"1999-12-01","href":"https://www.w3.org/TR/1999/WD-MathML2-19991201","source":"./data/w3c-specs.txt"},"19991222":{"status":"WD","rawDate":"1999-12-22","href":"https://www.w3.org/TR/1999/WD-MathML2-19991222","source":"./data/w3c-specs.txt"},"20000211":{"status":"WD","rawDate":"2000-02-11","href":"https://www.w3.org/TR/2000/WD-MathML2-20000211/","source":"./data/w3c-specs.txt"},"20000328":{"status":"WD","rawDate":"2000-03-28","href":"https://www.w3.org/TR/2000/WD-MathML2-20000328/","source":"./data/w3c-specs.txt"},"20001113":{"status":"CR","rawDate":"2000-11-13","href":"https://www.w3.org/TR/2000/CR-MathML2-20001113/","source":"./data/w3c-specs.txt"},"20010108":{"status":"PR","rawDate":"2001-01-08","href":"https://www.w3.org/TR/2001/PR-MathML2-20010108","source":"./data/w3c-specs.txt"},"20010221":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner","Nico Poppelier"],"href":"https://www.w3.org/TR/2001/REC-MathML2-20010221/","title":"Mathematical Markup Language (MathML) Version 2.0","rawDate":"2001-02-21","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/2001/02/MathML2-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20021219":{"status":"WD","rawDate":"2002-12-19","href":"https://www.w3.org/TR/2002/WD-MathML2-20021219/","source":"./data/w3c-specs.txt"},"20030411":{"status":"WD","rawDate":"2003-04-11","href":"https://www.w3.org/TR/2003/WD-MathML2-20030411/","source":"./data/w3c-specs.txt"},"20030804":{"status":"PER","rawDate":"2003-08-04","href":"https://www.w3.org/TR/2003/PER-MathML2-20030804/","source":"./data/w3c-specs.txt"},"20031021":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner","Nico Poppelier"],"href":"https://www.w3.org/TR/2003/REC-MathML2-20031021/","title":"Mathematical Markup Language (MathML) Version 2.0 (Second Edition)","rawDate":"2003-10-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/2003/06/mathml2e2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner","Nico Poppelier"],"href":"https://www.w3.org/TR/2023/SPSD-MathML2-20230307/","title":"Mathematical Markup Language (MathML) Version 2.0 (Second Edition)","rawDate":"2023-03-07","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-03-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"MathML3":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/MathML3/","title":"Mathematical Markup Language (MathML) Version 3.0 2nd Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/Math/Documents/mathml3-errata.html","versions":{"20070427":{"status":"WD","rawDate":"2007-04-27","href":"https://www.w3.org/TR/2007/WD-MathML3-20070427/","source":"./data/w3c-specs.txt"},"20071005":{"status":"WD","rawDate":"2007-10-05","href":"https://www.w3.org/TR/2007/WD-MathML3-20071005/","source":"./data/w3c-specs.txt"},"20071214":{"status":"WD","rawDate":"2007-12-14","href":"https://www.w3.org/TR/2007/WD-MathML3-20071214/","source":"./data/w3c-specs.txt"},"20080409":{"status":"WD","rawDate":"2008-04-09","href":"https://www.w3.org/TR/2008/WD-MathML3-20080409/","source":"./data/w3c-specs.txt"},"20081117":{"status":"WD","rawDate":"2008-11-17","href":"https://www.w3.org/TR/2008/WD-MathML3-20081117/","source":"./data/w3c-specs.txt"},"20090604":{"status":"WD","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/WD-MathML3-20090604/","source":"./data/w3c-specs.txt"},"20090924":{"status":"WD","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/WD-MathML3-20090924/","source":"./data/w3c-specs.txt"},"20091215":{"status":"CR","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/CR-MathML3-20091215/","source":"./data/w3c-specs.txt"},"20100610":{"status":"WD","rawDate":"2010-06-10","href":"https://www.w3.org/TR/2010/WD-MathML3-20100610/","source":"./data/w3c-specs.txt"},"20100810":{"status":"PR","rawDate":"2010-08-10","href":"https://www.w3.org/TR/2010/PR-MathML3-20100810/","source":"./data/w3c-specs.txt"},"20101021":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/2010/REC-MathML3-20101021/","title":"Mathematical Markup Language (MathML) Version 3.0","rawDate":"2010-10-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/Math/Documents/mathml3-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/2014/PER-MathML3-20140211/","title":"Mathematical Markup Language (MathML) Version 3.0 2nd Edition","rawDate":"2014-02-11","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140410":{"authors":["David Carlisle","Patrick D F Ion","Robert R Miner"],"href":"https://www.w3.org/TR/2014/REC-MathML3-20140410/","title":"Mathematical Markup Language (MathML) Version 3.0 2nd Edition","rawDate":"2014-04-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-04-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"MediaAccessEvents":{"authors":["Ola Andersson","Jean-Claude Dufourd"],"href":"https://www.w3.org/TR/MediaAccessEvents/","title":"Media Access Events","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20061013":{"authors":["Ola Andersson","Jean-Claude Dufourd"],"href":"https://www.w3.org/TR/2006/WD-MediaAccessEvents-20061013/","title":"Media Access Events","rawDate":"2006-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190328":{"authors":["Ola Andersson","Jean-Claude Dufourd"],"href":"https://www.w3.org/TR/2019/NOTE-MediaAccessEvents-20190328/","title":"Media Access Events","rawDate":"2019-03-28","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2019-03-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"Micropayment-Markup":{"authors":["Thierry Michel"],"href":"https://www.w3.org/TR/Micropayment-Markup/","title":"Common Markup for micropayment per-fee-links","rawDate":"1999-08-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/community/webpayments/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990825":{"authors":["Thierry Michel"],"href":"https://www.w3.org/TR/1999/WD-Micropayment-Markup-19990825/","title":"Common Markup for micropayment per-fee-links","rawDate":"1999-08-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/community/webpayments/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"NOTE-CCPP":{"authors":["Franklin Reynolds","Johan Hjelm","Spencer Dawkins","Sandeep Singhal"],"etAl":true,"href":"https://www.w3.org/TR/NOTE-CCPP/","title":"Composite Capability/Preference Profiles (CC/PP): A user side framework for content negotiation","status":"NOTE","publisher":"W3C","versions":{"19990727":{"authors":["Franklin Reynolds","Johan Hjelm","Spencer Dawkins","Sandeep Singhal"],"href":"https://www.w3.org/1999/07/NOTE-CCPP-19990727/","title":"Composite Capability/Preference Profiles (CC/PP): A user side framework for content negotiation","rawDate":"1999-07-27","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-07-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"NOTE-XSL":{"aliasOf":"xsl"},"NOTE-cgm":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/NOTE-cgm","title":"Use of CGM as a Scalable Graphics Format","rawDate":"1997-06-18","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19970618":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/NOTE-cgm-970618","title":"Use of CGM as a Scalable Graphics Format","rawDate":"1997-06-18","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"NOTE-ice":{"versions":{"19981026":{"status":"NOTE","rawDate":"1998-10-26","href":"https://www.w3.org/TR/1998/NOTE-ice-19981026","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-ice","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-10-26","title":"The Information and Content Exchange (ICE) Format and Protocol"},"NOTE-imagemap":{"authors":["Ian Graham"],"href":"https://www.w3.org/TR/NOTE-imagemap","title":"Imagemapped Images and Image-Incapable User Agents","rawDate":"1996-11-27","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19961127":{"aliasOf":"NOTE-imagemap"}}},"NOTE-sgml-xml":{"authors":["James Clark"],"href":"https://www.w3.org/TR/NOTE-sgml-xml","title":"Comparison of SGML and XML","rawDate":"1997-12-15","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971215":{"authors":["James Clark"],"href":"https://www.w3.org/TR/NOTE-sgml-xml-971215","title":"Comparison of SGML and XML","rawDate":"1997-12-15","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"NVML":{"versions":{"19990806":{"status":"NOTE","rawDate":"1999-08-06","href":"https://www.w3.org/TR/1999/NOTE-NVML-19990806","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NVML","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-08-06","title":"NaVigation Markup Language (NVML)"},"P3P":{"authors":["Massimo Marchiori"],"href":"https://www.w3.org/TR/P3P/","title":"The Platform for Privacy Preferences 1.0 (P3P1.0) Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"hasErrata":"https://www.w3.org/2002/04/P3Pv1-errata","versions":{"19980519":{"status":"WD","rawDate":"1998-05-19","href":"https://www.w3.org/TR/1998/WD-P3P10-syntax-19980519.html","source":"./data/w3c-specs.txt"},"19980702":{"status":"WD","rawDate":"1998-07-02","href":"https://www.w3.org/TR/1998/WD-P3P10-syntax-19980702","source":"./data/w3c-specs.txt"},"19981109":{"status":"WD","rawDate":"1998-11-09","href":"https://www.w3.org/TR/1998/WD-P3P-19981109/","source":"./data/w3c-specs.txt"},"19990407":{"status":"WD","rawDate":"1999-04-07","href":"https://www.w3.org/TR/1999/WD-P3P-19990407","source":"./data/w3c-specs.txt"},"19990826":{"status":"WD","rawDate":"1999-08-26","href":"https://www.w3.org/TR/1999/WD-P3P-19990826/","source":"./data/w3c-specs.txt"},"19991102":{"status":"WD","rawDate":"1999-11-02","href":"https://www.w3.org/TR/1999/WD-P3P-19991102","source":"./data/w3c-specs.txt"},"20000211":{"status":"WD","rawDate":"2000-02-11","href":"https://www.w3.org/TR/2000/WD-P3P-20000211","source":"./data/w3c-specs.txt"},"20000404":{"status":"WD","rawDate":"2000-04-04","href":"https://www.w3.org/TR/2000/WD-P3P-20000404","source":"./data/w3c-specs.txt"},"20000424":{"status":"WD","rawDate":"2000-04-24","href":"https://www.w3.org/TR/2000/WD-P3P-20000424","source":"./data/w3c-specs.txt"},"20000510":{"status":"WD","rawDate":"2000-05-10","href":"https://www.w3.org/TR/2000/WD-P3P-20000510/","source":"./data/w3c-specs.txt"},"20000915":{"status":"WD","rawDate":"2000-09-15","href":"https://www.w3.org/TR/2000/WD-P3P-20000915/","source":"./data/w3c-specs.txt"},"20001018":{"status":"WD","rawDate":"2000-10-18","href":"https://www.w3.org/TR/2000/WD-P3P-20001018/","source":"./data/w3c-specs.txt"},"20001215":{"status":"CR","rawDate":"2000-12-15","href":"https://www.w3.org/TR/2000/CR-P3P-20001215/","source":"./data/w3c-specs.txt"},"20010924":{"status":"WD","rawDate":"2001-09-24","href":"https://www.w3.org/TR/2001/WD-P3P-20010924/","source":"./data/w3c-specs.txt"},"20010928":{"status":"WD","rawDate":"2001-09-28","href":"https://www.w3.org/TR/2001/WD-P3P-20010928/","source":"./data/w3c-specs.txt"},"20020128":{"status":"PR","rawDate":"2002-01-28","href":"https://www.w3.org/TR/2002/PR-P3P-20020128/","source":"./data/w3c-specs.txt"},"20020416":{"authors":["Massimo Marchiori"],"href":"https://www.w3.org/TR/2002/REC-P3P-20020416/","title":"The Platform for Privacy Preferences 1.0 (P3P1.0) Specification","rawDate":"2002-04-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"hasErrata":"https://www.w3.org/2002/04/P3Pv1-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180830":{"authors":["Massimo Marchiori"],"href":"https://www.w3.org/TR/2018/OBSL-P3P-20180830/","title":"The Platform for Privacy Preferences 1.0 (P3P1.0) Specification","rawDate":"2018-08-30","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-08-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletes":["xmldsig-p3p-profile"]},"P3P-CACM":{"versions":{"19981106":{"status":"NOTE","rawDate":"1998-11-06","href":"https://www.w3.org/TR/1998/NOTE-P3P-CACM-19981106","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-P3P-CACM","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-11-06","title":"CACM Platform for Privacy Preferences"},"P3P-analysis":{"versions":{"19991027":{"status":"NOTE","rawDate":"1999-10-27","href":"https://www.w3.org/TR/1999/NOTE-P3P-analysis-19991027","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/P3P-analysis","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-10-27","title":"Analysis of P3P and US Patent 5,862,325"},"P3P-arch":{"authors":["Joseph Reagle","Martin PreslerMarshall","Melissa W Dunn","Philip DesAutels","Lorrie Cranor","Mark Ackerman"],"href":"https://www.w3.org/TR/WD-P3P-arch","title":"P3P Architecture Working Group: General Overview of the P3P Architecture","rawDate":"1997-10-22","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971022":{"authors":["Joseph Reagle","Martin PreslerMarshall","Melissa W Dunn","Philip DesAutels","Lorrie Cranor","Mark Ackerman"],"href":"https://www.w3.org/TR/WD-P3P-arch-971022","title":"P3P Architecture Working Group: General Overview of the P3P Architecture","rawDate":"1997-10-22","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"P3P-for-ecommerce":{"versions":{"19991129":{"status":"NOTE","rawDate":"1999-11-29","href":"https://www.w3.org/TR/1999/NOTE-P3P-for-ecommerce-19991129","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/P3P-for-ecommerce","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-11-29","title":"Using P3P for E-Commerce"},"P3P-grammar":{"authors":["Mark Ackerman","Lorrie Cranor","Philip DesAutels","Melissa W Dunn","Joseph Reagle"],"href":"https://www.w3.org/TR/WD-P3P-grammar","title":"P3P Vocabulary Working Group: Grammatical Model and Data Design Model","rawDate":"1997-10-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971014":{"authors":["Mark Ackerman","Lorrie Cranor","Philip DesAutels","Melissa W Dunn","Joseph Reagle"],"href":"https://www.w3.org/TR/WD-P3P-grammar-971014","title":"P3P Vocabulary Working Group: Grammatical Model and Data Design Model","rawDate":"1997-10-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"P3P-preferences":{"authors":["Marc Langheinrich"],"href":"https://www.w3.org/TR/P3P-preferences/","title":"A P3P Preference Exchange Language 1.0 (APPEL1.0)","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"versions":{"19980814":{"status":"WD","rawDate":"1998-08-14","href":"https://www.w3.org/TR/1998/WD-P3P-preferences-19980814","source":"./data/w3c-specs.txt"},"20000420":{"status":"WD","rawDate":"2000-04-20","href":"https://www.w3.org/TR/2000/WD-P3P-preferences-20000420","source":"./data/w3c-specs.txt"},"20010226":{"status":"WD","rawDate":"2001-02-26","href":"https://www.w3.org/TR/2001/WD-P3P-preferences-20010226","source":"./data/w3c-specs.txt"},"20020415":{"authors":["Marc Langheinrich"],"href":"https://www.w3.org/TR/2002/WD-P3P-preferences-20020415/","title":"A P3P Preference Exchange Language 1.0 (APPEL1.0)","rawDate":"2002-04-15","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-04-15","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"P3P10-Protocols":{"authors":["Philip DesAutels","Steven Lucas","Joseph Reagle"],"href":"https://www.w3.org/TR/1998/NOTE-P3P10-Protocols","title":"P3P Protocol and Data Transport Working Group Draft White Paper","rawDate":"1998-03-24","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980324":{"authors":["Philip DesAutels","Steven Lucas","Joseph Reagle"],"href":"https://www.w3.org/TR/1998/NOTE-P3P10-Protocols-19980324","title":"P3P Protocol and Data Transport Working Group Draft White Paper","rawDate":"1998-03-24","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"P3P10-principles":{"authors":["Lorrie Faith Cranor"],"href":"https://www.w3.org/TR/NOTE-P3P10-principles","title":"P3P Guiding Principles","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"versions":{"19980721":{"authors":["Lorrie Faith Cranor"],"href":"https://www.w3.org/TR/1998/NOTE-P3P10-principles-19980721","title":"P3P Guiding Principles","rawDate":"1998-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180830":{"href":"https://www.w3.org/TR/2018/NOTE-P3P10-principles-20180830/","title":"P3P Guiding Principles","rawDate":"2018-08-30","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-08-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"P3P11":{"authors":["Rigo Wenning","Matthias Schunter"],"href":"https://www.w3.org/TR/P3P11/","title":"The Platform for Privacy Preferences 1.1 (P3P1.1) Specification","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"versions":{"20040210":{"status":"WD","rawDate":"2004-02-10","href":"https://www.w3.org/TR/2004/WD-P3P11-20040210/","source":"./data/w3c-specs.txt"},"20040427":{"status":"WD","rawDate":"2004-04-27","href":"https://www.w3.org/TR/2004/WD-P3P11-20040427","source":"./data/w3c-specs.txt"},"20040720":{"status":"WD","rawDate":"2004-07-20","href":"https://www.w3.org/TR/2004/WD-P3P11-20040720/","source":"./data/w3c-specs.txt"},"20050104":{"status":"WD","rawDate":"2005-01-04","href":"https://www.w3.org/TR/2005/WD-P3P11-20050104/","source":"./data/w3c-specs.txt"},"20050701":{"status":"WD","rawDate":"2005-07-01","href":"https://www.w3.org/TR/2005/WD-P3P11-20050701/","source":"./data/w3c-specs.txt"},"20060210":{"status":"WD","rawDate":"2006-02-10","href":"https://www.w3.org/TR/2006/WD-P3P11-20060210/","source":"./data/w3c-specs.txt"},"20061113":{"authors":["Rigo Wenning","Matthias Schunter"],"href":"https://www.w3.org/TR/2006/NOTE-P3P11-20061113/","title":"The Platform for Privacy Preferences 1.1 (P3P1.1) Specification","rawDate":"2006-11-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180830":{"authors":["Rigo Wenning","Matthias Schunter"],"href":"https://www.w3.org/TR/2018/NOTE-P3P11-20180830/","title":"The Platform for Privacy Preferences 1.1 (P3P1.1) Specification","rawDate":"2018-08-30","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-08-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"PFE-evaluation":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/PFE-evaluation/","title":"Progressive Font Enrichment: Evaluation Report","rawDate":"2020-10-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/PFE-analysis/report/evaluation-report.html","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201015":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2020/NOTE-PFE-evaluation-20201015/","title":"Progressive Font Enrichment: Evaluation Report","rawDate":"2020-10-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/PFE-analysis"},"PICS-Cookie-extension":{"versions":{"19971023":{"status":"NOTE","rawDate":"1997-10-23","href":"https://www.w3.org/TR/NOTE-PICS-cookie-extension-971023.HTML","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-PICS-Cookie-extension","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-10-23","title":"NOTE-PICS-cookie-extension-971023"},"PICS-Statement":{"versions":{"19980601":{"status":"NOTE","rawDate":"1998-06-01","href":"https://www.w3.org/TR/1998/NOTE-PICS-Statement-19980601","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-PICS-Statement","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-06-01","title":"NOTE-PICS-Statement-980601.html"},"PICS-labels":{"authors":["Tim Krauskopf","Jim Miller","Paul Resnick","Win Treese"],"href":"https://www.w3.org/TR/REC-PICS-labels/","title":"PICS 1.1 Label Distribution -- Label Syntax and Communication Protocols","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19961031":{"authors":["Tim Krauskopf","Jim Miller","Paul Resnick","Win Treese"],"href":"https://www.w3.org/TR/REC-PICS-labels-961031","title":"PICS 1.1 Label Distribution -- Label Syntax and Communication Protocols","rawDate":"1996-10-31","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20091124":{"authors":["Tim Krauskopf","Jim Miller","Paul Resnick","Win Treese"],"href":"https://www.w3.org/TR/2009/REC-PICS-labels-20091124/","title":"PICS 1.1 Label Distribution -- Label Syntax and Communication Protocols","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"PICS-services":{"authors":["Jim Miller","Paul Resnick","David Singer"],"href":"https://www.w3.org/TR/REC-PICS-services/","title":"PICS 1.1 Rating Services and Rating Systems -- and Their Machine Readable Descriptions","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19961031":{"authors":["Jim Miller","Paul Resnick","David Singer"],"href":"https://www.w3.org/TR/REC-PICS-services-961031","title":"PICS 1.1 Rating Services and Rating Systems -- and Their Machine Readable Descriptions","rawDate":"1996-10-31","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20091124":{"authors":["Jim Miller","Paul Resnick","David Singer"],"href":"https://www.w3.org/TR/2009/REC-PICS-services-20091124/","title":"PICS 1.1 Rating Services and Rating Systems -- and Their Machine Readable Descriptions","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"PICSRules":{"authors":["Christopher Evans","Alex Hopmann","Martin PreslerMarshall","Paul Resnick"],"href":"https://www.w3.org/TR/REC-PICSRules/","title":"PICSRules 1.1 Specification","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971222":{"href":"https://www.w3.org/TR/REC-PICSRules-971222","title":"PICSRules 1.1 Specification","rawDate":"1997-12-22","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"19971229":{"authors":["Christopher Evans","Alex Hopmann","Martin PreslerMarshall","Paul Resnick"],"href":"https://www.w3.org/TR/REC-PICSRules-971229","title":"PICSRules 1.1 Specification","rawDate":"1997-12-29","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20091124":{"authors":["Christopher Evans","Alex Hopmann","Martin PreslerMarshall","Paul Resnick"],"href":"https://www.w3.org/TR/2009/REC-PICSRules-20091124/","title":"PICSRules 1.1 Specification","rawDate":"2009-11-24","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"PIDL":{"versions":{"19990209":{"status":"NOTE","rawDate":"1999-02-09","href":"https://www.w3.org/TR/1999/NOTE-PIDL-19990209","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-PIDL","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-02-09","title":"PIDL - Personalized Information Description Language"},"PNG":{"aliasOf":"png-3"},"PNG-1":{"authors":["Tom Lane"],"href":"https://www.w3.org/TR/PNG/","title":"Portable Network Graphics (PNG) Specification (Second Edition)","rawDate":"2003-11-10","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/PNG-spec/","hasErrata":"https://www.w3.org/2003/11/REC-PNG-20031110-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19961001":{"authors":["Tom Lane"],"href":"https://www.w3.org/TR/REC-png-961001","title":"PNG (Portable Network Graphics) Specification","rawDate":"1996-10-01","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20030520":{"status":"PR","rawDate":"2003-05-20","href":"https://www.w3.org/TR/2003/PR-PNG-20030520/","source":"./data/w3c-specs.txt"},"20031110":{"authors":["David Duce"],"href":"https://www.w3.org/TR/2003/REC-PNG-20031110/","title":"Portable Network Graphics (PNG) Specification (Second Edition)","rawDate":"2003-11-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2003/11/REC-PNG-20031110-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/PNG-spec"},"PNG-19961001":{"aliasOf":"PNG-1-19961001"},"PNG-20030520":{"aliasOf":"PNG-1-20030520"},"PNG-20031110":{"aliasOf":"PNG-1-20031110"},"PR-rdf-syntax":{"aliasOf":"rdf-syntax-grammar"},"Pointers-in-RDF":{"aliasOf":"Pointers-in-RDF10"},"Pointers-in-RDF10":{"authors":["Carlos Iglesias"],"href":"https://www.w3.org/TR/Pointers-in-RDF10/","title":"Pointer Methods in RDF 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090310":{"status":"WD","rawDate":"2009-03-10","href":"https://www.w3.org/TR/2009/WD-Pointers-in-RDF-20090310","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-Pointers-in-RDF10-20091029/","source":"./data/w3c-specs.txt"},"20110510":{"authors":["Carlos Iglesias"],"href":"https://www.w3.org/TR/2011/WD-Pointers-in-RDF10-20110510/","title":"Pointer Methods in RDF 1.0","rawDate":"2011-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Carlos Iglesias"],"href":"https://www.w3.org/TR/2017/NOTE-Pointers-in-RDF10-20170202/","title":"Pointer Methods in RDF 1.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"REC-CSS1":{"aliasOf":"CSS1"},"REC-CSS2":{"aliasOf":"CSS21"},"REC-xml":{"aliasOf":"xml"},"REC-xml-names":{"aliasOf":"xml-names"},"RangeRequest":{"authors":["Chris Lilley","Garret Rieger","Myles Maxfield"],"href":"https://www.w3.org/TR/RangeRequest/","title":"Range Request Incremental Font Transfer","rawDate":"2023-05-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/IFT/RangeRequest.html","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220125":{"authors":["Chris Lilley","Myles Maxfield","Garret Rieger"],"href":"https://www.w3.org/TR/2022/WD-RangeRequest-20220125/","title":"Incremental Font Transfer via Range Request","rawDate":"2022-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Chris Lilley","Garret Rieger","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-RangeRequest-20230530/","title":"Range Request Incremental Font Transfer","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/IFT","obsoletedBy":["IFT"]},"S6Group2":{"authors":["Stu Weibel"],"href":"https://www.w3.org/Search/9605-Indexing-Workshop/ReportOutcomes/S6Group2","title":"A Proposed Convention for Embedding Metadata in HTML","rawDate":"1996-06-02","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19960602":{"aliasOf":"S6Group2"}}},"SAC":{"versions":{"20000728":{"status":"NOTE","rawDate":"2000-07-28","href":"https://www.w3.org/TR/2000/NOTE-SAC-20000728","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SAC/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-07-28","title":"SAC: Simple API for CSS"},"SDML":{"versions":{"19980619":{"status":"NOTE","rawDate":"1998-06-19","href":"https://www.w3.org/TR/1998/NOTE-SDML-19980619","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-SDML","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-06-19","title":"SDML - Signed Document Markup Language - Version 2.0"},"SMIL":{"authors":["Philipp Hoschka"],"href":"https://www.w3.org/TR/SMIL/","title":"Synchronized Multimedia Integration Language (SMIL 2.0) - [Second Edition]","rawDate":"2005-01-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/AudioVideo/SMIL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971109":{"status":"WD","rawDate":"1997-11-09","href":"https://www.w3.org/TR/WD-smil-971109","source":"./data/w3c-specs.txt"},"19980202":{"status":"WD","rawDate":"1998-02-02","href":"https://www.w3.org/TR/1998/WD-smil-0202","source":"./data/w3c-specs.txt"},"19980409":{"status":"PR","rawDate":"1998-04-09","href":"https://www.w3.org/TR/1998/PR-smil-19980409","source":"./data/w3c-specs.txt"},"19980615":{"authors":["Philipp Hoschka"],"href":"https://www.w3.org/TR/1998/REC-smil-19980615/","title":"Synchronized Multimedia Integration Language (SMIL) 1.0 Specification","rawDate":"1998-06-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/AudioVideo/SMIL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20050107":{"authors":["Thierry Michel","Jeffrey Ayars"],"href":"https://www.w3.org/TR/2005/REC-SMIL2-20050107/","title":"Synchronized Multimedia Integration Language (SMIL 2.0) - [Second Edition]","rawDate":"2005-01-07","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2004/06/EditedREC-SMIL20-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"0202":{"aliasOf":"SMIL-19980202"}}},"SMIL-access":{"versions":{"19990921":{"status":"NOTE","rawDate":"1999-09-21","href":"https://www.w3.org/TR/1999/NOTE-SMIL-access-19990921","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SMIL-access","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-09-21","title":"Accessibility Features of SMIL"},"SMIL2":{"authors":["Jeffrey Ayars","Thierry Michel"],"etAl":true,"href":"https://www.w3.org/TR/SMIL2/","title":"Synchronized Multimedia Integration Language (SMIL 2.1)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"versions":{"20041105":{"status":"PER","rawDate":"2004-11-05","href":"https://www.w3.org/TR/2004/PER-SMIL2-20041105/","source":"./data/w3c-specs.txt"},"20050107":{"aliasOf":"SMIL2"},"20050201":{"status":"WD","rawDate":"2005-02-01","href":"https://www.w3.org/TR/2005/WD-SMIL2-20050201/","source":"./data/w3c-specs.txt"},"20050513":{"status":"CR","rawDate":"2005-05-13","href":"https://www.w3.org/TR/2005/CR-SMIL2-20050513/","source":"./data/w3c-specs.txt"},"20050927":{"status":"PR","rawDate":"2005-09-27","href":"https://www.w3.org/TR/2005/PR-SMIL2-20050927/","source":"./data/w3c-specs.txt"},"20051213":{"authors":["Thierry Michel","Guido Grassel","Antti Koivisto","Nabil Layaida","Jack Jansen","Sjoerd Mullender","Daniel Zucker","Dick Bulterman"],"href":"https://www.w3.org/TR/2005/REC-SMIL2-20051213/","title":"Synchronized Multimedia Integration Language (SMIL 2.1)","rawDate":"2005-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/2004/06/EditedREC-SMIL20-errata","obsoletes":["smil20"]},"SMIL2-AuthExt":{"versions":{"20030512":{"status":"NOTE","rawDate":"2003-05-12","href":"https://www.w3.org//TR/2003/NOTE-SMIL2-AuthExt-20030512/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SMIL2-AuthExt/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2003-05-12","title":"SMIL 2.0 Extension for Professional Multimedia Authoring - Preliminary Investigation"},"SMIL3":{"authors":["Dick Bulterman"],"href":"https://www.w3.org/TR/SMIL3/","title":"Synchronized Multimedia Integration Language (SMIL 3.0)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/2008/11/REC-smil30-errata.html","versions":{"20061220":{"status":"WD","rawDate":"2006-12-20","href":"https://www.w3.org/TR/2006/WD-SMIL3-20061220/","source":"./data/w3c-specs.txt"},"20070713":{"status":"WD","rawDate":"2007-07-13","href":"https://www.w3.org/TR/2007/WD-SMIL3-20070713/","source":"./data/w3c-specs.txt"},"20080115":{"status":"CR","rawDate":"2008-01-15","href":"https://www.w3.org/TR/2008/CR-SMIL3-20080115/","source":"./data/w3c-specs.txt"},"20081006":{"status":"PR","rawDate":"2008-10-06","href":"https://www.w3.org/TR/2008/PR-SMIL3-20081006/","source":"./data/w3c-specs.txt"},"20081201":{"authors":["Dick Bulterman"],"href":"https://www.w3.org/TR/2008/REC-SMIL3-20081201/","title":"Synchronized Multimedia Integration Language (SMIL 3.0)","rawDate":"2008-12-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/2008/11/REC-smil30-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SOAP":{"versions":{"20000508":{"status":"NOTE","rawDate":"2000-05-08","href":"https://www.w3.org/TR/2000/NOTE-SOAP-20000508","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SOAP/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-05-08","title":"SOAP Specifications"},"SOAP-attachments":{"versions":{"20001211":{"status":"NOTE","rawDate":"2000-12-11","href":"https://www.w3.org/TR/2000/NOTE-SOAP-attachments-20001211","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SOAP-attachments","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-12-11","title":"SOAP Messages with Attachments"},"SOAP-dsig":{"versions":{"20010206":{"status":"NOTE","rawDate":"2001-02-06","href":"https://www.w3.org/TR/2001/NOTE-SOAP-dsig-20010206","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SOAP-dsig/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-02-06","title":"SOAP Security Extensions: Digital Signature"},"SOX":{"versions":{"19990730":{"status":"NOTE","rawDate":"1999-07-30","href":"https://www.w3.org/1999/07/NOTE-SOX-19990730","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-SOX","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-07-30","title":"Schema for Object-Oriented XML"},"SRI":{"authors":["Devdatta Akhawe","Frederik Braun","Francois Marier","Joel Weinberger"],"href":"https://www.w3.org/TR/SRI/","title":"Subresource Integrity","rawDate":"2016-06-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140318":{"authors":["Frederik Braun","Devdatta Akhawe","Joel Weinberger","Mike West"],"href":"https://www.w3.org/TR/2014/WD-SRI-20140318/","title":"Subresource Integrity","rawDate":"2014-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150409":{"authors":["Frederik Braun"],"href":"https://www.w3.org/TR/2015/WD-SRI-20150409/","title":"Subresource Integrity","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150505":{"authors":["Frederik Braun"],"href":"https://www.w3.org/TR/2015/WD-SRI-20150505/","title":"Subresource Integrity","rawDate":"2015-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150707":{"authors":["Frederik Braun"],"href":"https://www.w3.org/TR/2015/WD-SRI-20150707/","title":"Subresource Integrity","rawDate":"2015-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Frederik Braun"],"href":"https://www.w3.org/TR/2015/WD-SRI-20150916/","title":"Subresource Integrity","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151006":{"authors":["Frederik Braun"],"href":"https://www.w3.org/TR/2015/WD-SRI-20151006/","title":"Subresource Integrity","rawDate":"2015-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151112":{"authors":["Devdatta Akhawe","Frederik Braun","Francois Marier","Joel Weinberger"],"href":"https://www.w3.org/TR/2015/CR-SRI-20151112/","title":"Subresource Integrity","rawDate":"2015-11-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160510":{"authors":["Devdatta Akhawe","Frederik Braun","Francois Marier","Joel Weinberger"],"href":"https://www.w3.org/TR/2016/PR-SRI-20160510/","title":"Subresource Integrity","rawDate":"2016-05-10","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160623":{"authors":["Devdatta Akhawe","Frederik Braun","Francois Marier","Joel Weinberger"],"href":"https://www.w3.org/TR/2016/REC-SRI-20160623/","title":"Subresource Integrity","rawDate":"2016-06-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"hasErrata":"https://www.w3.org/2016/SRI-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/webappsec-subresource-integrity/","hasErrata":"https://www.w3.org/2016/SRI-errata.html","repository":"https://github.com/w3c/webappsec-subresource-integrity"},"SRML":{"versions":{"20021218":{"status":"NOTE","rawDate":"2002-12-18","href":"https://www.w3.org/TR/2002/NOTE-SRML-20021218","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SRML","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-12-18","title":"SRML - Simulation Reference Markup Language"},"STTS3":{"versions":{"19981111":{"status":"NOTE","rawDate":"1998-11-11","href":"https://www.w3.org/TR/1998/NOTE-STTS3-19981111","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-STTS3","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-11-11","title":"STSS 3"},"SVG":{"authors":["Jon Ferraiolo"],"href":"https://www.w3.org/TR/SVG/","title":"Scalable Vector Graphics (SVG) 1.0 Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2001/09/REC-SVG-20010904-errata","versions":{"19990211":{"status":"WD","rawDate":"1999-02-11","href":"https://www.w3.org/TR/1999/WD-SVG-19990211/","source":"./data/w3c-specs.txt"},"19990412":{"status":"WD","rawDate":"1999-04-12","href":"https://www.w3.org/TR/1999/WD-SVG-19990412/","source":"./data/w3c-specs.txt"},"19990625":{"status":"WD","rawDate":"1999-06-25","href":"https://www.w3.org/1999/06/25/WD-SVG-19990625/","source":"./data/w3c-specs.txt"},"19990706":{"status":"WD","rawDate":"1999-07-06","href":"https://www.w3.org/1999/07/06/WD-SVG-19990706/","source":"./data/w3c-specs.txt"},"19990730":{"status":"WD","rawDate":"1999-07-30","href":"https://www.w3.org/1999/07/30/WD-SVG-19990730/","source":"./data/w3c-specs.txt"},"19990812":{"status":"WD","rawDate":"1999-08-12","href":"https://www.w3.org/1999/08/WD-SVG-19990812","source":"./data/w3c-specs.txt"},"19991203":{"status":"WD","rawDate":"1999-12-03","href":"https://www.w3.org/TR/1999/WD-SVG-19991203/","source":"./data/w3c-specs.txt"},"20000303":{"status":"WD","rawDate":"2000-03-03","href":"https://www.w3.org/TR/2000/03/WD-SVG-20000303/","source":"./data/w3c-specs.txt"},"20000629":{"status":"WD","rawDate":"2000-06-29","href":"https://www.w3.org/TR/2000/WD-SVG-20000629/","source":"./data/w3c-specs.txt"},"20000802":{"status":"CR","rawDate":"2000-08-02","href":"https://www.w3.org/TR/2000/CR-SVG-20000802/","source":"./data/w3c-specs.txt"},"20001102":{"status":"CR","rawDate":"2000-11-02","href":"https://www.w3.org/TR/2000/CR-SVG-20001102/","source":"./data/w3c-specs.txt"},"20010719":{"status":"PR","rawDate":"2001-07-19","href":"https://www.w3.org/TR/2001/PR-SVG-20010719/","source":"./data/w3c-specs.txt"},"20010904":{"authors":["Jon Ferraiolo"],"href":"https://www.w3.org/TR/2001/REC-SVG-20010904/","title":"Scalable Vector Graphics (SVG) 1.0 Specification","rawDate":"2001-09-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2001/09/REC-SVG-20010904-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-09-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["SVG11"]},"SVG-Transforms":{"authors":["Jun Fujisawa","Anthony Grasso"],"href":"https://www.w3.org/TR/SVG-Transforms/","title":"SVG Transforms 1.0, Part 2: Language","rawDate":"2009-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090320":{"authors":["Jun Fujisawa","Anthony Grasso"],"href":"https://www.w3.org/TR/2009/WD-SVG-Transforms-20090320/","title":"SVG Transforms 1.0, Part 2: Language","rawDate":"2009-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"SVG-access":{"versions":{"20000807":{"status":"NOTE","rawDate":"2000-08-07","href":"https://www.w3.org/TR/2000/NOTE-SVG-access-20000807","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/SVG-access/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-08-07","title":"Accessibility Features of SVG"},"SVG11":{"authors":["Erik Dahlström","Patrick Dengler","Anthony Grasso","Chris Lilley","Cameron McCormack","Doug Schepers","Jonathan Watt","Jon Ferraiolo","Jun Fujisawa","Dean Jackson"],"etAl":true,"href":"https://www.w3.org/TR/SVG11/","title":"Scalable Vector Graphics (SVG) 1.1 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2011/08/REC-SVG11-20110816-errata","versions":{"20011030":{"status":"WD","rawDate":"2001-10-30","href":"https://www.w3.org/TR/2001/WD-SVG11-20011030/","source":"./data/w3c-specs.txt"},"20020108":{"status":"WD","rawDate":"2002-01-08","href":"https://www.w3.org/TR/2002/WD-SVG11-20020108/","source":"./data/w3c-specs.txt"},"20020215":{"status":"WD","rawDate":"2002-02-15","href":"https://www.w3.org/TR/2002/WD-SVG11-20020215/","source":"./data/w3c-specs.txt"},"20020430":{"status":"CR","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/CR-SVG11-20020430/","source":"./data/w3c-specs.txt"},"20021115":{"status":"PR","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/PR-SVG11-20021115/","source":"./data/w3c-specs.txt"},"20030114":{"authors":["Jon Ferraiolo","Jun Fujisawa","Dean Jackson"],"href":"https://www.w3.org/TR/2003/REC-SVG11-20030114/","title":"Scalable Vector Graphics (SVG) 1.1 Specification","rawDate":"2003-01-14","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2003/01/REC-SVG11-20030114-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20100622":{"status":"WD","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/WD-SVG11-20100622/","source":"./data/w3c-specs.txt"},"20110512":{"status":"WD","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/WD-SVG11-20110512/","source":"./data/w3c-specs.txt"},"20110609":{"status":"PR","rawDate":"2011-06-09","href":"https://www.w3.org/TR/2011/PR-SVG11-20110609/","source":"./data/w3c-specs.txt"},"20110816":{"authors":["Erik Dahlström","Patrick Dengler","Anthony Grasso","Chris Lilley","Cameron McCormack","Doug Schepers","Jonathan Watt","Jon Ferraiolo","Jun Fujisawa","Dean Jackson"],"href":"https://www.w3.org/TR/2011/REC-SVG11-20110816/","title":"Scalable Vector Graphics (SVG) 1.1 (Second Edition)","rawDate":"2011-08-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2011/08/REC-SVG11-20110816-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-08-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["SVG"]},"SVG12":{"authors":["Dean Jackson","Craig Northway"],"href":"https://www.w3.org/TR/SVG12/","title":"Scalable Vector Graphics (SVG) Full 1.2 Specification","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-SVG12-20021115/","source":"./data/w3c-specs.txt"},"20030429":{"status":"WD","rawDate":"2003-04-29","href":"https://www.w3.org/TR/2003/WD-SVG12-20030429/","source":"./data/w3c-specs.txt"},"20030715":{"status":"WD","rawDate":"2003-07-15","href":"https://www.w3.org/TR/2003/WD-SVG12-20030715/","source":"./data/w3c-specs.txt"},"20031113":{"status":"WD","rawDate":"2003-11-13","href":"https://www.w3.org/TR/2003/WD-SVG12-20031113/","source":"./data/w3c-specs.txt"},"20040226":{"status":"WD","rawDate":"2004-02-26","href":"https://www.w3.org/TR/2004/WD-SVG12-20040226/","source":"./data/w3c-specs.txt"},"20040318":{"status":"WD","rawDate":"2004-03-18","href":"https://www.w3.org/TR/2004/WD-SVG12-20040318/","source":"./data/w3c-specs.txt"},"20040510":{"status":"WD","rawDate":"2004-05-10","href":"https://www.w3.org/TR/2004/WD-SVG12-20040510/","source":"./data/w3c-specs.txt"},"20041027":{"status":"WD","rawDate":"2004-10-27","href":"https://www.w3.org/TR/2004/WD-SVG12-20041027/","source":"./data/w3c-specs.txt"},"20050413":{"authors":["Dean Jackson","Craig Northway"],"href":"https://www.w3.org/TR/2005/WD-SVG12-20050413/","title":"Scalable Vector Graphics (SVG) Full 1.2 Specification","rawDate":"2005-04-13","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-04-13","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVG2":{"authors":["Amelia Bellamy-Royds","Bogdan Brinza","Chris Lilley","Dirk Schulze","David Storey","Eric Willigers"],"href":"https://www.w3.org/TR/SVG2/","title":"Scalable Vector Graphics (SVG) 2","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20120828":{"status":"WD","rawDate":"2012-08-28","href":"https://www.w3.org/TR/2012/WD-SVG2-20120828/","source":"./data/w3c-specs.txt"},"20130409":{"authors":["Nikos Andronikos","Tavmjong Bah","Brian Birtles","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Dirk Schulze","Richard Schwerdtfeger","Jonathan Watt"],"href":"https://www.w3.org/TR/2013/WD-SVG2-20130409/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2013-04-09","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130618":{"authors":["Nikos Andronikos","Tavmjong Bah","Brian Birtles","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Dirk Schulze","Richard Schwerdtfeger","Jonathan Watt"],"href":"https://www.w3.org/TR/2013/WD-SVG2-20130618/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2013-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["Nikos Andronikos","Tavmjong Bah","Brian Birtles","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Doug Schepers","Dirk Schulze","Richard Schwerdtfeger","Satoru Takagi","Jonathan Watt"],"href":"https://www.w3.org/TR/2014/WD-SVG2-20140211/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2014-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150409":{"authors":["Nikos Andronikos","Tavmjong Bah","Amelia Bellamy-Royds","Brian Birtles","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Doug Schepers","Dirk Schulze","Richard Schwerdtfeger","Satoru Takagi","Jonathan Watt"],"href":"https://www.w3.org/TR/2015/WD-SVG2-20150409/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150709":{"authors":["Nikos Andronikos","Rossen Atanassov","Tavmjong Bah","Amelia Bellamy-Royds","Brian Birtles","Bogdan Brinza","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Doug Schepers","Dirk Schulze","Richard Schwerdtfeger","Satoru Takagi","Jonathan Watt"],"href":"https://www.w3.org/TR/2015/WD-SVG2-20150709/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2015-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150915":{"authors":["Nikos Andronikos","Rossen Atanassov","Tavmjong Bah","Amelia Bellamy-Royds","Brian Birtles","Bogdan Brinza","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Doug Schepers","Dirk Schulze","Richard Schwerdtfeger","Satoru Takagi","Jonathan Watt"],"href":"https://www.w3.org/TR/2015/WD-SVG2-20150915/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"authors":["Nikos Andronikos","Rossen Atanassov","Tavmjong Bah","Amelia Bellamy-Royds","Brian Birtles","Bogdan Brinza","Cyril Concolato","Erik Dahlström","Chris Lilley","Cameron McCormack","Doug Schepers","Dirk Schulze","Richard Schwerdtfeger","Satoru Takagi","Jonathan Watt"],"href":"https://www.w3.org/TR/2016/CR-SVG2-20160915/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2016-09-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180807":{"authors":["Amelia Bellamy-Royds","Bogdan Brinza","Chris Lilley","Dirk Schulze","David Storey","Eric Willigers"],"href":"https://www.w3.org/TR/2018/CR-SVG2-20180807/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2018-08-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181004":{"authors":["Amelia Bellamy-Royds","Bogdan Brinza","Chris Lilley","Dirk Schulze","David Storey","Eric Willigers"],"href":"https://www.w3.org/TR/2018/CR-SVG2-20181004/","title":"Scalable Vector Graphics (SVG) 2","rawDate":"2018-10-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-10-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://svgwg.org/svg2-draft/","repository":"https://github.com/w3c/svgwg"},"SVG2Reqs":{"authors":["Dean Jackson"],"href":"https://www.w3.org/TR/SVG2Reqs/","title":"SVG 1.1/1.2/2.0 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20010803":{"status":"WD","rawDate":"2001-08-03","href":"https://www.w3.org/TR/2001/WD-SVG2Reqs-20010803","source":"./data/w3c-specs.txt"},"20020422":{"authors":["Dean Jackson"],"href":"https://www.w3.org/TR/2002/WD-SVG2Reqs-20020422/","title":"SVG 1.1/1.2/2.0 Requirements","rawDate":"2002-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-04-22","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGColor12":{"authors":["Chris Lilley","Anthony Grasso"],"href":"https://www.w3.org/TR/SVGColor12/","title":"SVG Color 1.2, Part 2: Language","rawDate":"2009-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091001":{"authors":["Chris Lilley","Anthony Grasso"],"href":"https://www.w3.org/TR/2009/WD-SVGColor12-20091001/","title":"SVG Color 1.2, Part 2: Language","rawDate":"2009-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"SVGColorPrimer12":{"authors":["Chris Lilley","Anthony Grasso"],"href":"https://www.w3.org/TR/SVGColorPrimer12/","title":"SVG Color 1.2, Part 1: Primer","rawDate":"2009-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091001":{"authors":["Chris Lilley","Anthony Grasso"],"href":"https://www.w3.org/TR/2009/WD-SVGColorPrimer12-20091001/","title":"SVG Color 1.2, Part 1: Primer","rawDate":"2009-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"SVGCompositing":{"authors":["Anthony Grasso"],"href":"https://www.w3.org/TR/SVGCompositing/","title":"SVG Compositing Specification","rawDate":"2011-03-15","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-SVGCompositing-20090430/","source":"./data/w3c-specs.txt"},"20110315":{"authors":["Anthony Grasso"],"href":"https://www.w3.org/TR/2011/WD-SVGCompositing-20110315/","title":"SVG Compositing Specification","rawDate":"2011-03-15","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletedBy":["compositing-1"]},"SVGFilter12":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/SVGFilter12/","title":"SVG Filters 1.2, Part 2: Language","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20070501":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/2007/WD-SVGFilter12-20070501/","title":"SVG Filters 1.2, Part 2: Language","rawDate":"2007-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-05-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGFilterPrimer12":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/SVGFilterPrimer12/","title":"SVG Filters 1.2, Part 1: Primer","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20070501":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/2007/WD-SVGFilterPrimer12-20070501/","title":"SVG Filters 1.2, Part 1: Primer","rawDate":"2007-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-05-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGFilterReqs12":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/SVGFilterReqs12/","title":"SVG Filter Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20070501":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/2007/WD-SVGFilterReqs12-20070501/","title":"SVG Filter Requirements","rawDate":"2007-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190328":{"authors":["Erik Dahlström"],"href":"https://www.w3.org/TR/2019/NOTE-SVGFilterReqs12-20190328/","title":"SVG Filter Requirements","rawDate":"2019-03-28","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2019-03-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"SVGMobile":{"authors":["Tolga Capin"],"href":"https://www.w3.org/TR/SVGMobile/","title":"Mobile SVG Profiles: SVG Tiny and SVG Basic","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2003/01/REC-SVGMobile-20030114-errata","versions":{"20011030":{"status":"WD","rawDate":"2001-10-30","href":"https://www.w3.org/TR/2001/WD-SVGMobile-20011030","source":"./data/w3c-specs.txt"},"20020108":{"status":"WD","rawDate":"2002-01-08","href":"https://www.w3.org/TR/2002/WD-SVGMobile-20020108/","source":"./data/w3c-specs.txt"},"20020215":{"status":"WD","rawDate":"2002-02-15","href":"https://www.w3.org/TR/2002/WD-SVGMobile-20020215/","source":"./data/w3c-specs.txt"},"20020430":{"status":"CR","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/CR-SVGMobile-20020430/","source":"./data/w3c-specs.txt"},"20021115":{"status":"PR","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/PR-SVGMobile-20021115/","source":"./data/w3c-specs.txt"},"20030114":{"authors":["Tolga Capin"],"href":"https://www.w3.org/TR/2003/REC-SVGMobile-20030114/","title":"Mobile SVG Profiles: SVG Tiny and SVG Basic","rawDate":"2003-01-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/2003/01/REC-SVGMobile-20030114-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-01-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGMobile12":{"aliasOf":"SVGTiny12"},"SVGMobileReqs":{"authors":["Rick Graham","Tolga Capin"],"href":"https://www.w3.org/TR/SVGMobileReqs/","title":"SVG Mobile Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20010803":{"authors":["Rick Graham","Tolga Capin"],"href":"https://www.w3.org/TR/2001/WD-SVGMobileReqs-20010803","title":"SVG Mobile Requirements","rawDate":"2001-08-03","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-08-03","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGParam":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/SVGParam/","title":"SVG Parameters 1.0, Part 2: Language","rawDate":"2009-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-SVGParam-20090430/","source":"./data/w3c-specs.txt"},"20090616":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/2009/WD-SVGParam-20090616/","title":"SVG Parameters 1.0, Part 2: Language","rawDate":"2009-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"SVGParamPrimer":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/SVGParamPrimer/","title":"SVG Parameters 1.0, Part 1: Primer","rawDate":"2009-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-SVGParamPrimer-20090430/","source":"./data/w3c-specs.txt"},"20090616":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/2009/WD-SVGParamPrimer-20090616/","title":"SVG Parameters 1.0, Part 1: Primer","rawDate":"2009-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"SVGPrint":{"aliasOf":"SVGPrint12"},"SVGPrint12":{"authors":["Alex Danilo","Craig Northway","Andrew Shellshear","Anthony Grasso","Chris Lilley"],"etAl":true,"href":"https://www.w3.org/TR/SVGPrint12/","title":"SVG Print 1.2, Part 2: Language","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20030715":{"status":"WD","rawDate":"2003-07-15","href":"https://www.w3.org/TR/2003/WD-SVGPrint-20030715/","source":"./data/w3c-specs.txt"},"20070501":{"status":"WD","rawDate":"2007-05-01","href":"https://www.w3.org/TR/2007/WD-SVGPrint12-20070501/","source":"./data/w3c-specs.txt"},"20071221":{"authors":["Alex Danilo","Craig Northway","Andrew Shellshear","Anthony Grasso","Chris Lilley"],"href":"https://www.w3.org/TR/2007/WD-SVGPrint12-20071221/","title":"SVG Print 1.2, Part 2: Language","rawDate":"2007-12-21","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"LCWD"}},"rawDate":"2007-12-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"SVGPrintPrimer12":{"authors":["Anthony Grasso","Andrew Shellshear","Chris Lilley"],"href":"https://www.w3.org/TR/SVGPrintPrimer12/","title":"SVG Print 1.2, Part 1: Primer","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20070501":{"status":"WD","rawDate":"2007-05-01","href":"https://www.w3.org/TR/2007/WD-SVGPrintPrimer12-20070501/","source":"./data/w3c-specs.txt"},"20071221":{"authors":["Anthony Grasso","Andrew Shellshear","Chris Lilley"],"href":"https://www.w3.org/TR/2007/WD-SVGPrintPrimer12-20071221/","title":"SVG Print 1.2, Part 1: Primer","rawDate":"2007-12-21","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"LCWD"}},"rawDate":"2007-12-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"SVGPrintReqs":{"authors":["Jun Fujisawa","Lee Klosterman","Craig Brown","Alex Danilo"],"etAl":true,"href":"https://www.w3.org/TR/SVGPrintReqs/","title":"SVG Printing Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20030218":{"authors":["Jun Fujisawa","Lee Klosterman","Craig Brown","Alex Danilo"],"href":"https://www.w3.org/TR/2003/WD-SVGPrintReqs-20030218/","title":"SVG Printing Requirements","rawDate":"2003-02-18","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-02-18","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGReq":{"authors":["Jon Ferraiolo"],"href":"https://www.w3.org/TR/WD-SVGReq","title":"Scalable Vector Graphics (SVG) Requirements","rawDate":"1998-10-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19981029":{"authors":["Jon Ferraiolo"],"href":"https://www.w3.org/TR/1998/WD-SVGReq-19981029","title":"Scalable Vector Graphics (SVG) Requirements","rawDate":"1998-10-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"SVGTiny12":{"authors":["Ola Andersson","Robin Berjon","Erik Dahlström","Andrew Emmons","Jon Ferraiolo","Anthony Grasso","Vincent Hardy","Scott Hayman","Dean Jackson","Chris Lilley","Cameron McCormack","Andreas Neumann","Craig Northway","Antoine Quint","Nandini Ramani","Doug Schepers","Andrew Shellshear"],"etAl":true,"href":"https://www.w3.org/TR/SVGTiny12/","title":"Scalable Vector Graphics (SVG) Tiny 1.2 Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/TR/2008/REC-SVGTiny12-20081222-errata.html","versions":{"20031209":{"status":"WD","rawDate":"2003-12-09","href":"https://www.w3.org/TR/2003/WD-SVGMobile12-20031209/","source":"./data/w3c-specs.txt"},"20040325":{"status":"WD","rawDate":"2004-03-25","href":"https://www.w3.org/TR/2004/WD-SVGMobile12-20040325/","source":"./data/w3c-specs.txt"},"20040629":{"status":"WD","rawDate":"2004-06-29","href":"https://www.w3.org/TR/2004/WD-SVGMobile12-20040629/","source":"./data/w3c-specs.txt"},"20040806":{"status":"WD","rawDate":"2004-08-06","href":"https://www.w3.org/TR/2004/WD-SVGMobile12-20040806/","source":"./data/w3c-specs.txt"},"20040813":{"status":"WD","rawDate":"2004-08-13","href":"https://www.w3.org/TR/2004/WD-SVGMobile12-20040813/","source":"./data/w3c-specs.txt"},"20050413":{"status":"WD","rawDate":"2005-04-13","href":"https://www.w3.org/TR/2005/WD-SVGMobile12-20050413/","source":"./data/w3c-specs.txt"},"20051207":{"status":"WD","rawDate":"2005-12-07","href":"https://www.w3.org/TR/2005/WD-SVGMobile12-20051207/","source":"./data/w3c-specs.txt"},"20060721":{"status":"WD","rawDate":"2006-07-21","href":"https://www.w3.org/TR/2006/WD-SVGMobile12-20060721/","source":"./data/w3c-specs.txt"},"20060810":{"status":"CR","rawDate":"2006-08-10","href":"https://www.w3.org/TR/2006/CR-SVGMobile12-20060810/","source":"./data/w3c-specs.txt"},"20080915":{"status":"WD","rawDate":"2008-09-15","href":"https://www.w3.org/TR/2008/WD-SVGMobile12-20080915/","source":"./data/w3c-specs.txt"},"20081117":{"status":"PR","rawDate":"2008-11-17","href":"https://www.w3.org/TR/2008/PR-SVGTiny12-20081117/","source":"./data/w3c-specs.txt"},"20081222":{"authors":["Ola Andersson","Robin Berjon","Erik Dahlström","Andrew Emmons","Jon Ferraiolo","Anthony Grasso","Vincent Hardy","Scott Hayman","Dean Jackson","Chris Lilley","Cameron McCormack","Andreas Neumann","Craig Northway","Antoine Quint","Nandini Ramani","Doug Schepers","Andrew Shellshear"],"href":"https://www.w3.org/TR/2008/REC-SVGTiny12-20081222/","title":"Scalable Vector Graphics (SVG) Tiny 1.2 Specification","rawDate":"2008-12-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"hasErrata":"https://www.w3.org/TR/2008/REC-SVGTiny12-20081222-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-22","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SVGTiny12Reqs":{"authors":["Andrew Emmons"],"href":"https://www.w3.org/TR/SVGTiny12Reqs/","title":"SVGT 1.2 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20031209":{"status":"WD","rawDate":"2003-12-09","href":"https://www.w3.org/TR/2003/WD-SVGTiny12Reqs-20031209/","source":"./data/w3c-specs.txt"},"20060810":{"authors":["Andrew Emmons"],"href":"https://www.w3.org/TR/2006/WD-SVGTiny12Reqs-20060810/","title":"SVGT 1.2 Requirements","rawDate":"2006-08-10","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2006-08-10","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"SYMM-modules":{"authors":["Patrick Schmitz","Ted Wugofski","Warner ten Kate"],"href":"https://www.w3.org/TR/NOTE-SYMM-modules","title":"Synchronized Multimedia Modules based upon SMIL 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"versions":{"19990223":{"authors":["Patrick Schmitz","Ted Wugofski","Warner ten Kate"],"href":"https://www.w3.org/TR/1999/NOTE-SYMM-modules-19990223","title":"Synchronized Multimedia Modules based upon SMIL 1.0","rawDate":"1999-02-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-02-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"TPRC-970930":{"versions":{"19970930":{"aliasOf":"TPRC-970930"}},"href":"https://www.w3.org/TR/NOTE-TPRC-970930/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-09-30","title":"Designing a Social Protocol: Lessons Learned from the Platform for Privacy Preferences."},"TVWeb-URI-Requirements":{"authors":["Warner ten Kate"],"href":"https://www.w3.org/TR/TVWeb-URI-Requirements/","title":"TV Broadcast URI Schemes Requirements","status":"NOTE","publisher":"W3C","versions":{"19991021":{"authors":["Warner ten Kate"],"href":"https://www.w3.org/TR/1999/NOTE-TVWeb-URI-Requirements-19991021","title":"TV Broadcast URI Schemes Requirements","rawDate":"1999-10-21","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"1999-10-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"UAAG10":{"authors":["Ian Jacobs","Jon Gunderson","Eric Hansen"],"href":"https://www.w3.org/TR/UAAG10/","title":"User Agent Accessibility Guidelines 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"hasErrata":"https://www.w3.org/WAI/UA/UAAG-errata","versions":{"19980703":{"status":"WD","rawDate":"1998-07-03","href":"https://www.w3.org/TR/1998/WD-WAI-USERAGENT-19980703","source":"./data/w3c-specs.txt"},"19981112":{"status":"WD","rawDate":"1998-11-12","href":"https://www.w3.org/TR/1998/WD-WAI-USERAGENT-19981112","source":"./data/w3c-specs.txt"},"19990331":{"rawDate":"1999-03-31","href":"https://www.w3.org/TR/1999/WAI-USERAGENT-19990331","source":"./data/w3c-specs.txt"},"19990611":{"rawDate":"1999-06-11","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19990611","source":"./data/w3c-specs.txt"},"19990709":{"rawDate":"1999-07-09","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19990709","source":"./data/w3c-specs.txt"},"19990716":{"rawDate":"1999-07-16","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19990716","source":"./data/w3c-specs.txt"},"19990809":{"rawDate":"1999-08-09","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19990809","source":"./data/w3c-specs.txt"},"19990827":{"rawDate":"1999-08-27","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19990827","source":"./data/w3c-specs.txt"},"19991004":{"rawDate":"1999-10-04","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19991004","source":"./data/w3c-specs.txt"},"19991005":{"rawDate":"1999-10-05","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19991005","source":"./data/w3c-specs.txt"},"19991022":{"rawDate":"1999-10-22","href":"https://www.w3.org/WAI/UA/WAI-USERAGENT-19991022","source":"./data/w3c-specs.txt"},"19991029":{"status":"WD","rawDate":"1999-10-29","href":"https://www.w3.org/WAI/UA/WD-WAI-USERAGENT-19991029","source":"./data/w3c-specs.txt"},"19991105":{"status":"WD","rawDate":"1999-11-05","href":"https://www.w3.org/TR/1999/WD-WAI-USERAGENT-19991105","source":"./data/w3c-specs.txt"},"20000128":{"status":"CR","rawDate":"2000-01-28","href":"https://www.w3.org/TR/2000/CR-UAAG10-20000128","source":"./data/w3c-specs.txt"},"20000310":{"status":"PR","rawDate":"2000-03-10","href":"https://www.w3.org/TR/2000/PR-UAAG10-20000310","source":"./data/w3c-specs.txt"},"20001023":{"status":"WD","rawDate":"2000-10-23","href":"https://www.w3.org/TR/2000/WD-UAAG10-20001023/","source":"./data/w3c-specs.txt"},"20010409":{"status":"WD","rawDate":"2001-04-09","href":"https://www.w3.org/TR/2001/WD-UAAG10-20010409/","source":"./data/w3c-specs.txt"},"20010622":{"status":"WD","rawDate":"2001-06-22","href":"https://www.w3.org/TR/2001/WD-UAAG10-20010622/","source":"./data/w3c-specs.txt"},"20010912":{"status":"CR","rawDate":"2001-09-12","href":"https://www.w3.org/TR/2001/CR-UAAG10-20010912/","source":"./data/w3c-specs.txt"},"20020821":{"status":"WD","rawDate":"2002-08-21","href":"https://www.w3.org/TR/2002/WD-UAAG10-20020821/","source":"./data/w3c-specs.txt"},"20021016":{"status":"PR","rawDate":"2002-10-16","href":"https://www.w3.org/TR/2002/PR-UAAG10-20021016/","source":"./data/w3c-specs.txt"},"20021217":{"authors":["Ian Jacobs","Jon Gunderson","Eric Hansen"],"href":"https://www.w3.org/TR/2002/REC-UAAG10-20021217/","title":"User Agent Accessibility Guidelines 1.0","rawDate":"2002-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"hasErrata":"https://www.w3.org/WAI/UA/UAAG-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-12-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"UAAG10-TECHS":{"authors":["Ian Jacobs","Jon Gunderson","Eric Hansen"],"href":"https://www.w3.org/TR/UAAG10-TECHS/","title":"Techniques for User Agent Accessibility Guidelines 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"versions":{"20010912":{"status":"WD","rawDate":"2001-09-12","href":"https://www.w3.org/TR/2001/WD-UAAG10-TECHS-20010912/","source":"./data/w3c-specs.txt"},"20020821":{"status":"WD","rawDate":"2002-08-21","href":"https://www.w3.org/TR/2002/WD-UAAG10-TECHS-20020821/","source":"./data/w3c-specs.txt"},"20021016":{"status":"WD","rawDate":"2002-10-16","href":"https://www.w3.org/TR/2002/WD-UAAG10-TECHS-20021016/","source":"./data/w3c-specs.txt"},"20021217":{"authors":["Ian Jacobs","Jon Gunderson","Eric Hansen"],"href":"https://www.w3.org/TR/2002/NOTE-UAAG10-TECHS-20021217/","title":"Techniques for User Agent Accessibility Guidelines 1.0","rawDate":"2002-12-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-12-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"UAAG20":{"authors":["James Allan","Greg Lowney","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/UAAG20/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"versions":{"20080312":{"status":"WD","rawDate":"2008-03-12","href":"https://www.w3.org/TR/2008/WD-UAAG20-20080312/","source":"./data/w3c-specs.txt"},"20090311":{"status":"WD","rawDate":"2009-03-11","href":"https://www.w3.org/TR/2009/WD-UAAG20-20090311/","source":"./data/w3c-specs.txt"},"20090723":{"status":"WD","rawDate":"2009-07-23","href":"https://www.w3.org/TR/2009/WD-UAAG20-20090723/","source":"./data/w3c-specs.txt"},"20100311":{"status":"WD","rawDate":"2010-03-11","href":"https://www.w3.org/TR/2010/WD-UAAG20-20100311/","source":"./data/w3c-specs.txt"},"20100617":{"status":"WD","rawDate":"2010-06-17","href":"https://www.w3.org/TR/2010/WD-UAAG20-20100617/","source":"./data/w3c-specs.txt"},"20110719":{"status":"WD","rawDate":"2011-07-19","href":"https://www.w3.org/TR/2011/WD-UAAG20-20110719/","source":"./data/w3c-specs.txt"},"20121004":{"authors":["James Allan","Kelly Ford","Kim Patch","Jeanne Spellman"],"href":"https://www.w3.org/TR/2012/WD-UAAG20-20121004/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","rawDate":"2012-10-04","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130523":{"authors":["James Allan","Kelly Ford","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2013/WD-UAAG20-20130523/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","rawDate":"2013-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["James Allan","Kelly Ford","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2013/WD-UAAG20-20131107/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","rawDate":"2013-11-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140925":{"authors":["James Allan","Kelly Ford","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2014/WD-UAAG20-20140925/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","rawDate":"2014-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150915":{"authors":["James Allan","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2015/WD-UAAG20-20150915/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["James Allan","Greg Lowney","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2015/NOTE-UAAG20-20151215/","title":"User Agent Accessibility Guidelines (UAAG) 2.0","rawDate":"2015-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-12-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/TR/2015/NOTE-UAAG20-20151215/"},"UAAG20-Reference":{"authors":["James Allan","Greg Lowney","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/UAAG20-Reference/","title":"UAAG 2.0 Reference: Explanations, Examples, and Resources for User Agent Accessibility Guidelines 2.0","rawDate":"2015-12-15","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/WAI/UA/UAAG20-Reference/","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100311":{"status":"WD","rawDate":"2010-03-11","href":"https://www.w3.org/TR/2010/WD-IMPLEMENTING-UAAG20-20100311/","source":"./data/w3c-specs.txt"},"20100617":{"status":"WD","rawDate":"2010-06-17","href":"https://www.w3.org/TR/2010/WD-IMPLEMENTING-UAAG20-20100617/","source":"./data/w3c-specs.txt"},"20110719":{"status":"WD","rawDate":"2011-07-19","href":"https://www.w3.org/TR/2011/WD-IMPLEMENTING-UAAG20-20110719/","source":"./data/w3c-specs.txt"},"20121004":{"authors":["James Allan","Kelly Ford","Jeanne Spellman","Kim Patch"],"href":"https://www.w3.org/TR/2012/WD-IMPLEMENTING-UAAG20-20121004/","title":"Implementing UAAG 2.0","rawDate":"2012-10-04","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130523":{"authors":["James Allan","Kelly Ford","Jeanne Spellman","Kim Patch"],"href":"https://www.w3.org/TR/2013/WD-IMPLEMENTING-UAAG20-20130523/","title":"Implementing UAAG 2.0","rawDate":"2013-05-23","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130606":{"authors":["James Allan","Kelly Ford","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2013/WD-IMPLEMENTING-UAAG20-20130606/","title":"Implementing UAAG 2.0","rawDate":"2013-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["James Allan","Kelly Ford","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2013/WD-IMPLEMENTING-UAAG20-20131107/","title":"Implementing UAAG 2.0","rawDate":"2013-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140925":{"authors":["James Allan","Kelly Ford","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2014/WD-UAAG20-Reference-20140925/","title":"UAAG 2.0 Reference: Explanations, Examples, and Resources for User Agent Accessibility Guidelines 2.0","rawDate":"2014-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150915":{"authors":["James Allan","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2015/WD-UAAG20-Reference-20150915/","title":"UAAG 2.0 Reference: Explanations, Examples, and Resources for User Agent Accessibility Guidelines 2.0","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["James Allan","Greg Lowney","Kimberly Patch","Jeanne F Spellman"],"href":"https://www.w3.org/TR/2015/NOTE-UAAG20-Reference-20151215/","title":"UAAG 2.0 Reference: Explanations, Examples, and Resources for User Agent Accessibility Guidelines 2.0","rawDate":"2015-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"UAAG20-requirements":{"authors":["Jim Allan","Jan Richards"],"href":"https://www.w3.org/TR/UAAG20-requirements/","title":"User Agent Accessibility Guidelines 2.0 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"versions":{"20071031":{"authors":["Jim Allan","Jan Richards"],"href":"https://www.w3.org/TR/2007/WD-UAAG20-requirements-20071031/","title":"User Agent Accessibility Guidelines 2.0 Requirements","rawDate":"2007-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-10-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"UISafety":{"aliasOf":"UISecurity"},"UISecurity":{"authors":["Brad Hill"],"href":"https://www.w3.org/TR/UISecurity/","title":"User Interface Security and the Visibility API","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121120":{"authors":["Giorgio Maone","David Lin-Shung Huang","Tobias Gondrom","Brad Hill"],"href":"https://www.w3.org/TR/2012/WD-UISafety-20121120/","title":"User Interface Safety Directives for Content Security Policy","rawDate":"2012-11-20","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130523":{"authors":["Giorgio Maone","David Huang","Tobias Gondrom","Brad Hill"],"href":"https://www.w3.org/TR/2013/WD-UISecurity-20130523/","title":"User Interface Security Directives for Content Security Policy","rawDate":"2013-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140318":{"authors":["Giorgio Maone","David Huang","Tobias Gondrom","Brad Hill"],"href":"https://www.w3.org/TR/2014/WD-UISecurity-20140318/","title":"User Interface Security Directives for Content Security Policy","rawDate":"2014-03-18","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160607":{"authors":["Brad Hill"],"href":"https://www.w3.org/TR/2016/WD-UISecurity-20160607/","title":"User Interface Security and the Visibility API","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/webappsec-uisecurity/index.html","repository":"https://github.com/w3c/webappsec-uisecurity"},"UMP":{"authors":["Tyler Close","Mark Miller"],"href":"https://www.w3.org/TR/UMP/","title":"Uniform Messaging Policy, Level One","rawDate":"2014-10-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100126":{"authors":["Tyler Close","Mark Miller"],"href":"https://www.w3.org/TR/2010/WD-UMP-20100126/","title":"Uniform Messaging Policy, Level One","rawDate":"2010-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141002":{"authors":["Tyler Close","Mark Miller"],"href":"https://www.w3.org/TR/2014/NOTE-UMP-20141002/","title":"Uniform Messaging Policy, Level One","rawDate":"2014-10-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"UNDERSTANDING-WCAG20":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"],"etAl":true,"href":"https://www.w3.org/TR/UNDERSTANDING-WCAG20/","title":"Understanding WCAG 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20051123":{"status":"WD","rawDate":"2005-11-23","href":"https://www.w3.org/TR/2005/WD-UNDERSTANDING-WCAG20-20051123/","source":"./data/w3c-specs.txt"},"20060427":{"status":"WD","rawDate":"2006-04-27","href":"https://www.w3.org/TR/2006/WD-UNDERSTANDING-WCAG20-20060427/","source":"./data/w3c-specs.txt"},"20070517":{"status":"WD","rawDate":"2007-05-17","href":"https://www.w3.org/TR/2007/WD-UNDERSTANDING-WCAG20-20070517/","source":"./data/w3c-specs.txt"},"20071211":{"status":"WD","rawDate":"2007-12-11","href":"https://www.w3.org/TR/2007/WD-UNDERSTANDING-WCAG20-20071211/","source":"./data/w3c-specs.txt"},"20080430":{"status":"WD","rawDate":"2008-04-30","href":"https://www.w3.org/TR/2008/WD-UNDERSTANDING-WCAG20-20080430/","source":"./data/w3c-specs.txt"},"20081103":{"status":"WD","rawDate":"2008-11-03","href":"https://www.w3.org/TR/2008/WD-UNDERSTANDING-WCAG20-20081103/","source":"./data/w3c-specs.txt"},"20081211":{"status":"NOTE","rawDate":"2008-12-11","href":"https://www.w3.org/TR/2008/NOTE-UNDERSTANDING-WCAG20-20081211/","source":"./data/w3c-specs.txt"},"20101014":{"status":"NOTE","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/NOTE-UNDERSTANDING-WCAG20-20101014/","source":"./data/w3c-specs.txt"},"20120103":{"authors":["Michael Cooper","Loretta Guarino Reid","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/2012/NOTE-UNDERSTANDING-WCAG20-20120103/","title":"Understanding WCAG 2.0","rawDate":"2012-01-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130905":{"authors":["Michael Cooper","Loretta Guarino Reid","Andrew Kirkpatrick","Joshue O Connor","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/2013/NOTE-UNDERSTANDING-WCAG20-20130905/","title":"Understanding WCAG 2.0","rawDate":"2013-09-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140311":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2014/NOTE-UNDERSTANDING-WCAG20-20140311/","title":"Understanding WCAG 2.0","rawDate":"2014-03-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2014/NOTE-UNDERSTANDING-WCAG20-20140408/","title":"Understanding WCAG 2.0","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140916":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2014/NOTE-UNDERSTANDING-WCAG20-20140916/","title":"Understanding WCAG 2.0","rawDate":"2014-09-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150226":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2015/NOTE-UNDERSTANDING-WCAG20-20150226/","title":"Understanding WCAG 2.0","rawDate":"2015-02-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2016/NOTE-UNDERSTANDING-WCAG20-20160317/","title":"Understanding WCAG 2.0","rawDate":"2016-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161007":{"href":"https://www.w3.org/TR/2016/NOTE-UNDERSTANDING-WCAG20-20161007/","title":"Understanding WCAG 2.0","rawDate":"2016-10-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"]},"20230921":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"],"href":"https://www.w3.org/TR/2023/NOTE-UNDERSTANDING-WCAG20-20230921/","title":"Understanding WCAG 2.0","rawDate":"2023-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-09-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"UWA-personalization-roadmap":{"authors":["Andy Heath","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/UWA-personalization-roadmap/","title":"W3C Personalization Roadmap: Ubiquitous Web Integration of AccessForAll 1.0","rawDate":"2009-04-09","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090409":{"authors":["Andy Heath","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2009/NOTE-UWA-personalization-roadmap-20090409/","title":"W3C Personalization Roadmap: Ubiquitous Web Integration of AccessForAll 1.0","rawDate":"2009-04-09","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"status":"NOTE"},"VML":{"versions":{"19980513":{"status":"NOTE","rawDate":"1998-05-13","href":"https://www.w3.org/TR/1998/NOTE-VML-19980513","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-VML","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-05-13","title":"VML - the Vector Markup Language"},"WAET":{"authors":["Carlos A. Velasco","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/WAET/","title":"Developers' Guide to Features of Web Accessibility Evaluation Tools","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140724":{"authors":["Carlos A. Velasco","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2014/WD-WAET-20140724/","title":"Developers' Guide to Features of Web Accessibility Evaluation Tools","rawDate":"2014-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Carlos A. Velasco","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2017/NOTE-WAET-20170202/","title":"Developers' Guide to Features of Web Accessibility Evaluation Tools","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"WAI-WEBCONTENT":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/WAI-WEBCONTENT/","title":"Web Content Accessibility Guidelines 1.0","rawDate":"1999-05-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"hasErrata":"https://www.w3.org/WAI/GL/WAI-WEBCONTENT-ERRATA","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980203":{"status":"WD","rawDate":"1998-02-03","href":"https://www.w3.org/TR/1998/WD-WAI-PAGEAUTH-0203","source":"./data/w3c-specs.txt"},"19980414":{"status":"WD","rawDate":"1998-04-14","href":"https://www.w3.org/TR/1998/WD-WAI-PAGEAUTH-0414","source":"./data/w3c-specs.txt"},"19980918":{"status":"WD","rawDate":"1998-09-18","href":"https://www.w3.org/TR/1998/WD-WAI-PAGEAUTH-19980918","source":"./data/w3c-specs.txt"},"19990115":{"status":"WD","rawDate":"1999-01-15","href":"https://www.w3.org/TR/1999/WD-WAI-PAGEAUTH-19990115","source":"./data/w3c-specs.txt"},"19990217":{"status":"WD","rawDate":"1999-02-17","href":"https://www.w3.org/TR/1999/WD-WAI-PAGEAUTH-19990217","source":"./data/w3c-specs.txt"},"19990226":{"status":"WD","rawDate":"1999-02-26","href":"https://www.w3.org/TR/1999/WD-WAI-PAGEAUTH-19990226","source":"./data/w3c-specs.txt"},"19990324":{"rawDate":"1999-03-24","href":"https://www.w3.org/TR/1999/WAI-WEBCONTENT-19990324","source":"./data/w3c-specs.txt"},"19990505":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/1999/WAI-WEBCONTENT-19990505/","title":"Web Content Accessibility Guidelines 1.0","rawDate":"1999-05-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"hasErrata":"https://www.w3.org/WAI/GL/WAI-WEBCONTENT-ERRATA","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"0203":{"aliasOf":"WAI-WEBCONTENT-19980203"},"0414":{"aliasOf":"WAI-WEBCONTENT-19980414"}},"isRetired":true},"WAP":{"versions":{"19981030":{"status":"NOTE","rawDate":"1998-10-30","href":"https://www.w3.org/TR/1998/NOTE-WAP-19981030","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-WAP","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-10-30","title":"WAP Forum - W3C Cooperation White Paper"},"WAPF-REQ":{"aliasOf":"widgets-reqs"},"WCA":{"authors":["Johan Hjelm","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/NOTE-WCA/","title":"Web Characterization: From working group to activity","status":"NOTE","publisher":"W3C","versions":{"19990319":{"authors":["Johan Hjelm","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/1999/NOTE-WCA-19990319/","title":"Web Characterization: From working group to activity","rawDate":"1999-03-19","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-03-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCA-terms":{"authors":["Henrik Frystyk Nielsen"],"href":"https://www.w3.org/1999/05/WCA-terms/","title":"Web Characterization Terminology & Definitions Sheet","rawDate":"1999-05-24","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990524":{"authors":["Henrik Frystyk Nielsen"],"href":"https://www.w3.org/1999/05/WCA-terms/01","title":"Web Characterization Terminology & Definitions Sheet","rawDate":"1999-05-24","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"WCAG-EM":{"authors":["Eric Velleman","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/WCAG-EM/","title":"Website Accessibility Conformance Evaluation Methodology (WCAG-EM) 1.0","rawDate":"2014-07-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120327":{"status":"WD","rawDate":"2012-03-27","href":"https://www.w3.org/TR/2012/WD-WCAG-EM-20120327/","source":"./data/w3c-specs.txt"},"20120920":{"status":"WD","rawDate":"2012-09-20","href":"https://www.w3.org/TR/2012/WD-WCAG-EM-20120920/","source":"./data/w3c-specs.txt"},"20130226":{"authors":["Eric Velleman","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2013/WD-WCAG-EM-20130226/","title":"Website Accessibility Conformance Evaluation Methodology (WCAG-EM) 1.0","rawDate":"2013-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140130":{"authors":["Eric Velleman","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2014/WD-WCAG-EM-20140130/","title":"Website Accessibility Conformance Evaluation Methodology (WCAG-EM) 1.0","rawDate":"2014-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140710":{"authors":["Eric Velleman","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2014/NOTE-WCAG-EM-20140710/","title":"Website Accessibility Conformance Evaluation Methodology (WCAG-EM) 1.0","rawDate":"2014-07-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ER/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"WCAG10-CORE-TECHS":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/WCAG10-CORE-TECHS/","title":"Core Techniques for Web Content Accessibility Guidelines 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20001106":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/2000/NOTE-WCAG10-CORE-TECHS-20001106/","title":"Core Techniques for Web Content Accessibility Guidelines 1.0","rawDate":"2000-11-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2000-11-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCAG10-CSS-TECHS":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/WCAG10-CSS-TECHS/","title":"CSS Techniques for Web Content Accessibility Guidelines 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20001106":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/2000/NOTE-WCAG10-CSS-TECHS-20001106/","title":"CSS Techniques for Web Content Accessibility Guidelines 1.0","rawDate":"2000-11-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2000-11-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCAG10-HTML-TECHS":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/WCAG10-HTML-TECHS/","title":"HTML Techniques for Web Content Accessibility Guidelines 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20001106":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/2000/NOTE-WCAG10-HTML-TECHS-20001106/","title":"HTML Techniques for Web Content Accessibility Guidelines 1.0","rawDate":"2000-11-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2000-11-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCAG10-TECHS":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/WCAG10-TECHS/","title":"Techniques for Web Content Accessibility Guidelines 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20001106":{"authors":["Wendy Chisholm","Gregg Vanderheiden","Ian Jacobs"],"href":"https://www.w3.org/TR/2000/NOTE-WCAG10-TECHS-20001106/","title":"Techniques for Web Content Accessibility Guidelines 1.0","rawDate":"2000-11-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2000-11-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCAG20":{"authors":["Ben Caldwell","Michael Cooper","Loretta Guarino Reid","Gregg Vanderheiden"],"etAl":true,"href":"https://www.w3.org/TR/WCAG20/","title":"Web Content Accessibility Guidelines (WCAG) 2.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"hasErrata":"https://www.w3.org/WAI/WCAG20/errata/","versions":{"20010125":{"status":"WD","rawDate":"2001-01-25","href":"https://www.w3.org/TR/2001/WD-WCAG20-20010125/","source":"./data/w3c-specs.txt"},"20010824":{"status":"WD","rawDate":"2001-08-24","href":"https://www.w3.org/TR/2001/WD-WCAG20-20010824/","source":"./data/w3c-specs.txt"},"20020822":{"status":"WD","rawDate":"2002-08-22","href":"https://www.w3.org/TR/2002/WD-WCAG20-20020822/","source":"./data/w3c-specs.txt"},"20030429":{"status":"WD","rawDate":"2003-04-29","href":"https://www.w3.org/TR/2003/WD-WCAG20-20030429/","source":"./data/w3c-specs.txt"},"20030624":{"status":"WD","rawDate":"2003-06-24","href":"https://www.w3.org/TR/2003/WD-WCAG20-20030624/","source":"./data/w3c-specs.txt"},"20040311":{"status":"WD","rawDate":"2004-03-11","href":"https://www.w3.org/TR/2004/WD-WCAG20-20040311/","source":"./data/w3c-specs.txt"},"20040730":{"status":"WD","rawDate":"2004-07-30","href":"https://www.w3.org/TR/2004/WD-WCAG20-20040730/","source":"./data/w3c-specs.txt"},"20041119":{"status":"WD","rawDate":"2004-11-19","href":"https://www.w3.org/TR/2004/WD-WCAG20-20041119/","source":"./data/w3c-specs.txt"},"20050630":{"status":"WD","rawDate":"2005-06-30","href":"https://www.w3.org/TR/2005/WD-WCAG20-20050630/","source":"./data/w3c-specs.txt"},"20051123":{"status":"WD","rawDate":"2005-11-23","href":"https://www.w3.org/TR/2005/WD-WCAG20-20051123/","source":"./data/w3c-specs.txt"},"20060427":{"status":"WD","rawDate":"2006-04-27","href":"https://www.w3.org/TR/2006/WD-WCAG20-20060427/","source":"./data/w3c-specs.txt"},"20070517":{"status":"WD","rawDate":"2007-05-17","href":"https://www.w3.org/TR/2007/WD-WCAG20-20070517/","source":"./data/w3c-specs.txt"},"20071211":{"status":"WD","rawDate":"2007-12-11","href":"https://www.w3.org/TR/2007/WD-WCAG20-20071211/","source":"./data/w3c-specs.txt"},"20080430":{"status":"CR","rawDate":"2008-04-30","href":"https://www.w3.org/TR/2008/CR-WCAG20-20080430/","source":"./data/w3c-specs.txt"},"20081103":{"status":"PR","rawDate":"2008-11-03","href":"https://www.w3.org/TR/2008/PR-WCAG20-20081103/","source":"./data/w3c-specs.txt"},"20081211":{"authors":["Ben Caldwell","Michael Cooper","Loretta Guarino Reid","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/2008/REC-WCAG20-20081211/","title":"Web Content Accessibility Guidelines (WCAG) 2.0","rawDate":"2008-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"hasErrata":"https://www.w3.org/WAI/WCAG20/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCAG20-CSS-TECHS":{"aliasOf":"WCAG20-TECHS"},"WCAG20-GATEWAY":{"versions":{"20040730":{"status":"WD","rawDate":"2004-07-30","href":"https://www.w3.org/TR/2004/WD-WCAG20-GATEWAY-20040730/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WCAG20-GATEWAY/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"2004-07-30","title":"Gateway to Techniques for WCAG 2.0"},"WCAG20-GENERAL":{"aliasOf":"WCAG20-TECHS"},"WCAG20-HTML-TECHS":{"aliasOf":"WCAG20-TECHS"},"WCAG20-SCRIPT-TECHS":{"aliasOf":"WCAG20-TECHS"},"WCAG20-TECHS":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"],"etAl":true,"href":"https://www.w3.org/TR/WCAG20-TECHS/","title":"Techniques for WCAG 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20031209":{"status":"WD","rawDate":"2003-12-09","href":"https://www.w3.org/TR/2003/WD-WCAG20-HTML-TECHS-20031209/","source":"./data/w3c-specs.txt"},"20040730":{"status":"WD","rawDate":"2004-07-30","href":"https://www.w3.org/TR/2004/WD-WCAG20-CSS-TECHS-20040730/","source":"./data/w3c-specs.txt"},"20041119":{"status":"WD","rawDate":"2004-11-19","href":"https://www.w3.org/TR/2004/WD-WCAG20-CSS-TECHS-20041119/","source":"./data/w3c-specs.txt"},"20050630":{"status":"WD","rawDate":"2005-06-30","href":"https://www.w3.org/TR/2005/WD-WCAG20-CSS-TECHS-20050630/","source":"./data/w3c-specs.txt"},"20051123":{"status":"WD","rawDate":"2005-11-23","href":"https://www.w3.org/TR/2005/WD-WCAG20-HTML-TECHS-20051123/","source":"./data/w3c-specs.txt"},"20060427":{"status":"WD","rawDate":"2006-04-27","href":"https://www.w3.org/TR/2006/WD-WCAG20-TECHS-20060427/","source":"./data/w3c-specs.txt"},"20070517":{"status":"WD","rawDate":"2007-05-17","href":"https://www.w3.org/TR/2007/WD-WCAG20-TECHS-20070517/","source":"./data/w3c-specs.txt"},"20071211":{"status":"WD","rawDate":"2007-12-11","href":"https://www.w3.org/TR/2007/WD-WCAG20-TECHS-20071211/","source":"./data/w3c-specs.txt"},"20080430":{"status":"WD","rawDate":"2008-04-30","href":"https://www.w3.org/TR/2008/WD-WCAG20-TECHS-20080430/","source":"./data/w3c-specs.txt"},"20081103":{"status":"WD","rawDate":"2008-11-03","href":"https://www.w3.org/TR/2008/WD-WCAG20-TECHS-20081103/","source":"./data/w3c-specs.txt"},"20081211":{"status":"NOTE","rawDate":"2008-12-11","href":"https://www.w3.org/TR/2008/NOTE-WCAG20-TECHS-20081211/","source":"./data/w3c-specs.txt"},"20101014":{"status":"NOTE","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/NOTE-WCAG20-TECHS-20101014/","source":"./data/w3c-specs.txt"},"20120103":{"authors":["Michael Cooper","Loretta Guarino Reid","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/2012/NOTE-WCAG20-TECHS-20120103/","title":"Techniques for WCAG 2.0","rawDate":"2012-01-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130905":{"authors":["Michael Cooper","Loretta Guarino Reid","Andrew Kirkpatrick","Joshue O Connor","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/","title":"Techniques for WCAG 2.0","rawDate":"2013-09-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140311":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2014/NOTE-WCAG20-TECHS-20140311/","title":"Techniques for WCAG 2.0","rawDate":"2014-03-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2014/NOTE-WCAG20-TECHS-20140408/","title":"Techniques for WCAG 2.0","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140916":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2014/NOTE-WCAG20-TECHS-20140916/","title":"Techniques for WCAG 2.0","rawDate":"2014-09-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150226":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2015/NOTE-WCAG20-TECHS-20150226/","title":"Techniques for WCAG 2.0","rawDate":"2015-02-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O Connor"],"href":"https://www.w3.org/TR/2016/NOTE-WCAG20-TECHS-20160317/","title":"Techniques for WCAG 2.0","rawDate":"2016-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161007":{"href":"https://www.w3.org/TR/2016/NOTE-WCAG20-TECHS-20161007/","title":"Techniques for WCAG 2.0","rawDate":"2016-10-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"]}},"rawDate":"2016-10-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WCAG21":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor","Alastair Campbell"],"href":"https://www.w3.org/TR/WCAG21/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2023-09-21","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wcag/guidelines/22/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170228":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20170228/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170419":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20170419/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170630":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20170630/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170728":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20170728/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170816":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20170816/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170912":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20170912/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171207":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper","Ben Caldwell","Loretta Guarino Reid","Gregg Vanderheiden","Wendy Chisholm","John Slatin","Jason White"],"href":"https://www.w3.org/TR/2017/WD-WCAG21-20171207/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2017-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180130":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2018/CR-WCAG21-20180130/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2018-01-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180424":{"authors":["Andrew Kirkpatrick","Joshue O Connor","Michael Cooper"],"href":"https://www.w3.org/TR/2018/PR-WCAG21-20180424/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2018-04-24","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180605":{"authors":["Andrew Kirkpatrick","Joshue O'Connor","Alastair Campbell","Michael Cooper"],"href":"https://www.w3.org/TR/2018/REC-WCAG21-20180605/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2018-06-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"hasErrata":"https://www.w3.org/WAI/WCAG21/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor","Alastair Campbell"],"href":"https://www.w3.org/TR/2023/REC-WCAG21-20230921/","title":"Web Content Accessibility Guidelines (WCAG) 2.1","rawDate":"2023-09-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wcag21","hasErrata":"https://www.w3.org/WAI/WCAG21/errata/"},"WCAG22":{"authors":["Michael Cooper","Andrew Kirkpatrick","Alastair Campbell","Rachael Bradley Montgomery","Charles Adams"],"href":"https://www.w3.org/TR/WCAG22/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2023-10-05","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wcag/guidelines/22/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200227":{"authors":["Andrew Kirkpatrick","Alastair Campbell","Michael Cooper"],"href":"https://www.w3.org/TR/2020/WD-WCAG22-20200227/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2020-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200811":{"authors":["Charles Adams","Alastair Campbell","Rachael Bradley Montgomery","Michael Cooper","Andrew Kirkpatrick"],"href":"https://www.w3.org/TR/2020/WD-WCAG22-20200811/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2020-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Charles Adams","Alastair Campbell","Rachael Bradley Montgomery","Michael Cooper","Andrew Kirkpatrick"],"href":"https://www.w3.org/TR/2021/WD-WCAG22-20210513/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Charles Adams","Alastair Campbell","Rachael Bradley Montgomery","Michael Cooper","Andrew Kirkpatrick"],"href":"https://www.w3.org/TR/2021/WD-WCAG22-20210521/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Charles Adams","Alastair Campbell","Rachael Bradley Montgomery","Michael Cooper","Andrew Kirkpatrick"],"href":"https://www.w3.org/TR/2022/CR-WCAG22-20220906/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2022-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Charles Adams","Alastair Campbell","Rachael Bradley Montgomery","Michael Cooper","Andrew Kirkpatrick"],"href":"https://www.w3.org/TR/2023/CRD-WCAG22-20230125/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2023-01-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230517":{"authors":["Charles Adams","Alastair Campbell","Rachael Bradley Montgomery","Michael Cooper","Andrew Kirkpatrick"],"href":"https://www.w3.org/TR/2023/CRD-WCAG22-20230517/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2023-05-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Michael Cooper","Andrew Kirkpatrick","Alastair Campbell","Rachael Bradley Montgomery","Charles Adams"],"href":"https://www.w3.org/TR/2023/PR-WCAG22-20230720/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2023-07-20","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231005":{"authors":["Michael Cooper","Andrew Kirkpatrick","Alastair Campbell","Rachael Bradley Montgomery","Charles Adams"],"href":"https://www.w3.org/TR/2023/REC-WCAG22-20231005/","title":"Web Content Accessibility Guidelines (WCAG) 2.2","rawDate":"2023-10-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wcag"},"WD-charreq":{"aliasOf":"charreq"},"WGSL":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/WGSL/","title":"WebGPU Shading Language","rawDate":"2024-02-05","status":"WD","publisher":"W3C","edDraft":"https://gpuweb.github.io/gpuweb/wgsl/","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210518":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210518/","title":"WebGPU Shading Language","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210526/","title":"WebGPU Shading Language","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210527/","title":"WebGPU Shading Language","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210528":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210528/","title":"WebGPU Shading Language","rawDate":"2021-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210531":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210531/","title":"WebGPU Shading Language","rawDate":"2021-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210601/","title":"WebGPU Shading Language","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210602":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210602/","title":"WebGPU Shading Language","rawDate":"2021-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210603/","title":"WebGPU Shading Language","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210604/","title":"WebGPU Shading Language","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210608/","title":"WebGPU Shading Language","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210609":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210609/","title":"WebGPU Shading Language","rawDate":"2021-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210610":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210610/","title":"WebGPU Shading Language","rawDate":"2021-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210614":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210614/","title":"WebGPU Shading Language","rawDate":"2021-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210615":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210615/","title":"WebGPU Shading Language","rawDate":"2021-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210616/","title":"WebGPU Shading Language","rawDate":"2021-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210617/","title":"WebGPU Shading Language","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210618":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210618/","title":"WebGPU Shading Language","rawDate":"2021-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210620":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210620/","title":"WebGPU Shading Language","rawDate":"2021-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210622":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210622/","title":"WebGPU Shading Language","rawDate":"2021-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210623":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210623/","title":"WebGPU Shading Language","rawDate":"2021-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210628":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210628/","title":"WebGPU Shading Language","rawDate":"2021-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210629":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210629/","title":"WebGPU Shading Language","rawDate":"2021-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210630":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210630/","title":"WebGPU Shading Language","rawDate":"2021-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210706":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210706/","title":"WebGPU Shading Language","rawDate":"2021-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210707":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210707/","title":"WebGPU Shading Language","rawDate":"2021-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210708":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210708/","title":"WebGPU Shading Language","rawDate":"2021-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210711":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210711/","title":"WebGPU Shading Language","rawDate":"2021-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210712/","title":"WebGPU Shading Language","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210713":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210713/","title":"WebGPU Shading Language","rawDate":"2021-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210714":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210714/","title":"WebGPU Shading Language","rawDate":"2021-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210715/","title":"WebGPU Shading Language","rawDate":"2021-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210716":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210716/","title":"WebGPU Shading Language","rawDate":"2021-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210717":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210717/","title":"WebGPU Shading Language","rawDate":"2021-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210719":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210719/","title":"WebGPU Shading Language","rawDate":"2021-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210720":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210720/","title":"WebGPU Shading Language","rawDate":"2021-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210721":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210721/","title":"WebGPU Shading Language","rawDate":"2021-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210722":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210722/","title":"WebGPU Shading Language","rawDate":"2021-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210723":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210723/","title":"WebGPU Shading Language","rawDate":"2021-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210726":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210726/","title":"WebGPU Shading Language","rawDate":"2021-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210727":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210727/","title":"WebGPU Shading Language","rawDate":"2021-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210728":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210728/","title":"WebGPU Shading Language","rawDate":"2021-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210803":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210803/","title":"WebGPU Shading Language","rawDate":"2021-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210804":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210804/","title":"WebGPU Shading Language","rawDate":"2021-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210806":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210806/","title":"WebGPU Shading Language","rawDate":"2021-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210818":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210818/","title":"WebGPU Shading Language","rawDate":"2021-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210823/","title":"WebGPU Shading Language","rawDate":"2021-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210824/","title":"WebGPU Shading Language","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210825/","title":"WebGPU Shading Language","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210826/","title":"WebGPU Shading Language","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210831/","title":"WebGPU Shading Language","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210908/","title":"WebGPU Shading Language","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210910":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210910/","title":"WebGPU Shading Language","rawDate":"2021-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210920":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210920/","title":"WebGPU Shading Language","rawDate":"2021-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210921/","title":"WebGPU Shading Language","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210928/","title":"WebGPU Shading Language","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20210929/","title":"WebGPU Shading Language","rawDate":"2021-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211004":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211004/","title":"WebGPU Shading Language","rawDate":"2021-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211006":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211006/","title":"WebGPU Shading Language","rawDate":"2021-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211012/","title":"WebGPU Shading Language","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211013/","title":"WebGPU Shading Language","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211014":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211014/","title":"WebGPU Shading Language","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211015":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211015/","title":"WebGPU Shading Language","rawDate":"2021-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211018":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211018/","title":"WebGPU Shading Language","rawDate":"2021-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211019":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211019/","title":"WebGPU Shading Language","rawDate":"2021-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211022":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211022/","title":"WebGPU Shading Language","rawDate":"2021-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211025/","title":"WebGPU Shading Language","rawDate":"2021-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211026/","title":"WebGPU Shading Language","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211028":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211028/","title":"WebGPU Shading Language","rawDate":"2021-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211029/","title":"WebGPU Shading Language","rawDate":"2021-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211101/","title":"WebGPU Shading Language","rawDate":"2021-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211102":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211102/","title":"WebGPU Shading Language","rawDate":"2021-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211112":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211112/","title":"WebGPU Shading Language","rawDate":"2021-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211113":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211113/","title":"WebGPU Shading Language","rawDate":"2021-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211116":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211116/","title":"WebGPU Shading Language","rawDate":"2021-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211117/","title":"WebGPU Shading Language","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211118":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211118/","title":"WebGPU Shading Language","rawDate":"2021-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211119/","title":"WebGPU Shading Language","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211123/","title":"WebGPU Shading Language","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211124":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211124/","title":"WebGPU Shading Language","rawDate":"2021-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211125/","title":"WebGPU Shading Language","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211129":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211129/","title":"WebGPU Shading Language","rawDate":"2021-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211130":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211130/","title":"WebGPU Shading Language","rawDate":"2021-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211201":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211201/","title":"WebGPU Shading Language","rawDate":"2021-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211202/","title":"WebGPU Shading Language","rawDate":"2021-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211203/","title":"WebGPU Shading Language","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211205":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211205/","title":"WebGPU Shading Language","rawDate":"2021-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211206":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211206/","title":"WebGPU Shading Language","rawDate":"2021-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211207/","title":"WebGPU Shading Language","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211208/","title":"WebGPU Shading Language","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211210":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211210/","title":"WebGPU Shading Language","rawDate":"2021-12-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211214":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211214/","title":"WebGPU Shading Language","rawDate":"2021-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211215/","title":"WebGPU Shading Language","rawDate":"2021-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211216/","title":"WebGPU Shading Language","rawDate":"2021-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211220":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211220/","title":"WebGPU Shading Language","rawDate":"2021-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211221":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211221/","title":"WebGPU Shading Language","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211222":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211222/","title":"WebGPU Shading Language","rawDate":"2021-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211223":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211223/","title":"WebGPU Shading Language","rawDate":"2021-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211224/","title":"WebGPU Shading Language","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211228":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211228/","title":"WebGPU Shading Language","rawDate":"2021-12-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211229":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211229/","title":"WebGPU Shading Language","rawDate":"2021-12-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211230":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2021/WD-WGSL-20211230/","title":"WebGPU Shading Language","rawDate":"2021-12-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220104":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220104/","title":"WebGPU Shading Language","rawDate":"2022-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220105/","title":"WebGPU Shading Language","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220106":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220106/","title":"WebGPU Shading Language","rawDate":"2022-01-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220107":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220107/","title":"WebGPU Shading Language","rawDate":"2022-01-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220110":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220110/","title":"WebGPU Shading Language","rawDate":"2022-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220111":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220111/","title":"WebGPU Shading Language","rawDate":"2022-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220112":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220112/","title":"WebGPU Shading Language","rawDate":"2022-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220113":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220113/","title":"WebGPU Shading Language","rawDate":"2022-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220117":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220117/","title":"WebGPU Shading Language","rawDate":"2022-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220118":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220118/","title":"WebGPU Shading Language","rawDate":"2022-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220119/","title":"WebGPU Shading Language","rawDate":"2022-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220125/","title":"WebGPU Shading Language","rawDate":"2022-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220126/","title":"WebGPU Shading Language","rawDate":"2022-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220127":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220127/","title":"WebGPU Shading Language","rawDate":"2022-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220128":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220128/","title":"WebGPU Shading Language","rawDate":"2022-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220131":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220131/","title":"WebGPU Shading Language","rawDate":"2022-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220202/","title":"WebGPU Shading Language","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220203/","title":"WebGPU Shading Language","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220204":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220204/","title":"WebGPU Shading Language","rawDate":"2022-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220205":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220205/","title":"WebGPU Shading Language","rawDate":"2022-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220207":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220207/","title":"WebGPU Shading Language","rawDate":"2022-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220208":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220208/","title":"WebGPU Shading Language","rawDate":"2022-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220209/","title":"WebGPU Shading Language","rawDate":"2022-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220210/","title":"WebGPU Shading Language","rawDate":"2022-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220211":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220211/","title":"WebGPU Shading Language","rawDate":"2022-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220214":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220214/","title":"WebGPU Shading Language","rawDate":"2022-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220215/","title":"WebGPU Shading Language","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220217":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220217/","title":"WebGPU Shading Language","rawDate":"2022-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220218":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220218/","title":"WebGPU Shading Language","rawDate":"2022-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220222":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220222/","title":"WebGPU Shading Language","rawDate":"2022-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220223/","title":"WebGPU Shading Language","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220224/","title":"WebGPU Shading Language","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220225/","title":"WebGPU Shading Language","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220302":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220302/","title":"WebGPU Shading Language","rawDate":"2022-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220303":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220303/","title":"WebGPU Shading Language","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220310/","title":"WebGPU Shading Language","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220315":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220315/","title":"WebGPU Shading Language","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220316/","title":"WebGPU Shading Language","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220319":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220319/","title":"WebGPU Shading Language","rawDate":"2022-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220321/","title":"WebGPU Shading Language","rawDate":"2022-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220323":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220323/","title":"WebGPU Shading Language","rawDate":"2022-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220324/","title":"WebGPU Shading Language","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220325":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220325/","title":"WebGPU Shading Language","rawDate":"2022-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220326":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220326/","title":"WebGPU Shading Language","rawDate":"2022-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220328/","title":"WebGPU Shading Language","rawDate":"2022-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220329":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220329/","title":"WebGPU Shading Language","rawDate":"2022-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220331/","title":"WebGPU Shading Language","rawDate":"2022-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220403":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220403/","title":"WebGPU Shading Language","rawDate":"2022-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220404":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220404/","title":"WebGPU Shading Language","rawDate":"2022-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220506":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220506/","title":"WebGPU Shading Language","rawDate":"2022-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220509":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220509/","title":"WebGPU Shading Language","rawDate":"2022-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220510":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220510/","title":"WebGPU Shading Language","rawDate":"2022-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220511":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220511/","title":"WebGPU Shading Language","rawDate":"2022-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220512":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220512/","title":"WebGPU Shading Language","rawDate":"2022-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220513":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220513/","title":"WebGPU Shading Language","rawDate":"2022-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220516":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220516/","title":"WebGPU Shading Language","rawDate":"2022-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220517/","title":"WebGPU Shading Language","rawDate":"2022-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220518":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220518/","title":"WebGPU Shading Language","rawDate":"2022-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220520":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220520/","title":"WebGPU Shading Language","rawDate":"2022-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220603":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220603/","title":"WebGPU Shading Language","rawDate":"2022-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220606":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220606/","title":"WebGPU Shading Language","rawDate":"2022-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220607/","title":"WebGPU Shading Language","rawDate":"2022-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220608/","title":"WebGPU Shading Language","rawDate":"2022-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220609/","title":"WebGPU Shading Language","rawDate":"2022-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220610/","title":"WebGPU Shading Language","rawDate":"2022-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220611":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220611/","title":"WebGPU Shading Language","rawDate":"2022-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220613":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220613/","title":"WebGPU Shading Language","rawDate":"2022-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220614":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220614/","title":"WebGPU Shading Language","rawDate":"2022-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220616":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220616/","title":"WebGPU Shading Language","rawDate":"2022-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220617/","title":"WebGPU Shading Language","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220623":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220623/","title":"WebGPU Shading Language","rawDate":"2022-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220624/","title":"WebGPU Shading Language","rawDate":"2022-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220627":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220627/","title":"WebGPU Shading Language","rawDate":"2022-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220628/","title":"WebGPU Shading Language","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220629":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220629/","title":"WebGPU Shading Language","rawDate":"2022-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220704":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220704/","title":"WebGPU Shading Language","rawDate":"2022-07-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220705":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220705/","title":"WebGPU Shading Language","rawDate":"2022-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220706/","title":"WebGPU Shading Language","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220707":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220707/","title":"WebGPU Shading Language","rawDate":"2022-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220708":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220708/","title":"WebGPU Shading Language","rawDate":"2022-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220710":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220710/","title":"WebGPU Shading Language","rawDate":"2022-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220803/","title":"WebGPU Shading Language","rawDate":"2022-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220804":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220804/","title":"WebGPU Shading Language","rawDate":"2022-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["David Neto","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220810/","title":"WebGPU Shading Language","rawDate":"2022-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220811":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220811/","title":"WebGPU Shading Language","rawDate":"2022-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220812":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220812/","title":"WebGPU Shading Language","rawDate":"2022-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220815":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220815/","title":"WebGPU Shading Language","rawDate":"2022-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220816/","title":"WebGPU Shading Language","rawDate":"2022-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220817/","title":"WebGPU Shading Language","rawDate":"2022-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220818/","title":"WebGPU Shading Language","rawDate":"2022-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220824":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220824/","title":"WebGPU Shading Language","rawDate":"2022-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220825":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220825/","title":"WebGPU Shading Language","rawDate":"2022-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220829/","title":"WebGPU Shading Language","rawDate":"2022-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220830":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220830/","title":"WebGPU Shading Language","rawDate":"2022-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220831/","title":"WebGPU Shading Language","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220908/","title":"WebGPU Shading Language","rawDate":"2022-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220909":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220909/","title":"WebGPU Shading Language","rawDate":"2022-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220910":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220910/","title":"WebGPU Shading Language","rawDate":"2022-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220912":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220912/","title":"WebGPU Shading Language","rawDate":"2022-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220913":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220913/","title":"WebGPU Shading Language","rawDate":"2022-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220915":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220915/","title":"WebGPU Shading Language","rawDate":"2022-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220916/","title":"WebGPU Shading Language","rawDate":"2022-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220919/","title":"WebGPU Shading Language","rawDate":"2022-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220920/","title":"WebGPU Shading Language","rawDate":"2022-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220921/","title":"WebGPU Shading Language","rawDate":"2022-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220922":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20220922/","title":"WebGPU Shading Language","rawDate":"2022-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221003/","title":"WebGPU Shading Language","rawDate":"2022-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221004":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221004/","title":"WebGPU Shading Language","rawDate":"2022-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221005":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221005/","title":"WebGPU Shading Language","rawDate":"2022-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221007":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221007/","title":"WebGPU Shading Language","rawDate":"2022-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221011":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221011/","title":"WebGPU Shading Language","rawDate":"2022-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221014/","title":"WebGPU Shading Language","rawDate":"2022-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221018/","title":"WebGPU Shading Language","rawDate":"2022-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221027/","title":"WebGPU Shading Language","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221031":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221031/","title":"WebGPU Shading Language","rawDate":"2022-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221101/","title":"WebGPU Shading Language","rawDate":"2022-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221102":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221102/","title":"WebGPU Shading Language","rawDate":"2022-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221107":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221107/","title":"WebGPU Shading Language","rawDate":"2022-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221109":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221109/","title":"WebGPU Shading Language","rawDate":"2022-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221125":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221125/","title":"WebGPU Shading Language","rawDate":"2022-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221128":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221128/","title":"WebGPU Shading Language","rawDate":"2022-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221130":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221130/","title":"WebGPU Shading Language","rawDate":"2022-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221207/","title":"WebGPU Shading Language","rawDate":"2022-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221208/","title":"WebGPU Shading Language","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221223":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2022/WD-WGSL-20221223/","title":"WebGPU Shading Language","rawDate":"2022-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230103":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230103/","title":"WebGPU Shading Language","rawDate":"2023-01-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230104/","title":"WebGPU Shading Language","rawDate":"2023-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230126":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230126/","title":"WebGPU Shading Language","rawDate":"2023-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230128":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230128/","title":"WebGPU Shading Language","rawDate":"2023-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230130/","title":"WebGPU Shading Language","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230201/","title":"WebGPU Shading Language","rawDate":"2023-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230202/","title":"WebGPU Shading Language","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230206":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230206/","title":"WebGPU Shading Language","rawDate":"2023-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230207":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230207/","title":"WebGPU Shading Language","rawDate":"2023-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230209/","title":"WebGPU Shading Language","rawDate":"2023-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230213":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230213/","title":"WebGPU Shading Language","rawDate":"2023-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230218":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230218/","title":"WebGPU Shading Language","rawDate":"2023-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230221":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230221/","title":"WebGPU Shading Language","rawDate":"2023-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230222/","title":"WebGPU Shading Language","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230223":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230223/","title":"WebGPU Shading Language","rawDate":"2023-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230224":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230224/","title":"WebGPU Shading Language","rawDate":"2023-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230227":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230227/","title":"WebGPU Shading Language","rawDate":"2023-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230301":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230301/","title":"WebGPU Shading Language","rawDate":"2023-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230302":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230302/","title":"WebGPU Shading Language","rawDate":"2023-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230303/","title":"WebGPU Shading Language","rawDate":"2023-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230306":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230306/","title":"WebGPU Shading Language","rawDate":"2023-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230307/","title":"WebGPU Shading Language","rawDate":"2023-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230308/","title":"WebGPU Shading Language","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230309":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230309/","title":"WebGPU Shading Language","rawDate":"2023-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230310/","title":"WebGPU Shading Language","rawDate":"2023-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230314":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230314/","title":"WebGPU Shading Language","rawDate":"2023-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230316":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230316/","title":"WebGPU Shading Language","rawDate":"2023-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230317/","title":"WebGPU Shading Language","rawDate":"2023-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230320":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230320/","title":"WebGPU Shading Language","rawDate":"2023-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230323":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230323/","title":"WebGPU Shading Language","rawDate":"2023-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230324":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230324/","title":"WebGPU Shading Language","rawDate":"2023-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230329/","title":"WebGPU Shading Language","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230331":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230331/","title":"WebGPU Shading Language","rawDate":"2023-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230404":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230404/","title":"WebGPU Shading Language","rawDate":"2023-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230407":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230407/","title":"WebGPU Shading Language","rawDate":"2023-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230411":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230411/","title":"WebGPU Shading Language","rawDate":"2023-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230412":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230412/","title":"WebGPU Shading Language","rawDate":"2023-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230413/","title":"WebGPU Shading Language","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230417":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230417/","title":"WebGPU Shading Language","rawDate":"2023-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230418":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230418/","title":"WebGPU Shading Language","rawDate":"2023-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230419/","title":"WebGPU Shading Language","rawDate":"2023-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230424":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230424/","title":"WebGPU Shading Language","rawDate":"2023-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230501":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230501/","title":"WebGPU Shading Language","rawDate":"2023-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230503":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230503/","title":"WebGPU Shading Language","rawDate":"2023-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230523":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230523/","title":"WebGPU Shading Language","rawDate":"2023-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230529":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230529/","title":"WebGPU Shading Language","rawDate":"2023-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230530/","title":"WebGPU Shading Language","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230531":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230531/","title":"WebGPU Shading Language","rawDate":"2023-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230608":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230608/","title":"WebGPU Shading Language","rawDate":"2023-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230626/","title":"WebGPU Shading Language","rawDate":"2023-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230629/","title":"WebGPU Shading Language","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230703/","title":"WebGPU Shading Language","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230704":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230704/","title":"WebGPU Shading Language","rawDate":"2023-07-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230705/","title":"WebGPU Shading Language","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230710":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230710/","title":"WebGPU Shading Language","rawDate":"2023-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230712/","title":"WebGPU Shading Language","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230717":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230717/","title":"WebGPU Shading Language","rawDate":"2023-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230719/","title":"WebGPU Shading Language","rawDate":"2023-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230721/","title":"WebGPU Shading Language","rawDate":"2023-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230726/","title":"WebGPU Shading Language","rawDate":"2023-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230731":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230731/","title":"WebGPU Shading Language","rawDate":"2023-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230801":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230801/","title":"WebGPU Shading Language","rawDate":"2023-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230802":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230802/","title":"WebGPU Shading Language","rawDate":"2023-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230906":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230906/","title":"WebGPU Shading Language","rawDate":"2023-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230926":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230926/","title":"WebGPU Shading Language","rawDate":"2023-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230927":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20230927/","title":"WebGPU Shading Language","rawDate":"2023-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231004/","title":"WebGPU Shading Language","rawDate":"2023-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231006/","title":"WebGPU Shading Language","rawDate":"2023-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231011":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231011/","title":"WebGPU Shading Language","rawDate":"2023-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231012/","title":"WebGPU Shading Language","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231020":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231020/","title":"WebGPU Shading Language","rawDate":"2023-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231031/","title":"WebGPU Shading Language","rawDate":"2023-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231120":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231120/","title":"WebGPU Shading Language","rawDate":"2023-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231123/","title":"WebGPU Shading Language","rawDate":"2023-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2023/WD-WGSL-20231204/","title":"WebGPU Shading Language","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240104":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2024/WD-WGSL-20240104/","title":"WebGPU Shading Language","rawDate":"2024-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240110":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2024/WD-WGSL-20240110/","title":"WebGPU Shading Language","rawDate":"2024-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240115":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2024/WD-WGSL-20240115/","title":"WebGPU Shading Language","rawDate":"2024-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240205":{"authors":["Alan Baker","Mehmet Oguz Derin","David Neto"],"href":"https://www.w3.org/TR/2024/WD-WGSL-20240205/","title":"WebGPU Shading Language","rawDate":"2024-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/gpuweb/gpuweb"},"WICD":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"etAl":true,"href":"https://www.w3.org/TR/WICD/","title":"WICD Core 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"versions":{"20050809":{"status":"WD","rawDate":"2005-08-09","href":"https://www.w3.org/TR/2005/WD-WICD-20050809/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-WICD-20050915/","source":"./data/w3c-specs.txt"},"20051121":{"status":"WD","rawDate":"2005-11-21","href":"https://www.w3.org/TR/2005/WD-WICD-20051121/","source":"./data/w3c-specs.txt"},"20051219":{"status":"WD","rawDate":"2005-12-19","href":"https://www.w3.org/TR/2005/WD-WICD-20051219/","source":"./data/w3c-specs.txt"},"20060811":{"status":"WD","rawDate":"2006-08-11","href":"https://www.w3.org/TR/2006/WD-WICD-20060811/","source":"./data/w3c-specs.txt"},"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-WICD-20061122/","source":"./data/w3c-specs.txt"},"20070718":{"status":"CR","rawDate":"2007-07-18","href":"https://www.w3.org/TR/2007/CR-WICD-20070718/","source":"./data/w3c-specs.txt"},"20100819":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"href":"https://www.w3.org/TR/2010/NOTE-WICD-20100819/","title":"WICD Core 1.0","rawDate":"2010-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-08-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"WICDFull":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"etAl":true,"href":"https://www.w3.org/TR/WICDFull/","title":"WICD Full 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"versions":{"20051121":{"status":"WD","rawDate":"2005-11-21","href":"https://www.w3.org/TR/2005/WD-WICDFull-20051121/","source":"./data/w3c-specs.txt"},"20051219":{"status":"WD","rawDate":"2005-12-19","href":"https://www.w3.org/TR/2005/WD-WICDFull-20051219/","source":"./data/w3c-specs.txt"},"20060811":{"status":"WD","rawDate":"2006-08-11","href":"https://www.w3.org/TR/2006/WD-WICDFull-20060811/","source":"./data/w3c-specs.txt"},"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-WICDFull-20061122/","source":"./data/w3c-specs.txt"},"20070718":{"status":"CR","rawDate":"2007-07-18","href":"https://www.w3.org/TR/2007/CR-WICDFull-20070718/","source":"./data/w3c-specs.txt"},"20100819":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"href":"https://www.w3.org/TR/2010/NOTE-WICDFull-20100819/","title":"WICD Full 1.0","rawDate":"2010-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-08-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"WICDMobile":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"etAl":true,"href":"https://www.w3.org/TR/WICDMobile/","title":"WICD Mobile 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"versions":{"20051121":{"status":"WD","rawDate":"2005-11-21","href":"https://www.w3.org/TR/2005/WD-WICDMobile-20051121/","source":"./data/w3c-specs.txt"},"20051219":{"status":"WD","rawDate":"2005-12-19","href":"https://www.w3.org/TR/2005/WD-WICDMobile-20051219/","source":"./data/w3c-specs.txt"},"20060811":{"status":"WD","rawDate":"2006-08-11","href":"https://www.w3.org/TR/2006/WD-WICDMobile-20060811/","source":"./data/w3c-specs.txt"},"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-WICDMobile-20061122/","source":"./data/w3c-specs.txt"},"20070718":{"status":"CR","rawDate":"2007-07-18","href":"https://www.w3.org/TR/2007/CR-WICDMobile-20070718/","source":"./data/w3c-specs.txt"},"20100819":{"authors":["Timur Mehrvarz","Lasse Pajunen","Julien Quint","Daniel Appelquist"],"href":"https://www.w3.org/TR/2010/NOTE-WICDMobile-20100819/","title":"WICD Mobile 1.0","rawDate":"2010-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2004/CDF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-08-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"WOFF":{"authors":["Jonathan Kew","Tal Leming","Erik van Blokland"],"href":"https://www.w3.org/TR/WOFF/","title":"WOFF File Format 1.0","status":"REC","publisher":"W3C","versions":{"20100727":{"status":"WD","rawDate":"2010-07-27","href":"https://www.w3.org/TR/2010/WD-WOFF-20100727","source":"./data/w3c-specs.txt"},"20101116":{"status":"WD","rawDate":"2010-11-16","href":"https://www.w3.org/TR/2010/WD-WOFF-20101116","source":"./data/w3c-specs.txt"},"20110804":{"status":"CR","rawDate":"2011-08-04","href":"https://www.w3.org/TR/2011/CR-WOFF-20110804/","source":"./data/w3c-specs.txt"},"20121011":{"status":"PR","rawDate":"2012-10-11","href":"https://www.w3.org/TR/2012/PR-WOFF-20121011/","source":"./data/w3c-specs.txt"},"20121213":{"authors":["Jonathan Kew","Tal Leming","Erik van Blokland"],"href":"https://www.w3.org/TR/2012/REC-WOFF-20121213/","title":"WOFF File Format 1.0","rawDate":"2012-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"hasErrata":"https://www.w3.org/Fonts/REC-WOFF-20121213-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/Fonts/WG/"],"hasErrata":"https://www.w3.org/Fonts/REC-WOFF-20121213-errata.html","rawDate":"2012-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"WOFF2":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/WOFF2/","title":"WOFF File Format 2.0","rawDate":"2022-03-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140508":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2014/WD-WOFF2-20140508/","title":"WOFF File Format 2.0","rawDate":"2014-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150414":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2015/WD-WOFF2-20150414/","title":"WOFF File Format 2.0","rawDate":"2015-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160315":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2016/CR-WOFF2-20160315/","title":"WOFF File Format 2.0","rawDate":"2016-03-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180111":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2018/PR-WOFF2-20180111/","title":"WOFF File Format 2.0","rawDate":"2018-01-11","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180301":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2018/REC-WOFF2-20180301/","title":"WOFF File Format 2.0","rawDate":"2018-03-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"hasErrata":"https://www.w3.org/Fonts/REC-WOFF2-20180301-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210706":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2021/REC-WOFF2-20210706/","title":"WOFF File Format 2.0","rawDate":"2021-07-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"hasErrata":"https://www.w3.org/Fonts/REC-WOFF2-20210706-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Vladimir Levantovsky","Raph Levien"],"href":"https://www.w3.org/TR/2022/REC-WOFF2-20220310/","title":"WOFF File Format 2.0","rawDate":"2022-03-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/woff/woff2/","repository":"https://github.com/w3c/woff","hasErrata":"https://www.w3.org/Fonts/REC-WOFF2-20210706-errata.html"},"WOFF20ER":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/WOFF20ER/","title":"WOFF 2.0 Evaluation Report","rawDate":"2016-03-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140128":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2014/WD-WOFF20ER-20140128/","title":"WOFF 2.0 Evaluation Report","rawDate":"2014-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150414":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2015/WD-WOFF20ER-20150414/","title":"WOFF 2.0 Evaluation Report","rawDate":"2015-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160315":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2016/NOTE-WOFF20ER-20160315/","title":"WOFF 2.0 Evaluation Report","rawDate":"2016-03-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/Fonts/WG/WOFF2ER/"},"WebCGM":{"authors":["David Cruikshank","Lofton Henderson"],"etAl":true,"href":"https://www.w3.org/TR/REC-WebCGM/","title":"WebCGM 1.0 Second Release","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/Graphics/WebCGM-20011217-errata","versions":{"19980819":{"status":"NOTE","rawDate":"1998-08-19","href":"https://www.w3.org/TR/1998/NOTE-WebCGM-19980819","source":"./data/w3c-specs.txt"},"19981104":{"status":"NOTE","rawDate":"1998-11-04","href":"https://www.w3.org/TR/1998/NOTE-WebCGM-19981104","source":"./data/w3c-specs.txt"},"19981207":{"status":"PR","rawDate":"1998-12-07","href":"https://www.w3.org/TR/1998/PR-WebCGM-19981207","source":"./data/w3c-specs.txt"},"19990121":{"authors":["David Cruikshank","Lofton Henderson"],"href":"https://www.w3.org/TR/1999/REC-WebCGM-19990121/","title":"WebCGM Profile Recommendation","rawDate":"1999-01-21","publisher":"W3C","hasErrata":"https://www.w3.org/Graphics/WebCGM-20011217-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20011217":{"authors":["David Cruikshank","Lofton Henderson"],"href":"https://www.w3.org/TR/2001/REC-WebCGM-20011217/","title":"WebCGM 1.0 Second Release","rawDate":"2001-12-17","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/Graphics/WebCGM-20011217-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["David Cruikshank","Lofton Henderson"],"href":"https://www.w3.org/TR/2019/SPSD-WebCGM-20191205","title":"WebCGM 1.0 Second Release","rawDate":"2019-12-05","status":"REC","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2019-12-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["webcgm21"]},"WebCryptoAPI":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/WebCryptoAPI/","title":"Web Cryptography API","rawDate":"2017-01-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120913":{"status":"WD","rawDate":"2012-09-13","href":"https://www.w3.org/TR/2012/WD-WebCryptoAPI-20120913/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["David Dahl","Ryan Sleevi"],"href":"https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130108/","title":"Web Cryptography API","rawDate":"2013-01-08","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["David Dahl","Ryan Sleevi"],"href":"https://www.w3.org/TR/2013/WD-WebCryptoAPI-20130625/","title":"Web Cryptography API","rawDate":"2013-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140325":{"authors":["Ryan Sleevi","Mark Watson"],"href":"https://www.w3.org/TR/2014/WD-WebCryptoAPI-20140325/","title":"Web Cryptography API","rawDate":"2014-03-25","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141211":{"authors":["Ryan Sleevi","Mark Watson"],"href":"https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/","title":"Web Cryptography API","rawDate":"2014-12-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/2016/PR-WebCryptoAPI-20161215/","title":"Web Cryptography API","rawDate":"2016-12-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170126":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/2017/REC-WebCryptoAPI-20170126/","title":"Web Cryptography API","rawDate":"2017-01-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"hasErrata":"https://w3c.github.io/webcrypto/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/webcrypto/","hasErrata":"https://w3c.github.io/webcrypto/errata.html","repository":"https://github.com/w3c/webcrypto"},"WebIDL-1":{"aliasOf":"WEBIDL"},"WebIDL-1-20071017":{"aliasOf":"WebIDL-20071017"},"WebIDL-1-20080410":{"aliasOf":"WebIDL-20080410"},"WebIDL-1-20080829":{"aliasOf":"WebIDL-20080829"},"WebIDL-1-20081219":{"aliasOf":"WebIDL-20081219"},"WebIDL-1-20101021":{"aliasOf":"WebIDL-20101021"},"WebIDL-1-20110712":{"aliasOf":"WebIDL-20110712"},"WebIDL-1-20110927":{"aliasOf":"WebIDL-20110927"},"WebIDL-1-20120207":{"aliasOf":"WebIDL-20120207"},"WebIDL-1-20120419":{"aliasOf":"WebIDL-20120419"},"WebIDL-1-20150804":{"aliasOf":"WebIDL-20150804"},"WebIDL-1-20160308":{"aliasOf":"WebIDL-20160308"},"WebIDL-1-20160915":{"aliasOf":"WebIDL-20160915"},"WebIDL-1-20161215":{"aliasOf":"WebIDL-20161215"},"WebIDL-Java":{"authors":["Cameron McCormack"],"href":"https://www.w3.org/TR/WebIDL-Java/","title":"Java language binding for Web IDL","rawDate":"2013-05-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120207":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2012-02-07","href":"https://www.w3.org/TR/2012/WD-WebIDL-Java-20120207/","source":"./data/w3c-specs.txt"},"20130514":{"authors":["Cameron McCormack"],"href":"https://www.w3.org/TR/2013/NOTE-WebIDL-Java-20130514/","title":"Java language binding for Web IDL","rawDate":"2013-05-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"WebSimpleDB":{"aliasOf":"IndexedDB"},"Window":{"authors":["Ian Davis","Maciej Stachowiak"],"href":"https://www.w3.org/TR/Window/","title":"Window Object 1.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/webapi/"],"versions":{"20060407":{"authors":["Ian Davis","Maciej Stachowiak"],"href":"https://www.w3.org/TR/2006/WD-Window-20060407/","title":"Window Object 1.0","rawDate":"2006-04-07","publisher":"W3C","isSuperseded":true,"deliveredBy":["https://www.w3.org/2006/webapi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2006-04-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["html5"]},"XFDL":{"versions":{"19980902":{"status":"NOTE","rawDate":"1998-09-02","href":"https://www.w3.org/TR/1998/NOTE-XFDL-19980902","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-XFDL","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-09-02","title":"XFDL Version 4.0 Specification DRAFT 1"},"XForms-for-HTML":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/XForms-for-HTML/","title":"XForms for HTML","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"versions":{"20081219":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/2008/WD-XForms-for-HTML-20081219/","title":"XForms for HTML","rawDate":"2008-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"XHTMLplusMathMLplusSVG":{"authors":["Masayasu Ishikawa"],"href":"https://www.w3.org/TR/XHTMLplusMathMLplusSVG/","title":"An XHTML + MathML + SVG Profile","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020430/","source":"./data/w3c-specs.txt"},"20020809":{"authors":["Masayasu Ishikawa"],"href":"https://www.w3.org/TR/2002/WD-XHTMLplusMathMLplusSVG-20020809/","title":"An XHTML + MathML + SVG Profile","rawDate":"2002-08-09","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-08-09","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"XHTMLplusSMIL":{"authors":["Aaron Patterson","Patrick Schmitz"],"href":"https://www.w3.org/TR/XHTMLplusSMIL/","title":"XHTML+SMIL Profile","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"versions":{"20020131":{"authors":["Aaron Patterson","Patrick Schmitz"],"href":"https://www.w3.org/TR/2002/NOTE-XHTMLplusSMIL-20020131/","title":"XHTML+SMIL Profile","rawDate":"2002-01-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-01-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"XIndirect":{"versions":{"20030612":{"status":"NOTE","rawDate":"2003-06-12","href":"https://www.w3.org/TR/2003/NOTE-XIndirect-20030612","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/XIndirect","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2003-06-12","title":"XML Indirection Facility"},"XML-FRAG-REQ":{"authors":["Paul Grosso"],"href":"https://www.w3.org/TR/NOTE-XML-FRAG-REQ","title":"XML Fragment Interchange Requirements, Version 1.0","status":"NOTE","publisher":"W3C","versions":{"19981123":{"authors":["Paul Grosso"],"href":"https://www.w3.org/TR/1998/NOTE-XML-FRAG-REQ-19981123","title":"XML Fragment Interchange Requirements, Version 1.0","rawDate":"1998-11-23","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1998-11-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"XMLHttpRequest":{"authors":["Anne van Kesteren","Julian Aubourg","Jungkee Song","Hallvord Steen"],"etAl":true,"href":"https://www.w3.org/TR/XMLHttpRequest/","title":"XMLHttpRequest Level 1","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"versions":{"20060405":{"status":"WD","rawDate":"2006-04-05","href":"https://www.w3.org/TR/2006/WD-XMLHttpRequest-20060405/","source":"./data/w3c-specs.txt"},"20060619":{"status":"WD","rawDate":"2006-06-19","href":"https://www.w3.org/TR/2006/WD-XMLHttpRequest-20060619/","source":"./data/w3c-specs.txt"},"20060927":{"status":"WD","rawDate":"2006-09-27","href":"https://www.w3.org/TR/2006/WD-XMLHttpRequest-20060927/","source":"./data/w3c-specs.txt"},"20070227":{"status":"WD","rawDate":"2007-02-27","href":"https://www.w3.org/TR/2007/WD-XMLHttpRequest-20070227/","source":"./data/w3c-specs.txt"},"20070618":{"status":"WD","rawDate":"2007-06-18","href":"https://www.w3.org/TR/2007/WD-XMLHttpRequest-20070618/","source":"./data/w3c-specs.txt"},"20071026":{"status":"WD","rawDate":"2007-10-26","href":"https://www.w3.org/TR/2007/WD-XMLHttpRequest-20071026/","source":"./data/w3c-specs.txt"},"20080415":{"status":"WD","rawDate":"2008-04-15","href":"https://www.w3.org/TR/2008/WD-XMLHttpRequest-20080415/","source":"./data/w3c-specs.txt"},"20090820":{"status":"WD","rawDate":"2009-08-20","href":"https://www.w3.org/TR/2009/WD-XMLHttpRequest-20090820/","source":"./data/w3c-specs.txt"},"20091119":{"status":"WD","rawDate":"2009-11-19","href":"https://www.w3.org/TR/2009/WD-XMLHttpRequest-20091119/","source":"./data/w3c-specs.txt"},"20100803":{"status":"CR","rawDate":"2010-08-03","href":"https://www.w3.org/TR/2010/CR-XMLHttpRequest-20100803/","source":"./data/w3c-specs.txt"},"20120117":{"status":"WD","rawDate":"2012-01-17","href":"https://www.w3.org/TR/2012/WD-XMLHttpRequest-20120117/","source":"./data/w3c-specs.txt"},"20121206":{"authors":["Julian Aubourg","Jungkee Song","Hallvord Steen"],"href":"https://www.w3.org/TR/2012/WD-XMLHttpRequest-20121206/","title":"XMLHttpRequest","rawDate":"2012-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140130":{"authors":["Anne van Kesteren","Julian Aubourg","Jungkee Song","Hallvord Steen"],"href":"https://www.w3.org/TR/2014/WD-XMLHttpRequest-20140130/","title":"XMLHttpRequest Level 1","rawDate":"2014-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161006":{"authors":["Anne van Kesteren","Julian Aubourg","Jungkee Song","Hallvord Steen"],"href":"https://www.w3.org/TR/2016/NOTE-XMLHttpRequest-20161006/","title":"XMLHttpRequest Level 1","rawDate":"2016-10-06","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2016-10-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://xhr.spec.whatwg.org/","obsoletes":["XMLHttpRequest1","XMLHttpRequest2"],"isRetired":true,"repository":"https://github.com/whatwg/xhr"},"XMLHttpRequest1":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/XMLHttpRequest1/","title":"XMLHttpRequest","rawDate":"2012-01-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120117":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2012/NOTE-XMLHttpRequest1-20120117/","title":"XMLHttpRequest","rawDate":"2012-01-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true,"obsoletedBy":["XMLHttpRequest"]},"XMLHttpRequest2":{"authors":["Anne van Kesteren","Julian Aubourg","Jungkee Song","Hallvord Steen"],"href":"https://www.w3.org/TR/XMLHttpRequest2/","title":"XMLHttpRequest Level 2","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20080225":{"status":"WD","rawDate":"2008-02-25","href":"https://www.w3.org/TR/2008/WD-XMLHttpRequest2-20080225/","source":"./data/w3c-specs.txt"},"20080930":{"status":"WD","rawDate":"2008-09-30","href":"https://www.w3.org/TR/2008/WD-XMLHttpRequest2-20080930/","source":"./data/w3c-specs.txt"},"20090820":{"status":"WD","rawDate":"2009-08-20","href":"https://www.w3.org/TR/2009/WD-XMLHttpRequest2-20090820/","source":"./data/w3c-specs.txt"},"20100907":{"status":"WD","rawDate":"2010-09-07","href":"https://www.w3.org/TR/2010/WD-XMLHttpRequest2-20100907/","source":"./data/w3c-specs.txt"},"20110816":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2011/WD-XMLHttpRequest2-20110816/","title":"XMLHttpRequest Level 2","rawDate":"2011-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141118":{"authors":["Anne van Kesteren","Julian Aubourg","Jungkee Song","Hallvord Steen"],"href":"https://www.w3.org/TR/2014/NOTE-XMLHttpRequest2-20141118/","title":"XMLHttpRequest Level 2","rawDate":"2014-11-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-11-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["XMLHttpRequest"]},"XSL-and-CSS":{"versions":{"19980911":{"status":"NOTE","rawDate":"1998-09-11","href":"https://www.w3.org/TR/1998/NOTE-XSL-and-CSS-19980911","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-XSL-and-CSS","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-09-11","title":"Using XSL and CSS together"},"XSLReq":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/WD-XSLReq","title":"XSL Requirements Summary","rawDate":"1998-05-11","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980511":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/1998/WD-XSLReq-19980511","title":"XSL Requirements Summary","rawDate":"1998-05-11","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"abstract-ui":{"authors":["Jean Vanderdonckt","Ricardo Tesoriero","Nesrine Mezhoudi","Vivian Genaro Motti","François Beuvens","Jérémie Melchior"],"href":"https://www.w3.org/TR/abstract-ui/","title":"MBUI - Abstract User Interface Models","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131105":{"authors":["Jean Vanderdonckt"],"href":"https://www.w3.org/TR/2013/WD-abstract-ui-20131105/","title":"MBUI - Abstract User Interface Models","rawDate":"2013-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Jean Vanderdonckt","Ricardo Tesoriero","Nesrine Mezhoudi","Vivian Genaro Motti","François Beuvens","Jérémie Melchior"],"href":"https://www.w3.org/TR/2014/NOTE-abstract-ui-20140408/","title":"MBUI - Abstract User Interface Models","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"accelerometer":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/accelerometer/","title":"Accelerometer","rawDate":"2024-01-08","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/accelerometer/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160913":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2016/WD-accelerometer-20160913/","title":"Accelerometer Sensor","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170411":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/WD-accelerometer-20170411/","title":"Accelerometer","rawDate":"2017-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/WD-accelerometer-20170418/","title":"Accelerometer","rawDate":"2017-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170814":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/WD-accelerometer-20170814/","title":"Accelerometer","rawDate":"2017-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/WD-accelerometer-20171018/","title":"Accelerometer","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2018/CR-accelerometer-20180320/","title":"Accelerometer","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/WD-accelerometer-20190307/","title":"Accelerometer","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/CR-accelerometer-20191212/","title":"Accelerometer","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210724":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2021/CRD-accelerometer-20210724/","title":"Accelerometer","rawDate":"2021-07-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210902":{"authors":["Anssi Kostiainen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2021/CRD-accelerometer-20210902/","title":"Accelerometer","rawDate":"2021-09-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211204":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/CRD-accelerometer-20211204/","title":"Accelerometer","rawDate":"2021-12-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/CRD-accelerometer-20211207/","title":"Accelerometer","rawDate":"2021-12-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/CRD-accelerometer-20211208/","title":"Accelerometer","rawDate":"2021-12-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/CRD-accelerometer-20221018/","title":"Accelerometer","rawDate":"2022-10-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-accelerometer-20230130/","title":"Accelerometer","rawDate":"2023-01-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-accelerometer-20231025/","title":"Accelerometer","rawDate":"2023-10-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-accelerometer-20231102/","title":"Accelerometer","rawDate":"2023-11-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231128":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-accelerometer-20231128/","title":"Accelerometer","rawDate":"2023-11-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240104":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/CRD-accelerometer-20240104/","title":"Accelerometer","rawDate":"2024-01-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/CRD-accelerometer-20240105/","title":"Accelerometer","rawDate":"2024-01-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/CRD-accelerometer-20240108/","title":"Accelerometer","rawDate":"2024-01-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/accelerometer"},"accessibility-conformance-challenges":{"authors":["Michael Cooper","Peter Korn","Charles Hall"],"href":"https://www.w3.org/TR/accessibility-conformance-challenges/","title":"Challenges with Accessibility Guidelines Conformance and Testing, and Approaches for Mitigating Them","rawDate":"2020-06-19","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/wcag/conformance-challenges/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200501":{"authors":["Janina Sajka","Michael Cooper"],"href":"https://www.w3.org/TR/2020/WD-accessibility-conformance-challenges-20200501/","title":"Challenges with Accessibility Guidelines Conformance and Testing, and Approaches for Mitigating Them","rawDate":"2020-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200604":{"authors":["Michael Cooper","Peter Korn","Charles Hall"],"href":"https://www.w3.org/TR/2020/WD-accessibility-conformance-challenges-20200604/","title":"Challenges with Accessibility Guidelines Conformance and Testing, and Approaches for Mitigating Them","rawDate":"2020-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200619":{"authors":["Michael Cooper","Peter Korn","Charles Hall"],"href":"https://www.w3.org/TR/2020/WD-accessibility-conformance-challenges-20200619/","title":"Challenges with Accessibility Guidelines Conformance and Testing, and Approaches for Mitigating Them","rawDate":"2020-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wcag"},"accessibility-metrics-report":{"authors":["Markel Vigo","Giorgio Brajnik","Joshue O'Connor"],"href":"https://www.w3.org/TR/accessibility-metrics-report/","title":"Research Report on Web Accessibility Metrics","rawDate":"2012-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/RD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120830":{"authors":["Markel Vigo","Giorgio Brajnik","Joshue O'Connor"],"href":"https://www.w3.org/TR/2012/WD-accessibility-metrics-report-20120830/","title":"Research Report on Web Accessibility Metrics","rawDate":"2012-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/RD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"accname-1.1":{"authors":["Joanmarie Diggs","Bryan Garaventa","Michael Cooper"],"href":"https://www.w3.org/TR/accname-1.1/","title":"Accessible Name and Description Computation 1.1","rawDate":"2018-12-18","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/accname/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141211":{"authors":["Joseph Scheuhammer","James Craig","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2014/WD-accname-aam-1.1-20141211/","title":"Accessible Name and Description: Computation and API Mappings 1.1","rawDate":"2014-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Joseph Scheuhammer","James Craig","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2015/WD-accname-aam-1.1-20150714/","title":"Accessible Name and Description: Computation and API Mappings 1.1","rawDate":"2015-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Joseph Scheuhammer","James Craig","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2015/WD-accname-aam-1.1-20151119/","title":"Accessible Name and Description: Computation and API Mappings 1.1","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Joseph Scheuhammer","James Craig","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2016/WD-accname-aam-1.1-20160317/","title":"Accessible Name and Description: Computation and API Mappings 1.1","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Joanmarie Diggs","Michael Cooper","Richard Schwerdtfeger","Joseph Scheuhammer","James Craig","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2018/WD-accname-1.1-20180320/","title":"Accessible Name and Description Computation 1.1","rawDate":"2018-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180619":{"authors":["Joanmarie Diggs","Bryan Garaventa","Michael Cooper"],"href":"https://www.w3.org/TR/2018/CR-accname-1.1-20180619/","title":"Accessible Name and Description Computation 1.1","rawDate":"2018-06-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Joanmarie Diggs","Bryan Garaventa","Michael Cooper"],"href":"https://www.w3.org/TR/2018/PR-accname-1.1-20181018/","title":"Accessible Name and Description Computation 1.1","rawDate":"2018-10-18","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Joanmarie Diggs","Bryan Garaventa","Michael Cooper"],"href":"https://www.w3.org/TR/2018/REC-accname-1.1-20181218/","title":"Accessible Name and Description Computation 1.1","rawDate":"2018-12-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/accname","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/accname","hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/accname"},"accname-1.2":{"authors":["Bryan Garaventa","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/accname-1.2/","title":"Accessible Name and Description Computation 1.2","rawDate":"2019-07-11","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/accname/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190711":{"authors":["Bryan Garaventa","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/2019/WD-accname-1.2-20190711/","title":"Accessible Name and Description Computation 1.2","rawDate":"2019-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/accname"},"accname-aam-1.1":{"aliasOf":"accname-1.1"},"acdi":{"authors":["Rhys Lewis"],"href":"https://www.w3.org/TR/acdi/","title":"Authoring Challenges for Device Independence","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"versions":{"20021018":{"status":"WD","rawDate":"2002-10-18","href":"https://www.w3.org/TR/2002/WD-acdi-20021018/","source":"./data/w3c-specs.txt"},"20030901":{"authors":["Rhys Lewis"],"href":"https://www.w3.org/TR/2003/NOTE-acdi-20030901/","title":"Authoring Challenges for Device Independence","rawDate":"2003-09-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"acss":{"authors":["Chris Lilley","T.V. Raman"],"href":"https://www.w3.org/TR/WD-acss","title":"Aural Cascading Style Sheets (ACSS) Specification","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990902":{"authors":["Chris Lilley","T.V. Raman"],"href":"https://www.w3.org/TR/1999/WD-acss-19990902","title":"Aural Cascading Style Sheets (ACSS) Specification","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"act-rules-aspects":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/act-rules-aspects/","title":"Accessibility Conformance Testing Rules: Common Input Aspects","rawDate":"2022-07-12","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wcag-act/NOTE-act-rules-aspects","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190416":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2019/NOTE-act-rules-aspects-20190416/","title":"Accessibility Conformance Testing (ACT) Rules: Common Input Aspects","rawDate":"2019-04-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2022/NOTE-act-rules-aspects-20220712/","title":"Accessibility Conformance Testing Rules: Common Input Aspects","rawDate":"2022-07-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wcag-act"},"act-rules-format-1.0":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/act-rules-format-1.0/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2019-10-31","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wcag-act/act-rules-format.html","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170406":{"authors":["Wilco Fiers","Maureen Kraft"],"href":"https://www.w3.org/TR/2017/WD-act-rules-format-1.0-20170406/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2017-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170912":{"authors":["Wilco Fiers","Maureen Kraft"],"href":"https://www.w3.org/TR/2017/WD-act-rules-format-1.0-20170912/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2017-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180308":{"authors":["Wilco Fiers","Maureen Kraft"],"href":"https://www.w3.org/TR/2018/WD-act-rules-format-1.0-20180308/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2018-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180705":{"authors":["Wilco Fiers","Maureen Kraft"],"href":"https://www.w3.org/TR/2018/WD-act-rules-format-1.0-20180705/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2018-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190416":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2019/CR-act-rules-format-1.0-20190416/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2019-04-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190730":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2019/PR-act-rules-format-1.0-20190730/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2019-07-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191031":{"authors":["Wilco Fiers","Maureen Kraft","Mary Jo Mueller","Shadi Abou-Zahra"],"href":"https://www.w3.org/TR/2019/REC-act-rules-format-1.0-20191031/","title":"Accessibility Conformance Testing (ACT) Rules Format 1.0","rawDate":"2019-10-31","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"hasErrata":"https://www.w3.org/WAI/GL/task-forces/conformance-testing/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wcag-act","hasErrata":"https://www.w3.org/WAI/GL/task-forces/conformance-testing/errata"},"activitypub":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/activitypub/","title":"ActivityPub","rawDate":"2018-01-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160128":{"authors":["Christopher Webber","Jessica Tallon","Owen Shepherd"],"href":"https://www.w3.org/TR/2016/WD-activitypub-20160128/","title":"ActivityPub","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160614":{"href":"https://www.w3.org/TR/2016/WD-activitypub-20160614/","title":"ActivityPub","rawDate":"2016-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160823":{"href":"https://www.w3.org/TR/2016/WD-activitypub-20160823/","title":"ActivityPub","rawDate":"2016-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"href":"https://www.w3.org/TR/2016/WD-activitypub-20160913/","title":"ActivityPub","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161004":{"href":"https://www.w3.org/TR/2016/WD-activitypub-20161004/","title":"ActivityPub","rawDate":"2016-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161102":{"href":"https://www.w3.org/TR/2016/WD-activitypub-20161102/","title":"ActivityPub","rawDate":"2016-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161117":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2016/CR-activitypub-20161117/","title":"ActivityPub","rawDate":"2016-11-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2017/CR-activitypub-20170413/","title":"ActivityPub","rawDate":"2017-04-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170509":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2017/CR-activitypub-20170509/","title":"ActivityPub","rawDate":"2017-05-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170822":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2017/CR-activitypub-20170822/","title":"ActivityPub","rawDate":"2017-08-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170907":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2017/CR-activitypub-20170907/","title":"ActivityPub","rawDate":"2017-09-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2017/CR-activitypub-20171102/","title":"ActivityPub","rawDate":"2017-11-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171205":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2017/PR-activitypub-20171205/","title":"ActivityPub","rawDate":"2017-12-05","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180123":{"authors":["Christopher Webber","Jessica Tallon"],"href":"https://www.w3.org/TR/2018/REC-activitypub-20180123/","title":"ActivityPub","rawDate":"2018-01-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"hasErrata":"https://www.w3.org/wiki/ActivityPub_errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/activitypub/","repository":"https://github.com/w3c/activitypub","hasErrata":"https://www.w3.org/wiki/ActivityPub_errata"},"activitystreams-core":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/activitystreams-core/","title":"Activity Streams 2.0","rawDate":"2017-05-23","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/activitystreams/core/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141023":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2014/WD-activitystreams-core-20141023/","title":"Activity Streams 2.0","rawDate":"2014-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150129":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-core-20150129/","title":"Activity Streams 2.0","rawDate":"2015-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150722":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-core-20150722/","title":"Activity Streams 2.0","rawDate":"2015-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151006":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-core-20151006/","title":"Activity Streams 2.0","rawDate":"2015-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-core-20151215/","title":"Activity Streams 2.0","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-activitystreams-core-20160531/","title":"Activity Streams 2.0","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160706":{"href":"https://www.w3.org/TR/2016/WD-activitystreams-core-20160706/","title":"Activity Streams 2.0","rawDate":"2016-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160712":{"href":"https://www.w3.org/TR/2016/WD-activitystreams-core-20160712/","title":"Activity Streams 2.0","rawDate":"2016-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160906":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2016/CR-activitystreams-core-20160906/","title":"Activity Streams 2.0","rawDate":"2016-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2016/CR-activitystreams-core-20161215/","title":"Activity Streams 2.0","rawDate":"2016-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2017/PR-activitystreams-core-20170413/","title":"Activity Streams 2.0","rawDate":"2017-04-13","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170523":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2017/REC-activitystreams-core-20170523/","title":"Activity Streams 2.0","rawDate":"2017-05-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://github.com/w3c/activitystreams/blob/master/ERRATA.md"}},"hasErrata":"https://github.com/w3c/activitystreams/blob/master/ERRATA.md","repository":"https://github.com/w3c/activitystreams"},"activitystreams-vocabulary":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/activitystreams-vocabulary/","title":"Activity Vocabulary","rawDate":"2017-05-23","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/activitystreams/vocabulary/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141023":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2014/WD-activitystreams-vocabulary-20141023/","title":"Activity Vocabulary","rawDate":"2014-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150129":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-vocabulary-20150129/","title":"Activity Vocabulary","rawDate":"2015-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150722":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-vocabulary-20150722/","title":"Activity Vocabulary","rawDate":"2015-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151006":{"authors":["James Snell"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-vocabulary-20151006/","title":"Activity Vocabulary","rawDate":"2015-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2015/WD-activitystreams-vocabulary-20151215/","title":"Activity Vocabulary","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-activitystreams-vocabulary-20160531/","title":"Activity Vocabulary","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160706":{"href":"https://www.w3.org/TR/2016/WD-activitystreams-vocabulary-20160706/","title":"Activity Vocabulary","rawDate":"2016-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160712":{"href":"https://www.w3.org/TR/2016/WD-activitystreams-vocabulary-20160712/","title":"Activity Vocabulary","rawDate":"2016-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160906":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2016/CR-activitystreams-vocabulary-20160906/","title":"Activity Vocabulary","rawDate":"2016-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2016/CR-activitystreams-vocabulary-20161215/","title":"Activity Vocabulary","rawDate":"2016-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2017/PR-activitystreams-vocabulary-20170413/","title":"Activity Vocabulary","rawDate":"2017-04-13","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170523":{"authors":["James Snell","Evan Prodromou"],"href":"https://www.w3.org/TR/2017/REC-activitystreams-vocabulary-20170523/","title":"Activity Vocabulary","rawDate":"2017-05-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://github.com/w3c/activitystreams/blob/master/ERRATA.md"}},"hasErrata":"https://github.com/w3c/activitystreams/blob/master/ERRATA.md","repository":"https://github.com/w3c/activitystreams"},"adapt":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/adapt/","title":"WAI-Adapt Explainer","rawDate":"2023-01-03","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/adapt/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170606":{"authors":["Lisa Seeman-Kestenbaum","Richard Schwerdtfeger","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-personalization-semantics-1.0-20170606/","title":"Personalization Semantics 1.0","rawDate":"2017-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180213":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Richard Schwerdtfeger","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-1.0-20180213/","title":"Personalization Semantics Explainer 1.0","rawDate":"2018-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180316":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Richard Schwerdtfeger","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-1.0-20180316/","title":"Personalization Semantics Explainer 1.0","rawDate":"2018-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Richard Schwerdtfeger","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-1.0-20181018/","title":"Personalization Semantics Explainer 1.0","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190711":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2019/WD-personalization-semantics-1.0-20190711/","title":"Personalization Semantics Explainer 1.0","rawDate":"2019-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200127":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2020/WD-personalization-semantics-1.0-20200127/","title":"Personalization Semantics Explainer 1.0","rawDate":"2020-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210812":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2021/WD-personalization-semantics-1.0-20210812/","title":"Personalization Semantics Explainer 1.0","rawDate":"2021-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2022/DNOTE-adapt-20220609/","title":"WAI-Adapt Explainer","rawDate":"2022-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230103":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2023/DNOTE-adapt-20230103/","title":"WAI-Adapt Explainer","rawDate":"2023-01-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/personalization-semantics"},"adapt-content":{"aliasOf":"adapt-symbols"},"adapt-help":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/adapt-help/","title":"WAI-Adapt: Help and Support Module","rawDate":"2022-06-09","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/personalization-semantics/help/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181018":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-help-1.0-20181018/","title":"Personalization Help and Support 1.0","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190711":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2019/WD-personalization-semantics-help-1.0-20190711/","title":"Personalization Help and Support 1.0","rawDate":"2019-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2022/WD-adapt-help-20220609/","title":"WAI-Adapt: Help and Support Module","rawDate":"2022-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/personalization-semantics"},"adapt-requirements":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/adapt-requirements/","title":"Requirements for WAI-Adapt specification","rawDate":"2022-06-09","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/personalization-semantics/requirements/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200130":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/WD-personalization-semantics-requirements-1.0-20200130/","title":"Requirements for Personalization Semantics","rawDate":"2020-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201028":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/WD-personalization-semantics-requirements-1.0-20201028/","title":"Requirements for Personalization Semantics","rawDate":"2020-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2022/DNOTE-adapt-requirements-20220609/","title":"Requirements for WAI-Adapt specification","rawDate":"2022-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/personalization-semantics"},"adapt-symbols":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/adapt-symbols/","title":"WAI-Adapt: Symbols Module","rawDate":"2023-01-05","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/personalization-semantics/content/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180213":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Richard Schwerdtfeger","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-content-1.0-20180213/","title":"Personalization Semantics Content Module 1.0","rawDate":"2018-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180307":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Richard Schwerdtfeger","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-content-1.0-20180307/","title":"Personalization Semantics Content Module 1.0","rawDate":"2018-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180316":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Richard Schwerdtfeger","Michael Cooper","Ruoxi Ran"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-content-1.0-20180316/","title":"Personalization Semantics Content Module 1.0","rawDate":"2018-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-content-1.0-20181018/","title":"Personalization Semantics Content Module 1.0","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190711":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2019/WD-personalization-semantics-content-1.0-20190711/","title":"Personalization Semantics Content Module 1.0","rawDate":"2019-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200127":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2020/WD-personalization-semantics-content-1.0-20200127/","title":"Personalization Semantics Content Module 1.0","rawDate":"2020-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210812":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2021/WD-personalization-semantics-content-1.0-20210812/","title":"Personalization Semantics Content Module 1.0","rawDate":"2021-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2022/WD-adapt-content-20220609/","title":"WAI-Adapt: Content Module","rawDate":"2022-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230105":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2023/CR-adapt-symbols-20230105/","title":"WAI-Adapt: Symbols Module","rawDate":"2023-01-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/personalization-semantics"},"adapt-tools":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/adapt-tools/","title":"WAI-Adapt: Tools Module","rawDate":"2022-06-09","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/personalization-semantics/tools/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181018":{"authors":["Lisa Seeman-Kestenbaum","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/WD-personalization-semantics-tools-1.0-20181018/","title":"Personalization Tools 1.0","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190711":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2019/WD-personalization-semantics-tools-1.0-20190711/","title":"Personalization Tools 1.0","rawDate":"2019-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Lisa Seeman-Horwitz","Charles LaPierre","John Foliot","Michael Cooper","Ruoxi Ran","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2022/WD-adapt-tools-20220609/","title":"WAI-Adapt: Tools Module","rawDate":"2022-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/personalization-semantics"},"adlm-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/adlm-gap/","title":"Adlam Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/afrlreq/gap-analysis/adlm-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210204":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-adlm-gap-20210204/","title":"Adlam Gap Analysis","rawDate":"2021-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210216":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-adlm-gap-20210216/","title":"Adlam Gap Analysis","rawDate":"2021-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-adlm-gap-20210521/","title":"Adlam Gap Analysis","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-adlm-gap-20211202/","title":"Adlam Gap Analysis","rawDate":"2021-12-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220112":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-adlm-gap-20220112/","title":"Adlam Gap Analysis","rawDate":"2022-01-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220128":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-adlm-gap-20220128/","title":"Adlam Gap Analysis","rawDate":"2022-01-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220201":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-adlm-gap-20220201/","title":"Adlam Gap Analysis","rawDate":"2022-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-adlm-gap-20220203/","title":"Adlam Gap Analysis","rawDate":"2022-02-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-adlm-gap-20220712/","title":"Adlam Gap Analysis","rawDate":"2022-07-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230614/","title":"Adlam Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230616/","title":"Adlam Gap Analysis","rawDate":"2023-06-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-adlm-gap-20230807/","title":"Adlam Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-adlm-gap-20231004/","title":"Adlam Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/afrlreq"},"agent-attributes":{"versions":{"19971230":{"status":"NOTE","rawDate":"1997-12-30","href":"https://www.w3.org/TR/NOTE-agent-attributes-971230","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-agent-attributes","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-12-30","title":"Client-Specific Web Services by Using User Agent Attributes"},"alreq":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/alreq/","title":"Arabic & Persian Layout Requirements","rawDate":"2023-12-12","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/alreq/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180222":{"authors":["Shervin Afshar","Behnam Esfahbod","Mostafa Hajizadeh","Najib Tounsi"],"href":"https://www.w3.org/TR/2018/WD-alreq-20180222/","title":"Text Layout Requirements for the Arabic Script","rawDate":"2018-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200520":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-alreq-20200520/","title":"Text Layout Requirements for the Arabic Script","rawDate":"2020-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Behnam Esfahbod","Mostafa Hajizadeh","Najib Tounsi","Richard Ishida","Shervin Afshar","Titus Nemeth"],"href":"https://www.w3.org/TR/2021/WD-alreq-20211026/","title":"Text Layout Requirements for the Arabic Script","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231212":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-alreq-20231212/","title":"Arabic & Persian Layout Requirements","rawDate":"2023-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/alreq"},"alreq-gap":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/alreq-gap/","title":"Arabic and Persian Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/alreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-alreq-gap-20200616/","title":"Arabic & Persian Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210119/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210120":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210120/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210121":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210121/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210122":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210122/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210126/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210216":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210216/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-alreq-gap-20210521/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-alreq-gap-20211125/","title":"Arabic and Persian Gap Analysis","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220713":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-alreq-gap-20220713/","title":"Arabic and Persian Gap Analysis","rawDate":"2022-07-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-alreq-gap-20230614/","title":"Arabic and Persian Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-alreq-gap-20230807/","title":"Arabic and Persian Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Shervin Afshar","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-alreq-gap-20231004/","title":"Arabic and Persian Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/alreq"},"amaya":{"versions":{"19970220":{"status":"NOTE","rawDate":"1997-02-20","href":"https://www.w3.org/TR/NOTE-amaya-970220","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-amaya","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-02-20","title":"An Introduction to Amaya"},"ambient-light":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/ambient-light/","title":"Ambient Light Sensor","rawDate":"2024-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120802":{"status":"WD","rawDate":"2012-08-02","href":"https://www.w3.org/TR/2012/WD-ambient-light-20120802/","source":"./data/w3c-specs.txt"},"20121213":{"authors":["Doug Turner"],"href":"https://www.w3.org/TR/2012/WD-ambient-light-20121213/","title":"Ambient Light Events","rawDate":"2012-12-13","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131001":{"authors":["Doug Turner","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2013/CR-ambient-light-20131001/","title":"Ambient Light Events","rawDate":"2013-10-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140619":{"authors":["Doug Turner","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2014/WD-ambient-light-20140619/","title":"Ambient Light Events","rawDate":"2014-06-19","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150903":{"authors":["Doug Turner","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-ambient-light-20150903/","title":"Ambient Light Events","rawDate":"2015-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["Anssi Kostiainen","Tobie Langel"],"href":"https://www.w3.org/TR/2016/WD-ambient-light-20160329/","title":"Ambient Light Sensor","rawDate":"2016-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"authors":["Anssi Kostiainen","Tobie Langel"],"href":"https://www.w3.org/TR/2016/WD-ambient-light-20160830/","title":"Ambient Light Sensor","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170522":{"authors":["Anssi Kostiainen","Tobie Langel"],"href":"https://www.w3.org/TR/2017/WD-ambient-light-20170522/","title":"Ambient Light Sensor","rawDate":"2017-05-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170814":{"authors":["Anssi Kostiainen","Tobie Langel"],"href":"https://www.w3.org/TR/2017/WD-ambient-light-20170814/","title":"Ambient Light Sensor","rawDate":"2017-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Anssi Kostiainen","Tobie Langel"],"href":"https://www.w3.org/TR/2017/WD-ambient-light-20171018/","title":"Ambient Light Sensor","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2018/CR-ambient-light-20180320/","title":"Ambient Light Sensor","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/WD-ambient-light-20190307/","title":"Ambient Light Sensor","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210531":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik","Tobie Langel"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20210531/","title":"Ambient Light Sensor","rawDate":"2021-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik","Tobie Langel"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20210601/","title":"Ambient Light Sensor","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210606":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik","Tobie Langel"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20210606/","title":"Ambient Light Sensor","rawDate":"2021-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210816":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik","Tobie Langel"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20210816/","title":"Ambient Light Sensor","rawDate":"2021-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik","Tobie Langel"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20210903/","title":"Ambient Light Sensor","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20211203/","title":"Ambient Light Sensor","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20211207/","title":"Ambient Light Sensor","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20211208/","title":"Ambient Light Sensor","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211214":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-ambient-light-20211214/","title":"Ambient Light Sensor","rawDate":"2021-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220527":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-ambient-light-20220527/","title":"Ambient Light Sensor","rawDate":"2022-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-ambient-light-20220808/","title":"Ambient Light Sensor","rawDate":"2022-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220822":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-ambient-light-20220822/","title":"Ambient Light Sensor","rawDate":"2022-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-ambient-light-20220831/","title":"Ambient Light Sensor","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-ambient-light-20221018/","title":"Ambient Light Sensor","rawDate":"2022-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-ambient-light-20230130/","title":"Ambient Light Sensor","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-ambient-light-20230721/","title":"Ambient Light Sensor","rawDate":"2023-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231020":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-ambient-light-20231020/","title":"Ambient Light Sensor","rawDate":"2023-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231127":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-ambient-light-20231127/","title":"Ambient Light Sensor","rawDate":"2023-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2024/WD-ambient-light-20240105/","title":"Ambient Light Sensor","rawDate":"2024-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240124":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2024/WD-ambient-light-20240124/","title":"Ambient Light Sensor","rawDate":"2024-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/ambient-light/","repository":"https://github.com/w3c/ambient-light"},"animation-timing":{"authors":["James Robinson","Cameron McCormack"],"href":"https://www.w3.org/TR/animation-timing/","title":"Timing control for script-based animations","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"versions":{"20110602":{"status":"WD","rawDate":"2011-06-02","href":"https://www.w3.org/TR/2011/WD-animation-timing-20110602/","source":"./data/w3c-specs.txt"},"20120221":{"authors":["James Robinson","Cameron McCormack"],"href":"https://www.w3.org/TR/2012/WD-animation-timing-20120221/","title":"Timing control for script-based animations","rawDate":"2012-02-21","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131031":{"authors":["James Robinson","Cameron McCormack"],"href":"https://www.w3.org/TR/2013/CR-animation-timing-20131031/","title":"Timing control for script-based animations","rawDate":"2013-10-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150922":{"authors":["James Robinson","Cameron McCormack"],"href":"https://www.w3.org/TR/2015/NOTE-animation-timing-20150922/","title":"Timing control for script-based animations","rawDate":"2015-09-22","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-09-22","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/animation-timing/","isRetired":true,"repository":"https://github.com/w3c/animation-timing"},"annot":{"versions":{"19990710":{"status":"NOTE","rawDate":"1999-07-10","href":"https://www.w3.org/1999/07/NOTE-annot-19990710","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/annot","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-07-10","title":"External Annotation of Web Content for Transcoding"},"annotation-html":{"authors":["Timothy Cole","Sarven Capadisli","Benjamin Young","Ivan Herman"],"href":"https://www.w3.org/TR/annotation-html/","title":"Embedding Web Annotations in HTML","rawDate":"2017-02-23","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/web-annotation/serialization-html-note/","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170223":{"authors":["Timothy Cole","Sarven Capadisli","Benjamin Young","Ivan Herman"],"href":"https://www.w3.org/TR/2017/NOTE-annotation-html-20170223/","title":"Embedding Web Annotations in HTML","rawDate":"2017-02-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/web-annotation"},"annotation-model":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/annotation-model/","title":"Web Annotation Data Model","rawDate":"2017-02-23","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/web-annotation/","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141211":{"authors":["Robert Sanderson","Paolo Ciccarese"],"href":"https://www.w3.org/TR/2014/WD-annotation-model-20141211/","title":"Web Annotation Data Model","rawDate":"2014-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151015":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2015/WD-annotation-model-20151015/","title":"Web Annotation Data Model","rawDate":"2015-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160331":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/WD-annotation-model-20160331/","title":"Web Annotation Data Model","rawDate":"2016-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/CR-annotation-model-20160705/","title":"Web Annotation Data Model","rawDate":"2016-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160906":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/CR-annotation-model-20160906/","title":"Web Annotation Data Model","rawDate":"2016-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161122":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/CR-annotation-model-20161122/","title":"Web Annotation Data Model","rawDate":"2016-11-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2017/PR-annotation-model-20170117/","title":"Web Annotation Data Model","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2017/REC-annotation-model-20170223/","title":"Web Annotation Data Model","rawDate":"2017-02-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"hasErrata":"https://www.w3.org/annotation/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/annotation/errata/","repository":"https://github.com/w3c/web-annotation"},"annotation-protocol":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/annotation-protocol/","title":"Web Annotation Protocol","rawDate":"2017-02-23","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/web-annotation/protocol/wd/","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150702":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2015/WD-annotation-protocol-20150702/","title":"Web Annotation Protocol","rawDate":"2015-07-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160331":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2016/WD-annotation-protocol-20160331/","title":"Web Annotation Protocol","rawDate":"2016-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160712":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2016/CR-annotation-protocol-20160712/","title":"Web Annotation Protocol","rawDate":"2016-07-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160906":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2016/CR-annotation-protocol-20160906/","title":"Web Annotation Protocol","rawDate":"2016-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2017/PR-annotation-protocol-20170117/","title":"Web Annotation Protocol","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2017/REC-annotation-protocol-20170223/","title":"Web Annotation Protocol","rawDate":"2017-02-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"hasErrata":"https://www.w3.org/annotation/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/annotation/errata/","repository":"https://github.com/w3c/web-annotation"},"annotation-vocab":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/annotation-vocab/","title":"Web Annotation Vocabulary","rawDate":"2017-02-23","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/web-annotation/","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160331":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/WD-annotation-vocab-20160331/","title":"Web Annotation Vocabulary","rawDate":"2016-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/CR-annotation-vocab-20160705/","title":"Web Annotation Vocabulary","rawDate":"2016-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160906":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/CR-annotation-vocab-20160906/","title":"Web Annotation Vocabulary","rawDate":"2016-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161122":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2016/CR-annotation-vocab-20161122/","title":"Web Annotation Vocabulary","rawDate":"2016-11-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2017/PR-annotation-vocab-20170117/","title":"Web Annotation Vocabulary","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2017/REC-annotation-vocab-20170223/","title":"Web Annotation Vocabulary","rawDate":"2017-02-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"hasErrata":"https://www.w3.org/annotation/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/annotation/errata/","repository":"https://github.com/w3c/web-annotation"},"api-design":{"authors":["Robin Berjon","Jungkee Song"],"href":"https://www.w3.org/TR/api-design/","title":"Web API Design Cookbook","rawDate":"2012-10-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121002":{"authors":["Robin Berjon","Jungkee Song"],"href":"https://www.w3.org/TR/2012/NOTE-api-design-20121002/","title":"Web API Design Cookbook","rawDate":"2012-10-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"api-perms":{"authors":["Paddy Byers","Frederick Hirsch","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/api-perms/","title":"Permissions for Device API Access","rawDate":"2015-07-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20101005":{"authors":["Paddy Byers","Frederick Hirsch","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2010/WD-api-perms-20101005/","title":"Permissions for Device API Access","rawDate":"2010-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Paddy Byers","Frederick Hirsch","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2015/NOTE-api-perms-20150714/","title":"Permissions for Device API Access","rawDate":"2015-07-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://dev.w3.org/2009/dap/api-perms/","isRetired":true},"app-privacy-bp":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/app-privacy-bp/","title":"Web Application Privacy Best Practices","rawDate":"2012-07-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110804":{"status":"WD","rawDate":"2011-08-04","href":"https://www.w3.org/TR/2011/WD-app-privacy-bp-20110804/","source":"./data/w3c-specs.txt"},"20120703":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/2012/NOTE-app-privacy-bp-20120703/","title":"Web Application Privacy Best Practices","rawDate":"2012-07-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"app-uri":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/app-uri/","title":"The app: URL Scheme","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130516":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2013/WD-app-uri-20130516/","title":"The app: URI scheme","rawDate":"2013-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140529":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2014/WD-app-uri-20140529/","title":"The app: URL Scheme","rawDate":"2014-05-29","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150723":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2015/NOTE-app-uri-20150723/","title":"The app: URL Scheme","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://app-uri.sysapps.org/","isRetired":true},"appmanifest":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/appmanifest/","title":"Web Application Manifest","rawDate":"2023-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131217":{"authors":["Marcos Caceres","Anssi Kostiainen","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2013/WD-appmanifest-20131217/","title":"Manifest for web apps and bookmarks","rawDate":"2013-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150212":{"authors":["Marcos Caceres","Anssi Kostiainen","Kenneth Christiansen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150212/","title":"Manifest for web application","rawDate":"2015-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150320":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150320/","title":"Manifest for web application","rawDate":"2015-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150323":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150323/","title":"Manifest for web application","rawDate":"2015-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150324":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150324/","title":"Manifest for web application","rawDate":"2015-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150325":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150325/","title":"Manifest for a web application","rawDate":"2015-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150402":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150402/","title":"Manifest for a web application","rawDate":"2015-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150407":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150407/","title":"Manifest for a web application","rawDate":"2015-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150429":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150429/","title":"Manifest for a web application","rawDate":"2015-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150513":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150513/","title":"Manifest for a web application","rawDate":"2015-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150519":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150519/","title":"Manifest for a web application","rawDate":"2015-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150605":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150605/","title":"Manifest for a web application","rawDate":"2015-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150617":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150617/","title":"Manifest for a web application","rawDate":"2015-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150703":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150703/","title":"Manifest for a web application","rawDate":"2015-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150706":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150706/","title":"Manifest for a web application","rawDate":"2015-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150708":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150708/","title":"Manifest for a web application","rawDate":"2015-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150709":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150709/","title":"Manifest for a web application","rawDate":"2015-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150713":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150713/","title":"Manifest for a web application","rawDate":"2015-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150714/","title":"Manifest for a web application","rawDate":"2015-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150731":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150731/","title":"Manifest for a web application","rawDate":"2015-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150815":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150815/","title":"Manifest for a web application","rawDate":"2015-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150919":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150919/","title":"Manifest for a web application","rawDate":"2015-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150921":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20150921/","title":"Manifest for a web application","rawDate":"2015-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151124":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20151124/","title":"Web App Manifest","rawDate":"2015-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151125":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20151125/","title":"Web App Manifest","rawDate":"2015-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/WD-appmanifest-20151215/","title":"Web App Manifest","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160119":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160119/","title":"Web App Manifest","rawDate":"2016-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160127":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160127/","title":"Web App Manifest","rawDate":"2016-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160312":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160312/","title":"Web App Manifest","rawDate":"2016-03-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160315":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160315/","title":"Web App Manifest","rawDate":"2016-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160318":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160318/","title":"Web App Manifest","rawDate":"2016-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160322":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160322/","title":"Web App Manifest","rawDate":"2016-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160324":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160324/","title":"Web App Manifest","rawDate":"2016-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160331":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160331/","title":"Web App Manifest","rawDate":"2016-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160404":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160404/","title":"Web App Manifest","rawDate":"2016-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160405":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160405/","title":"Web App Manifest","rawDate":"2016-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160406":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160406/","title":"Web App Manifest","rawDate":"2016-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160414":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160414/","title":"Web App Manifest","rawDate":"2016-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160421/","title":"Web App Manifest","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160422":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160422/","title":"Web App Manifest","rawDate":"2016-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160426":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160426/","title":"Web App Manifest","rawDate":"2016-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160518":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160518/","title":"Web App Manifest","rawDate":"2016-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160519/","title":"Web App Manifest","rawDate":"2016-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160609":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160609/","title":"Web App Manifest","rawDate":"2016-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160629":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160629/","title":"Web App Manifest","rawDate":"2016-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160714/","title":"Web App Manifest","rawDate":"2016-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160805":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160805/","title":"Web App Manifest","rawDate":"2016-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160809":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160809/","title":"Web App Manifest","rawDate":"2016-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160812":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160812/","title":"Web App Manifest","rawDate":"2016-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160825":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160825/","title":"Web App Manifest","rawDate":"2016-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160901":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160901/","title":"Web App Manifest","rawDate":"2016-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160912":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20160912/","title":"Web App Manifest","rawDate":"2016-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161013":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161013/","title":"Web App Manifest","rawDate":"2016-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161103":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161103/","title":"Web App Manifest","rawDate":"2016-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161107":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161107/","title":"Web App Manifest","rawDate":"2016-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161108":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161108/","title":"Web App Manifest","rawDate":"2016-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161110":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161110/","title":"Web App Manifest","rawDate":"2016-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161114":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161114/","title":"Web App Manifest","rawDate":"2016-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161130":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161130/","title":"Web App Manifest","rawDate":"2016-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161205":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161205/","title":"Web App Manifest","rawDate":"2016-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161206/","title":"Web App Manifest","rawDate":"2016-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161212":{"href":"https://www.w3.org/TR/2016/WD-appmanifest-20161212/","title":"Web App Manifest","rawDate":"2016-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170104":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170104/","title":"Web App Manifest","rawDate":"2017-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170117/","title":"Web App Manifest","rawDate":"2017-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170130":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170130/","title":"Web App Manifest","rawDate":"2017-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170302":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170302/","title":"Web App Manifest","rawDate":"2017-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170317":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170317/","title":"Web App Manifest","rawDate":"2017-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170319":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170319/","title":"Web App Manifest","rawDate":"2017-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170415":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170415/","title":"Web App Manifest","rawDate":"2017-04-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170502":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170502/","title":"Web App Manifest","rawDate":"2017-05-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170503":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170503/","title":"Web App Manifest","rawDate":"2017-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170505":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170505/","title":"Web App Manifest","rawDate":"2017-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170509":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170509/","title":"Web App Manifest","rawDate":"2017-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170510":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170510/","title":"Web App Manifest","rawDate":"2017-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170608":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170608/","title":"Web App Manifest","rawDate":"2017-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170628":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170628/","title":"Web App Manifest","rawDate":"2017-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170726":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170726/","title":"Web App Manifest","rawDate":"2017-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170727":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170727/","title":"Web App Manifest","rawDate":"2017-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170807":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170807/","title":"Web App Manifest","rawDate":"2017-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170808":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170808/","title":"Web App Manifest","rawDate":"2017-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170811":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170811/","title":"Web App Manifest","rawDate":"2017-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170814":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170814/","title":"Web App Manifest","rawDate":"2017-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170828":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170828/","title":"Web App Manifest","rawDate":"2017-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170905":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170905/","title":"Web App Manifest","rawDate":"2017-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170906":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170906/","title":"Web App Manifest","rawDate":"2017-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170907":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170907/","title":"Web App Manifest","rawDate":"2017-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170920":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170920/","title":"Web App Manifest","rawDate":"2017-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170922":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20170922/","title":"Web App Manifest","rawDate":"2017-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171026":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20171026/","title":"Web App Manifest","rawDate":"2017-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171129":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2017/WD-appmanifest-20171129/","title":"Web App Manifest","rawDate":"2017-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180117":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180117/","title":"Web App Manifest","rawDate":"2018-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180118":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180118/","title":"Web App Manifest","rawDate":"2018-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180129":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180129/","title":"Web App Manifest","rawDate":"2018-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180130":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180130/","title":"Web App Manifest","rawDate":"2018-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180202":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180202/","title":"Web App Manifest","rawDate":"2018-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180220":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180220/","title":"Web App Manifest","rawDate":"2018-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180222":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180222/","title":"Web App Manifest","rawDate":"2018-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180403":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180403/","title":"Web App Manifest","rawDate":"2018-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180507":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180507/","title":"Web App Manifest","rawDate":"2018-05-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180508":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180508/","title":"Web App Manifest","rawDate":"2018-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180523":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180523/","title":"Web App Manifest","rawDate":"2018-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180524":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180524/","title":"Web App Manifest","rawDate":"2018-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180614":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180614/","title":"Web App Manifest","rawDate":"2018-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180615":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180615/","title":"Web App Manifest","rawDate":"2018-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180622":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180622/","title":"Web App Manifest","rawDate":"2018-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180704":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180704/","title":"Web App Manifest","rawDate":"2018-07-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180719":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180719/","title":"Web App Manifest","rawDate":"2018-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180831":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180831/","title":"Web App Manifest","rawDate":"2018-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180903":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180903/","title":"Web App Manifest","rawDate":"2018-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180904":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180904/","title":"Web App Manifest","rawDate":"2018-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180905":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180905/","title":"Web App Manifest","rawDate":"2018-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180906":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20180906/","title":"Web App Manifest","rawDate":"2018-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181107":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20181107/","title":"Web App Manifest","rawDate":"2018-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181112":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20181112/","title":"Web App Manifest","rawDate":"2018-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181113":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20181113/","title":"Web App Manifest","rawDate":"2018-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181212":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Rob Dolin","Matt Giuca"],"href":"https://www.w3.org/TR/2018/WD-appmanifest-20181212/","title":"Web App Manifest","rawDate":"2018-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190410":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190410/","title":"Web App Manifest","rawDate":"2019-04-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190413":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190413/","title":"Web App Manifest","rawDate":"2019-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190418":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190418/","title":"Web App Manifest","rawDate":"2019-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190513":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190513/","title":"Web App Manifest","rawDate":"2019-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190530/","title":"Web App Manifest","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190531/","title":"Web App Manifest","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190702":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190702/","title":"Web App Manifest","rawDate":"2019-07-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190730":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190730/","title":"Web App Manifest","rawDate":"2019-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190806":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190806/","title":"Web App Manifest","rawDate":"2019-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190807":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190807/","title":"Web App Manifest","rawDate":"2019-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190820":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190820/","title":"Web App Manifest","rawDate":"2019-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190821":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190821/","title":"Web App Manifest","rawDate":"2019-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190903":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190903/","title":"Web App Manifest","rawDate":"2019-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190911":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190911/","title":"Web App Manifest","rawDate":"2019-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190924":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190924/","title":"Web App Manifest","rawDate":"2019-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190925":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190925/","title":"Web App Manifest","rawDate":"2019-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190926":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20190926/","title":"Web App Manifest","rawDate":"2019-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191001":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191001/","title":"Web App Manifest","rawDate":"2019-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191010":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191010/","title":"Web App Manifest","rawDate":"2019-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191024":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191024/","title":"Web App Manifest","rawDate":"2019-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191104":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191104/","title":"Web App Manifest","rawDate":"2019-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191112":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191112/","title":"Web App Manifest","rawDate":"2019-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191115":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191115/","title":"Web App Manifest","rawDate":"2019-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191204":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191204/","title":"Web App Manifest","rawDate":"2019-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191209":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2019/WD-appmanifest-20191209/","title":"Web App Manifest","rawDate":"2019-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200326":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/WD-appmanifest-20200326/","title":"Web App Manifest","rawDate":"2020-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200330":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/WD-appmanifest-20200330/","title":"Web App Manifest","rawDate":"2020-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200525":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/WD-appmanifest-20200525/","title":"Web App Manifest","rawDate":"2020-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200727":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/WD-appmanifest-20200727/","title":"Web App Manifest","rawDate":"2020-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201019":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/WD-appmanifest-20201019/","title":"Web App Manifest","rawDate":"2020-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210119/","title":"Web App Manifest","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210122":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210122/","title":"Web App Manifest","rawDate":"2021-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210215/","title":"Web App Manifest","rawDate":"2021-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210218":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210218/","title":"Web App Manifest","rawDate":"2021-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210303":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210303/","title":"Web Application Manifest","rawDate":"2021-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210304":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210304/","title":"Web Application Manifest","rawDate":"2021-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210305":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210305/","title":"Web Application Manifest","rawDate":"2021-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210309":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210309/","title":"Web Application Manifest","rawDate":"2021-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210407":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210407/","title":"Web Application Manifest","rawDate":"2021-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210526/","title":"Web Application Manifest","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210601/","title":"Web Application Manifest","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210609":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210609/","title":"Web Application Manifest","rawDate":"2021-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210623":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210623/","title":"Web Application Manifest","rawDate":"2021-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210628":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210628/","title":"Web Application Manifest","rawDate":"2021-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210701":{"authors":["Marcos Caceres","Kenneth Christiansen","Mounir Lamouri","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210701/","title":"Web Application Manifest","rawDate":"2021-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210811":{"authors":["Marcos Caceres","Kenneth Christiansen","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210811/","title":"Web Application Manifest","rawDate":"2021-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Marcos Caceres","Kenneth Christiansen","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210824/","title":"Web Application Manifest","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Marcos Caceres","Kenneth Christiansen","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20210825/","title":"Web Application Manifest","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Marcos Caceres","Kenneth Christiansen","Anssi Kostiainen","Matt Giuca","Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20211007/","title":"Web Application Manifest","rawDate":"2021-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211110":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20211110/","title":"Web Application Manifest","rawDate":"2021-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211218":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/WD-appmanifest-20211218/","title":"Web Application Manifest","rawDate":"2021-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20220202/","title":"Web Application Manifest","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20220203/","title":"Web Application Manifest","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220217":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20220217/","title":"Web Application Manifest","rawDate":"2022-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221031":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20221031/","title":"Web Application Manifest","rawDate":"2022-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221108":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20221108/","title":"Web Application Manifest","rawDate":"2022-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221109":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20221109/","title":"Web Application Manifest","rawDate":"2022-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221220":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/WD-appmanifest-20221220/","title":"Web Application Manifest","rawDate":"2022-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20230125/","title":"Web Application Manifest","rawDate":"2023-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20230329/","title":"Web Application Manifest","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230426":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20230426/","title":"Web Application Manifest","rawDate":"2023-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230502":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20230502/","title":"Web Application Manifest","rawDate":"2023-05-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20231006/","title":"Web Application Manifest","rawDate":"2023-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20231012/","title":"Web Application Manifest","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20231028/","title":"Web Application Manifest","rawDate":"2023-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231115":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20231115/","title":"Web Application Manifest","rawDate":"2023-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231129":{"authors":["Marcos Caceres","Kenneth Christiansen","Matt Giuca","Aaron Gustafson","Daniel Murphy","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-appmanifest-20231129/","title":"Web Application Manifest","rawDate":"2023-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/manifest/","repository":"https://github.com/w3c/manifest"},"arab-ks-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/arab-ks-gap/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/alreq/gap-analysis/arab-ks-gap.html","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220329":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ks-gap-20220329/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2022-03-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220407":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ks-gap-20220407/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2022-04-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ks-gap-20220617/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2022-06-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ks-gap-20220712/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2022-07-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20230614/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20230807/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-arab-ks-gap-20231004/","title":"Perso-arabic Kashmiri Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/alreq"},"arab-ug-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/arab-ug-gap/","title":"Uighur Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/alreq/gap-analysis/arab-ug-gap.html","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220329":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ug-gap-20220329/","title":"Uighur Gap Analysis","rawDate":"2022-03-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220407":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ug-gap-20220407/","title":"Uighur Gap Analysis","rawDate":"2022-04-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ug-gap-20220617/","title":"Uighur Gap Analysis","rawDate":"2022-06-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-arab-ug-gap-20220712/","title":"Uighur Gap Analysis","rawDate":"2022-07-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20230614/","title":"Uighur Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20230807/","title":"Uighur Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-arab-ug-gap-20231004/","title":"Uighur Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/alreq"},"arabic-math":{"authors":["Azzeddine Lazrek","Bruce Miller"],"href":"https://www.w3.org/TR/arabic-math/","title":"Arabic mathematical notation","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"versions":{"20060131":{"authors":["Azzeddine Lazrek","Bruce Miller"],"href":"https://www.w3.org/TR/2006/NOTE-arabic-math-20060131/","title":"Arabic mathematical notation","rawDate":"2006-01-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-01-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"aria-in-html":{"aliasOf":"using-aria"},"aria-roadmap":{"aliasOf":"wai-aria-roadmap"},"aria-role":{"aliasOf":"wai-aria"},"aria-state":{"aliasOf":"wai-aria"},"audio-eq-cookbook":{"authors":["Raymond Toy"],"href":"https://www.w3.org/TR/audio-eq-cookbook/","title":"Audio EQ Cookbook","rawDate":"2021-06-08","status":"NOTE","publisher":"W3C","edDraft":"https://webaudio.github.io/Audio-EQ-Cookbook/audio-eq-cookbook.html","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210608":{"authors":["Raymond Toy"],"href":"https://www.w3.org/TR/2021/NOTE-audio-eq-cookbook-20210608/","title":"Audio EQ Cookbook","rawDate":"2021-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webaudio/Audio-EQ-Cookbook"},"audio-output":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/audio-output/","title":"Audio Output Devices API","rawDate":"2023-08-31","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-output/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150210":{"authors":["Justin Uberti","Victoria Kirst"],"href":"https://www.w3.org/TR/2015/WD-audio-output-20150210/","title":"Audio Output Devices API","rawDate":"2015-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160601":{"href":"https://www.w3.org/TR/2016/WD-audio-output-20160601/","title":"Audio Output Devices API","rawDate":"2016-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"href":"https://www.w3.org/TR/2016/WD-audio-output-20160714/","title":"Audio Output Devices API","rawDate":"2016-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161014":{"href":"https://www.w3.org/TR/2016/WD-audio-output-20161014/","title":"Audio Output Devices API","rawDate":"2016-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161031":{"href":"https://www.w3.org/TR/2016/WD-audio-output-20161031/","title":"Audio Output Devices API","rawDate":"2016-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161102":{"href":"https://www.w3.org/TR/2016/WD-audio-output-20161102/","title":"Audio Output Devices API","rawDate":"2016-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Justin Uberti","Guido Urdaneta"],"href":"https://www.w3.org/TR/2016/WD-audio-output-20161215/","title":"Audio Output Devices API","rawDate":"2016-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171003":{"authors":["Justin Uberti","Guido Urdaneta"],"href":"https://www.w3.org/TR/2017/CR-audio-output-20171003/","title":"Audio Output Devices API","rawDate":"2017-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201127":{"authors":["Justin Uberti","Guido Urdaneta"],"href":"https://www.w3.org/TR/2020/CRD-audio-output-20201127/","title":"Audio Output Devices API","rawDate":"2020-11-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210107":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-audio-output-20210107/","title":"Audio Output Devices API","rawDate":"2021-01-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-audio-output-20210119/","title":"Audio Output Devices API","rawDate":"2021-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-audio-output-20210215/","title":"Audio Output Devices API","rawDate":"2021-02-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210706":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-audio-output-20210706/","title":"Audio Output Devices API","rawDate":"2021-07-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211115":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-audio-output-20211115/","title":"Audio Output Devices API","rawDate":"2021-11-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-audio-output-20220210/","title":"Audio Output Devices API","rawDate":"2022-02-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230203":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-audio-output-20230203/","title":"Audio Output Devices API","rawDate":"2023-02-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230504":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-audio-output-20230504/","title":"Audio Output Devices API","rawDate":"2023-05-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Justin Uberti","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-audio-output-20230831/","title":"Audio Output Devices API","rawDate":"2023-08-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-output"},"audiobooks":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/audiobooks/","title":"Audiobooks","rawDate":"2020-11-10","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/audiobooks/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190620":{"authors":["Wendy Reid"],"href":"https://www.w3.org/TR/2019/WD-audiobooks-20190620/","title":"Audiobook Profile for Web Publications","rawDate":"2019-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190830":{"authors":["Wendy Reid"],"href":"https://www.w3.org/TR/2019/WD-audiobooks-20190830/","title":"Audiobook Profile for Publication Manifest","rawDate":"2019-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190911":{"authors":["Wendy Reid"],"href":"https://www.w3.org/TR/2019/WD-audiobooks-20190911/","title":"Audiobook Profile for Publication Manifest","rawDate":"2019-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191118":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2019/WD-audiobooks-20191118/","title":"Audiobooks","rawDate":"2019-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2019/CR-audiobooks-20191205/","title":"Audiobooks","rawDate":"2019-12-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200128":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/CR-audiobooks-20200128/","title":"Audiobooks","rawDate":"2020-01-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200317":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/CR-audiobooks-20200317/","title":"Audiobooks","rawDate":"2020-03-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200730":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/CR-audiobooks-20200730/","title":"Audiobooks","rawDate":"2020-07-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200909":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/CR-audiobooks-20200909/","title":"Audiobooks","rawDate":"2020-09-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200914":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/CR-audiobooks-20200914/","title":"Audiobooks","rawDate":"2020-09-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/PR-audiobooks-20201001/","title":"Audiobooks","rawDate":"2020-10-01","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"hasErrata":"https://w3c.github.io/audiobooks/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201110":{"authors":["Wendy Reid","Matt Garrish"],"href":"https://www.w3.org/TR/2020/REC-audiobooks-20201110/","title":"Audiobooks","rawDate":"2020-11-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"hasErrata":"https://w3c.github.io/audiobooks/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/audiobooks","hasErrata":"https://w3c.github.io/audiobooks/errata/"},"audioproc":{"authors":["Robert O'Callahan","Chris Rogers"],"href":"https://www.w3.org/TR/audioproc/","title":"Audio Processing API","rawDate":"2011-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111215":{"authors":["Robert O'Callahan","Chris Rogers"],"href":"https://www.w3.org/TR/2011/WD-audioproc-20111215/","title":"Audio Processing API","rawDate":"2011-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"authentform":{"versions":{"19990203":{"status":"NOTE","rawDate":"1999-02-03","href":"https://www.w3.org/TR/1999/NOTE-authentform-19990203","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-authentform","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-02-03","title":"User Agent Authentication Form Elements"},"autoplay-detection":{"authors":["Alastor Wu"],"href":"https://www.w3.org/TR/autoplay-detection/","title":"Autoplay Policy Detection","rawDate":"2023-02-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/autoplay/","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220315":{"authors":["ALASTOR WU"],"href":"https://www.w3.org/TR/2022/WD-autoplay-detection-20220315/","title":"Autoplay Policy Detection","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220407":{"authors":["ALASTOR WU"],"href":"https://www.w3.org/TR/2022/WD-autoplay-detection-20220407/","title":"Autoplay Policy Detection","rawDate":"2022-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220915":{"authors":["ALASTOR WU"],"href":"https://www.w3.org/TR/2022/WD-autoplay-detection-20220915/","title":"Autoplay Policy Detection","rawDate":"2022-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230127":{"authors":["Alastor Wu"],"href":"https://www.w3.org/TR/2023/WD-autoplay-detection-20230127/","title":"Autoplay Policy Detection","rawDate":"2023-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230210":{"authors":["Alastor Wu"],"href":"https://www.w3.org/TR/2023/WD-autoplay-detection-20230210/","title":"Autoplay Policy Detection","rawDate":"2023-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/autoplay"},"backplane":{"authors":["Mark Birbeck","John Boyer","Alfred S. Gilman","Kevin Kelly","Steven Pemberton","Charles Wiecha"],"etAl":true,"href":"https://www.w3.org/TR/backplane/","title":"Rich Web Application Backplane","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/CoordGroup/"],"versions":{"20061116":{"authors":["Mark Birbeck","John Boyer","Alfred S. Gilman","Kevin Kelly","Steven Pemberton","Charles Wiecha"],"href":"https://www.w3.org/TR/2006/NOTE-backplane-20061116/","title":"Rich Web Application Backplane","rawDate":"2006-11-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/CoordGroup/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-11-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"badging":{"authors":["Marcos Caceres","Diego Gonzalez-Zuniga"],"href":"https://www.w3.org/TR/badging/","title":"Badging API","rawDate":"2023-05-03","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/badging/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230411":{"authors":["Marcos Caceres","Diego Gonzalez-Zuniga"],"href":"https://www.w3.org/TR/2023/WD-badging-20230411/","title":"Badging API","rawDate":"2023-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230503":{"authors":["Marcos Caceres","Diego Gonzalez-Zuniga"],"href":"https://www.w3.org/TR/2023/WD-badging-20230503/","title":"Badging API","rawDate":"2023-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/badging"},"baggage":{"authors":["Sergey Kanzhelev","Yuri Shkuro","Daniel Dyla","J. Kalyana Sundaram"],"href":"https://www.w3.org/TR/baggage/","title":"Propagation format for distributed context: Baggage","rawDate":"2024-01-19","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/baggage/","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201020":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer"],"href":"https://www.w3.org/TR/2020/WD-baggage-20201020/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2020-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210803":{"authors":["Sergey Kanzhelev","Daniel Khan","Yuri Shkuro","Alois Reitbauer","Morgan McLean"],"href":"https://www.w3.org/TR/2021/WD-baggage-20210803/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2021-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Sergey Kanzhelev","Yuri Shkuro","Alois Reitbauer","Morgan McLean","Daniel Khan"],"href":"https://www.w3.org/TR/2021/WD-baggage-20210914/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2021-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2021/WD-baggage-20211208/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220111":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220111/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2022-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220329":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220329/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2022-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220426":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220426/","title":"Propagation format for distributed trace context: Baggage","rawDate":"2022-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220524/","title":"Propagation format for distributed context: Baggage","rawDate":"2022-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220608/","title":"Propagation format for distributed context: Baggage","rawDate":"2022-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220617/","title":"Propagation format for distributed context: Baggage","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220927/","title":"Propagation format for distributed context: Baggage","rawDate":"2022-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-baggage-20220928/","title":"Propagation format for distributed context: Baggage","rawDate":"2022-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230523":{"authors":["Sergey Kanzhelev","Yuri Shkuro"],"href":"https://www.w3.org/TR/2023/WD-baggage-20230523/","title":"Propagation format for distributed context: Baggage","rawDate":"2023-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Sergey Kanzhelev","Yuri Shkuro","Daniel Dyla","J. Kalyana Sundaram"],"href":"https://www.w3.org/TR/2023/WD-baggage-20230810/","title":"Propagation format for distributed context: Baggage","rawDate":"2023-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240119":{"authors":["Sergey Kanzhelev","Yuri Shkuro","Daniel Dyla","J. Kalyana Sundaram"],"href":"https://www.w3.org/TR/2024/WD-baggage-20240119/","title":"Propagation format for distributed context: Baggage","rawDate":"2024-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/baggage"},"battery-status":{"authors":["Anssi Kostiainen","Mounir Lamouri","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/battery-status/","title":"Battery Status API","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110426":{"status":"WD","rawDate":"2011-04-26","href":"https://www.w3.org/TR/2011/WD-battery-status-20110426/","source":"./data/w3c-specs.txt"},"20110602":{"status":"WD","rawDate":"2011-06-02","href":"https://www.w3.org/TR/2011/WD-battery-status-20110602/","source":"./data/w3c-specs.txt"},"20110915":{"status":"WD","rawDate":"2011-09-15","href":"https://www.w3.org/TR/2011/WD-battery-status-20110915/","source":"./data/w3c-specs.txt"},"20111129":{"status":"WD","rawDate":"2011-11-29","href":"https://www.w3.org/TR/2011/WD-battery-status-20111129/","source":"./data/w3c-specs.txt"},"20120508":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2012/CR-battery-status-20120508/","title":"Battery Status API","rawDate":"2012-05-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140828":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2014/WD-battery-status-20140828/","title":"Battery Status API","rawDate":"2014-08-28","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2014/CR-battery-status-20141209/","title":"Battery Status API","rawDate":"2014-12-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2016/PR-battery-status-20160329/","title":"Battery Status API","rawDate":"2016-03-29","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160707":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2016/CR-battery-status-20160707/","title":"Battery Status API","rawDate":"2016-07-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210601/","title":"Battery Status API","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210817/","title":"Battery Status API","rawDate":"2021-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210825/","title":"Battery Status API","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210826/","title":"Battery Status API","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210827":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210827/","title":"Battery Status API","rawDate":"2021-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210831/","title":"Battery Status API","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210913":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20210913/","title":"Battery Status API","rawDate":"2021-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211109":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-battery-status-20211109/","title":"Battery Status API","rawDate":"2021-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220201":{"authors":["Anssi Kostiainen","Mounir Lamouri"],"href":"https://www.w3.org/TR/2022/WD-battery-status-20220201/","title":"Battery Status API","rawDate":"2022-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Anssi Kostiainen","Mounir Lamouri","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2022/WD-battery-status-20220203/","title":"Battery Status API","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/battery/","repository":"https://github.com/w3c/battery"},"beacon":{"authors":["Ilya Grigorik","Alois Reitbauer"],"href":"https://www.w3.org/TR/beacon/","title":"Beacon","rawDate":"2022-08-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131029":{"authors":["Jatinder Mann","Alois Reitbauer"],"href":"https://www.w3.org/TR/2013/WD-beacon-20131029/","title":"Beacon","rawDate":"2013-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140624":{"authors":["Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2014/WD-beacon-20140624/","title":"Beacon","rawDate":"2014-06-24","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150922":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20150922/","title":"Beacon","rawDate":"2015-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20150924/","title":"Beacon","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20150929/","title":"Beacon","rawDate":"2015-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151021":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20151021/","title":"Beacon","rawDate":"2015-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151027":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20151027/","title":"Beacon","rawDate":"2015-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151030":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20151030/","title":"Beacon","rawDate":"2015-10-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151125":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20151125/","title":"Beacon","rawDate":"2015-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151130":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20151130/","title":"Beacon","rawDate":"2015-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151209":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-beacon-20151209/","title":"Beacon","rawDate":"2015-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160121":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160121/","title":"Beacon","rawDate":"2016-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160202":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160202/","title":"Beacon","rawDate":"2016-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160203":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160203/","title":"Beacon","rawDate":"2016-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160204/","title":"Beacon","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160209":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160209/","title":"Beacon","rawDate":"2016-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160217":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160217/","title":"Beacon","rawDate":"2016-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-beacon-20160225/","title":"Beacon","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160629":{"href":"https://www.w3.org/TR/2016/WD-beacon-20160629/","title":"Beacon","rawDate":"2016-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"href":"https://www.w3.org/TR/2016/WD-beacon-20160830/","title":"Beacon","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161025":{"href":"https://www.w3.org/TR/2016/WD-beacon-20161025/","title":"Beacon","rawDate":"2016-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161028":{"href":"https://www.w3.org/TR/2016/WD-beacon-20161028/","title":"Beacon","rawDate":"2016-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2017/CR-beacon-20170413/","title":"Beacon","rawDate":"2017-04-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["Ilya Grigorik","Alois Reitbauer"],"href":"https://www.w3.org/TR/2022/CRD-beacon-20220803/","title":"Beacon","rawDate":"2022-08-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/beacon/","repository":"https://github.com/w3c/beacon"},"becss":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/becss/","title":"Behavioral Extensions to CSS","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"19990804":{"status":"WD","rawDate":"1999-08-04","href":"https://www.w3.org/TR/1999/WD-becss-19990804","source":"./data/w3c-specs.txt"},"20070205":{"status":"WD","rawDate":"2007-02-05","href":"https://www.w3.org/TR/2007/WD-becss-20070205","source":"./data/w3c-specs.txt"},"20071019":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2007/WD-becss-20071019","title":"Behavioral Extensions to CSS","rawDate":"2007-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2014/NOTE-becss-20141014/","title":"Behavioral Extensions to CSS","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://dev.w3.org/2006/xbl2/css-module.html","isRetired":true},"beng-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/beng-gap/","title":"Bengali Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/iip/gap-analysis/beng-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-beng-gap-20200616/","title":"Bengali Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-beng-gap-20210126/","title":"Bengali Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210210":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-beng-gap-20210210/","title":"Bengali Gap Analysis","rawDate":"2021-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210217":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-beng-gap-20210217/","title":"Bengali Gap Analysis","rawDate":"2021-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210330":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-beng-gap-20210330/","title":"Bengali Gap Analysis","rawDate":"2021-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210331":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-beng-gap-20210331/","title":"Bengali Gap Analysis","rawDate":"2021-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-beng-gap-20210525/","title":"Bengali Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-beng-gap-20211215/","title":"Bengali Gap Analysis","rawDate":"2021-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-beng-gap-20230614/","title":"Bengali Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230830":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-beng-gap-20230830/","title":"Bengali Gap Analysis","rawDate":"2023-08-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-beng-gap-20231004/","title":"Bengali Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"calendar-api":{"authors":["Richard Tibbett","Suresh Chitturi"],"href":"https://www.w3.org/TR/calendar-api/","title":"Calendar API","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110419":{"authors":["Richard Tibbett","Suresh Chitturi"],"href":"https://www.w3.org/TR/2011/WD-calendar-api-20110419/","title":"Calendar API","rawDate":"2011-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140114":{"authors":["Richard Tibbett","Suresh Chitturi"],"href":"https://www.w3.org/TR/2014/NOTE-calendar-api-20140114/","title":"Calendar API","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"call-control-reqs":{"authors":["Brandon Porter"],"href":"https://www.w3.org/TR/call-control-reqs/","title":"Call Control Requirements in a Voice Browser Framework","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20010413":{"authors":["Brandon Porter"],"href":"https://www.w3.org/TR/2001/WD-call-control-reqs-20010413/","title":"Call Control Requirements in a Voice Browser Framework","rawDate":"2001-04-13","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-04-13","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"cans-iu-cr-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/cans-iu-cr-gap/","title":"Inuktitut & Cree Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/amlreq/gap-analysis/iu-cr-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-cans-iu-cr-gap-20200616/","title":"Inuktitut & Cree Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200715":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-cans-iu-cr-gap-20200715/","title":"Inuktitut & Cree Gap Analysis","rawDate":"2020-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-cans-iu-cr-gap-20210521/","title":"Inuktitut & Cree Gap Analysis","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-cans-iu-cr-gap-20230614/","title":"Inuktitut & Cree Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/amlreq"},"capability-urls":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/capability-urls/","title":"Good Practices for Capability URLs","rawDate":"2014-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140218":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2014/WD-capability-urls-20140218/","title":"Good Practices for Capability URLs","rawDate":"2014-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3ctag.github.io/capability-urls/","repository":"https://github.com/w3ctag/capability-urls"},"capture-api":{"aliasOf":"html-media-capture"},"capture-handle-identity":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/capture-handle-identity/","title":"Capture Handle - Bootstrapping Collaboration when Screensharing","rawDate":"2022-07-06","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-handle/identity/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220510":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2022/WD-capture-handle-identity-20220510/","title":"Capture Handle - Bootstrapping Collaboration when Screensharing","rawDate":"2022-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2022/WD-capture-handle-identity-20220519/","title":"Capture Handle - Bootstrapping Collaboration when Screensharing","rawDate":"2022-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2022/WD-capture-handle-identity-20220706/","title":"Capture Handle - Bootstrapping Collaboration when Screensharing","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-handle"},"capture-scenarios":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/capture-scenarios/","title":"MediaStream Capture Scenarios","rawDate":"2012-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120306":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2012/WD-capture-scenarios-20120306/","title":"MediaStream Capture Scenarios","rawDate":"2012-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ccxml":{"authors":["Paolo Baggia","Mark Scott"],"href":"https://www.w3.org/TR/ccxml/","title":"Voice Browser Call Control: CCXML Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2011/07/ccxml-errata","versions":{"20020221":{"status":"WD","rawDate":"2002-02-21","href":"https://www.w3.org/TR/2002/WD-ccxml-20020221/","source":"./data/w3c-specs.txt"},"20021011":{"status":"WD","rawDate":"2002-10-11","href":"https://www.w3.org/TR/2002/WD-ccxml-20021011/","source":"./data/w3c-specs.txt"},"20030612":{"status":"WD","rawDate":"2003-06-12","href":"https://www.w3.org/TR/2003/WD-ccxml-20030612/","source":"./data/w3c-specs.txt"},"20040430":{"status":"WD","rawDate":"2004-04-30","href":"https://www.w3.org/TR/2004/WD-ccxml-20040430/","source":"./data/w3c-specs.txt"},"20050111":{"status":"WD","rawDate":"2005-01-11","href":"https://www.w3.org/TR/2005/WD-ccxml-20050111/","source":"./data/w3c-specs.txt"},"20050629":{"status":"WD","rawDate":"2005-06-29","href":"https://www.w3.org/TR/2005/WD-ccxml-20050629/","source":"./data/w3c-specs.txt"},"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-ccxml-20061122/","source":"./data/w3c-specs.txt"},"20070119":{"status":"WD","rawDate":"2007-01-19","href":"https://www.w3.org/TR/2007/WD-ccxml-20070119/","source":"./data/w3c-specs.txt"},"20100401":{"status":"CR","rawDate":"2010-04-01","href":"https://www.w3.org/TR/2010/CR-ccxml-20100401/","source":"./data/w3c-specs.txt"},"20110510":{"status":"PR","rawDate":"2011-05-10","href":"https://www.w3.org/TR/2011/PR-ccxml-20110510/","source":"./data/w3c-specs.txt"},"20110705":{"authors":["Paolo Baggia","Mark Scott"],"href":"https://www.w3.org/TR/2011/REC-ccxml-20110705/","title":"Voice Browser Call Control: CCXML Version 1.0","rawDate":"2011-07-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2011/07/ccxml-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-07-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"change-password-url":{"authors":["Ricky Mondello","Theresa O'Connor"],"href":"https://www.w3.org/TR/change-password-url/","title":"A Well-Known URL for Changing Passwords","rawDate":"2022-09-27","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-change-password-url/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220927":{"authors":["Ricky Mondello","Theresa O'Connor"],"href":"https://www.w3.org/TR/2022/WD-change-password-url-20220927/","title":"A Well-Known URL for Changing Passwords","rawDate":"2022-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-change-password-url"},"charcol":{"versions":{"20000114":{"status":"NOTE","rawDate":"2000-01-14","href":"https://www.w3.org/TR/2000/NOTE-charcol-20000114","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/charcol","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-01-14","title":"Character Collections for the WWW"},"charmod":{"authors":["Martin Dürst","François Yergeau","Richard Ishida","Misha Wolf","Tex Texin"],"etAl":true,"href":"https://www.w3.org/TR/charmod/","title":"Character Model for the World Wide Web 1.0: Fundamentals","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"hasErrata":"https://www.w3.org/2005/02/charmod-fundamentals-errata.html","versions":{"19990225":{"status":"WD","rawDate":"1999-02-25","href":"https://www.w3.org/TR/1999/WD-charmod-19990225","source":"./data/w3c-specs.txt"},"19991129":{"status":"WD","rawDate":"1999-11-29","href":"https://www.w3.org/TR/1999/WD-charmod-19991129/","source":"./data/w3c-specs.txt"},"20010126":{"status":"WD","rawDate":"2001-01-26","href":"https://www.w3.org/TR/2001/WD-charmod-20010126/","source":"./data/w3c-specs.txt"},"20010928":{"status":"WD","rawDate":"2001-09-28","href":"https://www.w3.org/TR/2001/WD-charmod-20010928/","source":"./data/w3c-specs.txt"},"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-charmod-20011220/","source":"./data/w3c-specs.txt"},"20020220":{"status":"WD","rawDate":"2002-02-20","href":"https://www.w3.org/TR/2002/WD-charmod-20020220/","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-charmod-20020430/","source":"./data/w3c-specs.txt"},"20030822":{"status":"WD","rawDate":"2003-08-22","href":"https://www.w3.org/TR/2003/WD-charmod-20030822/","source":"./data/w3c-specs.txt"},"20040225":{"status":"WD","rawDate":"2004-02-25","href":"https://www.w3.org/TR/2004/WD-charmod-20040225/","source":"./data/w3c-specs.txt"},"20041122":{"status":"PR","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/PR-charmod-20041122/","source":"./data/w3c-specs.txt"},"20050215":{"authors":["Martin Dürst","François Yergeau","Richard Ishida","Misha Wolf","Tex Texin"],"href":"https://www.w3.org/TR/2005/REC-charmod-20050215/","title":"Character Model for the World Wide Web 1.0: Fundamentals","rawDate":"2005-02-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"hasErrata":"https://www.w3.org/2005/02/charmod-fundamentals-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-02-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"charmod-norm":{"authors":["Addison Phillips"],"etAl":true,"href":"https://www.w3.org/TR/charmod-norm/","title":"Character Model for the World Wide Web: String Matching","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20040225":{"status":"WD","rawDate":"2004-02-25","href":"https://www.w3.org/TR/2004/WD-charmod-norm-20040225/","source":"./data/w3c-specs.txt"},"20051027":{"status":"WD","rawDate":"2005-10-27","href":"https://www.w3.org/TR/2005/WD-charmod-norm-20051027/","source":"./data/w3c-specs.txt"},"20120501":{"authors":["François Yergeau","Martin Dürst","Richard Ishida","Addison Phillips","Misha Wolf","Tex Texin"],"href":"https://www.w3.org/TR/2012/WD-charmod-norm-20120501/","title":"Character Model for the World Wide Web 1.0: Normalization","rawDate":"2012-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140715":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2014/WD-charmod-norm-20140715/","title":"Character Model for the World Wide Web: String Matching and Searching","rawDate":"2014-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2015/WD-charmod-norm-20150721/","title":"Character Model for the World Wide Web: String Matching and Searching","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150813":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2015/WD-charmod-norm-20150813/","title":"Character Model for the World Wide Web: String Matching and Searching","rawDate":"2015-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2015/WD-charmod-norm-20151119/","title":"Character Model for the World Wide Web: String Matching and Searching","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160407":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2016/WD-charmod-norm-20160407/","title":"Character Model for the World Wide Web: String Matching and Searching","rawDate":"2016-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180420":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2018/WD-charmod-norm-20180420/","title":"Character Model for the World Wide Web: String Matching","rawDate":"2018-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190204":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2019/NOTE-charmod-norm-20190204/","title":"Character Model for the World Wide Web: String Matching","rawDate":"2019-02-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210811":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2021/NOTE-charmod-norm-20210811/","title":"Character Model for the World Wide Web: String Matching","rawDate":"2021-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2021-08-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/charmod-norm/","repository":"https://github.com/w3c/charmod-norm"},"charmod-resid":{"authors":["Richard Ishida"],"etAl":true,"href":"https://www.w3.org/TR/charmod-resid/","title":"Character Model for the World Wide Web 1.0: Resource Identifiers","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20041122":{"authors":["Martin Dürst","François Yergeau","Richard Ishida","Misha Wolf","Tex Texin"],"href":"https://www.w3.org/TR/2004/CR-charmod-resid-20041122/","title":"Character Model for the World Wide Web 1.0: Resource Identifiers","rawDate":"2004-11-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190502":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2019/NOTE-charmod-resid-20190502/","title":"Character Model for the World Wide Web 1.0: Resource Identifiers","rawDate":"2019-05-02","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2019-05-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"charreq":{"authors":["Martin Dürst"],"href":"https://www.w3.org/TR/charreq/","title":"Requirements for String Identity Matching and String Indexing","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"19980710":{"status":"WD","rawDate":"1998-07-10","href":"https://www.w3.org/TR/1998/WD-charreq-19980710","source":"./data/w3c-specs.txt"},"20090915":{"authors":["Martin Dürst"],"href":"https://www.w3.org/TR/2009/NOTE-charreq-20090915/","title":"Requirements for String Identity Matching and String Indexing","rawDate":"2009-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-09-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"cher-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/cher-gap/","title":"Cherokee Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/amlreq/gap-analysis/chr-gap.html","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-cher-gap-20200616/","title":"Cherokee Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200715":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-cher-gap-20200715/","title":"Cherokee Gap Analysis","rawDate":"2020-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-cher-gap-20210521/","title":"Cherokee Gap Analysis","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-cher-gap-20220119/","title":"Cherokee Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-cher-gap-20230614/","title":"Cherokee Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-cher-gap-20230615/","title":"Cherokee Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/amlreq"},"clear-site-data":{"authors":["Mike West"],"href":"https://www.w3.org/TR/clear-site-data/","title":"Clear Site Data","rawDate":"2017-11-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-clear-site-data/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150804":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-clear-site-data-20150804/","title":"Clear Site Data","rawDate":"2015-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160720":{"href":"https://www.w3.org/TR/2016/WD-clear-site-data-20160720/","title":"Clear Site Data","rawDate":"2016-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171130":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2017/WD-clear-site-data-20171130/","title":"Clear Site Data","rawDate":"2017-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-clear-site-data"},"clipboard-apis":{"authors":["Gary Kacmarcik","Anupam Snigdha"],"href":"https://www.w3.org/TR/clipboard-apis/","title":"Clipboard API and events","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"versions":{"20061115":{"status":"WD","rawDate":"2006-11-15","href":"https://www.w3.org/TR/2006/WD-clipboard-apis-20061115/","source":"./data/w3c-specs.txt"},"20110412":{"status":"WD","rawDate":"2011-04-12","href":"https://www.w3.org/TR/2011/WD-clipboard-apis-20110412/","source":"./data/w3c-specs.txt"},"20120223":{"status":"WD","rawDate":"2012-02-23","href":"https://www.w3.org/TR/2012/WD-clipboard-apis-20120223/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2013/WD-clipboard-apis-20130411/","title":"Clipboard API and events","rawDate":"2013-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140313":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2014/WD-clipboard-apis-20140313/","title":"Clipboard API and events","rawDate":"2014-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140918":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2014/WD-clipboard-apis-20140918/","title":"Clipboard API and events","rawDate":"2014-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2014/WD-clipboard-apis-20141209/","title":"Clipboard API and events","rawDate":"2014-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150421":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2015/WD-clipboard-apis-20150421/","title":"Clipboard API and events","rawDate":"2015-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2015/WD-clipboard-apis-20151215/","title":"Clipboard API and events","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160311":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2016/WD-clipboard-apis-20160311/","title":"Clipboard API and events","rawDate":"2016-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160403":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2016/WD-clipboard-apis-20160403/","title":"Clipboard API and events","rawDate":"2016-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Hallvord Steen"],"href":"https://www.w3.org/TR/2016/WD-clipboard-apis-20161213/","title":"Clipboard API and events","rawDate":"2016-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170929":{"authors":["Gary Kacmarcik","Grisha Lyukshin","Hallvord Steen"],"href":"https://www.w3.org/TR/2017/WD-clipboard-apis-20170929/","title":"Clipboard API and events","rawDate":"2017-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Gary Kacmarcik","Grisha Lyukshin","Hallvord Steen"],"href":"https://www.w3.org/TR/2018/WD-clipboard-apis-20181108/","title":"Clipboard API and events","rawDate":"2018-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Gary Kacmarcik","Grisha Lyukshin","Hallvord Steen"],"href":"https://www.w3.org/TR/2019/WD-clipboard-apis-20190530/","title":"Clipboard API and events","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190605":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2019/WD-clipboard-apis-20190605/","title":"Clipboard API and events","rawDate":"2019-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200603":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2020/WD-clipboard-apis-20200603/","title":"Clipboard API and events","rawDate":"2020-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200721":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2020/WD-clipboard-apis-20200721/","title":"Clipboard API and events","rawDate":"2020-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2020/WD-clipboard-apis-20200818/","title":"Clipboard API and events","rawDate":"2020-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201029":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2020/WD-clipboard-apis-20201029/","title":"Clipboard API and events","rawDate":"2020-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210203":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2021/WD-clipboard-apis-20210203/","title":"Clipboard API and events","rawDate":"2021-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2021/WD-clipboard-apis-20210521/","title":"Clipboard API and events","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2021/WD-clipboard-apis-20210525/","title":"Clipboard API and events","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2021/WD-clipboard-apis-20210604/","title":"Clipboard API and events","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210806":{"authors":["Gary Kacmarcik","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2021/WD-clipboard-apis-20210806/","title":"Clipboard API and events","rawDate":"2021-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230516":{"authors":["Gary Kacmarcik","Anupam Snigdha"],"href":"https://www.w3.org/TR/2023/WD-clipboard-apis-20230516/","title":"Clipboard API and events","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-05-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/clipboard-apis/","repository":"https://github.com/w3c/clipboard-apis"},"cloud-browser-arch":{"authors":["Colin Meerveld","Alexandra Mikityuk"],"href":"https://www.w3.org/TR/cloud-browser-arch/","title":"Cloud Browser Architecture","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/Web-and-TV-IG/cloud-browser-tf/","deliveredBy":["https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170608":{"authors":["Colin Meerveld","Alexandra Mikityuk"],"href":"https://www.w3.org/TR/2017/NOTE-cloud-browser-arch-20170608/","title":"Cloud Browser Architecture","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/Web-and-TV-IG"},"clreq":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/clreq/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/International/clreq/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150723":{"authors":["Bobby Tung","Yijun Chen","Hai Liang","Eric Q LIU","Xiaoqian Wu","An Qi Li","Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-clreq-20150723/","title":"Requirements for Chinese Text Layout 中文排版需求","rawDate":"2015-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150730":{"authors":["Bobby Tung","Yijun Chen","Hai Liang","Eric Q LIU","Aijie Zhang","Xiaoqian Wu","An Qi Li","Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-clreq-20150730/","title":"Requirements for Chinese Text Layout 中文排版需求","rawDate":"2015-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170220":{"authors":["Bobby Tung","Yijun Chen","An Qi Li","Richard Ishida"],"href":"https://www.w3.org/TR/2017/WD-clreq-20170220/","title":"Requirements for Chinese Text Layout 中文排版需求","rawDate":"2017-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171229":{"authors":["Bobby Tung","Yijun Chen","Hai Liang","Eric Q LIU","Hui Jing Chen","Aijie Zhang","Xiaoqian Wu","An Qi Li","Richard Ishida"],"href":"https://www.w3.org/TR/2017/WD-clreq-20171229/","title":"Requirements for Chinese Text Layout 中文排版需求","rawDate":"2017-12-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181220":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2018/WD-clreq-20181220/","title":"Requirements for Chinese Text Layout 中文排版需求","rawDate":"2018-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190528":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2019/WD-clreq-20190528/","title":"Requirements for Chinese Text Layout 中文排版需求","rawDate":"2019-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200521":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2020/WD-clreq-20200521/","title":"Requirements for Chinese Text Layout中文排版需求","rawDate":"2020-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200601":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2020/WD-clreq-20200601/","title":"Requirements for Chinese Text Layout中文排版需求","rawDate":"2020-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200801":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2020/WD-clreq-20200801/","title":"Requirements for Chinese Text Layout中文排版需求","rawDate":"2020-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200901":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2020/WD-clreq-20200901/","title":"Requirements for Chinese Text Layout中文排版需求","rawDate":"2020-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2020/WD-clreq-20201001/","title":"Requirements for Chinese Text Layout中文排版需求","rawDate":"2020-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201101":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida","An Qi(Angel) Li","Hai Liang","Xiaoqian Wu","Aijie Zhang"],"href":"https://www.w3.org/TR/2020/WD-clreq-20201101/","title":"Requirements for Chinese Text Layout中文排版需求","rawDate":"2020-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211126":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-clreq-20211126/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2021-11-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220101":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-20220101/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2022-01-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220501":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-20220501/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2022-05-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220701":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-20220701/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2022-07-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220801":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-20220801/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2022-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220901":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-20220901/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2022-09-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221009":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-20221009/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2022-10-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230301":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20230301/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-03-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230401":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20230401/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-04-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230501":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20230501/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-05-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230701":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20230701/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-07-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230801":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20230801/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230901":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20230901/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-09-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Bobby Tung","Yijun Chen","Eric Q LIU","Hui Jing Chen","Zhengyu Qian","Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-20231101/","title":"Requirements for Chinese Text Layout - 中文排版需求","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/clreq"},"clreq-gap":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/clreq-gap/","title":"Chinese Layout Gap Analysis","rawDate":"2024-02-08","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/International/clreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-clreq-gap-20200616/","title":"Chinese Layout Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-clreq-gap-20210525/","title":"Chinese Layout Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210614":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-clreq-gap-20210614/","title":"Chinese Layout Gap Analysis","rawDate":"2021-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-clreq-gap-20211119/","title":"Chinese Layout Gap Analysis","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220923":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-clreq-gap-20220923/","title":"Chinese Layout Gap Analysis","rawDate":"2022-09-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230615/","title":"Chinese Layout Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230720/","title":"Chinese Layout Gap Analysis","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-gap-20230721/","title":"Chinese Layout Gap Analysis","rawDate":"2023-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-clreq-gap-20231004/","title":"Chinese Layout Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240208":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2024/DNOTE-clreq-gap-20240208/","title":"Chinese Layout Gap Analysis","rawDate":"2024-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/clreq"},"coga-gap-analysis":{"authors":["Lisa Seeman-Horwitz","Michael Cooper"],"href":"https://www.w3.org/TR/coga-gap-analysis/","title":"Cognitive Accessibility Roadmap and Gap Analysis","rawDate":"2018-12-11","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/coga/gap-analysis/","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20171207":{"authors":["Lisa Seeman-Kestenbaum","Michael Cooper"],"href":"https://www.w3.org/TR/2017/WD-coga-gap-analysis-20171207/","title":"Cognitive Accessibility Roadmap and Gap Analysis","rawDate":"2017-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180607":{"authors":["Lisa Seeman-Kestenbaum","Michael Cooper"],"href":"https://www.w3.org/TR/2018/WD-coga-gap-analysis-20180607/","title":"Cognitive Accessibility Roadmap and Gap Analysis","rawDate":"2018-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181211":{"authors":["Lisa Seeman-Horwitz","Michael Cooper"],"href":"https://www.w3.org/TR/2018/WD-coga-gap-analysis-20181211/","title":"Cognitive Accessibility Roadmap and Gap Analysis","rawDate":"2018-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/coga"},"coga-usable":{"authors":["Lisa Seeman-Horwitz","Rachael Bradley Montgomery","Steve Lee","Ruoxi Ran"],"href":"https://www.w3.org/TR/coga-usable/","title":"Making Content Usable for People with Cognitive and Learning Disabilities","rawDate":"2021-04-29","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/coga/content-usable/","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181211":{"authors":["Lisa Seeman-Kestenbaum","Michael Cooper"],"href":"https://www.w3.org/TR/2018/WD-coga-usable-20181211/","title":"Making Content Usable for People with Cognitive and Learning Disabilities","rawDate":"2018-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190716":{"authors":["Lisa Seeman-Kestenbaum","Michael Cooper"],"href":"https://www.w3.org/TR/2019/WD-coga-usable-20190716/","title":"Making Content Usable for People with Cognitive and Learning Disabilities","rawDate":"2019-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200327":{"authors":["Lisa Seeman-Kestenbaum","Rachael Montgomery","Steve Lee","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/WD-coga-usable-20200327/","title":"Making content usable for people with cognitive and learning disabilities","rawDate":"2020-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200717":{"authors":["Lisa Seeman-Kestenbaum","Rachael Montgomery","Steve Lee","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/WD-coga-usable-20200717/","title":"Making Content Usable for People with Cognitive and Learning Disabilities","rawDate":"2020-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201211":{"authors":["Lisa Seeman-Horwitz","Rachael Bradley Montgomery","Steve Lee","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/WD-coga-usable-20201211/","title":"Making content usable for people with cognitive and learning disabilities","rawDate":"2020-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210429":{"authors":["Lisa Seeman-Horwitz","Rachael Bradley Montgomery","Steve Lee","Ruoxi Ran"],"href":"https://www.w3.org/TR/2021/NOTE-coga-usable-20210429/","title":"Making Content Usable for People with Cognitive and Learning Disabilities","rawDate":"2021-04-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/coga"},"coga-user-research":{"authors":["Lisa Seeman-Horwitz","Michael Cooper"],"href":"https://www.w3.org/TR/coga-user-research/","title":"Cognitive Accessibility User Research","rawDate":"2015-01-15","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/coga/user-research/","deliveredBy":["https://www.w3.org/WAI/PF/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150115":{"authors":["Lisa Seeman-Horwitz","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-coga-user-research-20150115/","title":"Cognitive Accessibility User Research","rawDate":"2015-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/","https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/coga"},"components-intro":{"authors":["Dimitri Glazkov","Hayato Ito"],"href":"https://www.w3.org/TR/components-intro/","title":"Introduction to Web Components","rawDate":"2014-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120522":{"authors":["Dominic Cooney","Dimitri Glazkov"],"href":"https://www.w3.org/TR/2012/WD-components-intro-20120522/","title":"Introduction to Web Components","rawDate":"2012-05-22","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130606":{"authors":["Dominic Cooney","Dimitri Glazkov"],"href":"https://www.w3.org/TR/2013/WD-components-intro-20130606/","title":"Introduction to Web Components","rawDate":"2013-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140724":{"authors":["Dimitri Glazkov","Hayato Ito"],"href":"https://www.w3.org/TR/2014/NOTE-components-intro-20140724/","title":"Introduction to Web Components","rawDate":"2014-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://w3c.github.io/webcomponents/explainer/","isRetired":true,"repository":"https://github.com/w3c/webcomponents"},"compositing":{"aliasOf":"compositing-1"},"compositing-1":{"authors":["Rik Cabanier","Nikos Andronikos"],"href":"https://www.w3.org/TR/compositing-1/","title":"Compositing and Blending Level 1","rawDate":"2015-01-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120816":{"authors":["Rik Cabanier","Nikos Andronikos"],"href":"https://www.w3.org/TR/2012/WD-compositing-20120816/","title":"Compositing and Blending 1.0","rawDate":"2012-08-16","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["Nikos Andronikos"],"href":"https://www.w3.org/TR/2013/WD-compositing-1-20130625/","title":"Compositing and Blending Level 1","rawDate":"2013-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131010":{"authors":["Nikos Andronikos","Rik Cabanier"],"href":"https://www.w3.org/TR/2013/WD-compositing-1-20131010/","title":"Compositing and Blending Level 1","rawDate":"2013-10-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140107":{"authors":["Rik Cabanier","Nikos Andronikos"],"href":"https://www.w3.org/TR/2014/WD-compositing-1-20140107/","title":"Compositing and Blending Level 1","rawDate":"2014-01-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140220":{"authors":["Rik Cabanier","Nikos Andronikos"],"href":"https://www.w3.org/TR/2014/CR-compositing-1-20140220/","title":"Compositing and Blending Level 1","rawDate":"2014-02-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150113":{"authors":["Rik Cabanier","Nikos Andronikos"],"href":"https://www.w3.org/TR/2015/CR-compositing-1-20150113/","title":"Compositing and Blending Level 1","rawDate":"2015-01-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.fxtf.org/compositing-1/","obsoletes":["SVGCompositing"],"repository":"https://github.com/w3c/fxtf-drafts"},"compute-pressure":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/compute-pressure/","title":"Compute Pressure Level 1","rawDate":"2023-12-13","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/compute-pressure/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221220":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2022/WD-compute-pressure-20221220/","title":"Compute Pressure Level 1","rawDate":"2022-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230124":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230124/","title":"Compute Pressure Level 1","rawDate":"2023-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230131":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230131/","title":"Compute Pressure Level 1","rawDate":"2023-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230202/","title":"Compute Pressure Level 1","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230203":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230203/","title":"Compute Pressure Level 1","rawDate":"2023-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230313/","title":"Compute Pressure Level 1","rawDate":"2023-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230314":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230314/","title":"Compute Pressure Level 1","rawDate":"2023-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230322":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230322/","title":"Compute Pressure Level 1","rawDate":"2023-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230328":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230328/","title":"Compute Pressure Level 1","rawDate":"2023-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230329/","title":"Compute Pressure Level 1","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230330/","title":"Compute Pressure Level 1","rawDate":"2023-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230525":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230525/","title":"Compute Pressure Level 1","rawDate":"2023-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230605":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230605/","title":"Compute Pressure Level 1","rawDate":"2023-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230613":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230613/","title":"Compute Pressure Level 1","rawDate":"2023-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230626/","title":"Compute Pressure Level 1","rawDate":"2023-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230816":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230816/","title":"Compute Pressure Level 1","rawDate":"2023-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230831/","title":"Compute Pressure Level 1","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230926":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20230926/","title":"Compute Pressure Level 1","rawDate":"2023-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231002":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20231002/","title":"Compute Pressure Level 1","rawDate":"2023-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20231019/","title":"Compute Pressure Level 1","rawDate":"2023-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20231103/","title":"Compute Pressure Level 1","rawDate":"2023-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231110":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20231110/","title":"Compute Pressure Level 1","rawDate":"2023-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231213":{"authors":["Kenneth Christiansen","Arnaud Mandy"],"href":"https://www.w3.org/TR/2023/WD-compute-pressure-20231213/","title":"Compute Pressure Level 1","rawDate":"2023-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/wicg/compute-pressure"},"contact-picker":{"authors":["Peter Beverloo"],"href":"https://www.w3.org/TR/contact-picker/","title":"Contact Picker API","rawDate":"2024-02-07","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/contact-picker/","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221220":{"authors":["Peter Beverloo","Rayan Kanso"],"href":"https://www.w3.org/TR/2022/WD-contact-picker-1-20221220/","title":"Contact Picker API","rawDate":"2022-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230127":{"authors":["Peter Beverloo","Rayan Kanso"],"href":"https://www.w3.org/TR/2023/WD-contact-picker-20230127/","title":"Contact Picker API","rawDate":"2023-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Peter Beverloo","Rayan Kanso"],"href":"https://www.w3.org/TR/2023/WD-contact-picker-20230308/","title":"Contact Picker API","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Peter Beverloo"],"href":"https://www.w3.org/TR/2023/WD-contact-picker-20231013/","title":"Contact Picker API","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240207":{"authors":["Peter Beverloo"],"href":"https://www.w3.org/TR/2024/WD-contact-picker-20240207/","title":"Contact Picker API","rawDate":"2024-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/contact-picker"},"contact-picker-1":{"aliasOf":"contact-picker"},"contacts-api":{"authors":["Richard Tibbett","Robin Berjon","Jungkee Song"],"href":"https://www.w3.org/TR/contacts-api/","title":"Pick Contacts Intent","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100121":{"status":"WD","rawDate":"2010-01-21","href":"https://www.w3.org/TR/2010/WD-contacts-api-20100121/","source":"./data/w3c-specs.txt"},"20100701":{"status":"WD","rawDate":"2010-07-01","href":"https://www.w3.org/TR/2010/WD-contacts-api-20100701/","source":"./data/w3c-specs.txt"},"20100817":{"status":"WD","rawDate":"2010-08-17","href":"https://www.w3.org/TR/2010/WD-contacts-api-20100817/","source":"./data/w3c-specs.txt"},"20101209":{"status":"WD","rawDate":"2010-12-09","href":"https://www.w3.org/TR/2010/WD-contacts-api-20101209/","source":"./data/w3c-specs.txt"},"20110616":{"status":"WD","rawDate":"2011-06-16","href":"https://www.w3.org/TR/2011/WD-contacts-api-20110616/","source":"./data/w3c-specs.txt"},"20120712":{"authors":["Richard Tibbett","Robin Berjon"],"href":"https://www.w3.org/TR/2012/WD-contacts-api-20120712/","title":"Pick Contacts Intent","rawDate":"2012-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140114":{"authors":["Richard Tibbett","Robin Berjon","Jungkee Song"],"href":"https://www.w3.org/TR/2014/NOTE-contacts-api-20140114/","title":"Pick Contacts Intent","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"contacts-manager-api":{"authors":["Eduardo Fullea","Jose Manuel Cantera Fonseca","Christophe Dumez"],"href":"https://www.w3.org/TR/contacts-manager-api/","title":"Contacts Manager API","rawDate":"2015-06-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130307":{"authors":["Eduardo Fullea","Jose Manuel Cantera Fonseca","Christophe Dumez"],"href":"https://www.w3.org/TR/2013/WD-contacts-manager-api-20130307/","title":"Contacts Manager API","rawDate":"2013-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150602":{"authors":["Eduardo Fullea","Jose Manuel Cantera Fonseca","Christophe Dumez"],"href":"https://www.w3.org/TR/2015/NOTE-contacts-manager-api-20150602/","title":"Contacts Manager API","rawDate":"2015-06-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://www.w3.org/2012/sysapps/contacts-manager-api/","isRetired":true},"cooluris":{"authors":["Leo Sauermann","Richard Cyganiak"],"href":"https://www.w3.org/TR/cooluris/","title":"Cool URIs for the Semantic Web","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/2006/07/SWD/"],"versions":{"20071217":{"status":"WD","rawDate":"2007-12-17","href":"https://www.w3.org/TR/2007/WD-cooluris-20071217/","source":"./data/w3c-specs.txt"},"20080321":{"status":"WD","rawDate":"2008-03-21","href":"https://www.w3.org/TR/2008/WD-cooluris-20080321/","source":"./data/w3c-specs.txt"},"20080331":{"status":"NOTE","rawDate":"2008-03-31","href":"https://www.w3.org/TR/2008/NOTE-cooluris-20080331/","source":"./data/w3c-specs.txt"},"20081203":{"authors":["Leo Sauermann","Richard Cyganiak"],"href":"https://www.w3.org/TR/2008/NOTE-cooluris-20081203/","title":"Cool URIs for the Semantic Web","rawDate":"2008-12-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/2006/07/SWD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"core-aam-1.1":{"authors":["Joanmarie Diggs","Joseph Scheuhammer","Richard Schwerdtfeger","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/core-aam-1.1/","title":"Core Accessibility API Mappings 1.1","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140612":{"authors":["Joseph Scheuhammer","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2014/WD-core-aam-1.1-20140612/","title":"Core Accessibility API Mappings 1.1","rawDate":"2014-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141211":{"authors":["Joseph Scheuhammer","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2014/WD-core-aam-1.1-20141211/","title":"Core Accessibility API Mappings 1.1","rawDate":"2014-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150514":{"authors":["Joseph Scheuhammer","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2015/WD-core-aam-1.1-20150514/","title":"Core Accessibility API Mappings 1.1","rawDate":"2015-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Joseph Scheuhammer","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2015/WD-core-aam-1.1-20150714/","title":"Core Accessibility API Mappings 1.1","rawDate":"2015-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Joseph Scheuhammer","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2015/WD-core-aam-1.1-20151119/","title":"Core Accessibility API Mappings 1.1","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Joseph Scheuhammer","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2016/WD-core-aam-1.1-20160317/","title":"Core Accessibility API Mappings 1.1","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170921":{"authors":["Joanmarie Diggs","Joseph Scheuhammer","Richard Schwerdtfeger","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2017/CR-core-aam-1.1-20170921/","title":"Core Accessibility API Mappings 1.1","rawDate":"2017-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Joanmarie Diggs","Joseph Scheuhammer","Richard Schwerdtfeger","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2017/PR-core-aam-1.1-20171102/","title":"Core Accessibility API Mappings 1.1","rawDate":"2017-11-02","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Joanmarie Diggs","Joseph Scheuhammer","Richard Schwerdtfeger","Michael Cooper","Andi Snow-Weaver","Aaron Leventhal"],"href":"https://www.w3.org/TR/2017/REC-core-aam-1.1-20171214/","title":"Core Accessibility API Mappings 1.1","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/aria","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/core-aam/","repository":"https://github.com/w3c/aria","hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/aria"},"core-aam-1.2":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/core-aam-1.2/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-11-02","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/core-aam/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180719":{"authors":["Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/2018/WD-core-aam-1.2-20180719/","title":"Core Accessibility API Mappings 1.2","rawDate":"2018-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Joanmarie Diggs","Michael Cooper","Richard Schwerdtfeger","Joseph Scheuhammer","Andi Snow-Weaver","Aaron Leventhal","Melanie Richards","James Craig","Alexander Surkov"],"href":"https://www.w3.org/TR/2018/WD-core-aam-1.2-20181218/","title":"Core Accessibility API Mappings 1.2","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191218":{"authors":["Joanmarie Diggs","Michael Cooper","Richard Schwerdtfeger","Joseph Scheuhammer","Andi Snow-Weaver","Aaron Leventhal","Melanie Richards","James Craig","Alexander Surkov"],"href":"https://www.w3.org/TR/2019/WD-core-aam-1.2-20191218/","title":"Core Accessibility API Mappings 1.2","rawDate":"2019-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220120/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220215/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220517/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220526":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220526/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220830":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220830/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220915":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220915/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220930":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20220930/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221008":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20221008/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221013":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20221013/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/WD-core-aam-1.2-20221101/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Joanmarie Diggs","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2022/CR-core-aam-1.2-20221122/","title":"Core Accessibility API Mappings 1.2","rawDate":"2022-11-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230518":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230518/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-05-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230626/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-06-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230628/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-06-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230705/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230816":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230816/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-08-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230817/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-08-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230821/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-08-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230825/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-08-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230901":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230901/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-09-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230902/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-09-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230904":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20230904/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-09-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231012/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-10-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231026/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-10-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231031/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-10-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Valerie Young","Alexander Surkov","Michael Cooper"],"href":"https://www.w3.org/TR/2023/CRD-core-aam-1.2-20231102/","title":"Core Accessibility API Mappings 1.2","rawDate":"2023-11-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/core-aam"},"cors":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/cors/","title":"Cross-Origin Resource Sharing","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/groups/wg/webappsec/"],"versions":{"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-cors-20090317/","source":"./data/w3c-specs.txt"},"20100727":{"status":"WD","rawDate":"2010-07-27","href":"https://www.w3.org/TR/2010/WD-cors-20100727/","source":"./data/w3c-specs.txt"},"20120403":{"status":"WD","rawDate":"2012-04-03","href":"https://www.w3.org/TR/2012/WD-cors-20120403/","source":"./data/w3c-specs.txt"},"20130129":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2013/CR-cors-20130129/","title":"Cross-Origin Resource Sharing","rawDate":"2013-01-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131205":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2013/PR-cors-20131205/","title":"Cross-Origin Resource Sharing","rawDate":"2013-12-05","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2014/REC-cors-20140116/","title":"Cross-Origin Resource Sharing","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200602":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2020/SPSD-cors-20200602/","title":"Cross-Origin Resource Sharing","rawDate":"2020-06-02","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-06-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"covjson-overview":{"href":"https://www.w3.org/TR/covjson-overview/","title":"Overview of the CoverageJSON format","rawDate":"2017-07-11","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/coverage-json/","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170509":{"href":"https://www.w3.org/TR/2017/WD-covjson-overview-20170509/","title":"Overview of the CoverageJSON format","rawDate":"2017-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170711":{"authors":["Jon Blower","Maik Riechert","Bill Roberts"],"href":"https://www.w3.org/TR/2017/NOTE-covjson-overview-20170711/","title":"Overview of the CoverageJSON format","rawDate":"2017-07-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"authors":["Jon Blower","Maik Riechert","Bill Roberts"],"repository":"https://github.com/w3c/sdw"},"cpc-req":{"authors":["Markus Lauff","Amy Yu"],"href":"https://www.w3.org/TR/cpc-req/","title":"Core Presentation Characteristics: Requirements and Use Cases","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"versions":{"20030510":{"authors":["Markus Lauff","Amy Yu"],"href":"https://www.w3.org/TR/2003/WD-cpc-req-20030510/","title":"Core Presentation Characteristics: Requirements and Use Cases","rawDate":"2003-05-10","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/di/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-05-10","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"credential-management-1":{"authors":["Mike West"],"href":"https://www.w3.org/TR/credential-management-1/","title":"Credential Management Level 1","rawDate":"2019-01-17","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-credential-management/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150430":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-credential-management-1-20150430/","title":"Credential Management Level 1","rawDate":"2015-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160425":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/WD-credential-management-1-20160425/","title":"Credential Management Level 1","rawDate":"2016-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170804":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2017/WD-credential-management-1-20170804/","title":"Credential Management Level 1","rawDate":"2017-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190117":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2019/WD-credential-management-1-20190117/","title":"Credential Management Level 1","rawDate":"2019-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-credential-management"},"cselection":{"authors":["Rhys Lewis","Roland Merrick","Max Froumentin"],"href":"https://www.w3.org/TR/cselection/","title":"Content Selection for Device Independence (DISelect) 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20040611":{"status":"WD","rawDate":"2004-06-11","href":"https://www.w3.org/TR/2004/WD-cselection-20040611/","source":"./data/w3c-specs.txt"},"20050502":{"status":"WD","rawDate":"2005-05-02","href":"https://www.w3.org/TR/2005/WD-cselection-20050502/","source":"./data/w3c-specs.txt"},"20061010":{"status":"WD","rawDate":"2006-10-10","href":"https://www.w3.org/TR/2006/WD-cselection-20061010/","source":"./data/w3c-specs.txt"},"20070725":{"status":"CR","rawDate":"2007-07-25","href":"https://www.w3.org/TR/2007/CR-cselection-20070725/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Rhys Lewis","Roland Merrick","Max Froumentin"],"href":"https://www.w3.org/TR/2010/NOTE-cselection-20100629/","title":"Content Selection for Device Independence (DISelect) 1.0","rawDate":"2010-06-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-06-29","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"cselection-primer":{"authors":["Rhys Lewis","Roland Merrick"],"href":"https://www.w3.org/TR/cselection-primer/","title":"Content Selection Primer 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20061010":{"status":"WD","rawDate":"2006-10-10","href":"https://www.w3.org/TR/2006/WD-cselection-primer-20061010/","source":"./data/w3c-specs.txt"},"20070109":{"status":"WD","rawDate":"2007-01-09","href":"https://www.w3.org/TR/2007/WD-cselection-primer-20070109/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Rhys Lewis","Roland Merrick"],"href":"https://www.w3.org/TR/2010/NOTE-cselection-primer-20100629/","title":"Content Selection Primer 1.0","rawDate":"2010-06-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-06-29","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"cselection-xaf":{"authors":["Rhys Lewis","Roland Merrick"],"href":"https://www.w3.org/TR/cselection-xaf/","title":"Delivery Context: XPath Access Functions 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20061010":{"status":"WD","rawDate":"2006-10-10","href":"https://www.w3.org/TR/2006/WD-cselection-xaf-20061010/","source":"./data/w3c-specs.txt"},"20070725":{"status":"CR","rawDate":"2007-07-25","href":"https://www.w3.org/TR/2007/CR-cselection-xaf-20070725/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Rhys Lewis","Roland Merrick"],"href":"https://www.w3.org/TR/2010/NOTE-cselection-xaf-20100629/","title":"Delivery Context: XPath Access Functions 1.0","rawDate":"2010-06-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-06-29","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"csp-cookies":{"authors":["Mike West"],"href":"https://www.w3.org/TR/csp-cookies/","title":"Content Security Policy: Cookie Controls","rawDate":"2016-09-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-csp/cookies/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151215":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-csp-cookies-20151215/","title":"Content Security Policy: Cookie Controls","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/NOTE-csp-cookies-20160913/","title":"Content Security Policy: Cookie Controls","rawDate":"2016-09-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/webappsec-csp","isRetired":true},"csp-embedded-enforcement":{"authors":["Mike West"],"href":"https://www.w3.org/TR/csp-embedded-enforcement/","title":"Content Security Policy: Embedded Enforcement","rawDate":"2016-09-09","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-cspee/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151215":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-csp-embedded-enforcement-20151215/","title":"Content Security Policy: Embedded Enforcement","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160909":{"href":"https://www.w3.org/TR/2016/WD-csp-embedded-enforcement-20160909/","title":"Content Security Policy: Embedded Enforcement","rawDate":"2016-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-csp"},"csp-pinning":{"authors":["Mike West"],"href":"https://www.w3.org/TR/csp-pinning/","title":"Content Security Policy Pinning","rawDate":"2016-09-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-csp/pinning/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150226":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-csp-pinning-20150226/","title":"Content Security Policy Pinning","rawDate":"2015-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/NOTE-csp-pinning-20160913/","title":"Content Security Policy Pinning","rawDate":"2016-09-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/webappsec-csp","isRetired":true},"css-2010":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/css-2010/","title":"Cascading Style Sheets (CSS) Snapshot 2010","rawDate":"2011-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20101202":{"status":"WD","rawDate":"2010-12-02","href":"https://www.w3.org/TR/2010/WD-css-2010-20101202/","source":"./data/w3c-specs.txt"},"20110512":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2011/NOTE-css-2010-20110512/","title":"Cascading Style Sheets (CSS) Snapshot 2010","rawDate":"2011-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"css-2015":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2015/","title":"CSS Snapshot 2015","rawDate":"2015-10-13","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2015/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151013":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2015/NOTE-css-2015-20151013/","title":"CSS Snapshot 2015","rawDate":"2015-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/csswg-drafts","isRetired":true},"css-2017":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2017/","title":"CSS Snapshot 2017","rawDate":"2017-01-31","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2017/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170131":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2017/NOTE-css-2017-20170131/","title":"CSS Snapshot 2017","rawDate":"2017-01-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/csswg-drafts","isRetired":true},"css-2018":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2018/","title":"CSS Snapshot 2018","rawDate":"2019-01-22","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2018/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181115":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/NOTE-css-2018-20181115/","title":"CSS Snapshot 2018","rawDate":"2018-11-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190122":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/NOTE-css-2018-20190122/","title":"CSS Snapshot 2018","rawDate":"2019-01-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/csswg-drafts","isRetired":true},"css-2020":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2020/","title":"CSS Snapshot 2020","rawDate":"2020-12-22","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2020/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201222":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/NOTE-css-2020-20201222/","title":"CSS Snapshot 2020","rawDate":"2020-12-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/csswg-drafts","isRetired":true},"css-2021":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2021/","title":"CSS Snapshot 2021","rawDate":"2021-12-31","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2021/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211221":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/NOTE-css-2021-20211221/","title":"CSS Snapshot 2021","rawDate":"2021-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211230":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/NOTE-css-2021-20211230/","title":"CSS Snapshot 2021","rawDate":"2021-12-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211231":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/NOTE-css-2021-20211231/","title":"CSS Snapshot 2021","rawDate":"2021-12-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-2022":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2022/","title":"CSS Snapshot 2022","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2022/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221122":{"authors":["Tab Atkins Jr.","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/DNOTE-css-2022-20221122/","title":"CSS Snapshot 2022","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-2023":{"authors":["Chris Lilley","Elika Etemad","Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/css-2023/","title":"CSS Snapshot 2023","rawDate":"2023-12-07","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-2023/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230214":{"authors":["Chris Lilley","Elika Etemad","Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/DNOTE-css-2023-20230214/","title":"CSS Snapshot 2023","rawDate":"2023-02-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231207":{"authors":["Chris Lilley","Elika Etemad","Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/NOTE-css-2023-20231207/","title":"CSS Snapshot 2023","rawDate":"2023-12-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-align-3":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-align-3/","title":"CSS Box Alignment Module Level 3","rawDate":"2023-02-17","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-align/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120612":{"status":"WD","rawDate":"2012-06-12","href":"https://www.w3.org/TR/2012/WD-css3-align-20120612/","source":"./data/w3c-specs.txt"},"20130514":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css3-align-20130514/","title":"CSS Box Alignment Module Level 3","rawDate":"2013-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141218":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-align-3-20141218/","title":"CSS Box Alignment Module Level 3","rawDate":"2014-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2016/WD-css-align-3-20160519/","title":"CSS Box Alignment Module Level 3","rawDate":"2016-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160614":{"href":"https://www.w3.org/TR/2016/WD-css-align-3-20160614/","title":"CSS Box Alignment Module Level 3","rawDate":"2016-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170215":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-css-align-3-20170215/","title":"CSS Box Alignment Module Level 3","rawDate":"2017-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170407":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-css-align-3-20170407/","title":"CSS Box Alignment Module Level 3","rawDate":"2017-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170515":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-css-align-3-20170515/","title":"CSS Box Alignment Module Level 3","rawDate":"2017-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170720":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-css-align-3-20170720/","title":"CSS Box Alignment Module Level 3","rawDate":"2017-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170906":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-css-align-3-20170906/","title":"CSS Box Alignment Module Level 3","rawDate":"2017-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180423":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/WD-css-align-3-20180423/","title":"CSS Box Alignment Module Level 3","rawDate":"2018-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180830":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/WD-css-align-3-20180830/","title":"CSS Box Alignment Module Level 3","rawDate":"2018-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181206":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/WD-css-align-3-20181206/","title":"CSS Box Alignment Module Level 3","rawDate":"2018-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200421":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-align-3-20200421/","title":"CSS Box Alignment Module Level 3","rawDate":"2020-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-align-3-20211224/","title":"CSS Box Alignment Module Level 3","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230217":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2023/WD-css-align-3-20230217/","title":"CSS Box Alignment Module Level 3","rawDate":"2023-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-anchor-position-1":{"authors":["Tab Atkins Jr.","Ian Kilpatrick"],"href":"https://www.w3.org/TR/css-anchor-position-1/","title":"CSS Anchor Positioning","rawDate":"2023-06-29","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-anchor-position-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230629":{"authors":["Tab Atkins Jr.","Ian Kilpatrick"],"href":"https://www.w3.org/TR/2023/WD-css-anchor-position-1-20230629/","title":"CSS Anchor Positioning","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-animation-worklet":{"aliasOf":"css-animation-worklet-1"},"css-animation-worklet-1":{"authors":["Majid Valipour","Robert Flack","Stephen McGruer"],"href":"https://www.w3.org/TR/css-animation-worklet-1/","title":"CSS Animation Worklet API","rawDate":"2019-06-25","status":"WD","publisher":"W3C","edDraft":"https://drafts.css-houdini.org/css-animationworklet-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190625":{"authors":["Majid Valipour","Robert Flack","Stephen McGruer"],"href":"https://www.w3.org/TR/2019/WD-css-animation-worklet-1-20190625/","title":"CSS Animation Worklet API","rawDate":"2019-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"css-animations-1":{"authors":["David Baron","Dean Jackson","Tab Atkins Jr.","Brian Birtles"],"href":"https://www.w3.org/TR/css-animations-1/","title":"CSS Animations Level 1","rawDate":"2023-03-02","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-animations/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090320":{"status":"WD","rawDate":"2009-03-20","href":"https://www.w3.org/TR/2009/WD-css3-animations-20090320/","source":"./data/w3c-specs.txt"},"20120403":{"status":"WD","rawDate":"2012-04-03","href":"https://www.w3.org/TR/2012/WD-css3-animations-20120403/","source":"./data/w3c-specs.txt"},"20130219":{"authors":["Dean Jackson","David Hyatt","Chris Marrin","Sylvain Galineau","David Baron"],"href":"https://www.w3.org/TR/2013/WD-css3-animations-20130219/","title":"CSS Animations","rawDate":"2013-02-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171130":{"authors":["Dean Jackson","David Baron","Tab Atkins Jr.","Brian Birtles"],"href":"https://www.w3.org/TR/2017/WD-css-animations-1-20171130/","title":"CSS Animations Level 1","rawDate":"2017-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Dean Jackson","David Baron","Tab Atkins Jr.","Brian Birtles"],"href":"https://www.w3.org/TR/2018/WD-css-animations-1-20181011/","title":"CSS Animations Level 1","rawDate":"2018-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230302":{"authors":["David Baron","Dean Jackson","Tab Atkins Jr.","Brian Birtles"],"href":"https://www.w3.org/TR/2023/WD-css-animations-1-20230302/","title":"CSS Animations Level 1","rawDate":"2023-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-animations-2":{"authors":["David Baron","Brian Birtles"],"href":"https://www.w3.org/TR/css-animations-2/","title":"CSS Animations Level 2","rawDate":"2023-06-02","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-animations-2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230302":{"authors":["David Baron","Brian Birtles"],"href":"https://www.w3.org/TR/2023/WD-css-animations-2-20230302/","title":"CSS Animations Level 2","rawDate":"2023-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230602":{"authors":["David Baron","Brian Birtles"],"href":"https://www.w3.org/TR/2023/WD-css-animations-2-20230602/","title":"CSS Animations Level 2","rawDate":"2023-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-backgrounds-3":{"authors":["Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/css-backgrounds-3/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2023-12-19","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-backgrounds/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010924":{"status":"WD","rawDate":"2001-09-24","href":"https://www.w3.org/TR/2001/WD-css3-background-20010924","source":"./data/w3c-specs.txt"},"20020219":{"status":"WD","rawDate":"2002-02-19","href":"https://www.w3.org/TR/2002/WD-css3-background-20020219/","source":"./data/w3c-specs.txt"},"20020802":{"status":"WD","rawDate":"2002-08-02","href":"https://www.w3.org/TR/2002/WD-css3-background-20020802","source":"./data/w3c-specs.txt"},"20050216":{"status":"WD","rawDate":"2005-02-16","href":"https://www.w3.org/TR/2005/WD-css3-background-20050216","source":"./data/w3c-specs.txt"},"20080910":{"status":"WD","rawDate":"2008-09-10","href":"https://www.w3.org/TR/2008/WD-css3-background-20080910","source":"./data/w3c-specs.txt"},"20091015":{"status":"WD","rawDate":"2009-10-15","href":"https://www.w3.org/TR/2009/WD-css3-background-20091015","source":"./data/w3c-specs.txt"},"20091217":{"status":"CR","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/CR-css3-background-20091217","source":"./data/w3c-specs.txt"},"20100612":{"status":"WD","rawDate":"2010-06-12","href":"https://www.w3.org/TR/2010/WD-css3-background-20100612","source":"./data/w3c-specs.txt"},"20110215":{"status":"CR","rawDate":"2011-02-15","href":"https://www.w3.org/TR/2011/CR-css3-background-20110215/","source":"./data/w3c-specs.txt"},"20120214":{"status":"WD","rawDate":"2012-02-14","href":"https://www.w3.org/TR/2012/WD-css3-background-20120214/","source":"./data/w3c-specs.txt"},"20120417":{"status":"CR","rawDate":"2012-04-17","href":"https://www.w3.org/TR/2012/CR-css3-background-20120417/","source":"./data/w3c-specs.txt"},"20120724":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2012/CR-css3-background-20120724/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2012-07-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140204":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2014/WD-css3-background-20140204/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2014-02-04","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140909":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2014/CR-css3-background-20140909/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2014-09-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171017":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2017/CR-css-backgrounds-3-20171017/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2017-10-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2020/CR-css-backgrounds-3-20201222/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2020-12-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210726":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2021/CRD-css-backgrounds-3-20210726/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2021-07-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230214":{"authors":["Bert Bos","Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2023/CRD-css-backgrounds-3-20230214/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2023-02-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231219":{"authors":["Elika Etemad","Brad Kemper"],"href":"https://www.w3.org/TR/2023/CRD-css-backgrounds-3-20231219/","title":"CSS Backgrounds and Borders Module Level 3","rawDate":"2023-12-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletes":["css3-border"],"repository":"https://github.com/w3c/csswg-drafts"},"css-beijing":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/css-beijing/","title":"Cascading Style Sheets (CSS) Snapshot 2007","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20071019":{"status":"WD","rawDate":"2007-10-19","href":"https://www.w3.org/TR/2007/WD-css-beijing-20071019","source":"./data/w3c-specs.txt"},"20080516":{"status":"WD","rawDate":"2008-05-16","href":"https://www.w3.org/TR/2008/WD-css-beijing-20080516/","source":"./data/w3c-specs.txt"},"20100727":{"status":"WD","rawDate":"2010-07-27","href":"https://www.w3.org/TR/2010/WD-css-beijing-20100727/","source":"./data/w3c-specs.txt"},"20110512":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2011/NOTE-css-beijing-20110512/","title":"Cascading Style Sheets (CSS) Snapshot 2007","rawDate":"2011-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2011-05-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["css3-roadmap"],"isRetired":true},"css-box-3":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/css-box-3/","title":"CSS Box Model Module Level 3","rawDate":"2023-04-06","status":"REC","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-box-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010726":{"status":"WD","rawDate":"2001-07-26","href":"https://www.w3.org/TR/2001/WD-css3-box-20010726/","source":"./data/w3c-specs.txt"},"20021024":{"status":"WD","rawDate":"2002-10-24","href":"https://www.w3.org/TR/2002/WD-css3-box-20021024","source":"./data/w3c-specs.txt"},"20070809":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2007/WD-css3-box-20070809/","title":"CSS basic box model","rawDate":"2007-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180731":{"authors":["Bert Bos","Anton Prowse"],"href":"https://www.w3.org/TR/2018/WD-css3-box-20180731/","title":"CSS Basic Box Model Level 3","rawDate":"2018-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180809":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-box-3-20180809/","title":"CSS Box Model Module Level 3","rawDate":"2018-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-box-3-20181218/","title":"CSS Box Model Module Level 3","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200421":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-box-3-20200421/","title":"CSS Box Model Module Level 3","rawDate":"2020-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201028":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-box-3-20201028/","title":"CSS Box Model Module Level 3","rawDate":"2020-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2020/CR-css-box-3-20201222/","title":"CSS Box Model Module Level 3","rawDate":"2020-12-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221103":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2022/CRD-css-box-3-20221103/","title":"CSS Box Model Module Level 3","rawDate":"2022-11-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230216":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2023/PR-css-box-3-20230216/","title":"CSS Box Model Module Level 3","rawDate":"2023-02-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2023/REC-css-box-3-20230406/","title":"CSS Box Model Module Level 3","rawDate":"2023-04-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-box-4":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/css-box-4/","title":"CSS Box Model Module Level 4","rawDate":"2022-11-03","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-box-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200421":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-box-4-20200421/","title":"CSS Box Model Module Level 4","rawDate":"2020-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221103":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2022/WD-css-box-4-20221103/","title":"CSS Box Model Module Level 4","rawDate":"2022-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-break-3":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/css-break-3/","title":"CSS Fragmentation Module Level 3","rawDate":"2018-12-04","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-break/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120228":{"status":"WD","rawDate":"2012-02-28","href":"https://www.w3.org/TR/2012/WD-css3-break-20120228/","source":"./data/w3c-specs.txt"},"20120823":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2012/WD-css3-break-20120823/","title":"CSS Fragmentation Module Level 3","rawDate":"2012-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2014/WD-css3-break-20140116/","title":"CSS Fragmentation Module Level 3","rawDate":"2014-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150129":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2015/WD-css3-break-20150129/","title":"CSS Fragmentation Module Level 3","rawDate":"2015-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160114":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2016/CR-css-break-3-20160114/","title":"CSS Fragmentation Module Level 3","rawDate":"2016-01-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170209":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2017/CR-css-break-3-20170209/","title":"CSS Fragmentation Module Level 3","rawDate":"2017-02-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181204":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2018/CR-css-break-3-20181204/","title":"CSS Fragmentation Module Level 3","rawDate":"2018-12-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-break-4":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/css-break-4/","title":"CSS Fragmentation Module Level 4","rawDate":"2018-12-18","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-break-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181218":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-break-4-20181218/","title":"CSS Fragmentation Module Level 4","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-cascade-3":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-cascade-3/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2021-02-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010713":{"status":"WD","rawDate":"2001-07-13","href":"https://www.w3.org/TR/2001/WD-css3-cascade-20010713","source":"./data/w3c-specs.txt"},"20020219":{"status":"WD","rawDate":"2002-02-19","href":"https://www.w3.org/TR/2002/WD-css3-cascade-20020219/","source":"./data/w3c-specs.txt"},"20051215":{"status":"WD","rawDate":"2005-12-15","href":"https://www.w3.org/TR/2005/WD-css3-cascade-20051215","source":"./data/w3c-specs.txt"},"20130103":{"authors":["Håkon Wium Lie","Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css3-cascade-20130103/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2013-01-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130730":{"authors":["Håkon Wium Lie","Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css-cascade-3-20130730/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2013-07-30","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131003":{"authors":["Håkon Wium Lie","Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/CR-css-cascade-3-20131003/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2013-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150416":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/CR-css-cascade-3-20150416/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2015-04-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2016/CR-css-cascade-3-20160519/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2016-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180828":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/CR-css-cascade-3-20180828/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2018-08-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200817":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/CR-css-cascade-3-20200817/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2020-08-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/PR-css-cascade-3-20201222/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2020-12-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210211":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/REC-css-cascade-3-20210211/","title":"CSS Cascading and Inheritance Level 3","rawDate":"2021-02-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2021/REC-css-cascade-3-20210211-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-cascade-3/","repository":"https://github.com/w3c/csswg-drafts","hasErrata":"https://www.w3.org/Style/2021/REC-css-cascade-3-20210211-errata.html"},"css-cascade-4":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-cascade-4/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2022-01-13","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-cascade-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150421":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/WD-css-cascade-4-20150421/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2015-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150908":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/WD-css-cascade-4-20150908/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2015-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160114":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2016/CR-css-cascade-4-20160114/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2016-01-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180828":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/CR-css-cascade-4-20180828/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2018-08-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-cascade-4-20200818/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2020-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210319":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-4-20210319/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2021-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211015":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-4-20211015/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2021-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-4-20211203/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220113":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/CR-css-cascade-4-20220113/","title":"CSS Cascading and Inheritance Level 4","rawDate":"2022-01-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-cascade-5":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-cascade-5/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2022-01-13","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-cascade-5/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210119":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20210119/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210317":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20210317/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210319":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20210319/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20210608/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210827":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20210827/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210829":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20210829/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211015":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20211015/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-5-20211203/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220113":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/CR-css-cascade-5-20220113/","title":"CSS Cascading and Inheritance Level 5","rawDate":"2022-01-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-cascade-6":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-cascade-6/","title":"CSS Cascading and Inheritance Level 6","rawDate":"2023-03-21","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-cascade-6/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211221":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-cascade-6-20211221/","title":"CSS Cascading and Inheritance Level 6","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Elika Etemad","Miriam Suzanne","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2023/WD-css-cascade-6-20230321/","title":"CSS Cascading and Inheritance Level 6","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-color-3":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/css-color-3/","title":"CSS Color Module Level 3","rawDate":"2022-01-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990623":{"status":"WD","rawDate":"1999-06-23","href":"https://www.w3.org/1999/06/WD-css3-iccprof-19990623","source":"./data/w3c-specs.txt"},"20010305":{"status":"WD","rawDate":"2001-03-05","href":"https://www.w3.org/TR/2001/WD-css3-color-20010305","source":"./data/w3c-specs.txt"},"20020219":{"status":"WD","rawDate":"2002-02-19","href":"https://www.w3.org/TR/2002/WD-css3-color-20020219/","source":"./data/w3c-specs.txt"},"20020418":{"status":"WD","rawDate":"2002-04-18","href":"https://www.w3.org/TR/2002/WD-css3-color-20020418","source":"./data/w3c-specs.txt"},"20030214":{"status":"WD","rawDate":"2003-02-14","href":"https://www.w3.org/TR/2003/WD-css3-color-20030214","source":"./data/w3c-specs.txt"},"20030514":{"status":"CR","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/CR-css3-color-20030514","source":"./data/w3c-specs.txt"},"20080721":{"status":"WD","rawDate":"2008-07-21","href":"https://www.w3.org/TR/2008/WD-css3-color-20080721","source":"./data/w3c-specs.txt"},"20101028":{"status":"PR","rawDate":"2010-10-28","href":"https://www.w3.org/TR/2010/PR-css3-color-20101028","source":"./data/w3c-specs.txt"},"20110607":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/2011/REC-css3-color-20110607/","title":"CSS Color Module Level 3","rawDate":"2011-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"hasErrata":"https://www.w3.org/Style/2011/REC-css3-color-20110607-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171205":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/2017/CR-css-color-3-20171205/","title":"CSS Color Module Level 3","rawDate":"2017-12-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180315":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/2018/PR-css-color-3-20180315/","title":"CSS Color Module Level 3","rawDate":"2018-03-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180619":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/2018/REC-css-color-3-20180619/","title":"CSS Color Module Level 3","rawDate":"2018-06-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2018/REC-css-color-3-20180619-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210805":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/2021/REC-css-color-3-20210805/","title":"CSS Color Module Level 3","rawDate":"2021-08-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2021/REC-css-color-3-20210805-errta.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220118":{"authors":["Tantek Çelik","Chris Lilley","David Baron"],"href":"https://www.w3.org/TR/2022/REC-css-color-3-20220118/","title":"CSS Color Module Level 3","rawDate":"2022-01-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-color-3/","hasErrata":"https://www.w3.org/Style/2021/REC-css-color-3-20210805-errta.html","repository":"https://github.com/w3c/csswg-drafts"},"css-color-4":{"authors":["Tab Atkins Jr.","Chris Lilley","Lea Verou"],"href":"https://www.w3.org/TR/css-color-4/","title":"CSS Color Module Level 4","rawDate":"2022-11-01","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-color/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160705":{"authors":["Tab Atkins Jr.","Chris Lilley"],"href":"https://www.w3.org/TR/2016/WD-css-color-4-20160705/","title":"CSS Color Module Level 4","rawDate":"2016-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190305":{"authors":["Tab Atkins Jr.","Chris Lilley"],"href":"https://www.w3.org/TR/2019/WD-css-color-4-20190305/","title":"CSS Color Module Level 4","rawDate":"2019-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191105":{"authors":["Tab Atkins Jr.","Chris Lilley"],"href":"https://www.w3.org/TR/2019/WD-css-color-4-20191105/","title":"CSS Color Module Level 4","rawDate":"2019-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201112":{"authors":["Tab Atkins Jr.","Chris Lilley"],"href":"https://www.w3.org/TR/2020/WD-css-color-4-20201112/","title":"CSS Color Module Level 4","rawDate":"2020-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Tab Atkins Jr.","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-color-4-20210601/","title":"CSS Color Module Level 4","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Tab Atkins Jr.","Chris Lilley","Lea Verou"],"href":"https://www.w3.org/TR/2021/WD-css-color-4-20211215/","title":"CSS Color Module Level 4","rawDate":"2021-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220428":{"authors":["Tab Atkins Jr.","Chris Lilley","Lea Verou"],"href":"https://www.w3.org/TR/2022/WD-css-color-4-20220428/","title":"CSS Color Module Level 4","rawDate":"2022-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Tab Atkins Jr.","Chris Lilley","Lea Verou"],"href":"https://www.w3.org/TR/2022/WD-css-color-4-20220628/","title":"CSS Color Module Level 4","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220705":{"authors":["Tab Atkins Jr.","Chris Lilley","Lea Verou"],"href":"https://www.w3.org/TR/2022/CR-css-color-4-20220705/","title":"CSS Color Module Level 4","rawDate":"2022-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Tab Atkins Jr.","Chris Lilley","Lea Verou"],"href":"https://www.w3.org/TR/2022/CRD-css-color-4-20221101/","title":"CSS Color Module Level 4","rawDate":"2022-11-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-color-5":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/css-color-5/","title":"CSS Color Module Level 5","rawDate":"2022-06-28","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-color-5/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200303":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/2020/WD-css-color-5-20200303/","title":"CSS Color Module Level 5","rawDate":"2020-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/2021/WD-css-color-5-20210601/","title":"CSS Color Module Level 5","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210722":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/2021/WD-css-color-5-20210722/","title":"CSS Color Module Level 5","rawDate":"2021-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/2021/WD-css-color-5-20211215/","title":"CSS Color Module Level 5","rawDate":"2021-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220428":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/2022/WD-css-color-5-20220428/","title":"CSS Color Module Level 5","rawDate":"2022-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Chris Lilley","Una Kravets","Lea Verou","Adam Argyle"],"href":"https://www.w3.org/TR/2022/WD-css-color-5-20220628/","title":"CSS Color Module Level 5","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-color-adjust-1":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-color-adjust-1/","title":"CSS Color Adjustment Module Level 1","rawDate":"2022-06-14","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-color-adjust-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190521":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2019/WD-css-color-adjust-1-20190521/","title":"CSS Color Adjust Module Level 1","rawDate":"2019-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190523":{"authors":["Elika Etemad","Rossen Atanassov","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2019/WD-css-color-adjust-1-20190523/","title":"CSS Color Adjustment Module Level 1","rawDate":"2019-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200402":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-color-adjust-1-20200402/","title":"CSS Color Adjustment Module Level 1","rawDate":"2020-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201109":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-color-adjust-1-20201109/","title":"CSS Color Adjustment Module Level 1","rawDate":"2020-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210520":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-color-adjust-1-20210520/","title":"CSS Color Adjustment Module Level 1","rawDate":"2021-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-color-adjust-1-20210616/","title":"CSS Color Adjustment Module Level 1","rawDate":"2021-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/CR-css-color-adjust-1-20220210/","title":"CSS Color Adjustment Module Level 1","rawDate":"2022-02-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220614":{"authors":["Elika Etemad","Rossen Atanassov","Rune Lillesveen","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/CRD-css-color-adjust-1-20220614/","title":"CSS Color Adjustment Module Level 1","rawDate":"2022-06-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-conditional-3":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/css-conditional-3/","title":"CSS Conditional Rules Module Level 3","rawDate":"2022-01-13","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-conditional-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-css3-conditional-20110901/","source":"./data/w3c-specs.txt"},"20120911":{"status":"WD","rawDate":"2012-09-11","href":"https://www.w3.org/TR/2012/WD-css3-conditional-20120911/","source":"./data/w3c-specs.txt"},"20121213":{"status":"WD","rawDate":"2012-12-13","href":"https://www.w3.org/TR/2012/WD-css3-conditional-20121213/","source":"./data/w3c-specs.txt"},"20130404":{"authors":["David Baron"],"href":"https://www.w3.org/TR/2013/CR-css3-conditional-20130404/","title":"CSS Conditional Rules Module Level 3","rawDate":"2013-04-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201208":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/2020/CR-css-conditional-3-20201208/","title":"CSS Conditional Rules Module Level 3","rawDate":"2020-12-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211223":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/2021/CRD-css-conditional-3-20211223/","title":"CSS Conditional Rules Module Level 3","rawDate":"2021-12-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220113":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/2022/CR-css-conditional-3-20220113/","title":"CSS Conditional Rules Module Level 3","rawDate":"2022-01-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-conditional-4":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/css-conditional-4/","title":"CSS Conditional Rules Module Level 4","rawDate":"2022-02-17","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-conditional-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200303":{"authors":["David Baron"],"href":"https://www.w3.org/TR/2020/WD-css-conditional-4-20200303/","title":"CSS Conditional Rules Module Level 4","rawDate":"2020-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211225":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-conditional-4-20211225/","title":"CSS Conditional Rules Module Level 4","rawDate":"2021-12-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220217":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/2022/CR-css-conditional-4-20220217/","title":"CSS Conditional Rules Module Level 4","rawDate":"2022-02-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-conditional-5":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/css-conditional-5/","title":"CSS Conditional Rules Module Level 5","rawDate":"2021-12-21","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-conditional-5/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211221":{"authors":["David Baron","Elika Etemad","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-conditional-5-20211221/","title":"CSS Conditional Rules Module Level 5","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-contain-1":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/css-contain-1/","title":"CSS Containment Module Level 1","rawDate":"2022-10-25","status":"REC","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-contain-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170221":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2017/WD-css-contain-1-20170221/","title":"CSS Containment Module Level 1","rawDate":"2017-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170419":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2017/WD-css-contain-1-20170419/","title":"CSS Containment Module Level 1","rawDate":"2017-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170808":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2017/CR-css-contain-1-20170808/","title":"CSS Containment Module Level 1","rawDate":"2017-08-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180524":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/CR-css-contain-1-20180524/","title":"CSS Containment Module Level 1","rawDate":"2018-05-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/CR-css-contain-1-20181108/","title":"CSS Containment Module Level 1","rawDate":"2018-11-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190430":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/CR-css-contain-1-20190430/","title":"CSS Containment Module Level 1","rawDate":"2019-04-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191015":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/PR-css-contain-1-20191015/","title":"CSS Containment Module Level 1","rawDate":"2019-10-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191121":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/REC-css-contain-1-20191121/","title":"CSS Containment Module Level 1","rawDate":"2019-11-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2019/REC-css-contain-1-20191121-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/REC-css-contain-1-20201222/","title":"CSS Containment Module Level 1","rawDate":"2020-12-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221025":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/REC-css-contain-1-20221025/","title":"CSS Containment Module Level 1","rawDate":"2022-10-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts","hasErrata":"https://www.w3.org/Style/2019/REC-css-contain-1-20191121-errata.html"},"css-contain-2":{"authors":["Tab Atkins Jr.","Florian Rivoal","Vladimir Levin"],"href":"https://www.w3.org/TR/css-contain-2/","title":"CSS Containment Module Level 2","rawDate":"2022-09-17","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-contain-2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191015":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/WD-css-contain-2-20191015/","title":"CSS Containment Module Level 2","rawDate":"2019-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191111":{"authors":["Tab Atkins Jr.","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/WD-css-contain-2-20191111/","title":"CSS Containment Module Level 2","rawDate":"2019-11-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200603":{"authors":["Tab Atkins Jr.","Florian Rivoal","Vladimir Levin"],"href":"https://www.w3.org/TR/2020/WD-css-contain-2-20200603/","title":"CSS Containment Module Level 2","rawDate":"2020-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201216":{"authors":["Tab Atkins Jr.","Florian Rivoal","Vladimir Levin"],"href":"https://www.w3.org/TR/2020/WD-css-contain-2-20201216/","title":"CSS Containment Module Level 2","rawDate":"2020-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220917":{"authors":["Tab Atkins Jr.","Florian Rivoal","Vladimir Levin"],"href":"https://www.w3.org/TR/2022/WD-css-contain-2-20220917/","title":"CSS Containment Module Level 2","rawDate":"2022-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-contain-3":{"authors":["Tab Atkins Jr.","Florian Rivoal","Miriam Suzanne"],"href":"https://www.w3.org/TR/css-contain-3/","title":"CSS Containment Module Level 3","rawDate":"2022-08-18","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-contain-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211221":{"authors":["Tab Atkins Jr.","Florian Rivoal","Miriam Suzanne"],"href":"https://www.w3.org/TR/2021/WD-css-contain-3-20211221/","title":"CSS Containment Module Level 3","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Tab Atkins Jr.","Florian Rivoal","Miriam Suzanne"],"href":"https://www.w3.org/TR/2022/WD-css-contain-3-20220818/","title":"CSS Containment Module Level 3","rawDate":"2022-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-content-3":{"authors":["Elika Etemad","Dave Cramer"],"href":"https://www.w3.org/TR/css-content-3/","title":"CSS Generated Content Module Level 3","rawDate":"2019-08-02","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-content-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20030514":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2003/WD-css3-content-20030514","title":"CSS3 Generated and Replaced Content Module","rawDate":"2003-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160602":{"authors":["Elika Etemad","Dave Cramer"],"href":"https://www.w3.org/TR/2016/WD-css-content-3-20160602/","title":"CSS Generated Content Module Level 3","rawDate":"2016-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190710":{"authors":["Elika Etemad","Dave Cramer"],"href":"https://www.w3.org/TR/2019/WD-css-content-3-20190710/","title":"CSS Generated Content Module Level 3","rawDate":"2019-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190802":{"authors":["Elika Etemad","Dave Cramer"],"href":"https://www.w3.org/TR/2019/WD-css-content-3-20190802/","title":"CSS Generated Content Module Level 3","rawDate":"2019-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-counter-styles-3":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-counter-styles-3/","title":"CSS Counter Styles Level 3","rawDate":"2021-07-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121009":{"status":"WD","rawDate":"2012-10-09","href":"https://www.w3.org/TR/2012/WD-css-counter-styles-3-20121009/","source":"./data/w3c-specs.txt"},"20130221":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css-counter-styles-3-20130221/","title":"CSS Counter Styles Level 3","rawDate":"2013-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130718":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css-counter-styles-3-20130718/","title":"CSS Counter Styles Level 3","rawDate":"2013-07-18","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140826":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-counter-styles-3-20140826/","title":"CSS Counter Styles Level 3","rawDate":"2014-08-26","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150203":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/CR-css-counter-styles-3-20150203/","title":"CSS Counter Styles Level 3","rawDate":"2015-02-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150611":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/CR-css-counter-styles-3-20150611/","title":"CSS Counter Styles Level 3","rawDate":"2015-06-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/CR-css-counter-styles-3-20171214/","title":"CSS Counter Styles Level 3","rawDate":"2017-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210727":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/CR-css-counter-styles-3-20210727/","title":"CSS Counter Styles Level 3","rawDate":"2021-07-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-counter-styles/","repository":"https://github.com/w3c/csswg-drafts"},"css-device-adapt":{"aliasOf":"css-device-adapt-1"},"css-device-adapt-1":{"authors":["Rune Lillesveen","Florian Rivoal","Matt Rakow"],"href":"https://www.w3.org/TR/css-device-adapt-1/","title":"CSS Device Adaptation Module Level 1","rawDate":"2016-03-29","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-device-adapt/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110915":{"authors":["Rune Lillesveen"],"href":"https://www.w3.org/TR/2011/WD-css-device-adapt-20110915/","title":"CSS Device Adaptation","rawDate":"2011-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151126":{"authors":["Rune Lillesveen","Florian Rivoal","Matt Rakow"],"href":"https://www.w3.org/TR/2015/WD-css-device-adapt-1-20151126/","title":"CSS Device Adaptation Module Level 1","rawDate":"2015-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["Rune Lillesveen","Florian Rivoal","Matt Rakow"],"href":"https://www.w3.org/TR/2016/WD-css-device-adapt-1-20160329/","title":"CSS Device Adaptation Module Level 1","rawDate":"2016-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts","obsoletedBy":["css-viewport-1"]},"css-display-3":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-display-3/","title":"CSS Display Module Level 3","rawDate":"2023-03-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140220":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-display-3-20140220/","title":"CSS Display Module Level 3","rawDate":"2014-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140911":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2014/WD-css-display-3-20140911/","title":"CSS Display Module Level 3","rawDate":"2014-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2015/WD-css-display-3-20150721/","title":"CSS Display Module Level 3","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151015":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2015/WD-css-display-3-20151015/","title":"CSS Display Module Level 3","rawDate":"2015-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170126":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2017/WD-css-display-3-20170126/","title":"CSS Display Module Level 3","rawDate":"2017-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170720":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2017/WD-css-display-3-20170720/","title":"CSS Display Module Level 3","rawDate":"2017-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180420":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-display-3-20180420/","title":"CSS Display Module Level 3","rawDate":"2018-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180809":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-display-3-20180809/","title":"CSS Display Module Level 3","rawDate":"2018-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180828":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/CR-css-display-3-20180828/","title":"CSS Display Module Level 3","rawDate":"2018-08-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190711":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/CR-css-display-3-20190711/","title":"CSS Display Module Level 3","rawDate":"2019-07-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200519":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2020/CR-css-display-3-20200519/","title":"CSS Display Module Level 3","rawDate":"2020-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201218":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2020/CRD-css-display-3-20201218/","title":"CSS Display Module Level 3","rawDate":"2020-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/CRD-css-display-3-20210903/","title":"CSS Display Module Level 3","rawDate":"2021-09-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221118":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2022/CRD-css-display-3-20221118/","title":"CSS Display Module Level 3","rawDate":"2022-11-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230316":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2023/CRD-css-display-3-20230316/","title":"CSS Display Module Level 3","rawDate":"2023-03-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2023/CR-css-display-3-20230330/","title":"CSS Display Module Level 3","rawDate":"2023-03-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-display/","repository":"https://github.com/w3c/csswg-drafts"},"css-easing-1":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow"],"href":"https://www.w3.org/TR/css-easing-1/","title":"CSS Easing Functions Level 1","rawDate":"2023-02-13","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-easing/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170221":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow","Shane Stephens"],"href":"https://www.w3.org/TR/2017/WD-css-timing-1-20170221/","title":"CSS Timing Functions Level 1","rawDate":"2017-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow","Shane Stephens"],"href":"https://www.w3.org/TR/2018/WD-css-timing-1-20180926/","title":"CSS Timing Functions Level 1","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181009":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow"],"href":"https://www.w3.org/TR/2018/WD-css-easing-1-20181009/","title":"CSS Easing Functions Level 1","rawDate":"2018-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190430":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow"],"href":"https://www.w3.org/TR/2019/CR-css-easing-1-20190430/","title":"CSS Easing Functions Level 1","rawDate":"2019-04-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210401":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow","Shane Stephens"],"href":"https://www.w3.org/TR/2021/CRD-css-easing-1-20210401/","title":"CSS Easing Functions Level 1","rawDate":"2021-04-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230213":{"authors":["Brian Birtles","Dean Jackson","Matt Rakow"],"href":"https://www.w3.org/TR/2023/CRD-css-easing-1-20230213/","title":"CSS Easing Functions Level 1","rawDate":"2023-02-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-flexbox":{"aliasOf":"css-flexbox-1"},"css-flexbox-1":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov","David Baron"],"href":"https://www.w3.org/TR/css-flexbox-1/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2018-11-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090723":{"status":"WD","rawDate":"2009-07-23","href":"https://www.w3.org/TR/2009/WD-css3-flexbox-20090723/","source":"./data/w3c-specs.txt"},"20110322":{"status":"WD","rawDate":"2011-03-22","href":"https://www.w3.org/TR/2011/WD-css3-flexbox-20110322/","source":"./data/w3c-specs.txt"},"20111129":{"status":"WD","rawDate":"2011-11-29","href":"https://www.w3.org/TR/2011/WD-css3-flexbox-20111129/","source":"./data/w3c-specs.txt"},"20120322":{"status":"WD","rawDate":"2012-03-22","href":"https://www.w3.org/TR/2012/WD-css3-flexbox-20120322/","source":"./data/w3c-specs.txt"},"20120612":{"status":"WD","rawDate":"2012-06-12","href":"https://www.w3.org/TR/2012/WD-css3-flexbox-20120612/","source":"./data/w3c-specs.txt"},"20120918":{"authors":["Tab Atkins Jr.","Elika Etemad","Alex Mogilevsky"],"href":"https://www.w3.org/TR/2012/CR-css3-flexbox-20120918/","title":"CSS Flexible Box Layout Module","rawDate":"2012-09-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140325":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2014/WD-css-flexbox-1-20140325/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2014-03-25","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140925":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2014/WD-css-flexbox-1-20140925/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2014-09-25","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150514":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2015/WD-css-flexbox-1-20150514/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2015-05-14","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160301":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2016/CR-css-flexbox-1-20160301/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2016-03-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160526":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2016/CR-css-flexbox-1-20160526/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2016-05-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171019":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2017/CR-css-flexbox-1-20171019/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2017-10-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/CR-css-flexbox-1-20181108/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2018-11-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181119":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov","David Baron"],"href":"https://www.w3.org/TR/2018/CR-css-flexbox-1-20181119/","title":"CSS Flexible Box Layout Module Level 1","rawDate":"2018-11-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-flexbox-1/","repository":"https://github.com/w3c/csswg-drafts"},"css-font-loading-3":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-font-loading-3/","title":"CSS Font Loading Module Level 3","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140220":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-font-loading-3-20140220/","title":"CSS Font Loading Module Level 3","rawDate":"2014-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140522":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-font-loading-3-20140522/","title":"CSS Font Loading Module Level 3","rawDate":"2014-05-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2023/WD-css-font-loading-3-20230406/","title":"CSS Font Loading Module Level 3","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-font-loading/","repository":"https://github.com/w3c/csswg-drafts"},"css-fonts-3":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/css-fonts-3/","title":"CSS Fonts Module Level 3","rawDate":"2018-09-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980512":{"href":"https://www.w3.org/TR/1998/REC-CSS2-19980512/fonts.html","title":"CSS3 module: Web Fonts","rawDate":"1998-05-12","status":"REC","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20010731":{"status":"WD","rawDate":"2001-07-31","href":"https://www.w3.org/TR/2001/WD-css3-fonts-20010731/","source":"./data/w3c-specs.txt"},"20020802":{"status":"WD","rawDate":"2002-08-02","href":"https://www.w3.org/TR/2002/WD-css3-fonts-20020802","source":"./data/w3c-specs.txt"},"20090618":{"status":"WD","rawDate":"2009-06-18","href":"https://www.w3.org/TR/2009/WD-css3-fonts-20090618","source":"./data/w3c-specs.txt"},"20110324":{"status":"WD","rawDate":"2011-03-24","href":"https://www.w3.org/TR/2011/WD-css3-fonts-20110324/","source":"./data/w3c-specs.txt"},"20111004":{"status":"WD","rawDate":"2011-10-04","href":"https://www.w3.org/TR/2011/WD-css3-fonts-20111004/","source":"./data/w3c-specs.txt"},"20120823":{"status":"WD","rawDate":"2012-08-23","href":"https://www.w3.org/TR/2012/WD-css3-fonts-20120823/","source":"./data/w3c-specs.txt"},"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-css3-fonts-20121211/","source":"./data/w3c-specs.txt"},"20130212":{"status":"WD","rawDate":"2013-02-12","href":"https://www.w3.org/TR/2013/WD-css3-fonts-20130212/","source":"./data/w3c-specs.txt"},"20130711":{"authors":["John Daggett"],"href":"https://www.w3.org/TR/2013/WD-css-fonts-3-20130711/","title":"CSS Fonts Module Level 3","rawDate":"2013-07-11","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131003":{"authors":["John Daggett"],"href":"https://www.w3.org/TR/2013/CR-css-fonts-3-20131003/","title":"CSS Fonts Module Level 3","rawDate":"2013-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180315":{"authors":["John Daggett"],"href":"https://www.w3.org/TR/2018/CR-css-fonts-3-20180315/","title":"CSS Fonts Module Level 3","rawDate":"2018-03-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180626":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2018/CR-css-fonts-3-20180626/","title":"CSS Fonts Module Level 3","rawDate":"2018-06-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180814":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2018/PR-css-fonts-3-20180814/","title":"CSS Fonts Module Level 3","rawDate":"2018-08-14","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180920":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2018/REC-css-fonts-3-20180920/","title":"CSS Fonts Module Level 3","rawDate":"2018-09-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2018/REC-css-fonts-3-20180920-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-fonts-3/","repository":"https://github.com/w3c/csswg-drafts","hasErrata":"https://www.w3.org/Style/2018/REC-css-fonts-3-20180920-errata.html"},"css-fonts-4":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/css-fonts-4/","title":"CSS Fonts Module Level 4","rawDate":"2024-02-01","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-fonts-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170711":{"authors":["John Daggett","Myles Maxfield"],"href":"https://www.w3.org/TR/2017/WD-css-fonts-4-20170711/","title":"CSS Fonts Module Level 4","rawDate":"2017-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180410":{"authors":["John Daggett","Myles Maxfield"],"href":"https://www.w3.org/TR/2018/WD-css-fonts-4-20180410/","title":"CSS Fonts Module Level 4","rawDate":"2018-04-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180920":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2018/WD-css-fonts-4-20180920/","title":"CSS Fonts Module Level 4","rawDate":"2018-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191113":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2019/WD-css-fonts-4-20191113/","title":"CSS Fonts Module Level 4","rawDate":"2019-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201117":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2020/WD-css-fonts-4-20201117/","title":"CSS Fonts Module Level 4","rawDate":"2020-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210729":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-fonts-4-20210729/","title":"CSS Fonts Module Level 4","rawDate":"2021-07-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211221":{"authors":["John Daggett","Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-fonts-4-20211221/","title":"CSS Fonts Module Level 4","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240201":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2024/WD-css-fonts-4-20240201/","title":"CSS Fonts Module Level 4","rawDate":"2024-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-fonts-5":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/css-fonts-5/","title":"CSS Fonts Module Level 5","rawDate":"2024-02-06","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-fonts-5/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210629":{"authors":["Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-fonts-5-20210629/","title":"CSS Fonts Module Level 5","rawDate":"2021-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210729":{"authors":["Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-fonts-5-20210729/","title":"CSS Fonts Module Level 5","rawDate":"2021-07-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211221":{"authors":["Myles Maxfield","Chris Lilley"],"href":"https://www.w3.org/TR/2021/WD-css-fonts-5-20211221/","title":"CSS Fonts Module Level 5","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2024/WD-css-fonts-5-20240206/","title":"CSS Fonts Module Level 5","rawDate":"2024-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-gcpm-3":{"authors":["Rachel Andrew","Mike Bremford"],"href":"https://www.w3.org/TR/css-gcpm-3/","title":"CSS Generated Content for Paged Media Module","rawDate":"2024-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20060612":{"status":"WD","rawDate":"2006-06-12","href":"https://www.w3.org/TR/2006/WD-css3-gcpm-20060612","source":"./data/w3c-specs.txt"},"20060919":{"status":"WD","rawDate":"2006-09-19","href":"https://www.w3.org/TR/2006/WD-css3-gcpm-20060919","source":"./data/w3c-specs.txt"},"20070205":{"status":"WD","rawDate":"2007-02-05","href":"https://www.w3.org/TR/2007/WD-css3-gcpm-20070205","source":"./data/w3c-specs.txt"},"20070504":{"status":"WD","rawDate":"2007-05-04","href":"https://www.w3.org/TR/2007/WD-css3-gcpm-20070504","source":"./data/w3c-specs.txt"},"20100608":{"status":"WD","rawDate":"2010-06-08","href":"https://www.w3.org/TR/2010/WD-css3-gcpm-20100608","source":"./data/w3c-specs.txt"},"20111129":{"authors":["Håkon Wium Lie"],"href":"https://www.w3.org/TR/2011/WD-css3-gcpm-20111129/","title":"CSS Generated Content for Paged Media Module","rawDate":"2011-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140513":{"authors":["Dave Cramer"],"href":"https://www.w3.org/TR/2014/WD-css-gcpm-3-20140513/","title":"CSS Generated Content for Paged Media Module","rawDate":"2014-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Rachel Andrew","Mike Bremford"],"href":"https://www.w3.org/TR/2024/WD-css-gcpm-3-20240125/","title":"CSS Generated Content for Paged Media Module","rawDate":"2024-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-gcpm/","repository":"https://github.com/w3c/csswg-drafts"},"css-grid-1":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov","Oriol Brufau"],"href":"https://www.w3.org/TR/css-grid-1/","title":"CSS Grid Layout Module Level 1","rawDate":"2020-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110407":{"status":"WD","rawDate":"2011-04-07","href":"https://www.w3.org/TR/2011/WD-css3-grid-layout-20110407/","source":"./data/w3c-specs.txt"},"20120322":{"status":"WD","rawDate":"2012-03-22","href":"https://www.w3.org/TR/2012/WD-css3-grid-layout-20120322/","source":"./data/w3c-specs.txt"},"20121106":{"status":"WD","rawDate":"2012-11-06","href":"https://www.w3.org/TR/2012/WD-css3-grid-layout-20121106/","source":"./data/w3c-specs.txt"},"20130402":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2013/WD-css3-grid-layout-20130402/","title":"CSS Grid Layout","rawDate":"2013-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2013/WD-css3-grid-layout-20130910/","title":"CSS Grid Layout Module Level 1","rawDate":"2013-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140123":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2014/WD-css-grid-1-20140123/","title":"CSS Grid Layout Module Level 1","rawDate":"2014-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140513":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2014/WD-css-grid-1-20140513/","title":"CSS Grid Layout Module Level 1","rawDate":"2014-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2015/WD-css-grid-1-20150317/","title":"CSS Grid Layout Module Level 1","rawDate":"2015-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150806":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2015/WD-css-grid-1-20150806/","title":"CSS Grid Layout Module Level 1","rawDate":"2015-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150917":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2015/WD-css-grid-1-20150917/","title":"CSS Grid Layout Module Level 1","rawDate":"2015-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2016/WD-css-grid-1-20160519/","title":"CSS Grid Layout Module Level 1","rawDate":"2016-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160929":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2016/CR-css-grid-1-20160929/","title":"CSS Grid Layout Module Level 1","rawDate":"2016-09-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170209":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2017/CR-css-grid-1-20170209/","title":"CSS Grid Layout Module Level 1","rawDate":"2017-02-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170509":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2017/CR-css-grid-1-20170509/","title":"CSS Grid Layout Module Level 1","rawDate":"2017-05-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2017/CR-css-grid-1-20171214/","title":"CSS Grid Layout Module Level 1","rawDate":"2017-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov","Oriol Brufau"],"href":"https://www.w3.org/TR/2020/CR-css-grid-1-20200818/","title":"CSS Grid Layout Module Level 1","rawDate":"2020-08-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201021":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov","Oriol Brufau"],"href":"https://www.w3.org/TR/2020/CRD-css-grid-1-20201021/","title":"CSS Grid Layout Module Level 1","rawDate":"2020-10-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201218":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov","Oriol Brufau"],"href":"https://www.w3.org/TR/2020/CRD-css-grid-1-20201218/","title":"CSS Grid Layout Module Level 1","rawDate":"2020-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-grid/","obsoletes":["css3-grid"],"repository":"https://github.com/w3c/csswg-drafts"},"css-grid-2":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/css-grid-2/","title":"CSS Grid Layout Module Level 2","rawDate":"2020-12-18","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-grid-2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180206":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/WD-css-grid-2-20180206/","title":"CSS Grid Layout Module Level 2","rawDate":"2018-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180427":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/WD-css-grid-2-20180427/","title":"CSS Grid Layout Module Level 2","rawDate":"2018-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180628":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/WD-css-grid-2-20180628/","title":"CSS Grid Layout Module Level 2","rawDate":"2018-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180804":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/WD-css-grid-2-20180804/","title":"CSS Grid Layout Module Level 2","rawDate":"2018-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191203":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2019/WD-css-grid-2-20191203/","title":"CSS Grid Layout Module Level 2","rawDate":"2019-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2020/CR-css-grid-2-20200818/","title":"CSS Grid Layout Module Level 2","rawDate":"2020-08-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201021":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2020/CRD-css-grid-2-20201021/","title":"CSS Grid Layout Module Level 2","rawDate":"2020-10-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201218":{"authors":["Tab Atkins Jr.","Elika Etemad","Rossen Atanassov"],"href":"https://www.w3.org/TR/2020/CRD-css-grid-2-20201218/","title":"CSS Grid Layout Module Level 2","rawDate":"2020-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-highlight-api-1":{"authors":["Florian Rivoal","Sanket Joshi","Megan Gardner"],"href":"https://www.w3.org/TR/css-highlight-api-1/","title":"CSS Custom Highlight API Module Level 1","rawDate":"2021-12-15","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-highlight-api-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201022":{"authors":["Florian Rivoal","Sanket Joshi","Megan Gardner"],"href":"https://www.w3.org/TR/2020/WD-css-highlight-api-1-20201022/","title":"CSS Custom Highlight API Module Level 1","rawDate":"2020-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201208":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2020/WD-css-highlight-api-1-20201208/","title":"CSS Custom Highlight API Module Level 1","rawDate":"2020-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Florian Rivoal","Sanket Joshi","Megan Gardner"],"href":"https://www.w3.org/TR/2021/WD-css-highlight-api-1-20211215/","title":"CSS Custom Highlight API Module Level 1","rawDate":"2021-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-images-3":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/css-images-3/","title":"CSS Images Module Level 3","rawDate":"2023-12-18","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-images-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090723":{"status":"WD","rawDate":"2009-07-23","href":"https://www.w3.org/TR/2009/WD-css3-images-20090723/","source":"./data/w3c-specs.txt"},"20110217":{"status":"WD","rawDate":"2011-02-17","href":"https://www.w3.org/TR/2011/WD-css3-images-20110217/","source":"./data/w3c-specs.txt"},"20110712":{"status":"WD","rawDate":"2011-07-12","href":"https://www.w3.org/TR/2011/WD-css3-images-20110712/","source":"./data/w3c-specs.txt"},"20110908":{"status":"WD","rawDate":"2011-09-08","href":"https://www.w3.org/TR/2011/WD-css3-images-20110908/","source":"./data/w3c-specs.txt"},"20111206":{"status":"WD","rawDate":"2011-12-06","href":"https://www.w3.org/TR/2011/WD-css3-images-20111206/","source":"./data/w3c-specs.txt"},"20120112":{"status":"WD","rawDate":"2012-01-12","href":"https://www.w3.org/TR/2012/WD-css3-images-20120112/","source":"./data/w3c-specs.txt"},"20120417":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2012/CR-css3-images-20120417/","title":"CSS Image Values and Replaced Content Module Level 3","rawDate":"2012-04-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191010":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/2019/CR-css-images-3-20191010/","title":"CSS Images Module Level 3","rawDate":"2019-10-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201217":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/2020/CRD-css-images-3-20201217/","title":"CSS Images Module Level 3","rawDate":"2020-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231218":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/2023/CRD-css-images-3-20231218/","title":"CSS Images Module Level 3","rawDate":"2023-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-images-4":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/css-images-4/","title":"CSS Images Module Level 4","rawDate":"2023-02-17","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-images-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120911":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2012/WD-css4-images-20120911/","title":"CSS Image Values and Replaced Content Module Level 4","rawDate":"2012-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/2017/WD-css-images-4-20170413/","title":"CSS Image Values and Replaced Content Module Level 4","rawDate":"2017-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230217":{"authors":["Tab Atkins Jr.","Elika Etemad","Lea Verou"],"href":"https://www.w3.org/TR/2023/WD-css-images-4-20230217/","title":"CSS Images Module Level 4","rawDate":"2023-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-inline-3":{"authors":["Dave Cramer","Elika Etemad"],"href":"https://www.w3.org/TR/css-inline-3/","title":"CSS Inline Layout Module Level 3","rawDate":"2023-04-01","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-inline-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141218":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2014/WD-css-inline-3-20141218/","title":"CSS Inline Layout Module Level 3","rawDate":"2014-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150917":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2015/WD-css-inline-3-20150917/","title":"CSS Inline Layout Module Level 3","rawDate":"2015-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160524":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2016/WD-css-inline-3-20160524/","title":"CSS Inline Layout Module Level 3","rawDate":"2016-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180802":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2018/WD-css-inline-3-20180802/","title":"CSS Inline Layout Module Level 3","rawDate":"2018-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180808":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2018/WD-css-inline-3-20180808/","title":"CSS Inline Layout Module Level 3","rawDate":"2018-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200604":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2020/WD-css-inline-3-20200604/","title":"CSS Inline Layout Module Level 3","rawDate":"2020-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200618":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2020/WD-css-inline-3-20200618/","title":"CSS Inline Layout Module Level 3","rawDate":"2020-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200827":{"authors":["Dave Cramer","Elika Etemad","Steve Zilles"],"href":"https://www.w3.org/TR/2020/WD-css-inline-3-20200827/","title":"CSS Inline Layout Module Level 3","rawDate":"2020-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221114":{"authors":["Dave Cramer","Elika Etemad"],"href":"https://www.w3.org/TR/2022/WD-css-inline-3-20221114/","title":"CSS Inline Layout Module Level 3","rawDate":"2022-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230401":{"authors":["Dave Cramer","Elika Etemad"],"href":"https://www.w3.org/TR/2023/WD-css-inline-3-20230401/","title":"CSS Inline Layout Module Level 3","rawDate":"2023-04-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletes":["css3-linebox"],"repository":"https://github.com/w3c/csswg-drafts"},"css-layout-api-1":{"authors":["Greg Whitworth","Ian Kilpatrick","Tab Atkins Jr.","Shane Stephens","Robert O'Callahan","Rossen Atanassov"],"href":"https://www.w3.org/TR/css-layout-api-1/","title":"CSS Layout API Level 1","rawDate":"2018-04-12","status":"WD","publisher":"W3C","edDraft":"https://drafts.css-houdini.org/css-layout-api-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180412":{"authors":["Greg Whitworth","Ian Kilpatrick","Tab Atkins Jr.","Shane Stephens","Robert O'Callahan","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/WD-css-layout-api-1-20180412/","title":"CSS Layout API Level 1","rawDate":"2018-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"css-line-grid-1":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns"],"href":"https://www.w3.org/TR/css-line-grid-1/","title":"CSS Line Grid Module Level 1","rawDate":"2014-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140403":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns"],"href":"https://www.w3.org/TR/2014/WD-css-line-grid-1-20140403/","title":"CSS Line Grid Module Level 1","rawDate":"2014-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140916":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns"],"href":"https://www.w3.org/TR/2014/WD-css-line-grid-1-20140916/","title":"CSS Line Grid Module Level 1","rawDate":"2014-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-line-grid/","repository":"https://github.com/w3c/csswg-drafts"},"css-lists-3":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-lists-3/","title":"CSS Lists and Counters Module Level 3","rawDate":"2020-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20020220":{"status":"WD","rawDate":"2002-02-20","href":"https://www.w3.org/TR/2002/WD-css3-lists-20020220","source":"./data/w3c-specs.txt"},"20021107":{"status":"WD","rawDate":"2002-11-07","href":"https://www.w3.org/TR/2002/WD-css3-lists-20021107","source":"./data/w3c-specs.txt"},"20110524":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2011/WD-css3-lists-20110524","title":"CSS Lists and Counters Module Level 3","rawDate":"2011-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140320":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-lists-3-20140320/","title":"CSS Lists and Counters Module Level 3","rawDate":"2014-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190425":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2019/WD-css-lists-3-20190425/","title":"CSS Lists Module Level 3","rawDate":"2019-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190817":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2019/WD-css-lists-3-20190817/","title":"CSS Lists Module Level 3","rawDate":"2019-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200709":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-lists-3-20200709/","title":"CSS Lists Module Level 3","rawDate":"2020-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201117":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-lists-3-20201117/","title":"CSS Lists and Counters Module Level 3","rawDate":"2020-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-lists-3/","repository":"https://github.com/w3c/csswg-drafts"},"css-logical-1":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/css-logical-1/","title":"CSS Logical Properties and Values Level 1","rawDate":"2018-08-27","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-logical-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170518":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2017/WD-css-logical-1-20170518/","title":"CSS Logical Properties and Values Level 1","rawDate":"2017-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180827":{"authors":["Rossen Atanassov","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-logical-1-20180827/","title":"CSS Logical Properties and Values Level 1","rawDate":"2018-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-masking":{"aliasOf":"css-masking-1"},"css-masking-1":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-masking-1/","title":"CSS Masking Module Level 1","rawDate":"2021-08-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121115":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2012/WD-css-masking-20121115/","title":"CSS Masking","rawDate":"2012-11-15","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130620":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css-masking-20130620/","title":"CSS Masking Level 1","rawDate":"2013-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131029":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css-masking-1-20131029/","title":"CSS Masking Module Level 1","rawDate":"2013-10-29","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140213":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-masking-1-20140213/","title":"CSS Masking Module Level 1","rawDate":"2014-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140522":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-masking-1-20140522/","title":"CSS Masking Module Level 1","rawDate":"2014-05-22","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140826":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/CR-css-masking-1-20140826/","title":"CSS Masking Module Level 1","rawDate":"2014-08-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210805":{"authors":["Dirk Schulze","Brian Birtles","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/CRD-css-masking-1-20210805/","title":"CSS Masking Module Level 1","rawDate":"2021-08-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.fxtf.org/css-masking-1/","repository":"https://github.com/w3c/fxtf-drafts"},"css-mobile":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/css-mobile/","title":"CSS Mobile Profile 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20001013":{"status":"WD","rawDate":"2000-10-13","href":"https://www.w3.org/TR/2000/WD-css-mobile-20001013","source":"./data/w3c-specs.txt"},"20010129":{"status":"WD","rawDate":"2001-01-29","href":"https://www.w3.org/TR/2001/WD-css-mobile-20010129/","source":"./data/w3c-specs.txt"},"20011024":{"status":"CR","rawDate":"2001-10-24","href":"https://www.w3.org/TR/2001/CR-css-mobile-20011024/","source":"./data/w3c-specs.txt"},"20020725":{"status":"CR","rawDate":"2002-07-25","href":"https://www.w3.org/TR/2002/CR-css-mobile-20020725","source":"./data/w3c-specs.txt"},"20061208":{"status":"WD","rawDate":"2006-12-08","href":"https://www.w3.org/TR/2006/WD-css-mobile-20061208","source":"./data/w3c-specs.txt"},"20071019":{"status":"WD","rawDate":"2007-10-19","href":"https://www.w3.org/TR/2007/WD-css-mobile-20071019","source":"./data/w3c-specs.txt"},"20080801":{"status":"CR","rawDate":"2008-08-01","href":"https://www.w3.org/TR/2008/CR-css-mobile-20080801","source":"./data/w3c-specs.txt"},"20081210":{"authors":["Svante Schubert"],"href":"https://www.w3.org/TR/2008/CR-css-mobile-20081210","title":"CSS Mobile Profile 2.0","rawDate":"2008-12-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2014/NOTE-css-mobile-20141014/","title":"CSS Mobile Profile 2.0","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css-multicol-1":{"authors":["Florian Rivoal","Rachel Andrew"],"href":"https://www.w3.org/TR/css-multicol-1/","title":"CSS Multi-column Layout Module Level 1","rawDate":"2021-10-12","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-multicol/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990623":{"status":"WD","rawDate":"1999-06-23","href":"https://www.w3.org/1999/06/WD-css3-multicol-19990623","source":"./data/w3c-specs.txt"},"20010118":{"status":"WD","rawDate":"2001-01-18","href":"https://www.w3.org/TR/2001/WD-css3-multicol-20010118/","source":"./data/w3c-specs.txt"},"20051215":{"status":"WD","rawDate":"2005-12-15","href":"https://www.w3.org/TR/2005/WD-css3-multicol-20051215","source":"./data/w3c-specs.txt"},"20070606":{"status":"WD","rawDate":"2007-06-06","href":"https://www.w3.org/TR/2007/WD-css3-multicol-20070606","source":"./data/w3c-specs.txt"},"20090630":{"status":"WD","rawDate":"2009-06-30","href":"https://www.w3.org/TR/2009/WD-css3-multicol-20090630/","source":"./data/w3c-specs.txt"},"20091217":{"status":"CR","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/CR-css3-multicol-20091217","source":"./data/w3c-specs.txt"},"20110412":{"authors":["Håkon Wium Lie"],"href":"https://www.w3.org/TR/2011/CR-css3-multicol-20110412","title":"CSS Multi-column Layout Module","rawDate":"2011-04-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171005":{"authors":["Håkon Wium Lie","Florian Rivoal","Rachel Andrew"],"href":"https://www.w3.org/TR/2017/WD-css-multicol-1-20171005/","title":"CSS Multi-column Layout Module Level 1","rawDate":"2017-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180528":{"authors":["Florian Rivoal","Rachel Andrew"],"href":"https://www.w3.org/TR/2018/WD-css-multicol-1-20180528/","title":"CSS Multi-column Layout Module Level 1","rawDate":"2018-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191015":{"authors":["Håkon Wium Lie","Florian Rivoal","Rachel Andrew"],"href":"https://www.w3.org/TR/2019/WD-css-multicol-1-20191015/","title":"CSS Multi-column Layout Module Level 1","rawDate":"2019-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210212":{"authors":["Håkon Wium Lie","Florian Rivoal","Rachel Andrew"],"href":"https://www.w3.org/TR/2021/WD-css-multicol-1-20210212/","title":"CSS Multi-column Layout Module Level 1","rawDate":"2021-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Florian Rivoal","Rachel Andrew"],"href":"https://www.w3.org/TR/2021/CR-css-multicol-1-20211012/","title":"CSS Multi-column Layout Module Level 1","rawDate":"2021-10-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-namespaces-3":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/css-namespaces-3/","title":"CSS Namespaces Module Level 3","rawDate":"2014-03-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990625":{"status":"WD","rawDate":"1999-06-25","href":"https://www.w3.org/1999/06/25/WD-css3-namespace-19990625/","source":"./data/w3c-specs.txt"},"20060828":{"status":"WD","rawDate":"2006-08-28","href":"https://www.w3.org/TR/2006/WD-css3-namespace-20060828/","source":"./data/w3c-specs.txt"},"20080215":{"status":"WD","rawDate":"2008-02-15","href":"https://www.w3.org/TR/2008/WD-css3-namespace-20080215/","source":"./data/w3c-specs.txt"},"20080523":{"status":"CR","rawDate":"2008-05-23","href":"https://www.w3.org/TR/2008/CR-css3-namespace-20080523/","source":"./data/w3c-specs.txt"},"20110811":{"status":"PR","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/PR-css3-namespace-20110811/","source":"./data/w3c-specs.txt"},"20110929":{"authors":["Elika Etemad","Anne van Kesteren"],"href":"https://www.w3.org/TR/2011/REC-css3-namespace-20110929/","title":"CSS Namespaces Module","rawDate":"2011-09-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"hasErrata":"https://www.w3.org/Style/2011/REC-css3-color-20110607-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140320":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2014/REC-css-namespaces-3-20140320/","title":"CSS Namespaces Module Level 3","rawDate":"2014-03-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-namespaces/","hasErrata":"https://www.w3.org/Style/2011/REC-css3-color-20110607-errata.html","repository":"https://github.com/w3c/csswg-drafts"},"css-nav-1":{"authors":["Jihye Hong","Florian Rivoal"],"href":"https://www.w3.org/TR/css-nav-1/","title":"CSS Spatial Navigation Level 1","rawDate":"2019-11-26","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-nav-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190423":{"authors":["Jihye Hong","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/WD-css-nav-1-20190423/","title":"CSS Spatial Navigation Level 1","rawDate":"2019-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191126":{"authors":["Jihye Hong","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/WD-css-nav-1-20191126/","title":"CSS Spatial Navigation Level 1","rawDate":"2019-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-nesting-1":{"authors":["Tab Atkins Jr.","Adam Argyle"],"href":"https://www.w3.org/TR/css-nesting-1/","title":"CSS Nesting Module","rawDate":"2023-02-14","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-nesting/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210831":{"authors":["Tab Atkins Jr.","Adam Argyle"],"href":"https://www.w3.org/TR/2021/WD-css-nesting-1-20210831/","title":"CSS Nesting Module","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230214":{"authors":["Tab Atkins Jr.","Adam Argyle"],"href":"https://www.w3.org/TR/2023/WD-css-nesting-1-20230214/","title":"CSS Nesting Module","rawDate":"2023-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-overflow-3":{"authors":["Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/css-overflow-3/","title":"CSS Overflow Module Level 3","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130418":{"authors":["David Baron"],"href":"https://www.w3.org/TR/2013/WD-css-overflow-3-20130418/","title":"CSS Overflow Module Level 3","rawDate":"2013-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"authors":["David Baron","Florian Rivoal"],"href":"https://www.w3.org/TR/2016/WD-css-overflow-3-20160531/","title":"CSS Overflow Module Level 3","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180731":{"authors":["David Baron","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/WD-css-overflow-3-20180731/","title":"CSS Overflow Module Level 3","rawDate":"2018-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200603":{"authors":["David Baron","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/WD-css-overflow-3-20200603/","title":"CSS Overflow Module Level 3","rawDate":"2020-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["David Baron","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-overflow-3-20211202/","title":"CSS Overflow Module Level 3","rawDate":"2021-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211223":{"authors":["David Baron","Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-overflow-3-20211223/","title":"CSS Overflow Module Level 3","rawDate":"2021-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221231":{"authors":["Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/WD-css-overflow-3-20221231/","title":"CSS Overflow Module Level 3","rawDate":"2022-12-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/WD-css-overflow-3-20230321/","title":"CSS Overflow Module Level 3","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Elika Etemad","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/WD-css-overflow-3-20230329/","title":"CSS Overflow Module Level 3","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-overflow-3/","repository":"https://github.com/w3c/csswg-drafts"},"css-overflow-4":{"authors":["David Baron","Florian Rivoal","Elika Etemad"],"href":"https://www.w3.org/TR/css-overflow-4/","title":"CSS Overflow Module Level 4","rawDate":"2023-03-21","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-overflow-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170613":{"authors":["David Baron","Florian Rivoal"],"href":"https://www.w3.org/TR/2017/WD-css-overflow-4-20170613/","title":"CSS Overflow Module Level 4","rawDate":"2017-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221231":{"authors":["David Baron","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/WD-css-overflow-4-20221231/","title":"CSS Overflow Module Level 4","rawDate":"2022-12-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["David Baron","Florian Rivoal","Elika Etemad"],"href":"https://www.w3.org/TR/2023/WD-css-overflow-4-20230321/","title":"CSS Overflow Module Level 4","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-overscroll":{"aliasOf":"css-overscroll-1"},"css-overscroll-1":{"authors":["Majid Valipour"],"href":"https://www.w3.org/TR/css-overscroll-1/","title":"CSS Overscroll Behavior Module Level 1","rawDate":"2019-06-06","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-overscroll-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190606":{"authors":["Majid Valipour"],"href":"https://www.w3.org/TR/2019/WD-css-overscroll-1-20190606/","title":"CSS Overscroll Behavior Module Level 1","rawDate":"2019-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-overscroll-behavior":{"aliasOf":"css-overscroll"},"css-page-3":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/css-page-3/","title":"CSS Paged Media Module Level 3","rawDate":"2023-09-14","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-page-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990623":{"status":"WD","rawDate":"1999-06-23","href":"https://www.w3.org/1999/06/WD-css3-page-19990623","source":"./data/w3c-specs.txt"},"19990928":{"status":"WD","rawDate":"1999-09-28","href":"https://www.w3.org/TR/1999/WD-css3-page-19990928","source":"./data/w3c-specs.txt"},"20030909":{"status":"WD","rawDate":"2003-09-09","href":"https://www.w3.org/TR/2003/WD-css3-page-20030909","source":"./data/w3c-specs.txt"},"20031218":{"status":"WD","rawDate":"2003-12-18","href":"https://www.w3.org/TR/2003/WD-css3-page-20031218","source":"./data/w3c-specs.txt"},"20040225":{"status":"CR","rawDate":"2004-02-25","href":"https://www.w3.org/TR/2004/CR-css3-page-20040225","source":"./data/w3c-specs.txt"},"20061010":{"status":"WD","rawDate":"2006-10-10","href":"https://www.w3.org/TR/2006/WD-css3-page-20061010/","source":"./data/w3c-specs.txt"},"20130314":{"authors":["Melinda Grant","Elika Etemad","Håkon Wium Lie","Simon Sapin"],"href":"https://www.w3.org/TR/2013/WD-css3-page-20130314/","title":"CSS Paged Media Module Level 3","rawDate":"2013-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Elika Etemad","Simon Sapin"],"href":"https://www.w3.org/TR/2018/WD-css-page-3-20181018/","title":"CSS Paged Media Module Level 3","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230914":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2023/WD-css-page-3-20230914/","title":"CSS Paged Media Module Level 3","rawDate":"2023-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-page-floats-3":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/css-page-floats-3/","title":"CSS Page Floats","rawDate":"2015-09-15","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-page-floats/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150915":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/2015/WD-css-page-floats-3-20150915/","title":"CSS Page Floats","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-paint-api-1":{"authors":["Ian Kilpatrick","Dean Jackson"],"href":"https://www.w3.org/TR/css-paint-api-1/","title":"CSS Painting API Level 1","rawDate":"2021-12-16","status":"CR","publisher":"W3C","edDraft":"https://drafts.css-houdini.org/css-paint-api-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160607":{"authors":["Shane Stephens","Ian Kilpatrick","Dean Jackson"],"href":"https://www.w3.org/TR/2016/WD-css-paint-api-1-20160607/","title":"CSS Painting API Level 1","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180410":{"authors":["Shane Stephens","Ian Kilpatrick","Dean Jackson"],"href":"https://www.w3.org/TR/2018/WD-css-paint-api-1-20180410/","title":"CSS Painting API Level 1","rawDate":"2018-04-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180809":{"authors":["Ian Kilpatrick","Dean Jackson"],"href":"https://www.w3.org/TR/2018/CR-css-paint-api-1-20180809/","title":"CSS Painting API Level 1","rawDate":"2018-08-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Ian Kilpatrick","Dean Jackson"],"href":"https://www.w3.org/TR/2021/CRD-css-paint-api-1-20211216/","title":"CSS Painting API Level 1","rawDate":"2021-12-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"css-position-3":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-position-3/","title":"CSS Positioned Layout Module Level 3","rawDate":"2023-04-03","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-position-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120207":{"authors":["Arron Eicholz"],"href":"https://www.w3.org/TR/2012/WD-css3-positioning-20120207/","title":"CSS Positioned Layout Module Level 3","rawDate":"2012-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150203":{"authors":["Rossen Atanassov","Arron Eicholz"],"href":"https://www.w3.org/TR/2015/WD-css3-positioning-20150203/","title":"CSS Positioned Layout Module Level 3","rawDate":"2015-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["Rossen Atanassov","Arron Eicholz"],"href":"https://www.w3.org/TR/2016/WD-css-position-3-20160517/","title":"CSS Positioned Layout Module Level 3","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200519":{"authors":["Elika Etemad","Tab Atkins Jr.","Rossen Atanassov","Arron Eicholz"],"href":"https://www.w3.org/TR/2020/WD-css-position-3-20200519/","title":"CSS Positioned Layout Module Level 3","rawDate":"2020-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/WD-css-position-3-20211216/","title":"CSS Positioned Layout Module Level 3","rawDate":"2021-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220901":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/WD-css-position-3-20220901/","title":"CSS Positioned Layout Module Level 3","rawDate":"2022-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230217":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2023/WD-css-position-3-20230217/","title":"CSS Positioned Layout Module Level 3","rawDate":"2023-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2023/WD-css-position-3-20230403/","title":"CSS Positioned Layout Module Level 3","rawDate":"2023-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-print":{"authors":["Elika Etemad","Melinda Grant"],"href":"https://www.w3.org/TR/css-print/","title":"CSS Print Profile","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20030813":{"status":"WD","rawDate":"2003-08-13","href":"https://www.w3.org/TR/2003/WD-css-print-20030813","source":"./data/w3c-specs.txt"},"20031218":{"status":"WD","rawDate":"2003-12-18","href":"https://www.w3.org/TR/2003/WD-css-print-20031218","source":"./data/w3c-specs.txt"},"20040225":{"status":"CR","rawDate":"2004-02-25","href":"https://www.w3.org/TR/2004/CR-css-print-20040225","source":"./data/w3c-specs.txt"},"20061013":{"status":"WD","rawDate":"2006-10-13","href":"https://www.w3.org/TR/2006/WD-css-print-20061013/","source":"./data/w3c-specs.txt"},"20130314":{"authors":["Elika Etemad","Melinda Grant"],"href":"https://www.w3.org/TR/2013/NOTE-css-print-20130314/","title":"CSS Print Profile","rawDate":"2013-03-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2013-03-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css-properties-values-api-1":{"authors":["Tab Atkins Jr.","Daniel Glazman","Alan Stearns","Greg Whitworth","Shane Stephens"],"href":"https://www.w3.org/TR/css-properties-values-api-1/","title":"CSS Properties and Values API Level 1","rawDate":"2020-10-13","status":"WD","publisher":"W3C","edDraft":"https://drafts.css-houdini.org/css-properties-values-api-1/","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160607":{"authors":["Tab Atkins Jr.","Shane Stephens","Daniel Glazman","Alan Stearns","Elliott Sprehn","Greg Whitworth"],"href":"https://www.w3.org/TR/2016/WD-css-properties-values-api-1-20160607/","title":"CSS Properties and Values API Level 1","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171109":{"authors":["Tab Atkins Jr.","Shane Stephens","Daniel Glazman","Alan Stearns","Greg Whitworth"],"href":"https://www.w3.org/TR/2017/WD-css-properties-values-api-1-20171109/","title":"CSS Properties and Values API Level 1","rawDate":"2017-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191025":{"authors":["Tab Atkins Jr.","Daniel Glazman","Alan Stearns","Greg Whitworth","Shane Stephens"],"href":"https://www.w3.org/TR/2019/WD-css-properties-values-api-1-20191025/","title":"CSS Properties and Values API Level 1","rawDate":"2019-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201013":{"authors":["Tab Atkins Jr.","Daniel Glazman","Alan Stearns","Greg Whitworth","Shane Stephens"],"href":"https://www.w3.org/TR/2020/WD-css-properties-values-api-1-20201013/","title":"CSS Properties and Values API Level 1","rawDate":"2020-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"css-pseudo-4":{"authors":["Daniel Glazman","Elika Etemad","Alan Stearns"],"href":"https://www.w3.org/TR/css-pseudo-4/","title":"CSS Pseudo-Elements Module Level 4","rawDate":"2022-12-30","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-pseudo-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150115":{"authors":["Daniel Glazman","Elika Etemad","Alan Stearns"],"href":"https://www.w3.org/TR/2015/WD-css-pseudo-4-20150115/","title":"CSS Pseudo-Elements Module Level 4","rawDate":"2015-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160607":{"authors":["Daniel Glazman","Elika Etemad","Alan Stearns"],"href":"https://www.w3.org/TR/2016/WD-css-pseudo-4-20160607/","title":"CSS Pseudo-Elements Module Level 4","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190225":{"authors":["Daniel Glazman","Elika Etemad","Alan Stearns"],"href":"https://www.w3.org/TR/2019/WD-css-pseudo-4-20190225/","title":"CSS Pseudo-Elements Module Level 4","rawDate":"2019-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201231":{"authors":["Daniel Glazman","Elika Etemad","Alan Stearns"],"href":"https://www.w3.org/TR/2020/WD-css-pseudo-4-20201231/","title":"CSS Pseudo-Elements Module Level 4","rawDate":"2020-12-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221230":{"authors":["Daniel Glazman","Elika Etemad","Alan Stearns"],"href":"https://www.w3.org/TR/2022/WD-css-pseudo-4-20221230/","title":"CSS Pseudo-Elements Module Level 4","rawDate":"2022-12-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-regions-1":{"authors":["Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/css-regions-1/","title":"CSS Regions Module Level 1","rawDate":"2014-10-09","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-regions/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110609":{"status":"WD","rawDate":"2011-06-09","href":"https://www.w3.org/TR/2011/WD-css3-regions-20110609/","source":"./data/w3c-specs.txt"},"20111129":{"status":"WD","rawDate":"2011-11-29","href":"https://www.w3.org/TR/2011/WD-css3-regions-20111129/","source":"./data/w3c-specs.txt"},"20120503":{"status":"WD","rawDate":"2012-05-03","href":"https://www.w3.org/TR/2012/WD-css3-regions-20120503/","source":"./data/w3c-specs.txt"},"20120823":{"authors":["Vincent Hardy","Alex Mogilevsky","Alan Stearns"],"href":"https://www.w3.org/TR/2012/WD-css3-regions-20120823/","title":"CSS Regions Module Level 3","rawDate":"2012-08-23","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2013/WD-css3-regions-20130528/","title":"CSS Regions Module Level 1","rawDate":"2013-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140218":{"authors":["Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2014/WD-css3-regions-20140218/","title":"CSS Regions Module Level 1","rawDate":"2014-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141009":{"authors":["Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2014/WD-css-regions-1-20141009/","title":"CSS Regions Module Level 1","rawDate":"2014-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-rhythm-1":{"authors":["Koji Ishii","Elika Etemad"],"href":"https://www.w3.org/TR/css-rhythm-1/","title":"CSS Rhythmic Sizing","rawDate":"2017-03-02","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-rhythm/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170302":{"authors":["Koji Ishii","Elika Etemad"],"href":"https://www.w3.org/TR/2017/WD-css-rhythm-1-20170302/","title":"CSS Rhythmic Sizing","rawDate":"2017-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-round-display-1":{"authors":["Jihye Hong"],"href":"https://www.w3.org/TR/css-round-display-1/","title":"CSS Round Display Level 1","rawDate":"2016-12-22","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-round-display/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150922":{"authors":["Hyojin Song","Jihye Hong"],"href":"https://www.w3.org/TR/2015/WD-css-round-display-1-20150922/","title":"CSS Round Display Level 1","rawDate":"2015-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160301":{"authors":["Hyojin Song","Jihye Hong"],"href":"https://www.w3.org/TR/2016/WD-css-round-display-1-20160301/","title":"CSS Round Display Level 1","rawDate":"2016-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161222":{"authors":["Jihye Hong"],"href":"https://www.w3.org/TR/2016/WD-css-round-display-1-20161222/","title":"CSS Round Display Level 1","rawDate":"2016-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-ruby-1":{"authors":["Elika Etemad","Koji Ishii","Xidorn Quan","Florian Rivoal"],"href":"https://www.w3.org/TR/css-ruby-1/","title":"CSS Ruby Annotation Layout Module Level 1","rawDate":"2022-12-31","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-ruby-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010216":{"status":"WD","rawDate":"2001-02-16","href":"https://www.w3.org/TR/2001/WD-css3-ruby-20010216/","source":"./data/w3c-specs.txt"},"20021024":{"status":"WD","rawDate":"2002-10-24","href":"https://www.w3.org/TR/2002/WD-css3-ruby-20021024","source":"./data/w3c-specs.txt"},"20030514":{"status":"CR","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/CR-css3-ruby-20030514","source":"./data/w3c-specs.txt"},"20110630":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2011/WD-css3-ruby-20110630/","title":"CSS3 Ruby Module","rawDate":"2011-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130919":{"authors":["Elika Etemad","Koji Ishii","Richard Ishida"],"href":"https://www.w3.org/TR/2013/WD-css3-ruby-20130919/","title":"CSS Ruby Module Level 1","rawDate":"2013-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140805":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2014/WD-css-ruby-1-20140805/","title":"CSS Ruby Layout Module Level 1","rawDate":"2014-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200429":{"authors":["Elika Etemad","Koji Ishii","Xidorn Quan","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/WD-css-ruby-1-20200429/","title":"CSS Ruby Layout Module Level 1","rawDate":"2020-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210310":{"authors":["Elika Etemad","Koji Ishii","Xidorn Quan","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-ruby-1-20210310/","title":"CSS Ruby Annotation Layout Module Level 1","rawDate":"2021-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Elika Etemad","Koji Ishii","Xidorn Quan","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-ruby-1-20211202/","title":"CSS Ruby Annotation Layout Module Level 1","rawDate":"2021-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221231":{"authors":["Elika Etemad","Koji Ishii","Xidorn Quan","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/WD-css-ruby-1-20221231/","title":"CSS Ruby Annotation Layout Module Level 1","rawDate":"2022-12-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-scoping-1":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/css-scoping-1/","title":"CSS Scoping Module Level 1","rawDate":"2014-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140403":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2014/WD-css-scoping-1-20140403/","title":"CSS Scoping Module Level 1","rawDate":"2014-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-scoping/","repository":"https://github.com/w3c/csswg-drafts"},"css-scroll-anchoring-1":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-scroll-anchoring-1/","title":"CSS Scroll Anchoring Module Level 1","rawDate":"2020-11-11","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-scroll-anchoring/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200211":{"authors":["Steve Kobes","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-scroll-anchoring-1-20200211/","title":"CSS Scroll Anchoring Module Level 1","rawDate":"2020-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201111":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-css-scroll-anchoring-1-20201111/","title":"CSS Scroll Anchoring Module Level 1","rawDate":"2020-11-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-scroll-boundary-behavior":{"aliasOf":"css-overscroll"},"css-scroll-snap-1":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/css-scroll-snap-1/","title":"CSS Scroll Snap Module Level 1","rawDate":"2021-03-11","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-scroll-snap-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150326":{"authors":["Matt Rakow","Jacob Rossi"],"href":"https://www.w3.org/TR/2015/WD-css-snappoints-1-20150326/","title":"CSS Scroll Snap Points Module Level 1","rawDate":"2015-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["Matt Rakow","Jacob Rossi"],"href":"https://www.w3.org/TR/2016/WD-css-snappoints-1-20160329/","title":"CSS Scroll Snap Points Module Level 1","rawDate":"2016-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160623":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2016/WD-css-scroll-snap-1-20160623/","title":"CSS Scroll Snap Module Level 1","rawDate":"2016-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161020":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2016/CR-css-scroll-snap-1-20161020/","title":"CSS Scroll Snap Module Level 1","rawDate":"2016-10-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170209":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2017/CR-css-scroll-snap-1-20170209/","title":"CSS Scroll Snap Module Level 1","rawDate":"2017-02-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170824":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2017/CR-css-scroll-snap-1-20170824/","title":"CSS Scroll Snap Module Level 1","rawDate":"2017-08-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2017/CR-css-scroll-snap-1-20171214/","title":"CSS Scroll Snap Module Level 1","rawDate":"2017-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180814":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/CR-css-scroll-snap-1-20180814/","title":"CSS Scroll Snap Module Level 1","rawDate":"2018-08-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190131":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/CR-css-scroll-snap-1-20190131/","title":"CSS Scroll Snap Module Level 1","rawDate":"2019-01-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190319":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/CR-css-scroll-snap-1-20190319/","title":"CSS Scroll Snap Module Level 1","rawDate":"2019-03-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210311":{"authors":["Matt Rakow","Jacob Rossi","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/CR-css-scroll-snap-1-20210311/","title":"CSS Scroll Snap Module Level 1","rawDate":"2021-03-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-scrollbars-1":{"authors":["Tantek Çelik","Rossen Atanassov","Florian Rivoal"],"href":"https://www.w3.org/TR/css-scrollbars-1/","title":"CSS Scrollbars Styling Module Level 1","rawDate":"2021-12-09","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-scrollbars/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180925":{"authors":["Tantek Çelik","Rossen Atanassov"],"href":"https://www.w3.org/TR/2018/WD-css-scrollbars-1-20180925/","title":"CSS Scrollbars Module Level 1","rawDate":"2018-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210805":{"authors":["Tantek Çelik","Rossen Atanassov","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-scrollbars-1-20210805/","title":"CSS Scrollbars Module Level 1","rawDate":"2021-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210829":{"authors":["Tantek Çelik","Rossen Atanassov","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-scrollbars-1-20210829/","title":"CSS Scrollbars Module Level 1","rawDate":"2021-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Tantek Çelik","Rossen Atanassov","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-scrollbars-1-20210908/","title":"CSS Scrollbars Styling Module Level 1","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Tantek Çelik","Rossen Atanassov","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-scrollbars-1-20211202/","title":"CSS Scrollbars Styling Module Level 1","rawDate":"2021-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211209":{"authors":["Tantek Çelik","Rossen Atanassov","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/CR-css-scrollbars-1-20211209/","title":"CSS Scrollbars Styling Module Level 1","rawDate":"2021-12-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-shadow-parts-1":{"authors":["Tab Atkins Jr.","Fergal Daly"],"href":"https://www.w3.org/TR/css-shadow-parts-1/","title":"CSS Shadow Parts","rawDate":"2018-11-15","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-shadow-parts/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181115":{"authors":["Tab Atkins Jr.","Fergal Daly"],"href":"https://www.w3.org/TR/2018/WD-css-shadow-parts-1-20181115/","title":"CSS Shadow Parts","rawDate":"2018-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-shapes-1":{"authors":["Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/css-shapes-1/","title":"CSS Shapes Module Level 1","rawDate":"2022-11-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130620":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2013/WD-css-shapes-1-20130620/","title":"CSS Shapes Module Level 1","rawDate":"2013-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131203":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2013/WD-css-shapes-1-20131203/","title":"CSS Shapes Module Level 1","rawDate":"2013-12-03","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2014/WD-css-shapes-1-20140211/","title":"CSS Shapes Module Level 1","rawDate":"2014-02-11","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140320":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2014/CR-css-shapes-1-20140320/","title":"CSS Shapes Module Level 1","rawDate":"2014-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221115":{"authors":["Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2022/CRD-css-shapes-1-20221115/","title":"CSS Shapes Module Level 1","rawDate":"2022-11-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-shapes/","repository":"https://github.com/w3c/csswg-drafts"},"css-sizing-3":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/css-sizing-3/","title":"CSS Box Sizing Module Level 3","rawDate":"2021-12-17","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-sizing-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120927":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2012/WD-css3-sizing-20120927/","title":"CSS Intrinsic & Extrinsic Sizing Module Level 3","rawDate":"2012-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160510":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2016/WD-css-sizing-3-20160510/","title":"CSS Intrinsic & Extrinsic Sizing Module Level 3","rawDate":"2016-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160512":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2016/WD-css-sizing-3-20160512/","title":"CSS Intrinsic & Extrinsic Sizing Module Level 3","rawDate":"2016-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170207":{"authors":["Elika Etemad"],"href":"https://www.w3.org/TR/2017/WD-css-sizing-3-20170207/","title":"CSS Intrinsic & Extrinsic Sizing Module Level 3","rawDate":"2017-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180304":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-sizing-3-20180304/","title":"CSS Intrinsic & Extrinsic Sizing Module Level 3","rawDate":"2018-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190522":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/WD-css-sizing-3-20190522/","title":"CSS Intrinsic & Extrinsic Sizing Module Level 3","rawDate":"2019-05-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201023":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-sizing-3-20201023/","title":"CSS Box Sizing Module Level 3","rawDate":"2020-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201218":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-sizing-3-20201218/","title":"CSS Box Sizing Module Level 3","rawDate":"2020-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210317":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/WD-css-sizing-3-20210317/","title":"CSS Box Sizing Module Level 3","rawDate":"2021-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211217":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/WD-css-sizing-3-20211217/","title":"CSS Box Sizing Module Level 3","rawDate":"2021-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-sizing-4":{"authors":["Tab Atkins Jr.","Elika Etemad","Jen Simmons"],"href":"https://www.w3.org/TR/css-sizing-4/","title":"CSS Box Sizing Module Level 4","rawDate":"2021-05-20","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-sizing-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200526":{"authors":["Tab Atkins Jr.","Elika Etemad","Jen Simmons"],"href":"https://www.w3.org/TR/2020/WD-css-sizing-4-20200526/","title":"CSS Box Sizing Module Level 4","rawDate":"2020-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201020":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-sizing-4-20201020/","title":"CSS Box Sizing Module Level 4","rawDate":"2020-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210520":{"authors":["Tab Atkins Jr.","Elika Etemad","Jen Simmons"],"href":"https://www.w3.org/TR/2021/WD-css-sizing-4-20210520/","title":"CSS Box Sizing Module Level 4","rawDate":"2021-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-snappoints-1":{"aliasOf":"css-scroll-snap-1"},"css-speech-1":{"authors":["Léonie Watson","Elika Etemad"],"href":"https://www.w3.org/TR/css-speech-1/","title":"CSS Speech Module Level 1","rawDate":"2023-02-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20030514":{"status":"WD","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/WD-css3-speech-20030514","source":"./data/w3c-specs.txt"},"20040727":{"status":"WD","rawDate":"2004-07-27","href":"https://www.w3.org/TR/2004/WD-css3-speech-20040727","source":"./data/w3c-specs.txt"},"20041216":{"status":"WD","rawDate":"2004-12-16","href":"https://www.w3.org/TR/2004/WD-css3-speech-20041216/","source":"./data/w3c-specs.txt"},"20110419":{"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-css3-speech-20110419","source":"./data/w3c-specs.txt"},"20110818":{"status":"WD","rawDate":"2011-08-18","href":"https://www.w3.org/TR/2011/WD-css3-speech-20110818/","source":"./data/w3c-specs.txt"},"20120320":{"authors":["Daniel Weck"],"href":"https://www.w3.org/TR/2012/CR-css3-speech-20120320/","title":"CSS Speech Module","rawDate":"2012-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180605":{"authors":["Daniel Weck"],"href":"https://www.w3.org/TR/2018/NOTE-css3-speech-20180605/","title":"CSS Speech Module","rawDate":"2018-06-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20200310":{"authors":["Daniel Weck"],"href":"https://www.w3.org/TR/2020/CR-css-speech-1-20200310/","title":"CSS Speech Module","rawDate":"2020-03-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230214":{"authors":["Léonie Watson","Elika Etemad"],"href":"https://www.w3.org/TR/2023/CRD-css-speech-1-20230214/","title":"CSS Speech Module Level 1","rawDate":"2023-02-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-speech-1/","repository":"https://github.com/w3c/csswg-drafts"},"css-style-attr":{"authors":["Tantek Çelik","Elika Etemad"],"href":"https://www.w3.org/TR/css-style-attr/","title":"CSS Style Attributes","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20001025":{"status":"WD","rawDate":"2000-10-25","href":"https://www.w3.org/TR/2000/WD-css-style-attr-20001025","source":"./data/w3c-specs.txt"},"20010305":{"status":"WD","rawDate":"2001-03-05","href":"https://www.w3.org/TR/2001/WD-css-style-attr-20010305","source":"./data/w3c-specs.txt"},"20020515":{"status":"WD","rawDate":"2002-05-15","href":"https://www.w3.org/TR/2002/WD-css-style-attr-20020515","source":"./data/w3c-specs.txt"},"20100121":{"status":"WD","rawDate":"2010-01-21","href":"https://www.w3.org/TR/2010/WD-css-style-attr-20100121/","source":"./data/w3c-specs.txt"},"20101012":{"authors":["Tantek Çelik","Elika Etemad"],"href":"https://www.w3.org/TR/2010/CR-css-style-attr-20101012/","title":"CSS Style Attributes","rawDate":"2010-10-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131003":{"authors":["Tantek Çelik","Elika Etemad"],"href":"https://www.w3.org/TR/2013/PR-css-style-attr-20131003/","title":"CSS Style Attributes","rawDate":"2013-10-03","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["Tantek Çelik","Elika Etemad"],"href":"https://www.w3.org/TR/2013/REC-css-style-attr-20131107/","title":"CSS Style Attributes","rawDate":"2013-11-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-11-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://drafts.csswg.org/css-style-attr/","repository":"https://github.com/w3c/csswg-drafts"},"css-syntax-3":{"authors":["Tab Atkins Jr.","Simon Sapin"],"href":"https://www.w3.org/TR/css-syntax-3/","title":"CSS Syntax Module Level 3","rawDate":"2021-12-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20030813":{"authors":["David Baron"],"href":"https://www.w3.org/TR/2003/WD-css3-syntax-20030813","title":"CSS3 module: Syntax","rawDate":"2003-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130919":{"authors":["Tab Atkins Jr.","Simon Sapin"],"href":"https://www.w3.org/TR/2013/WD-css-syntax-3-20130919/","title":"CSS Syntax Module Level 3","rawDate":"2013-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Tab Atkins Jr.","Simon Sapin"],"href":"https://www.w3.org/TR/2013/WD-css-syntax-3-20131105/","title":"CSS Syntax Module Level 3","rawDate":"2013-11-05","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140220":{"authors":["Tab Atkins Jr.","Simon Sapin"],"href":"https://www.w3.org/TR/2014/CR-css-syntax-3-20140220/","title":"CSS Syntax Module Level 3","rawDate":"2014-02-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190716":{"authors":["Tab Atkins Jr.","Simon Sapin"],"href":"https://www.w3.org/TR/2019/CR-css-syntax-3-20190716/","title":"CSS Syntax Module Level 3","rawDate":"2019-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Tab Atkins Jr.","Simon Sapin"],"href":"https://www.w3.org/TR/2021/CRD-css-syntax-3-20211224/","title":"CSS Syntax Module Level 3","rawDate":"2021-12-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-syntax/","repository":"https://github.com/w3c/csswg-drafts"},"css-tables-3":{"authors":["François Remy","Greg Whitworth","David Baron"],"href":"https://www.w3.org/TR/css-tables-3/","title":"CSS Table Module Level 3","rawDate":"2019-07-27","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-tables-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161025":{"authors":["François Remy","Greg Whitworth"],"href":"https://www.w3.org/TR/2016/WD-css-tables-3-20161025/","title":"CSS Table Module Level 3","rawDate":"2016-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170307":{"authors":["Greg Whitworth"],"href":"https://www.w3.org/TR/2017/WD-css-tables-3-20170307/","title":"CSS Table Module Level 3","rawDate":"2017-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190727":{"authors":["François Remy","Greg Whitworth","David Baron"],"href":"https://www.w3.org/TR/2019/WD-css-tables-3-20190727/","title":"CSS Table Module Level 3","rawDate":"2019-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-template-3":{"authors":["Bert Bos","César Acebal"],"href":"https://www.w3.org/TR/css-template-3/","title":"CSS Template Layout Module","rawDate":"2015-03-26","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-template/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20051215":{"status":"WD","rawDate":"2005-12-15","href":"https://www.w3.org/TR/2005/WD-css3-layout-20051215","source":"./data/w3c-specs.txt"},"20070809":{"status":"WD","rawDate":"2007-08-09","href":"https://www.w3.org/TR/2007/WD-css3-layout-20070809","source":"./data/w3c-specs.txt"},"20090402":{"status":"WD","rawDate":"2009-04-02","href":"https://www.w3.org/TR/2009/WD-css3-layout-20090402","source":"./data/w3c-specs.txt"},"20100429":{"status":"WD","rawDate":"2010-04-29","href":"https://www.w3.org/TR/2010/WD-css3-layout-20100429","source":"./data/w3c-specs.txt"},"20111129":{"authors":["Bert Bos","César Acebal"],"href":"https://www.w3.org/TR/2011/WD-css3-layout-20111129/","title":"CSS Template Layout Module","rawDate":"2011-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150326":{"authors":["Bert Bos","César Acebal"],"href":"https://www.w3.org/TR/2015/NOTE-css-template-3-20150326/","title":"CSS Template Layout Module","rawDate":"2015-03-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-text-3":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/css-text-3/","title":"CSS Text Module Level 3","rawDate":"2023-09-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990127":{"status":"WD","rawDate":"1999-01-27","href":"https://www.w3.org/TR/1999/WD-i18n-format-19990127","source":"./data/w3c-specs.txt"},"19990322":{"status":"WD","rawDate":"1999-03-22","href":"https://www.w3.org/TR/1999/WD-i18n-format-19990322","source":"./data/w3c-specs.txt"},"19990726":{"status":"WD","rawDate":"1999-07-26","href":"https://www.w3.org/TR/1999/WD-i18n-format-19990726","source":"./data/w3c-specs.txt"},"19990910":{"status":"WD","rawDate":"1999-09-10","href":"https://www.w3.org/TR/1999/WD-i18n-format-19990910/","source":"./data/w3c-specs.txt"},"20010517":{"status":"WD","rawDate":"2001-05-17","href":"https://www.w3.org/TR/2001/WD-css3-text-20010517/","source":"./data/w3c-specs.txt"},"20020515":{"status":"WD","rawDate":"2002-05-15","href":"https://www.w3.org/TR/2002/WD-css3-text-20020515","source":"./data/w3c-specs.txt"},"20021024":{"status":"WD","rawDate":"2002-10-24","href":"https://www.w3.org/TR/2002/WD-css3-text-20021024","source":"./data/w3c-specs.txt"},"20030226":{"status":"WD","rawDate":"2003-02-26","href":"https://www.w3.org/TR/2003/WD-css3-text-20030226","source":"./data/w3c-specs.txt"},"20030514":{"status":"CR","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/CR-css3-text-20030514","source":"./data/w3c-specs.txt"},"20050627":{"status":"WD","rawDate":"2005-06-27","href":"https://www.w3.org/TR/2005/WD-css3-text-20050627/","source":"./data/w3c-specs.txt"},"20070306":{"status":"WD","rawDate":"2007-03-06","href":"https://www.w3.org/TR/2007/WD-css3-text-20070306/","source":"./data/w3c-specs.txt"},"20101005":{"status":"WD","rawDate":"2010-10-05","href":"https://www.w3.org/TR/2010/WD-css3-text-20101005/","source":"./data/w3c-specs.txt"},"20110215":{"status":"WD","rawDate":"2011-02-15","href":"https://www.w3.org/TR/2011/WD-css3-text-20110215/","source":"./data/w3c-specs.txt"},"20110412":{"status":"WD","rawDate":"2011-04-12","href":"https://www.w3.org/TR/2011/WD-css3-text-20110412/","source":"./data/w3c-specs.txt"},"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-css3-text-20110901/","source":"./data/w3c-specs.txt"},"20120119":{"status":"WD","rawDate":"2012-01-19","href":"https://www.w3.org/TR/2012/WD-css3-text-20120119/","source":"./data/w3c-specs.txt"},"20120814":{"status":"WD","rawDate":"2012-08-14","href":"https://www.w3.org/TR/2012/WD-css3-text-20120814/","source":"./data/w3c-specs.txt"},"20121113":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2012/WD-css3-text-20121113/","title":"CSS Text Module Level 3","rawDate":"2012-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131010":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2013/WD-css-text-3-20131010/","title":"CSS Text Module Level 3","rawDate":"2013-10-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170822":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2017/WD-css-text-3-20170822/","title":"CSS Text Module Level 3","rawDate":"2017-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180920":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2018/WD-css-text-3-20180920/","title":"CSS Text Module Level 3","rawDate":"2018-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181212":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/WD-css-text-3-20181212/","title":"CSS Text Module Level 3","rawDate":"2018-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191113":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/WD-css-text-3-20191113/","title":"CSS Text Module Level 3","rawDate":"2019-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200429":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/WD-css-text-3-20200429/","title":"CSS Text Module Level 3","rawDate":"2020-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201119":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/WD-css-text-3-20201119/","title":"CSS Text Module Level 3","rawDate":"2020-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2020/CR-css-text-3-20201222/","title":"CSS Text Module Level 3","rawDate":"2020-12-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210316":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/CRD-css-text-3-20210316/","title":"CSS Text Module Level 3","rawDate":"2021-03-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210422":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2021/CRD-css-text-3-20210422/","title":"CSS Text Module Level 3","rawDate":"2021-04-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/CRD-css-text-3-20220505/","title":"CSS Text Module Level 3","rawDate":"2022-05-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230127":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/CRD-css-text-3-20230127/","title":"CSS Text Module Level 3","rawDate":"2023-01-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230213":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/CRD-css-text-3-20230213/","title":"CSS Text Module Level 3","rawDate":"2023-02-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230903":{"authors":["Elika Etemad","Koji Ishii","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/CRD-css-text-3-20230903/","title":"CSS Text Module Level 3","rawDate":"2023-09-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-text-3/","repository":"https://github.com/w3c/csswg-drafts"},"css-text-4":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/css-text-4/","title":"CSS Text Module Level 4","rawDate":"2023-10-20","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-text-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150922":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns"],"href":"https://www.w3.org/TR/2015/WD-css-text-4-20150922/","title":"CSS Text Module Level 4","rawDate":"2015-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180920":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns"],"href":"https://www.w3.org/TR/2018/WD-css-text-4-20180920/","title":"CSS Text Module Level 4","rawDate":"2018-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191113":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2019/WD-css-text-4-20191113/","title":"CSS Text Module Level 4","rawDate":"2019-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220318":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/WD-css-text-4-20220318/","title":"CSS Text Module Level 4","rawDate":"2022-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/WD-css-text-4-20220505/","title":"CSS Text Module Level 4","rawDate":"2022-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221231":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2022/WD-css-text-4-20221231/","title":"CSS Text Module Level 4","rawDate":"2022-12-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230301":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/WD-css-text-4-20230301/","title":"CSS Text Module Level 4","rawDate":"2023-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/WD-css-text-4-20230329/","title":"CSS Text Module Level 4","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231020":{"authors":["Elika Etemad","Koji Ishii","Alan Stearns","Florian Rivoal"],"href":"https://www.w3.org/TR/2023/WD-css-text-4-20231020/","title":"CSS Text Module Level 4","rawDate":"2023-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-text-decor-3":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/css-text-decor-3/","title":"CSS Text Decoration Module Level 3","rawDate":"2022-05-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121113":{"status":"WD","rawDate":"2012-11-13","href":"https://www.w3.org/TR/2012/WD-css-text-decor-3-20121113/","source":"./data/w3c-specs.txt"},"20130103":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2013/WD-css-text-decor-3-20130103/","title":"CSS Text Decoration Module Level 3","rawDate":"2013-01-03","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130801":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2013/CR-css-text-decor-3-20130801/","title":"CSS Text Decoration Module Level 3","rawDate":"2013-08-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180703":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2018/CR-css-text-decor-3-20180703/","title":"CSS Text Decoration Module Level 3","rawDate":"2018-07-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190813":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2019/CR-css-text-decor-3-20190813/","title":"CSS Text Decoration Module Level 3","rawDate":"2019-08-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2022/CRD-css-text-decor-3-20220505/","title":"CSS Text Decoration Module Level 3","rawDate":"2022-05-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-text-decor-3/","repository":"https://github.com/w3c/csswg-drafts"},"css-text-decor-4":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/css-text-decor-4/","title":"CSS Text Decoration Module Level 4","rawDate":"2022-05-04","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-text-decor-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180313":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2018/WD-css-text-decor-4-20180313/","title":"CSS Text Decoration Module Level 4","rawDate":"2018-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200506":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2020/WD-css-text-decor-4-20200506/","title":"CSS Text Decoration Module Level 4","rawDate":"2020-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2022/WD-css-text-decor-4-20220504/","title":"CSS Text Decoration Module Level 4","rawDate":"2022-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-timing-1":{"aliasOf":"css-easing-1"},"css-transforms-1":{"authors":["Simon Fraser","Dean Jackson","Theresa O'Connor","Dirk Schulze"],"href":"https://www.w3.org/TR/css-transforms-1/","title":"CSS Transforms Module Level 1","rawDate":"2019-02-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120228":{"status":"WD","rawDate":"2012-02-28","href":"https://www.w3.org/TR/2012/WD-css3-transforms-20120228/","source":"./data/w3c-specs.txt"},"20120403":{"status":"WD","rawDate":"2012-04-03","href":"https://www.w3.org/TR/2012/WD-css3-transforms-20120403/","source":"./data/w3c-specs.txt"},"20120911":{"authors":["Simon Fraser","Dean Jackson","Theresa O'Connor","Dirk Schulze","Aryeh Gregor"],"href":"https://www.w3.org/TR/2012/WD-css3-transforms-20120911/","title":"CSS Transforms","rawDate":"2012-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131126":{"authors":["Simon Fraser","Dean Jackson","Theresa O'Connor","Dirk Schulze"],"href":"https://www.w3.org/TR/2013/WD-css-transforms-1-20131126/","title":"CSS Transforms Module Level 1","rawDate":"2013-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171130":{"authors":["Simon Fraser","Dean Jackson","Theresa O'Connor","Dirk Schulze"],"href":"https://www.w3.org/TR/2017/WD-css-transforms-1-20171130/","title":"CSS Transforms Module Level 1","rawDate":"2017-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181130":{"authors":["Simon Fraser","Dean Jackson","Theresa O'Connor","Dirk Schulze"],"href":"https://www.w3.org/TR/2018/WD-css-transforms-1-20181130/","title":"CSS Transforms Module Level 1","rawDate":"2018-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190214":{"authors":["Simon Fraser","Dean Jackson","Theresa O'Connor","Dirk Schulze"],"href":"https://www.w3.org/TR/2019/CR-css-transforms-1-20190214/","title":"CSS Transforms Module Level 1","rawDate":"2019-02-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-transforms/","obsoletes":["css3-2d-transforms"],"repository":"https://github.com/w3c/csswg-drafts"},"css-transforms-2":{"authors":["Tab Atkins Jr.","David Baron","Simon Fraser","Dean Jackson","Theresa O'Connor"],"href":"https://www.w3.org/TR/css-transforms-2/","title":"CSS Transforms Module Level 2","rawDate":"2021-11-09","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-transforms-2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200303":{"authors":["Tab Atkins Jr.","Simon Fraser","Dean Jackson","Theresa O'Connor"],"href":"https://www.w3.org/TR/2020/WD-css-transforms-2-20200303/","title":"CSS Transforms Module Level 2","rawDate":"2020-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211109":{"authors":["Tab Atkins Jr.","David Baron","Simon Fraser","Dean Jackson","Theresa O'Connor"],"href":"https://www.w3.org/TR/2021/WD-css-transforms-2-20211109/","title":"CSS Transforms Module Level 2","rawDate":"2021-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts","obsoletes":["css3-3d-transforms"]},"css-transitions-1":{"authors":["David Baron","Dean Jackson","Brian Birtles","David Hyatt"],"href":"https://www.w3.org/TR/css-transitions-1/","title":"CSS Transitions","rawDate":"2018-10-11","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-transitions/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090320":{"status":"WD","rawDate":"2009-03-20","href":"https://www.w3.org/TR/2009/WD-css3-transitions-20090320","source":"./data/w3c-specs.txt"},"20091201":{"status":"WD","rawDate":"2009-12-01","href":"https://www.w3.org/TR/2009/WD-css3-transitions-20091201/","source":"./data/w3c-specs.txt"},"20120403":{"status":"WD","rawDate":"2012-04-03","href":"https://www.w3.org/TR/2012/WD-css3-transitions-20120403/","source":"./data/w3c-specs.txt"},"20130212":{"authors":["Dean Jackson","David Hyatt","Chris Marrin","David Baron"],"href":"https://www.w3.org/TR/2013/WD-css3-transitions-20130212/","title":"CSS Transitions","rawDate":"2013-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131119":{"authors":["Dean Jackson","David Hyatt","Chris Marrin","David Baron"],"href":"https://www.w3.org/TR/2013/WD-css3-transitions-20131119/","title":"CSS Transitions","rawDate":"2013-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171130":{"authors":["David Baron","Dean Jackson","Brian Birtles"],"href":"https://www.w3.org/TR/2017/WD-css-transitions-1-20171130/","title":"CSS Transitions","rawDate":"2017-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["David Baron","Dean Jackson","Brian Birtles","David Hyatt"],"href":"https://www.w3.org/TR/2018/WD-css-transitions-1-20181011/","title":"CSS Transitions","rawDate":"2018-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-transitions-2":{"authors":["David Baron","Brian Birtles"],"href":"https://www.w3.org/TR/css-transitions-2/","title":"CSS Transitions Level 2","rawDate":"2023-09-05","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-transitions-2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230905":{"authors":["David Baron","Brian Birtles"],"href":"https://www.w3.org/TR/2023/WD-css-transitions-2-20230905/","title":"CSS Transitions Level 2","rawDate":"2023-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-tv":{"authors":["Sean Hayes","Glenn Adams","Tantek Çelik","Håkon Wium Lie"],"etAl":true,"href":"https://www.w3.org/TR/css-tv/","title":"CSS TV Profile 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20011221":{"status":"WD","rawDate":"2001-12-21","href":"https://www.w3.org/TR/2001/WD-css-tv-20011221","source":"./data/w3c-specs.txt"},"20020515":{"status":"WD","rawDate":"2002-05-15","href":"https://www.w3.org/TR/2002/WD-css-tv-20020515","source":"./data/w3c-specs.txt"},"20020807":{"status":"CR","rawDate":"2002-08-07","href":"https://www.w3.org/TR/2002/CR-css-tv-20020807","source":"./data/w3c-specs.txt"},"20030514":{"authors":["Sean Hayes","Glenn Adams","Tantek Çelik","Håkon Wium Lie"],"href":"https://www.w3.org/TR/2003/CR-css-tv-20030514","title":"CSS TV Profile 1.0","rawDate":"2003-05-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Sean Hayes","Glenn Adams","Tantek Çelik","Håkon Wium Lie"],"href":"https://www.w3.org/TR/2014/NOTE-css-tv-20141014/","title":"CSS TV Profile 1.0","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css-typed-om-1":{"authors":["Shane Stephens","Tab Atkins Jr.","Naina Raisinghani"],"href":"https://www.w3.org/TR/css-typed-om-1/","title":"CSS Typed OM Level 1","rawDate":"2018-04-10","status":"WD","publisher":"W3C","edDraft":"https://drafts.css-houdini.org/css-typed-om-1/","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160607":{"authors":["Shane Stephens"],"href":"https://www.w3.org/TR/2016/WD-css-typed-om-1-20160607/","title":"CSS Typed OM Level 1","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170801":{"authors":["Shane Stephens","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-css-typed-om-1-20170801/","title":"CSS Typed OM Level 1","rawDate":"2017-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180410":{"authors":["Shane Stephens","Tab Atkins Jr.","Naina Raisinghani"],"href":"https://www.w3.org/TR/2018/WD-css-typed-om-1-20180410/","title":"CSS Typed OM Level 1","rawDate":"2018-04-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"css-ui-3":{"authors":["Tantek Çelik","Florian Rivoal"],"href":"https://www.w3.org/TR/css-ui-3/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2018-06-21","status":"REC","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-ui-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20020802":{"status":"WD","rawDate":"2002-08-02","href":"https://www.w3.org/TR/2002/WD-css3-ui-20020802","source":"./data/w3c-specs.txt"},"20030703":{"status":"WD","rawDate":"2003-07-03","href":"https://www.w3.org/TR/2003/WD-css3-ui-20030703","source":"./data/w3c-specs.txt"},"20040511":{"status":"CR","rawDate":"2004-05-11","href":"https://www.w3.org/TR/2004/CR-css3-ui-20040511","source":"./data/w3c-specs.txt"},"20120117":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2012/WD-css3-ui-20120117/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2012-01-17","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150224":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2015/WD-css3-ui-20150224/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2015-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150310":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2015/WD-css3-ui-20150310/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2015-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150409":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2015/WD-css3-ui-20150409/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150519":{"authors":["Tantek Çelik","Florian Rivoal"],"href":"https://www.w3.org/TR/2015/WD-css3-ui-20150519/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2015-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150707":{"authors":["Tantek Çelik","Florian Rivoal"],"href":"https://www.w3.org/TR/2015/CR-css-ui-3-20150707/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2015-07-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170302":{"authors":["Tantek Çelik","Florian Rivoal"],"href":"https://www.w3.org/TR/2017/CR-css-ui-3-20170302/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2017-03-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Tantek Çelik","Florian Rivoal"],"href":"https://www.w3.org/TR/2017/PR-css-ui-3-20171214/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2017-12-14","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180621":{"authors":["Tantek Çelik","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/REC-css-ui-3-20180621/","title":"CSS Basic User Interface Module Level 3 (CSS3 UI)","rawDate":"2018-06-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2018/REC-css-ui-3-20180621-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletes":["css3-userint"],"repository":"https://github.com/w3c/csswg-drafts","hasErrata":"https://www.w3.org/Style/2018/REC-css-ui-3-20180621-errata.html"},"css-ui-4":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/css-ui-4/","title":"CSS Basic User Interface Module Level 4","rawDate":"2021-03-16","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-ui-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150922":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2015/WD-css-ui-4-20150922/","title":"CSS Basic User Interface Module Level 4","rawDate":"2015-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171222":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2017/WD-css-ui-4-20171222/","title":"CSS Basic User Interface Module Level 4","rawDate":"2017-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200124":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2020/WD-css-ui-4-20200124/","title":"CSS Basic User Interface Module Level 4","rawDate":"2020-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210316":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2021/WD-css-ui-4-20210316/","title":"CSS Basic User Interface Module Level 4","rawDate":"2021-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-values":{"aliasOf":"css-values-3"},"css-values-3":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/css-values-3/","title":"CSS Values and Units Module Level 3","rawDate":"2022-12-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010713":{"status":"WD","rawDate":"2001-07-13","href":"https://www.w3.org/TR/2001/WD-css3-values-20010713/","source":"./data/w3c-specs.txt"},"20050726":{"status":"WD","rawDate":"2005-07-26","href":"https://www.w3.org/TR/2005/WD-css3-values-20050726","source":"./data/w3c-specs.txt"},"20060919":{"status":"WD","rawDate":"2006-09-19","href":"https://www.w3.org/TR/2006/WD-css3-values-20060919","source":"./data/w3c-specs.txt"},"20110906":{"status":"WD","rawDate":"2011-09-06","href":"https://www.w3.org/TR/2011/WD-css3-values-20110906/","source":"./data/w3c-specs.txt"},"20120308":{"status":"WD","rawDate":"2012-03-08","href":"https://www.w3.org/TR/2012/WD-css3-values-20120308/","source":"./data/w3c-specs.txt"},"20120828":{"status":"CR","rawDate":"2012-08-28","href":"https://www.w3.org/TR/2012/CR-css3-values-20120828/","source":"./data/w3c-specs.txt"},"20130404":{"authors":["Håkon Wium Lie","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2013/CR-css3-values-20130404/","title":"CSS Values and Units Module Level 3","rawDate":"2013-04-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130730":{"authors":["Håkon Wium Lie","Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2013/CR-css3-values-20130730/","title":"CSS Values and Units Module Level 3","rawDate":"2013-07-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150611":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2015/CR-css-values-3-20150611/","title":"CSS Values and Units Module Level 3","rawDate":"2015-06-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160929":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2016/CR-css-values-3-20160929/","title":"CSS Values and Units Module Level 3","rawDate":"2016-09-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180814":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/CR-css-values-3-20180814/","title":"CSS Values and Units Module Level 3","rawDate":"2018-08-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190131":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/CR-css-values-3-20190131/","title":"CSS Values and Units Module Level 3","rawDate":"2019-01-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190606":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/CR-css-values-3-20190606/","title":"CSS Values and Units Module Level 3","rawDate":"2019-06-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221201":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2022/CR-css-values-3-20221201/","title":"CSS Values and Units Module Level 3","rawDate":"2022-12-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-values-3/","repository":"https://github.com/w3c/csswg-drafts"},"css-values-4":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/css-values-4/","title":"CSS Values and Units Module Level 4","rawDate":"2023-12-18","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-values-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180814":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-values-4-20180814/","title":"CSS Values and Units Module Level 4","rawDate":"2018-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181010":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2018/WD-css-values-4-20181010/","title":"CSS Values and Units Module Level 4","rawDate":"2018-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190131":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2019/WD-css-values-4-20190131/","title":"CSS Values and Units Module Level 4","rawDate":"2019-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201111":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2020/WD-css-values-4-20201111/","title":"CSS Values and Units Module Level 4","rawDate":"2020-11-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/WD-css-values-4-20210715/","title":"CSS Values and Units Module Level 4","rawDate":"2021-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/WD-css-values-4-20210930/","title":"CSS Values and Units Module Level 4","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211016":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/WD-css-values-4-20211016/","title":"CSS Values and Units Module Level 4","rawDate":"2021-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2021/WD-css-values-4-20211216/","title":"CSS Values and Units Module Level 4","rawDate":"2021-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2022/WD-css-values-4-20221019/","title":"CSS Values and Units Module Level 4","rawDate":"2022-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2023/WD-css-values-4-20230406/","title":"CSS Values and Units Module Level 4","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231027":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2023/WD-css-values-4-20231027/","title":"CSS Values and Units Module Level 4","rawDate":"2023-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231218":{"authors":["Tab Atkins Jr.","Elika Etemad"],"href":"https://www.w3.org/TR/2023/WD-css-values-4-20231218/","title":"CSS Values and Units Module Level 4","rawDate":"2023-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-variables":{"aliasOf":"css-variables-1"},"css-variables-1":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-variables-1/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2022-06-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120410":{"status":"WD","rawDate":"2012-04-10","href":"https://www.w3.org/TR/2012/WD-css-variables-20120410/","source":"./data/w3c-specs.txt"},"20130312":{"authors":["Tab Atkins Jr.","Luke Macpherson","Daniel Glazman"],"href":"https://www.w3.org/TR/2013/WD-css-variables-20130312/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2013-03-12","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130620":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-css-variables-1-20130620/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2013-06-20","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140506":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-variables-1-20140506/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2014-05-06","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151203":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/CR-css-variables-1-20151203/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2015-12-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211111":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/CRD-css-variables-1-20211111/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2021-11-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220616":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/CR-css-variables-1-20220616/","title":"CSS Custom Properties for Cascading Variables Module Level 1","rawDate":"2022-06-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-variables/","repository":"https://github.com/w3c/csswg-drafts"},"css-view-transitions-1":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/css-view-transitions-1/","title":"CSS View Transitions Module Level 1","rawDate":"2023-09-05","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-view-transitions-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221025":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/2022/WD-css-view-transitions-1-20221025/","title":"CSS View Transitions Module Level 1","rawDate":"2022-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221124":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/2022/WD-css-view-transitions-1-20221124/","title":"CSS View Transitions Module Level 1","rawDate":"2022-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230525":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230525/","title":"CSS View Transitions Module Level 1","rawDate":"2023-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230530/","title":"CSS View Transitions Module Level 1","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230803":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/2023/WD-css-view-transitions-1-20230803/","title":"CSS View Transitions Module Level 1","rawDate":"2023-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230905":{"authors":["Tab Atkins Jr.","Jake Archibald","Khushal Sagar"],"href":"https://www.w3.org/TR/2023/CR-css-view-transitions-1-20230905/","title":"CSS View Transitions Module Level 1","rawDate":"2023-09-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css-viewport-1":{"authors":["Florian Rivoal","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/css-viewport-1/","title":"CSS Viewport Module Level 1","rawDate":"2024-01-25","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-viewport/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20240125":{"authors":["Florian Rivoal","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2024/WD-css-viewport-1-20240125/","title":"CSS Viewport Module Level 1","rawDate":"2024-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts","obsoletes":["css-device-adapt-1"]},"css-will-change-1":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/css-will-change-1/","title":"CSS Will Change Module Level 1","rawDate":"2022-05-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140429":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-css-will-change-1-20140429/","title":"CSS Will Change Module Level 1","rawDate":"2014-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151203":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/CR-css-will-change-1-20151203/","title":"CSS Will Change Module Level 1","rawDate":"2015-12-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/CRD-css-will-change-1-20220505/","title":"CSS Will Change Module Level 1","rawDate":"2022-05-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-will-change/","repository":"https://github.com/w3c/csswg-drafts"},"css-writing-modes-3":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/css-writing-modes-3/","title":"CSS Writing Modes Level 3","rawDate":"2019-12-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20101202":{"status":"WD","rawDate":"2010-12-02","href":"https://www.w3.org/TR/2010/WD-css3-writing-modes-20101202/","source":"./data/w3c-specs.txt"},"20110201":{"status":"WD","rawDate":"2011-02-01","href":"https://www.w3.org/TR/2011/WD-css3-writing-modes-20110201","source":"./data/w3c-specs.txt"},"20110428":{"status":"WD","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/WD-css3-writing-modes-20110428","source":"./data/w3c-specs.txt"},"20110531":{"status":"WD","rawDate":"2011-05-31","href":"https://www.w3.org/TR/2011/WD-css3-writing-modes-20110531/","source":"./data/w3c-specs.txt"},"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-css3-writing-modes-20110901/","source":"./data/w3c-specs.txt"},"20120501":{"status":"WD","rawDate":"2012-05-01","href":"https://www.w3.org/TR/2012/WD-css3-writing-modes-20120501/","source":"./data/w3c-specs.txt"},"20121115":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2012/WD-css3-writing-modes-20121115/","title":"CSS Writing Modes Module Level 3","rawDate":"2012-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131024":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2013/WD-css-writing-modes-3-20131024/","title":"CSS Writing Modes Level 3","rawDate":"2013-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131126":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2013/WD-css-writing-modes-3-20131126/","title":"CSS Writing Modes Level 3","rawDate":"2013-11-26","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140320":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2014/CR-css-writing-modes-3-20140320/","title":"CSS Writing Modes Level 3","rawDate":"2014-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2015/CR-css-writing-modes-3-20151215/","title":"CSS Writing Modes Level 3","rawDate":"2015-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171207":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2017/CR-css-writing-modes-3-20171207/","title":"CSS Writing Modes Level 3","rawDate":"2017-12-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180524":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2018/CR-css-writing-modes-3-20180524/","title":"CSS Writing Modes Level 3","rawDate":"2018-05-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190730":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2019/CR-css-writing-modes-3-20190730/","title":"CSS Writing Modes Level 3","rawDate":"2019-07-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190903":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2019/CR-css-writing-modes-3-20190903/","title":"CSS Writing Modes Level 3","rawDate":"2019-09-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191024":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2019/PR-css-writing-modes-3-20191024/","title":"CSS Writing Modes Level 3","rawDate":"2019-10-24","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191210":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2019/REC-css-writing-modes-3-20191210/","title":"CSS Writing Modes Level 3","rawDate":"2019-12-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2019/REC-css-writing-modes-3-20191210-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-writing-modes-3/","repository":"https://github.com/w3c/csswg-drafts","hasErrata":"https://www.w3.org/Style/2019/REC-css-writing-modes-3-20191210-errata.html"},"css-writing-modes-4":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/css-writing-modes-4/","title":"CSS Writing Modes Level 4","rawDate":"2019-07-30","status":"CR","publisher":"W3C","edDraft":"https://drafts.csswg.org/css-writing-modes-4/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20171207":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2017/WD-css-writing-modes-4-20171207/","title":"CSS Writing Modes Level 4","rawDate":"2017-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180524":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2018/CR-css-writing-modes-4-20180524/","title":"CSS Writing Modes Level 4","rawDate":"2018-05-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190730":{"authors":["Elika Etemad","Koji Ishii"],"href":"https://www.w3.org/TR/2019/CR-css-writing-modes-4-20190730/","title":"CSS Writing Modes Level 4","rawDate":"2019-07-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"css3-2d-transforms":{"authors":["Simon Fraser","Dean Jackson","David Hyatt","Chris Marrin","Theresa O'Connor"],"href":"https://www.w3.org/TR/css3-2d-transforms/","title":"CSS 2D Transforms","rawDate":"2011-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090320":{"status":"WD","rawDate":"2009-03-20","href":"https://www.w3.org/TR/2009/WD-css3-2d-transforms-20090320","source":"./data/w3c-specs.txt"},"20091201":{"status":"WD","rawDate":"2009-12-01","href":"https://www.w3.org/TR/2009/WD-css3-2d-transforms-20091201/","source":"./data/w3c-specs.txt"},"20111215":{"authors":["Simon Fraser","Dean Jackson","David Hyatt","Chris Marrin","Theresa O'Connor"],"href":"https://www.w3.org/TR/2011/WD-css3-2d-transforms-20111215/","title":"CSS 2D Transforms","rawDate":"2011-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletedBy":["css-transforms-1"]},"css3-3d-transforms":{"authors":["Dean Jackson","David Hyatt","Chris Marrin"],"href":"https://www.w3.org/TR/css3-3d-transforms/","title":"CSS 3D Transforms Module Level 3","rawDate":"2009-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090320":{"authors":["Dean Jackson","David Hyatt","Chris Marrin"],"href":"https://www.w3.org/TR/2009/WD-css3-3d-transforms-20090320/","title":"CSS 3D Transforms Module Level 3","rawDate":"2009-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletedBy":["css-transforms-2"],"edDraft":"https://drafts.csswg.org/css-transforms-2/","repository":"https://github.com/w3c/csswg-drafts"},"css3-align":{"aliasOf":"css-align-3"},"css3-animations":{"aliasOf":"css-animations-1"},"css3-background":{"aliasOf":"css-backgrounds-3"},"css3-border":{"authors":["Tapas Roy"],"href":"https://www.w3.org/TR/css3-border/","title":"CSS3 module: Border","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20021107":{"authors":["Tapas Roy"],"href":"https://www.w3.org/TR/2002/WD-css3-border-20021107/","title":"CSS3 module: Border","rawDate":"2002-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-11-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["css-backgrounds-3"]},"css3-box":{"aliasOf":"css-box-3"},"css3-break":{"aliasOf":"css-break-3"},"css3-cascade":{"aliasOf":"css-cascade-3"},"css3-color":{"aliasOf":"css-color-3"},"css3-conditional":{"aliasOf":"css-conditional-3"},"css3-content":{"aliasOf":"css-content-3"},"css3-exclusions":{"authors":["Rossen Atanassov","Vincent Hardy","Alan Stearns"],"href":"https://www.w3.org/TR/css3-exclusions/","title":"CSS Exclusions Module Level 1","rawDate":"2015-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-css3-exclusions-20111213/","source":"./data/w3c-specs.txt"},"20120503":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2012/WD-css3-exclusions-20120503/","title":"CSS Exclusions and Shapes Module Level 3","rawDate":"2012-05-03","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Vincent Hardy","Rossen Atanassov","Alan Stearns"],"href":"https://www.w3.org/TR/2013/WD-css3-exclusions-20130528/","title":"CSS Exclusions Module Level 1","rawDate":"2013-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150115":{"authors":["Rossen Atanassov","Vincent Hardy","Alan Stearns"],"href":"https://www.w3.org/TR/2015/WD-css3-exclusions-20150115/","title":"CSS Exclusions Module Level 1","rawDate":"2015-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/css-exclusions/","repository":"https://github.com/w3c/csswg-drafts"},"css3-flexbox":{"aliasOf":"css-flexbox-1"},"css3-fonts":{"aliasOf":"css-fonts-3"},"css3-gcpm":{"aliasOf":"css-gcpm-3"},"css3-grid":{"authors":["Alex Mogilevsky","Markus Mielke"],"href":"https://www.w3.org/TR/css3-grid","title":"CSS Grid Positioning Module Level 3","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"versions":{"20070905":{"authors":["Alex Mogilevsky","Markus Mielke"],"href":"https://www.w3.org/TR/2007/WD-css3-grid-20070905","title":"CSS Grid Positioning Module Level 3","rawDate":"2007-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-09-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["css-grid-1"]},"css3-grid-layout":{"aliasOf":"css-grid-1"},"css3-hyperlinks":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/css3-hyperlinks/","title":"CSS3 Hyperlink Presentation Module","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20040224":{"authors":["Tantek Çelik","Bert Bos","Daniel Glazman"],"href":"https://www.w3.org/TR/2004/WD-css3-hyperlinks-20040224","title":"CSS3 Hyperlink Presentation Module","rawDate":"2004-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2014/NOTE-css3-hyperlinks-20141014/","title":"CSS3 Hyperlink Presentation Module","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css3-iccprof":{"aliasOf":"css-color-3"},"css3-images":{"aliasOf":"css-images-3"},"css3-layout":{"aliasOf":"css-template-3"},"css3-linebox":{"authors":["Michel Suignard","Eric Meyer"],"href":"https://www.w3.org/TR/css3-linebox/","title":"CSS3 module: line","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20020515":{"authors":["Michel Suignard","Eric Meyer"],"href":"https://www.w3.org/TR/2002/WD-css3-linebox-20020515/","title":"CSS3 module: line","rawDate":"2002-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-05-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["css-inline-3"]},"css3-lists":{"aliasOf":"css-lists-3"},"css3-marquee":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/css3-marquee/","title":"CSS Marquee Module Level 3","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20080801":{"status":"WD","rawDate":"2008-08-01","href":"https://www.w3.org/TR/2008/WD-css3-marquee-20080801","source":"./data/w3c-specs.txt"},"20081205":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2008/CR-css3-marquee-20081205","title":"CSS Marquee Module Level 3","rawDate":"2008-12-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2014/NOTE-css3-marquee-20141014/","title":"CSS Marquee Module Level 3","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css3-mediaqueries":{"aliasOf":"mediaqueries-3"},"css3-multicol":{"aliasOf":"css-multicol-1"},"css3-namespace":{"aliasOf":"css-namespaces-3"},"css3-page":{"aliasOf":"css-page-3"},"css3-positioning":{"aliasOf":"css-position-3"},"css3-preslev":{"authors":["Ian Hickson","Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/css3-preslev/","title":"CSS Presentation Levels Module","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20030813":{"authors":["Ian Hickson","Håkon Wium Lie"],"href":"https://www.w3.org/TR/2003/WD-css3-preslev-20030813","title":"CSS3 module: Presentation Levels","rawDate":"2003-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Ian Hickson","Håkon Wium Lie","Bert Bos"],"href":"https://www.w3.org/TR/2014/NOTE-css3-preslev-20141014/","title":"CSS Presentation Levels Module","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css3-reader":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/css3-reader/","title":"The CSS ‘Reader’ Media Type","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20040224":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2004/WD-css3-reader-20040224","title":"The CSS 'Reader' Media Type","rawDate":"2004-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2014/NOTE-css3-reader-20141014/","title":"The CSS ‘Reader’ Media Type","rawDate":"2014-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"css3-regions":{"aliasOf":"css-regions-1"},"css3-roadmap":{"authors":["Eric Meyer","Bert Bos"],"href":"https://www.w3.org/TR/css3-roadmap/","title":"CSS3 introduction","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"versions":{"20000414":{"status":"WD","rawDate":"2000-04-14","href":"https://www.w3.org/TR/2000/WD-css3-roadmap-20000414","source":"./data/w3c-specs.txt"},"20010119":{"status":"WD","rawDate":"2001-01-19","href":"https://www.w3.org/TR/2001/WD-css3-roadmap-20010119","source":"./data/w3c-specs.txt"},"20010406":{"status":"WD","rawDate":"2001-04-06","href":"https://www.w3.org/TR/2001/WD-css3-roadmap-20010406/","source":"./data/w3c-specs.txt"},"20010523":{"authors":["Eric Meyer","Bert Bos"],"href":"https://www.w3.org/TR/2001/WD-css3-roadmap-20010523/","title":"CSS3 introduction","rawDate":"2001-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-05-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["css-beijing"]},"css3-ruby":{"aliasOf":"css-ruby-1"},"css3-selectors":{"aliasOf":"selectors-3"},"css3-sizing":{"aliasOf":"css-sizing-3"},"css3-speech":{"aliasOf":"css-speech-1"},"css3-syntax":{"aliasOf":"css-syntax-3"},"css3-text":{"aliasOf":"css-text-3"},"css3-transforms":{"aliasOf":"css-transforms-1"},"css3-transitions":{"aliasOf":"css-transitions-1"},"css3-ui":{"aliasOf":"css-ui-3"},"css3-userint":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/css3-userint","title":"User Interface for CSS3","rawDate":"2002-08-02","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20000216":{"status":"WD","rawDate":"2000-02-16","href":"https://www.w3.org/TR/2000/WD-css3-userint-20000216","source":"./data/w3c-specs.txt"},"20020802":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2002/WD-css3-userint-20020802","title":"User Interface for CSS3","rawDate":"2002-08-02","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"obsoletedBy":["css-ui-3"],"status":"WD"},"css3-values":{"aliasOf":"css-values-3"},"css3-webfonts":{"aliasOf":"css-fonts-3"},"css3-writing-modes":{"aliasOf":"css-writing-modes-3"},"css4-images":{"aliasOf":"css-images-4"},"cssom":{"aliasOf":"cssom-1"},"cssom-1":{"authors":["Daniel Glazman","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/cssom-1/","title":"CSS Object Model (CSSOM)","rawDate":"2021-08-26","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/cssom/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110712":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2011/WD-cssom-20110712/","title":"CSSOM","rawDate":"2011-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131205":{"authors":["Simon Pieters","Glenn Adams"],"href":"https://www.w3.org/TR/2013/WD-cssom-20131205/","title":"CSS Object Model (CSSOM)","rawDate":"2013-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Simon Pieters","Glenn Adams"],"href":"https://www.w3.org/TR/2016/WD-cssom-1-20160317/","title":"CSS Object Model (CSSOM)","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Daniel Glazman","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2021/WD-cssom-1-20210826/","title":"CSS Object Model (CSSOM)","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"cssom-view":{"aliasOf":"cssom-view-1"},"cssom-view-1":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/cssom-view-1/","title":"CSSOM View Module","rawDate":"2016-03-17","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/cssom-view/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20080222":{"status":"WD","rawDate":"2008-02-22","href":"https://www.w3.org/TR/2008/WD-cssom-view-20080222/","source":"./data/w3c-specs.txt"},"20090804":{"status":"WD","rawDate":"2009-08-04","href":"https://www.w3.org/TR/2009/WD-cssom-view-20090804/","source":"./data/w3c-specs.txt"},"20110804":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2011/WD-cssom-view-20110804/","title":"CSSOM View Module","rawDate":"2011-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Simon Pieters","Glenn Adams"],"href":"https://www.w3.org/TR/2013/WD-cssom-view-20131217/","title":"CSSOM View Module","rawDate":"2013-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2016/WD-cssom-view-1-20160317/","title":"CSSOM View Module","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"csv2json":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/csv2json/","title":"Generating JSON from Tabular Data on the Web","rawDate":"2015-12-17","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/csvw/csv2json/","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150108":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/2015/WD-csv2json-20150108/","title":"Generating JSON from Tabular Data on the Web","rawDate":"2015-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150416":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/2015/WD-csv2json-20150416/","title":"Generating JSON from Tabular Data on the Web","rawDate":"2015-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150716":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/2015/CR-csv2json-20150716/","title":"Generating JSON from Tabular Data on the Web","rawDate":"2015-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151117":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/2015/PR-csv2json-20151117/","title":"Generating JSON from Tabular Data on the Web","rawDate":"2015-11-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/2015/REC-csv2json-20151217/","title":"Generating JSON from Tabular Data on the Web","rawDate":"2015-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csvw"},"csv2rdf":{"authors":["Jeremy Tandy","Ivan Herman","Gregg Kellogg"],"href":"https://www.w3.org/TR/csv2rdf/","title":"Generating RDF from Tabular Data on the Web","rawDate":"2015-12-17","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/csvw/csv2rdf/","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150108":{"authors":["Jeremy Tandy","Ivan Herman"],"href":"https://www.w3.org/TR/2015/WD-csv2rdf-20150108/","title":"Generating RDF from Tabular Data on the Web","rawDate":"2015-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150416":{"authors":["Jeremy Tandy","Ivan Herman","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/WD-csv2rdf-20150416/","title":"Generating RDF from Tabular Data on the Web","rawDate":"2015-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150716":{"authors":["Jeremy Tandy","Ivan Herman","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/CR-csv2rdf-20150716/","title":"Generating RDF from Tabular Data on the Web","rawDate":"2015-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151117":{"authors":["Jeremy Tandy","Ivan Herman","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/PR-csv2rdf-20151117/","title":"Generating RDF from Tabular Data on the Web","rawDate":"2015-11-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Jeremy Tandy","Ivan Herman","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/REC-csv2rdf-20151217/","title":"Generating RDF from Tabular Data on the Web","rawDate":"2015-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csvw"},"csvw-html":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/csvw-html/","title":"Embedding Tabular Metadata in HTML","rawDate":"2016-02-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/csvw/html-note/","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160225":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2016/NOTE-csvw-html-20160225/","title":"Embedding Tabular Metadata in HTML","rawDate":"2016-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csvw"},"csvw-ucr":{"authors":["Jeremy Tandy","Davide Ceolin","Eric Stephan"],"href":"https://www.w3.org/TR/csvw-ucr/","title":"CSV on the Web: Use Cases and Requirements","rawDate":"2016-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140327":{"authors":["Jeremy Tandy","Davide Ceolin","Eric Stephan"],"href":"https://www.w3.org/TR/2014/WD-csvw-ucr-20140327/","title":"CSV on the Web: Use Cases and Requirements","rawDate":"2014-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140701":{"authors":["Jeremy Tandy","Davide Ceolin","Eric Stephan"],"href":"https://www.w3.org/TR/2014/WD-csvw-ucr-20140701/","title":"CSV on the Web: Use Cases and Requirements","rawDate":"2014-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Jeremy Tandy","Davide Ceolin","Eric Stephan"],"href":"https://www.w3.org/TR/2016/NOTE-csvw-ucr-20160225/","title":"CSV on the Web: Use Cases and Requirements","rawDate":"2016-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/csvw/use-cases-and-requirements/","repository":"https://github.com/w3c/csvw"},"ct-guidelines":{"authors":["Jo Rabin"],"href":"https://www.w3.org/TR/ct-guidelines/","title":"Guidelines for Web Content Transformation Proxies 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"versions":{"20080414":{"status":"WD","rawDate":"2008-04-14","href":"https://www.w3.org/TR/2008/WD-ct-guidelines-20080414/","source":"./data/w3c-specs.txt"},"20080801":{"status":"WD","rawDate":"2008-08-01","href":"https://www.w3.org/TR/2008/WD-ct-guidelines-20080801/","source":"./data/w3c-specs.txt"},"20091006":{"status":"WD","rawDate":"2009-10-06","href":"https://www.w3.org/TR/2009/WD-ct-guidelines-20091006/","source":"./data/w3c-specs.txt"},"20100211":{"status":"WD","rawDate":"2010-02-11","href":"https://www.w3.org/TR/2010/WD-ct-guidelines-20100211/","source":"./data/w3c-specs.txt"},"20100617":{"status":"CR","rawDate":"2010-06-17","href":"https://www.w3.org/TR/2010/CR-ct-guidelines-20100617/","source":"./data/w3c-specs.txt"},"20101026":{"authors":["Jo Rabin"],"href":"https://www.w3.org/TR/2010/NOTE-ct-guidelines-20101026/","title":"Guidelines for Web Content Transformation Proxies 1.0","rawDate":"2010-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-10-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"ct-landscape":{"authors":["Jo Rabin","Andrew Swainston"],"href":"https://www.w3.org/TR/ct-landscape/","title":"Content Transformation Landscape 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"versions":{"20071025":{"status":"WD","rawDate":"2007-10-25","href":"https://www.w3.org/TR/2007/WD-ct-landscape-20071025/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Jo Rabin","Andrew Swainston"],"href":"https://www.w3.org/TR/2009/NOTE-ct-landscape-20091027/","title":"Content Transformation Landscape 1.0","rawDate":"2009-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-10-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ctaur":{"authors":["Jason White","Janina Sajka","Scott Hollier"],"href":"https://www.w3.org/TR/ctaur/","title":"Collaboration Tools Accessibility User Requirements","rawDate":"2023-10-24","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/ctaur/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221108":{"authors":["Jason White"],"href":"https://www.w3.org/TR/2022/DNOTE-ctaur-20221108/","title":"Collaboration Tools Accessibility User Requirements","rawDate":"2022-11-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231024":{"authors":["Jason White","Janina Sajka","Scott Hollier"],"href":"https://www.w3.org/TR/2023/DNOTE-ctaur-20231024/","title":"Collaboration Tools Accessibility User Requirements","rawDate":"2023-10-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/ctaur"},"curie":{"authors":["Mark Birbeck","Shane McCarron"],"href":"https://www.w3.org/TR/curie/","title":"CURIE Syntax 1.0","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20070307":{"status":"WD","rawDate":"2007-03-07","href":"https://www.w3.org/TR/2007/WD-curie-20070307","source":"./data/w3c-specs.txt"},"20071126":{"status":"WD","rawDate":"2007-11-26","href":"https://www.w3.org/TR/2007/WD-curie-20071126","source":"./data/w3c-specs.txt"},"20080402":{"status":"WD","rawDate":"2008-04-02","href":"https://www.w3.org/TR/2008/WD-curie-20080402","source":"./data/w3c-specs.txt"},"20080506":{"status":"WD","rawDate":"2008-05-06","href":"https://www.w3.org/TR/2008/WD-curie-20080506","source":"./data/w3c-specs.txt"},"20090116":{"status":"CR","rawDate":"2009-01-16","href":"https://www.w3.org/TR/2009/CR-curie-20090116","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Mark Birbeck","Shane McCarron"],"href":"https://www.w3.org/TR/2010/NOTE-curie-20101216/","title":"CURIE Syntax 1.0","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"custom-elements":{"authors":["Domenic Denicola"],"href":"https://www.w3.org/TR/custom-elements/","title":"Custom Elements","rawDate":"2018-05-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130514":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2013/WD-custom-elements-20130514/","title":"Custom Elements","rawDate":"2013-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131024":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2013/WD-custom-elements-20131024/","title":"Custom Elements","rawDate":"2013-10-24","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2014/WD-custom-elements-20141216/","title":"Custom Elements","rawDate":"2014-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160119":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160119/","title":"Custom Elements","rawDate":"2016-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160226":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160226/","title":"Custom Elements","rawDate":"2016-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["Domenic Denicola"],"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160517/","title":"Custom Elements","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160523":{"authors":["Domenic Denicola"],"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160523/","title":"Custom Elements","rawDate":"2016-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160609":{"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160609/","title":"Custom Elements","rawDate":"2016-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160621":{"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160621/","title":"Custom Elements","rawDate":"2016-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160721/","title":"Custom Elements","rawDate":"2016-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"href":"https://www.w3.org/TR/2016/WD-custom-elements-20160830/","title":"Custom Elements","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161013":{"href":"https://www.w3.org/TR/2016/WD-custom-elements-20161013/","title":"Custom Elements","rawDate":"2016-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180216":{"authors":["Domenic Denicola"],"href":"https://www.w3.org/TR/2018/WD-custom-elements-20180216/","title":"Custom Elements","rawDate":"2018-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180503":{"href":"https://www.w3.org/TR/2018/NOTE-custom-elements-20180503/","title":"Custom Elements","rawDate":"2018-05-03","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/webcomponents/spec/custom/","repository":"https://github.com/w3c/webcomponents","isRetired":true},"daml+oil-axioms":{"versions":{"20011218":{"status":"NOTE","rawDate":"2001-12-18","href":"https://www.w3.org/TR/2001/NOTE-daml+oil-axioms-20011218","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/daml+oil-axioms","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-12-18","title":"An Axiomatic Semantics for RDF, RDF-S, and DAML+OIL (March 2001)"},"daml+oil-model":{"versions":{"20011218":{"status":"NOTE","rawDate":"2001-12-18","href":"https://www.w3.org/TR/2001/NOTE-daml+oil-model-20011218","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/daml+oil-model","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-12-18","title":"A Model-Theoretic Semantics for DAML+OIL (March 2001)"},"daml+oil-reference":{"versions":{"20011218":{"status":"NOTE","rawDate":"2001-12-18","href":"https://www.w3.org/TR/2001/NOTE-daml+oil-reference-20011218","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/daml+oil-reference","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-12-18","title":"DAML+OIL (March 2001) Reference Description"},"daml+oil-walkthru":{"versions":{"20011218":{"status":"NOTE","rawDate":"2001-12-18","href":"https://www.w3.org/TR/2001/NOTE-daml+oil-walkthru-20011218/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/daml+oil-walkthru/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-12-18","title":"Annotated DAML+OIL Ontology Markup"},"dap-api-reqs":{"authors":["Robin Berjon","Daniel Coloma","Max Froumentin","Marcin Hanclik","Jere Käpyaho","Kangchan Lee","Bryan Sullivan","Dzung Tran"],"href":"https://www.w3.org/TR/dap-api-reqs/","title":"Device APIs Requirements","rawDate":"2009-10-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091015":{"authors":["Robin Berjon","Daniel Coloma","Max Froumentin","Marcin Hanclik","Jere Käpyaho","Kangchan Lee","Bryan Sullivan","Dzung Tran"],"href":"https://www.w3.org/TR/2009/NOTE-dap-api-reqs-20091015/","title":"Device APIs Requirements","rawDate":"2009-10-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"dap-policy-reqs":{"authors":["Laura Arribas","Frederick Hirsch","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/dap-policy-reqs/","title":"Device API Access Control Use Cases and Requirements","rawDate":"2011-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100629":{"status":"NOTE","rawDate":"2010-06-29","href":"https://www.w3.org/TR/2010/NOTE-dap-policy-reqs-20100629/","source":"./data/w3c-specs.txt"},"20100907":{"status":"NOTE","rawDate":"2010-09-07","href":"https://www.w3.org/TR/2010/NOTE-dap-policy-reqs-20100907/","source":"./data/w3c-specs.txt"},"20110118":{"status":"WD","rawDate":"2011-01-18","href":"https://www.w3.org/TR/2011/WD-dap-policy-reqs-20110118/","source":"./data/w3c-specs.txt"},"20110317":{"authors":["Laura Arribas","Frederick Hirsch","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2011/NOTE-dap-policy-reqs-20110317/","title":"Device API Access Control Use Cases and Requirements","rawDate":"2011-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"dap-privacy-reqs":{"authors":["Alissa Cooper","Frederick Hirsch","John Morris"],"href":"https://www.w3.org/TR/dap-privacy-reqs/","title":"Device API Privacy Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"versions":{"20100629":{"authors":["Alissa Cooper","Frederick Hirsch","John Morris"],"href":"https://www.w3.org/TR/2010/NOTE-dap-privacy-reqs-20100629/","title":"Device API Privacy Requirements","rawDate":"2010-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-06-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dapt":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/dapt/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-12-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/dapt/","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230425":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230425/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230504":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230504/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230505":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230505/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230606/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230619/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230628/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230727/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230801":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20230801/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231006/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231011":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231011/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231013/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231019/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231102/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231123/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2023/WD-dapt-20231221/","title":"Dubbing and Audio description Profiles of TTML2","rawDate":"2023-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dapt"},"dapt-reqs":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/dapt-reqs/","title":"DAPT Requirements","rawDate":"2022-10-12","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dapt-reqs/","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220510":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2022/DNOTE-dapt-reqs-20220510/","title":"DAPT Requirements","rawDate":"2022-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221012":{"authors":["Cyril Concolato","Nigel Megitt"],"href":"https://www.w3.org/TR/2022/DNOTE-dapt-reqs-20221012/","title":"DAPT Requirements","rawDate":"2022-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dapt-reqs"},"data-extraction":{"versions":{"20011031":{"status":"NOTE","rawDate":"2001-10-31","href":"https://www.w3.org/TR/2001/NOTE-data-extraction-20011031","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/data-extraction","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-10-31","title":"DEL - Data Extraction Language"},"datetime":{"versions":{"19980827":{"status":"NOTE","rawDate":"1998-08-27","href":"https://www.w3.org/TR/1998/NOTE-datetime-19980827","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-datetime","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-08-27","title":"Date and Time Formats"},"dcat-ucr":{"authors":["Jaroslav Pullmann","Rob Atkinson","Antoine Isaac","Ixchel Faniel"],"href":"https://www.w3.org/TR/dcat-ucr/","title":"Dataset Exchange Use Cases and Requirements","rawDate":"2019-01-17","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dxwg/ucr/","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121216":{"authors":["R. Cyganiak","F. Maali."],"href":"https://dvcs.w3.org/hg/gld/raw-file/default/dcat-ucr/index.html","title":"Use Cases and Requirements for the Data Catalog Vocabulary","rawDate":"2012-12-16","status":"ED","publisher":"W3C"},"20171212":{"authors":["Ixchel Faniel","Jaroslav Pullmann","Rob Atkinson"],"href":"https://www.w3.org/TR/2017/NOTE-dcat-ucr-20171212/","title":"Dataset Exchange Use Cases and Requirements","rawDate":"2017-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190117":{"authors":["Jaroslav Pullmann","Rob Atkinson","Antoine Isaac","Ixchel Faniel"],"href":"https://www.w3.org/TR/2019/NOTE-dcat-ucr-20190117/","title":"Dataset Exchange Use Cases and Requirements","rawDate":"2019-01-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dxwg"},"dcd":{"versions":{"19980731":{"status":"NOTE","rawDate":"1998-07-31","href":"https://www.w3.org/TR/1998/NOTE-dcd-19980731","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-dcd","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-07-31","title":"Document Content Description for XML"},"dcontology":{"authors":["Jose Manuel Cantera Fonseca","Rhys Lewis"],"href":"https://www.w3.org/TR/dcontology/","title":"Delivery Context Ontology","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20071221":{"status":"WD","rawDate":"2007-12-21","href":"https://www.w3.org/TR/2007/WD-dcontology-20071221/","source":"./data/w3c-specs.txt"},"20080415":{"status":"WD","rawDate":"2008-04-15","href":"https://www.w3.org/TR/2008/WD-dcontology-20080415/","source":"./data/w3c-specs.txt"},"20090616":{"status":"WD","rawDate":"2009-06-16","href":"https://www.w3.org/TR/2009/WD-dcontology-20090616/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Jose Manuel Cantera Fonseca","Rhys Lewis"],"href":"https://www.w3.org/TR/2010/NOTE-dcontology-20100629/","title":"Delivery Context Ontology","rawDate":"2010-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-06-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"dd-ecosystem":{"authors":["Rotan Hanrahan"],"href":"https://www.w3.org/TR/dd-ecosystem/","title":"Device Description Ecosystem 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"versions":{"20051121":{"status":"WD","rawDate":"2005-11-21","href":"https://www.w3.org/TR/2005/WD-dd-ecosystem-20051121","source":"./data/w3c-specs.txt"},"20071031":{"authors":["Rotan Hanrahan"],"href":"https://www.w3.org/TR/2007/NOTE-dd-ecosystem-20071031/","title":"Device Description Ecosystem 1.0","rawDate":"2007-10-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-10-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dd-landscape":{"authors":["Emmanuel Nkeze","Gavin James Pearce","Matt Womer"],"href":"https://www.w3.org/TR/dd-landscape/","title":"Device Description Landscape 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"versions":{"20060210":{"status":"WD","rawDate":"2006-02-10","href":"https://www.w3.org/TR/2006/WD-dd-landscape-20060210","source":"./data/w3c-specs.txt"},"20071031":{"authors":["Emmanuel Nkeze","Gavin James Pearce","Matt Womer"],"href":"https://www.w3.org/TR/2007/NOTE-dd-landscape-20071031/","title":"Device Description Landscape 1.0","rawDate":"2007-10-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-10-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dd-structures":{"authors":["Jose Manuel Cantera Fonseca"],"href":"https://www.w3.org/TR/dd-structures/","title":"Device Description Structures","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"versions":{"20081205":{"authors":["Jose Manuel Cantera Fonseca"],"href":"https://www.w3.org/TR/2008/WD-dd-structures-20081205/","title":"Device Description Structures","rawDate":"2008-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ddml":{"versions":{"19990119":{"status":"NOTE","rawDate":"1999-01-19","href":"https://www.w3.org/TR/1999/NOTE-ddml-19990119","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-ddml","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-01-19","title":"DDML Specification, Version 1.0"},"ddr-core-vocabulary":{"authors":["Jo Rabin","Andrea Trasatti","Rotan Hanrahan"],"href":"https://www.w3.org/TR/ddr-core-vocabulary/","title":"Device Description Repository Core Vocabulary","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"versions":{"20071218":{"status":"WD","rawDate":"2007-12-18","href":"https://www.w3.org/TR/2007/WD-ddr-core-vocabulary-20071218/","source":"./data/w3c-specs.txt"},"20080414":{"authors":["Jo Rabin","Andrea Trasatti","Rotan Hanrahan"],"href":"https://www.w3.org/TR/2008/NOTE-ddr-core-vocabulary-20080414/","title":"Device Description Repository Core Vocabulary","rawDate":"2008-04-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/DDWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-04-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"design-principles":{"authors":["Sangwhan Moon","Lea Verou"],"href":"https://www.w3.org/TR/design-principles/","title":"Web Platform Design Principles","rawDate":"2024-01-30","status":"NOTE","publisher":"W3C","edDraft":"https://w3ctag.github.io/design-principles/","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201110":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2020/NOTE-design-principles-20201110/","title":"Web Platform Design Principles","rawDate":"2020-11-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210923":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2021/NOTE-design-principles-20210923/","title":"Web Platform Design Principles","rawDate":"2021-09-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2021/NOTE-design-principles-20211216/","title":"Web Platform Design Principles","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220824":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2022/NOTE-design-principles-20220824/","title":"Web Platform Design Principles","rawDate":"2022-08-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230224":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2023/NOTE-design-principles-20230224/","title":"Web Platform Design Principles","rawDate":"2023-02-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230426":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2023/NOTE-design-principles-20230426/","title":"Web Platform Design Principles","rawDate":"2023-04-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230907":{"authors":["Sangwhan Moon"],"href":"https://www.w3.org/TR/2023/NOTE-design-principles-20230907/","title":"Web Platform Design Principles","rawDate":"2023-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240130":{"authors":["Sangwhan Moon","Lea Verou"],"href":"https://www.w3.org/TR/2024/NOTE-design-principles-20240130/","title":"Web Platform Design Principles","rawDate":"2024-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3ctag/design-principles"},"deva-gap":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/deva-gap/","title":"Devanagari Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/iip/gap-analysis/deva-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-deva-gap-20200616/","title":"Devanagari Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-deva-gap-20210126/","title":"Devanagari Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210217":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-deva-gap-20210217/","title":"Devanagari Gap Analysis","rawDate":"2021-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210330":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-deva-gap-20210330/","title":"Devanagari Gap Analysis","rawDate":"2021-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210331":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-deva-gap-20210331/","title":"Devanagari Gap Analysis","rawDate":"2021-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-deva-gap-20210525/","title":"Devanagari Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-deva-gap-20220119/","title":"Devanagari Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-deva-gap-20230614/","title":"Devanagari Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230830":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-deva-gap-20230830/","title":"Devanagari Gap Analysis","rawDate":"2023-08-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-deva-gap-20231004/","title":"Devanagari Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"device-memory-1":{"authors":["Shubhie Panicker"],"href":"https://www.w3.org/TR/device-memory-1/","title":"Device Memory","rawDate":"2022-07-22","status":"WD","publisher":"W3C","edDraft":"https://www.w3.org/TR/device-memory/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180925":{"authors":["Shubhie Panicker"],"href":"https://www.w3.org/TR/2018/WD-device-memory-1-20180925/","title":"Device Memory","rawDate":"2018-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220722":{"authors":["Shubhie Panicker"],"href":"https://www.w3.org/TR/2022/WD-device-memory-1-20220722/","title":"Device Memory","rawDate":"2022-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/device-memory"},"device-posture":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/device-posture/","title":"Device Posture API","rawDate":"2024-01-08","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/device-posture/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201217":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2020/WD-screen-fold-20201217/","title":"The Screen Fold API","rawDate":"2020-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210318":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2021/WD-device-posture-20210318/","title":"Device Posture API","rawDate":"2021-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2021/WD-device-posture-20210513/","title":"Device Posture API","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2021/WD-device-posture-20210603/","title":"Device Posture API","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210708":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2021/WD-device-posture-20210708/","title":"Device Posture API","rawDate":"2021-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210802":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2021/WD-device-posture-20210802/","title":"Device Posture API","rawDate":"2021-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211104":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2021/WD-device-posture-20211104/","title":"Device Posture API","rawDate":"2021-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2023/WD-device-posture-20230403/","title":"Device Posture API","rawDate":"2023-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230404":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2023/WD-device-posture-20230404/","title":"Device Posture API","rawDate":"2023-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Diego Gonzalez-Zuniga","Kenneth Christiansen"],"href":"https://www.w3.org/TR/2024/WD-device-posture-20240108/","title":"Device Posture API","rawDate":"2024-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/screen-fold"},"device-upload":{"versions":{"19990706":{"status":"NOTE","rawDate":"1999-07-06","href":"https://www.w3.org/1999/07/NOTE-device-upload-19990706","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/device-upload","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-07-06","title":"Form-based Device Input and Upload in HTML"},"dfaui":{"authors":["Arthur Barstow"],"href":"https://www.w3.org/TR/dfaui/","title":"Declarative Formats for Applications and User Interfaces","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"versions":{"20070912":{"authors":["Arthur Barstow"],"href":"https://www.w3.org/TR/2007/NOTE-dfaui-20070912/","title":"Declarative Formats for Applications and User Interfaces","rawDate":"2007-09-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2007-09-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"di-atdi":{"authors":["Rotan Hanrahan","Roland Merrick"],"href":"https://www.w3.org/TR/di-atdi/","title":"Authoring Techniques for Device Independence","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"versions":{"20031106":{"status":"WD","rawDate":"2003-11-06","href":"https://www.w3.org/TR/2003/WD-di-atdi-20031106/","source":"./data/w3c-specs.txt"},"20040218":{"authors":["Rotan Hanrahan","Roland Merrick"],"href":"https://www.w3.org/TR/2004/NOTE-di-atdi-20040218/","title":"Authoring Techniques for Device Independence","rawDate":"2004-02-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"di-dco":{"authors":["Roger Gimson","Rhys Lewis","Sailesh Sathish"],"href":"https://www.w3.org/TR/di-dco/","title":"Delivery Context Overview for Device Independence","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"versions":{"20021213":{"status":"WD","rawDate":"2002-12-13","href":"https://www.w3.org/TR/2002/WD-di-dco-20021213/","source":"./data/w3c-specs.txt"},"20050118":{"status":"NOTE","rawDate":"2005-01-18","href":"https://www.w3.org/TR/2005/NOTE-di-dco-20050118/","source":"./data/w3c-specs.txt"},"20060320":{"authors":["Roger Gimson","Rhys Lewis","Sailesh Sathish"],"href":"https://www.w3.org/TR/2006/NOTE-di-dco-20060320/","title":"Delivery Context Overview for Device Independence","rawDate":"2006-03-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-03-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"di-gloss":{"authors":["Rhys Lewis"],"href":"https://www.w3.org/TR/di-gloss/","title":"Glossary of Terms for Device Independence","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"versions":{"20030825":{"status":"WD","rawDate":"2003-08-25","href":"https://www.w3.org/TR/2003/WD-di-gloss-20030825/","source":"./data/w3c-specs.txt"},"20050118":{"authors":["Rhys Lewis"],"href":"https://www.w3.org/TR/2005/WD-di-gloss-20050118/","title":"Glossary of Terms for Device Independence","rawDate":"2005-01-18","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/di/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-01-18","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"di-princ":{"authors":["Roger Gimson"],"href":"https://www.w3.org/TR/di-princ/","title":"Device Independence Principles","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"versions":{"20010918":{"status":"WD","rawDate":"2001-09-18","href":"https://www.w3.org/TR/2001/WD-di-princ-20010918/","source":"./data/w3c-specs.txt"},"20030901":{"authors":["Roger Gimson"],"href":"https://www.w3.org/TR/2003/NOTE-di-princ-20030901/","title":"Device Independence Principles","rawDate":"2003-09-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/di/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"di-testing":{"authors":["Dominique Hazaël-Massieux","Carmelo Montanez"],"href":"https://www.w3.org/TR/di-testing/","title":"Guidelines for writing device independent tests","rawDate":"2009-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/Tests/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090512":{"authors":["Dominique Hazaël-Massieux","Carmelo Montanez"],"href":"https://www.w3.org/TR/2009/NOTE-di-testing-20090512/","title":"Guidelines for writing device independent tests","rawDate":"2009-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/Tests/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"dial":{"authors":["Kevin Smith"],"href":"https://www.w3.org/TR/dial/","title":"Device Independent Authoring Language (DIAL)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20060516":{"status":"WD","rawDate":"2006-05-16","href":"https://www.w3.org/TR/2006/WD-dial-20060516/","source":"./data/w3c-specs.txt"},"20070727":{"status":"WD","rawDate":"2007-07-27","href":"https://www.w3.org/TR/2007/WD-dial-20070727/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Kevin Smith"],"href":"https://www.w3.org/TR/2010/NOTE-dial-20100629/","title":"Device Independent Authoring Language (DIAL)","rawDate":"2010-06-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-06-29","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dial-primer":{"authors":["Kevin Smith"],"href":"https://www.w3.org/TR/dial-primer/","title":"DIAL Part 0: Primer","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/uwa/"],"versions":{"20061010":{"status":"WD","rawDate":"2006-10-10","href":"https://www.w3.org/TR/2006/WD-dial-primer-20061010/","source":"./data/w3c-specs.txt"},"20071101":{"status":"WD","rawDate":"2007-11-01","href":"https://www.w3.org/TR/2007/WD-dial-primer-20071101/","source":"./data/w3c-specs.txt"},"20100629":{"authors":["Kevin Smith"],"href":"https://www.w3.org/TR/2010/NOTE-dial-primer-20100629/","title":"DIAL Part 0: Primer","rawDate":"2010-06-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/uwa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-06-29","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"did-cbor-representation":{"authors":["Drummond Reed","Manu Sporny"],"href":"https://www.w3.org/TR/did-cbor-representation/","title":"The Plain CBOR Representation v1.0","rawDate":"2021-06-29","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/did-cbor-note/","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210629":{"authors":["Drummond Reed","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-cbor-representation-20210629/","title":"The Plain CBOR Representation v1.0","rawDate":"2021-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/did-cbor-note"},"did-core":{"authors":["Manu Sporny","Amy Guy","Markus Sabadello","Drummond Reed"],"href":"https://www.w3.org/TR/did-core/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2022-07-19","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/did-core/","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191107":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello"],"href":"https://www.w3.org/TR/2019/WD-did-core-20191107/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2019-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191113":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2019/WD-did-core-20191113/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2019-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191125":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2019/WD-did-core-20191125/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2019-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191127":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2019/WD-did-core-20191127/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2019-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191209":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2019/WD-did-core-20191209/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2019-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200223":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200223/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200225":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200225/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200304":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200304/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200305":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200305/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200323":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200323/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200330":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200330/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200402":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200402/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200403":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200403/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200407":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200407/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200408":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200408/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200421":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200421/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200608":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200608/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200731":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200731/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200907":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20200907/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201001/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201002":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201002/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201008":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201008/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201012":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201012/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201026":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201026/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201027":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201027/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201101":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201101/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201104":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201104/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201108":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen","Jonathan Holt"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201108/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201214":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201214/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201220":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201220/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201227":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2020/WD-did-core-20201227/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2020-12-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210103":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210103/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210110":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210110/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210117":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210117/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210118":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210118/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210120":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210120/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210124":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210124/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210126/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210128/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210131":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210131/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210205":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210205/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210208":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210208/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210209":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210209/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210210":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210210/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210211":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210211/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210212":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210212/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210222":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210222/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210223":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210223/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210302":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210302/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210305":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210305/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210308":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210308/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210309":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/WD-did-core-20210309/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210318":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/CR-did-core-20210318/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-03-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210430":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210430/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-04-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210514":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210514/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-05-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210515":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210515/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-05-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210522":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210522/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-05-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210529":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210529/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-05-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210605":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210605/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-06-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210609":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210609/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-06-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210615":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/CR-did-core-20210615/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-06-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210616/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-06-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210627":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210627/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-06-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210710":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210710/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-07-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210711":{"authors":["Drummond Reed","Manu Sporny","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210711/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-07-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210717":{"authors":["Drummond Reed","Manu Sporny","Amy Guy","Markus Sabadello","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210717/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-07-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210720":{"authors":["Manu Sporny","Amy Guy","Markus Sabadello","Drummond Reed","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210720/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-07-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210724":{"authors":["Manu Sporny","Amy Guy","Markus Sabadello","Drummond Reed","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210724/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-07-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210730":{"authors":["Manu Sporny","Amy Guy","Markus Sabadello","Drummond Reed","Dave Longley","Christopher Allen"],"href":"https://www.w3.org/TR/2021/CRD-did-core-20210730/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-07-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210803":{"authors":["Manu Sporny","Amy Guy","Markus Sabadello","Drummond Reed"],"href":"https://www.w3.org/TR/2021/PR-did-core-20210803/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2021-08-03","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220719":{"authors":["Manu Sporny","Amy Guy","Markus Sabadello","Drummond Reed"],"href":"https://www.w3.org/TR/2022/REC-did-core-20220719/","title":"Decentralized Identifiers (DIDs) v1.0","rawDate":"2022-07-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"hasErrata":"https://w3c.github.io/did-core/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/did-core","hasErrata":"https://w3c.github.io/did-core/errata.html"},"did-imp-guide":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/did-imp-guide/","title":"DID Implementation Guide v1.0","rawDate":"2021-10-12","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/did-imp-guide/","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210826":{"authors":["Orie Steele","Michael Prorock"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20210826/","title":"DID Implementation Guide v1.0","rawDate":"2021-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20210831/","title":"DID Implementation Guide v1.0","rawDate":"2021-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210901":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20210901/","title":"DID Implementation Guide v1.0","rawDate":"2021-09-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210909":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20210909/","title":"DID Implementation Guide v1.0","rawDate":"2021-09-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210917":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20210917/","title":"DID Implementation Guide v1.0","rawDate":"2021-09-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20210921/","title":"DID Implementation Guide v1.0","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Orie Steele","Michael Prorock","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-imp-guide-20211012/","title":"DID Implementation Guide v1.0","rawDate":"2021-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/did-imp-guide"},"did-rubric":{"authors":["Joe Andrieu","Daniel Hardman"],"href":"https://www.w3.org/TR/did-rubric/","title":"DID Method Rubric v1.0","rawDate":"2021-11-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/did-rubric/","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210826":{"authors":["Joe Andrieu","Daniel Hardman"],"href":"https://www.w3.org/TR/2021/NOTE-did-rubric-20210826/","title":"DID Method Rubric v1.0","rawDate":"2021-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210907":{"authors":["Joe Andrieu","Daniel Hardman","Drummond Reed","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-rubric-20210907/","title":"DID Method Rubric v1.0","rawDate":"2021-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210920":{"authors":["Joe Andrieu","Daniel Hardman","Drummond Reed","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-rubric-20210920/","title":"DID Method Rubric v1.0","rawDate":"2021-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Joe Andrieu","Daniel Hardman","Drummond Reed","Markus Sabadello"],"href":"https://www.w3.org/TR/2021/NOTE-did-rubric-20211026/","title":"DID Method Rubric v1.0","rawDate":"2021-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Joe Andrieu","Daniel Hardman"],"href":"https://www.w3.org/TR/2021/NOTE-did-rubric-20211119/","title":"DID Method Rubric v1.0","rawDate":"2021-11-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/did-rubric"},"did-spec-registries":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/did-spec-registries/","title":"DID Specification Registries","rawDate":"2023-09-11","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/did-spec-registries/","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200618":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20200618/","title":"DID Specification Registries","rawDate":"2020-06-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200930":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20200930/","title":"DID Specification Registries","rawDate":"2020-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20201001/","title":"DID Specification Registries","rawDate":"2020-10-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201102":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20201102/","title":"DID Specification Registries","rawDate":"2020-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201109":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20201109/","title":"DID Specification Registries","rawDate":"2020-11-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201214":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20201214/","title":"DID Specification Registries","rawDate":"2020-12-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201221":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2020/NOTE-did-spec-registries-20201221/","title":"DID Specification Registries","rawDate":"2020-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210105":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210105/","title":"DID Specification Registries","rawDate":"2021-01-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210114":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210114/","title":"DID Specification Registries","rawDate":"2021-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210121":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210121/","title":"DID Specification Registries","rawDate":"2021-01-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210122":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210122/","title":"DID Specification Registries","rawDate":"2021-01-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210124":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210124/","title":"DID Specification Registries","rawDate":"2021-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210125":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210125/","title":"DID Specification Registries","rawDate":"2021-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210128/","title":"DID Specification Registries","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210129":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210129/","title":"DID Specification Registries","rawDate":"2021-01-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210131":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210131/","title":"DID Specification Registries","rawDate":"2021-01-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210205":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210205/","title":"DID Specification Registries","rawDate":"2021-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210207":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210207/","title":"DID Specification Registries","rawDate":"2021-02-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210208":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210208/","title":"DID Specification Registries","rawDate":"2021-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210215/","title":"DID Specification Registries","rawDate":"2021-02-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210216":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210216/","title":"DID Specification Registries","rawDate":"2021-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210217":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210217/","title":"DID Specification Registries","rawDate":"2021-02-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210225":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210225/","title":"DID Specification Registries","rawDate":"2021-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210308":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210308/","title":"DID Specification Registries","rawDate":"2021-03-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210311":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210311/","title":"DID Specification Registries","rawDate":"2021-03-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210322":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210322/","title":"DID Specification Registries","rawDate":"2021-03-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210409":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210409/","title":"DID Specification Registries","rawDate":"2021-04-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210416":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210416/","title":"DID Specification Registries","rawDate":"2021-04-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210427":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210427/","title":"DID Specification Registries","rawDate":"2021-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210428":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210428/","title":"DID Specification Registries","rawDate":"2021-04-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210504":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210504/","title":"DID Specification Registries","rawDate":"2021-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210508":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210508/","title":"DID Specification Registries","rawDate":"2021-05-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210515":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210515/","title":"DID Specification Registries","rawDate":"2021-05-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210601/","title":"DID Specification Registries","rawDate":"2021-06-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210613":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210613/","title":"DID Specification Registries","rawDate":"2021-06-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210614":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210614/","title":"DID Specification Registries","rawDate":"2021-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210616/","title":"DID Specification Registries","rawDate":"2021-06-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210624/","title":"DID Specification Registries","rawDate":"2021-06-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210730":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210730/","title":"DID Specification Registries","rawDate":"2021-07-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210802":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210802/","title":"DID Specification Registries","rawDate":"2021-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210806":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210806/","title":"DID Specification Registries","rawDate":"2021-08-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210817/","title":"DID Specification Registries","rawDate":"2021-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210819":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210819/","title":"DID Specification Registries","rawDate":"2021-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210824/","title":"DID Specification Registries","rawDate":"2021-08-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210831/","title":"DID Specification Registries","rawDate":"2021-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210909":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210909/","title":"DID Specification Registries","rawDate":"2021-09-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210914/","title":"DID Specification Registries","rawDate":"2021-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210921/","title":"DID Specification Registries","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210924":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20210924/","title":"DID Specification Registries","rawDate":"2021-09-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20211026/","title":"DID Specification Registries","rawDate":"2021-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211102":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2021/NOTE-did-spec-registries-20211102/","title":"DID Specification Registries","rawDate":"2021-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220621":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2022/NOTE-did-spec-registries-20220621/","title":"DID Specification Registries","rawDate":"2022-06-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2022/NOTE-did-spec-registries-20220628/","title":"DID Specification Registries","rawDate":"2022-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2022/NOTE-did-spec-registries-20220809/","title":"DID Specification Registries","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230124":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230124/","title":"DID Specification Registries","rawDate":"2023-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230208/","title":"DID Specification Registries","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230309":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230309/","title":"DID Specification Registries","rawDate":"2023-03-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230310/","title":"DID Specification Registries","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230411":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230411/","title":"DID Specification Registries","rawDate":"2023-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230427/","title":"DID Specification Registries","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230514":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230514/","title":"DID Specification Registries","rawDate":"2023-05-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230828":{"authors":["Orie Steele","Manu Sporny","Michael Prorock"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230828/","title":"DID Specification Registries","rawDate":"2023-08-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230829":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230829/","title":"DID Specification Registries","rawDate":"2023-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230911":{"authors":["Orie Steele","Manu Sporny"],"href":"https://www.w3.org/TR/2023/NOTE-did-spec-registries-20230911/","title":"DID Specification Registries","rawDate":"2023-09-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/did-spec-registries"},"did-use-cases":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/did-use-cases/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-03-17","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/did-use-cases/","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191128":{"authors":["Joe Andrieu","Phil Archer"],"href":"https://www.w3.org/TR/2019/WD-did-use-cases-20191128/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2019-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191204":{"authors":["Joe Andrieu","Phil Archer"],"href":"https://www.w3.org/TR/2019/WD-did-use-cases-20191204/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2019-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200130":{"authors":["Joe Andrieu","Phil Archer"],"href":"https://www.w3.org/TR/2020/WD-did-use-cases-20200130/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2020-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200401":{"authors":["Joe Andrieu","Phil Archer"],"href":"https://www.w3.org/TR/2020/WD-did-use-cases-20200401/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2020-04-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200425":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2020/WD-did-use-cases-20200425/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2020-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200716":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2020/WD-did-use-cases-20200716/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2020-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200902":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2020/WD-did-use-cases-20200902/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2020-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201218":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2020/WD-did-use-cases-20201218/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2020-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210108":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210108/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210119/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210205":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210205/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210207":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210207/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210209":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210209/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210212":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210212/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210301":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/WD-did-use-cases-20210301/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210317":{"authors":["Joe Andrieu","Phil Archer","Kim Duffy","Ryan Grant","Adrian Gropper"],"href":"https://www.w3.org/TR/2021/NOTE-did-use-cases-20210317/","title":"Use Cases and Requirements for Decentralized Identifiers","rawDate":"2021-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/did-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/did-use-cases"},"discovery-api":{"authors":["Rich Tibbett"],"href":"https://www.w3.org/TR/discovery-api/","title":"Network Service Discovery","rawDate":"2017-01-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120807":{"status":"WD","rawDate":"2012-08-07","href":"https://www.w3.org/TR/2012/WD-discovery-api-20120807/","source":"./data/w3c-specs.txt"},"20121004":{"status":"WD","rawDate":"2012-10-04","href":"https://www.w3.org/TR/2012/WD-discovery-api-20121004/","source":"./data/w3c-specs.txt"},"20130404":{"authors":["Rich Tibbett","Clarke Stevens"],"href":"https://www.w3.org/TR/2013/WD-discovery-api-20130404/","title":"Network Service Discovery","rawDate":"2013-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130924":{"authors":["Rich Tibbett"],"href":"https://www.w3.org/TR/2013/WD-discovery-api-20130924/","title":"Network Service Discovery","rawDate":"2013-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140220":{"authors":["Rich Tibbett"],"href":"https://www.w3.org/TR/2014/WD-discovery-api-20140220/","title":"Network Service Discovery","rawDate":"2014-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170112":{"authors":["Rich Tibbett"],"href":"https://www.w3.org/TR/2017/NOTE-discovery-api-20170112/","title":"Network Service Discovery","rawDate":"2017-01-12","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dvcs.w3.org/hg/dap/raw-file/tip/discovery-api/Overview.html","isRetired":true},"distributed-tracing":{"aliasOf":"trace-context-1"},"dom-20101007":{"authors":["Anne van Kesteren","Aryeh Gregor","Lachlan Hunt","Ms2ger"],"title":"DOM4","publisher":"W3C","status":"WD","rawDate":"2010-10-07","href":"https://www.w3.org/TR/2010/WD-domcore-20101007/","deliveredBy":["https://www.w3.org/html/wg/"],"source":"./data/w3c-specs.txt"},"dom-20110531":{"authors":["Anne van Kesteren","Aryeh Gregor","Lachlan Hunt","Ms2ger"],"title":"DOM4","publisher":"W3C","status":"WD","rawDate":"2011-05-31","href":"https://www.w3.org/TR/2011/WD-domcore-20110531/","deliveredBy":["https://www.w3.org/html/wg/"],"source":"./data/w3c-specs.txt"},"dom-20110915":{"authors":["Anne van Kesteren","Aryeh Gregor","Lachlan Hunt","Ms2ger"],"title":"DOM4","publisher":"W3C","status":"WD","rawDate":"2011-09-15","href":"https://www.w3.org/TR/2011/WD-dom-20110915/","deliveredBy":["https://www.w3.org/html/wg/"],"source":"./data/w3c-specs.txt"},"dom-20120105":{"authors":["Anne van Kesteren","Aryeh Gregor","Lachlan Hunt","Ms2ger"],"title":"DOM4","publisher":"W3C","status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-dom-20120105/","deliveredBy":["https://www.w3.org/html/wg/"],"source":"./data/w3c-specs.txt"},"dom-20120405":{"authors":["Anne van Kesteren","Aryeh Gregor","Lachlan Hunt","Ms2ger"],"title":"DOM4","publisher":"W3C","status":"WD","rawDate":"2012-04-05","deliveredBy":["https://www.w3.org/html/wg/"],"href":"https://www.w3.org/TR/2012/WD-dom-20120405/","source":"./data/w3c-specs.txt"},"dom-20121206":{"authors":["Anne van Kesteren","Aryeh Gregor","Lachlan Hunt","Ms2ger"],"href":"https://www.w3.org/TR/2012/WD-dom-20121206/","title":"DOM4","rawDate":"2012-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20131107":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2013/WD-dom-20131107/","title":"W3C DOM4","rawDate":"2013-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20140204":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2014/WD-dom-20140204/","title":"W3C DOM4","rawDate":"2014-02-04","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20140508":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2014/CR-dom-20140508/","title":"W3C DOM4","rawDate":"2014-05-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20140710":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2014/WD-dom-20140710/","title":"W3C DOM4","rawDate":"2014-07-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20150428":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2015/WD-dom-20150428/","title":"W3C DOM4","rawDate":"2015-04-28","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20150618":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2015/WD-dom-20150618/","title":"W3C DOM4","rawDate":"2015-06-18","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20151006":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2015/PR-dom-20151006/","title":"W3C DOM4","rawDate":"2015-10-06","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-20151119":{"authors":["Anne van Kesteren","Aryeh Gregor","Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2015/REC-dom-20151119/","title":"W3C DOM4","rawDate":"2015-11-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"dom-iop":{"aliasOf":"scxml-dom-iop"},"dom40":{"authors":["Anne van Kesteren","Aryeh Gregor",". Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/dom40/","title":"W3C DOM4","rawDate":"2020-11-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151119":{"aliasOf":"dom-20151119"},"20201103":{"authors":["Anne van Kesteren","Aryeh Gregor",". Ms2ger","Alex Russell","Robin Berjon"],"href":"https://www.w3.org/TR/2020/SPSD-dom-20201103/","title":"W3C DOM4","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"obsoletedBy":["dom"]},"dom41":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/dom41/","title":"W3C DOM 4.1","rawDate":"2020-03-17","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dom/","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170321":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20170321/","title":"W3C DOM 4.1","rawDate":"2017-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170420":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20170420/","title":"W3C DOM 4.1","rawDate":"2017-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170609":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20170609/","title":"W3C DOM 4.1","rawDate":"2017-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171021":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20171021/","title":"W3C DOM 4.1","rawDate":"2017-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171025":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20171025/","title":"W3C DOM 4.1","rawDate":"2017-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171031":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20171031/","title":"W3C DOM 4.1","rawDate":"2017-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20171102/","title":"W3C DOM 4.1","rawDate":"2017-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171207":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2017/WD-dom41-20171207/","title":"W3C DOM 4.1","rawDate":"2017-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180201":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2018/WD-dom41-20180201/","title":"W3C DOM 4.1","rawDate":"2018-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200317":{"authors":["Yongsheng Zhu"],"href":"https://www.w3.org/TR/2020/NOTE-dom41-20200317/","title":"W3C DOM 4.1","rawDate":"2020-03-17","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dom","isRetired":true},"domcore":{"aliasOf":"dom40"},"domcore-20101007":{"aliasOf":"dom-20101007"},"domcore-20110531":{"aliasOf":"dom-20110531"},"domcore-20110915":{"aliasOf":"dom-20110915"},"domcore-20120105":{"aliasOf":"dom-20120105"},"domcore-20120405":{"aliasOf":"dom-20120405"},"domcore-20121206":{"aliasOf":"dom-20121206"},"domcore-20131107":{"aliasOf":"dom-20131107"},"domcore-20140204":{"aliasOf":"dom-20140204"},"domcore-20140508":{"aliasOf":"dom-20140508"},"domcore-20140710":{"aliasOf":"dom-20140710"},"domcore-20150428":{"aliasOf":"dom-20150428"},"domcore-20150618":{"aliasOf":"dom-20150618"},"domcore-20151006":{"aliasOf":"dom-20151006"},"domcore-20151119":{"aliasOf":"dom-20151119"},"dpub-aam-1.0":{"authors":["Richard Schwerdtfeger","Joanmarie Diggs"],"href":"https://www.w3.org/TR/dpub-aam-1.0/","title":"Digital Publishing Accessibility API Mappings","rawDate":"2017-12-14","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-aam/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151203":{"authors":["Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2015/WD-dpub-aam-1.0-20151203/","title":"Digital Publishing Accessibility API Mappings","rawDate":"2015-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2016/WD-dpub-aam-1.0-20160317/","title":"Digital Publishing Accessibility API Mappings","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170606":{"authors":["Richard Schwerdtfeger","Joanmarie Diggs"],"href":"https://www.w3.org/TR/2017/CR-dpub-aam-1.0-20170606/","title":"Digital Publishing Accessibility API Mappings","rawDate":"2017-06-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Richard Schwerdtfeger","Joanmarie Diggs"],"href":"https://www.w3.org/TR/2017/PR-dpub-aam-1.0-20171102/","title":"Digital Publishing Accessibility API Mappings","rawDate":"2017-11-02","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Richard Schwerdtfeger","Joanmarie Diggs"],"href":"https://www.w3.org/TR/2017/REC-dpub-aam-1.0-20171214/","title":"Digital Publishing Accessibility API Mappings","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/dpub","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria","hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/dpub"},"dpub-aam-1.1":{"href":"https://www.w3.org/TR/dpub-aam-1.1/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2024-01-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-aam/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211130":{"href":"https://www.w3.org/TR/2021/WD-dpub-aam-1.1-20211130/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2021-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Matt Garrish","Joanmarie Diggs"]},"20230308":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230308/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230613":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230613/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230619/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/CRD-dpub-aam-1.1-20230626/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-06-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230703/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230705/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230823":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230823/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20230902/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231108":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231108/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231213":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231213/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231222":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aam-1.1-20231222/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2023-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240109":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2024/WD-dpub-aam-1.1-20240109/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2024-01-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240123":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2024/WD-dpub-aam-1.1-20240123/","title":"Digital Publishing Accessibility API Mappings 1.1","rawDate":"2024-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dpub-aam","authors":["Matt Garrish","Tzviya Siegman"]},"dpub-accessibility":{"authors":["Deborah Kaplan","Charles LaPierre"],"href":"https://www.w3.org/TR/dpub-accessibility/","title":"Digital Publishing and Accessibility in W3C Documents","rawDate":"2016-05-03","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-accessibility/","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160503":{"authors":["Deborah Kaplan","Charles LaPierre"],"href":"https://www.w3.org/TR/2016/NOTE-dpub-accessibility-20160503/","title":"Digital Publishing and Accessibility in W3C Documents","rawDate":"2016-05-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dpub-accessibility"},"dpub-annotation-uc":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/dpub-annotation-uc/","title":"Digital Publishing Annotation Use Cases","rawDate":"2014-12-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140313":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2014/WD-dpub-annotation-uc-20140313/","title":"Annotation Use Cases","rawDate":"2014-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141204":{"authors":["Robert Sanderson"],"href":"https://www.w3.org/TR/2014/NOTE-dpub-annotation-uc-20141204/","title":"Digital Publishing Annotation Use Cases","rawDate":"2014-12-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/dpub-annotation/","repository":"https://github.com/w3c/dpub-annotation"},"dpub-aria-1.0":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/dpub-aria-1.0/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2017-12-14","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-aria/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150707":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/2015/WD-dpub-aria-1.0-20150707/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2015-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/2015/WD-dpub-aria-1.0-20151119/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/2016/WD-dpub-aria-1.0-20160317/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/2016/CR-dpub-aria-1.0-20161215/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2016-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/2017/PR-dpub-aria-1.0-20171102/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2017-11-02","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Matt Garrish","Tzviya Siegman","Markus Gylling","Shane McCarron"],"href":"https://www.w3.org/TR/2017/REC-dpub-aria-1.0-20171214/","title":"Digital Publishing WAI-ARIA Module 1.0","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/dpub","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria","hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/dpub"},"dpub-aria-1.1":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/dpub-aria-1.1/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2024-01-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-aria/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210826":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2021/WD-dpub-aria-1.1-20210826/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2021/WD-dpub-aria-1.1-20211119/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2021/WD-dpub-aria-1.1-20211203/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2022/WD-dpub-aria-1.1-20220120/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2022-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2022/WD-dpub-aria-1.1-20220215/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220302":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2022/WD-dpub-aria-1.1-20220302/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2022-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220511":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2022/WD-dpub-aria-1.1-20220511/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2022-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2022/WD-dpub-aria-1.1-20220517/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2022-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220530":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2022/WD-dpub-aria-1.1-20220530/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2022-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230125/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230202/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230215":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230215/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230222/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230515/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230619/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230620":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230620/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/CRD-dpub-aria-1.1-20230626/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-06-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230703/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230705/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20230902/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231030":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231030/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-10-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231213":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231213/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231222":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2023/WD-dpub-aria-1.1-20231222/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2023-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240108/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2024-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240109":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240109/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2024-01-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240123":{"authors":["Matt Garrish","Tzviya Siegman"],"href":"https://www.w3.org/TR/2024/WD-dpub-aria-1.1-20240123/","title":"Digital Publishing WAI-ARIA Module 1.1","rawDate":"2024-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dpub-aria"},"dpub-css-priorities":{"authors":["Dave Cramer"],"href":"https://www.w3.org/TR/dpub-css-priorities/","title":"Priorities for CSS from the Digital Publishing Interest Group","rawDate":"2015-08-20","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-pagination/priorities.html","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150820":{"authors":["Dave Cramer"],"href":"https://www.w3.org/TR/2015/WD-dpub-css-priorities-20150820/","title":"Priorities for CSS from the Digital Publishing Interest Group","rawDate":"2015-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dpub-pagination"},"dpub-latinreq":{"authors":["Dave Cramer"],"href":"https://www.w3.org/TR/dpub-latinreq/","title":"Requirements for Latin Text Layout and Pagination","rawDate":"2014-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140313":{"authors":["Dave Cramer"],"href":"https://www.w3.org/TR/2014/WD-dpub-latinreq-20140313/","title":"Requirements for Latin Text Layout and Pagination","rawDate":"2014-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140930":{"authors":["Dave Cramer"],"href":"https://www.w3.org/TR/2014/WD-dpub-latinreq-20140930/","title":"Requirements for Latin Text Layout and Pagination","rawDate":"2014-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/dpub-pagination/","repository":"https://github.com/w3c/dpub-pagination"},"dpub-metadata":{"authors":["Bill Kasdorf","Madi Solomon","Ivan Herman"],"href":"https://www.w3.org/TR/dpub-metadata/","title":"DPUB IG Metadata Task Force Report","rawDate":"2015-01-08","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-metadata/","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150108":{"authors":["Bill Kasdorf","Madi Solomon","Ivan Herman"],"href":"https://www.w3.org/TR/2015/NOTE-dpub-metadata-20150108/","title":"DPUB IG Metadata Task Force Report","rawDate":"2015-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dpub-metadata"},"drawml":{"versions":{"19981203":{"status":"NOTE","rawDate":"1998-12-03","href":"https://www.w3.org/TR/1998/NOTE-drawml-19981203","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-drawml","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-12-03","title":"DrawML, Markup for Scalable and Intelligent Drawings"},"drp":{"versions":{"19970825":{"status":"NOTE","rawDate":"1997-08-25","href":"https://www.w3.org/TR/NOTE-drp-19970825","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-drp","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-08-25","title":"The HTTP Distribution and Replication Protocol"},"dt4dtd":{"versions":{"20000113":{"status":"NOTE","rawDate":"2000-01-13","href":"https://www.w3.org/TR/2000/NOTE-dt4dtd-20000113","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/dt4dtd","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-01-13","title":"Datatypes for DTDs (DT4DTD)"},"dwbp":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/dwbp/","title":"Data on the Web Best Practices","rawDate":"2017-01-31","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/dwbp/bp.html","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150224":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2015/WD-dwbp-20150224/","title":"Data on the Web Best Practices","rawDate":"2015-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150625":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2015/WD-dwbp-20150625/","title":"Data on the Web Best Practices","rawDate":"2015-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2015/WD-dwbp-20151217/","title":"Data on the Web Best Practices","rawDate":"2015-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160112":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2016/WD-dwbp-20160112/","title":"Data on the Web Best Practices","rawDate":"2016-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2016/WD-dwbp-20160519/","title":"Data on the Web Best Practices","rawDate":"2016-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2016/CR-dwbp-20160830/","title":"Data on the Web Best Practices","rawDate":"2016-08-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2016/PR-dwbp-20161215/","title":"Data on the Web Best Practices","rawDate":"2016-12-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170131":{"authors":["Bernadette Farias Loscio","Caroline Burle","Newton Calegari"],"href":"https://www.w3.org/TR/2017/REC-dwbp-20170131/","title":"Data on the Web Best Practices","rawDate":"2017-01-31","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"hasErrata":"https://w3c.github.io/dwbp/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://w3c.github.io/dwbp/errata.html","repository":"https://github.com/w3c/dwbp"},"dwbp-ucr":{"authors":["Deirdre Lee","Bernadette Farias Loscio","Phil Archer"],"href":"https://www.w3.org/TR/dwbp-ucr/","title":"Data on the Web Best Practices Use Cases & Requirements","rawDate":"2015-02-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140605":{"authors":["Deirdre Lee","Bernadette Farias Loscio"],"href":"https://www.w3.org/TR/2014/WD-dwbp-ucr-20140605/","title":"Data on the Web Best Practices Use Cases &Requirements","rawDate":"2014-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141014":{"authors":["Deirdre Lee","Bernadette Farias Loscio","Phil Archer"],"href":"https://www.w3.org/TR/2014/WD-dwbp-ucr-20141014/","title":"Data on the Web Best Practices Use Cases & Requirements","rawDate":"2014-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150224":{"authors":["Deirdre Lee","Bernadette Farias Loscio","Phil Archer"],"href":"https://www.w3.org/TR/2015/NOTE-dwbp-ucr-20150224/","title":"Data on the Web Best Practices Use Cases & Requirements","rawDate":"2015-02-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/dwbp/usecasesv1.html","repository":"https://github.com/w3c/dwbp"},"dx-prof":{"authors":["Nicholas Car"],"href":"https://www.w3.org/TR/dx-prof/","title":"The Profiles Vocabulary","rawDate":"2019-12-18","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dxwg/prof/","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181218":{"authors":["Rob Atkinson","Nicholas Car"],"href":"https://www.w3.org/TR/2018/WD-dx-prof-20181218/","title":"The Profiles Ontology","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190402":{"authors":["Nicholas Car"],"href":"https://www.w3.org/TR/2019/WD-dx-prof-20190402/","title":"The Profiles Vocabulary","rawDate":"2019-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191218":{"authors":["Nicholas Car"],"href":"https://www.w3.org/TR/2019/NOTE-dx-prof-20191218/","title":"The Profiles Vocabulary","rawDate":"2019-12-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dxwg"},"dx-prof-conneg":{"authors":["Lars G. Svensson","Rob Atkinson","Nicholas Car"],"href":"https://www.w3.org/TR/dx-prof-conneg/","title":"Content Negotiation by Profile","rawDate":"2023-10-02","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/dx-connegp/connegp/","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181218":{"authors":["Lars G. Svensson","Rob Atkinson","Nicholas Car"],"href":"https://www.w3.org/TR/2018/WD-dx-prof-conneg-20181218/","title":"Content Negotiation by Profile","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190430":{"authors":["Lars G. Svensson","Rob Atkinson","Nicholas Car"],"href":"https://www.w3.org/TR/2019/WD-dx-prof-conneg-20190430/","title":"Content Negotiation by Profile","rawDate":"2019-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191126":{"authors":["Lars G. Svensson","Nicholas Car"],"href":"https://www.w3.org/TR/2019/WD-dx-prof-conneg-20191126/","title":"Content Negotiation by Profile","rawDate":"2019-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231002":{"authors":["Lars G. Svensson","Rob Atkinson","Nicholas Car"],"href":"https://www.w3.org/TR/2023/WD-dx-prof-conneg-20231002/","title":"Content Negotiation by Profile","rawDate":"2023-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dxwg"},"edge-arch":{"versions":{"20010804":{"status":"NOTE","rawDate":"2001-08-04","href":"https://www.w3.org/TR/2001/NOTE-edge-arch-20010804","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/edge-arch","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-08-04","title":"Edge Architecture Specification 1.0"},"edge-cloud-reqs":{"authors":["Dapeng(Max) Liu","Michael McCool","Song XU"],"href":"https://www.w3.org/TR/edge-cloud-reqs/","title":"Client-Edge-Cloud coordination Use Cases and Requirements","rawDate":"2023-09-26","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/edge-computing-web-exploration/","deliveredBy":["https://www.w3.org/web-networks/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230926":{"authors":["Dapeng(Max) Liu","Michael McCool","Song XU"],"href":"https://www.w3.org/TR/2023/DNOTE-edge-cloud-reqs-20230926/","title":"Client-Edge-Cloud coordination Use Cases and Requirements","rawDate":"2023-09-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/web-networks/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/edge-computing-web-exploration"},"edit-context":{"authors":["alex keng"],"href":"https://www.w3.org/TR/edit-context/","title":"EditContext API","rawDate":"2021-12-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/edit-context/","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211221":{"authors":["alex keng"],"href":"https://www.w3.org/TR/2021/WD-edit-context-20211221/","title":"EditContext API","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/edit-context"},"egov-improving":{"authors":["Suzanne Acar","José Manuel Alonso","Kevin Novak"],"href":"https://www.w3.org/TR/egov-improving/","title":"Improving Access to Government through Better Use of the Web","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/egov/IG/"],"versions":{"20090310":{"status":"WD","rawDate":"2009-03-10","href":"https://www.w3.org/TR/2009/WD-egov-improving-20090310/","source":"./data/w3c-specs.txt"},"20090512":{"authors":["Suzanne Acar","José Manuel Alonso","Kevin Novak"],"href":"https://www.w3.org/TR/2009/NOTE-egov-improving-20090512/","title":"Improving Access to Government through Better Use of the Web","rawDate":"2009-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/egov/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-05-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"elreq":{"authors":["Daniel Mekonnen","Richard Ishida"],"href":"https://www.w3.org/TR/elreq/","title":"Ethiopic Layout Requirements","rawDate":"2020-05-26","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/elreq/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160908":{"authors":["Daniel Mekonnen"],"href":"https://www.w3.org/TR/2016/WD-elreq-20160908/","title":"Ethiopic Layout Requirements","rawDate":"2016-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161017":{"href":"https://www.w3.org/TR/2016/WD-elreq-20161017/","title":"Ethiopic Layout Requirements","rawDate":"2016-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161102":{"href":"https://www.w3.org/TR/2016/WD-elreq-20161102/","title":"Ethiopic Layout Requirements","rawDate":"2016-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161115":{"href":"https://www.w3.org/TR/2016/WD-elreq-20161115/","title":"Ethiopic Layout Requirements","rawDate":"2016-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200526":{"authors":["Daniel Mekonnen","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-elreq-20200526/","title":"Ethiopic Layout Requirements","rawDate":"2020-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/elreq"},"elreq-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/elreq-gap/","title":"Ethiopic Layout Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/elreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200611":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-elreq-gap-20200611/","title":"Ethiopic Layout Gap Analysis","rawDate":"2020-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-elreq-gap-20210126/","title":"Ethiopic Layout Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210524":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-elreq-gap-20210524/","title":"Ethiopic Layout Gap Analysis","rawDate":"2021-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-elreq-gap-20230614/","title":"Ethiopic Layout Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-elreq-gap-20231004/","title":"Ethiopic Layout Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/elreq"},"eme-initdata-cenc":{"authors":["David Dorwin","Adrian Bateman","Mark Watson","Jerry Smith"],"href":"https://www.w3.org/TR/eme-initdata-cenc/","title":"\"cenc\" Initialization Data Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/initdata/cenc.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson","Jerry Smith"],"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160510/","title":"\"cenc\" Initialization Data Format","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160831/","title":"\"cenc\" Initialization Data Format","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160907/","title":"\"cenc\" Initialization Data Format","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-cenc-20160915/","title":"\"cenc\" Initialization Data Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"eme-initdata-keyids":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/eme-initdata-keyids/","title":"\"keyids\" Initialization Data Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/initdata/keyids.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160510/","title":"\"keyids\" Initialization Data Format","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160831/","title":"\"keyids\" Initialization Data Format","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160907/","title":"\"keyids\" Initialization Data Format","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-keyids-20160915/","title":"\"keyids\" Initialization Data Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"eme-initdata-registry":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/eme-initdata-registry/","title":"Encrypted Media Extensions Initialization Data Format Registry","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/initdata/","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-registry-20160510/","title":"Encrypted Media Extensions Initialization Data Format Registry","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-registry-20160831/","title":"Encrypted Media Extensions Initialization Data Format Registry","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-registry-20160907/","title":"Encrypted Media Extensions Initialization Data Format Registry","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-registry-20160915/","title":"Encrypted Media Extensions Initialization Data Format Registry","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"eme-initdata-webm":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/eme-initdata-webm/","title":"\"webm\" Initialization Data Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/initdata/webm.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160510/","title":"\"webm\" Initialization Data Format","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160831/","title":"\"webm\" Initialization Data Format","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160907/","title":"\"webm\" Initialization Data Format","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-initdata-webm-20160915/","title":"\"webm\" Initialization Data Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"eme-stream-mp4":{"authors":["David Dorwin","Adrian Bateman","Mark Watson","Jerry Smith"],"href":"https://www.w3.org/TR/eme-stream-mp4/","title":"ISO Common Encryption ('cenc') Protection Scheme for ISO Base Media File Format Stream Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/stream/mp4.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson","Jerry Smith"],"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160510/","title":"ISO Common Encryption ('cenc') Protection Scheme for ISO Base Media File Format Stream Format","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160831/","title":"ISO Common Encryption ('cenc') Protection Scheme for ISO Base Media File Format Stream Format","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160907/","title":"ISO Common Encryption ('cenc') Protection Scheme for ISO Base Media File Format Stream Format","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-mp4-20160915/","title":"ISO Common Encryption ('cenc') Protection Scheme for ISO Base Media File Format Stream Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"eme-stream-registry":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/eme-stream-registry/","title":"Encrypted Media Extensions Stream Format Registry","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/stream/","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-registry-20160510/","title":"Encrypted Media Extensions Stream Format Registry","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-registry-20160831/","title":"Encrypted Media Extensions Stream Format Registry","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-registry-20160907/","title":"Encrypted Media Extensions Stream Format Registry","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-registry-20160915/","title":"Encrypted Media Extensions Stream Format Registry","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"eme-stream-webm":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/eme-stream-webm/","title":"WebM Stream Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/encrypted-media/format-registry/stream/webm.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160510/","title":"WebM Stream Format","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160831/","title":"WebM Stream Format","rawDate":"2016-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160907/","title":"WebM Stream Format","rawDate":"2016-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"href":"https://www.w3.org/TR/2016/NOTE-eme-stream-webm-20160915/","title":"WebM Stream Format","rawDate":"2016-09-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/encrypted-media"},"emma":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/emma/","title":"EMMA: Extensible MultiModal Annotation markup language","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"hasErrata":"https://www.w3.org/2009/02/emma-errata.html","versions":{"20030811":{"status":"WD","rawDate":"2003-08-11","href":"https://www.w3.org/TR/2003/WD-emma-20030811/","source":"./data/w3c-specs.txt"},"20031218":{"status":"WD","rawDate":"2003-12-18","href":"https://www.w3.org/TR/2003/WD-emma-20031218/","source":"./data/w3c-specs.txt"},"20040901":{"status":"WD","rawDate":"2004-09-01","href":"https://www.w3.org/TR/2004/WD-emma-20040901/","source":"./data/w3c-specs.txt"},"20041214":{"status":"WD","rawDate":"2004-12-14","href":"https://www.w3.org/TR/2004/WD-emma-20041214/","source":"./data/w3c-specs.txt"},"20050916":{"status":"WD","rawDate":"2005-09-16","href":"https://www.w3.org/TR/2005/WD-emma-20050916/","source":"./data/w3c-specs.txt"},"20070409":{"status":"WD","rawDate":"2007-04-09","href":"https://www.w3.org/TR/2007/WD-emma-20070409/","source":"./data/w3c-specs.txt"},"20071211":{"status":"CR","rawDate":"2007-12-11","href":"https://www.w3.org/TR/2007/CR-emma-20071211/","source":"./data/w3c-specs.txt"},"20081215":{"status":"PR","rawDate":"2008-12-15","href":"https://www.w3.org/TR/2008/PR-emma-20081215/","source":"./data/w3c-specs.txt"},"20090210":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/2009/REC-emma-20090210/","title":"EMMA: Extensible MultiModal Annotation markup language","rawDate":"2009-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"hasErrata":"https://www.w3.org/2009/02/emma-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"emma-usecases":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/emma-usecases/","title":"Use Cases for Possible Future EMMA Features","rawDate":"2009-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091215":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/2009/NOTE-emma-usecases-20091215/","title":"Use Cases for Possible Future EMMA Features","rawDate":"2009-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"emma11":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/emma11/","title":"EMMA: Extensible MultiModal Annotation markup language Version 1.1","rawDate":"2013-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120209":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/2012/WD-emma11-20120209/","title":"EMMA: Extensible MultiModal Annotation markup language Version 1.1","rawDate":"2012-02-09","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130627":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/2013/WD-emma11-20130627/","title":"EMMA: Extensible MultiModal Annotation markup language Version 1.1","rawDate":"2013-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"emma20":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/emma20/","title":"EMMA: Extensible MultiModal Annotation markup language Version 2.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/emma/emma2_0/emma_2_0_editor_draft.html","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150908":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/2015/WD-emma20-20150908/","title":"EMMA: Extensible MultiModal Annotation markup language Version 2.0","rawDate":"2015-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Michael Johnston"],"href":"https://www.w3.org/TR/2017/NOTE-emma20-20170202/","title":"EMMA: Extensible MultiModal Annotation markup language Version 2.0","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/emma"},"emotion-voc":{"authors":["Felix Burkhardt","Marc Schröder","Catherine Pelachaud"],"href":"https://www.w3.org/TR/emotion-voc/","title":"Vocabularies for EmotionML","rawDate":"2014-04-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110407":{"status":"WD","rawDate":"2011-04-07","href":"https://www.w3.org/TR/2011/WD-emotion-voc-20110407/","source":"./data/w3c-specs.txt"},"20120510":{"authors":["Marc Schröder","CATHERINE PELACHAUD"],"href":"https://www.w3.org/TR/2012/NOTE-emotion-voc-20120510/","title":"Vocabularies for EmotionML","rawDate":"2012-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140401":{"authors":["Felix Burkhardt","Marc Schröder","Catherine Pelachaud"],"href":"https://www.w3.org/TR/2014/NOTE-emotion-voc-20140401/","title":"Vocabularies for EmotionML","rawDate":"2014-04-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"emotionml":{"authors":["Felix Burkhardt","Marc Schröder"],"href":"https://www.w3.org/TR/emotionml/","title":"Emotion Markup Language (EmotionML) 1.0","rawDate":"2014-05-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-emotionml-20091029/","source":"./data/w3c-specs.txt"},"20100729":{"status":"WD","rawDate":"2010-07-29","href":"https://www.w3.org/TR/2010/WD-emotionml-20100729/","source":"./data/w3c-specs.txt"},"20110407":{"status":"WD","rawDate":"2011-04-07","href":"https://www.w3.org/TR/2011/WD-emotionml-20110407/","source":"./data/w3c-specs.txt"},"20120510":{"status":"CR","rawDate":"2012-05-10","href":"https://www.w3.org/TR/2012/CR-emotionml-20120510/","source":"./data/w3c-specs.txt"},"20130416":{"authors":["Felix Burkhardt","Marc Schröder"],"href":"https://www.w3.org/TR/2013/PR-emotionml-20130416/","title":"Emotion Markup Language (EmotionML) 1.0","rawDate":"2013-04-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140522":{"authors":["Felix Burkhardt","Marc Schröder"],"href":"https://www.w3.org/TR/2014/REC-emotionml-20140522/","title":"Emotion Markup Language (EmotionML) 1.0","rawDate":"2014-05-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"encoding-20140128":{"authors":["Anne van Kesteren","Joshua Bell","Addison Phillips"],"href":"https://www.w3.org/TR/2014/WD-encoding-20140128/","title":"Encoding","rawDate":"2014-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"encoding-20140603":{"authors":["Anne van Kesteren","Joshua Bell","Addison Phillips"],"href":"https://www.w3.org/TR/2014/WD-encoding-20140603/","title":"Encoding","rawDate":"2014-06-03","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"encoding-20140916":{"authors":["Anne van Kesteren","Joshua Bell","Addison Phillips"],"href":"https://www.w3.org/TR/2014/CR-encoding-20140916/","title":"Encoding","rawDate":"2014-09-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"encoding-20151020":{"authors":["Anne van Kesteren","Joshua Bell","Addison Phillips"],"href":"https://www.w3.org/TR/2015/CR-encoding-20151020/","title":"Encoding","rawDate":"2015-10-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"encoding-20161110":{"authors":["Anne van Kesteren","Joshua Bell","Addison Phillips"],"href":"https://www.w3.org/TR/2016/CR-encoding-20161110/","title":"Encoding","rawDate":"2016-11-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"encoding-20161215":{"authors":["Anne van Kesteren","Joshua Bell","Addison Phillips"],"href":"https://www.w3.org/TR/2016/CR-encoding-20161215/","title":"Encoding","rawDate":"2016-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"encrypted-media":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/encrypted-media/","title":"Encrypted Media Extensions","rawDate":"2017-09-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130510":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2013/WD-encrypted-media-20130510/","title":"Encrypted Media Extensions","rawDate":"2013-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2013/WD-encrypted-media-20131022/","title":"Encrypted Media Extensions","rawDate":"2013-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140218":{"authors":["David Dorwin","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2014/WD-encrypted-media-20140218/","title":"Encrypted Media Extensions","rawDate":"2014-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140828":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2014/WD-encrypted-media-20140828/","title":"Encrypted Media Extensions","rawDate":"2014-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150331":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20150331/","title":"Encrypted Media Extensions","rawDate":"2015-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150928":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20150928/","title":"Encrypted Media Extensions","rawDate":"2015-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151010":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20151010/","title":"Encrypted Media Extensions","rawDate":"2015-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151019":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20151019/","title":"Encrypted Media Extensions","rawDate":"2015-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151027":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20151027/","title":"Encrypted Media Extensions","rawDate":"2015-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151116":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20151116/","title":"Encrypted Media Extensions","rawDate":"2015-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151120":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20151120/","title":"Encrypted Media Extensions","rawDate":"2015-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151130":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/WD-encrypted-media-20151130/","title":"Encrypted Media Extensions","rawDate":"2015-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160122":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160122/","title":"Encrypted Media Extensions","rawDate":"2016-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160202":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160202/","title":"Encrypted Media Extensions","rawDate":"2016-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160204/","title":"Encrypted Media Extensions","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160208":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160208/","title":"Encrypted Media Extensions","rawDate":"2016-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160209":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160209/","title":"Encrypted Media Extensions","rawDate":"2016-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160216":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160216/","title":"Encrypted Media Extensions","rawDate":"2016-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160218":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160218/","title":"Encrypted Media Extensions","rawDate":"2016-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160225/","title":"Encrypted Media Extensions","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160227":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160227/","title":"Encrypted Media Extensions","rawDate":"2016-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160325":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160325/","title":"Encrypted Media Extensions","rawDate":"2016-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160328":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160328/","title":"Encrypted Media Extensions","rawDate":"2016-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160329/","title":"Encrypted Media Extensions","rawDate":"2016-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160330":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160330/","title":"Encrypted Media Extensions","rawDate":"2016-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160404":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160404/","title":"Encrypted Media Extensions","rawDate":"2016-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160412":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160412/","title":"Encrypted Media Extensions","rawDate":"2016-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160414":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160414/","title":"Encrypted Media Extensions","rawDate":"2016-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160416":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160416/","title":"Encrypted Media Extensions","rawDate":"2016-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160421/","title":"Encrypted Media Extensions","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160426":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160426/","title":"Encrypted Media Extensions","rawDate":"2016-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160428":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160428/","title":"Encrypted Media Extensions","rawDate":"2016-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160429":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160429/","title":"Encrypted Media Extensions","rawDate":"2016-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160514":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160514/","title":"Encrypted Media Extensions","rawDate":"2016-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160517/","title":"Encrypted Media Extensions","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160518":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160518/","title":"Encrypted Media Extensions","rawDate":"2016-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160520":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160520/","title":"Encrypted Media Extensions","rawDate":"2016-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160527":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160527/","title":"Encrypted Media Extensions","rawDate":"2016-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160531/","title":"Encrypted Media Extensions","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160601":{"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160601/","title":"Encrypted Media Extensions","rawDate":"2016-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160602":{"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160602/","title":"Encrypted Media Extensions","rawDate":"2016-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160603":{"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160603/","title":"Encrypted Media Extensions","rawDate":"2016-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160609":{"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160609/","title":"Encrypted Media Extensions","rawDate":"2016-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160610":{"href":"https://www.w3.org/TR/2016/WD-encrypted-media-20160610/","title":"Encrypted Media Extensions","rawDate":"2016-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/CR-encrypted-media-20160705/","title":"Encrypted Media Extensions","rawDate":"2016-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170316":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2017/PR-encrypted-media-20170316/","title":"Encrypted Media Extensions","rawDate":"2017-03-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170918":{"authors":["David Dorwin","Jerry Smith","Mark Watson","Adrian Bateman"],"href":"https://www.w3.org/TR/2017/REC-encrypted-media-20170918/","title":"Encrypted Media Extensions","rawDate":"2017-09-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"hasErrata":"https://github.com/w3c/encrypted-media/commits/V1/encrypted-media-respec.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/encrypted-media/","hasErrata":"https://github.com/w3c/encrypted-media/commits/V1/encrypted-media-respec.html","repository":"https://github.com/w3c/encrypted-media"},"eo-qb":{"authors":["Dmitry Brizhinev","Sam Toyer","Kerry Taylor"],"href":"https://www.w3.org/TR/eo-qb/","title":"Publishing and Using Earth Observation Data with the RDF Data Cube and the Discrete Global Grid System","rawDate":"2017-09-28","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/eo-qb/","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170105":{"authors":["Dmitry Brizhinev","Sam Toyer","Kerry Taylor"],"href":"https://www.w3.org/TR/2017/NOTE-eo-qb-20170105/","title":"Publishing and Using Earth Observation Data with the RDF Data Cube and the Discrete Global Grid System","rawDate":"2017-01-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170928":{"authors":["Dmitry Brizhinev","Sam Toyer","Kerry Taylor"],"href":"https://www.w3.org/TR/2017/NOTE-eo-qb-20170928/","title":"Publishing and Using Earth Observation Data with the RDF Data Cube and the Discrete Global Grid System","rawDate":"2017-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"epr":{"authors":["Mike West"],"href":"https://www.w3.org/TR/epr/","title":"Entry Point Regulation","rawDate":"2016-09-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-epr/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150609":{"authors":["David Ross","Mike West"],"href":"https://www.w3.org/TR/2015/WD-epr-20150609/","title":"Entry Point Regulation","rawDate":"2015-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/NOTE-epr-20160913/","title":"Entry Point Regulation","rawDate":"2016-09-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/webappsec-epr","isRetired":true},"epub-33":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/epub-33/","title":"EPUB 3.3","rawDate":"2023-05-25","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/core/","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210112":{"authors":["Garth Conboy","Dave Cramer","Marisa DeMeglio","Matt Garrish","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210112/","title":"EPUB 3.3","rawDate":"2021-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210223":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210223/","title":"EPUB 3.3","rawDate":"2021-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210224":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210224/","title":"EPUB 3.3","rawDate":"2021-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210406":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210406/","title":"EPUB 3.3","rawDate":"2021-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210525/","title":"EPUB 3.3","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210712/","title":"EPUB 3.3","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210825/","title":"EPUB 3.3","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210831/","title":"EPUB 3.3","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210903/","title":"EPUB 3.3","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210909":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210909/","title":"EPUB 3.3","rawDate":"2021-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210914/","title":"EPUB 3.3","rawDate":"2021-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210917":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210917/","title":"EPUB 3.3","rawDate":"2021-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210921/","title":"EPUB 3.3","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210928/","title":"EPUB 3.3","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20210929/","title":"EPUB 3.3","rawDate":"2021-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211010":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211010/","title":"EPUB 3.3","rawDate":"2021-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211012/","title":"EPUB 3.3","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211013/","title":"EPUB 3.3","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211014":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211014/","title":"EPUB 3.3","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211019":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211019/","title":"EPUB 3.3","rawDate":"2021-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211021":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211021/","title":"EPUB 3.3","rawDate":"2021-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211025/","title":"EPUB 3.3","rawDate":"2021-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211026/","title":"EPUB 3.3","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211029/","title":"EPUB 3.3","rawDate":"2021-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211101/","title":"EPUB 3.3","rawDate":"2021-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211104":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211104/","title":"EPUB 3.3","rawDate":"2021-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211109":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211109/","title":"EPUB 3.3","rawDate":"2021-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211110":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211110/","title":"EPUB 3.3","rawDate":"2021-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211112":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211112/","title":"EPUB 3.3","rawDate":"2021-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211113":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211113/","title":"EPUB 3.3","rawDate":"2021-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211117/","title":"EPUB 3.3","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211118":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211118/","title":"EPUB 3.3","rawDate":"2021-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211119/","title":"EPUB 3.3","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211120":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211120/","title":"EPUB 3.3","rawDate":"2021-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211123/","title":"EPUB 3.3","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211124":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211124/","title":"EPUB 3.3","rawDate":"2021-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211125/","title":"EPUB 3.3","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211201":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211201/","title":"EPUB 3.3","rawDate":"2021-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211203/","title":"EPUB 3.3","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211206":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211206/","title":"EPUB 3.3","rawDate":"2021-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211207/","title":"EPUB 3.3","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211208/","title":"EPUB 3.3","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211218":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-33-20211218/","title":"EPUB 3.3","rawDate":"2021-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220112":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220112/","title":"EPUB 3.3","rawDate":"2022-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220119/","title":"EPUB 3.3","rawDate":"2022-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220126/","title":"EPUB 3.3","rawDate":"2022-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220204":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220204/","title":"EPUB 3.3","rawDate":"2022-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220211":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220211/","title":"EPUB 3.3","rawDate":"2022-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220216/","title":"EPUB 3.3","rawDate":"2022-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220221":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220221/","title":"EPUB 3.3","rawDate":"2022-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220223/","title":"EPUB 3.3","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220225/","title":"EPUB 3.3","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220301":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220301/","title":"EPUB 3.3","rawDate":"2022-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220302":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220302/","title":"EPUB 3.3","rawDate":"2022-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220304":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220304/","title":"EPUB 3.3","rawDate":"2022-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220307/","title":"EPUB 3.3","rawDate":"2022-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220308":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220308/","title":"EPUB 3.3","rawDate":"2022-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220309":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220309/","title":"EPUB 3.3","rawDate":"2022-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220310/","title":"EPUB 3.3","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220311":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220311/","title":"EPUB 3.3","rawDate":"2022-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220312":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220312/","title":"EPUB 3.3","rawDate":"2022-03-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220313":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220313/","title":"EPUB 3.3","rawDate":"2022-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220315":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220315/","title":"EPUB 3.3","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220316/","title":"EPUB 3.3","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220317":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220317/","title":"EPUB 3.3","rawDate":"2022-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220318":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220318/","title":"EPUB 3.3","rawDate":"2022-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220320":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220320/","title":"EPUB 3.3","rawDate":"2022-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220321/","title":"EPUB 3.3","rawDate":"2022-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220322":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220322/","title":"EPUB 3.3","rawDate":"2022-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220323":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220323/","title":"EPUB 3.3","rawDate":"2022-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220324/","title":"EPUB 3.3","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220325":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220325/","title":"EPUB 3.3","rawDate":"2022-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220327":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220327/","title":"EPUB 3.3","rawDate":"2022-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220328/","title":"EPUB 3.3","rawDate":"2022-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220329":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220329/","title":"EPUB 3.3","rawDate":"2022-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220330/","title":"EPUB 3.3","rawDate":"2022-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220331/","title":"EPUB 3.3","rawDate":"2022-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220401":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220401/","title":"EPUB 3.3","rawDate":"2022-04-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220402":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220402/","title":"EPUB 3.3","rawDate":"2022-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220403":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220403/","title":"EPUB 3.3","rawDate":"2022-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220404":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220404/","title":"EPUB 3.3","rawDate":"2022-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-33-20220420/","title":"EPUB 3.3","rawDate":"2022-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220512":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CR-epub-33-20220512/","title":"EPUB 3.3","rawDate":"2022-05-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220517/","title":"EPUB 3.3","rawDate":"2022-05-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220519/","title":"EPUB 3.3","rawDate":"2022-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220601":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220601/","title":"EPUB 3.3","rawDate":"2022-06-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220607/","title":"EPUB 3.3","rawDate":"2022-06-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220610/","title":"EPUB 3.3","rawDate":"2022-06-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220617/","title":"EPUB 3.3","rawDate":"2022-06-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220620":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220620/","title":"EPUB 3.3","rawDate":"2022-06-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220622":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220622/","title":"EPUB 3.3","rawDate":"2022-06-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220624/","title":"EPUB 3.3","rawDate":"2022-06-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220804":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220804/","title":"EPUB 3.3","rawDate":"2022-08-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220806":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220806/","title":"EPUB 3.3","rawDate":"2022-08-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220807":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220807/","title":"EPUB 3.3","rawDate":"2022-08-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220810/","title":"EPUB 3.3","rawDate":"2022-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220827":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220827/","title":"EPUB 3.3","rawDate":"2022-08-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220830":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220830/","title":"EPUB 3.3","rawDate":"2022-08-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220906/","title":"EPUB 3.3","rawDate":"2022-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220908/","title":"EPUB 3.3","rawDate":"2022-09-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220914":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220914/","title":"EPUB 3.3","rawDate":"2022-09-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220916/","title":"EPUB 3.3","rawDate":"2022-09-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220920/","title":"EPUB 3.3","rawDate":"2022-09-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20220921/","title":"EPUB 3.3","rawDate":"2022-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221003/","title":"EPUB 3.3","rawDate":"2022-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221016":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221016/","title":"EPUB 3.3","rawDate":"2022-10-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221017/","title":"EPUB 3.3","rawDate":"2022-10-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221019/","title":"EPUB 3.3","rawDate":"2022-10-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221101/","title":"EPUB 3.3","rawDate":"2022-11-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221102":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221102/","title":"EPUB 3.3","rawDate":"2022-11-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221124":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221124/","title":"EPUB 3.3","rawDate":"2022-11-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221202":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221202/","title":"EPUB 3.3","rawDate":"2022-12-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221206":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221206/","title":"EPUB 3.3","rawDate":"2022-12-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221209/","title":"EPUB 3.3","rawDate":"2022-12-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221211":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221211/","title":"EPUB 3.3","rawDate":"2022-12-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221214":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221214/","title":"EPUB 3.3","rawDate":"2022-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221230":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-33-20221230/","title":"EPUB 3.3","rawDate":"2022-12-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-33-20230104/","title":"EPUB 3.3","rawDate":"2023-01-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230119":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-33-20230119/","title":"EPUB 3.3","rawDate":"2023-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230203":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-33-20230203/","title":"EPUB 3.3","rawDate":"2023-02-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-33-20230209/","title":"EPUB 3.3","rawDate":"2023-02-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230221":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CR-epub-33-20230221/","title":"EPUB 3.3","rawDate":"2023-02-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/2023/PR-epub-33-20230413/","title":"EPUB 3.3","rawDate":"2023-04-13","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230525":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/2023/REC-epub-33-20230525/","title":"EPUB 3.3","rawDate":"2023-05-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-a11y-11":{"authors":["George Kerscher","Matt Garrish","Charles LaPierre","Avneesh Singh","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/epub-a11y-11/","title":"EPUB Accessibility 1.1","rawDate":"2023-05-25","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/a11y/","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210223":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210223/","title":"EPUB Accessibility 1.1","rawDate":"2021-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210406":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210406/","title":"EPUB Accessibility 1.1","rawDate":"2021-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210525/","title":"EPUB Accessibility 1.1","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210712/","title":"EPUB Accessibility 1.1","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210825/","title":"EPUB Accessibility 1.1","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210903/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210908/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210909":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210909/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210914/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210915":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210915/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210917":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210917/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210921/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210922":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210922/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210927":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210927/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210928/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20210929/","title":"EPUB Accessibility 1.1","rawDate":"2021-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211001":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211001/","title":"EPUB Accessibility 1.1","rawDate":"2021-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211004":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211004/","title":"EPUB Accessibility 1.1","rawDate":"2021-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211007/","title":"EPUB Accessibility 1.1","rawDate":"2021-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211013/","title":"EPUB Accessibility 1.1","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211025/","title":"EPUB Accessibility 1.1","rawDate":"2021-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211029/","title":"EPUB Accessibility 1.1","rawDate":"2021-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211101/","title":"EPUB Accessibility 1.1","rawDate":"2021-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211111":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211111/","title":"EPUB Accessibility 1.1","rawDate":"2021-11-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211123/","title":"EPUB Accessibility 1.1","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211125/","title":"EPUB Accessibility 1.1","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-11-20211208/","title":"EPUB Accessibility 1.1","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220221":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220221/","title":"EPUB Accessibility 1.1","rawDate":"2022-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220225/","title":"EPUB Accessibility 1.1","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220301":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220301/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220310/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220322":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220322/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220323":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220323/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220328/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220330/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220331/","title":"EPUB Accessibility 1.1","rawDate":"2022-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220401":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220401/","title":"EPUB Accessibility 1.1","rawDate":"2022-04-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/WD-epub-a11y-11-20220420/","title":"EPUB Accessibility 1.1","rawDate":"2022-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220512":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CR-epub-a11y-11-20220512/","title":"EPUB Accessibility 1.1","rawDate":"2022-05-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220517/","title":"EPUB Accessibility 1.1","rawDate":"2022-05-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220519/","title":"EPUB Accessibility 1.1","rawDate":"2022-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220520":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220520/","title":"EPUB Accessibility 1.1","rawDate":"2022-05-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220522":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220522/","title":"EPUB Accessibility 1.1","rawDate":"2022-05-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220607/","title":"EPUB Accessibility 1.1","rawDate":"2022-06-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220724/","title":"EPUB Accessibility 1.1","rawDate":"2022-07-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220810/","title":"EPUB Accessibility 1.1","rawDate":"2022-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220827":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220827/","title":"EPUB Accessibility 1.1","rawDate":"2022-08-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220906/","title":"EPUB Accessibility 1.1","rawDate":"2022-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220908/","title":"EPUB Accessibility 1.1","rawDate":"2022-09-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220914":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20220914/","title":"EPUB Accessibility 1.1","rawDate":"2022-09-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221124":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20221124/","title":"EPUB Accessibility 1.1","rawDate":"2022-11-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221216":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/CRD-epub-a11y-11-20221216/","title":"EPUB Accessibility 1.1","rawDate":"2022-12-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230123":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230123/","title":"EPUB Accessibility 1.1","rawDate":"2023-01-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230203":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230203/","title":"EPUB Accessibility 1.1","rawDate":"2023-02-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230204":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230204/","title":"EPUB Accessibility 1.1","rawDate":"2023-02-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/CRD-epub-a11y-11-20230209/","title":"EPUB Accessibility 1.1","rawDate":"2023-02-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230221":{"authors":["George Kerscher","Matt Garrish","Charles LaPierre","Avneesh Singh","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/CR-epub-a11y-11-20230221/","title":"EPUB Accessibility 1.1","rawDate":"2023-02-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["George Kerscher","Matt Garrish","Charles LaPierre","Avneesh Singh","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/PR-epub-a11y-11-20230413/","title":"EPUB Accessibility 1.1","rawDate":"2023-04-13","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230525":{"authors":["George Kerscher","Matt Garrish","Charles LaPierre","Avneesh Singh","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/REC-epub-a11y-11-20230525/","title":"EPUB Accessibility 1.1","rawDate":"2023-05-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-a11y-eaa-mapping":{"authors":["Cristina Mussinelli","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/epub-a11y-eaa-mapping/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-12-27","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/epub-a11y-eaa-mapping/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210629":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20210629/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20210903/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20210914/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20210921/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20210928/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20210929/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20211007/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-10-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20211013/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20211025/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-10-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20211101/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20211125/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-eaa-mapping-20211208/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2021-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220310/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220330/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220331/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220419":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220419/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220517/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220519/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220724/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-eaa-mapping-20220810/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230113/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230329/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-03-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230330/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230402":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230402/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230510/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Cristina Mussinelli","Luc Audrain","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20230519/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Cristina Mussinelli","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20231221/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231227":{"authors":["Cristina Mussinelli","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-eaa-mapping-20231227/","title":"EPUB Accessibility - EU Accessibility Act Mapping","rawDate":"2023-12-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-a11y-exemption":{"authors":["Matt Garrish","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/epub-a11y-exemption/","title":"The EPUB Accessibility exemption property","rawDate":"2023-12-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/a11y-exemption/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20231003":{"authors":["Matt Garrish","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-exemption-20231003/","title":"The EPUB Accessibility exemption property","rawDate":"2023-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231215":{"authors":["Matt Garrish","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-exemption-20231215/","title":"The EPUB Accessibility exemption property","rawDate":"2023-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-a11y-tech-11":{"authors":["George Kerscher","Matt Garrish","Charles LaPierre","Avneesh Singh","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/epub-a11y-tech-11/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/a11y-tech/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210223":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210223/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-02-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210525/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-05-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/WD-epub-a11y-tech-11-20210712/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210825/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210903/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210914/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210921/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210928/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210929/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210930/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211007/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-10-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211013/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211025/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-10-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211029/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-10-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211101/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211122":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211122/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211123/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211125/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20211208/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2021-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220310/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220328/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-03-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220330/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220331/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220420/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-04-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220517/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220519/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220520":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220520/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-05-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220607/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-06-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220610/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-06-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220724/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220804":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220804/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-08-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220810/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220827":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220827/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-08-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220913":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2022/NOTE-epub-a11y-tech-11-20220913/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2022-09-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230113/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230201/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230222/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-02-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230330/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230402":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230402/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230404":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230404/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-04-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230510/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Matt Garrish","George Kerscher","Charles LaPierre","Gregorio Pellegrino","Avneesh Singh"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20230519/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["George Kerscher","Matt Garrish","Charles LaPierre","Avneesh Singh","Gregorio Pellegrino"],"href":"https://www.w3.org/TR/2023/NOTE-epub-a11y-tech-11-20231221/","title":"EPUB Accessibility Techniques 1.1","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-aria-authoring-11":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/epub-aria-authoring-11/","title":"EPUB Type to ARIA Role Authoring Guide 1.1","rawDate":"2023-03-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/epub-aria-authoring/","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230314":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-aria-authoring-11-20230314/","title":"EPUB Type to ARIA Role Authoring Guide 1.1","rawDate":"2023-03-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-multi-rend-11":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/epub-multi-rend-11/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/multi-rend/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210112":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210112/","title":"EPUB Multiple-Rendition Publications 1.1","rawDate":"2021-01-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210525/","title":"EPUB Multiple-Rendition Publications 1.1","rawDate":"2021-05-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210825/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210903/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210914/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210921/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210928/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210929/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20211013/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20211101/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20211125/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20211208/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2021-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220118":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220118/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-01-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220310/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220330/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220331/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220420/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-04-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220517/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220519/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220724/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-multi-rend-11-20220810/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230113/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230330/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230402":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230402/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230510/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20230519/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-multi-rend-11-20231221/","title":"EPUB 3 Multiple-Rendition Publications 1.1","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-overview-33":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/epub-overview-33/","title":"EPUB 3 Overview","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/overview/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210112":{"authors":["Garth Conboy","Matt Garrish","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20210112/","title":"EPUB 3 Overview","rawDate":"2021-01-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20210903/","title":"EPUB 3 Overview","rawDate":"2021-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20210914/","title":"EPUB 3 Overview","rawDate":"2021-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20210921/","title":"EPUB 3 Overview","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20210928/","title":"EPUB 3 Overview","rawDate":"2021-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20210929/","title":"EPUB 3 Overview","rawDate":"2021-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211001":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20211001/","title":"EPUB 3 Overview","rawDate":"2021-10-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20211007/","title":"EPUB 3 Overview","rawDate":"2021-10-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20211013/","title":"EPUB 3 Overview","rawDate":"2021-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish","Ivan Herman","Garth Conboy","Markus Gylling","William McCoy","Makoto Murata","Daniel Weck"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20211101/","title":"EPUB 3 Overview","rawDate":"2021-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20211125/","title":"EPUB 3 Overview","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2021/NOTE-epub-overview-33-20211208/","title":"EPUB 3 Overview","rawDate":"2021-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220118":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220118/","title":"EPUB 3 Overview","rawDate":"2022-01-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220310/","title":"EPUB 3 Overview","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220328/","title":"EPUB 3 Overview","rawDate":"2022-03-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220330/","title":"EPUB 3 Overview","rawDate":"2022-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220331/","title":"EPUB 3 Overview","rawDate":"2022-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220401":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220401/","title":"EPUB 3 Overview","rawDate":"2022-04-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220420/","title":"EPUB 3 Overview","rawDate":"2022-04-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220517/","title":"EPUB 3 Overview","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220519/","title":"EPUB 3 Overview","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220724/","title":"EPUB 3 Overview","rawDate":"2022-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2022/NOTE-epub-overview-33-20220810/","title":"EPUB 3 Overview","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230113/","title":"EPUB 3 Overview","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230330/","title":"EPUB 3 Overview","rawDate":"2023-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230402":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230402/","title":"EPUB 3 Overview","rawDate":"2023-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230510/","title":"EPUB 3 Overview","rawDate":"2023-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230518":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230518/","title":"EPUB 3 Overview","rawDate":"2023-05-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20230519/","title":"EPUB 3 Overview","rawDate":"2023-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-overview-33-20231221/","title":"EPUB 3 Overview","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-rs-33":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/epub-rs-33/","title":"EPUB Reading Systems 3.3","rawDate":"2023-05-25","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/rs/","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210112":{"authors":["Garth Conboy","Dave Cramer","Marisa DeMeglio","Matt Garrish","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210112/","title":"EPUB 3.3 Reading Systems","rawDate":"2021-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210223":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210223/","title":"EPUB 3.3 Reading Systems","rawDate":"2021-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210224":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210224/","title":"EPUB 3.3 Reading Systems","rawDate":"2021-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210406":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210406/","title":"EPUB Reading Systems 3.3","rawDate":"2021-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210525/","title":"EPUB Reading Systems 3.3","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210712/","title":"EPUB Reading Systems 3.3","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210825/","title":"EPUB Reading Systems 3.3","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210826/","title":"EPUB Reading Systems 3.3","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210831/","title":"EPUB Reading Systems 3.3","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210903/","title":"EPUB Reading Systems 3.3","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210914/","title":"EPUB Reading Systems 3.3","rawDate":"2021-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210921/","title":"EPUB Reading Systems 3.3","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210928/","title":"EPUB Reading Systems 3.3","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20210929/","title":"EPUB Reading Systems 3.3","rawDate":"2021-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211007/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211012/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211013/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211014":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211014/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211018":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211018/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211021":{"authors":["Dave Cramer","Matt Garrish","Ivan Herman","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211021/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211022":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211022/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211025/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211026/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211028":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211028/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211029/","title":"EPUB Reading Systems 3.3","rawDate":"2021-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211101/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211110":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211110/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211112":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211112/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211113":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211113/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer","Garth Conboy","Marisa DeMeglio","Daniel Weck"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211117/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211118":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211118/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211119/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211122":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211122/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211123/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211124":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211124/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211125/","title":"EPUB Reading Systems 3.3","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211201":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211201/","title":"EPUB Reading Systems 3.3","rawDate":"2021-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211207/","title":"EPUB Reading Systems 3.3","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2021/WD-epub-rs-33-20211208/","title":"EPUB Reading Systems 3.3","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220112":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220112/","title":"EPUB Reading Systems 3.3","rawDate":"2022-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220113":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220113/","title":"EPUB Reading Systems 3.3","rawDate":"2022-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220119/","title":"EPUB Reading Systems 3.3","rawDate":"2022-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220126/","title":"EPUB Reading Systems 3.3","rawDate":"2022-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220202/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220204":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220204/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220208":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220208/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220214":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220214/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220216/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220221":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220221/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220222":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220222/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220223/","title":"EPUB Reading Systems 3.3","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220302":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220302/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220304":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220304/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220309":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220309/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220310/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220315":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220315/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220317":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220317/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220322":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220322/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220325":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220325/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220328/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220329":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220329/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220330/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220331/","title":"EPUB Reading Systems 3.3","rawDate":"2022-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220401":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220401/","title":"EPUB Reading Systems 3.3","rawDate":"2022-04-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220402":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220402/","title":"EPUB Reading Systems 3.3","rawDate":"2022-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220404":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220404/","title":"EPUB Reading Systems 3.3","rawDate":"2022-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/WD-epub-rs-33-20220420/","title":"EPUB Reading Systems 3.3","rawDate":"2022-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220512":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CR-epub-rs-33-20220512/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220513":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220513/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220514":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220514/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220517/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220518":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220518/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220519/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220522":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220522/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220531":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220531/","title":"EPUB Reading Systems 3.3","rawDate":"2022-05-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220607/","title":"EPUB Reading Systems 3.3","rawDate":"2022-06-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220610/","title":"EPUB Reading Systems 3.3","rawDate":"2022-06-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220617/","title":"EPUB Reading Systems 3.3","rawDate":"2022-06-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220622":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220622/","title":"EPUB Reading Systems 3.3","rawDate":"2022-06-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220624/","title":"EPUB Reading Systems 3.3","rawDate":"2022-06-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220803/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220805":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220805/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220807":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220807/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220809/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220810/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220814":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220814/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220830":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220830/","title":"EPUB Reading Systems 3.3","rawDate":"2022-08-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220906/","title":"EPUB Reading Systems 3.3","rawDate":"2022-09-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220915":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220915/","title":"EPUB Reading Systems 3.3","rawDate":"2022-09-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220916/","title":"EPUB Reading Systems 3.3","rawDate":"2022-09-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220920/","title":"EPUB Reading Systems 3.3","rawDate":"2022-09-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220921/","title":"EPUB Reading Systems 3.3","rawDate":"2022-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20220927/","title":"EPUB Reading Systems 3.3","rawDate":"2022-09-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221003/","title":"EPUB Reading Systems 3.3","rawDate":"2022-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221015":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221015/","title":"EPUB Reading Systems 3.3","rawDate":"2022-10-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221016":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221016/","title":"EPUB Reading Systems 3.3","rawDate":"2022-10-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221017/","title":"EPUB Reading Systems 3.3","rawDate":"2022-10-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221101/","title":"EPUB Reading Systems 3.3","rawDate":"2022-11-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221109":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221109/","title":"EPUB Reading Systems 3.3","rawDate":"2022-11-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221124":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221124/","title":"EPUB Reading Systems 3.3","rawDate":"2022-11-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221206":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2022/CRD-epub-rs-33-20221206/","title":"EPUB Reading Systems 3.3","rawDate":"2022-12-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230118":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-rs-33-20230118/","title":"EPUB Reading Systems 3.3","rawDate":"2023-01-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-rs-33-20230201/","title":"EPUB Reading Systems 3.3","rawDate":"2023-02-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230203":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-rs-33-20230203/","title":"EPUB Reading Systems 3.3","rawDate":"2023-02-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Matt Garrish","Ivan Herman","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CRD-epub-rs-33-20230209/","title":"EPUB Reading Systems 3.3","rawDate":"2023-02-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230221":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/2023/CR-epub-rs-33-20230221/","title":"EPUB Reading Systems 3.3","rawDate":"2023-02-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/2023/PR-epub-rs-33-20230413/","title":"EPUB Reading Systems 3.3","rawDate":"2023-04-13","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230525":{"authors":["Ivan Herman","Matt Garrish","Dave Cramer"],"href":"https://www.w3.org/TR/2023/REC-epub-rs-33-20230525/","title":"EPUB Reading Systems 3.3","rawDate":"2023-05-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-ssv-11":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/epub-ssv-11/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/ssv/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211104":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-ssv-11-20211104/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2021-11-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211126":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-ssv-11-20211126/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2021-11-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-ssv-11-20211208/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2021-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220310/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220331/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220420/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-04-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220517/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220519/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220624/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-06-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220724/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-ssv-11-20220810/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230104/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230113/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230330/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230402":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230402/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230510/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20230519/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Ivan Herman","Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-ssv-11-20231221/","title":"EPUB 3 Structural Semantics Vocabulary 1.1","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"epub-tts-10":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/epub-tts-10/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/epub-specs/epub33/tts/","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210803":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210803/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-08-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210825/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210903/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210914":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210914/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210921/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210928/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20210929/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211007":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20211007/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-10-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20211013/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20211101/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20211125/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2021/NOTE-epub-tts-10-20211208/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2021-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220310/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220331/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220420/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-04-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220517/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220519/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220724":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220724/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-07-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2022/NOTE-epub-tts-10-20220810/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230113/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230330/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230402":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230402/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230510/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-tts-10-20230519/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/epub-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Matt Garrish"],"href":"https://www.w3.org/TR/2023/NOTE-epub-tts-10-20231221/","title":"EPUB 3 Text-to-Speech Enhancements 1.0","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pm"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/epub-specs"},"esi-invp":{"versions":{"20010804":{"status":"NOTE","rawDate":"2001-08-04","href":"https://www.w3.org/TR/2001/NOTE-esi-invp-20010804","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/esi-invp","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-08-04","title":"ESI Invalidation Protocol 1.0"},"esi-lang":{"versions":{"20010804":{"status":"NOTE","rawDate":"2001-08-04","href":"https://www.w3.org/TR/2001/NOTE-esi-lang-20010804","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/esi-lang","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-08-04","title":"ESI Language Specification 1.0"},"ethical-web-principles":{"authors":["Daniel Appelquist","Hadley Beeman","Amy Guy"],"href":"https://www.w3.org/TR/ethical-web-principles/","title":"W3C TAG Ethical Web Principles","rawDate":"2023-11-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3ctag.github.io/ethical-web-principles/","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220512":{"authors":["Daniel Appelquist","Hadley Beeman","Amy Guy"],"href":"https://www.w3.org/TR/2022/DNOTE-ethical-web-principles-20220512/","title":"W3C TAG Ethical Web Principles","rawDate":"2022-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Daniel Appelquist","Hadley Beeman","Amy Guy"],"href":"https://www.w3.org/TR/2022/DNOTE-ethical-web-principles-20221207/","title":"W3C TAG Ethical Web Principles","rawDate":"2022-12-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230906":{"authors":["Daniel Appelquist","Hadley Beeman","Amy Guy"],"href":"https://www.w3.org/TR/2023/DNOTE-ethical-web-principles-20230906/","title":"W3C TAG Ethical Web Principles","rawDate":"2023-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231107":{"authors":["Daniel Appelquist","Hadley Beeman","Amy Guy"],"href":"https://www.w3.org/TR/2023/DNOTE-ethical-web-principles-20231107/","title":"W3C TAG Ethical Web Principles","rawDate":"2023-11-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3ctag/ethical-web-principles"},"eu-conf":{"versions":{"19970711":{"status":"NOTE","rawDate":"1997-07-11","href":"https://www.w3.org/TR/NOTE-eu-conf-970711","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-eu-conf","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-07-11","title":"W3C Work Related to the Ministerial Conference"},"event-timing":{"authors":["Nicolas Pena Moreno","Tim Dresser"],"href":"https://www.w3.org/TR/event-timing/","title":"Event Timing API","rawDate":"2023-07-03","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/event-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220524":{"authors":["Nicolas Pena Moreno","Tim Dresser"],"href":"https://www.w3.org/TR/2022/WD-event-timing-20220524/","title":"Event Timing API","rawDate":"2022-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Nicolas Pena Moreno","Tim Dresser"],"href":"https://www.w3.org/TR/2023/WD-event-timing-20230703/","title":"Event Timing API","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/event-timing"},"eventsource":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/eventsource/","title":"Server-Sent Events","status":"REC","publisher":"W3C","versions":{"20090423":{"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-eventsource-20090423/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-eventsource-20091029/","source":"./data/w3c-specs.txt"},"20091222":{"status":"WD","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/WD-eventsource-20091222/","source":"./data/w3c-specs.txt"},"20110208":{"status":"WD","rawDate":"2011-02-08","href":"https://www.w3.org/TR/2011/WD-eventsource-20110208/","source":"./data/w3c-specs.txt"},"20110310":{"status":"WD","rawDate":"2011-03-10","href":"https://www.w3.org/TR/2011/WD-eventsource-20110310/","source":"./data/w3c-specs.txt"},"20111020":{"status":"WD","rawDate":"2011-10-20","href":"https://www.w3.org/TR/2011/WD-eventsource-20111020/","source":"./data/w3c-specs.txt"},"20120426":{"status":"WD","rawDate":"2012-04-26","href":"https://www.w3.org/TR/2012/WD-eventsource-20120426/","source":"./data/w3c-specs.txt"},"20121023":{"status":"WD","rawDate":"2012-10-23","href":"https://www.w3.org/TR/2012/WD-eventsource-20121023/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2012/CR-eventsource-20121211/","title":"Server-Sent Events","rawDate":"2012-12-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2014/PR-eventsource-20141209/","title":"Server-Sent Events","rawDate":"2014-12-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150203":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2015/REC-eventsource-20150203/","title":"Server-Sent Events","rawDate":"2015-02-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2021/SPSD-eventsource-20210128/","title":"Server-Sent Events","rawDate":"2021-01-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"rawDate":"2021-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://html.spec.whatwg.org/multipage/server-sent-events.html","repository":"https://github.com/whatwg/html","isRetired":true},"exi":{"authors":["John Schneider","Takuki Kamiya","Daniel Peintner","Rumen Kyusakov"],"href":"https://www.w3.org/TR/exi/","title":"Efficient XML Interchange (EXI) Format 1.0 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"hasErrata":"https://www.w3.org/XML/EXI/exi-10-errata","versions":{"20070716":{"status":"WD","rawDate":"2007-07-16","href":"https://www.w3.org/TR/2007/WD-exi-20070716/","source":"./data/w3c-specs.txt"},"20071219":{"status":"WD","rawDate":"2007-12-19","href":"https://www.w3.org/TR/2007/WD-exi-20071219/","source":"./data/w3c-specs.txt"},"20080326":{"status":"WD","rawDate":"2008-03-26","href":"https://www.w3.org/TR/2008/WD-exi-20080326/","source":"./data/w3c-specs.txt"},"20080728":{"status":"WD","rawDate":"2008-07-28","href":"https://www.w3.org/TR/2008/WD-exi-20080728/","source":"./data/w3c-specs.txt"},"20080919":{"status":"WD","rawDate":"2008-09-19","href":"https://www.w3.org/TR/2008/WD-exi-20080919/","source":"./data/w3c-specs.txt"},"20091208":{"status":"CR","rawDate":"2009-12-08","href":"https://www.w3.org/TR/2009/CR-exi-20091208/","source":"./data/w3c-specs.txt"},"20110120":{"status":"PR","rawDate":"2011-01-20","href":"https://www.w3.org/TR/2011/PR-exi-20110120/","source":"./data/w3c-specs.txt"},"20110310":{"authors":["John Schneider","Takuki Kamiya"],"href":"https://www.w3.org/TR/2011/REC-exi-20110310/","title":"Efficient XML Interchange (EXI) Format 1.0","rawDate":"2011-03-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"hasErrata":"https://www.w3.org/XML/EXI/exi-10-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["John Schneider","Takuki Kamiya","Daniel Peintner","Rumen Kyusakov"],"href":"https://www.w3.org/TR/2013/PER-exi-20131022/","title":"Efficient XML Interchange (EXI) Format 1.0 (Second Edition)","rawDate":"2013-10-22","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["John Schneider","Takuki Kamiya","Daniel Peintner","Rumen Kyusakov"],"href":"https://www.w3.org/TR/2014/REC-exi-20140211/","title":"Efficient XML Interchange (EXI) Format 1.0 (Second Edition)","rawDate":"2014-02-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"exi-best-practices":{"authors":["Michael Cokus","Daniel Vogelheim"],"href":"https://www.w3.org/TR/exi-best-practices/","title":"Efficient XML Interchange (EXI) Best Practices","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"versions":{"20071219":{"authors":["Michael Cokus","Daniel Vogelheim"],"href":"https://www.w3.org/TR/2007/WD-exi-best-practices-20071219/","title":"Efficient XML Interchange (EXI) Best Practices","rawDate":"2007-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-12-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"exi-c14n":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/exi-c14n/","title":"Canonical EXI","rawDate":"2018-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130924":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/2013/WD-exi-c14n-20130924/","title":"Canonical EXI","rawDate":"2013-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141023":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/2014/WD-exi-c14n-20141023/","title":"Canonical EXI","rawDate":"2014-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150521":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/2015/WD-exi-c14n-20150521/","title":"Canonical EXI","rawDate":"2015-05-21","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161103":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/2016/CR-exi-c14n-20161103/","title":"Canonical EXI","rawDate":"2016-11-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180426":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/2018/PR-exi-c14n-20180426/","title":"Canonical EXI","rawDate":"2018-04-26","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180607":{"authors":["Sebastian Käbisch","Daniel Peintner"],"href":"https://www.w3.org/TR/2018/REC-exi-c14n-20180607/","title":"Canonical EXI","rawDate":"2018-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"hasErrata":"https://www.w3.org/XML/EXI/exi-c14n-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/EXI/exi-c14n-errata"},"exi-evaluation":{"authors":["Carine Bournez"],"href":"https://www.w3.org/TR/exi-evaluation/","title":"Efficient XML Interchange Evaluation","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"versions":{"20080728":{"status":"WD","rawDate":"2008-07-28","href":"https://www.w3.org/TR/2008/WD-exi-evaluation-20080728","source":"./data/w3c-specs.txt"},"20090407":{"authors":["Carine Bournez"],"href":"https://www.w3.org/TR/2009/WD-exi-evaluation-20090407/","title":"Efficient XML Interchange Evaluation","rawDate":"2009-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-04-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"exi-for-json":{"authors":["Daniel Peintner","Don Brutzman"],"href":"https://www.w3.org/TR/exi-for-json/","title":"EXI for JSON (EXI4JSON)","rawDate":"2018-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160128":{"authors":["Daniel Peintner","Don Brutzman"],"href":"https://www.w3.org/TR/2016/WD-exi-for-json-20160128/","title":"Efficient XML Interchange (EXI) for JSON","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160823":{"authors":["Daniel Peintner","Don Brutzman"],"href":"https://www.w3.org/TR/2016/WD-exi-for-json-20160823/","title":"EXI for JSON (EXI4JSON)","rawDate":"2016-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180726":{"authors":["Daniel Peintner","Don Brutzman"],"href":"https://www.w3.org/TR/2018/NOTE-exi-for-json-20180726/","title":"EXI for JSON (EXI4JSON)","rawDate":"2018-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"exi-impacts":{"authors":["Jaakko Kangasharju"],"href":"https://www.w3.org/TR/exi-impacts/","title":"Efficient XML Interchange (EXI) Impacts","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"versions":{"20080903":{"authors":["Jaakko Kangasharju"],"href":"https://www.w3.org/TR/2008/WD-exi-impacts-20080903/","title":"Efficient XML Interchange (EXI) Impacts","rawDate":"2008-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-09-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"exi-measurements":{"authors":["Greg White","Jaakko Kangasharju","Don Brutzman","Stephen Williams"],"etAl":true,"href":"https://www.w3.org/TR/exi-measurements/","title":"Efficient XML Interchange Measurements Note","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"versions":{"20060718":{"status":"WD","rawDate":"2006-07-18","href":"https://www.w3.org/TR/2006/WD-exi-measurements-20060718/","source":"./data/w3c-specs.txt"},"20070725":{"authors":["Greg White","Jaakko Kangasharju","Don Brutzman","Stephen Williams"],"href":"https://www.w3.org/TR/2007/WD-exi-measurements-20070725/","title":"Efficient XML Interchange Measurements Note","rawDate":"2007-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-07-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"exi-primer":{"authors":["Daniel Peintner","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/exi-primer/","title":"Efficient XML Interchange (EXI) Primer","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"versions":{"20071219":{"status":"WD","rawDate":"2007-12-19","href":"https://www.w3.org/TR/2007/WD-exi-primer-20071219/","source":"./data/w3c-specs.txt"},"20091208":{"authors":["Daniel Peintner","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/2009/WD-exi-primer-20091208/","title":"Efficient XML Interchange (EXI) Primer","rawDate":"2009-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140424":{"authors":["Daniel Peintner","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/2014/WD-exi-primer-20140424/","title":"Efficient XML Interchange (EXI) Primer","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-04-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"exi-profile":{"authors":["Youenn Fablet","Daniel Peintner"],"href":"https://www.w3.org/TR/exi-profile/","title":"Efficient XML Interchange (EXI) Profile for limiting usage of dynamic memory","rawDate":"2014-09-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110816":{"status":"WD","rawDate":"2011-08-16","href":"https://www.w3.org/TR/2011/WD-exi-profile-20110816/","source":"./data/w3c-specs.txt"},"20120410":{"status":"WD","rawDate":"2012-04-10","href":"https://www.w3.org/TR/2012/WD-exi-profile-20120410/","source":"./data/w3c-specs.txt"},"20120731":{"status":"WD","rawDate":"2012-07-31","href":"https://www.w3.org/TR/2012/WD-exi-profile-20120731/","source":"./data/w3c-specs.txt"},"20130416":{"authors":["Youenn Fablet","Daniel Peintner"],"href":"https://www.w3.org/TR/2013/CR-exi-profile-20130416/","title":"Efficient XML Interchange (EXI) Profile","rawDate":"2013-04-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140506":{"authors":["Youenn Fablet","Daniel Peintner"],"href":"https://www.w3.org/TR/2014/PR-exi-profile-20140506/","title":"Efficient XML Interchange (EXI) Profile for limiting usage of dynamic memory","rawDate":"2014-05-06","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140909":{"authors":["Youenn Fablet","Daniel Peintner"],"href":"https://www.w3.org/TR/2014/REC-exi-profile-20140909/","title":"Efficient XML Interchange (EXI) Profile for limiting usage of dynamic memory","rawDate":"2014-09-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/EXI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"expamaya":{"versions":{"19971028":{"status":"NOTE","rawDate":"1997-10-28","href":"https://www.w3.org/TR/NOTE-expamaya-971028","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-expamaya","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-10-28","title":"Testbed"},"feature-policy":{"aliasOf":"permissions-policy-1"},"feature-policy-1":{"aliasOf":"permissions-policy-1"},"fetch-metadata":{"authors":["Mike West"],"href":"https://www.w3.org/TR/fetch-metadata/","title":"Fetch Metadata Request Headers","rawDate":"2023-10-31","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-fetch-metadata/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190627":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2019/WD-fetch-metadata-20190627/","title":"Fetch Metadata Request Headers","rawDate":"2019-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191125":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2019/WD-fetch-metadata-20191125/","title":"Fetch Metadata Request Headers","rawDate":"2019-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200110":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2020/WD-fetch-metadata-20200110/","title":"Fetch Metadata Request Headers","rawDate":"2020-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210310":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-fetch-metadata-20210310/","title":"Fetch Metadata Request Headers","rawDate":"2021-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210313":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-fetch-metadata-20210313/","title":"Fetch Metadata Request Headers","rawDate":"2021-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-fetch-metadata-20210604/","title":"Fetch Metadata Request Headers","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210720":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-fetch-metadata-20210720/","title":"Fetch Metadata Request Headers","rawDate":"2021-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2023/WD-fetch-metadata-20231031/","title":"Fetch Metadata Request Headers","rawDate":"2023-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-fetch-metadata"},"file-system-api":{"authors":["Eric Uhrhane"],"href":"https://www.w3.org/TR/file-system-api/","title":"File API: Directories and System","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-file-system-api-20101026/","source":"./data/w3c-specs.txt"},"20110419":{"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-file-system-api-20110419/","source":"./data/w3c-specs.txt"},"20120417":{"authors":["Eric Uhrhane"],"href":"https://www.w3.org/TR/2012/WD-file-system-api-20120417/","title":"File API: Directories and System","rawDate":"2012-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140424":{"authors":["Eric Uhrhane"],"href":"https://www.w3.org/TR/2014/NOTE-file-system-api-20140424/","title":"File API: Directories and System","rawDate":"2014-04-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-04-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://dev.w3.org/2009/dap/file-system/file-dir-sys.html","isRetired":true},"file-upload":{"aliasOf":"FileAPI"},"file-writer-api":{"authors":["Eric Uhrhane"],"href":"https://www.w3.org/TR/file-writer-api/","title":"File API: Writer","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20100406":{"status":"WD","rawDate":"2010-04-06","href":"https://www.w3.org/TR/2010/WD-file-writer-api-20100406/","source":"./data/w3c-specs.txt"},"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-file-writer-api-20101026/","source":"./data/w3c-specs.txt"},"20110419":{"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-file-writer-api-20110419/","source":"./data/w3c-specs.txt"},"20120417":{"authors":["Eric Uhrhane"],"href":"https://www.w3.org/TR/2012/WD-file-writer-api-20120417/","title":"File API: Writer","rawDate":"2012-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140424":{"authors":["Eric Uhrhane"],"href":"https://www.w3.org/TR/2014/NOTE-file-writer-api-20140424/","title":"File API: Writer","rawDate":"2014-04-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-04-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://dev.w3.org/2009/dap/file-system/file-writer.html","isRetired":true},"fill-stroke-3":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/fill-stroke-3/","title":"CSS Fill and Stroke Module Level 3","rawDate":"2017-04-13","status":"WD","publisher":"W3C","edDraft":"https://drafts.fxtf.org/fill-stroke/","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170413":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-fill-stroke-3-20170413/","title":"CSS Fill and Stroke Module Level 3","rawDate":"2017-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/fxtf-drafts"},"filter-effects":{"aliasOf":"filter-effects-1"},"filter-effects-1":{"authors":["Dirk Schulze","Dean Jackson"],"href":"https://www.w3.org/TR/filter-effects-1/","title":"Filter Effects Module Level 1","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121025":{"authors":["Vincent Hardy","Dean Jackson","Erik Dahlström","Dirk Schulze"],"href":"https://www.w3.org/TR/2012/WD-filter-effects-20121025/","title":"Filter Effects 1.0","rawDate":"2012-10-25","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130523":{"authors":["Dean Jackson","Erik Dahlström","Dirk Schulze"],"href":"https://www.w3.org/TR/2013/WD-filter-effects-20130523/","title":"Filter Effects 1.0","rawDate":"2013-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131126":{"authors":["Dean Jackson","Erik Dahlström","Dirk Schulze"],"href":"https://www.w3.org/TR/2013/WD-filter-effects-1-20131126/","title":"Filter Effects Module Level 1","rawDate":"2013-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141125":{"authors":["Dean Jackson","Erik Dahlström","Dirk Schulze"],"href":"https://www.w3.org/TR/2014/WD-filter-effects-1-20141125/","title":"Filter Effects Module Level 1","rawDate":"2014-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181124":{"authors":["Dirk Schulze","Dean Jackson"],"href":"https://www.w3.org/TR/2018/WD-filter-effects-1-20181124/","title":"Filter Effects Module Level 1","rawDate":"2018-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Dirk Schulze","Dean Jackson"],"href":"https://www.w3.org/TR/2018/WD-filter-effects-1-20181218/","title":"Filter Effects Module Level 1","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.fxtf.org/filter-effects-1/","repository":"https://github.com/w3c/fxtf-drafts"},"findtext":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/findtext/","title":"FindText API","rawDate":"2017-06-20","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/findtext/","deliveredBy":["https://www.w3.org/annotation/","https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151015":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/2015/WD-findtext-20151015/","title":"FindText API","rawDate":"2015-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/","https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170620":{"authors":["Doug Schepers"],"href":"https://www.w3.org/TR/2017/NOTE-findtext-20170620/","title":"FindText API","rawDate":"2017-06-20","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/annotation/","https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/findtext"},"fingerprinting-guidance":{"authors":["Nick Doty"],"href":"https://www.w3.org/TR/fingerprinting-guidance/","title":"Mitigating Browser Fingerprinting in Web Specifications","rawDate":"2019-03-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Privacy/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151124":{"authors":["Nick Doty"],"href":"https://www.w3.org/TR/2015/NOTE-fingerprinting-guidance-20151124/","title":"Fingerprinting Guidance for Web Specification Authors (Draft)","rawDate":"2015-11-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Privacy/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190328":{"authors":["Nick Doty"],"href":"https://www.w3.org/TR/2019/NOTE-fingerprinting-guidance-20190328/","title":"Mitigating Browser Fingerprinting in Web Specifications","rawDate":"2019-03-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Privacy/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/fingerprinting-guidance/","repository":"https://github.com/w3c/fingerprinting-guidance"},"font":{"authors":["Håkon Lie","Chuck Rowe","David Meltzer","Robert Stevahn","Steve Zilles","Brad Chase","Chris Lilley"],"href":"https://www.w3.org/TR/WD-font/","title":"Web Fonts","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19970721":{"status":"WD","rawDate":"1997-07-21","href":"https://www.w3.org/TR/WD-font-970721","source":"./data/w3c-specs.txt"},"19990902":{"authors":["Håkon Lie","Chuck Rowe","David Meltzer","Robert Stevahn","Steve Zilles","Brad Chase","Chris Lilley"],"href":"https://www.w3.org/TR/1999/WD-font-19990902","title":"Web Fonts","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD","obsoletedBy":["CSS21"]},"font-rationale":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/font-rationale/","title":"Fonts for the Web: Rationale, 1996","rawDate":"2022-04-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220414":{"authors":["Chris Lilley"],"href":"https://www.w3.org/TR/2022/NOTE-font-rationale-20220414/","title":"Fonts for the Web: Rationale, 1996","rawDate":"2022-04-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Fonts/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"form-http-extensions":{"authors":["Cameron Jones"],"href":"https://www.w3.org/TR/form-http-extensions/","title":"W3C HTML Form HTTP Extensions","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140529":{"authors":["Cameron Jones"],"href":"https://www.w3.org/TR/2014/WD-form-http-extensions-20140529/","title":"W3C HTML Form HTTP Extensions","rawDate":"2014-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Cameron Jones"],"href":"https://www.w3.org/TR/2015/NOTE-form-http-extensions-20150929/","title":"W3C HTML Form HTTP Extensions","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"http://cameronjones.github.com/form-http-extensions/index.html","isRetired":true},"fragid-best-practices":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/fragid-best-practices/","title":"Best Practices for Fragment Identifiers and Media Type Definitions","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120726":{"status":"WD","rawDate":"2012-07-26","href":"https://www.w3.org/TR/2012/WD-fragid-best-practices-20120726/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2012/WD-fragid-best-practices-20121025/","title":"Best Practices for Fragment Identifiers and Media Type Definitions","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"frame-timing":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/frame-timing/","title":"Frame Timing","rawDate":"2016-07-20","status":"NOTE","publisher":"W3C","edDraft":"https://wicg.github.io/frame-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150120":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150120/","title":"Frame Timing","rawDate":"2015-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150424":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150424/","title":"Frame Timing","rawDate":"2015-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150624":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150624/","title":"Frame Timing","rawDate":"2015-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150717":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150717/","title":"Frame Timing","rawDate":"2015-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150916/","title":"Frame Timing","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150918/","title":"Frame Timing","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150921":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150921/","title":"Frame Timing","rawDate":"2015-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150923":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150923/","title":"Frame Timing","rawDate":"2015-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150924/","title":"Frame Timing","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150925":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150925/","title":"Frame Timing","rawDate":"2015-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20150929/","title":"Frame Timing","rawDate":"2015-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151001":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20151001/","title":"Frame Timing","rawDate":"2015-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151008":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20151008/","title":"Frame Timing","rawDate":"2015-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151102":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20151102/","title":"Frame Timing","rawDate":"2015-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151124":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20151124/","title":"Frame Timing","rawDate":"2015-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151207":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-frame-timing-20151207/","title":"Frame Timing","rawDate":"2015-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-frame-timing-20160225/","title":"Frame Timing","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160523":{"authors":["Michael Blain","Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/NOTE-frame-timing-20160523/","title":"Frame Timing","rawDate":"2016-05-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20160720":{"href":"https://www.w3.org/TR/2016/NOTE-frame-timing-20160720/","title":"Frame Timing","rawDate":"2016-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true,"repository":"https://github.com/w3c/frame-timing"},"framework-970706":{"versions":{"19970706":{"status":"NOTE","rawDate":"1997-07-06","href":"https://www.w3.org/TR/NOTE-framework-970706.html","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-framework-970706","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-07-06","title":"A Framework for Global Electronic Commerce"},"from-origin":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/from-origin/","title":"The From-Origin Header","rawDate":"2012-05-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110721":{"status":"WD","rawDate":"2011-07-21","href":"https://www.w3.org/TR/2011/WD-from-origin-20110721/","source":"./data/w3c-specs.txt"},"20120529":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2012/NOTE-from-origin-20120529/","title":"The From-Origin Header","rawDate":"2012-05-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"fullscreen-20120703":{"authors":["Anne van Kesteren","Tantek Çelik"],"href":"https://www.w3.org/TR/2012/WD-fullscreen-20120703/","title":"Fullscreen","rawDate":"2012-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"fullscreen-20141118":{"authors":["Anne van Kesteren","Tantek Çelik"],"href":"https://www.w3.org/TR/2014/NOTE-fullscreen-20141118/","title":"Fullscreen","rawDate":"2014-11-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"gallery":{"authors":["Jungkee Song","Wonsuk Lee"],"href":"https://www.w3.org/TR/gallery/","title":"Pick Media Intent","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120712":{"authors":["WonSuk Lee","Jungkee Song"],"href":"https://www.w3.org/TR/2012/WD-gallery-20120712/","title":"Pick Media Intent","rawDate":"2012-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140114":{"authors":["Jungkee Song","Wonsuk Lee"],"href":"https://www.w3.org/TR/2014/NOTE-gallery-20140114/","title":"Pick Media Intent","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"gamepad":{"authors":["Steve Agoston","Matthew Reynolds"],"href":"https://www.w3.org/TR/gamepad/","title":"Gamepad","rawDate":"2024-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120529":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2012/WD-gamepad-20120529/","title":"Gamepad","rawDate":"2012-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2014/WD-gamepad-20140225/","title":"Gamepad","rawDate":"2014-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150414":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2015/WD-gamepad-20150414/","title":"Gamepad","rawDate":"2015-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150429":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2015/WD-gamepad-20150429/","title":"Gamepad","rawDate":"2015-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2015/WD-gamepad-20151215/","title":"Gamepad","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2015/WD-gamepad-20151217/","title":"Gamepad","rawDate":"2015-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160220":{"authors":["Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2016/WD-gamepad-20160220/","title":"Gamepad","rawDate":"2016-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160920":{"href":"https://www.w3.org/TR/2016/WD-gamepad-20160920/","title":"Gamepad","rawDate":"2016-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161011":{"href":"https://www.w3.org/TR/2016/WD-gamepad-20161011/","title":"Gamepad","rawDate":"2016-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161031":{"href":"https://www.w3.org/TR/2016/WD-gamepad-20161031/","title":"Gamepad","rawDate":"2016-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161202":{"href":"https://www.w3.org/TR/2016/WD-gamepad-20161202/","title":"Gamepad","rawDate":"2016-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170125":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2017/WD-gamepad-20170125/","title":"Gamepad","rawDate":"2017-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170614":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2017/WD-gamepad-20170614/","title":"Gamepad","rawDate":"2017-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170726":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2017/WD-gamepad-20170726/","title":"Gamepad","rawDate":"2017-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171027":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2017/WD-gamepad-20171027/","title":"Gamepad","rawDate":"2017-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180216":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20180216/","title":"Gamepad","rawDate":"2018-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180505":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20180505/","title":"Gamepad","rawDate":"2018-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180508":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20180508/","title":"Gamepad","rawDate":"2018-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180716":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20180716/","title":"Gamepad","rawDate":"2018-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20180926/","title":"Gamepad","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181016":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20181016/","title":"Gamepad","rawDate":"2018-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181017":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20181017/","title":"Gamepad","rawDate":"2018-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20181018/","title":"Gamepad","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181109":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20181109/","title":"Gamepad","rawDate":"2018-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181213":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20181213/","title":"Gamepad","rawDate":"2018-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Scott Graham","Theodore Mielczarek","Brandon Jones"],"href":"https://www.w3.org/TR/2018/WD-gamepad-20181214/","title":"Gamepad","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Scott Graham","Brandon Jones","Steve Agoston"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190530/","title":"Gamepad","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Scott Graham","Brandon Jones","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190531/","title":"Gamepad","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190805":{"authors":["Scott Graham","Brandon Jones","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190805/","title":"Gamepad","rawDate":"2019-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190814":{"authors":["Scott Graham","Brandon Jones","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190814/","title":"Gamepad","rawDate":"2019-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190820":{"authors":["Scott Graham","Brandon Jones","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190820/","title":"Gamepad","rawDate":"2019-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190822":{"authors":["Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190822/","title":"Gamepad","rawDate":"2019-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190903":{"authors":["Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190903/","title":"Gamepad","rawDate":"2019-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190920":{"authors":["Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190920/","title":"Gamepad","rawDate":"2019-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190922":{"authors":["Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190922/","title":"Gamepad","rawDate":"2019-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190923":{"authors":["Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20190923/","title":"Gamepad","rawDate":"2019-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191001":{"authors":["Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20191001/","title":"Gamepad","rawDate":"2019-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191003":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20191003/","title":"Gamepad","rawDate":"2019-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191010":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20191010/","title":"Gamepad","rawDate":"2019-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191114":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2019/WD-gamepad-20191114/","title":"Gamepad","rawDate":"2019-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200121":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2020/WD-gamepad-20200121/","title":"Gamepad","rawDate":"2020-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200225":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2020/WD-gamepad-20200225/","title":"Gamepad","rawDate":"2020-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200618":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2020/WD-gamepad-20200618/","title":"Gamepad","rawDate":"2020-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200917":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2020/WD-gamepad-20200917/","title":"Gamepad","rawDate":"2020-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201029":{"authors":["James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2020/WD-gamepad-20201029/","title":"Gamepad","rawDate":"2020-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210317":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2021/WD-gamepad-20210317/","title":"Gamepad","rawDate":"2021-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210325":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2021/WD-gamepad-20210325/","title":"Gamepad","rawDate":"2021-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210408":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2021/WD-gamepad-20210408/","title":"Gamepad","rawDate":"2021-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210709":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2021/WD-gamepad-20210709/","title":"Gamepad","rawDate":"2021-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210803":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2021/WD-gamepad-20210803/","title":"Gamepad","rawDate":"2021-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210805":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds","Brandon Jones","Scott Graham","Theodore Mielczarek"],"href":"https://www.w3.org/TR/2021/WD-gamepad-20210805/","title":"Gamepad","rawDate":"2021-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220211":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20220211/","title":"Gamepad","rawDate":"2022-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220512":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20220512/","title":"Gamepad","rawDate":"2022-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220603":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20220603/","title":"Gamepad","rawDate":"2022-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20220607/","title":"Gamepad","rawDate":"2022-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220630":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20220630/","title":"Gamepad","rawDate":"2022-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20221003/","title":"Gamepad","rawDate":"2022-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2022/WD-gamepad-20221209/","title":"Gamepad","rawDate":"2022-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230210":{"authors":["Steve Agoston","James Hollyer","Matthew Reynolds"],"href":"https://www.w3.org/TR/2023/WD-gamepad-20230210/","title":"Gamepad","rawDate":"2023-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Steve Agoston","Matthew Reynolds"],"href":"https://www.w3.org/TR/2023/WD-gamepad-20230310/","title":"Gamepad","rawDate":"2023-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Steve Agoston","Matthew Reynolds"],"href":"https://www.w3.org/TR/2023/WD-gamepad-20230413/","title":"Gamepad","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231005":{"authors":["Steve Agoston","Matthew Reynolds"],"href":"https://www.w3.org/TR/2023/WD-gamepad-20231005/","title":"Gamepad","rawDate":"2023-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240124":{"authors":["Steve Agoston","Matthew Reynolds"],"href":"https://www.w3.org/TR/2024/WD-gamepad-20240124/","title":"Gamepad","rawDate":"2024-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/gamepad/","repository":"https://github.com/w3c/gamepad"},"gdiff":{"versions":{"19970901":{"status":"NOTE","rawDate":"1997-09-01","href":"https://www.w3.org/TR/NOTE-gdiff-19970901","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-gdiff","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-09-01","title":"Generic Diff Format Specification"},"generic-sensor":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/generic-sensor/","title":"Generic Sensor API","rawDate":"2024-01-25","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/sensors/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151015":{"authors":["Tobie Langel","Rick Waldron"],"href":"https://www.w3.org/TR/2015/WD-generic-sensor-20151015/","title":"Generic Sensor API","rawDate":"2015-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160324":{"authors":["Tobie Langel","Rick Waldron"],"href":"https://www.w3.org/TR/2016/WD-generic-sensor-20160324/","title":"Generic Sensor API","rawDate":"2016-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"authors":["Tobie Langel","Rick Waldron"],"href":"https://www.w3.org/TR/2016/WD-generic-sensor-20160830/","title":"Generic Sensor API","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170130":{"authors":["Tobie Langel","Rick Waldron"],"href":"https://www.w3.org/TR/2017/WD-generic-sensor-20170130/","title":"Generic Sensor API","rawDate":"2017-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170524":{"authors":["Tobie Langel","Rick Waldron"],"href":"https://www.w3.org/TR/2017/WD-generic-sensor-20170524/","title":"Generic Sensor API","rawDate":"2017-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170530":{"authors":["Tobie Langel","Rick Waldron"],"href":"https://www.w3.org/TR/2017/WD-generic-sensor-20170530/","title":"Generic Sensor API","rawDate":"2017-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170809":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2017/WD-generic-sensor-20170809/","title":"Generic Sensor API","rawDate":"2017-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171002":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2017/WD-generic-sensor-20171002/","title":"Generic Sensor API","rawDate":"2017-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2017/WD-generic-sensor-20171018/","title":"Generic Sensor API","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov"],"href":"https://www.w3.org/TR/2018/CR-generic-sensor-20180320/","title":"Generic Sensor API","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2019/WD-generic-sensor-20190307/","title":"Generic Sensor API","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2019/CR-generic-sensor-20191212/","title":"Generic Sensor API","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210619":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20210619/","title":"Generic Sensor API","rawDate":"2021-06-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210724":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20210724/","title":"Generic Sensor API","rawDate":"2021-07-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210729":{"authors":["Rick Waldron","Mikhail Pozdnyakov","Alexander Shalamov","Tobie Langel"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20210729/","title":"Generic Sensor API","rawDate":"2021-07-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211204":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20211204/","title":"Generic Sensor API","rawDate":"2021-12-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211210":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20211210/","title":"Generic Sensor API","rawDate":"2021-12-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211213":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20211213/","title":"Generic Sensor API","rawDate":"2021-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211214":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20211214/","title":"Generic Sensor API","rawDate":"2021-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2021/CRD-generic-sensor-20211215/","title":"Generic Sensor API","rawDate":"2021-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20220324/","title":"Generic Sensor API","rawDate":"2022-03-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220502":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20220502/","title":"Generic Sensor API","rawDate":"2022-05-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220603":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20220603/","title":"Generic Sensor API","rawDate":"2022-06-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20220607/","title":"Generic Sensor API","rawDate":"2022-06-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20220808/","title":"Generic Sensor API","rawDate":"2022-08-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220926":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20220926/","title":"Generic Sensor API","rawDate":"2022-09-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221123":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20221123/","title":"Generic Sensor API","rawDate":"2022-11-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20221207/","title":"Generic Sensor API","rawDate":"2022-12-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20221208/","title":"Generic Sensor API","rawDate":"2022-12-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20221209/","title":"Generic Sensor API","rawDate":"2022-12-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221210":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2022/CRD-generic-sensor-20221210/","title":"Generic Sensor API","rawDate":"2022-12-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230117":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230117/","title":"Generic Sensor API","rawDate":"2023-01-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230127":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230127/","title":"Generic Sensor API","rawDate":"2023-01-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230706/","title":"Generic Sensor API","rawDate":"2023-07-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230707/","title":"Generic Sensor API","rawDate":"2023-07-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230725":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230725/","title":"Generic Sensor API","rawDate":"2023-07-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230726/","title":"Generic Sensor API","rawDate":"2023-07-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230801":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230801/","title":"Generic Sensor API","rawDate":"2023-08-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230808":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230808/","title":"Generic Sensor API","rawDate":"2023-08-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20230810/","title":"Generic Sensor API","rawDate":"2023-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20231006/","title":"Generic Sensor API","rawDate":"2023-10-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20231026/","title":"Generic Sensor API","rawDate":"2023-10-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231122":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2023/CRD-generic-sensor-20231122/","title":"Generic Sensor API","rawDate":"2023-11-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Rick Waldron"],"href":"https://www.w3.org/TR/2024/CRD-generic-sensor-20240125/","title":"Generic Sensor API","rawDate":"2024-01-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sensors"},"geofencing":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/geofencing/","title":"Geofencing API","rawDate":"2017-05-30","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/geofencing-api/","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150604":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2015/WD-geofencing-20150604/","title":"Geofencing API","rawDate":"2015-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170530":{"authors":["Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2017/NOTE-geofencing-20170530/","title":"Geofencing API","rawDate":"2017-05-30","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/geofencing-api"},"geolocation":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/geolocation/","title":"Geolocation API","rawDate":"2022-09-01","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/geolocation-api/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210527":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210527/","title":"Geolocation API","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210531":{"authors":["Marcos Caceres","Andrei Popescu"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210531/","title":"Geolocation API","rawDate":"2021-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Marcos Caceres","Andrei Popescu"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210601/","title":"Geolocation API","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210607":{"authors":["Marcos Caceres","Andrei Popescu"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210607/","title":"Geolocation API","rawDate":"2021-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210610":{"authors":["Marcos Caceres","Andrei Popescu"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210610/","title":"Geolocation API","rawDate":"2021-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210615":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210615/","title":"Geolocation API","rawDate":"2021-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210708":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210708/","title":"Geolocation API","rawDate":"2021-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210715/","title":"Geolocation API","rawDate":"2021-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210726":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210726/","title":"Geolocation API","rawDate":"2021-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210727":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210727/","title":"Geolocation API","rawDate":"2021-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210730":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210730/","title":"Geolocation API","rawDate":"2021-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210812":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210812/","title":"Geolocation API","rawDate":"2021-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20210930/","title":"Geolocation API","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20211012/","title":"Geolocation API","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211103":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20211103/","title":"Geolocation API","rawDate":"2021-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20211123/","title":"Geolocation API","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211124":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-geolocation-20211124/","title":"Geolocation API","rawDate":"2021-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220129":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-geolocation-20220129/","title":"Geolocation API","rawDate":"2022-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/WD-geolocation-20220210/","title":"Geolocation API","rawDate":"2022-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220217":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/CR-geolocation-20220217/","title":"Geolocation API","rawDate":"2022-02-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220221":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/CRD-geolocation-20220221/","title":"Geolocation API","rawDate":"2022-02-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/CRD-geolocation-20220307/","title":"Geolocation API","rawDate":"2022-03-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220314":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/CRD-geolocation-20220314/","title":"Geolocation API","rawDate":"2022-03-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220318":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/CRD-geolocation-20220318/","title":"Geolocation API","rawDate":"2022-03-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220407":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/PR-geolocation-20220407/","title":"Geolocation API","rawDate":"2022-04-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220901":{"authors":["Marcos Caceres","Reilly Grant"],"href":"https://www.w3.org/TR/2022/REC-geolocation-20220901/","title":"Geolocation API","rawDate":"2022-09-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/geolocation-api"},"geolocation-API":{"authors":["Andrei Popescu"],"href":"https://www.w3.org/TR/geolocation-API/","title":"Geolocation API Specification 2nd Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"versions":{"20081222":{"status":"WD","rawDate":"2008-12-22","href":"https://www.w3.org/TR/2008/WD-geolocation-API-20081222/","source":"./data/w3c-specs.txt"},"20090707":{"status":"WD","rawDate":"2009-07-07","href":"https://www.w3.org/TR/2009/WD-geolocation-API-20090707/","source":"./data/w3c-specs.txt"},"20100907":{"status":"CR","rawDate":"2010-09-07","href":"https://www.w3.org/TR/2010/CR-geolocation-API-20100907/","source":"./data/w3c-specs.txt"},"20120510":{"authors":["Andrei Popescu"],"href":"https://www.w3.org/TR/2012/PR-geolocation-API-20120510/","title":"Geolocation API Specification","rawDate":"2012-05-10","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131024":{"authors":["Andrei Popescu"],"href":"https://www.w3.org/TR/2013/REC-geolocation-API-20131024/","title":"Geolocation API Specification","rawDate":"2013-10-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150528":{"authors":["Andrei Popescu"],"href":"https://www.w3.org/TR/2015/PER-geolocation-API-20150528/","title":"Geolocation API Specification","rawDate":"2015-05-28","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161108":{"authors":["Andrei Popescu"],"href":"https://www.w3.org/TR/2016/REC-geolocation-API-20161108/","title":"Geolocation API Specification 2nd Edition","rawDate":"2016-11-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"hasErrata":"https://www.w3.org/2008/geolocation/geoapi-errata.html#1st-edition","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2016-11-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/geolocation-api/","hasErrata":"https://www.w3.org/2008/geolocation/geoapi-errata.html#1st-edition","repository":"https://github.com/w3c/geolocation-api"},"geolocation-API-v2":{"authors":["Andrei Popescu","Stephen Block"],"href":"https://www.w3.org/TR/geolocation-API-v2/","title":"Geolocation API Specification Level 2","rawDate":"2017-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111201":{"authors":["Andrei Popescu","Stephen Block"],"href":"https://www.w3.org/TR/2011/WD-geolocation-API-v2-20111201/","title":"Geolocation API Specification Level 2","rawDate":"2011-12-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170706":{"authors":["Andrei Popescu","Stephen Block"],"href":"https://www.w3.org/TR/2017/NOTE-geolocation-API-v2-20170706/","title":"Geolocation API Specification Level 2","rawDate":"2017-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://dev.w3.org/geo/api/spec-source-v2.html","isRetired":true},"geolocation-sensor":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/geolocation-sensor/","title":"Geolocation Sensor","rawDate":"2024-01-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/geolocation-sensor/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180821":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2018/WD-geolocation-sensor-20180821/","title":"Geolocation Sensor","rawDate":"2018-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181219":{"authors":["Anssi Kostiainen","Thomas Steiner"],"href":"https://www.w3.org/TR/2018/WD-geolocation-sensor-20181219/","title":"Geolocation Sensor","rawDate":"2018-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210602":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2021/WD-geolocation-sensor-20210602/","title":"Geolocation Sensor","rawDate":"2021-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210816":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2021/WD-geolocation-sensor-20210816/","title":"Geolocation Sensor","rawDate":"2021-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210902":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2021/WD-geolocation-sensor-20210902/","title":"Geolocation Sensor","rawDate":"2021-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2022/WD-geolocation-sensor-20220316/","title":"Geolocation Sensor","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2023/WD-geolocation-sensor-20231026/","title":"Geolocation Sensor","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231127":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2023/WD-geolocation-sensor-20231127/","title":"Geolocation Sensor","rawDate":"2023-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Anssi Kostiainen","Thomas Steiner","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2024/WD-geolocation-sensor-20240105/","title":"Geolocation Sensor","rawDate":"2024-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/geolocation-sensor"},"geometry-1":{"authors":["Simon Pieters","Chris Harrelson"],"href":"https://www.w3.org/TR/geometry-1/","title":"Geometry Interfaces Module Level 1","rawDate":"2018-12-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140522":{"authors":["Simon Pieters","Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/2014/WD-geometry-1-20140522/","title":"Geometry Interfaces Module Level 1","rawDate":"2014-05-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140626":{"authors":["Simon Pieters","Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/2014/WD-geometry-1-20140626/","title":"Geometry Interfaces Module Level 1","rawDate":"2014-06-26","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140918":{"authors":["Simon Pieters","Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/2014/WD-geometry-1-20140918/","title":"Geometry Interfaces Module Level 1","rawDate":"2014-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141125":{"authors":["Simon Pieters","Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/2014/CR-geometry-1-20141125/","title":"Geometry Interfaces Module Level 1","rawDate":"2014-11-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181204":{"authors":["Simon Pieters","Chris Harrelson"],"href":"https://www.w3.org/TR/2018/CR-geometry-1-20181204/","title":"Geometry Interfaces Module Level 1","rawDate":"2018-12-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.fxtf.org/geometry/","repository":"https://github.com/w3c/fxtf-drafts"},"geor-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/geor-gap/","title":"Georgian Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/geor-gap.html","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200611":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-geor-gap-20200611/","title":"Georgian Gap Analysis","rawDate":"2020-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200617":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-geor-gap-20200617/","title":"Georgian Gap Analysis","rawDate":"2020-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200715":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-geor-gap-20200715/","title":"Georgian Gap Analysis","rawDate":"2020-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-geor-gap-20210126/","title":"Georgian Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210524":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-geor-gap-20210524/","title":"Georgian Gap Analysis","rawDate":"2021-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-geor-gap-20220119/","title":"Georgian Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-geor-gap-20220125/","title":"Georgian Gap Analysis","rawDate":"2022-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-geor-gap-20220203/","title":"Georgian Gap Analysis","rawDate":"2022-02-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220325":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-geor-gap-20220325/","title":"Georgian Gap Analysis","rawDate":"2022-03-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-geor-gap-20230614/","title":"Georgian Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"gov-data":{"authors":["Daniel Bennett","Adam Harvey"],"href":"https://www.w3.org/TR/gov-data/","title":"Publishing Open Government Data","rawDate":"2009-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/egov/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090908":{"authors":["Daniel Bennett","Adam Harvey"],"href":"https://www.w3.org/TR/2009/WD-gov-data-20090908/","title":"Publishing Open Government Data","rawDate":"2009-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/egov/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"graphics-aam-1.0":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/graphics-aam-1.0/","title":"Graphics Accessibility API Mappings","rawDate":"2018-10-02","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/graphics-aam/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160908":{"authors":["Richard Schwerdtfeger","Doug Schepers","Fred Esch","Amelia Bellamy-Royds"],"href":"https://www.w3.org/TR/2016/WD-graphics-aam-1.0-20160908/","title":"Graphics Accessibility API Mappings","rawDate":"2016-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180202":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper","Fred Esch","Richard Schwerdtfeger","Doug Schepers"],"href":"https://www.w3.org/TR/2018/WD-graphics-aam-1.0-20180202/","title":"Graphics Accessibility API Mappings","rawDate":"2018-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180329":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper","Fred Esch","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/CR-graphics-aam-1.0-20180329/","title":"Graphics Accessibility API Mappings","rawDate":"2018-03-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180419":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper","Fred Esch","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/CR-graphics-aam-1.0-20180419/","title":"Graphics Accessibility API Mappings","rawDate":"2018-04-19","status":"CR","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180626":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/2018/PR-graphics-aam-1.0-20180626/","title":"Graphics Accessibility API Mappings","rawDate":"2018-06-26","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181002":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/2018/REC-graphics-aam-1.0-20181002/","title":"Graphics Accessibility API Mappings","rawDate":"2018-10-02","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.0/errata/graphics-aria","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria","isRetired":true,"hasErrata":"https://www.w3.org/WAI/ARIA/1.0/errata/graphics-aria"},"graphics-aria-1.0":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/graphics-aria-1.0/","title":"WAI-ARIA Graphics Module","rawDate":"2018-10-02","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/graphics-aria/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151203":{"authors":["Amelia Bellamy-Royds","Fred Esch","Richard Schwerdtfeger","Léonie Watson"],"href":"https://www.w3.org/TR/2015/WD-graphics-aria-1.0-20151203/","title":"WAI-ARIA Graphics Module","rawDate":"2015-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160908":{"href":"https://www.w3.org/TR/2016/WD-graphics-aria-1.0-20160908/","title":"WAI-ARIA Graphics Module","rawDate":"2016-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180202":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper","Fred Esch","Richard Schwerdtfeger","Doug Schepers"],"href":"https://www.w3.org/TR/2018/WD-graphics-aria-1.0-20180202/","title":"WAI-ARIA Graphics Module","rawDate":"2018-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180329":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper","Fred Esch","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/CR-graphics-aria-1.0-20180329/","title":"WAI-ARIA Graphics Module","rawDate":"2018-03-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180626":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/2018/PR-graphics-aria-1.0-20180626/","title":"WAI-ARIA Graphics Module","rawDate":"2018-06-26","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181002":{"authors":["Amelia Bellamy-Royds","Joanmarie Diggs","Michael Cooper"],"href":"https://www.w3.org/TR/2018/REC-graphics-aria-1.0-20181002/","title":"WAI-ARIA Graphics Module","rawDate":"2018-10-02","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.0/errata/graphics-aria","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria","hasErrata":"https://www.w3.org/WAI/ARIA/1.0/errata/graphics-aria"},"grddl":{"authors":["Dan Connolly"],"href":"https://www.w3.org/TR/grddl/","title":"Gleaning Resource Descriptions from Dialects of Languages (GRDDL)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"hasErrata":"https://www.w3.org/2001/sw/grddl-wg/grddl-errata","versions":{"20040413":{"status":"NOTE","rawDate":"2004-04-13","href":"https://www.w3.org/TR/2004/NOTE-grddl-20040413/","source":"./data/w3c-specs.txt"},"20061024":{"status":"WD","rawDate":"2006-10-24","href":"https://www.w3.org/TR/2006/WD-grddl-20061024/","source":"./data/w3c-specs.txt"},"20070302":{"status":"WD","rawDate":"2007-03-02","href":"https://www.w3.org/TR/2007/WD-grddl-20070302/","source":"./data/w3c-specs.txt"},"20070502":{"status":"CR","rawDate":"2007-05-02","href":"https://www.w3.org/TR/2007/CR-grddl-20070502/","source":"./data/w3c-specs.txt"},"20070716":{"status":"PR","rawDate":"2007-07-16","href":"https://www.w3.org/TR/2007/PR-grddl-20070716/","source":"./data/w3c-specs.txt"},"20070911":{"authors":["Dan Connolly"],"href":"https://www.w3.org/TR/2007/REC-grddl-20070911/","title":"Gleaning Resource Descriptions from Dialects of Languages (GRDDL)","rawDate":"2007-09-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"hasErrata":"https://www.w3.org/2001/sw/grddl-wg/grddl-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-09-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"grddl-primer":{"authors":["Harry Halpin","Ian Davis"],"href":"https://www.w3.org/TR/grddl-primer/","title":"GRDDL Primer","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"versions":{"20061002":{"status":"WD","rawDate":"2006-10-02","href":"https://www.w3.org/TR/2006/WD-grddl-primer-20061002/","source":"./data/w3c-specs.txt"},"20070628":{"authors":["Harry Halpin","Ian Davis"],"href":"https://www.w3.org/TR/2007/NOTE-grddl-primer-20070628/","title":"GRDDL Primer","rawDate":"2007-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"grddl-scenarios":{"authors":["Fabien Gandon"],"href":"https://www.w3.org/TR/grddl-scenarios/","title":"GRDDL Use Cases: Scenarios of extracting RDF data from XML documents","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"versions":{"20061002":{"status":"WD","rawDate":"2006-10-02","href":"https://www.w3.org/TR/2006/WD-grddl-scenarios-20061002/","source":"./data/w3c-specs.txt"},"20070406":{"authors":["Fabien Gandon"],"href":"https://www.w3.org/TR/2007/NOTE-grddl-scenarios-20070406/","title":"GRDDL Use Cases: Scenarios of extracting RDF data from XML documents","rawDate":"2007-04-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"grddl-tests":{"authors":["Chimezie Ogbuji"],"href":"https://www.w3.org/TR/grddl-tests/","title":"GRDDL Test Cases","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"hasErrata":"https://www.w3.org/2001/sw/grddl-wg/grddl-errata","versions":{"20070328":{"status":"WD","rawDate":"2007-03-28","href":"https://www.w3.org/TR/2007/WD-grddl-tests-20070328/","source":"./data/w3c-specs.txt"},"20070502":{"status":"WD","rawDate":"2007-05-02","href":"https://www.w3.org/TR/2007/WD-grddl-tests-20070502/","source":"./data/w3c-specs.txt"},"20070716":{"status":"PR","rawDate":"2007-07-16","href":"https://www.w3.org/TR/2007/PR-grddl-tests-20070716/","source":"./data/w3c-specs.txt"},"20070911":{"authors":["Chimezie Ogbuji"],"href":"https://www.w3.org/TR/2007/REC-grddl-tests-20070911/","title":"GRDDL Test Cases","rawDate":"2007-09-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/grddl-wg/"],"hasErrata":"https://www.w3.org/2001/sw/grddl-wg/grddl-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-09-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"grek-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/grek-gap/","title":"Modern Greek Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/grek-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200611":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-grek-gap-20200611/","title":"Modern Greek Gap Analysis","rawDate":"2020-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200715":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-grek-gap-20200715/","title":"Modern Greek Gap Analysis","rawDate":"2020-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-grek-gap-20210126/","title":"Modern Greek Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-grek-gap-20210525/","title":"Modern Greek Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-grek-gap-20220119/","title":"Modern Greek Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-grek-gap-20220316/","title":"Modern Greek Gap Analysis","rawDate":"2022-03-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-grek-gap-20230614/","title":"Modern Greek Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-grek-gap-20231004/","title":"Modern Greek Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"gujr-gap":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/gujr-gap/","title":"Gujarati Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/iip/gap-analysis/gujr-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-gujr-gap-20200616/","title":"Gujarati Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210127":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-gujr-gap-20210127/","title":"Gujarati Gap Analysis","rawDate":"2021-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210217":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-gujr-gap-20210217/","title":"Gujarati Gap Analysis","rawDate":"2021-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-gujr-gap-20210525/","title":"Gujarati Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-gujr-gap-20220119/","title":"Gujarati Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-gujr-gap-20230614/","title":"Gujarati Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Neha Gupta","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-gujr-gap-20231004/","title":"Gujarati Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"guru-gap":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/guru-gap/","title":"Gurmukhi Gap Analysis","rawDate":"2023-08-30","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/iip/gap-analysis/guru-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-guru-gap-20200616/","title":"Gurmukhi Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-guru-gap-20210525/","title":"Gurmukhi Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-guru-gap-20230614/","title":"Gurmukhi Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230830":{"authors":["Akshat Joshi","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-guru-gap-20230830/","title":"Gurmukhi Gap Analysis","rawDate":"2023-08-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"guru-lreq":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/guru-lreq/","title":"Gurmukhi Layout Requirements","rawDate":"2023-02-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/iip/gurmukhi/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230214":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-guru-lreq-20230214/","title":"Gurmukhi Layout Requirements","rawDate":"2023-02-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"gyroscope":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/gyroscope/","title":"Gyroscope","rawDate":"2024-01-08","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/gyroscope/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160913":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2016/WD-gyroscope-20160913/","title":"Gyroscope Sensor","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170411":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2017/WD-gyroscope-20170411/","title":"Gyroscope","rawDate":"2017-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2017/WD-gyroscope-20170418/","title":"Gyroscope","rawDate":"2017-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170814":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2017/WD-gyroscope-20170814/","title":"Gyroscope","rawDate":"2017-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2017/WD-gyroscope-20171018/","title":"Gyroscope","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2018/CR-gyroscope-20180320/","title":"Gyroscope","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/WD-gyroscope-20190307/","title":"Gyroscope","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/CR-gyroscope-20191212/","title":"Gyroscope","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210724":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2021/CRD-gyroscope-20210724/","title":"Gyroscope","rawDate":"2021-07-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210902":{"authors":["Anssi Kostiainen","Mikhail Pozdnyakov"],"href":"https://www.w3.org/TR/2021/CRD-gyroscope-20210902/","title":"Gyroscope","rawDate":"2021-09-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211204":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/CRD-gyroscope-20211204/","title":"Gyroscope","rawDate":"2021-12-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/CRD-gyroscope-20211207/","title":"Gyroscope","rawDate":"2021-12-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-gyroscope-20230130/","title":"Gyroscope","rawDate":"2023-01-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231018":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-gyroscope-20231018/","title":"Gyroscope","rawDate":"2023-10-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231020":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-gyroscope-20231020/","title":"Gyroscope","rawDate":"2023-10-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-gyroscope-20231025/","title":"Gyroscope","rawDate":"2023-10-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231207":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/CRD-gyroscope-20231207/","title":"Gyroscope","rawDate":"2023-12-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240104":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/CRD-gyroscope-20240104/","title":"Gyroscope","rawDate":"2024-01-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/CRD-gyroscope-20240105/","title":"Gyroscope","rawDate":"2024-01-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/CRD-gyroscope-20240108/","title":"Gyroscope","rawDate":"2024-01-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/gyroscope"},"hash-in-uri":{"authors":["T.V. Raman"],"href":"https://www.w3.org/TR/hash-in-uri/","title":"Usage Patterns For Client-Side URI parameters","rawDate":"2012-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090415":{"status":"WD","rawDate":"2009-04-15","href":"https://www.w3.org/TR/2009/WD-hash-in-uri-20090415/","source":"./data/w3c-specs.txt"},"20120209":{"authors":["T.V. Raman"],"href":"https://www.w3.org/TR/2012/NOTE-hash-in-uri-20120209/","title":"Usage Patterns For Client-Side URI parameters","rawDate":"2012-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"hcls-dataset":{"authors":["Alasdair Gray","M. Scott Marshall","Michel Dumontier"],"href":"https://www.w3.org/TR/hcls-dataset/","title":"Dataset Descriptions: HCLS Community Profile","rawDate":"2015-05-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150514":{"authors":["Alasdair Gray","M. Scott Marshall","Michel Dumontier"],"href":"https://www.w3.org/TR/2015/NOTE-hcls-dataset-20150514/","title":"Dataset Descriptions: HCLS Community Profile","rawDate":"2015-05-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hcls-kb":{"authors":["M. Scott Marshall","Eric Prud'hommeaux"],"href":"https://www.w3.org/TR/hcls-kb/","title":"A Prototype Knowledge Base for the Life Sciences","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"versions":{"20080404":{"status":"WD","rawDate":"2008-04-04","href":"https://www.w3.org/TR/2008/WD-hcls-kb-20080404/","source":"./data/w3c-specs.txt"},"20080604":{"authors":["M. Scott Marshall","Eric Prud'hommeaux"],"href":"https://www.w3.org/TR/2008/NOTE-hcls-kb-20080604/","title":"A Prototype Knowledge Base for the Life Sciences","rawDate":"2008-06-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-06-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"hcls-orb":{"authors":["Paolo Ciccarese","Tudor Groza"],"href":"https://www.w3.org/TR/hcls-orb/","title":"Ontology of Rhetorical Blocks (ORB)","rawDate":"2011-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111020":{"authors":["Paolo Ciccarese","Tudor Groza"],"href":"https://www.w3.org/TR/2011/NOTE-hcls-orb-20111020/","title":"Ontology of Rhetorical Blocks (ORB)","rawDate":"2011-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hcls-senselab":{"authors":["Matthias Samwald","Kei-Hoi Cheung"],"href":"https://www.w3.org/TR/hcls-senselab/","title":"Experiences with the conversion of SenseLab databases to RDF/OWL","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"versions":{"20080404":{"status":"WD","rawDate":"2008-04-04","href":"https://www.w3.org/TR/2008/WD-hcls-senselab-20080404/","source":"./data/w3c-specs.txt"},"20080604":{"authors":["Matthias Samwald","Kei-Hoi Cheung"],"href":"https://www.w3.org/TR/2008/NOTE-hcls-senselab-20080604/","title":"Experiences with the conversion of SenseLab databases to RDF/OWL","rawDate":"2008-06-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-06-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"hcls-sioc":{"authors":["Alexandre Passant"],"href":"https://www.w3.org/TR/hcls-sioc/","title":"SIOC, SIOC Types and Health Care and Life Sciences","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091020":{"authors":["Alexandre Passant"],"href":"https://www.w3.org/TR/2009/NOTE-hcls-sioc-20091020/","title":"SIOC, SIOC Types and Health Care and Life Sciences","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hcls-swan":{"authors":["Paolo Ciccarese"],"href":"https://www.w3.org/TR/hcls-swan/","title":"Semantic Web Applications in Neuromedicine (SWAN) Ontology","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091020":{"authors":["Paolo Ciccarese"],"href":"https://www.w3.org/TR/2009/NOTE-hcls-swan-20091020/","title":"Semantic Web Applications in Neuromedicine (SWAN) Ontology","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hcls-swansioc":{"authors":["Alexandre Passant","Paolo Ciccarese"],"href":"https://www.w3.org/TR/hcls-swansioc/","title":"SWAN/SIOC: Alignment Between the SWAN and SIOC Ontologies","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091020":{"authors":["Alexandre Passant","Paolo Ciccarese"],"href":"https://www.w3.org/TR/2009/NOTE-hcls-swansioc-20091020/","title":"SWAN/SIOC: Alignment Between the SWAN and SIOC Ontologies","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/hcls/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hebr-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/hebr-gap/","title":"Hebrew Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/hlreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210204":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-hebr-gap-20210204/","title":"Hebrew Gap Analysis","rawDate":"2021-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-hebr-gap-20210525/","title":"Hebrew Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220713":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-hebr-gap-20220713/","title":"Hebrew Gap Analysis","rawDate":"2022-07-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-hebr-gap-20230807/","title":"Hebrew Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/hlreq"},"hlink":{"authors":["Steven Pemberton","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/hlink/","title":"HLink","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20020913":{"status":"WD","rawDate":"2002-09-13","href":"https://www.w3.org/TR/2002/WD-hlink-20020913/","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Steven Pemberton","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/2010/NOTE-hlink-20101216/","title":"HLink","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"hnreq":{"authors":["Giuseppe Pascale"],"href":"https://www.w3.org/TR/hnreq/","title":"Requirements for Home Networking Scenarios","rawDate":"2011-12-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111201":{"authors":["Giuseppe Pascale"],"href":"https://www.w3.org/TR/2011/NOTE-hnreq-20111201/","title":"Requirements for Home Networking Scenarios","rawDate":"2011-12-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hr-time":{"aliasOf":"hr-time-3"},"hr-time-1":{"authors":["Michael McKeough"],"href":"https://www.w3.org/TR/hr-time-1/","title":"High Resolution Time","rawDate":"2019-11-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"hasErrata":"https://www.w3.org/2012/12/hr-time-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"versions":{"20120313":{"status":"WD","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/WD-hr-time-20120313/","source":"./data/w3c-specs.txt"},"20120522":{"status":"CR","rawDate":"2012-05-22","href":"https://www.w3.org/TR/2012/CR-hr-time-20120522/","source":"./data/w3c-specs.txt"},"20121023":{"status":"PR","rawDate":"2012-10-23","href":"https://www.w3.org/TR/2012/PR-hr-time-20121023/","source":"./data/w3c-specs.txt"},"20121217":{"authors":["Jatinder Mann"],"href":"https://www.w3.org/TR/2012/REC-hr-time-20121217/","title":"High Resolution Time","rawDate":"2012-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"hasErrata":"https://www.w3.org/2012/12/hr-time-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191121":{"authors":["Michael McKeough"],"href":"https://www.w3.org/TR/2019/SPSD-hr-time-1-20191121/","title":"High Resolution Time","rawDate":"2019-11-21","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"hr-time-2":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/hr-time-2/","title":"High Resolution Time Level 2","rawDate":"2019-11-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131203":{"authors":["Jatinder Mann","James Simonsen"],"href":"https://www.w3.org/TR/2013/WD-hr-time-2-20131203/","title":"High Resolution Time Level 2","rawDate":"2013-12-03","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150617":{"authors":["James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150617/","title":"High Resolution Time Level 2","rawDate":"2015-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150714/","title":"High Resolution Time Level 2","rawDate":"2015-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150718":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150718/","title":"High Resolution Time Level 2","rawDate":"2015-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150721/","title":"High Resolution Time Level 2","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150916/","title":"High Resolution Time Level 2","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150918/","title":"High Resolution Time Level 2","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150928":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20150928/","title":"High Resolution Time Level 2","rawDate":"2015-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151021":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20151021/","title":"High Resolution Time Level 2","rawDate":"2015-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151116":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-hr-time-2-20151116/","title":"High Resolution Time Level 2","rawDate":"2015-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160202":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20160202/","title":"High Resolution Time Level 2","rawDate":"2016-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160203":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20160203/","title":"High Resolution Time Level 2","rawDate":"2016-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20160204/","title":"High Resolution Time Level 2","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20160225/","title":"High Resolution Time Level 2","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160713":{"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20160713/","title":"High Resolution Time Level 2","rawDate":"2016-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160720":{"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20160720/","title":"High Resolution Time Level 2","rawDate":"2016-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161008":{"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20161008/","title":"High Resolution Time Level 2","rawDate":"2016-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161024":{"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20161024/","title":"High Resolution Time Level 3","rawDate":"2016-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161025":{"href":"https://www.w3.org/TR/2016/WD-hr-time-2-20161025/","title":"High Resolution Time Level 2","rawDate":"2016-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161101":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/CR-hr-time-2-20161101/","title":"High Resolution Time Level 2","rawDate":"2016-11-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170803":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2017/CR-hr-time-2-20170803/","title":"High Resolution Time Level 2","rawDate":"2017-08-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180301":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2018/CR-hr-time-2-20180301/","title":"High Resolution Time Level 2","rawDate":"2018-03-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2019/CR-hr-time-2-20190626/","title":"High Resolution Time Level 2","rawDate":"2019-06-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191015":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/PR-hr-time-2-20191015/","title":"High Resolution Time Level 2","rawDate":"2019-10-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191121":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/REC-hr-time-2-20191121/","title":"High Resolution Time Level 2","rawDate":"2019-11-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"hasErrata":"https://w3c.github.io/hr-time/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/hr-time/","repository":"https://github.com/w3c/hr-time","hasErrata":"https://w3c.github.io/hr-time/errata.html","obsoletes":["hr-time-1"]},"hr-time-20120313":{"aliasOf":"hr-time-1-20120313"},"hr-time-20120522":{"aliasOf":"hr-time-1-20120522"},"hr-time-20121023":{"aliasOf":"hr-time-1-20121023"},"hr-time-20121217":{"aliasOf":"hr-time-1-20121217"},"hr-time-20131203":{"aliasOf":"hr-time-2-20131203"},"hr-time-20150617":{"aliasOf":"hr-time-2-20150617"},"hr-time-20150714":{"aliasOf":"hr-time-2-20150714"},"hr-time-20150718":{"aliasOf":"hr-time-2-20150718"},"hr-time-20150721":{"aliasOf":"hr-time-2-20150721"},"hr-time-20150916":{"aliasOf":"hr-time-2-20150916"},"hr-time-20150918":{"aliasOf":"hr-time-2-20150918"},"hr-time-20150928":{"aliasOf":"hr-time-2-20150928"},"hr-time-20151021":{"aliasOf":"hr-time-2-20151021"},"hr-time-20151116":{"aliasOf":"hr-time-2-20151116"},"hr-time-20160202":{"aliasOf":"hr-time-2-20160202"},"hr-time-20160203":{"aliasOf":"hr-time-2-20160203"},"hr-time-20160204":{"aliasOf":"hr-time-2-20160204"},"hr-time-20160225":{"aliasOf":"hr-time-2-20160225"},"hr-time-20160713":{"aliasOf":"hr-time-2-20160713"},"hr-time-20160720":{"aliasOf":"hr-time-2-20160720"},"hr-time-20161008":{"aliasOf":"hr-time-2-20161008"},"hr-time-20161024":{"aliasOf":"hr-time-2-20161024"},"hr-time-20161025":{"aliasOf":"hr-time-2-20161025"},"hr-time-20161101":{"aliasOf":"hr-time-2-20161101"},"hr-time-20180301":{"aliasOf":"hr-time-2-20180301"},"hr-time-20190626":{"aliasOf":"hr-time-2-20190626"},"hr-time-20191015":{"aliasOf":"hr-time-2-20191015"},"hr-time-20191121":{"aliasOf":"hr-time-1-20191121"},"hr-time-3":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/hr-time-3/","title":"High Resolution Time","rawDate":"2023-07-19","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/hr-time/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161031":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-hr-time-3-20161031/","title":"High Resolution Time Level 3","rawDate":"2016-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170803":{"authors":["Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2017/NOTE-hr-time-3-20170803/","title":"High Resolution Time Level 3","rawDate":"2017-08-03","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2020/WD-hr-time-3-20201001/","title":"High Resolution Time","rawDate":"2020-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210316":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20210316/","title":"High Resolution Time","rawDate":"2021-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210324":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20210324/","title":"High Resolution Time","rawDate":"2021-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210607":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20210607/","title":"High Resolution Time","rawDate":"2021-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20210715/","title":"High Resolution Time","rawDate":"2021-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211009":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20211009/","title":"High Resolution Time","rawDate":"2021-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211010":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20211010/","title":"High Resolution Time","rawDate":"2021-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211011":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20211011/","title":"High Resolution Time","rawDate":"2021-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Yoav Weiss","Ilya Grigorik","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20211012/","title":"High Resolution Time","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211201":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2021/WD-hr-time-3-20211201/","title":"High Resolution Time","rawDate":"2021-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220117":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2022/WD-hr-time-3-20220117/","title":"High Resolution Time","rawDate":"2022-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220128":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2022/WD-hr-time-3-20220128/","title":"High Resolution Time","rawDate":"2022-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2022/WD-hr-time-3-20220920/","title":"High Resolution Time","rawDate":"2022-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230116":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230116/","title":"High Resolution Time","rawDate":"2023-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230209/","title":"High Resolution Time","rawDate":"2023-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230216":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230216/","title":"High Resolution Time","rawDate":"2023-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230321/","title":"High Resolution Time","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230322":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230322/","title":"High Resolution Time","rawDate":"2023-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230411":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230411/","title":"High Resolution Time","rawDate":"2023-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230425":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230425/","title":"High Resolution Time","rawDate":"2023-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2023/WD-hr-time-3-20230719/","title":"High Resolution Time","rawDate":"2023-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/hr-time"},"html-aam-1.0":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/html-aam-1.0/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2024-02-06","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/html-aam/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150407":{"authors":["Steve Faulkner","Jason Kiss","Cynthia Shelly","Alexander Surkov"],"href":"https://www.w3.org/TR/2015/WD-html-aam-1.0-20150407/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2015-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/","https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151203":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2015/WD-html-aam-1.0-20151203/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2015-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161208":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161208/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161211":{"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161211/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161212":{"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161212/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161214":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161214/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161221":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161221/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161222":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161222/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161223":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2016/WD-html-aam-1.0-20161223/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2016-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170215":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170215/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170322":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170322/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170419":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170419/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170427":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170427/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170501":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170501/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170504/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170510":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170510/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170524":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170524/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170531":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170531/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170602":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170602/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170606":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20170606/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171010":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20171010/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171027":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20171027/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171123":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20171123/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171130":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20171130/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171207":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20171207/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171218":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2017/WD-html-aam-1.0-20171218/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2017-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180105":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180105/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180108":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180108/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180109":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180109/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-01-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180128":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180128/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180131":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180131/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180226":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180226/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180301":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180301/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180302":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180302/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180307":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180307/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180503":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180503/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180519":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180519/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180528":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180528/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180530":{"authors":["Steve Faulkner","Jason Kiss","Alexander Surkov","Bogdan Brinza","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180530/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180725":{"authors":["Steve Faulkner","Alexander Surkov","Bogdan Brinza","Scott O'Hara","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180725/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180802":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180802/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180907":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180907/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20180926/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181005":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20181005/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20181018/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181025":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20181025/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2018/WD-html-aam-1.0-20181214/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190118":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190118/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190124":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190124/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190131":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190131/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190530/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190531/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190603":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190603/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190614":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190614/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190628":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190628/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190703":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190703/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190710":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190710/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190715":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190715/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190911":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190911/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190913":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190913/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190914":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190914/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190918":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190918/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190919":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190919/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190922":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190922/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190923":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20190923/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191005":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191005/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191006":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191006/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191018":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191018/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191111":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191111/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-11-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191112":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191112/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191210":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191210/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-12-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191212/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191213":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191213/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191217":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2019/WD-html-aam-1.0-20191217/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2019-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200529":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2020/WD-html-aam-1.0-20200529/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2020-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200601":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2020/WD-html-aam-1.0-20200601/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2020-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200718":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2020/WD-html-aam-1.0-20200718/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2020-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200811":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2020/WD-html-aam-1.0-20200811/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2020-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200817":{"authors":["Steve Faulkner","Alexander Surkov","Scott O'Hara","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2020/WD-html-aam-1.0-20200817/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2020-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210813":{"authors":["Steve Faulkner","Scott O'Hara","Alexander Surkov","Bogdan Brinza","Jason Kiss","Cynthia Shelly"],"href":"https://www.w3.org/TR/2021/WD-html-aam-1.0-20210813/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2021-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220120/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220121":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220121/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220307/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220404":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220404/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220504/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220602":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220602/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220708":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220708/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220709":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220709/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220711":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220711/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220719":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220719/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20220829/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221004":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20221004/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221026":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20221026/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221104":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20221104/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221128":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20221128/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20221208/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2022/WD-html-aam-1.0-20221212/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2022-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230131":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230131/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230202/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230308/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230322":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230322/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230324":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230324/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230328":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230328/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230411":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230411/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230427/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230503":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230503/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230509":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230509/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230510/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230515/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230519/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230609":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230609/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230617":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230617/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230627":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230627/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230705/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230728":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230728/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230818":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230818/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230825/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230902/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230925":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20230925/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231003":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20231003/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231009":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20231009/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20231016/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20231102/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2023/WD-html-aam-1.0-20231204/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Scott O'Hara"],"href":"https://www.w3.org/TR/2024/WD-html-aam-1.0-20240206/","title":"HTML Accessibility API Mappings 1.0","rawDate":"2024-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/html-aam"},"html-aapi":{"authors":["Steve Faulkner","Cynthia Shelly","Jason Kiss","Alexander Surkov"],"href":"https://www.w3.org/TR/html-aapi/","title":"HTML to Platform Accessibility APIs Implementation Guide","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110414":{"status":"WD","rawDate":"2011-04-14","href":"https://www.w3.org/TR/2011/WD-html-aapi-20110414/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-html-aapi-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html-aapi-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Steve Faulkner","Cynthia Shelly","Jason Kiss"],"href":"https://www.w3.org/TR/2012/WD-html-aapi-20121025/","title":"HTML to Platform Accessibility APIs Implementation Guide","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Steve Faulkner","Cynthia Shelly","Jason Kiss","Alexander Surkov"],"href":"https://www.w3.org/TR/2013/WD-html-aapi-20130910/","title":"HTML to Platform Accessibility APIs Implementation Guide","rawDate":"2013-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131001":{"authors":["Steve Faulkner","Cynthia Shelly","Jason Kiss","Alexander Surkov"],"href":"https://www.w3.org/TR/2013/WD-html-aapi-20131001/","title":"HTML to Platform Accessibility APIs Implementation Guide","rawDate":"2013-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Steve Faulkner","Cynthia Shelly","Jason Kiss","Alexander Surkov"],"href":"https://www.w3.org/TR/2015/NOTE-html-aapi-20150929/","title":"HTML to Platform Accessibility APIs Implementation Guide","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"http://rawgithub.com/w3c/html-api-map/master/index.html","isRetired":true},"html-alt-techniques":{"authors":["Shane McCarron","Liam Quin","Steve Faulkner"],"href":"https://www.w3.org/TR/html-alt-techniques/","title":"HTML5: Techniques for providing useful text alternatives","rawDate":"2015-05-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-html-alt-techniques-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-html-alt-techniques-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-html-alt-techniques-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-html-alt-techniques-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-html-alt-techniques-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html-alt-techniques-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2012/WD-html-alt-techniques-20121025/","title":"HTML5: Techniques for providing useful text alternatives","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141023":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2014/WD-html-alt-techniques-20141023/","title":"HTML5: Techniques for providing useful text alternatives","rawDate":"2014-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150521":{"authors":["Shane McCarron","Liam Quin","Steve Faulkner"],"href":"https://www.w3.org/TR/2015/NOTE-html-alt-techniques-20150521/","title":"HTML5: Techniques for providing useful text alternatives","rawDate":"2015-05-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://w3c.github.io/alt-techniques/","repository":"https://github.com/w3c/alt-techniques","isRetired":true},"html-aria":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/html-aria/","title":"ARIA in HTML","rawDate":"2023-12-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150414":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20150414/","title":"ARIA in HTML","rawDate":"2015-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150514":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20150514/","title":"ARIA in HTML","rawDate":"2015-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150902":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20150902/","title":"ARIA in HTML","rawDate":"2015-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151010":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20151010/","title":"ARIA in HTML","rawDate":"2015-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151210":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20151210/","title":"ARIA in HTML","rawDate":"2015-12-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151214":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20151214/","title":"ARIA in HTML","rawDate":"2015-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151216":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2015/WD-html-aria-20151216/","title":"ARIA in HTML","rawDate":"2015-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160115":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2016/WD-html-aria-20160115/","title":"ARIA in HTML","rawDate":"2016-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160310":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2016/WD-html-aria-20160310/","title":"ARIA in HTML","rawDate":"2016-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160511":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2016/WD-html-aria-20160511/","title":"ARIA in HTML","rawDate":"2016-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160525":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2016/WD-html-aria-20160525/","title":"ARIA in HTML","rawDate":"2016-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160902":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20160902/","title":"ARIA in HTML","rawDate":"2016-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160919":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20160919/","title":"ARIA in HTML","rawDate":"2016-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161005":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20161005/","title":"ARIA in HTML","rawDate":"2016-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161030":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20161030/","title":"ARIA in HTML","rawDate":"2016-10-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161108":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20161108/","title":"ARIA in HTML","rawDate":"2016-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161110":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20161110/","title":"ARIA in HTML","rawDate":"2016-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161116":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20161116/","title":"ARIA in HTML","rawDate":"2016-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161121":{"href":"https://www.w3.org/TR/2016/WD-html-aria-20161121/","title":"ARIA in HTML","rawDate":"2016-11-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170103":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170103/","title":"ARIA in HTML","rawDate":"2017-01-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170313":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170313/","title":"ARIA in HTML","rawDate":"2017-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170323":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170323/","title":"ARIA in HTML","rawDate":"2017-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170829":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170829/","title":"ARIA in HTML","rawDate":"2017-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170908":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170908/","title":"ARIA in HTML","rawDate":"2017-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170909":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170909/","title":"ARIA in HTML","rawDate":"2017-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170926":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170926/","title":"ARIA in HTML","rawDate":"2017-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170929":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20170929/","title":"ARIA in HTML","rawDate":"2017-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171013":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2017/WD-html-aria-20171013/","title":"ARIA in HTML","rawDate":"2017-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180131":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180131/","title":"ARIA in HTML","rawDate":"2018-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180221":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180221/","title":"ARIA in HTML","rawDate":"2018-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180226":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180226/","title":"ARIA in HTML","rawDate":"2018-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180310":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180310/","title":"ARIA in HTML","rawDate":"2018-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180414":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180414/","title":"ARIA in HTML","rawDate":"2018-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180423":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180423/","title":"ARIA in HTML","rawDate":"2018-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180519":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180519/","title":"ARIA in HTML","rawDate":"2018-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180701":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180701/","title":"ARIA in HTML","rawDate":"2018-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180708":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180708/","title":"ARIA in HTML","rawDate":"2018-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20180926/","title":"ARIA in HTML","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20181018/","title":"ARIA in HTML","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2018/WD-html-aria-20181214/","title":"ARIA in HTML","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190530/","title":"ARIA in HTML","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190531/","title":"ARIA in HTML","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190701":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190701/","title":"ARIA in HTML","rawDate":"2019-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190705":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190705/","title":"ARIA in HTML","rawDate":"2019-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190925":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190925/","title":"ARIA in HTML","rawDate":"2019-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190928":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190928/","title":"ARIA in HTML","rawDate":"2019-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190929":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20190929/","title":"ARIA in HTML","rawDate":"2019-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191001":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191001/","title":"ARIA in HTML","rawDate":"2019-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191002":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191002/","title":"ARIA in HTML","rawDate":"2019-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191007":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191007/","title":"ARIA in HTML","rawDate":"2019-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191008":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191008/","title":"ARIA in HTML","rawDate":"2019-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191018":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191018/","title":"ARIA in HTML","rawDate":"2019-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191119":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191119/","title":"ARIA in HTML","rawDate":"2019-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191122":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191122/","title":"ARIA in HTML","rawDate":"2019-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191203":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191203/","title":"ARIA in HTML","rawDate":"2019-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191206":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2019/WD-html-aria-20191206/","title":"ARIA in HTML","rawDate":"2019-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200203":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200203/","title":"ARIA in HTML","rawDate":"2020-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200215":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200215/","title":"ARIA in HTML","rawDate":"2020-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200520":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200520/","title":"ARIA in HTML","rawDate":"2020-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200714":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200714/","title":"ARIA in HTML","rawDate":"2020-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200806":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200806/","title":"ARIA in HTML","rawDate":"2020-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200810":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200810/","title":"ARIA in HTML","rawDate":"2020-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200811":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200811/","title":"ARIA in HTML","rawDate":"2020-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200813":{"authors":["Steve Faulkner","Scott O'Hara"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200813/","title":"ARIA in HTML","rawDate":"2020-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200814":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20200814/","title":"ARIA in HTML","rawDate":"2020-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201006":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20201006/","title":"ARIA in HTML","rawDate":"2020-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201007":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20201007/","title":"ARIA in HTML","rawDate":"2020-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201020":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20201020/","title":"ARIA in HTML","rawDate":"2020-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201214":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2020/WD-html-aria-20201214/","title":"ARIA in HTML","rawDate":"2020-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210115":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210115/","title":"ARIA in HTML","rawDate":"2021-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210213":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210213/","title":"ARIA in HTML","rawDate":"2021-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210214":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210214/","title":"ARIA in HTML","rawDate":"2021-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210219":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210219/","title":"ARIA in HTML","rawDate":"2021-02-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210220":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210220/","title":"ARIA in HTML","rawDate":"2021-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210301":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210301/","title":"ARIA in HTML","rawDate":"2021-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210306":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210306/","title":"ARIA in HTML","rawDate":"2021-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210307":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210307/","title":"ARIA in HTML","rawDate":"2021-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210308":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210308/","title":"ARIA in HTML","rawDate":"2021-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210309":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210309/","title":"ARIA in HTML","rawDate":"2021-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210310":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210310/","title":"ARIA in HTML","rawDate":"2021-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210313":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210313/","title":"ARIA in HTML","rawDate":"2021-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210314":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210314/","title":"ARIA in HTML","rawDate":"2021-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210315":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210315/","title":"ARIA in HTML","rawDate":"2021-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210321":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210321/","title":"ARIA in HTML","rawDate":"2021-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210322":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210322/","title":"ARIA in HTML","rawDate":"2021-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210325":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210325/","title":"ARIA in HTML","rawDate":"2021-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210326":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210326/","title":"ARIA in HTML","rawDate":"2021-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210327":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210327/","title":"ARIA in HTML","rawDate":"2021-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210328":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210328/","title":"ARIA in HTML","rawDate":"2021-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210407":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210407/","title":"ARIA in HTML","rawDate":"2021-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210408":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210408/","title":"ARIA in HTML","rawDate":"2021-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210414":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210414/","title":"ARIA in HTML","rawDate":"2021-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210415":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210415/","title":"ARIA in HTML","rawDate":"2021-04-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210416":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210416/","title":"ARIA in HTML","rawDate":"2021-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210419":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210419/","title":"ARIA in HTML","rawDate":"2021-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210420":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210420/","title":"ARIA in HTML","rawDate":"2021-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210428":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210428/","title":"ARIA in HTML","rawDate":"2021-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210501":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210501/","title":"ARIA in HTML","rawDate":"2021-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210513/","title":"ARIA in HTML","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210515":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210515/","title":"ARIA in HTML","rawDate":"2021-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210516":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210516/","title":"ARIA in HTML","rawDate":"2021-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210517":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210517/","title":"ARIA in HTML","rawDate":"2021-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210525/","title":"ARIA in HTML","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210526/","title":"ARIA in HTML","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210530":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210530/","title":"ARIA in HTML","rawDate":"2021-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210611":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210611/","title":"ARIA in HTML","rawDate":"2021-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210618":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210618/","title":"ARIA in HTML","rawDate":"2021-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210623":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210623/","title":"ARIA in HTML","rawDate":"2021-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210624/","title":"ARIA in HTML","rawDate":"2021-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210625":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210625/","title":"ARIA in HTML","rawDate":"2021-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210626":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210626/","title":"ARIA in HTML","rawDate":"2021-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210627":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210627/","title":"ARIA in HTML","rawDate":"2021-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210628":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/WD-html-aria-20210628/","title":"ARIA in HTML","rawDate":"2021-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210706":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CR-html-aria-20210706/","title":"ARIA in HTML","rawDate":"2021-07-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210707":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210707/","title":"ARIA in HTML","rawDate":"2021-07-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210716":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210716/","title":"ARIA in HTML","rawDate":"2021-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210717":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210717/","title":"ARIA in HTML","rawDate":"2021-07-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210727":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210727/","title":"ARIA in HTML","rawDate":"2021-07-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210804":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210804/","title":"ARIA in HTML","rawDate":"2021-08-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210823/","title":"ARIA in HTML","rawDate":"2021-08-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210831/","title":"ARIA in HTML","rawDate":"2021-08-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210905":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210905/","title":"ARIA in HTML","rawDate":"2021-09-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210924":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/CRD-html-aria-20210924/","title":"ARIA in HTML","rawDate":"2021-09-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/PR-html-aria-20210930/","title":"ARIA in HTML","rawDate":"2021-09-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211209":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2021/REC-html-aria-20211209/","title":"ARIA in HTML","rawDate":"2021-12-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2022/REC-html-aria-20220927/","title":"ARIA in HTML","rawDate":"2022-09-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221221":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2022/REC-html-aria-20221221/","title":"ARIA in HTML","rawDate":"2022-12-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230202/","title":"ARIA in HTML","rawDate":"2023-02-02","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230203":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230203/","title":"ARIA in HTML","rawDate":"2023-02-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230207":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230207/","title":"ARIA in HTML","rawDate":"2023-02-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230213":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230213/","title":"ARIA in HTML","rawDate":"2023-02-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230215":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230215/","title":"ARIA in HTML","rawDate":"2023-02-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230304":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230304/","title":"ARIA in HTML","rawDate":"2023-03-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230306":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230306/","title":"ARIA in HTML","rawDate":"2023-03-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230324":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230324/","title":"ARIA in HTML","rawDate":"2023-03-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230515/","title":"ARIA in HTML","rawDate":"2023-05-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230531":{"authors":["Steve Faulkner","Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230531/","title":"ARIA in HTML","rawDate":"2023-05-31","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230612":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230612/","title":"ARIA in HTML","rawDate":"2023-06-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230614/","title":"ARIA in HTML","rawDate":"2023-06-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230626/","title":"ARIA in HTML","rawDate":"2023-06-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230629/","title":"ARIA in HTML","rawDate":"2023-06-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230705/","title":"ARIA in HTML","rawDate":"2023-07-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230709":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230709/","title":"ARIA in HTML","rawDate":"2023-07-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230712/","title":"ARIA in HTML","rawDate":"2023-07-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230821/","title":"ARIA in HTML","rawDate":"2023-08-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230827":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20230827/","title":"ARIA in HTML","rawDate":"2023-08-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231003":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20231003/","title":"ARIA in HTML","rawDate":"2023-10-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20231004/","title":"ARIA in HTML","rawDate":"2023-10-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20231103/","title":"ARIA in HTML","rawDate":"2023-11-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231213":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20231213/","title":"ARIA in HTML","rawDate":"2023-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Scott O'Hara","Patrick Lauke"],"href":"https://www.w3.org/TR/2023/REC-html-aria-20231221/","title":"ARIA in HTML","rawDate":"2023-12-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/html-aria/","repository":"https://github.com/w3c/html-aria"},"html-bidi":{"authors":["Aharon Lanin","Richard Ishida"],"href":"https://www.w3.org/TR/html-bidi/","title":"Additional Requirements for Bidi in HTML & CSS","rawDate":"2015-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100304":{"authors":["Aharon Lanin"],"href":"https://www.w3.org/TR/2010/WD-html-bidi-20100304/","title":"Additional Requirements for Bidi in HTML","rawDate":"2010-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Aharon Lanin","Richard Ishida"],"href":"https://www.w3.org/TR/2015/NOTE-html-bidi-20150721/","title":"Additional Requirements for Bidi in HTML & CSS","rawDate":"2015-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"html-data-guide":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/html-data-guide/","title":"HTML Data Guide","rawDate":"2012-03-08","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120112":{"status":"WD","rawDate":"2012-01-12","href":"https://www.w3.org/TR/2012/WD-html-data-guide-20120112/","source":"./data/w3c-specs.txt"},"20120308":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2012/NOTE-html-data-guide-20120308/","title":"HTML Data Guide","rawDate":"2012-03-08","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/interest/"]}},"deliveredBy":["https://www.w3.org/2001/sw/interest/"]},"html-design-principles":{"authors":["Anne van Kesteren","Maciej Stachowiak"],"href":"https://www.w3.org/TR/html-design-principles/","title":"HTML Design Principles","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"versions":{"20071126":{"authors":["Anne van Kesteren","Maciej Stachowiak"],"href":"https://www.w3.org/TR/2007/WD-html-design-principles-20071126/","title":"HTML Design Principles","rawDate":"2007-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-11-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"html-imports":{"authors":["Dimitri Glazkov","Hajime Morita"],"href":"https://www.w3.org/TR/html-imports/","title":"HTML Imports","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130514":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2013/WD-html-imports-20130514/","title":"HTML Imports","rawDate":"2013-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140311":{"authors":["Dimitri Glazkov","Hajime Morita"],"href":"https://www.w3.org/TR/2014/WD-html-imports-20140311/","title":"HTML Imports","rawDate":"2014-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Dimitri Glazkov","Hajime Morita"],"href":"https://www.w3.org/TR/2016/WD-html-imports-20160225/","title":"HTML Imports","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Dimitri Glazkov","Hajime Morita"],"href":"https://www.w3.org/TR/2023/DISC-html-imports-20230615/","title":"HTML Imports","rawDate":"2023-06-15","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://wicg.github.io/webcomponents/spec/imports/","repository":"https://github.com/w3c/webcomponents","isRetired":true},"html-json-forms":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/html-json-forms/","title":"W3C HTML JSON form submission","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140529":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/2014/WD-html-json-forms-20140529/","title":"W3C HTML JSON form submission","rawDate":"2014-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/2015/NOTE-html-json-forms-20150929/","title":"W3C HTML JSON form submission","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"http://darobin.github.com/formic/specs/json/","isRetired":true},"html-lan":{"authors":["M. T. Carrasco Benitez"],"href":"https://www.w3.org/TR/NOTE-html-lan","title":"Primary Language in HTML","status":"NOTE","publisher":"W3C","versions":{"19980313":{"authors":["M. T. Carrasco Benitez"],"href":"https://www.w3.org/TR/1998/NOTE-html-lan-19980313","title":"Primary Language in HTML","rawDate":"1998-03-13","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"1998-03-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"html-longdesc":{"authors":["Charles McCathieNevile","Mark Sadecki"],"href":"https://www.w3.org/TR/html-longdesc/","title":"HTML5 Image Description Extension (longdesc)","rawDate":"2015-02-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130312":{"authors":["Charles McCathieNevile"],"href":"https://www.w3.org/TR/2013/WD-html-longdesc-20130312/","title":"HTML Image Description Extension","rawDate":"2013-03-12","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130606":{"authors":["Charles McCathieNevile"],"href":"https://www.w3.org/TR/2013/WD-html-longdesc-20130606/","title":"HTML5 Image Description Extension","rawDate":"2013-06-06","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130716":{"authors":["Charles McCathieNevile"],"href":"https://www.w3.org/TR/2013/WD-html-longdesc-20130716/","title":"HTML5 Image Description Extension (longdesc)","rawDate":"2013-07-16","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140812":{"authors":["Charles McCathieNevile","Mark Sadecki"],"href":"https://www.w3.org/TR/2014/CR-html-longdesc-20140812/","title":"HTML5 Image Description Extension (longdesc)","rawDate":"2014-08-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141204":{"authors":["Charles McCathieNevile","Mark Sadecki"],"href":"https://www.w3.org/TR/2014/PR-html-longdesc-20141204/","title":"HTML5 Image Description Extension (longdesc)","rawDate":"2014-12-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150226":{"authors":["Charles McCathieNevile","Mark Sadecki"],"href":"https://www.w3.org/TR/2015/REC-html-longdesc-20150226/","title":"HTML5 Image Description Extension (longdesc)","rawDate":"2015-02-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dvcs.w3.org/hg/html-proposals/raw-file/default/longdesc1/longdesc.html"},"html-main-element":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/html-main-element/","title":"main element - an HTML5 extension specification","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121217":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2012/WD-html-main-element-20121217/","title":"main element - an HTML5 extension specification","rawDate":"2012-12-17","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2013/NOTE-html-main-element-20130528/","title":"main element - an HTML5 extension specification","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"html-markup":{"authors":["Michael[tm] Smith"],"href":"https://www.w3.org/TR/html-markup/","title":"HTML: The Markup Language (an HTML language reference)","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-html-markup-20100304/","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-html-markup-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-html-markup-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-html-markup-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-html-markup-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-html-markup-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html-markup-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Michael Smith"],"href":"https://www.w3.org/TR/2012/WD-html-markup-20121025/","title":"HTML: The Markup Language (an HTML language reference)","rawDate":"2012-10-25","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Michael[tm] Smith"],"href":"https://www.w3.org/TR/2013/NOTE-html-markup-20130528/","title":"HTML: The Markup Language (an HTML language reference)","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"html-media-capture":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/html-media-capture/","title":"HTML Media Capture","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"versions":{"20100401":{"status":"WD","rawDate":"2010-04-01","href":"https://www.w3.org/TR/2010/WD-capture-api-20100401/","source":"./data/w3c-specs.txt"},"20100720":{"status":"WD","rawDate":"2010-07-20","href":"https://www.w3.org/TR/2010/WD-html-media-capture-20100720/","source":"./data/w3c-specs.txt"},"20100928":{"status":"WD","rawDate":"2010-09-28","href":"https://www.w3.org/TR/2010/WD-html-media-capture-20100928/","source":"./data/w3c-specs.txt"},"20110414":{"status":"WD","rawDate":"2011-04-14","href":"https://www.w3.org/TR/2011/WD-html-media-capture-20110414/","source":"./data/w3c-specs.txt"},"20120529":{"status":"WD","rawDate":"2012-05-29","href":"https://www.w3.org/TR/2012/WD-html-media-capture-20120529/","source":"./data/w3c-specs.txt"},"20120712":{"status":"WD","rawDate":"2012-07-12","href":"https://www.w3.org/TR/2012/WD-html-media-capture-20120712/","source":"./data/w3c-specs.txt"},"20121213":{"status":"WD","rawDate":"2012-12-13","href":"https://www.w3.org/TR/2012/WD-html-media-capture-20121213/","source":"./data/w3c-specs.txt"},"20130326":{"status":"WD","rawDate":"2013-03-26","href":"https://www.w3.org/TR/2013/WD-html-media-capture-20130326/","source":"./data/w3c-specs.txt"},"20130509":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2013/CR-html-media-capture-20130509/","title":"HTML Media Capture","rawDate":"2013-05-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140619":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2014/WD-html-media-capture-20140619/","title":"HTML Media Capture","rawDate":"2014-06-19","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140909":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2014/CR-html-media-capture-20140909/","title":"HTML Media Capture","rawDate":"2014-09-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2017/CR-html-media-capture-20170504/","title":"HTML Media Capture","rawDate":"2017-05-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170831":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2017/CR-html-media-capture-20170831/","title":"HTML Media Capture","rawDate":"2017-08-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171128":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2017/PR-html-media-capture-20171128/","title":"HTML Media Capture","rawDate":"2017-11-28","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180201":{"authors":["Anssi Kostiainen","Ilkka Oksanen","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2018/REC-html-media-capture-20180201/","title":"HTML Media Capture","rawDate":"2018-02-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"hasErrata":"https://github.com/w3c/html-media-capture/labels/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-02-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/html-media-capture/","repository":"https://github.com/w3c/html-media-capture","hasErrata":"https://github.com/w3c/html-media-capture/labels/errata"},"html-picture-element":{"authors":["Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/html-picture-element/","title":"The picture Element","rawDate":"2014-07-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130226":{"authors":["Marcos Caceres","Mathew Marquis","Yoav Weiss","Adrian Bateman"],"href":"https://www.w3.org/TR/2013/WD-html-picture-element-20130226/","title":"The picture element","rawDate":"2013-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140722":{"authors":["Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2014/NOTE-html-picture-element-20140722/","title":"The picture Element","rawDate":"2014-07-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"html-polyglot":{"authors":["Eliot Graff","Leif Halvard Silli"],"href":"https://www.w3.org/TR/html-polyglot/","title":"Polyglot Markup: A robust profile of the HTML5 vocabulary","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-html-polyglot-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-html-polyglot-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-html-polyglot-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-html-polyglot-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-html-polyglot-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html-polyglot-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Eliot Graff"],"href":"https://www.w3.org/TR/2012/WD-html-polyglot-20121025/","title":"Polyglot Markup: HTML-Compatible XHTML Documents","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["Eliot Graff","Leif Halvard Silli"],"href":"https://www.w3.org/TR/2013/WD-html-polyglot-20131022/","title":"Polyglot Markup: A robust profile of the HTML5 vocabulary","rawDate":"2013-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140204":{"authors":["Eliot Graff","Leif Halvard Silli"],"href":"https://www.w3.org/TR/2014/WD-html-polyglot-20140204/","title":"Polyglot Markup: A robust profile of the HTML5 vocabulary","rawDate":"2014-02-04","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140717":{"authors":["Eliot Graff","Leif Halvard Silli"],"href":"https://www.w3.org/TR/2014/CR-html-polyglot-20140717/","title":"Polyglot Markup: A robust profile of the HTML5 vocabulary","rawDate":"2014-07-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Eliot Graff","Leif Halvard Silli"],"href":"https://www.w3.org/TR/2015/NOTE-html-polyglot-20150929/","title":"Polyglot Markup: A robust profile of the HTML5 vocabulary","rawDate":"2015-09-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dev.w3.org/html5/html-polyglot/html-polyglot.html","isRetired":true},"html-rdfa":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/html-rdfa/","title":"HTML+RDFa 1.1 - Second Edition","rawDate":"2015-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091015":{"status":"WD","rawDate":"2009-10-15","href":"https://www.w3.org/TR/2009/WD-rdfa-in-html-20091015/","source":"./data/w3c-specs.txt"},"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-rdfa-in-html-20100304/","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-rdfa-in-html-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-rdfa-in-html-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-rdfa-in-html-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-rdfa-in-html-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-rdfa-in-html-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-rdfa-in-html-20120329/","source":"./data/w3c-specs.txt"},"20120911":{"status":"WD","rawDate":"2012-09-11","href":"https://www.w3.org/TR/2012/WD-rdfa-in-html-20120911/","source":"./data/w3c-specs.txt"},"20121213":{"status":"WD","rawDate":"2012-12-13","href":"https://www.w3.org/TR/2012/WD-rdfa-in-html-20121213/","source":"./data/w3c-specs.txt"},"20130207":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2013/WD-html-rdfa-20130207/","title":"HTML+RDFa 1.1","rawDate":"2013-02-07","status":"LCWD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2013/PR-html-rdfa-20130625/","title":"HTML+RDFa 1.1","rawDate":"2013-06-25","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130822":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2013/REC-html-rdfa-20130822/","title":"HTML+RDFa 1.1","rawDate":"2013-08-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2014/PER-html-rdfa-20141216/","title":"HTML+RDFa 1.1 - Second Edition","rawDate":"2014-12-16","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2015/REC-html-rdfa-20150317/","title":"HTML+RDFa 1.1 - Second Edition","rawDate":"2015-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"html-ruby-extensions":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/html-ruby-extensions/","title":"W3C HTML Ruby Markup Extensions","rawDate":"2014-02-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131022":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/2013/WD-html-ruby-extensions-20131022/","title":"W3C HTML Ruby Markup Extensions","rawDate":"2013-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140204":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/2014/NOTE-html-ruby-extensions-20140204/","title":"W3C HTML Ruby Markup Extensions","rawDate":"2014-02-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://darobin.github.com/html-ruby/"},"html-srcset":{"authors":["Theresa O'Connor"],"href":"https://www.w3.org/TR/html-srcset/","title":"The srcset attribute","rawDate":"2014-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130228":{"authors":["Theresa O'Connor"],"href":"https://www.w3.org/TR/2013/WD-html-srcset-20130228/","title":"The srcset attribute","rawDate":"2013-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140819":{"authors":["Theresa O'Connor"],"href":"https://www.w3.org/TR/2014/NOTE-html-srcset-20140819/","title":"The srcset attribute","rawDate":"2014-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"html-templates":{"authors":["Dimitri Glazkov","Rafael Weinstein","Tony Ross"],"href":"https://www.w3.org/TR/html-templates/","title":"HTML Templates","rawDate":"2014-03-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130214":{"authors":["Dimitri Glazkov","Rafael Weinstein","Tony Ross"],"href":"https://www.w3.org/TR/2013/WD-html-templates-20130214/","title":"HTML Templates","rawDate":"2013-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140318":{"authors":["Dimitri Glazkov","Rafael Weinstein","Tony Ross"],"href":"https://www.w3.org/TR/2014/NOTE-html-templates-20140318/","title":"HTML Templates","rawDate":"2014-03-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/templates/index.html"},"html-transcript-src":{"href":"https://www.w3.org/TR/html-transcript-src/","title":"A transcript extension for HTML","rawDate":"2015-10-01","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/html-transcript/html-transcript-src.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151001":{"href":"https://www.w3.org/TR/2015/NOTE-html-transcript-src-20151001/","title":"A transcript extension for HTML","rawDate":"2015-10-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/html-transcript","isRetired":true},"html-xml-tf-report":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/html-xml-tf-report/","title":"HTML/XML Task Force Report","rawDate":"2012-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120209":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/2012/NOTE-html-xml-tf-report-20120209/","title":"HTML/XML Task Force Report","rawDate":"2012-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"html40":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/html40/","title":"HTML 4.0 Recommendation","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"19970708":{"status":"WD","rawDate":"1997-07-08","href":"https://www.w3.org/TR/WD-html40-970708/","source":"./data/w3c-specs.txt"},"19970917":{"status":"WD","rawDate":"1997-09-17","href":"https://www.w3.org/TR/WD-html40-970917/","source":"./data/w3c-specs.txt"},"19971107":{"status":"PR","rawDate":"1997-11-07","href":"https://www.w3.org/TR/PR-html40-971107","source":"./data/w3c-specs.txt"},"19971218":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/REC-html40-971218","title":"HTML 4.0 Recommendation","rawDate":"1997-12-18","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"19980424":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/1998/REC-html40-19980424/","title":"HTML 4.0 Recommendation","rawDate":"1998-04-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/html40-updates/REC-html40-19980424-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/2018/SPSD-html40-20180327/","title":"HTML 4.0 Recommendation","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/MarkUp/html40-updates/REC-html40-19980424-errata.html","obsoletedBy":["html401"],"isRetired":true},"html40-mobile":{"authors":["Tomihisa Kamada","Masayasu Ishikawa","Shinichi Matsui"],"etAl":true,"href":"https://www.w3.org/TR/NOTE-html40-mobile/","title":"HTML 4.0 Guidelines for Mobile Access","status":"NOTE","publisher":"W3C","versions":{"19990315":{"authors":["Tomihisa Kamada","Masayasu Ishikawa","Shinichi Matsui"],"href":"https://www.w3.org/TR/1999/NOTE-html40-mobile-19990315/","title":"HTML 4.0 Guidelines for Mobile Access","rawDate":"1999-03-15","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-03-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"html401":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/html401/","title":"HTML 4.01 Specification","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/html4-updates/errata","versions":{"19990824":{"status":"PR","rawDate":"1999-08-24","href":"https://www.w3.org/TR/1999/PR-html40-19990824","source":"./data/w3c-specs.txt"},"19991224":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/1999/REC-html401-19991224/","title":"HTML 4.01 Specification","rawDate":"1999-12-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/html4-updates/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Dave Raggett","Arnaud Le Hors","Ian Jacobs"],"href":"https://www.w3.org/TR/2018/SPSD-html401-20180327/","title":"HTML 4.01 Specification","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["html40"],"isRetired":true},"html5":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/html5/","title":"HTML5","rawDate":"2018-03-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20080122":{"status":"WD","rawDate":"2008-01-22","href":"https://www.w3.org/TR/2008/WD-html5-20080122/","source":"./data/w3c-specs.txt"},"20080610":{"status":"WD","rawDate":"2008-06-10","href":"https://www.w3.org/TR/2008/WD-html5-20080610/","source":"./data/w3c-specs.txt"},"20090212":{"status":"WD","rawDate":"2009-02-12","href":"https://www.w3.org/TR/2009/WD-html5-20090212/","source":"./data/w3c-specs.txt"},"20090423":{"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-html5-20090423/","source":"./data/w3c-specs.txt"},"20090825":{"status":"WD","rawDate":"2009-08-25","href":"https://www.w3.org/TR/2009/WD-html5-20090825/","source":"./data/w3c-specs.txt"},"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-html5-20100304/","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-html5-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-html5-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-html5-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-html5-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-html5-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html5-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Ian Hickson","David Hyatt"],"href":"https://www.w3.org/TR/2012/WD-html5-20121025/","title":"HTML5","rawDate":"2012-10-25","status":"WD","publisher":"W3C"},"20121217":{"authors":["Robin Berjon","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2012/CR-html5-20121217/","title":"HTML5","rawDate":"2012-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130806":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2013/CR-html5-20130806/","title":"HTML5","rawDate":"2013-08-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140204":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/CR-html5-20140204/","title":"HTML5","rawDate":"2014-02-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140429":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/CR-html5-20140429/","title":"HTML5","rawDate":"2014-04-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140617":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/WD-html5-20140617/","title":"HTML5","rawDate":"2014-06-17","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140731":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/CR-html5-20140731/","title":"HTML5","rawDate":"2014-07-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140916":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/PR-html5-20140916/","title":"HTML5","rawDate":"2014-09-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141028":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/REC-html5-20141028/","title":"HTML5","rawDate":"2014-10-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2018/SPSD-html5-20180327/","title":"HTML5","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/html/wg/drafts/html/master/","obsoletes":["web-forms-2","Window"],"isRetired":true},"html5-author":{"authors":["Robin Berjon","Travis Leithead","Silvia Pfeiffer","Erika Doyle Navara","Theresa O'Connor"],"href":"https://www.w3.org/TR/html5-author/","title":"HTML5: Edition for Web Authors","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110809":{"status":"WD","rawDate":"2011-08-09","href":"https://www.w3.org/TR/2011/WD-html5-author-20110809/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html5-author-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Robin Berjon","Travis Leithead","Silvia Pfeiffer","Erika Doyle Navara","Theresa O'Connor"],"href":"https://www.w3.org/TR/2012/WD-html5-author-20121025/","title":"HTML5: Edition for Web Authors","rawDate":"2012-10-25","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Robin Berjon","Travis Leithead","Silvia Pfeiffer","Erika Doyle Navara","Theresa O'Connor"],"href":"https://www.w3.org/TR/2013/NOTE-html5-author-20130528/","title":"HTML5: Edition for Web Authors","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"html5-diff":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/html5-diff/","title":"HTML5 Differences from HTML4","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"versions":{"20080122":{"status":"WD","rawDate":"2008-01-22","href":"https://www.w3.org/TR/2008/WD-html5-diff-20080122/","source":"./data/w3c-specs.txt"},"20080610":{"status":"WD","rawDate":"2008-06-10","href":"https://www.w3.org/TR/2008/WD-html5-diff-20080610/","source":"./data/w3c-specs.txt"},"20090212":{"status":"WD","rawDate":"2009-02-12","href":"https://www.w3.org/TR/2009/WD-html5-diff-20090212/","source":"./data/w3c-specs.txt"},"20090423":{"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-html5-diff-20090423/","source":"./data/w3c-specs.txt"},"20090825":{"status":"WD","rawDate":"2009-08-25","href":"https://www.w3.org/TR/2009/WD-html5-diff-20090825/","source":"./data/w3c-specs.txt"},"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-html5-diff-20100304/","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-html5-diff-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-html5-diff-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-html5-diff-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-html5-diff-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-html5-diff-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-html5-diff-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Anne van Kesteren","Simon Pieters"],"href":"https://www.w3.org/TR/2012/WD-html5-diff-20121025/","title":"HTML5 differences from HTML4","rawDate":"2012-10-25","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2013/WD-html5-diff-20130528/","title":"Differences from HTML4","rawDate":"2013-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140918":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2014/WD-html5-diff-20140918/","title":"HTML5 Differences from HTML4","rawDate":"2014-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2014/NOTE-html5-diff-20141209/","title":"HTML5 Differences from HTML4","rawDate":"2014-12-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-12-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://rawgit.com/whatwg/html-differences/master/Overview.html","repository":"https://github.com/whatwg/html-differences"},"html5-pubnotes":{"authors":["Michael[tm] Smith"],"href":"https://www.w3.org/TR/html5-pubnotes/","title":"HTML 5 Publication Notes","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"versions":{"20080610":{"authors":["Michael[tm] Smith"],"href":"https://www.w3.org/TR/2008/NOTE-html5-pubnotes-20080610/","title":"HTML 5 Publication Notes","rawDate":"2008-06-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2008-06-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"html51":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/html51/","title":"HTML 5.1 2nd Edition","rawDate":"2021-01-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121217":{"authors":["Robin Berjon","Travis Leithead","Erika Doyle Navara","Silvia Pfeiffer","Theresa O'Connor"],"href":"https://www.w3.org/TR/2012/WD-html51-20121217/","title":"HTML 5.1","rawDate":"2012-12-17","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2013/WD-html51-20130528/","title":"HTML 5.1","rawDate":"2013-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131029":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer","Ian Hickson"],"href":"https://www.w3.org/TR/2013/WD-html51-20131029/","title":"HTML 5.1","rawDate":"2013-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140204":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/WD-html51-20140204/","title":"HTML 5.1","rawDate":"2014-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140617":{"authors":["Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2014/WD-html51-20140617/","title":"HTML 5.1","rawDate":"2014-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150317/","title":"HTML 5.1","rawDate":"2015-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150323":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150323/","title":"HTML 5.1","rawDate":"2015-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150417":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150417/","title":"HTML 5.1","rawDate":"2015-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150506":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150506/","title":"HTML 5.1","rawDate":"2015-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150709":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150709/","title":"HTML 5.1","rawDate":"2015-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150824":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150824/","title":"HTML 5.1","rawDate":"2015-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150828":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150828/","title":"HTML 5.1","rawDate":"2015-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150831":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150831/","title":"HTML 5.1","rawDate":"2015-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150922":{"authors":["Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Simon Pieters","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150922/","title":"HTML 5.1","rawDate":"2015-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150923":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150923/","title":"HTML 5.1","rawDate":"2015-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150924/","title":"HTML 5.1","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150925":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150925/","title":"HTML 5.1","rawDate":"2015-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150929/","title":"HTML 5.1","rawDate":"2015-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150930":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20150930/","title":"HTML 5.1","rawDate":"2015-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151003":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20151003/","title":"HTML 5.1","rawDate":"2015-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151007":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Robin Berjon","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Tab Atkins Jr.","Yoav Weiss","Marcos Caceres","Mathew Marquis"],"href":"https://www.w3.org/TR/2015/WD-html51-20151007/","title":"HTML 5.1","rawDate":"2015-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151008":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Steve Faulkner","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Robin Berjon"],"href":"https://www.w3.org/TR/2015/WD-html51-20151008/","title":"HTML 5.1","rawDate":"2015-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160310":{"authors":["Simon Pieters","Anne van Kesteren","Philip Jägenstedt","Domenic Denicola","Ian Hickson","Steve Faulkner","Arron Eicholz","Travis Leithead","Erika Doyle Navara","Theresa O'Connor","Robin Berjon"],"href":"https://www.w3.org/TR/2016/WD-html51-20160310/","title":"HTML 5.1","rawDate":"2016-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160412":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/WD-html51-20160412/","title":"HTML 5.1","rawDate":"2016-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160503":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/WD-html51-20160503/","title":"HTML 5.1","rawDate":"2016-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160602":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/WD-html51-20160602/","title":"HTML 5.1","rawDate":"2016-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160621":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/CR-html51-20160621/","title":"HTML 5.1","rawDate":"2016-06-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/PR-html51-20160915/","title":"HTML 5.1","rawDate":"2016-09-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161101":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/REC-html51-20161101/","title":"HTML 5.1","rawDate":"2016-11-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://github.com/w3c/html/issues"},"20170620":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2017/CR-html51-20170620/","title":"HTML 5.1 2nd Edition","rawDate":"2017-06-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170803":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2017/PR-html51-20170803/","title":"HTML 5.1 2nd Edition","rawDate":"2017-08-03","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171003":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2017/REC-html51-20171003/","title":"HTML 5.1 2nd Edition","rawDate":"2017-10-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"hasErrata":"https://github.com/w3c/html/labels/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2021/SPSD-html51-20210128/","title":"HTML 5.1 2nd Edition","rawDate":"2021-01-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://rawgit.com/w3c/html/html5.1-2/single-page.html","hasErrata":"https://github.com/w3c/html/labels/errata","repository":"https://github.com/w3c/html","isRetired":true},"html52":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/html52/","title":"HTML 5.2","rawDate":"2021-01-28","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/html/","deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160818":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/WD-html52-20160818/","title":"HTML 5.2","rawDate":"2016-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161025":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/WD-html52-20161025/","title":"HTML 5.2","rawDate":"2016-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo"],"href":"https://www.w3.org/TR/2016/WD-html52-20161206/","title":"HTML 5.2","rawDate":"2016-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/WD-html52-20170117/","title":"HTML 5.2","rawDate":"2017-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170228":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/WD-html52-20170228/","title":"HTML 5.2","rawDate":"2017-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170406":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/WD-html52-20170406/","title":"HTML 5.2","rawDate":"2017-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170509":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/WD-html52-20170509/","title":"HTML 5.2","rawDate":"2017-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170718":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/WD-html52-20170718/","title":"HTML 5.2","rawDate":"2017-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170808":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/CR-html52-20170808/","title":"HTML 5.2","rawDate":"2017-08-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/PR-html52-20171102/","title":"HTML 5.2","rawDate":"2017-11-02","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2017/REC-html52-20171214/","title":"HTML 5.2","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"hasErrata":"https://github.com/w3c/html/labels/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Steve Faulkner","Arron Eicholz","Travis Leithead","Alex Danilo","Sangwhan Moon"],"href":"https://www.w3.org/TR/2021/SPSD-html52-20210128/","title":"HTML 5.2","rawDate":"2021-01-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/html","hasErrata":"https://github.com/w3c/html/labels/errata","isRetired":true},"html53":{"href":"https://www.w3.org/TR/html53/","title":"HTML 5.3","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/html/","deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20171214":{"href":"https://www.w3.org/TR/2017/WD-html53-20171214/","title":"HTML 5.3","rawDate":"2017-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180206":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2018/WD-html53-20180206/","title":"HTML 5.3","rawDate":"2018-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180315":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2018/WD-html53-20180315/","title":"HTML 5.3","rawDate":"2018-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180426":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2018/WD-html53-20180426/","title":"HTML 5.3","rawDate":"2018-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180703":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2018/WD-html53-20180703/","title":"HTML 5.3","rawDate":"2018-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180809":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2018/WD-html53-20180809/","title":"HTML 5.3","rawDate":"2018-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2018/WD-html53-20181018/","title":"HTML 5.3","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"href":"https://www.w3.org/TR/2021/NOTE-html53-20210128/","title":"HTML 5.3","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/html","authors":["Patricia Aas","Shwetank Dixit","Terence Eden","Bruce Lawson","Sangwhan Moon","Xiaoqian Wu","Scott O'Hara"],"isRetired":true},"htr":{"authors":["Ian Jacobs"],"href":"https://www.w3.org/TR/htr/","title":"How EMVCo, FIDO, and W3C Technologies Relate","rawDate":"2022-12-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/securepay/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201105":{"authors":["Ian Jacobs"],"href":"https://www.w3.org/TR/2020/NOTE-htr-20201105/","title":"How EMVCo, FIDO, and W3C Technologies Relate","rawDate":"2020-11-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/securepay/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221213":{"authors":["Ian Jacobs"],"href":"https://www.w3.org/TR/2022/NOTE-htr-20221213/","title":"How EMVCo, FIDO, and W3C Technologies Relate","rawDate":"2022-12-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/securepay/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"http-edit-dist-scenarios":{"versions":{"19961213":{"status":"NOTE","rawDate":"1996-12-13","href":"https://www.w3.org/TR/NOTE-http-edit-dist-scenarios-961213","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-http-edit-dist-scenarios","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1996-12-13","title":"HTTP-based Distributed Content Editing Scenarios"},"http-pep":{"authors":["Henrik Frystyk Nielsen","Dan Connolly","Rohit Khare","Eric Prud'hommeaux"],"href":"https://www.w3.org/TR/WD-http-pep","title":"PEP Specification: an Extension Mechanism for HTTP","rawDate":"1997-11-21","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19971121":{"authors":["Henrik Frystyk Nielsen","Dan Connolly","Rohit Khare","Eric Prud'hommeaux"],"href":"https://www.w3.org/TR/WD-http-pep-971121","title":"PEP Specification: an Extension Mechanism for HTTP","rawDate":"1997-11-21","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"i18n-glossary":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/i18n-glossary/","title":"Internationalization Glossary","rawDate":"2024-01-23","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/i18n-glossary/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210708":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-i18n-glossary-20210708/","title":"Internationalization Glossary","rawDate":"2021-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210730":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-i18n-glossary-20210730/","title":"Internationalization Glossary","rawDate":"2021-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220121":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-i18n-glossary-20220121/","title":"Internationalization Glossary","rawDate":"2022-01-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2022/DNOTE-i18n-glossary-20220126/","title":"Internationalization Glossary","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220211":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2022/DNOTE-i18n-glossary-20220211/","title":"Internationalization Glossary","rawDate":"2022-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230424":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230424/","title":"Internationalization Glossary","rawDate":"2023-04-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230927":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230927/","title":"Internationalization Glossary","rawDate":"2023-09-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230929":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20230929/","title":"Internationalization Glossary","rawDate":"2023-09-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231006/","title":"Internationalization Glossary","rawDate":"2023-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231014":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231014/","title":"Internationalization Glossary","rawDate":"2023-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231206":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-i18n-glossary-20231206/","title":"Internationalization Glossary","rawDate":"2023-12-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240118":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240118/","title":"Internationalization Glossary","rawDate":"2024-01-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240123":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2024/DNOTE-i18n-glossary-20240123/","title":"Internationalization Glossary","rawDate":"2024-01-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/i18n-glossary"},"i18n-guide-framework":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/i18n-guide-framework/","title":"Framework Document for i18n Guidelines 1.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20030417":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2003/WD-i18n-guide-framework-20030417/","title":"Framework Document for i18n Guidelines 1.0","rawDate":"2003-04-17","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-04-17","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"i18n-html-tech":{"aliasOf":"i18n-html-tech-lang"},"i18n-html-tech-bidi":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/i18n-html-tech-bidi/","title":"Authoring HTML: Handling Right-to-left Scripts","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20040509":{"status":"WD","rawDate":"2004-05-09","href":"https://www.w3.org/TR/2004/WD-i18n-html-tech-bidi-20040509/","source":"./data/w3c-specs.txt"},"20070606":{"status":"WD","rawDate":"2007-06-06","href":"https://www.w3.org/TR/2007/WD-i18n-html-tech-bidi-20070606/","source":"./data/w3c-specs.txt"},"20090714":{"status":"WD","rawDate":"2009-07-14","href":"https://www.w3.org/TR/2009/WD-i18n-html-tech-bidi-20090714/","source":"./data/w3c-specs.txt"},"20090908":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2009/NOTE-i18n-html-tech-bidi-20090908/","title":"Authoring HTML: Handling Right-to-left Scripts","rawDate":"2009-09-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140603":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2014/NOTE-i18n-html-tech-bidi-20140603/","title":"Authoring HTML: Handling Right-to-left Scripts","rawDate":"2014-06-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-06-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/International/docs/bp-html-bidi/","isRetired":true},"i18n-html-tech-char":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/i18n-html-tech-char/","title":"Authoring Techniques for XHTML & HTML Internationalization: Characters and Encodings 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20040509":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2004/WD-i18n-html-tech-char-20040509/","title":"Authoring Techniques for XHTML & HTML Internationalization: Characters and Encodings 1.0","rawDate":"2004-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150127":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2015/NOTE-i18n-html-tech-char-20150127/","title":"Authoring Techniques for XHTML & HTML Internationalization: Characters and Encodings 1.0","rawDate":"2015-01-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2015-01-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"i18n-html-tech-lang":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/i18n-html-tech-lang/","title":"Authoring HTML: Language declarations","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20031009":{"status":"WD","rawDate":"2003-10-09","href":"https://www.w3.org/TR/2003/WD-i18n-html-tech-20031009/","source":"./data/w3c-specs.txt"},"20040509":{"status":"WD","rawDate":"2004-05-09","href":"https://www.w3.org/TR/2004/WD-i18n-html-tech-lang-20040509/","source":"./data/w3c-specs.txt"},"20041015":{"status":"WD","rawDate":"2004-10-15","href":"https://www.w3.org/TR/2004/WD-i18n-html-tech-lang-20041015/","source":"./data/w3c-specs.txt"},"20050224":{"status":"WD","rawDate":"2005-02-24","href":"https://www.w3.org/TR/2005/WD-i18n-html-tech-lang-20050224/","source":"./data/w3c-specs.txt"},"20060721":{"status":"WD","rawDate":"2006-07-21","href":"https://www.w3.org/TR/2006/WD-i18n-html-tech-lang-20060721/","source":"./data/w3c-specs.txt"},"20070412":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2007/NOTE-i18n-html-tech-lang-20070412/","title":"Internationalization Best Practices: Specifying Language in XHTML & HTML Content","rawDate":"2007-04-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140603":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2014/NOTE-i18n-html-tech-lang-20140603/","title":"Authoring HTML: Language declarations","rawDate":"2014-06-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-06-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/International/docs/bp-html-lang/","isRetired":true},"ilreq":{"authors":["Swaran Lata"],"href":"https://www.w3.org/TR/ilreq/","title":"Indic Layout Requirements","rawDate":"2020-05-29","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/ilreq/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141216":{"authors":["Swaran Lata","Somnath Chandra","Prashant Verma Prashant"],"href":"https://www.w3.org/TR/2014/WD-ilreq-20141216/","title":"Indic Layout Requirements","rawDate":"2014-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Swaran Lata","Somnath Chandra","Prashant Verma Prashant"],"href":"https://www.w3.org/TR/2015/WD-ilreq-20150721/","title":"Indic Layout Requirements","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170220":{"authors":["Swaran Lata","Richard Ishida"],"href":"https://www.w3.org/TR/2017/WD-ilreq-20170220/","title":"Indic Layout Requirements","rawDate":"2017-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200529":{"authors":["Swaran Lata"],"href":"https://www.w3.org/TR/2020/WD-ilreq-20200529/","title":"Indic Layout Requirements","rawDate":"2020-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/ilreq"},"ilreq-taml":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/ilreq-taml/","title":"Tamil Layout Requirements","rawDate":"2020-06-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/iip/tamil/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-ilreq-taml-20200616/","title":"Tamil Layout Requirements","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"ilu-requestor":{"authors":["Paul Everitt"],"href":"https://www.w3.org/TR/WD-ilu-requestor","title":"The ILU Requester: Object Services in HTTP Servers","rawDate":"1996-03-07","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19960307":{"authors":["Paul Everitt"],"href":"https://www.w3.org/TR/WD-ilu-requestor-960307","title":"The ILU Requester: Object Services in HTTP Servers","rawDate":"1996-03-07","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"image-capture":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/image-capture/","title":"MediaStream Image Capture","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130709":{"authors":["Giridhar Mandyam"],"href":"https://www.w3.org/TR/2013/WD-image-capture-20130709/","title":"Mediastream Image Capture","rawDate":"2013-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150127":{"authors":["Giridhar Mandyam"],"href":"https://www.w3.org/TR/2015/WD-image-capture-20150127/","title":"Mediastream Image Capture","rawDate":"2015-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160531/","title":"MediaStream Image Capture","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160722":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160722/","title":"MediaStream Image Capture","rawDate":"2016-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160804":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160804/","title":"MediaStream Image Capture","rawDate":"2016-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160816":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160816/","title":"MediaStream Image Capture","rawDate":"2016-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160817":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160817/","title":"MediaStream Image Capture","rawDate":"2016-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160818":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160818/","title":"MediaStream Image Capture","rawDate":"2016-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160823":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160823/","title":"MediaStream Image Capture","rawDate":"2016-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160824":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160824/","title":"MediaStream Image Capture","rawDate":"2016-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160830/","title":"MediaStream Image Capture","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160902":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160902/","title":"MediaStream Image Capture","rawDate":"2016-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160907/","title":"MediaStream Image Capture","rawDate":"2016-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160914":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160914/","title":"MediaStream Image Capture","rawDate":"2016-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160921":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160921/","title":"MediaStream Image Capture","rawDate":"2016-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160928":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20160928/","title":"MediaStream Image Capture","rawDate":"2016-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161014":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161014/","title":"MediaStream Image Capture","rawDate":"2016-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161017":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161017/","title":"MediaStream Image Capture","rawDate":"2016-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161018":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161018/","title":"MediaStream Image Capture","rawDate":"2016-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161021":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161021/","title":"MediaStream Image Capture","rawDate":"2016-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161024":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161024/","title":"MediaStream Image Capture","rawDate":"2016-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161107":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161107/","title":"MediaStream Image Capture","rawDate":"2016-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161108":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161108/","title":"MediaStream Image Capture","rawDate":"2016-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161206/","title":"MediaStream Image Capture","rawDate":"2016-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161209":{"href":"https://www.w3.org/TR/2016/WD-image-capture-20161209/","title":"MediaStream Image Capture","rawDate":"2016-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Giridhar Mandyam","Miguel Casas-sanchez"]},"20161212":{"authors":["Giridhar Mandyam","Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2016/WD-image-capture-20161212/","title":"MediaStream Image Capture","rawDate":"2016-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161214":{"authors":["Giridhar Mandyam","Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2016/WD-image-capture-20161214/","title":"MediaStream Image Capture","rawDate":"2016-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161216":{"authors":["Giridhar Mandyam","Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2016/WD-image-capture-20161216/","title":"MediaStream Image Capture","rawDate":"2016-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170104":{"authors":["Giridhar Mandyam","Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2017/WD-image-capture-20170104/","title":"MediaStream Image Capture","rawDate":"2017-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170621":{"authors":["Giridhar Mandyam","Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2017/WD-image-capture-20170621/","title":"\"MediaStream Image Capture\"","rawDate":"2017-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210218":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-image-capture-20210218/","title":"MediaStream Image Capture","rawDate":"2021-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210315":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik","Giridhar Mandyam"],"href":"https://www.w3.org/TR/2021/WD-image-capture-20210315/","title":"MediaStream Image Capture","rawDate":"2021-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210329":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik","Giridhar Mandyam"],"href":"https://www.w3.org/TR/2021/WD-image-capture-20210329/","title":"MediaStream Image Capture","rawDate":"2021-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210406":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik","Giridhar Mandyam"],"href":"https://www.w3.org/TR/2021/WD-image-capture-20210406/","title":"MediaStream Image Capture","rawDate":"2021-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-image-capture-20221207/","title":"MediaStream Image Capture","rawDate":"2022-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2022/WD-image-capture-20221208/","title":"MediaStream Image Capture","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-image-capture-20230222/","title":"MediaStream Image Capture","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230224":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-image-capture-20230224/","title":"MediaStream Image Capture","rawDate":"2023-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230316":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-image-capture-20230316/","title":"MediaStream Image Capture","rawDate":"2023-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231010":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-image-capture-20231010/","title":"MediaStream Image Capture","rawDate":"2023-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Miguel Casas-sanchez","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-image-capture-20231026/","title":"MediaStream Image Capture","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/mediacapture-image/","repository":"https://github.com/w3c/mediacapture-image"},"image-resource":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/image-resource/","title":"Image Resource","rawDate":"2021-06-04","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/image-resource/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200507":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2020/WD-image-resource-20200507/","title":"Image Resource","rawDate":"2020-05-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200508":{"authors":["Aaron Gustafson","Marcos Caceres","Rayan Kanso"],"href":"https://www.w3.org/TR/2020/WD-image-resource-20200508/","title":"Image resource","rawDate":"2020-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200511":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2020/WD-image-resource-20200511/","title":"Image Resource","rawDate":"2020-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200520":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2020/WD-image-resource-20200520/","title":"Image Resource","rawDate":"2020-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210309":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-image-resource-20210309/","title":"Image Resource","rawDate":"2021-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210313":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-image-resource-20210313/","title":"Image Resource","rawDate":"2021-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210329":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-image-resource-20210329/","title":"Image Resource","rawDate":"2021-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210426":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-image-resource-20210426/","title":"Image Resource","rawDate":"2021-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Aaron Gustafson","Rayan Kanso","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-image-resource-20210604/","title":"Image Resource","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/image-resource"},"ime-api":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/ime-api/","title":"Input Method Editor API","rawDate":"2016-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120524":{"status":"WD","rawDate":"2012-05-24","href":"https://www.w3.org/TR/2012/WD-ime-api-20120524/","source":"./data/w3c-specs.txt"},"20130404":{"authors":["Hironori Bono","Takayoshi Kochi","Kenji Baheux"],"href":"https://www.w3.org/TR/2013/WD-ime-api-20130404/","title":"Input Method Editor API","rawDate":"2013-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130815":{"authors":["Takayoshi Kochi","Kenji Baheux"],"href":"https://www.w3.org/TR/2013/WD-ime-api-20130815/","title":"Input Method Editor API","rawDate":"2013-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Takayoshi Kochi","Kenji Baheux"],"href":"https://www.w3.org/TR/2013/WD-ime-api-20131217/","title":"Input Method Editor API","rawDate":"2013-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150409":{"authors":["Travis Leithead","Takayoshi Kochi","Kenji Baheux","Hironori Bono"],"href":"https://www.w3.org/TR/2015/WD-ime-api-20150409/","title":"Input Method Editor API","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150422":{"authors":["Travis Leithead","Takayoshi Kochi","Kenji Baheux","Hironori Bono"],"href":"https://www.w3.org/TR/2015/WD-ime-api-20150422/","title":"Input Method Editor API","rawDate":"2015-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150526":{"authors":["Travis Leithead","Takayoshi Kochi","Kenji Baheux","Hironori Bono"],"href":"https://www.w3.org/TR/2015/WD-ime-api-20150526/","title":"Input Method Editor API","rawDate":"2015-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Travis Leithead","Takayoshi Kochi","Kenji Baheux","Hironori Bono"],"href":"https://www.w3.org/TR/2015/WD-ime-api-20151215/","title":"Input Method Editor API","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160515":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2016/NOTE-ime-api-20160515/","title":"Input Method Editor API","rawDate":"2016-05-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160524":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2016/NOTE-ime-api-20160524/","title":"Input Method Editor API","rawDate":"2016-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://w3c.github.io/ime-api/","isRetired":true,"repository":"https://github.com/w3c/ime-api"},"imsc-1.1-reqs":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/imsc-1.1-reqs/","title":"IMSC1.1 Requirements","rawDate":"2018-09-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/imsc-vnext-reqs/","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180925":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/NOTE-imsc-1.1-reqs-20180925/","title":"IMSC1.1 Requirements","rawDate":"2018-09-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/imsc-vnext-reqs"},"imsc-hrm":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/imsc-hrm/","title":"IMSC Hypothetical Render Model","rawDate":"2024-01-11","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/imsc-hrm/spec/imsc-hrm.html","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211109":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2021/WD-imsc-hrm-20211109/","title":"IMSC Hypothetical Render Model","rawDate":"2021-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211209":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2021/WD-imsc-hrm-20211209/","title":"IMSC Hypothetical Render Model","rawDate":"2021-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211214":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2021/WD-imsc-hrm-20211214/","title":"IMSC Hypothetical Render Model","rawDate":"2021-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220106":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220106/","title":"IMSC Hypothetical Render Model","rawDate":"2022-01-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220201":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220201/","title":"IMSC Hypothetical Render Model","rawDate":"2022-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220303":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220303/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220304":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220304/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220307/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220310/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220315":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220315/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220316/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220322":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20220322/","title":"IMSC Hypothetical Render Model","rawDate":"2022-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221107":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2022/WD-imsc-hrm-20221107/","title":"IMSC Hypothetical Render Model","rawDate":"2022-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/WD-imsc-hrm-20230202/","title":"IMSC Hypothetical Render Model","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230227":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/WD-imsc-hrm-20230227/","title":"IMSC Hypothetical Render Model","rawDate":"2023-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/WD-imsc-hrm-20230619/","title":"IMSC Hypothetical Render Model","rawDate":"2023-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230620":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/WD-imsc-hrm-20230620/","title":"IMSC Hypothetical Render Model","rawDate":"2023-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230622":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/CR-imsc-hrm-20230622/","title":"IMSC Hypothetical Render Model","rawDate":"2023-06-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/CRD-imsc-hrm-20231123/","title":"IMSC Hypothetical Render Model","rawDate":"2023-11-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231220":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/CRD-imsc-hrm-20231220/","title":"IMSC Hypothetical Render Model","rawDate":"2023-12-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231228":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2023/CRD-imsc-hrm-20231228/","title":"IMSC Hypothetical Render Model","rawDate":"2023-12-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240111":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2024/CRD-imsc-hrm-20240111/","title":"IMSC Hypothetical Render Model","rawDate":"2024-01-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/imsc-hrm"},"indie-ui-context":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/indie-ui-context/","title":"IndieUI: User Context 1.0","rawDate":"2015-04-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/indie-ui/indie-ui-context.html","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140626":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2014/WD-indie-ui-context-20140626/","title":"IndieUI: User Context 1.0","rawDate":"2014-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150430":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-indie-ui-context-20150430/","title":"IndieUI: User Context 1.0","rawDate":"2015-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/indie-ui"},"indie-ui-events":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/indie-ui-events/","title":"IndieUI: Events 1.0","rawDate":"2015-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130122":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2013/WD-indie-ui-events-20130122/","title":"IndieUI: Events 1.0","rawDate":"2013-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130730":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2013/WD-indie-ui-events-20130730/","title":"IndieUI: Events 1.0","rawDate":"2013-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140529":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2014/WD-indie-ui-events-20140529/","title":"IndieUI: Events 1.0","rawDate":"2014-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150115":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-indie-ui-events-20150115/","title":"IndieUI: Events 1.0","rawDate":"2015-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150430":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-indie-ui-events-20150430/","title":"IndieUI: Events 1.0","rawDate":"2015-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/indie-ui/indie-ui-events.html","repository":"https://github.com/w3c/indie-ui"},"indie-ui-requirements":{"authors":["Michael Cooper"],"href":"https://www.w3.org/TR/indie-ui-requirements/","title":"Requirements for IndieUI: Events 1.0 and IndieUI: User Context 1.0","rawDate":"2014-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140422":{"authors":["Michael Cooper"],"href":"https://www.w3.org/TR/2014/WD-indie-ui-requirements-20140422/","title":"Requirements for IndieUI: Events 1.0 and IndieUI: User Context 1.0","rawDate":"2014-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/IndieUI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dvcs.w3.org/hg/IndieUI/raw-file/default/src/indie-ui-requirements.html"},"indieauth":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/indieauth/","title":"IndieAuth","rawDate":"2018-01-23","status":"NOTE","publisher":"W3C","edDraft":"https://indieauth.spec.indieweb.org/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180123":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2018/NOTE-indieauth-20180123/","title":"IndieAuth","rawDate":"2018-01-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"inkreqs":{"authors":["Yi-Min Chee","Sai Prasad"],"href":"https://www.w3.org/TR/inkreqs/","title":"Requirements for the Ink Markup Language","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20030122":{"authors":["Yi-Min Chee","Sai Prasad"],"href":"https://www.w3.org/TR/2003/NOTE-inkreqs-20030122/","title":"Requirements for the Ink Markup Language","rawDate":"2003-01-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-01-22","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"input-events":{"aliasOf":"input-events-1"},"input-events-1":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/input-events-1/","title":"Input Events Level 1","rawDate":"2023-09-28","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/input-events/","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160830":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2016/WD-input-events-20160830/","title":"Input Events","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160922":{"href":"https://www.w3.org/TR/2016/WD-input-events-20160922/","title":"Input Events","rawDate":"2016-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160928":{"href":"https://www.w3.org/TR/2016/WD-input-events-20160928/","title":"Input Events","rawDate":"2016-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161011":{"href":"https://www.w3.org/TR/2016/WD-input-events-20161011/","title":"Input Events","rawDate":"2016-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161018":{"href":"https://www.w3.org/TR/2016/WD-input-events-20161018/","title":"Input Events","rawDate":"2016-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161205":{"href":"https://www.w3.org/TR/2016/WD-input-events-20161205/","title":"Input Events","rawDate":"2016-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161216":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2016/WD-input-events-20161216/","title":"Input Events","rawDate":"2016-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170319":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-20170319/","title":"Input Events Level 2","rawDate":"2017-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170320":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-20170320/","title":"Input Events Level 2","rawDate":"2017-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-2-20170321/","title":"Input Events Level 2","rawDate":"2017-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170627":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-2-20170627/","title":"Input Events Level 2","rawDate":"2017-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170629":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-2-20170629/","title":"Input Events Level 2","rawDate":"2017-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170714":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-1-20170714/","title":"Input Events Level 1","rawDate":"2017-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170905":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2017/WD-input-events-1-20170905/","title":"Input Events Level 1","rawDate":"2017-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"aliasOf":"input-events-2-20181108"},"20181109":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2018/WD-input-events-1-20181109/","title":"Input Events Level 1","rawDate":"2018-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2019/WD-input-events-1-20190530/","title":"Input Events Level 1","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/2023/DISC-input-events-1-20230928/","title":"Input Events Level 1","rawDate":"2023-09-28","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/input-events"},"input-events-2":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/input-events-2/","title":"Input Events Level 2","rawDate":"2024-01-09","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/input-events/","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160830":{"aliasOf":"input-events-1-20160830"},"20160922":{"aliasOf":"input-events-1-20160922"},"20160928":{"aliasOf":"input-events-1-20160928"},"20161011":{"aliasOf":"input-events-1-20161011"},"20161018":{"aliasOf":"input-events-1-20161018"},"20161205":{"aliasOf":"input-events-1-20161205"},"20161216":{"aliasOf":"input-events-1-20161216"},"20170319":{"aliasOf":"input-events-1-20170319"},"20170320":{"aliasOf":"input-events-1-20170320"},"20170321":{"aliasOf":"input-events-1-20170321"},"20170627":{"aliasOf":"input-events-1-20170627"},"20170629":{"aliasOf":"input-events-1-20170629"},"20170714":{"aliasOf":"input-events-1-20170714"},"20170905":{"aliasOf":"input-events-1-20170905"},"20181108":{"authors":["Johannes Wilm","Ben Peters"],"href":"https://www.w3.org/TR/2018/WD-input-events-2-20181108/","title":"Input Events Level 2","rawDate":"2018-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181109":{"aliasOf":"input-events-1-20181109"},"20190530":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/2019/WD-input-events-2-20190530/","title":"Input Events Level 2","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230516":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/2023/WD-input-events-2-20230516/","title":"Input Events Level 2","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231215":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/2023/WD-input-events-2-20231215/","title":"Input Events Level 2","rawDate":"2023-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240109":{"authors":["Johannes Wilm"],"href":"https://www.w3.org/TR/2024/WD-input-events-2-20240109/","title":"Input Events Level 2","rawDate":"2024-01-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/input-events"},"international-specs":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/international-specs/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/bp-i18n-specdev/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151020":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-international-specs-20151020/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2015-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160622":{"href":"https://www.w3.org/TR/2016/WD-international-specs-20160622/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2016-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160810":{"href":"https://www.w3.org/TR/2016/WD-international-specs-20160810/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2016-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161007":{"href":"https://www.w3.org/TR/2016/WD-international-specs-20161007/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2016-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200529":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2020/WD-international-specs-20200529/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2020-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210325":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2021/WD-international-specs-20210325/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2021-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220501":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2022/DNOTE-international-specs-20220501/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2022-05-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2022/DNOTE-international-specs-20220617/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2022-06-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220923":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2022/DNOTE-international-specs-20220923/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2022-09-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230424":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20230424/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-04-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20230427/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230725":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20230725/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-07-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20230928/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20231019/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231110":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20231110/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-11-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-international-specs-20231221/","title":"Internationalization Best Practices for Spec Developers","rawDate":"2023-12-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/bp-i18n-specdev"},"intersection-observer":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Traian Captan"],"href":"https://www.w3.org/TR/intersection-observer/","title":"Intersection Observer","rawDate":"2023-10-18","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/IntersectionObserver/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170914":{"authors":["Stefan Zager"],"href":"https://www.w3.org/TR/2017/WD-intersection-observer-20170914/","title":"Intersection Observer","rawDate":"2017-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181106":{"authors":["Stefan Zager","Michael Blain"],"href":"https://www.w3.org/TR/2018/WD-intersection-observer-20181106/","title":"Intersection Observer","rawDate":"2018-11-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Stefan Zager"],"href":"https://www.w3.org/TR/2019/WD-intersection-observer-20190530/","title":"Intersection Observer","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Stefan Zager","Michael Blain"],"href":"https://www.w3.org/TR/2019/WD-intersection-observer-20190531/","title":"Intersection Observer","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201021":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Michael Blain"],"href":"https://www.w3.org/TR/2020/WD-intersection-observer-20201021/","title":"Intersection Observer","rawDate":"2020-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201102":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Michael Blain"],"href":"https://www.w3.org/TR/2020/WD-intersection-observer-20201102/","title":"Intersection Observer","rawDate":"2020-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201126":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Michael Blain"],"href":"https://www.w3.org/TR/2020/WD-intersection-observer-20201126/","title":"Intersection Observer","rawDate":"2020-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210203":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Michael Blain"],"href":"https://www.w3.org/TR/2021/WD-intersection-observer-20210203/","title":"Intersection Observer","rawDate":"2021-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Michael Blain"],"href":"https://www.w3.org/TR/2021/WD-intersection-observer-20210624/","title":"Intersection Observer","rawDate":"2021-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2022/WD-intersection-observer-20220610/","title":"Intersection Observer","rawDate":"2022-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220613":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2022/WD-intersection-observer-20220613/","title":"Intersection Observer","rawDate":"2022-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220614":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2022/WD-intersection-observer-20220614/","title":"Intersection Observer","rawDate":"2022-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220615":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2022/WD-intersection-observer-20220615/","title":"Intersection Observer","rawDate":"2022-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2022/WD-intersection-observer-20220706/","title":"Intersection Observer","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230909":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2023/WD-intersection-observer-20230909/","title":"Intersection Observer","rawDate":"2023-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230911":{"authors":["Stefan Zager","Emilio Cobos Álvarez"],"href":"https://www.w3.org/TR/2023/WD-intersection-observer-20230911/","title":"Intersection Observer","rawDate":"2023-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230914":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Traian Captan"],"href":"https://www.w3.org/TR/2023/WD-intersection-observer-20230914/","title":"Intersection Observer","rawDate":"2023-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230929":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Traian Captan"],"href":"https://www.w3.org/TR/2023/WD-intersection-observer-20230929/","title":"Intersection Observer","rawDate":"2023-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231003":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Traian Captan"],"href":"https://www.w3.org/TR/2023/WD-intersection-observer-20231003/","title":"Intersection Observer","rawDate":"2023-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231018":{"authors":["Stefan Zager","Emilio Cobos Álvarez","Traian Captan"],"href":"https://www.w3.org/TR/2023/WD-intersection-observer-20231018/","title":"Intersection Observer","rawDate":"2023-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/IntersectionObserver"},"its":{"authors":["Christian Lieske","Felix Sasaki"],"href":"https://www.w3.org/TR/its/","title":"Internationalization Tag Set (ITS) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/its/"],"hasErrata":"https://www.w3.org/International/its/itstagset/its-errata.html","versions":{"20051122":{"status":"WD","rawDate":"2005-11-22","href":"https://www.w3.org/TR/2005/WD-its-20051122/","source":"./data/w3c-specs.txt"},"20060222":{"status":"WD","rawDate":"2006-02-22","href":"https://www.w3.org/TR/2006/WD-its-20060222/","source":"./data/w3c-specs.txt"},"20060414":{"status":"WD","rawDate":"2006-04-14","href":"https://www.w3.org/TR/2006/WD-its-20060414/","source":"./data/w3c-specs.txt"},"20060518":{"status":"WD","rawDate":"2006-05-18","href":"https://www.w3.org/TR/2006/WD-its-20060518/","source":"./data/w3c-specs.txt"},"20061102":{"status":"CR","rawDate":"2006-11-02","href":"https://www.w3.org/TR/2006/CR-its-20061102/","source":"./data/w3c-specs.txt"},"20070226":{"status":"PR","rawDate":"2007-02-26","href":"https://www.w3.org/TR/2007/PR-its-20070226/","source":"./data/w3c-specs.txt"},"20070403":{"authors":["Christian Lieske","Felix Sasaki"],"href":"https://www.w3.org/TR/2007/REC-its-20070403/","title":"Internationalization Tag Set (ITS) Version 1.0","rawDate":"2007-04-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/its/"],"hasErrata":"https://www.w3.org/International/its/itstagset/its-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"its20":{"authors":["David Filip","Shaun McCance","David Lewis","Christian Lieske","Arle Lommel","Jirka Kosek","Felix Sasaki","Yves Savourel"],"href":"https://www.w3.org/TR/its20/","title":"Internationalization Tag Set (ITS) Version 2.0","rawDate":"2013-10-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120626":{"status":"WD","rawDate":"2012-06-26","href":"https://www.w3.org/TR/2012/WD-its20-20120626/","source":"./data/w3c-specs.txt"},"20120731":{"status":"WD","rawDate":"2012-07-31","href":"https://www.w3.org/TR/2012/WD-its20-20120731/","source":"./data/w3c-specs.txt"},"20120829":{"status":"WD","rawDate":"2012-08-29","href":"https://www.w3.org/TR/2012/WD-its20-20120829/","source":"./data/w3c-specs.txt"},"20121023":{"status":"WD","rawDate":"2012-10-23","href":"https://www.w3.org/TR/2012/WD-its20-20121023/","source":"./data/w3c-specs.txt"},"20121206":{"status":"WD","rawDate":"2012-12-06","href":"https://www.w3.org/TR/2012/WD-its20-20121206/","source":"./data/w3c-specs.txt"},"20130411":{"status":"WD","rawDate":"2013-04-11","href":"https://www.w3.org/TR/2013/WD-its20-20130411/","source":"./data/w3c-specs.txt"},"20130521":{"authors":["David Lewis","Christian Lieske","Arle Lommel","Jirka Kosek","Felix Sasaki","Yves Savourel"],"href":"https://www.w3.org/TR/2013/WD-its20-20130521/","title":"Internationalization Tag Set (ITS) Version 2.0","rawDate":"2013-05-21","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130820":{"authors":["David Filip","Shaun McCance","David Lewis","Christian Lieske","Arle Lommel","Jirka Kosek","Felix Sasaki","Yves Savourel"],"href":"https://www.w3.org/TR/2013/WD-its20-20130820/","title":"Internationalization Tag Set (ITS) Version 2.0","rawDate":"2013-08-20","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130924":{"authors":["David Filip","Shaun McCance","David Lewis","Christian Lieske","Arle Lommel","Jirka Kosek","Felix Sasaki","Yves Savourel"],"href":"https://www.w3.org/TR/2013/PR-its20-20130924/","title":"Internationalization Tag Set (ITS) Version 2.0","rawDate":"2013-09-24","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131029":{"authors":["David Filip","Shaun McCance","David Lewis","Christian Lieske","Arle Lommel","Jirka Kosek","Felix Sasaki","Yves Savourel"],"href":"https://www.w3.org/TR/2013/REC-its20-20131029/","title":"Internationalization Tag Set (ITS) Version 2.0","rawDate":"2013-10-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"its2req":{"authors":["David Lewis","Arle Lommel","Felix Sasaki"],"href":"https://www.w3.org/TR/its2req/","title":"Requirements for Internationalization Tag Set (ITS) 2.0","rawDate":"2017-03-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120524":{"authors":["David Lewis","Arle Lommel","Felix Sasaki"],"href":"https://www.w3.org/TR/2012/WD-its2req-20120524/","title":"Requirements for Internationalization Tag Set (ITS) 2.0","rawDate":"2012-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170302":{"authors":["David Lewis","Arle Lommel","Felix Sasaki"],"href":"https://www.w3.org/TR/2017/NOTE-its2req-20170302/","title":"Requirements for Internationalization Tag Set (ITS) 2.0","rawDate":"2017-03-02","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"edDraft":"https://w3c.github.io/its2req/","repository":"https://github.com/w3c/its2req"},"itsreq":{"authors":["Yves Savourel"],"href":"https://www.w3.org/TR/itsreq/","title":"Internationalization and Localization Markup Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/its/"],"versions":{"20050805":{"status":"WD","rawDate":"2005-08-05","href":"https://www.w3.org/TR/2005/WD-itsreq-20050805","source":"./data/w3c-specs.txt"},"20051122":{"status":"WD","rawDate":"2005-11-22","href":"https://www.w3.org/TR/2005/WD-itsreq-20051122/","source":"./data/w3c-specs.txt"},"20060518":{"authors":["Yves Savourel"],"href":"https://www.w3.org/TR/2006/WD-itsreq-20060518/","title":"Internationalization and Localization Markup Requirements","rawDate":"2006-05-18","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/International/its/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2006-05-18","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"japanese-xml":{"versions":{"20000414":{"status":"NOTE","rawDate":"2000-04-14","href":"https://www.w3.org/TR/2000/NOTE-japanese-xml-20000414","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/japanese-xml/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-04-14","title":"XML Japanese Profile (Second Edition)"},"java-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/java-gap/","title":"Javanese Script Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sealreq/gap-analysis/java-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-java-gap-20200616/","title":"Javanese Script Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-java-gap-20210525/","title":"Javanese Script Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-java-gap-20220119/","title":"Javanese Script Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-java-gap-20230615/","title":"Javanese Script Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-java-gap-20230807/","title":"Javanese Script Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sealreq"},"jepi":{"versions":{"19970519":{"status":"NOTE","rawDate":"1997-05-19","href":"https://www.w3.org/TR/NOTE-jepi-970519","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-jepi","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-05-19","title":"White Paper: Joint Electronic Payment Initiative"},"jepi-uppflow":{"authors":["Donald Eastlake","Rohit Khare","Jim Miller"],"href":"https://www.w3.org/TR/WD-jepi-uppflow","title":"Selecting Payment Mechanisms Over HTTP","rawDate":"1997-01-06","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19970106":{"authors":["Donald Eastlake","Rohit Khare","Jim Miller"],"href":"https://www.w3.org/TR/WD-jepi-uppflow-970106","title":"Selecting Payment Mechanisms Over HTTP","rawDate":"1997-01-06","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"jf2":{"authors":["Benjamin Roberts"],"href":"https://www.w3.org/TR/jf2/","title":"JF2 Post Serialization Format","rawDate":"2018-01-10","status":"NOTE","publisher":"W3C","edDraft":"https://jf2.spec.indieweb.org/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160728":{"authors":["Benjamin Roberts","Kevin Marks"],"href":"https://www.w3.org/TR/2016/WD-jf2-20160728/","title":"JF2 Post Serialization Format","rawDate":"2016-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170612":{"authors":["Benjamin Roberts"],"href":"https://www.w3.org/TR/2017/WD-jf2-20170612/","title":"JF2 Post Serialization Format","rawDate":"2017-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170627":{"authors":["Benjamin Roberts"],"href":"https://www.w3.org/TR/2017/WD-jf2-20170627/","title":"JF2 Post Serialization Format","rawDate":"2017-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170719":{"authors":["Benjamin Roberts"],"href":"https://www.w3.org/TR/2017/WD-jf2-20170719/","title":"JF2 Post Serialization Format","rawDate":"2017-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171026":{"authors":["Benjamin Roberts"],"href":"https://www.w3.org/TR/2017/WD-jf2-20171026/","title":"JF2 Post Serialization Format","rawDate":"2017-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180110":{"authors":["Benjamin Roberts"],"href":"https://www.w3.org/TR/2018/NOTE-jf2-20180110/","title":"JF2 Post Serialization Format","rawDate":"2018-01-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/dissolve/jf2"},"jlreq":{"authors":["Hiroyuki Chiba","Junzaburo Edamoto","Richard Ishida","Seiichi Kato","Tatsuo KOBAYASHI","Toshi Kobayashi","Nathaniel McCully","Felix Sasaki","Atsushi Shimono","Hajime Shiozawa","Fuqiao Xue"],"etAl":true,"href":"https://www.w3.org/TR/jlreq/","title":"Requirements for Japanese Text Layout 日本語組版処理の要件(日本語版)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-jlreq-20080411/","source":"./data/w3c-specs.txt"},"20081015":{"status":"WD","rawDate":"2008-10-15","href":"https://www.w3.org/TR/2008/WD-jlreq-20081015/","source":"./data/w3c-specs.txt"},"20090604":{"status":"NOTE","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/NOTE-jlreq-20090604/","source":"./data/w3c-specs.txt"},"20111129":{"status":"WD","rawDate":"2011-11-29","href":"https://www.w3.org/TR/2011/WD-jlreq-20111129/","source":"./data/w3c-specs.txt"},"20120403":{"authors":["Yasuhiro Anan","Hiroyuki Chiba","Junzaburo Edamoto","Richard Ishida","Tatsuo KOBAYASHI","Toshi Kobayashi","Kenzou Onozawa","Felix Sasaki","Seiichi Kato","Hajime Shiozawa"],"href":"https://www.w3.org/TR/2012/NOTE-jlreq-20120403/","title":"Requirements for Japanese Text Layout","rawDate":"2012-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200811":{"authors":["Hiroyuki Chiba","Junzaburo Edamoto","Richard Ishida","Seiichi Kato","Tatsuo KOBAYASHI","Toshi Kobayashi","Nathaniel McCully","Felix Sasaki","Atsushi Shimono","Hajime Shiozawa","Fuqiao Xue"],"href":"https://www.w3.org/TR/2020/NOTE-jlreq-20200811/","title":"Requirements for Japanese Text Layout 日本語組版処理の要件(日本語版)","rawDate":"2020-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-08-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/jlreq/","repository":"https://github.com/w3c/jlreq"},"jpan-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/jpan-gap/","title":"Japanese Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/jlreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-jpan-gap-20200616/","title":"Japanese Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-jpan-gap-20210128/","title":"Japanese Gap Analysis","rawDate":"2021-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-jpan-gap-20210525/","title":"Japanese Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-jpan-gap-20211117/","title":"Japanese Gap Analysis","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211122":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-jpan-gap-20211122/","title":"Japanese Gap Analysis","rawDate":"2021-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220923":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-jpan-gap-20220923/","title":"Japanese Gap Analysis","rawDate":"2022-09-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230615/","title":"Japanese Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230617":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230617/","title":"Japanese Gap Analysis","rawDate":"2023-06-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230720/","title":"Japanese Gap Analysis","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-jpan-gap-20230721/","title":"Japanese Gap Analysis","rawDate":"2023-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-jpan-gap-20231004/","title":"Japanese Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/jlreq"},"jsgf":{"versions":{"20000605":{"status":"NOTE","rawDate":"2000-06-05","href":"https://www.w3.org/TR/2000/NOTE-jsgf-20000605","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/jsgf/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-06-05","title":"JSpeech Grammar Format"},"jsml":{"versions":{"20000605":{"status":"NOTE","rawDate":"2000-06-05","href":"https://www.w3.org/TR/2000/NOTE-jsml-20000605","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/jsml/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-06-05","title":"JSpeech Markup Language"},"json-ld":{"authors":["Manu Sporny","Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/json-ld/","title":"JSON-LD 1.0","rawDate":"2020-11-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120712":{"status":"WD","rawDate":"2012-07-12","href":"https://www.w3.org/TR/2012/WD-json-ld-syntax-20120712/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Manu Sporny","Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/2013/WD-json-ld-20130411/","title":"JSON-LD 1.0","rawDate":"2013-04-11","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Manu Sporny","Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/2013/CR-json-ld-20130910/","title":"JSON-LD 1.0","rawDate":"2013-09-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Manu Sporny","Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/2013/PR-json-ld-20131105/","title":"JSON-LD 1.0","rawDate":"2013-11-05","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Manu Sporny","Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/2014/REC-json-ld-20140116/","title":"JSON-LD 1.0","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Manu Sporny","Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/2020/SPSD-json-ld-20201103/","title":"JSON-LD 1.0","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"json-ld-api":{"authors":["Markus Lanthaler","Gregg Kellogg","Manu Sporny"],"href":"https://www.w3.org/TR/json-ld-api/","title":"JSON-LD 1.0 Processing Algorithms and API","rawDate":"2020-11-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120712":{"status":"WD","rawDate":"2012-07-12","href":"https://www.w3.org/TR/2012/WD-json-ld-api-20120712/","source":"./data/w3c-specs.txt"},"20130411":{"status":"WD","rawDate":"2013-04-11","href":"https://www.w3.org/TR/2013/WD-json-ld-api-20130411/","source":"./data/w3c-specs.txt"},"20130516":{"authors":["Markus Lanthaler","Gregg Kellogg","Manu Sporny"],"href":"https://www.w3.org/TR/2013/WD-json-ld-api-20130516/","title":"JSON-LD 1.0 Processing Algorithms and API","rawDate":"2013-05-16","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Markus Lanthaler","Gregg Kellogg","Manu Sporny"],"href":"https://www.w3.org/TR/2013/CR-json-ld-api-20130910/","title":"JSON-LD 1.0 Processing Algorithms and API","rawDate":"2013-09-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Markus Lanthaler","Gregg Kellogg","Manu Sporny"],"href":"https://www.w3.org/TR/2013/PR-json-ld-api-20131105/","title":"JSON-LD 1.0 Processing Algorithms and API","rawDate":"2013-11-05","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Markus Lanthaler","Gregg Kellogg","Manu Sporny"],"href":"https://www.w3.org/TR/2014/REC-json-ld-api-20140116/","title":"JSON-LD 1.0 Processing Algorithms and API","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Markus Lanthaler","Gregg Kellogg","Manu Sporny"],"href":"https://www.w3.org/TR/2020/SPSD-json-ld-api-20201103/","title":"JSON-LD 1.0 Processing Algorithms and API","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"json-ld-syntax":{"aliasOf":"json-ld"},"json-ld11":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/json-ld11/","title":"JSON-LD 1.1","rawDate":"2020-07-16","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/json-ld-syntax/","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180911":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-20180911/","title":"JSON-LD 1.1","rawDate":"2018-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-20181011/","title":"JSON-LD 1.1","rawDate":"2018-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-20181214/","title":"JSON-LD 1.1","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190510":{"authors":["Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20190510/","title":"JSON-LD 1.1","rawDate":"2019-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190714":{"authors":["Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20190714/","title":"JSON-LD 1.1","rawDate":"2019-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190802":{"authors":["Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20190802/","title":"JSON-LD 1.1","rawDate":"2019-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190803":{"authors":["Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20190803/","title":"JSON-LD 1.1","rawDate":"2019-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190805":{"authors":["Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20190805/","title":"JSON-LD 1.1","rawDate":"2019-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190909":{"authors":["Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20190909/","title":"JSON-LD 1.1","rawDate":"2019-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191018":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20191018/","title":"JSON-LD 1.1","rawDate":"2019-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191112":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-20191112/","title":"JSON-LD 1.1","rawDate":"2019-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2019/CR-json-ld11-20191212/","title":"JSON-LD 1.1","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200305":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-20200305/","title":"JSON-LD 1.1","rawDate":"2020-03-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200316":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-20200316/","title":"JSON-LD 1.1","rawDate":"2020-03-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200417":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-20200417/","title":"JSON-LD 1.1","rawDate":"2020-04-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200507":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2020/PR-json-ld11-20200507/","title":"JSON-LD 1.1","rawDate":"2020-05-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200716":{"authors":["Gregg Kellogg","Pierre-Antoine Champin","Dave Longley"],"href":"https://www.w3.org/TR/2020/REC-json-ld11-20200716/","title":"JSON-LD 1.1","rawDate":"2020-07-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"hasErrata":"https://w3c.github.io/json-ld-syntax/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/json-ld-syntax","hasErrata":"https://w3c.github.io/json-ld-syntax/errata/"},"json-ld11-api":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/json-ld11-api/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2020-07-16","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/json-ld-api/","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180911":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-api-20180911/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2018-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181012":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-api-20181012/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2018-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-api-20181214/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190510":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20190510/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190703":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20190703/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190713":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20190713/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190802":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20190802/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190909":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20190909/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191018":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20191018/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191112":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-api-20191112/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/CR-json-ld11-api-20191212/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200305":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-api-20200305/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2020-03-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200417":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-api-20200417/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2020-04-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200507":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/PR-json-ld11-api-20200507/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2020-05-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200716":{"authors":["Gregg Kellogg","Dave Longley","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/REC-json-ld11-api-20200716/","title":"JSON-LD 1.1 Processing Algorithms and API","rawDate":"2020-07-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"hasErrata":"https://w3c.github.io/json-ld-api/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/json-ld-api","hasErrata":"https://w3c.github.io/json-ld-api/errata/"},"json-ld11-framing":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/json-ld11-framing/","title":"JSON-LD 1.1 Framing","rawDate":"2020-07-16","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/json-ld-framing/","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180911":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-framing-20180911/","title":"JSON-LD 1.1 Framing","rawDate":"2018-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181012":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-framing-20181012/","title":"JSON-LD 1.1 Framing","rawDate":"2018-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2018/WD-json-ld11-framing-20181214/","title":"JSON-LD 1.1 Framing","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190510":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-framing-20190510/","title":"JSON-LD 1.1 Framing","rawDate":"2019-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190714":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-framing-20190714/","title":"JSON-LD 1.1 Framing","rawDate":"2019-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190803":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-framing-20190803/","title":"JSON-LD 1.1 Framing","rawDate":"2019-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190909":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-framing-20190909/","title":"JSON-LD 1.1 Framing","rawDate":"2019-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191018":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-framing-20191018/","title":"JSON-LD 1.1 Framing","rawDate":"2019-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191113":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/WD-json-ld11-framing-20191113/","title":"JSON-LD 1.1 Framing","rawDate":"2019-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2019/CR-json-ld11-framing-20191212/","title":"JSON-LD 1.1 Framing","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200227":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-framing-20200227/","title":"JSON-LD 1.1 Framing","rawDate":"2020-02-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200305":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-framing-20200305/","title":"JSON-LD 1.1 Framing","rawDate":"2020-03-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200417":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/CR-json-ld11-framing-20200417/","title":"JSON-LD 1.1 Framing","rawDate":"2020-04-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200507":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/PR-json-ld11-framing-20200507/","title":"JSON-LD 1.1 Framing","rawDate":"2020-05-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/json-ld-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200716":{"authors":["Dave Longley","Gregg Kellogg","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2020/REC-json-ld11-framing-20200716/","title":"JSON-LD 1.1 Framing","rawDate":"2020-07-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"hasErrata":"https://w3c.github.io/json-ld-framing/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/json-ld-framing","hasErrata":"https://w3c.github.io/json-ld-framing/errata/"},"json-ld11-streaming":{"authors":["Ruben Taelman"],"href":"https://www.w3.org/TR/json-ld11-streaming/","title":"Streaming JSON-LD","rawDate":"2020-05-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/json-ld-streaming/","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200507":{"authors":["Ruben Taelman"],"href":"https://www.w3.org/TR/2020/NOTE-json-ld11-streaming-20200507/","title":"Streaming JSON-LD","rawDate":"2020-05-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/json-ld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/json-ld-streaming"},"khmr-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/khmr-gap/","title":"Khmer Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sealreq/gap-analysis/khmr-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-khmr-gap-20200616/","title":"Khmer Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-khmr-gap-20210525/","title":"Khmer Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-khmr-gap-20220119/","title":"Khmer Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-khmr-gap-20230615/","title":"Khmer Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sealreq"},"klreq":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/klreq/","title":"Requirements for Hangul Text Layout and Typography : 한국어 텍스트 레이아웃 및 타이포그래피를 위한 요구사항","rawDate":"2020-05-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130514":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2013/WD-klreq-20130514/","title":"Requirements for Hangul Text Layout and Typography","rawDate":"2013-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150414":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-klreq-20150414/","title":"Requirements for Hangul Text Layout and Typography","rawDate":"2015-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150630":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-klreq-20150630/","title":"Requirements for Hangul Text Layout and Typography","rawDate":"2015-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150723":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-klreq-20150723/","title":"Requirements for Hangul Text Layout and Typography 한국어 텍스트 레이아웃 및 타이포그래피를 위한 요구사항","rawDate":"2015-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200527":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/NOTE-klreq-20200527/","title":"Requirements for Hangul Text Layout and Typography : 한국어 텍스트 레이아웃 및 타이포그래피를 위한 요구사항","rawDate":"2020-05-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/klreq/","repository":"https://github.com/w3c/klreq"},"kore-gap":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/kore-gap/","title":"Korean Layout Gap Analysis","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/klreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230711":{"authors":["Richard Ishida","Fuqiao Xue"],"href":"https://www.w3.org/TR/2023/DNOTE-kore-gap-20230711/","title":"Korean Layout Gap Analysis","rawDate":"2023-07-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Fuqiao Xue","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-kore-gap-20230720/","title":"Korean Layout Gap Analysis","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/klreq"},"laoo-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/laoo-gap/","title":"Lao Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sealreq/gap-analysis/laoo-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-laoo-gap-20200616/","title":"Lao Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210127":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-laoo-gap-20210127/","title":"Lao Gap Analysis","rawDate":"2021-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-laoo-gap-20210525/","title":"Lao Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-laoo-gap-20220119/","title":"Lao Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-laoo-gap-20230615/","title":"Lao Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sealreq"},"largest-contentful-paint":{"authors":["Yoav Weiss","Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/largest-contentful-paint/","title":"Largest Contentful Paint","rawDate":"2024-01-15","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/largest-contentful-paint/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220524":{"authors":["Yoav Weiss","Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2022/WD-largest-contentful-paint-20220524/","title":"Largest Contentful Paint","rawDate":"2022-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230901":{"authors":["Yoav Weiss","Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2023/WD-largest-contentful-paint-20230901/","title":"Largest Contentful Paint","rawDate":"2023-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230906":{"authors":["Yoav Weiss","Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2023/WD-largest-contentful-paint-20230906/","title":"Largest Contentful Paint","rawDate":"2023-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240115":{"authors":["Yoav Weiss","Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2024/WD-largest-contentful-paint-20240115/","title":"Largest Contentful Paint","rawDate":"2024-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/wicg/largest-contentful-paint"},"latn-ca-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/latn-ca-gap/","title":"Catalan Gap Analysis","rawDate":"2023-08-22","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/latn-ca-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230822":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-latn-ca-gap-20230822/","title":"Catalan Gap Analysis","rawDate":"2023-08-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"latn-de-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/latn-de-gap/","title":"German Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/latn-de-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210204":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-de-gap-20210204/","title":"German Gap Analysis","rawDate":"2021-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-de-gap-20210525/","title":"German Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-latn-de-gap-20220119/","title":"German Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-latn-de-gap-20230614/","title":"German Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"latn-fr-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/latn-fr-gap/","title":"French Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/latn-fr-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210204":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-fr-gap-20210204/","title":"French Gap Analysis","rawDate":"2021-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-fr-gap-20210525/","title":"French Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-latn-fr-gap-20220119/","title":"French Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-latn-fr-gap-20230614/","title":"French Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"latn-hu-gap":{"authors":["Ivan Herman","Richard Ishida"],"href":"https://www.w3.org/TR/latn-hu-gap/","title":"Hungarian Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/latn-hu-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200611":{"authors":["Ivan Herman"],"href":"https://www.w3.org/TR/2020/WD-latn-hu-gap-20200611/","title":"Hungarian Gap Analysis","rawDate":"2020-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200715":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-latn-hu-gap-20200715/","title":"Hungarian Gap Analysis","rawDate":"2020-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Ivan Herman","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-hu-gap-20210126/","title":"Hungarian Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Ivan Herman","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-hu-gap-20210525/","title":"Hungarian Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Ivan Herman","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-latn-hu-gap-20220119/","title":"Hungarian Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Ivan Herman","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-latn-hu-gap-20230614/","title":"Hungarian Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"latn-nl-gap":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/latn-nl-gap/","title":"Dutch Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/eurlreq/gap-analysis/latn-nl-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200611":{"authors":["Bert Bos"],"href":"https://www.w3.org/TR/2020/WD-latn-nl-gap-20200611/","title":"Dutch Gap Analysis","rawDate":"2020-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200715":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-latn-nl-gap-20200715/","title":"Dutch Gap Analysis","rawDate":"2020-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-nl-gap-20210126/","title":"Dutch Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-nl-gap-20210525/","title":"Dutch Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210811":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-latn-nl-gap-20210811/","title":"Dutch Gap Analysis","rawDate":"2021-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-latn-nl-gap-20220119/","title":"Dutch Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-latn-nl-gap-20220126/","title":"Dutch Gap Analysis","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-latn-nl-gap-20230530/","title":"Dutch Gap Analysis","rawDate":"2023-05-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Bert Bos","Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-latn-nl-gap-20230614/","title":"Dutch Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/eurlreq"},"lbase":{"authors":["Ramanathan Guha","Patrick Hayes"],"href":"https://www.w3.org/TR/lbase/","title":"LBase: Semantics for Languages of the Semantic Web","status":"NOTE","publisher":"W3C","versions":{"20030123":{"status":"NOTE","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/NOTE-lbase-20030123","source":"./data/w3c-specs.txt"},"20030905":{"status":"NOTE","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/NOTE-lbase-20030905","source":"./data/w3c-specs.txt"},"20031010":{"authors":["Ramanathan Guha","Patrick Hayes"],"href":"https://www.w3.org/TR/2003/NOTE-lbase-20031010/","title":"LBase: Semantics for Languages of the Semantic Web","rawDate":"2003-10-10","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]}},"rawDate":"2003-10-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]},"ld-bp":{"authors":["Bernadette Hyland","Ghislain Auguste Atemezing","Boris Villazón-Terrazas"],"href":"https://www.w3.org/TR/ld-bp/","title":"Best Practices for Publishing Linked Data","rawDate":"2014-01-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140109":{"authors":["Bernadette Hyland","Ghislain Auguste Atemezing","Boris Villazón-Terrazas"],"href":"https://www.w3.org/TR/2014/NOTE-ld-bp-20140109/","title":"Best Practices for Publishing Linked Data","rawDate":"2014-01-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ld-glossary":{"authors":["Bernadette Hyland","Ghislain Auguste Atemezing","Michael Pendleton","Biplav Srivastava"],"href":"https://www.w3.org/TR/ld-glossary/","title":"Linked Data Glossary","rawDate":"2013-06-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130627":{"authors":["Bernadette Hyland","Ghislain Auguste Atemezing","Michael Pendleton","Biplav Srivastava"],"href":"https://www.w3.org/TR/2013/NOTE-ld-glossary-20130627/","title":"Linked Data Glossary","rawDate":"2013-06-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ldn":{"authors":["Sarven Capadisli","Amy Guy"],"href":"https://www.w3.org/TR/ldn/","title":"Linked Data Notifications","rawDate":"2017-05-02","status":"REC","publisher":"W3C","edDraft":"https://linkedresearch.org/ldn/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160726":{"authors":["Sarven Capadisli","Amy Guy"],"href":"https://www.w3.org/TR/2016/WD-ldn-20160726/","title":"Linked Data Notifications","rawDate":"2016-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160824":{"href":"https://www.w3.org/TR/2016/WD-ldn-20160824/","title":"Linked Data Notifications","rawDate":"2016-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"href":"https://www.w3.org/TR/2016/WD-ldn-20160913/","title":"Linked Data Notifications","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160926":{"href":"https://www.w3.org/TR/2016/WD-ldn-20160926/","title":"Linked Data Notifications","rawDate":"2016-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161011":{"href":"https://www.w3.org/TR/2016/WD-ldn-20161011/","title":"Linked Data Notifications","rawDate":"2016-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161101":{"authors":["Sarven Capadisli","Amy Guy"],"href":"https://www.w3.org/TR/2016/CR-ldn-20161101/","title":"Linked Data Notifications","rawDate":"2016-11-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Sarven Capadisli","Amy Guy"],"href":"https://www.w3.org/TR/2017/CR-ldn-20170223/","title":"Linked Data Notifications","rawDate":"2017-02-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Sarven Capadisli","Amy Guy"],"href":"https://www.w3.org/TR/2017/PR-ldn-20170321/","title":"Linked Data Notifications","rawDate":"2017-03-21","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170502":{"authors":["Sarven Capadisli","Amy Guy"],"href":"https://www.w3.org/TR/2017/REC-ldn-20170502/","title":"Linked Data Notifications","rawDate":"2017-05-02","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"hasErrata":"https://github.com/w3c/ldn/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://github.com/w3c/ldn/","repository":"https://github.com/w3c/ldn"},"ldp":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/ldp/","title":"Linked Data Platform 1.0","rawDate":"2015-02-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121025":{"status":"WD","rawDate":"2012-10-25","href":"https://www.w3.org/TR/2012/WD-ldp-20121025/","source":"./data/w3c-specs.txt"},"20130307":{"authors":["Steve Speicher","John Arwe"],"href":"https://www.w3.org/TR/2013/WD-ldp-20130307/","title":"Linked Data Platform 1.0","rawDate":"2013-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130730":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2013/WD-ldp-20130730/","title":"Linked Data Platform 1.0","rawDate":"2013-07-30","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140311":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/WD-ldp-20140311/","title":"Linked Data Platform 1.0","rawDate":"2014-03-11","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140619":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/CR-ldp-20140619/","title":"Linked Data Platform 1.0","rawDate":"2014-06-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140916":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/WD-ldp-20140916/","title":"Linked Data Platform 1.0","rawDate":"2014-09-16","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/PR-ldp-20141216/","title":"Linked Data Platform 1.0","rawDate":"2014-12-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150226":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2015/REC-ldp-20150226/","title":"Linked Data Platform 1.0","rawDate":"2015-02-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/2012/ldp/hg/ldp.html"},"ldp-acr":{"authors":["Ashok Malhotra"],"href":"https://www.w3.org/TR/ldp-acr/","title":"LDP Access Control","rawDate":"2014-09-16","status":"NOTE","publisher":"W3C","edDraft":"https://dvcs.w3.org/hg/ldpwg/raw-file/default/ldp-acr.html","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140916":{"authors":["Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/NOTE-ldp-acr-20140916/","title":"LDP Access Control","rawDate":"2014-09-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ldp-bp":{"authors":["Cody Burleson","Miguel Esteban Gutiérrez","Nandana Mihindukulasooriya"],"href":"https://www.w3.org/TR/ldp-bp/","title":"Linked Data Platform Best Practices and Guidelines","rawDate":"2014-08-28","status":"NOTE","publisher":"W3C","edDraft":"https://dvcs.w3.org/hg/ldpwg/raw-file/default/ldp-bp/ldp-bp.html","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140828":{"authors":["Cody Burleson","Miguel Esteban Gutiérrez","Nandana Mihindukulasooriya"],"href":"https://www.w3.org/TR/2014/NOTE-ldp-bp-20140828/","title":"Linked Data Platform Best Practices and Guidelines","rawDate":"2014-08-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ldp-paging":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/ldp-paging/","title":"Linked Data Platform Paging 1.0","rawDate":"2015-06-30","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/2012/ldp/hg/ldp-paging.html","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140909":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/WD-ldp-paging-20140909/","title":"Linked Data Platform Paging 1.0","rawDate":"2014-09-09","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2014/CR-ldp-paging-20141216/","title":"Linked Data Platform Paging 1.0","rawDate":"2014-12-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150630":{"authors":["Steve Speicher","John Arwe","Ashok Malhotra"],"href":"https://www.w3.org/TR/2015/NOTE-ldp-paging-20150630/","title":"Linked Data Platform Paging 1.0","rawDate":"2015-06-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ldp-primer":{"href":"https://www.w3.org/TR/ldp-primer/","title":"Linked Data Platform 1.0 Primer","rawDate":"2015-04-23","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/2012/ldp/hg/ldp-primer/ldp-primer.html","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140626":{"href":"https://www.w3.org/TR/2014/WD-ldp-primer-20140626/","title":"Linked Data Platform 1.0 Primer","rawDate":"2014-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150423":{"authors":["Nandana Mihindukulasooriya","Roger Menday"],"href":"https://www.w3.org/TR/2015/NOTE-ldp-primer-20150423/","title":"Linked Data Platform 1.0 Primer","rawDate":"2015-04-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"authors":["Nandana Mihindukulasooriya","Roger Menday"]},"ldp-ucr":{"authors":["Steve Battle","Steve Speicher"],"href":"https://www.w3.org/TR/ldp-ucr/","title":"Linked Data Platform Use Cases and Requirements","rawDate":"2014-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130131":{"authors":["Steve Battle","Steve Speicher"],"href":"https://www.w3.org/TR/2013/WD-ldp-ucr-20130131/","title":"Linked Data Platform Use Cases and Requirements","rawDate":"2013-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131031":{"authors":["Steve Battle","Steve Speicher"],"href":"https://www.w3.org/TR/2013/WD-ldp-ucr-20131031/","title":"Linked Data Platform Use Cases and Requirements","rawDate":"2013-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140313":{"authors":["Steve Battle","Steve Speicher"],"href":"https://www.w3.org/TR/2014/NOTE-ldp-ucr-20140313/","title":"Linked Data Platform Use Cases and Requirements","rawDate":"2014-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/2012/ldp/hg/ldp-ucr.html"},"ldpatch":{"authors":["Alexandre Bertails","Pierre-Antoine Champin","Andrei Sambra"],"href":"https://www.w3.org/TR/ldpatch/","title":"Linked Data Patch Format","rawDate":"2015-07-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140918":{"authors":["Alexandre Bertails","Pierre-Antoine Champin","Andrei Sambra"],"href":"https://www.w3.org/TR/2014/WD-ldpatch-20140918/","title":"Linked Data Patch Format","rawDate":"2014-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150303":{"authors":["Alexandre Bertails","Pierre-Antoine Champin","Andrei Sambra"],"href":"https://www.w3.org/TR/2015/CR-ldpatch-20150303/","title":"Linked Data Patch Format","rawDate":"2015-03-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150728":{"authors":["Alexandre Bertails","Pierre-Antoine Champin","Andrei Sambra"],"href":"https://www.w3.org/TR/2015/NOTE-ldpatch-20150728/","title":"Linked Data Patch Format","rawDate":"2015-07-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/ldp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dvcs.w3.org/hg/ldpwg/raw-file/ldpatch/ldpatch.html"},"leiri":{"authors":["Henry Thompson","Richard Tobin","Norman Walsh"],"href":"https://www.w3.org/TR/leiri/","title":"Legacy extended IRIs for XML resource identification","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20081103":{"authors":["Henry Thompson","Richard Tobin","Norman Walsh"],"href":"https://www.w3.org/TR/2008/NOTE-leiri-20081103/","title":"Legacy extended IRIs for XML resource identification","rawDate":"2008-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"lexicon-reqs":{"authors":["Paolo Baggia","Frank Scahill"],"href":"https://www.w3.org/TR/lexicon-reqs/","title":"Pronunciation Lexicon Specification (PLS) Version 1.0 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20010312":{"status":"WD","rawDate":"2001-03-12","href":"https://www.w3.org/TR/2001/WD-lexicon-reqs-20010312/","source":"./data/w3c-specs.txt"},"20041029":{"authors":["Paolo Baggia","Frank Scahill"],"href":"https://www.w3.org/TR/2004/WD-lexicon-reqs-20041029/","title":"Pronunciation Lexicon Specification (PLS) Version 1.0 Requirements","rawDate":"2004-10-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2004-10-29","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"link":{"versions":{"19970826":{"status":"NOTE","rawDate":"1997-08-26","href":"https://www.w3.org/TR/NOTE-link-970826","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-link","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-08-26","title":"Navigation through LINK elements in HTML"},"localizable-manifests":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/localizable-manifests/","title":"Developing Localizable Manifests","rawDate":"2023-12-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/localizable-manifests","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210824":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2021/WD-localizable-manifests-20210824/","title":"Developing Localizable Manifests","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231206":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-localizable-manifests-20231206/","title":"Developing Localizable Manifests","rawDate":"2023-12-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/localizable-manifests"},"logfile":{"versions":{"19960221":{"status":"WD","rawDate":"1996-02-21","href":"https://www.w3.org/TR/WD-logfile-960221","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WD-logfile","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"1996-02-21","title":"Extended Log File Format"},"longtasks-1":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/longtasks-1/","title":"Long Tasks API","rawDate":"2024-01-31","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/longtasks/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170907":{"authors":["Shubhie Panicker","Ilya Grigorik","Domenic Denicola"],"href":"https://www.w3.org/TR/2017/WD-longtasks-1-20170907/","title":"Long Tasks API 1","rawDate":"2017-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-longtasks-1-20230703/","title":"Long Tasks API","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-longtasks-1-20230712/","title":"Long Tasks API","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-longtasks-1-20230719/","title":"Long Tasks API","rawDate":"2023-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231024":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-longtasks-1-20231024/","title":"Long Tasks API","rawDate":"2023-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231126":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-longtasks-1-20231126/","title":"Long Tasks API","rawDate":"2023-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-longtasks-1-20240108/","title":"Long Tasks API","rawDate":"2024-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240112":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-longtasks-1-20240112/","title":"Long Tasks API","rawDate":"2024-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240115":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-longtasks-1-20240115/","title":"Long Tasks API","rawDate":"2024-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240131":{"authors":["Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-longtasks-1-20240131/","title":"Long Tasks API","rawDate":"2024-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/longtasks"},"low-vision-needs":{"authors":["Jim Allan","Andrew Kirkpatrick","Shawn Lawton Henry (TAdER)"],"href":"https://www.w3.org/TR/low-vision-needs/","title":"Accessibility Requirements for People with Low Vision","rawDate":"2016-03-17","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/low-vision-a11y-tf/requirements.html","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160317":{"authors":["Jim Allan","Andrew Kirkpatrick","Shawn Lawton Henry (TAdER)"],"href":"https://www.w3.org/TR/2016/WD-low-vision-needs-20160317/","title":"Accessibility Requirements for People with Low Vision","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/low-vision-a11y-tf"},"lpf":{"authors":["Laurent Le Meur"],"href":"https://www.w3.org/TR/lpf/","title":"Lightweight Packaging Format (LPF)","rawDate":"2020-03-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/lpf/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191205":{"authors":["Laurent Le Meur"],"href":"https://www.w3.org/TR/2019/NOTE-lpf-20191205/","title":"Lightweight Packaging Format (LPF)","rawDate":"2019-12-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200319":{"authors":["Laurent Le Meur"],"href":"https://www.w3.org/TR/2020/NOTE-lpf-20200319/","title":"Lightweight Packaging Format (LPF)","rawDate":"2020-03-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/lpf"},"ltli":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/ltli/","title":"Language Tags and Locale Identifiers for the World Wide Web","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20060419":{"status":"WD","rawDate":"2006-04-19","href":"https://www.w3.org/TR/2006/WD-ltli-20060419/","source":"./data/w3c-specs.txt"},"20060612":{"authors":["Felix Sasaki"],"href":"https://www.w3.org/TR/2006/WD-ltli-20060612/","title":"Language Tags and Locale Identifiers for the World Wide Web","rawDate":"2006-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150423":{"authors":["Felix Sasaki","Addison Phillips"],"href":"https://www.w3.org/TR/2015/WD-ltli-20150423/","title":"Language Tags and Locale Identifiers for the World Wide Web","rawDate":"2015-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201007":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2020/WD-ltli-20201007/","title":"Language Tags and Locale Identifiers for the World Wide Web","rawDate":"2020-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-10-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/ltli/","repository":"https://github.com/w3c/ltli"},"magnetometer":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/magnetometer/","title":"Magnetometer","rawDate":"2024-01-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/magnetometer/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160913":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2016/WD-magnetometer-20160913/","title":"Magnetometer Sensor","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170411":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2017/WD-magnetometer-20170411/","title":"Magnetometer","rawDate":"2017-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2017/WD-magnetometer-20170418/","title":"Magnetometer","rawDate":"2017-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170814":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2017/WD-magnetometer-20170814/","title":"Magnetometer","rawDate":"2017-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2017/WD-magnetometer-20171018/","title":"Magnetometer","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2018/CR-magnetometer-20180320/","title":"Magnetometer","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2019/WD-magnetometer-20190307/","title":"Magnetometer","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210724":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-magnetometer-20210724/","title":"Magnetometer","rawDate":"2021-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210902":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-magnetometer-20210902/","title":"Magnetometer","rawDate":"2021-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211204":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-magnetometer-20211204/","title":"Magnetometer","rawDate":"2021-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-magnetometer-20211207/","title":"Magnetometer","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-magnetometer-20230130/","title":"Magnetometer","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231024":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-magnetometer-20231024/","title":"Magnetometer","rawDate":"2023-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-magnetometer-20231025/","title":"Magnetometer","rawDate":"2023-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-magnetometer-20231026/","title":"Magnetometer","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231127":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-magnetometer-20231127/","title":"Magnetometer","rawDate":"2023-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2024/WD-magnetometer-20240105/","title":"Magnetometer","rawDate":"2024-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/magnetometer"},"manifest-app-info":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/manifest-app-info/","title":"Web App Manifest - Application Information","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/manifest-app-info/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200730":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/NOTE-manifest-app-info-20200730/","title":"Web App Manifest - Application Information","rawDate":"2020-07-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200804":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2020/NOTE-manifest-app-info-20200804/","title":"Web App Manifest - Application Information","rawDate":"2020-08-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/NOTE-manifest-app-info-20210128/","title":"Web App Manifest - Application Information","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210315":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/NOTE-manifest-app-info-20210315/","title":"Web App Manifest - Application Information","rawDate":"2021-03-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210317":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/NOTE-manifest-app-info-20210317/","title":"Web App Manifest - Application Information","rawDate":"2021-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210324":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/NOTE-manifest-app-info-20210324/","title":"Web App Manifest - Application Information","rawDate":"2021-03-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2021/NOTE-manifest-app-info-20210930/","title":"Web App Manifest - Application Information","rawDate":"2021-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221025":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2022/NOTE-manifest-app-info-20221025/","title":"Web App Manifest - Application Information","rawDate":"2022-10-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230420":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2023/NOTE-manifest-app-info-20230420/","title":"Web App Manifest - Application Information","rawDate":"2023-04-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Aaron Gustafson"],"href":"https://www.w3.org/TR/2023/NOTE-manifest-app-info-20230821/","title":"Web App Manifest - Application Information","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/manifest-app-info"},"mathml-bvar":{"authors":["Stan Devitt","Michael Kohlhase"],"href":"https://www.w3.org/TR/mathml-bvar/","title":"Bound Variables in MathML","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"versions":{"20031110":{"authors":["Stan Devitt","Michael Kohlhase"],"href":"https://www.w3.org/TR/2003/NOTE-mathml-bvar-20031110/","title":"Bound Variables in MathML","rawDate":"2003-11-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-11-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mathml-core":{"authors":["David Carlisle","Frédéric Wang"],"href":"https://www.w3.org/TR/mathml-core/","title":"MathML Core","rawDate":"2023-11-27","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mathml-core/","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210816":{"authors":["David Carlisle","Frédéric Wang"],"href":"https://www.w3.org/TR/2021/WD-mathml-core-20210816/","title":"MathML Core","rawDate":"2021-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["David Carlisle","Frédéric Wang"],"href":"https://www.w3.org/TR/2022/WD-mathml-core-20220504/","title":"MathML Core","rawDate":"2022-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231127":{"authors":["David Carlisle","Frédéric Wang"],"href":"https://www.w3.org/TR/2023/WD-mathml-core-20231127/","title":"MathML Core","rawDate":"2023-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mathml-core"},"mathml-for-css":{"authors":["Bert Bos","David Carlisle","Giorgi Chavchanidze","Patrick D F Ion","Bruce Miller"],"etAl":true,"href":"https://www.w3.org/TR/mathml-for-css/","title":"A MathML for CSS Profile","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/Math/Documents/mathmlcss-errata.html","versions":{"20070427":{"status":"WD","rawDate":"2007-04-27","href":"https://www.w3.org/TR/2007/WD-mathml-for-css-20070427/","source":"./data/w3c-specs.txt"},"20070924":{"status":"WD","rawDate":"2007-09-24","href":"https://www.w3.org/TR/2007/WD-mathml-for-css-20070924/","source":"./data/w3c-specs.txt"},"20071214":{"status":"WD","rawDate":"2007-12-14","href":"https://www.w3.org/TR/2007/WD-mathml-for-css-20071214/","source":"./data/w3c-specs.txt"},"20090604":{"status":"WD","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/WD-mathml-for-css-20090604/","source":"./data/w3c-specs.txt"},"20091006":{"status":"WD","rawDate":"2009-10-06","href":"https://www.w3.org/TR/2009/WD-mathml-for-css-20091006/","source":"./data/w3c-specs.txt"},"20091215":{"status":"CR","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/CR-mathml-for-css-20091215/","source":"./data/w3c-specs.txt"},"20100810":{"status":"PR","rawDate":"2010-08-10","href":"https://www.w3.org/TR/2010/PR-mathml-for-css-20100810/","source":"./data/w3c-specs.txt"},"20110607":{"authors":["Bert Bos","David Carlisle","Giorgi Chavchanidze","Patrick D F Ion","Bruce Miller"],"href":"https://www.w3.org/TR/2011/REC-mathml-for-css-20110607/","title":"A MathML for CSS Profile","rawDate":"2011-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/Math/Documents/mathmlcss-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-06-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mathml-media-types":{"authors":["Paul Libbrecht"],"href":"https://www.w3.org/TR/mathml-media-types/","title":"MathML Media-type Declarations","rawDate":"2022-07-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/mathml-docs/mathml-media-types/","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220721":{"authors":["Paul Libbrecht"],"href":"https://www.w3.org/TR/2022/NOTE-mathml-media-types-20220721/","title":"MathML Media-type Declarations","rawDate":"2022-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mathml-docs"},"mathml-types":{"authors":["Stan Devitt","Michael Kohlhase","Max Froumentin"],"href":"https://www.w3.org/TR/mathml-types/","title":"Structured Types in MathML 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"versions":{"20031110":{"authors":["Stan Devitt","Michael Kohlhase","Max Froumentin"],"href":"https://www.w3.org/TR/2003/NOTE-mathml-types-20031110/","title":"Structured Types in MathML 2.0","rawDate":"2003-11-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-11-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mathml-units":{"authors":["Douglas Harder","Stan Devitt"],"href":"https://www.w3.org/TR/mathml-units/","title":"Units in MathML","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"versions":{"20031110":{"authors":["Douglas Harder","Stan Devitt"],"href":"https://www.w3.org/TR/2003/NOTE-mathml-units-20031110/","title":"Units in MathML","rawDate":"2003-11-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-11-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mathml4":{"authors":["David Carlisle"],"href":"https://www.w3.org/TR/mathml4/","title":"Mathematical Markup Language (MathML) Version 4.0","rawDate":"2022-09-08","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mathml/","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220908":{"authors":["David Carlisle"],"href":"https://www.w3.org/TR/2022/WD-mathml4-20220908/","title":"Mathematical Markup Language (MathML) Version 4.0","rawDate":"2022-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mathml"},"matrix":{"authors":["Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/matrix/","title":"DOMMatrix interface","rawDate":"2018-04-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130919":{"authors":["Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/2013/WD-matrix-20130919/","title":"DOMMatrix interface","rawDate":"2013-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180412":{"authors":["Dirk Schulze","Rik Cabanier"],"href":"https://www.w3.org/TR/2018/NOTE-matrix-20180412/","title":"DOMMatrix interface","rawDate":"2018-04-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://drafts.fxtf.org/matrix/","repository":"https://github.com/w3c/fxtf-drafts","isRetired":true},"maturity-model":{"authors":["David Fazio","Charles LaPierre","Janina Sajka"],"href":"https://www.w3.org/TR/maturity-model/","title":"Accessibility Maturity Model","rawDate":"2023-12-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/maturity-model/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220906":{"authors":["Sheri Byrne-Haber","David Fazio","Janina Sajka","Ruoxi Ran"],"href":"https://www.w3.org/TR/2022/DNOTE-maturity-model-20220906/","title":"W3C Accessibility Maturity Model","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230824":{"authors":["Sheri Byrne-Haber","David Fazio","Charles LaPierre","Janina Sajka"],"href":"https://www.w3.org/TR/2023/DNOTE-maturity-model-20230824/","title":"W3C Accessibility Maturity Model","rawDate":"2023-08-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231215":{"authors":["David Fazio","Charles LaPierre","Janina Sajka"],"href":"https://www.w3.org/TR/2023/DNOTE-maturity-model-20231215/","title":"Accessibility Maturity Model","rawDate":"2023-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/maturity-model"},"mbui-glossary":{"authors":["Jaroslav Pullmann"],"href":"https://www.w3.org/TR/mbui-glossary/","title":"MBUI - Glossary","rawDate":"2014-01-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140107":{"authors":["Jaroslav Pullmann"],"href":"https://www.w3.org/TR/2014/NOTE-mbui-glossary-20140107/","title":"MBUI - Glossary","rawDate":"2014-01-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"mbui-intro":{"authors":["Gerrit Meixner","Gaelle Calvary"],"href":"https://www.w3.org/TR/mbui-intro/","title":"Introduction to Model-Based User Interfaces","rawDate":"2014-01-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140107":{"authors":["Gerrit Meixner","Gaelle Calvary"],"href":"https://www.w3.org/TR/2014/NOTE-mbui-intro-20140107/","title":"Introduction to Model-Based User Interfaces","rawDate":"2014-01-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/2011/mbui/drafts/mbui-intro/"},"md-policy-design":{"versions":{"19991210":{"status":"NOTE","rawDate":"1999-12-10","href":"https://www.w3.org/TR/1999/NOTE-md-policy-design-19991210","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/md-policy-design","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-12-10","title":"Eskimo Snow and Scottish Rain"},"media-accessibility-reqs":{"authors":["Shane McCarron","Michael Cooper","Mark Sadecki"],"href":"https://www.w3.org/TR/media-accessibility-reqs/","title":"Media Accessibility User Requirements","rawDate":"2015-12-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120103":{"authors":["Shane McCarron","Michael Cooper"],"href":"https://www.w3.org/TR/2012/WD-media-accessibility-reqs-20120103/","title":"Media Accessibility User Requirements","rawDate":"2012-01-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140814":{"authors":["Shane McCarron","Michael Cooper","Mark Sadecki"],"href":"https://www.w3.org/TR/2014/WD-media-accessibility-reqs-20140814/","title":"Media Accessibility User Requirements","rawDate":"2014-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151203":{"authors":["Shane McCarron","Michael Cooper","Mark Sadecki"],"href":"https://www.w3.org/TR/2015/NOTE-media-accessibility-reqs-20151203/","title":"Media Accessibility User Requirements","rawDate":"2015-12-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/pfwg/media-accessibility-reqs/","repository":"https://github.com/w3c/pfwg"},"media-annot-reqs":{"authors":["Wonsuk Lee","Tobias Bürger","Felix Sasaki","Véronique Malaisé"],"href":"https://www.w3.org/TR/media-annot-reqs/","title":"Use Cases and Requirements for Ontology and API for Media Resource 1.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"versions":{"20090119":{"status":"WD","rawDate":"2009-01-19","href":"https://www.w3.org/TR/2009/WD-media-annot-reqs-20090119","source":"./data/w3c-specs.txt"},"20090604":{"status":"WD","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/WD-media-annot-reqs-20090604","source":"./data/w3c-specs.txt"},"20100121":{"authors":["Wonsuk Lee","Tobias Bürger","Felix Sasaki","Véronique Malaisé"],"href":"https://www.w3.org/TR/2010/WD-media-annot-reqs-20100121/","title":"Use Cases and Requirements for Ontology and API for Media Resource 1.0","rawDate":"2010-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-01-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"media-capabilities":{"authors":["Jean-Yves Avenard","Will Cassella"],"href":"https://www.w3.org/TR/media-capabilities/","title":"Media Capabilities","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"repository":"https://github.com/w3c/media-capabilities","rawDate":"2022-11-17","edDraft":"https://w3c.github.io/media-capabilities/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200130":{"authors":["Mounir Lamouri","Chris Cunningham","Vi Nguyen"],"href":"https://www.w3.org/TR/2020/WD-media-capabilities-20200130/","title":"Media Capabilities","rawDate":"2020-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210316":{"authors":["Mounir Lamouri","Chris Cunningham","Vi Nguyen"],"href":"https://www.w3.org/TR/2021/WD-media-capabilities-20210316/","title":"Media Capabilities","rawDate":"2021-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Mounir Lamouri","Chris Cunningham","Vi Nguyen"],"href":"https://www.w3.org/TR/2021/WD-media-capabilities-20210604/","title":"Media Capabilities","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220111":{"authors":["Mounir Lamouri","Chris Cunningham","Vi Nguyen"],"href":"https://www.w3.org/TR/2022/WD-media-capabilities-20220111/","title":"Media Capabilities","rawDate":"2022-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220420":{"authors":["Mounir Lamouri","Chris Cunningham","Vi Nguyen"],"href":"https://www.w3.org/TR/2022/WD-media-capabilities-20220420/","title":"Media Capabilities","rawDate":"2022-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["Mounir Lamouri","Chris Cunningham","Vi Nguyen"],"href":"https://www.w3.org/TR/2022/WD-media-capabilities-20220803/","title":"Media Capabilities","rawDate":"2022-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221117":{"authors":["Jean-Yves Avenard","Will Cassella"],"href":"https://www.w3.org/TR/2022/WD-media-capabilities-20221117/","title":"Media Capabilities","rawDate":"2022-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"media-capture-api":{"authors":["Dzung Tran","Ilkka Oksanen","Ingmar Kliche"],"href":"https://www.w3.org/TR/media-capture-api/","title":"The Media Capture API","rawDate":"2012-03-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100928":{"status":"WD","rawDate":"2010-09-28","href":"https://www.w3.org/TR/2010/WD-media-capture-api-20100928/","source":"./data/w3c-specs.txt"},"20120322":{"authors":["Dzung Tran","Ilkka Oksanen","Ingmar Kliche"],"href":"https://www.w3.org/TR/2012/NOTE-media-capture-api-20120322/","title":"The Media Capture API","rawDate":"2012-03-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"media-frags":{"authors":["Raphaël Troncy","Erik Mannens","Silvia Pfeiffer","Davy Van Deursen"],"href":"https://www.w3.org/TR/media-frags/","title":"Media Fragments URI 1.0 (basic)","status":"REC","publisher":"W3C","versions":{"20091217":{"status":"WD","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/WD-media-frags-20091217","source":"./data/w3c-specs.txt"},"20100413":{"status":"WD","rawDate":"2010-04-13","href":"https://www.w3.org/TR/2010/WD-media-frags-20100413","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-media-frags-20100624","source":"./data/w3c-specs.txt"},"20110317":{"status":"WD","rawDate":"2011-03-17","href":"https://www.w3.org/TR/2011/WD-media-frags-20110317","source":"./data/w3c-specs.txt"},"20111201":{"status":"CR","rawDate":"2011-12-01","href":"https://www.w3.org/TR/2011/CR-media-frags-20111201/","source":"./data/w3c-specs.txt"},"20120315":{"status":"PR","rawDate":"2012-03-15","href":"https://www.w3.org/TR/2012/PR-media-frags-20120315/","source":"./data/w3c-specs.txt"},"20120925":{"authors":["Raphaël Troncy","Erik Mannens","Silvia Pfeiffer","Davy Van Deursen"],"href":"https://www.w3.org/TR/2012/REC-media-frags-20120925/","title":"Media Fragments URI 1.0 (basic)","rawDate":"2012-09-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Fragments/"],"hasErrata":"https://www.w3.org/2008/WebVideo/Fragments/errata/media-frags-20120925-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/2008/WebVideo/Fragments/"],"hasErrata":"https://www.w3.org/2008/WebVideo/Fragments/errata/media-frags-20120925-errata","rawDate":"2012-09-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"media-frags-recipes":{"authors":["Raphaël Troncy","Erik Mannens","Silvia Pfeiffer","Davy Van Deursen"],"href":"https://www.w3.org/TR/media-frags-recipes/","title":"Protocol for Media Fragments 1.0 Resolution in HTTP","rawDate":"2011-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Fragments/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111201":{"authors":["Raphaël Troncy","Erik Mannens","Silvia Pfeiffer","Davy Van Deursen"],"href":"https://www.w3.org/TR/2011/WD-media-frags-recipes-20111201/","title":"Protocol for Media Fragments 1.0 Resolution in HTTP","rawDate":"2011-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Fragments/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"media-frags-reqs":{"authors":["Raphaël Troncy","Erik Mannens"],"href":"https://www.w3.org/TR/media-frags-reqs/","title":"Use cases and requirements for Media Fragments","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Fragments/"],"versions":{"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-media-frags-reqs-20090430","source":"./data/w3c-specs.txt"},"20091217":{"authors":["Raphaël Troncy","Erik Mannens"],"href":"https://www.w3.org/TR/2009/WD-media-frags-reqs-20091217/","title":"Use cases and requirements for Media Fragments","rawDate":"2009-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Fragments/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-12-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"media-playback-quality":{"authors":["Mounir Lamouri"],"href":"https://w3c.github.io/media-playback-quality/","title":"Media Playback Quality","status":"ED","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"repository":"https://github.com/w3c/media-playback-quality"},"media-source":{"aliasOf":"media-source-2"},"media-source-1":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/media-source-1/","title":"Media Source Extensions™","rawDate":"2016-11-17","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/","deliveredBy":["https://www.w3.org/html/wg/"],"hasErrata":"https://w3c.github.io/media-source/mse-1-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130129":{"status":"WD","rawDate":"2013-01-29","href":"https://www.w3.org/TR/2013/WD-media-source-20130129/","source":"./data/w3c-specs.txt"},"20130415":{"authors":["Aaron Colwell","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2013/WD-media-source-20130415/","title":"Media Source Extensions","rawDate":"2013-04-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130905":{"authors":["Aaron Colwell","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2013/WD-media-source-20130905/","title":"Media Source Extensions","rawDate":"2013-09-05","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Aaron Colwell","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2014/CR-media-source-20140109/","title":"Media Source Extensions","rawDate":"2014-01-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140717":{"authors":["Aaron Colwell","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2014/CR-media-source-20140717/","title":"Media Source Extensions","rawDate":"2014-07-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150331":{"authors":["Aaron Colwell","Adrian Bateman","Mark Watson"],"href":"https://www.w3.org/TR/2015/CR-media-source-20150331/","title":"Media Source Extensions","rawDate":"2015-03-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151112":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2015/CR-media-source-20151112/","title":"Media Source Extensions","rawDate":"2015-11-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160503":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/CR-media-source-20160503/","title":"Media Source Extensions","rawDate":"2016-05-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/CR-media-source-20160705/","title":"Media Source Extensions","rawDate":"2016-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161004":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/PR-media-source-20161004/","title":"Media Source Extensions™","rawDate":"2016-10-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161117":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/REC-media-source-20161117/","title":"Media Source Extensions™","rawDate":"2016-11-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"hasErrata":"https://w3c.github.io/media-source/mse-1-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"media-source-2":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/media-source-2/","title":"Media Source Extensions™","rawDate":"2023-12-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210930":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2021/WD-media-source-2-20210930/","title":"Media Source Extensions™","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220217":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220217/","title":"Media Source Extensions™","rawDate":"2022-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220318":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220318/","title":"Media Source Extensions™","rawDate":"2022-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220330/","title":"Media Source Extensions™","rawDate":"2022-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220505/","title":"Media Source Extensions™","rawDate":"2022-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220510":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220510/","title":"Media Source Extensions™","rawDate":"2022-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220518":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220518/","title":"Media Source Extensions™","rawDate":"2022-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220519/","title":"Media Source Extensions™","rawDate":"2022-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220726":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220726/","title":"Media Source Extensions™","rawDate":"2022-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Matthew Wolenetz","Mark Watson"],"href":"https://www.w3.org/TR/2022/WD-media-source-2-20220921/","title":"Media Source Extensions™","rawDate":"2022-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231010":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231010/","title":"Media Source Extensions™","rawDate":"2023-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231023":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231023/","title":"Media Source Extensions™","rawDate":"2023-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231025/","title":"Media Source Extensions™","rawDate":"2023-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231102/","title":"Media Source Extensions™","rawDate":"2023-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231114":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231114/","title":"Media Source Extensions™","rawDate":"2023-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231204/","title":"Media Source Extensions™","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231206":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231206/","title":"Media Source Extensions™","rawDate":"2023-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231218":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231218/","title":"Media Source Extensions™","rawDate":"2023-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Jean-Yves Avenard","Mark Watson","Matthew Wolenetz"],"href":"https://www.w3.org/TR/2023/WD-media-source-2-20231221/","title":"Media Source Extensions™","rawDate":"2023-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"media-source-20130129":{"aliasOf":"media-source-1-20130129"},"media-source-20130415":{"aliasOf":"media-source-1-20130415"},"media-source-20130905":{"aliasOf":"media-source-1-20130905"},"media-source-20140109":{"aliasOf":"media-source-1-20140109"},"media-source-20140717":{"aliasOf":"media-source-1-20140717"},"media-source-20150331":{"aliasOf":"media-source-1-20150331"},"media-source-20151112":{"aliasOf":"media-source-1-20151112"},"media-source-20160503":{"aliasOf":"media-source-1-20160503"},"media-source-20160705":{"aliasOf":"media-source-1-20160705"},"media-source-20161004":{"aliasOf":"media-source-1-20161004"},"media-source-20161117":{"aliasOf":"media-source-1-20161117"},"media-timed-events":{"authors":["Chris Needham"],"href":"https://www.w3.org/TR/media-timed-events/","title":"Requirements for Media Timed Events","rawDate":"2020-06-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/me-media-timed-events/","deliveredBy":["https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190516":{"authors":["Chris Needham"],"href":"https://www.w3.org/TR/2019/NOTE-media-timed-events-20190516/","title":"Media Timed Events","rawDate":"2019-05-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200625":{"authors":["Chris Needham"],"href":"https://www.w3.org/TR/2020/NOTE-media-timed-events-20200625/","title":"Requirements for Media Timed Events","rawDate":"2020-06-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webtv/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/me-media-timed-events"},"mediacapture-depth":{"authors":["Anssi Kostiainen","Ningxin Hu","Rijubrata Bhaumik","Rob Manson"],"href":"https://www.w3.org/TR/mediacapture-depth/","title":"Media Capture Depth Stream Extensions","rawDate":"2022-02-01","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-depth/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141007":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2014/WD-mediacapture-depth-20141007/","title":"Media Capture Depth Stream Extensions","rawDate":"2014-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150129":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2015/WD-mediacapture-depth-20150129/","title":"Media Capture Depth Stream Extensions","rawDate":"2015-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151208":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2015/WD-mediacapture-depth-20151208/","title":"Media Capture Depth Stream Extensions","rawDate":"2015-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160121":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160121/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160202":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160202/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160226":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160226/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160418":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160418/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160419":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160419/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160531/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160712":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-depth-20160712/","title":"Media Capture Depth Stream Extensions","rawDate":"2016-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170227":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2017/WD-mediacapture-depth-20170227/","title":"Media Capture Depth Stream Extensions","rawDate":"2017-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170328":{"authors":["Anssi Kostiainen","Ningxin Hu","Rob Manson"],"href":"https://www.w3.org/TR/2017/WD-mediacapture-depth-20170328/","title":"Media Capture Depth Stream Extensions","rawDate":"2017-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Anssi Kostiainen","Ningxin Hu","Aleksandar Stojiljkovic","Rob Manson"],"href":"https://www.w3.org/TR/2017/WD-mediacapture-depth-20170418/","title":"Media Capture Depth Stream Extensions","rawDate":"2017-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220201":{"authors":["Anssi Kostiainen","Ningxin Hu","Rijubrata Bhaumik","Rob Manson"],"href":"https://www.w3.org/TR/2022/DISC-mediacapture-depth-20220201/","title":"Media Capture Depth Stream Extensions","rawDate":"2022-02-01","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-depth","isRetired":true},"mediacapture-fromelement":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/mediacapture-fromelement/","title":"Media Capture from DOM Elements","rawDate":"2023-12-12","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-fromelement/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150219":{"authors":["Martin Thomson"],"href":"https://www.w3.org/TR/2015/WD-mediacapture-fromelement-20150219/","title":"Media Capture from DOM Elements","rawDate":"2015-02-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160607":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-fromelement-20160607/","title":"Media Capture from DOM Elements","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-fromelement-20160714/","title":"Media Capture from DOM Elements","rawDate":"2016-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160803":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-fromelement-20160803/","title":"Media Capture from DOM Elements","rawDate":"2016-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160804":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-fromelement-20160804/","title":"Media Capture from DOM Elements","rawDate":"2016-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"href":"https://www.w3.org/TR/2016/WD-mediacapture-fromelement-20160830/","title":"Media Capture from DOM Elements","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170207":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2017/WD-mediacapture-fromelement-20170207/","title":"Media Capture from DOM Elements","rawDate":"2017-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170906":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2017/WD-mediacapture-fromelement-20170906/","title":"Media Capture from DOM Elements","rawDate":"2017-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201202":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2020/WD-mediacapture-fromelement-20201202/","title":"Media Capture from DOM Elements","rawDate":"2020-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2021/WD-mediacapture-fromelement-20210119/","title":"Media Capture from DOM Elements","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210705":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2021/WD-mediacapture-fromelement-20210705/","title":"Media Capture from DOM Elements","rawDate":"2021-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211115":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2021/WD-mediacapture-fromelement-20211115/","title":"Media Capture from DOM Elements","rawDate":"2021-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231212":{"authors":["Martin Thomson","Miguel Casas-sanchez","Emircan Uysaler"],"href":"https://www.w3.org/TR/2023/WD-mediacapture-fromelement-20231212/","title":"Media Capture from DOM Elements","rawDate":"2023-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-fromelement"},"mediacapture-region":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/mediacapture-region/","title":"Region Capture","rawDate":"2023-07-12","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-region/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220414":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-region-20220414/","title":"Region Capture","rawDate":"2022-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220510":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-region-20220510/","title":"Region Capture","rawDate":"2022-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220520":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-region-20220520/","title":"Region Capture","rawDate":"2022-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220606":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-region-20220606/","title":"Region Capture","rawDate":"2022-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220721":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-region-20220721/","title":"Region Capture","rawDate":"2022-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-region-20221020/","title":"Region Capture","rawDate":"2022-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-mediacapture-region-20230308/","title":"Region Capture","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-mediacapture-region-20230712/","title":"Region Capture","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-region"},"mediacapture-streams":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/mediacapture-streams/","title":"Media Capture and Streams","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"versions":{"20120628":{"status":"WD","rawDate":"2012-06-28","href":"https://www.w3.org/TR/2012/WD-mediacapture-streams-20120628/","source":"./data/w3c-specs.txt"},"20130516":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2013/WD-mediacapture-streams-20130516/","title":"Media Capture and Streams","rawDate":"2013-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130903":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2013/WD-mediacapture-streams-20130903/","title":"Media Capture and Streams","rawDate":"2013-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150212":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2015/WD-mediacapture-streams-20150212/","title":"Media Capture and Streams","rawDate":"2015-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150414":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2015/WD-mediacapture-streams-20150414/","title":"Media Capture and Streams","rawDate":"2015-04-14","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan","Bernard Aboba"],"href":"https://www.w3.org/TR/2016/CR-mediacapture-streams-20160519/","title":"Media Capture and Streams","rawDate":"2016-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171003":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan","Bernard Aboba"],"href":"https://www.w3.org/TR/2017/CR-mediacapture-streams-20171003/","title":"Media Capture and Streams","rawDate":"2017-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190702":{"authors":["Daniel Burnett","Adam Bergkvist","Cullen Jennings","Anant Narayanan","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström"],"href":"https://www.w3.org/TR/2019/CR-mediacapture-streams-20190702/","title":"Media Capture and Streams","rawDate":"2019-07-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200924":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2020/CRD-mediacapture-streams-20200924/","title":"Media Capture and Streams","rawDate":"2020-09-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200928":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2020/CRD-mediacapture-streams-20200928/","title":"Media Capture and Streams","rawDate":"2020-09-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200929":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2020/CRD-mediacapture-streams-20200929/","title":"Media Capture and Streams","rawDate":"2020-09-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201007":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2020/CRD-mediacapture-streams-20201007/","title":"Media Capture and Streams","rawDate":"2020-10-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201104":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2020/CRD-mediacapture-streams-20201104/","title":"Media Capture and Streams","rawDate":"2020-11-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201217":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2020/CRD-mediacapture-streams-20201217/","title":"Media Capture and Streams","rawDate":"2020-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210114":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210114/","title":"Media Capture and Streams","rawDate":"2021-01-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210119/","title":"Media Capture and Streams","rawDate":"2021-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210121":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210121/","title":"Media Capture and Streams","rawDate":"2021-01-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210128/","title":"Media Capture and Streams","rawDate":"2021-01-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210215/","title":"Media Capture and Streams","rawDate":"2021-02-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210218":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210218/","title":"Media Capture and Streams","rawDate":"2021-02-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210315":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210315/","title":"Media Capture and Streams","rawDate":"2021-03-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210322":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210322/","title":"Media Capture and Streams","rawDate":"2021-03-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210408":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210408/","title":"Media Capture and Streams","rawDate":"2021-04-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210601/","title":"Media Capture and Streams","rawDate":"2021-06-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210604/","title":"Media Capture and Streams","rawDate":"2021-06-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210610":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210610/","title":"Media Capture and Streams","rawDate":"2021-06-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210701":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210701/","title":"Media Capture and Streams","rawDate":"2021-07-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210715/","title":"Media Capture and Streams","rawDate":"2021-07-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210819":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20210819/","title":"Media Capture and Streams","rawDate":"2021-08-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CR-mediacapture-streams-20211013/","title":"Media Capture and Streams","rawDate":"2021-10-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211021":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet","Daniel Burnett","Adam Bergkvist","Anant Narayanan"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211021/","title":"Media Capture and Streams","rawDate":"2021-10-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211203/","title":"Media Capture and Streams","rawDate":"2021-12-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211209":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211209/","title":"Media Capture and Streams","rawDate":"2021-12-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211215/","title":"Media Capture and Streams","rawDate":"2021-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2021/CRD-mediacapture-streams-20211216/","title":"Media Capture and Streams","rawDate":"2021-12-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220103":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220103/","title":"Media Capture and Streams","rawDate":"2022-01-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220106":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220106/","title":"Media Capture and Streams","rawDate":"2022-01-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220120/","title":"Media Capture and Streams","rawDate":"2022-01-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220210/","title":"Media Capture and Streams","rawDate":"2022-02-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220307/","title":"Media Capture and Streams","rawDate":"2022-03-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220310/","title":"Media Capture and Streams","rawDate":"2022-03-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220505/","title":"Media Capture and Streams","rawDate":"2022-05-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220610/","title":"Media Capture and Streams","rawDate":"2022-06-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220616":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220616/","title":"Media Capture and Streams","rawDate":"2022-06-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220630":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220630/","title":"Media Capture and Streams","rawDate":"2022-06-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220818/","title":"Media Capture and Streams","rawDate":"2022-08-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220922":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20220922/","title":"Media Capture and Streams","rawDate":"2022-09-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221013":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221013/","title":"Media Capture and Streams","rawDate":"2022-10-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221215":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2022/CRD-mediacapture-streams-20221215/","title":"Media Capture and Streams","rawDate":"2022-12-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230112":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230112/","title":"Media Capture and Streams","rawDate":"2023-01-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230202/","title":"Media Capture and Streams","rawDate":"2023-02-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230323":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230323/","title":"Media Capture and Streams","rawDate":"2023-03-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230406/","title":"Media Capture and Streams","rawDate":"2023-04-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230413/","title":"Media Capture and Streams","rawDate":"2023-04-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230427/","title":"Media Capture and Streams","rawDate":"2023-04-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230504":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230504/","title":"Media Capture and Streams","rawDate":"2023-05-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230619/","title":"Media Capture and Streams","rawDate":"2023-06-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230817/","title":"Media Capture and Streams","rawDate":"2023-08-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20230921/","title":"Media Capture and Streams","rawDate":"2023-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231120":{"authors":["Cullen Jennings","Bernard Aboba","Jan-Ivar Bruaroey","Henrik Boström","youenn fablet"],"href":"https://www.w3.org/TR/2023/CRD-mediacapture-streams-20231120/","title":"Media Capture and Streams","rawDate":"2023-11-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-11-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/mediacapture-main/","repository":"https://github.com/w3c/mediacapture-main"},"mediacapture-transform":{"authors":["Harald Alvestrand","Guido Urdaneta"],"href":"https://www.w3.org/TR/mediacapture-transform/","title":"MediaStreamTrack Insertable Media Processing using Streams","rawDate":"2022-10-20","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-transform/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220210":{"authors":["Harald Alvestrand","Guido Urdaneta"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-transform-20220210/","title":"MediaStreamTrack Insertable Media Processing using Streams","rawDate":"2022-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Harald Alvestrand","Guido Urdaneta"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-transform-20221020/","title":"MediaStreamTrack Insertable Media Processing using Streams","rawDate":"2022-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-transform"},"mediacapture-viewport":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/mediacapture-viewport/","title":"Viewport Capture","rawDate":"2022-06-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-viewport/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220524":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-viewport-20220524/","title":"Viewport Capture","rawDate":"2022-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220621":{"authors":["Elad Alon","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2022/WD-mediacapture-viewport-20220621/","title":"Viewport Capture","rawDate":"2022-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-viewport"},"mediaont-10":{"authors":["Wonsuk Lee","Werner Bailer","Tobias Bürger","Pierre-Antoine Champin","Jean-Pierre EVAIN","Véronique Malaisé","Thierry Michel","Felix Sasaki","Joakim Söderberg","Florian Stegmaier","John Strassner"],"href":"https://www.w3.org/TR/mediaont-10/","title":"Ontology for Media Resources 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"hasErrata":"https://www.w3.org/2012/01/mediaont-10-errata.html","versions":{"20090618":{"status":"WD","rawDate":"2009-06-18","href":"https://www.w3.org/TR/2009/WD-mediaont-10-20090618","source":"./data/w3c-specs.txt"},"20100309":{"status":"WD","rawDate":"2010-03-09","href":"https://www.w3.org/TR/2010/WD-mediaont-10-20100309","source":"./data/w3c-specs.txt"},"20100608":{"status":"WD","rawDate":"2010-06-08","href":"https://www.w3.org/TR/2010/WD-mediaont-10-20100608","source":"./data/w3c-specs.txt"},"20110308":{"status":"WD","rawDate":"2011-03-08","href":"https://www.w3.org/TR/2011/WD-mediaont-10-20110308","source":"./data/w3c-specs.txt"},"20110707":{"status":"CR","rawDate":"2011-07-07","href":"https://www.w3.org/TR/2011/CR-mediaont-10-20110707","source":"./data/w3c-specs.txt"},"20111129":{"status":"PR","rawDate":"2011-11-29","href":"https://www.w3.org/TR/2011/PR-mediaont-10-20111129/","source":"./data/w3c-specs.txt"},"20120209":{"authors":["Wonsuk Lee","Werner Bailer","Tobias Bürger","Pierre-Antoine Champin","Jean-Pierre EVAIN","Véronique Malaisé","Thierry Michel","Felix Sasaki","Joakim Söderberg","Florian Stegmaier","John Strassner"],"href":"https://www.w3.org/TR/2012/REC-mediaont-10-20120209/","title":"Ontology for Media Resources 1.0","rawDate":"2012-02-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"hasErrata":"https://www.w3.org/2012/01/mediaont-10-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-02-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mediaont-api-1.0":{"authors":["Florian Stegmaier","Werner Bailer","Martin Höffernig","Wonsuk Lee","Chris Poppe"],"href":"https://www.w3.org/TR/mediaont-api-1.0/","title":"Metadata API for Media Resources 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"versions":{"20091020":{"status":"WD","rawDate":"2009-10-20","href":"https://www.w3.org/TR/2009/WD-mediaont-api-1.0-20091020","source":"./data/w3c-specs.txt"},"20100309":{"status":"WD","rawDate":"2010-03-09","href":"https://www.w3.org/TR/2010/WD-mediaont-api-1.0-20100309","source":"./data/w3c-specs.txt"},"20100608":{"status":"WD","rawDate":"2010-06-08","href":"https://www.w3.org/TR/2010/WD-mediaont-api-1.0-20100608","source":"./data/w3c-specs.txt"},"20110712":{"status":"WD","rawDate":"2011-07-12","href":"https://www.w3.org/TR/2011/WD-mediaont-api-1.0-20110712","source":"./data/w3c-specs.txt"},"20111122":{"status":"CR","rawDate":"2011-11-22","href":"https://www.w3.org/TR/2011/CR-mediaont-api-1.0-20111122/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Florian Stegmaier","Werner Bailer","Martin Höffernig","WonSuk Lee","Chris Poppe"],"href":"https://www.w3.org/TR/2013/WD-mediaont-api-1.0-20130411/","title":"API for Media Resources 1.0","rawDate":"2013-04-11","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131015":{"authors":["Florian Stegmaier","Werner Bailer","Martin Höffernig","WonSuk Lee","Chris Poppe"],"href":"https://www.w3.org/TR/2013/PR-mediaont-api-1.0-20131015/","title":"API for Media Resources 1.0","rawDate":"2013-10-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140313":{"authors":["Florian Stegmaier","Werner Bailer","Martin Höffernig","Wonsuk Lee","Chris Poppe"],"href":"https://www.w3.org/TR/2014/REC-mediaont-api-1.0-20140313/","title":"Metadata API for Media Resources 1.0","rawDate":"2014-03-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/WebVideo/Annotations/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-03-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mediaqueries-3":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/mediaqueries-3/","title":"Media Queries Level 3","rawDate":"2022-04-05","status":"REC","publisher":"W3C","edDraft":"https://drafts.csswg.org/mediaqueries-3/","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2022/REC-mediaqueries-3-20220405-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010404":{"status":"WD","rawDate":"2001-04-04","href":"https://www.w3.org/TR/2001/WD-css3-mediaqueries-20010404/","source":"./data/w3c-specs.txt"},"20010517":{"status":"WD","rawDate":"2001-05-17","href":"https://www.w3.org/TR/2001/WD-css3-mediaqueries-20010517/","source":"./data/w3c-specs.txt"},"20020123":{"status":"WD","rawDate":"2002-01-23","href":"https://www.w3.org/TR/2002/WD-css3-mediaqueries-20020123/","source":"./data/w3c-specs.txt"},"20020708":{"status":"CR","rawDate":"2002-07-08","href":"https://www.w3.org/TR/2002/CR-css3-mediaqueries-20020708","source":"./data/w3c-specs.txt"},"20070606":{"status":"CR","rawDate":"2007-06-06","href":"https://www.w3.org/TR/2007/CR-css3-mediaqueries-20070606","source":"./data/w3c-specs.txt"},"20081015":{"status":"WD","rawDate":"2008-10-15","href":"https://www.w3.org/TR/2008/WD-css3-mediaqueries-20081015/","source":"./data/w3c-specs.txt"},"20090423":{"status":"CR","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/CR-css3-mediaqueries-20090423/","source":"./data/w3c-specs.txt"},"20090915":{"status":"CR","rawDate":"2009-09-15","href":"https://www.w3.org/TR/2009/CR-css3-mediaqueries-20090915/","source":"./data/w3c-specs.txt"},"20100727":{"status":"CR","rawDate":"2010-07-27","href":"https://www.w3.org/TR/2010/CR-css3-mediaqueries-20100727/","source":"./data/w3c-specs.txt"},"20120426":{"status":"PR","rawDate":"2012-04-26","href":"https://www.w3.org/TR/2012/PR-css3-mediaqueries-20120426/","source":"./data/w3c-specs.txt"},"20120619":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2012/REC-css3-mediaqueries-20120619/","title":"Media Queries","rawDate":"2012-06-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2012/REC-mediaqueries-20120619-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220405":{"authors":["Florian Rivoal"],"href":"https://www.w3.org/TR/2022/REC-mediaqueries-3-20220405/","title":"Media Queries Level 3","rawDate":"2022-04-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"hasErrata":"https://www.w3.org/Style/2022/REC-mediaqueries-3-20220405-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"mediaqueries-4":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/mediaqueries-4/","title":"Media Queries Level 4","rawDate":"2021-12-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140605":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-mediaqueries-4-20140605/","title":"Media Queries Level 4","rawDate":"2014-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160126":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2016/WD-mediaqueries-4-20160126/","title":"Media Queries Level 4","rawDate":"2016-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160706":{"href":"https://www.w3.org/TR/2016/WD-mediaqueries-4-20160706/","title":"Media Queries Level 4","rawDate":"2016-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170519":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/WD-mediaqueries-4-20170519/","title":"Media Queries Level 4","rawDate":"2017-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170905":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2017/CR-mediaqueries-4-20170905/","title":"Media Queries Level 4","rawDate":"2017-09-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200721":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/CR-mediaqueries-4-20200721/","title":"Media Queries Level 4","rawDate":"2020-07-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211225":{"authors":["Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2021/CRD-mediaqueries-4-20211225/","title":"Media Queries Level 4","rawDate":"2021-12-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/mediaqueries-4/","repository":"https://github.com/w3c/csswg-drafts"},"mediaqueries-5":{"authors":["Dean Jackson","Florian Rivoal","Tab Atkins Jr.","Daniel Libby"],"href":"https://www.w3.org/TR/mediaqueries-5/","title":"Media Queries Level 5","rawDate":"2021-12-18","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/mediaqueries-5/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200303":{"authors":["Dean Jackson","Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-mediaqueries-5-20200303/","title":"Media Queries Level 5","rawDate":"2020-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200318":{"authors":["Dean Jackson","Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-mediaqueries-5-20200318/","title":"Media Queries Level 5","rawDate":"2020-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200603":{"authors":["Dean Jackson","Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-mediaqueries-5-20200603/","title":"Media Queries Level 5","rawDate":"2020-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200731":{"authors":["Dean Jackson","Florian Rivoal","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2020/WD-mediaqueries-5-20200731/","title":"Media Queries Level 5","rawDate":"2020-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211218":{"authors":["Dean Jackson","Florian Rivoal","Tab Atkins Jr.","Daniel Libby"],"href":"https://www.w3.org/TR/2021/WD-mediaqueries-5-20211218/","title":"Media Queries Level 5","rawDate":"2021-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"mediasession":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/mediasession/","title":"Media Session","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"repository":"https://github.com/w3c/mediasession","rawDate":"2024-01-22","edDraft":"https://w3c.github.io/mediasession/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200130":{"authors":["Mounir Lamouri","Becca Hughes"],"href":"https://www.w3.org/TR/2020/WD-mediasession-20200130/","title":"Media Session Standard","rawDate":"2020-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210504":{"authors":["Mounir Lamouri","Becca Hughes"],"href":"https://www.w3.org/TR/2021/WD-mediasession-20210504/","title":"Media Session Standard","rawDate":"2021-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Mounir Lamouri","Becca Hughes"],"href":"https://www.w3.org/TR/2021/WD-mediasession-20210604/","title":"Media Session Standard","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220912":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-mediasession-20220912/","title":"Media Session Standard","rawDate":"2022-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220913":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-mediasession-20220913/","title":"Media Session Standard","rawDate":"2022-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-mediasession-20220919/","title":"Media Session Standard","rawDate":"2022-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-mediasession-20220920/","title":"Media Session Standard","rawDate":"2022-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230912":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-mediasession-20230912/","title":"Media Session","rawDate":"2023-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230915":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-mediasession-20230915/","title":"Media Session","rawDate":"2023-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230918":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-mediasession-20230918/","title":"Media Session","rawDate":"2023-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231011":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-mediasession-20231011/","title":"Media Session","rawDate":"2023-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240119":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2024/WD-mediasession-20240119/","title":"Media Session","rawDate":"2024-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240122":{"authors":["Thomas Steimel","youenn fablet"],"href":"https://www.w3.org/TR/2024/WD-mediasession-20240122/","title":"Media Session","rawDate":"2024-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"mediastream-recording":{"authors":["Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/mediastream-recording/","title":"MediaStream Recording","rawDate":"2023-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130205":{"authors":["Travis Leithead"],"href":"https://www.w3.org/TR/2013/WD-mediastream-recording-20130205/","title":"MediaStream Recording","rawDate":"2013-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150127":{"authors":["Travis Leithead","James Barnett"],"href":"https://www.w3.org/TR/2015/WD-mediastream-recording-20150127/","title":"MediaStream Recording","rawDate":"2015-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150908":{"authors":["James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-mediastream-recording-20150908/","title":"MediaStream Recording","rawDate":"2015-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20160421/","title":"MediaStream Recording","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160525":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20160525/","title":"MediaStream Recording","rawDate":"2016-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160620":{"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20160620/","title":"MediaStream Recording","rawDate":"2016-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160803":{"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20160803/","title":"MediaStream Recording","rawDate":"2016-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160831":{"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20160831/","title":"MediaStream Recording","rawDate":"2016-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160914":{"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20160914/","title":"MediaStream Recording","rawDate":"2016-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161031":{"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161031/","title":"MediaStream Recording","rawDate":"2016-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161206/","title":"MediaStream Recording","rawDate":"2016-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161214":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161214/","title":"MediaStream Recording","rawDate":"2016-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161219":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161219/","title":"MediaStream Recording","rawDate":"2016-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161220":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161220/","title":"MediaStream Recording","rawDate":"2016-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161221":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161221/","title":"MediaStream Recording","rawDate":"2016-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161222":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-mediastream-recording-20161222/","title":"MediaStream Recording","rawDate":"2016-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170405":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2017/WD-mediastream-recording-20170405/","title":"MediaStream Recording","rawDate":"2017-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170621":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2017/WD-mediastream-recording-20170621/","title":"MediaStream Recording","rawDate":"2017-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201201":{"authors":["Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2020/WD-mediastream-recording-20201201/","title":"MediaStream Recording","rawDate":"2020-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210208":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-mediastream-recording-20210208/","title":"MediaStream Recording","rawDate":"2021-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-mediastream-recording-20210215/","title":"MediaStream Recording","rawDate":"2021-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210216":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-mediastream-recording-20210216/","title":"MediaStream Recording","rawDate":"2021-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Miguel Casas-sanchez","James Barnett","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-mediastream-recording-20210604/","title":"MediaStream Recording","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2022/WD-mediastream-recording-20220607/","title":"MediaStream Recording","rawDate":"2022-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230414":{"authors":["Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2023/WD-mediastream-recording-20230414/","title":"MediaStream Recording","rawDate":"2023-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230420":{"authors":["Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2023/WD-mediastream-recording-20230420/","title":"MediaStream Recording","rawDate":"2023-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Miguel Casas-sanchez"],"href":"https://www.w3.org/TR/2023/WD-mediastream-recording-20230511/","title":"MediaStream Recording","rawDate":"2023-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/mediacapture-record/","repository":"https://github.com/w3c/mediacapture-record"},"merchant-validation":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/merchant-validation/","title":"The MerchantValidationEvent interface","rawDate":"2020-12-08","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/merchant-validation/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201208":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2020/NOTE-merchant-validation-20201208/","title":"The MerchantValidationEvent interface","rawDate":"2020-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/merchant-validation"},"messaging":{"authors":["Eduardo Fullea","Jose Manuel Cantera Fonseca","Zoltan Kis"],"href":"https://www.w3.org/TR/messaging/","title":"Messaging API","rawDate":"2015-06-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130516":{"authors":["Eduardo Fullea","Jose Manuel Cantera Fonseca","Zoltan Kis"],"href":"https://www.w3.org/TR/2013/WD-messaging-20130516/","title":"Messaging API","rawDate":"2013-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150602":{"authors":["Eduardo Fullea","Jose Manuel Cantera Fonseca","Zoltan Kis"],"href":"https://www.w3.org/TR/2015/NOTE-messaging-20150602/","title":"Messaging API","rawDate":"2015-06-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://www.w3.org/2012/sysapps/messaging/","isRetired":true},"messaging-api":{"authors":["Dominique Hazaël-Massieux","Suresh Chitturi","Max Froumentin","Maria Angeles Oteo","Niklas Widell"],"href":"https://www.w3.org/TR/messaging-api/","title":"The Messaging API","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100810":{"status":"WD","rawDate":"2010-08-10","href":"https://www.w3.org/TR/2010/WD-messaging-api-20100810/","source":"./data/w3c-specs.txt"},"20110120":{"status":"WD","rawDate":"2011-01-20","href":"https://www.w3.org/TR/2011/WD-messaging-api-20110120/","source":"./data/w3c-specs.txt"},"20110414":{"authors":["Dominique Hazaël-Massieux","Suresh Chitturi","Max Froumentin","Maria Angeles Oteo","Niklas Widell"],"href":"https://www.w3.org/TR/2011/WD-messaging-api-20110414/","title":"The Messaging API","rawDate":"2011-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140114":{"authors":["Dominique Hazaël-Massieux","Suresh Chitturi","Max Froumentin","Maria Angeles Oteo","Niklas Widell"],"href":"https://www.w3.org/TR/2014/NOTE-messaging-api-20140114/","title":"The Messaging API","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"microdata":{"authors":["Chaals Nevile","Dan Brickley","Ian Hickson"],"href":"https://www.w3.org/TR/microdata/","title":"HTML Microdata","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"versions":{"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-microdata-20100304/","source":"./data/w3c-specs.txt"},"20100624":{"status":"WD","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/WD-microdata-20100624/","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-microdata-20101019/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-microdata-20110113/","source":"./data/w3c-specs.txt"},"20110405":{"status":"WD","rawDate":"2011-04-05","href":"https://www.w3.org/TR/2011/WD-microdata-20110405/","source":"./data/w3c-specs.txt"},"20110525":{"status":"WD","rawDate":"2011-05-25","href":"https://www.w3.org/TR/2011/WD-microdata-20110525/","source":"./data/w3c-specs.txt"},"20120329":{"status":"WD","rawDate":"2012-03-29","href":"https://www.w3.org/TR/2012/WD-microdata-20120329/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2012/WD-microdata-20121025/","title":"HTML Microdata","rawDate":"2012-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131029":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2013/NOTE-microdata-20131029/","title":"HTML Microdata","rawDate":"2013-10-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Charles McCathie Nevile","Dan Brickley"],"href":"https://www.w3.org/TR/2017/WD-microdata-20170504/","title":"HTML Microdata","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170626":{"authors":["Charles McCathie Nevile","Dan Brickley"],"href":"https://www.w3.org/TR/2017/WD-microdata-20170626/","title":"HTML Microdata","rawDate":"2017-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171009":{"authors":["Charles McCathie Nevile","Dan Brickley"],"href":"https://www.w3.org/TR/2017/WD-microdata-20171009/","title":"HTML Microdata","rawDate":"2017-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171010":{"authors":["Charles McCathie Nevile","Dan Brickley"],"href":"https://www.w3.org/TR/2017/WD-microdata-20171010/","title":"HTML Microdata","rawDate":"2017-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180426":{"authors":["Charles 'chaals' (McCathie) Nevile","Dan Brickley","Ian Hickson"],"href":"https://www.w3.org/TR/2018/WD-microdata-20180426/","title":"HTML Microdata","rawDate":"2018-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Chaals Nevile","Dan Brickley","Ian Hickson"],"href":"https://www.w3.org/TR/2021/NOTE-microdata-20210128/","title":"HTML Microdata","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2021-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/microdata/","repository":"https://github.com/w3c/microdata","isRetired":true},"microdata-rdf":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/microdata-rdf/","title":"Microdata to RDF – Second Edition","status":"NOTE","publisher":"W3C","versions":{"20120112":{"status":"WD","rawDate":"2012-01-12","href":"https://www.w3.org/TR/2012/WD-microdata-rdf-20120112/","source":"./data/w3c-specs.txt"},"20120308":{"status":"NOTE","rawDate":"2012-03-08","href":"https://www.w3.org/TR/2012/NOTE-microdata-rdf-20120308/","source":"./data/w3c-specs.txt"},"20121009":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2012/NOTE-microdata-rdf-20121009/","title":"Microdata to RDF","rawDate":"2012-10-09","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2014/NOTE-microdata-rdf-20141216/","title":"Microdata to RDF – Second Edition","rawDate":"2014-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/interest/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/microdata-rdf/","deliveredBy":["https://www.w3.org/2001/sw/interest/"],"repository":"https://github.com/w3c/microdata-rdf"},"micropub":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/micropub/","title":"Micropub","rawDate":"2017-05-23","status":"REC","publisher":"W3C","edDraft":"https://micropub.net/draft/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160128":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-micropub-20160128/","title":"Micropub","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160301":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-micropub-20160301/","title":"Micropub","rawDate":"2016-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160504":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-micropub-20160504/","title":"Micropub","rawDate":"2016-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160621":{"href":"https://www.w3.org/TR/2016/WD-micropub-20160621/","title":"Micropub","rawDate":"2016-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160713":{"href":"https://www.w3.org/TR/2016/WD-micropub-20160713/","title":"Micropub","rawDate":"2016-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160816":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/CR-micropub-20160816/","title":"Micropub","rawDate":"2016-08-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161018":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/CR-micropub-20161018/","title":"Micropub","rawDate":"2016-10-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2017/PR-micropub-20170413/","title":"Micropub","rawDate":"2017-04-13","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170523":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2017/REC-micropub-20170523/","title":"Micropub","rawDate":"2017-05-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://micropub.net/errata/"}},"hasErrata":"https://micropub.net/errata/","repository":"https://github.com/w3c/micropub"},"mini-app-white-paper":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/mini-app-white-paper/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-07-01","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/miniapp/white-paper/","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190912":{"authors":["Angel Li","Qing An","Dapeng(Max) Liu","Hongru (Judy) Zhu","Qingqian Tao","Zhixing Lei","Zhou Shen","Zhiqiang Yu","Wanming Lin","xiaowei jiang","Fuqiao Xue","Lei Zhao"],"href":"https://www.w3.org/TR/2019/WD-mini-app-white-paper-20190912/","title":"MiniApp Standardization White Paper","rawDate":"2019-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/chinese-web-ig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220510":{"authors":["An Qi (Angel) Li","Qing An","Dan Zhou","Wanming Lin","Kenny Yuan","Chen Yinli","xiaowei jiang","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220510/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220511":{"authors":["An Qi (Angel) Li","Qing An","Dan Zhou","Wanming Lin","Kenny Yuan","Chen Yinli","xiaowei jiang","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220511/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220516":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220516/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-05-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220518":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220518/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-05-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220519/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220528":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220528/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220611":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220611/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-06-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220624/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-06-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220701":{"authors":["Qing An","Dan Zhou","Martin Alvarez-Espinar","Zitao Wang","Wanming Lin","Kenny Yuan","Canfeng Chen","Chen Yinli","An Qi (Angel) Li","Fuqiao Xue"],"href":"https://www.w3.org/TR/2022/DNOTE-mini-app-white-paper-20220701/","title":"MiniApp Standardization White Paper version 2","rawDate":"2022-07-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mini-app-white-paper"},"miniapp-addressing":{"authors":["Dan Zhou","Tengyuan Zhang","shuo wang","Qian Liu"],"href":"https://www.w3.org/TR/miniapp-addressing/","title":"MiniApp Addressing","rawDate":"2024-01-31","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/miniapp-addressing/","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220310":{"authors":["Dan Zhou","Qian Liu","shuo wang","Tengyuan Zhang"],"href":"https://www.w3.org/TR/2022/DNOTE-miniapp-addressing-20220310/","title":"MiniApp Addressing","rawDate":"2022-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220311":{"authors":["Dan Zhou","Qian Liu","shuo wang","Tengyuan Zhang"],"href":"https://www.w3.org/TR/2022/DNOTE-miniapp-addressing-20220311/","title":"MiniApp Addressing","rawDate":"2022-03-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220627":{"authors":["Dan Zhou","Qian Liu","shuo wang","Tengyuan Zhang"],"href":"https://www.w3.org/TR/2022/DNOTE-miniapp-addressing-20220627/","title":"MiniApp Addressing","rawDate":"2022-06-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240131":{"authors":["Dan Zhou","Tengyuan Zhang","shuo wang","Qian Liu"],"href":"https://www.w3.org/TR/2024/WD-miniapp-addressing-20240131/","title":"MiniApp Addressing","rawDate":"2024-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/miniapp-addressing"},"miniapp-lifecycle":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/miniapp-lifecycle/","title":"MiniApp Lifecycle","rawDate":"2023-05-29","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/miniapp-lifecycle/","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210615":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2021/WD-miniapp-lifecycle-20210615/","title":"MiniApp Lifecycle","rawDate":"2021-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2021/WD-miniapp-lifecycle-20210616/","title":"MiniApp Lifecycle","rawDate":"2021-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210925":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2021/WD-miniapp-lifecycle-20210925/","title":"MiniApp Lifecycle","rawDate":"2021-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2021/WD-miniapp-lifecycle-20211029/","title":"MiniApp Lifecycle","rawDate":"2021-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211126":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2021/WD-miniapp-lifecycle-20211126/","title":"MiniApp Lifecycle","rawDate":"2021-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220223/","title":"MiniApp Lifecycle","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220224/","title":"MiniApp Lifecycle","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220324/","title":"MiniApp Lifecycle","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220528":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220528/","title":"MiniApp Lifecycle","rawDate":"2022-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220719":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220719/","title":"MiniApp Lifecycle","rawDate":"2022-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220809/","title":"MiniApp Lifecycle","rawDate":"2022-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220818/","title":"MiniApp Lifecycle","rawDate":"2022-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20220927/","title":"MiniApp Lifecycle","rawDate":"2022-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221108":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20221108/","title":"MiniApp Lifecycle","rawDate":"2022-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221124":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2022/WD-miniapp-lifecycle-20221124/","title":"MiniApp Lifecycle","rawDate":"2022-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230529":{"authors":["Qing An","Haoyang Xu"],"href":"https://www.w3.org/TR/2023/WD-miniapp-lifecycle-20230529/","title":"MiniApp Lifecycle","rawDate":"2023-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/miniapp-lifecycle"},"miniapp-manifest":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/miniapp-manifest/","title":"MiniApp Manifest","rawDate":"2023-05-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/miniapp-manifest/","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210511":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210511/","title":"MiniApp Manifest","rawDate":"2021-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210603/","title":"MiniApp Manifest","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210606":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210606/","title":"MiniApp Manifest","rawDate":"2021-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210624/","title":"MiniApp Manifest","rawDate":"2021-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210628":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210628/","title":"MiniApp Manifest","rawDate":"2021-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210826/","title":"MiniApp Manifest","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210925":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20210925/","title":"MiniApp Manifest","rawDate":"2021-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211003":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG","Shouren Lan","Zhiqiang Yu","Xiaofeng Zhang"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20211003/","title":"MiniApp Manifest","rawDate":"2021-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211221":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2021/WD-miniapp-manifest-20211221/","title":"MiniApp Manifest","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20220120/","title":"MiniApp Manifest","rawDate":"2022-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220128":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20220128/","title":"MiniApp Manifest","rawDate":"2022-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20220324/","title":"MiniApp Manifest","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220428":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20220428/","title":"MiniApp Manifest","rawDate":"2022-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20220517/","title":"MiniApp Manifest","rawDate":"2022-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220701":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20220701/","title":"MiniApp Manifest","rawDate":"2022-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20221027/","title":"MiniApp Manifest","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221125":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2022/WD-miniapp-manifest-20221125/","title":"MiniApp Manifest","rawDate":"2022-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230220":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2023/WD-miniapp-manifest-20230220/","title":"MiniApp Manifest","rawDate":"2023-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230228":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2023/WD-miniapp-manifest-20230228/","title":"MiniApp Manifest","rawDate":"2023-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Martin Alvarez-Espinar","Yongjing ZHANG"],"href":"https://www.w3.org/TR/2023/WD-miniapp-manifest-20230530/","title":"MiniApp Manifest","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/miniapp-manifest"},"miniapp-packaging":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/miniapp-packaging/","title":"MiniApp Packaging","rawDate":"2023-10-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/miniapp-packaging/","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211130":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2021/WD-miniapp-packaging-20211130/","title":"MiniApp Packaging","rawDate":"2021-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20220120/","title":"MiniApp Packaging","rawDate":"2022-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20220224/","title":"MiniApp Packaging","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20220225/","title":"MiniApp Packaging","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20220324/","title":"MiniApp Packaging","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220428":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20220428/","title":"MiniApp Packaging","rawDate":"2022-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220729":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20220729/","title":"MiniApp Packaging","rawDate":"2022-07-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2022/WD-miniapp-packaging-20221027/","title":"MiniApp Packaging","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230220":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2023/WD-miniapp-packaging-20230220/","title":"MiniApp Packaging","rawDate":"2023-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2023/WD-miniapp-packaging-20230530/","title":"MiniApp Packaging","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231023":{"authors":["Martin Alvarez-Espinar","Qing An","Tengyuan Zhang","Yongjing ZHANG","Dan Zhou"],"href":"https://www.w3.org/TR/2023/WD-miniapp-packaging-20231023/","title":"MiniApp Packaging","rawDate":"2023-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/miniapp-packaging"},"miniapp-widget-req":{"authors":["Chen Yinli","Canfeng Chen","Bingqing Zhou","Bin Guo"],"href":"https://www.w3.org/TR/miniapp-widget-req/","title":"MiniApp Widget Requirements","rawDate":"2022-04-24","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/miniapp-widget/req/","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220308":{"authors":["Chen Yinli","Canfeng Chen","Bingqing Zhou","Bin Guo"],"href":"https://www.w3.org/TR/2022/NOTE-miniapp-widget-req-20220308/","title":"MiniApp Widget Requirements","rawDate":"2022-03-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220424":{"authors":["Chen Yinli","Canfeng Chen","Bingqing Zhou","Bin Guo"],"href":"https://www.w3.org/TR/2022/NOTE-miniapp-widget-req-20220424/","title":"MiniApp Widget Requirements","rawDate":"2022-04-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/miniapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/miniapp-widget"},"mixed-content":{"href":"https://www.w3.org/TR/mixed-content/","title":"Mixed Content","rawDate":"2023-02-23","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-mixed-content/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140722":{"href":"https://www.w3.org/TR/2014/WD-mixed-content-20140722/","title":"Mixed Content","rawDate":"2014-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140916":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2014/WD-mixed-content-20140916/","title":"Mixed Content","rawDate":"2014-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141113":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2014/WD-mixed-content-20141113/","title":"Mixed Content","rawDate":"2014-11-13","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/CR-mixed-content-20150317/","title":"Mixed Content","rawDate":"2015-03-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151008":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/CR-mixed-content-20151008/","title":"Mixed Content","rawDate":"2015-10-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160802":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/CR-mixed-content-20160802/","title":"Mixed Content","rawDate":"2016-08-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210916":{"authors":["Emily Stark","Mike West","Carlos IbarraLopez"],"href":"https://www.w3.org/TR/2021/CRD-mixed-content-20210916/","title":"Mixed Content Level 2","rawDate":"2021-09-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210918":{"authors":["Emily Stark","Mike West","Carlos IbarraLopez"],"href":"https://www.w3.org/TR/2021/CRD-mixed-content-20210918/","title":"Mixed Content Level 2","rawDate":"2021-09-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Emily Stark","Mike West","Carlos IbarraLopez"],"href":"https://www.w3.org/TR/2021/CRD-mixed-content-20210930/","title":"Mixed Content Level 2","rawDate":"2021-09-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211004":{"authors":["Emily Stark","Mike West","Carlos IbarraLopez"],"href":"https://www.w3.org/TR/2021/CRD-mixed-content-20211004/","title":"Mixed Content","rawDate":"2021-10-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230223":{"authors":["Emily Stark","Mike West","Carlos IbarraLopez"],"href":"https://www.w3.org/TR/2023/CRD-mixed-content-20230223/","title":"Mixed Content","rawDate":"2023-02-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"authors":["Emily Stark","Mike West","Carlos IbarraLopez"],"repository":"https://github.com/w3c/webappsec-mixed-content"},"mlreq":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/mlreq/","title":"Mongolian Layout Requirements","rawDate":"2023-11-24","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/mlreq/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-mlreq-20200616/","title":"Mongolian Layout Requirements","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231124":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-mlreq-20231124/","title":"Mongolian Layout Requirements","rawDate":"2023-11-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mlreq"},"mlw-metadata-us-impl":{"authors":["Christian Lieske"],"href":"https://www.w3.org/TR/mlw-metadata-us-impl/","title":"Metadata for the Multilingual Web - Usage Scenarios and Implementations","rawDate":"2017-03-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130307":{"authors":["Christian Lieske"],"href":"https://www.w3.org/TR/2013/WD-mlw-metadata-us-impl-20130307/","title":"Metadata for the Multilingual Web - Usage Scenarios and Implementations","rawDate":"2013-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/multilingualweb/lt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170302":{"authors":["Christian Lieske"],"href":"https://www.w3.org/TR/2017/NOTE-mlw-metadata-us-impl-20170302/","title":"Metadata for the Multilingual Web - Usage Scenarios and Implementations","rawDate":"2017-03-02","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"edDraft":"https://w3c.github.io/mlw-metadata-us-impl/","repository":"https://github.com/w3c/mlw-metadata-us-impl"},"mmi-arch":{"authors":["Jim Barnett"],"href":"https://www.w3.org/TR/mmi-arch/","title":"Multimodal Architecture and Interfaces","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"hasErrata":"https://www.w3.org/2012/10/mmi-arch-errata.html","versions":{"20050422":{"status":"WD","rawDate":"2005-04-22","href":"https://www.w3.org/TR/2005/WD-mmi-arch-20050422/","source":"./data/w3c-specs.txt"},"20060414":{"status":"WD","rawDate":"2006-04-14","href":"https://www.w3.org/TR/2006/WD-mmi-arch-20060414/","source":"./data/w3c-specs.txt"},"20061211":{"status":"WD","rawDate":"2006-12-11","href":"https://www.w3.org/TR/2006/WD-mmi-arch-20061211/","source":"./data/w3c-specs.txt"},"20080414":{"status":"WD","rawDate":"2008-04-14","href":"https://www.w3.org/TR/2008/WD-mmi-arch-20080414/","source":"./data/w3c-specs.txt"},"20081016":{"status":"WD","rawDate":"2008-10-16","href":"https://www.w3.org/TR/2008/WD-mmi-arch-20081016/","source":"./data/w3c-specs.txt"},"20091201":{"status":"WD","rawDate":"2009-12-01","href":"https://www.w3.org/TR/2009/WD-mmi-arch-20091201/","source":"./data/w3c-specs.txt"},"20100921":{"status":"WD","rawDate":"2010-09-21","href":"https://www.w3.org/TR/2010/WD-mmi-arch-20100921/","source":"./data/w3c-specs.txt"},"20110125":{"status":"WD","rawDate":"2011-01-25","href":"https://www.w3.org/TR/2011/WD-mmi-arch-20110125/","source":"./data/w3c-specs.txt"},"20110906":{"status":"WD","rawDate":"2011-09-06","href":"https://www.w3.org/TR/2011/WD-mmi-arch-20110906/","source":"./data/w3c-specs.txt"},"20120112":{"status":"CR","rawDate":"2012-01-12","href":"https://www.w3.org/TR/2012/CR-mmi-arch-20120112/","source":"./data/w3c-specs.txt"},"20120814":{"status":"PR","rawDate":"2012-08-14","href":"https://www.w3.org/TR/2012/PR-mmi-arch-20120814/","source":"./data/w3c-specs.txt"},"20121025":{"authors":["Jim Barnett"],"href":"https://www.w3.org/TR/2012/REC-mmi-arch-20121025/","title":"Multimodal Architecture and Interfaces","rawDate":"2012-10-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"hasErrata":"https://www.w3.org/2012/10/mmi-arch-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-10-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mmi-auth":{"authors":["Ingmar Kliche"],"href":"https://www.w3.org/TR/mmi-auth/","title":"Authoring Applications for the Multimodal Architecture","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20080702":{"authors":["Ingmar Kliche"],"href":"https://www.w3.org/TR/2008/NOTE-mmi-auth-20080702/","title":"Authoring Applications for the Multimodal Architecture","rawDate":"2008-07-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-07-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mmi-dev-feedback":{"authors":["Gerald McCobb","Klaus Reifenrath","Raj Tumuluri","Sunil Kumar"],"etAl":true,"href":"https://www.w3.org/TR/mmi-dev-feedback/","title":"Multimodal Application Developer Feedback","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20060414":{"authors":["Gerald McCobb","Klaus Reifenrath","Raj Tumuluri","Sunil Kumar"],"href":"https://www.w3.org/TR/2006/NOTE-mmi-dev-feedback-20060414/","title":"Multimodal Application Developer Feedback","rawDate":"2006-04-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-04-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mmi-discovery":{"authors":["B Helena RODRIGUEZ"],"href":"https://www.w3.org/TR/mmi-discovery/","title":"Registration & Discovery of Multimodal Modality Components in Multimodal Systems: Use Cases and Requirements","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120705":{"authors":["B Helena RODRIGUEZ"],"href":"https://www.w3.org/TR/2012/NOTE-mmi-discovery-20120705/","title":"Registration & Discovery of Multimodal Modality Components in Multimodal Systems: Use Cases and Requirements","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"mmi-framework":{"authors":["T.V. Raman","Dave Raggett"],"href":"https://www.w3.org/TR/mmi-framework/","title":"W3C Multimodal Interaction Framework","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20021202":{"status":"NOTE","rawDate":"2002-12-02","href":"https://www.w3.org/TR/2002/NOTE-mmi-framework-20021202/","source":"./data/w3c-specs.txt"},"20030506":{"authors":["T.V. Raman","Dave Raggett"],"href":"https://www.w3.org/TR/2003/NOTE-mmi-framework-20030506/","title":"W3C Multimodal Interaction Framework","rawDate":"2003-05-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-05-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mmi-interop":{"authors":["Ingmar Kliche"],"href":"https://www.w3.org/TR/mmi-interop/","title":"MMI interoperability test report","rawDate":"2012-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120124":{"authors":["Ingmar Kliche"],"href":"https://www.w3.org/TR/2012/NOTE-mmi-interop-20120124/","title":"MMI interoperability test report","rawDate":"2012-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"mmi-mc-discovery":{"authors":["B Helena RODRIGUEZ","James Barnett","Deborah Dahl","Raj Tumuluri","Nagesh Kharidi","Kazuyuki Ashimura"],"href":"https://www.w3.org/TR/mmi-mc-discovery/","title":"Discovery & Registration of Multimodal Modality Components","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150611":{"authors":["B Helena RODRIGUEZ"],"href":"https://www.w3.org/TR/2015/WD-mmi-mc-discovery-20150611/","title":"Discovery & Registration of Multimodal Modality Components: State Handling","rawDate":"2015-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160411":{"authors":["B Helena RODRIGUEZ","James Barnett","Deborah Dahl","Raj Tumuluri","Nagesh Kharidi","Kazuyuki Ashimura"],"href":"https://www.w3.org/TR/2016/WD-mmi-mc-discovery-20160411/","title":"Discovery & Registration of Multimodal Modality Components: State Handling","rawDate":"2016-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["B Helena RODRIGUEZ","James Barnett","Deborah Dahl","Raj Tumuluri","Nagesh Kharidi","Kazuyuki Ashimura"],"href":"https://www.w3.org/TR/2017/NOTE-mmi-mc-discovery-20170202/","title":"Discovery & Registration of Multimodal Modality Components","rawDate":"2017-02-02","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"mmi-mcbp":{"authors":["Ingmar Kliche"],"href":"https://www.w3.org/TR/mmi-mcbp/","title":"Best practices for creating MMI Modality Components","rawDate":"2011-03-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110301":{"authors":["Ingmar Kliche"],"href":"https://www.w3.org/TR/2011/NOTE-mmi-mcbp-20110301/","title":"Best practices for creating MMI Modality Components","rawDate":"2011-03-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"mmi-reqs":{"authors":["Stéphane Maes","Vijay Saraswat"],"href":"https://www.w3.org/TR/mmi-reqs/","title":"Multimodal Interaction Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20030108":{"authors":["Stéphane Maes","Vijay Saraswat"],"href":"https://www.w3.org/TR/2003/NOTE-mmi-reqs-20030108/","title":"Multimodal Interaction Requirements","rawDate":"2003-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-01-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mmi-suggestions":{"authors":["Jim Larson"],"href":"https://www.w3.org/TR/mmi-suggestions/","title":"Common Sense Suggestions for Developing Multimodal User Interfaces","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20060911":{"authors":["Jim Larson"],"href":"https://www.w3.org/TR/2006/NOTE-mmi-suggestions-20060911/","title":"Common Sense Suggestions for Developing Multimodal User Interfaces","rawDate":"2006-09-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-09-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mmi-use-cases":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/mmi-use-cases/","title":"Multimodal Interaction Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20021204":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/2002/NOTE-mmi-use-cases-20021204/","title":"Multimodal Interaction Use Cases","rawDate":"2002-12-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-12-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mobile-accessibility-mapping":{"authors":["Kimberly Patch","Jeanne F Spellman","Kathleen Wahlbin"],"href":"https://www.w3.org/TR/mobile-accessibility-mapping/","title":"Mobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to Mobile","rawDate":"2015-02-26","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/Mobile-A11y-TF-Note/","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150226":{"authors":["Kimberly Patch","Jeanne F Spellman","Kathleen Wahlbin"],"href":"https://www.w3.org/TR/2015/WD-mobile-accessibility-mapping-20150226/","title":"Mobile Accessibility: How WCAG 2.0 and Other W3C/WAI Guidelines Apply to Mobile","rawDate":"2015-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/","https://www.w3.org/WAI/UA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/Mobile-A11y-TF-Note"},"mobile-bp":{"authors":["Jo Rabin","Charles McCathieNevile"],"href":"https://www.w3.org/TR/mobile-bp/","title":"Mobile Web Best Practices 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"hasErrata":"https://www.w3.org/2008/07/mwbp-errata.html","versions":{"20051017":{"status":"WD","rawDate":"2005-10-17","href":"https://www.w3.org/TR/2005/WD-mobile-bp-20051017/","source":"./data/w3c-specs.txt"},"20051220":{"status":"WD","rawDate":"2005-12-20","href":"https://www.w3.org/TR/2005/WD-mobile-bp-20051220/","source":"./data/w3c-specs.txt"},"20060113":{"status":"WD","rawDate":"2006-01-13","href":"https://www.w3.org/TR/2006/WD-mobile-bp-20060113/","source":"./data/w3c-specs.txt"},"20060412":{"status":"WD","rawDate":"2006-04-12","href":"https://www.w3.org/TR/2006/WD-mobile-bp-20060412/","source":"./data/w3c-specs.txt"},"20060518":{"status":"WD","rawDate":"2006-05-18","href":"https://www.w3.org/TR/2006/WD-mobile-bp-20060518/","source":"./data/w3c-specs.txt"},"20060627":{"status":"CR","rawDate":"2006-06-27","href":"https://www.w3.org/TR/2006/CR-mobile-bp-20060627/","source":"./data/w3c-specs.txt"},"20061102":{"status":"PR","rawDate":"2006-11-02","href":"https://www.w3.org/TR/2006/PR-mobile-bp-20061102/","source":"./data/w3c-specs.txt"},"20080729":{"authors":["Jo Rabin","Charles McCathieNevile"],"href":"https://www.w3.org/TR/2008/REC-mobile-bp-20080729/","title":"Mobile Web Best Practices 1.0","rawDate":"2008-07-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"hasErrata":"https://www.w3.org/2008/07/mwbp-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-07-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mobile-bp-scope":{"authors":["Phil Archer","Edward Mitukiewicz"],"href":"https://www.w3.org/TR/mobile-bp-scope/","title":"Scope of Mobile Web Best Practices","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"versions":{"20050901":{"status":"WD","rawDate":"2005-09-01","href":"https://www.w3.org/TR/2005/WD-mobile-bp-scope-20050901/","source":"./data/w3c-specs.txt"},"20051103":{"status":"WD","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/WD-mobile-bp-scope-20051103/","source":"./data/w3c-specs.txt"},"20051220":{"authors":["Phil Archer","Edward Mitukiewicz"],"href":"https://www.w3.org/TR/2005/NOTE-mobile-bp-scope-20051220/","title":"Scope of Mobile Web Best Practices","rawDate":"2005-12-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-12-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mobileOK":{"authors":["Jo Rabin","Phil Archer"],"href":"https://www.w3.org/TR/mobileOK/","title":"W3C mobileOK Scheme 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"versions":{"20060712":{"status":"WD","rawDate":"2006-07-12","href":"https://www.w3.org/TR/2006/WD-mobileOK-20060712/","source":"./data/w3c-specs.txt"},"20070504":{"status":"WD","rawDate":"2007-05-04","href":"https://www.w3.org/TR/2007/WD-mobileOK-20070504/","source":"./data/w3c-specs.txt"},"20081117":{"status":"WD","rawDate":"2008-11-17","href":"https://www.w3.org/TR/2008/WD-mobileOK-20081117/","source":"./data/w3c-specs.txt"},"20090625":{"status":"NOTE","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/NOTE-mobileOK-20090625/","source":"./data/w3c-specs.txt"},"20090825":{"authors":["Jo Rabin","Phil Archer"],"href":"https://www.w3.org/TR/2009/NOTE-mobileOK-20090825/","title":"W3C mobileOK Scheme 1.0","rawDate":"2009-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-08-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mobileOK-basic10-tests":{"authors":["Sean Owen","Jo Rabin"],"href":"https://www.w3.org/TR/mobileOK-basic10-tests/","title":"W3C mobileOK Basic Tests 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"hasErrata":"https://www.w3.org/2008/12/mobileok-errata.html","versions":{"20061113":{"status":"WD","rawDate":"2006-11-13","href":"https://www.w3.org/TR/2006/WD-mobileOK-basic10-tests-20061113/","source":"./data/w3c-specs.txt"},"20061219":{"status":"WD","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/WD-mobileOK-basic10-tests-20061219/","source":"./data/w3c-specs.txt"},"20070130":{"status":"WD","rawDate":"2007-01-30","href":"https://www.w3.org/TR/2007/WD-mobileOK-basic10-tests-20070130/","source":"./data/w3c-specs.txt"},"20070525":{"status":"WD","rawDate":"2007-05-25","href":"https://www.w3.org/TR/2007/WD-mobileOK-basic10-tests-20070525/","source":"./data/w3c-specs.txt"},"20070928":{"status":"WD","rawDate":"2007-09-28","href":"https://www.w3.org/TR/2007/WD-mobileOK-basic10-tests-20070928/","source":"./data/w3c-specs.txt"},"20071113":{"status":"CR","rawDate":"2007-11-13","href":"https://www.w3.org/TR/2007/CR-mobileOK-basic10-tests-20071113/","source":"./data/w3c-specs.txt"},"20071130":{"status":"CR","rawDate":"2007-11-30","href":"https://www.w3.org/TR/2007/CR-mobileOK-basic10-tests-20071130/","source":"./data/w3c-specs.txt"},"20080610":{"status":"WD","rawDate":"2008-06-10","href":"https://www.w3.org/TR/2008/WD-mobileOK-basic10-tests-20080610/","source":"./data/w3c-specs.txt"},"20081103":{"status":"PR","rawDate":"2008-11-03","href":"https://www.w3.org/TR/2008/PR-mobileOK-basic10-tests-20081103/","source":"./data/w3c-specs.txt"},"20081208":{"authors":["Sean Owen","Jo Rabin"],"href":"https://www.w3.org/TR/2008/REC-mobileOK-basic10-tests-20081208/","title":"W3C mobileOK Basic Tests 1.0","rawDate":"2008-12-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"hasErrata":"https://www.w3.org/2008/12/mobileok-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-12-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"modality-interface":{"authors":["Brandon Porter"],"href":"https://www.w3.org/TR/modality-interface/","title":"Modality Component to Host Environment DOM Requirements and Capabilities Assessment","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"versions":{"20040510":{"authors":["Brandon Porter"],"href":"https://www.w3.org/TR/2004/NOTE-modality-interface-20040510/","title":"Modality Component to Host Environment DOM Requirements and Capabilities Assessment","rawDate":"2004-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/mmi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-05-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mong-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/mong-gap/","title":"Mongolian Gap Analysis","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/mlreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-mong-gap-20200616/","title":"Mongolian Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210127":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-mong-gap-20210127/","title":"Mongolian Gap Analysis","rawDate":"2021-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-mong-gap-20210525/","title":"Mongolian Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-mong-gap-20211117/","title":"Mongolian Gap Analysis","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-mong-gap-20220125/","title":"Mongolian Gap Analysis","rawDate":"2022-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-mong-gap-20230614/","title":"Mongolian Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-mong-gap-20230720/","title":"Mongolian Gap Analysis","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mlreq"},"motion-1":{"authors":["Dirk Schulze","Shane Stephens","Jihye Hong","Eric Willigers"],"href":"https://www.w3.org/TR/motion-1/","title":"Motion Path Module Level 1","rawDate":"2018-12-18","status":"WD","publisher":"W3C","edDraft":"https://drafts.fxtf.org/motion-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150409":{"authors":["Dirk Schulze","Shane Stephens"],"href":"https://www.w3.org/TR/2015/WD-motion-1-20150409/","title":"Motion Path Module Level 1","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170711":{"authors":["Dirk Schulze","Shane Stephens","Jihye Hong"],"href":"https://www.w3.org/TR/2017/WD-motion-1-20170711/","title":"Motion Path Module Level 1","rawDate":"2017-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Dirk Schulze","Shane Stephens","Jihye Hong","Eric Willigers"],"href":"https://www.w3.org/TR/2018/WD-motion-1-20181218/","title":"Motion Path Module Level 1","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/fxtf-drafts"},"motion-sensors":{"authors":["Kenneth Christiansen","Alexander Shalamov"],"href":"https://www.w3.org/TR/motion-sensors/","title":"Motion Sensors Explainer","rawDate":"2017-08-30","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/motion-sensors/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170511":{"authors":["Kenneth Christiansen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/NOTE-motion-sensors-20170511/","title":"Motion Sensors Explainer","rawDate":"2017-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170825":{"authors":["Kenneth Christiansen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/NOTE-motion-sensors-20170825/","title":"Motion Sensors Explainer","rawDate":"2017-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170830":{"authors":["Kenneth Christiansen","Alexander Shalamov"],"href":"https://www.w3.org/TR/2017/NOTE-motion-sensors-20170830/","title":"Motion Sensors Explainer","rawDate":"2017-08-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/motion-sensors"},"mptp":{"versions":{"19951122":{"status":"WD","rawDate":"1995-11-22","href":"https://www.w3.org/TR/WD-mptp-951122","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WD-mptp","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"1995-11-22","title":"Micro Payment Transfer Protocol (MPTP) Version 1.0"},"mse-byte-stream-format-isobmff":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/mse-byte-stream-format-isobmff/","title":"ISO BMFF Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/isobmff-byte-stream-format.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161004":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-isobmff-20161004/","title":"ISO BMFF Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"mse-byte-stream-format-mp2t":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/mse-byte-stream-format-mp2t/","title":"MPEG-2 TS Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/mp2t-byte-stream-format.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161004":{"authors":["Matthew Wolenetz","Jerry Smith","Mark Watson","Aaron Colwell","Adrian Bateman"],"href":"https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-mp2t-20161004/","title":"MPEG-2 TS Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"mse-byte-stream-format-mpeg-audio":{"authors":["Matthew Wolenetz","Aaron Colwell"],"href":"https://www.w3.org/TR/mse-byte-stream-format-mpeg-audio/","title":"MPEG Audio Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/mpeg-audio-byte-stream-format.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161004":{"authors":["Matthew Wolenetz","Aaron Colwell"],"href":"https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-mpeg-audio-20161004/","title":"MPEG Audio Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"mse-byte-stream-format-registry":{"authors":["Matthew Wolenetz","Jerry Smith","Aaron Colwell"],"href":"https://www.w3.org/TR/mse-byte-stream-format-registry/","title":"Media Source Extensions Byte Stream Format Registry","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/byte-stream-format-registry.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161004":{"authors":["Matthew Wolenetz","Jerry Smith","Aaron Colwell"],"href":"https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-registry-20161004/","title":"Media Source Extensions Byte Stream Format Registry","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"mse-byte-stream-format-webm":{"authors":["Matthew Wolenetz","Jerry Smith","Aaron Colwell"],"href":"https://www.w3.org/TR/mse-byte-stream-format-webm/","title":"WebM Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/media-source/webm-byte-stream-format.html","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161004":{"authors":["Matthew Wolenetz","Jerry Smith","Aaron Colwell"],"href":"https://www.w3.org/TR/2016/NOTE-mse-byte-stream-format-webm-20161004/","title":"WebM Byte Stream Format","rawDate":"2016-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/media-source"},"mst-content-hint":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/mst-content-hint/","title":"MediaStreamTrack Content Hints","rawDate":"2021-07-22","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mst-content-hint/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180703":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2018/WD-mst-content-hint-20180703/","title":"MediaStreamTrack Content Hints","rawDate":"2018-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200214":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2020/WD-mst-content-hint-20200214/","title":"MediaStreamTrack Content Hints","rawDate":"2020-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200728":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2020/WD-mst-content-hint-20200728/","title":"MediaStreamTrack Content Hints","rawDate":"2020-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201202":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2020/WD-mst-content-hint-20201202/","title":"MediaStreamTrack Content Hints","rawDate":"2020-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2021/WD-mst-content-hint-20210119/","title":"MediaStreamTrack Content Hints","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210701":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2021/WD-mst-content-hint-20210701/","title":"MediaStreamTrack Content Hints","rawDate":"2021-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210722":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2021/WD-mst-content-hint-20210722/","title":"MediaStreamTrack Content Hints","rawDate":"2021-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mst-content-hint"},"multimodal-reqs":{"authors":["Marianne Hickey"],"href":"https://www.w3.org/TR/multimodal-reqs/","title":"Multimodal Requirements for Voice Markup Languages","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20000710":{"authors":["Marianne Hickey"],"href":"https://www.w3.org/TR/2000/WD-multimodal-reqs-20000710","title":"Multimodal Requirements for Voice Markup Languages","rawDate":"2000-07-10","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-07-10","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mux":{"authors":["Jim Gettys","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/WD-mux","title":"SMUX Protocol Specification","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19980710":{"authors":["Jim Gettys","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/1998/WD-mux-19980710","title":"SMUX Protocol Specification","rawDate":"1998-07-10","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"mw4d-roadmap":{"authors":["Stéphane Boyera"],"href":"https://www.w3.org/TR/mw4d-roadmap/","title":"Mobile Web for Social Development Roadmap","rawDate":"2009-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/MW4D/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091117":{"status":"NOTE","rawDate":"2009-11-17","href":"https://www.w3.org/TR/2009/NOTE-mw4d-roadmap-20091117/","source":"./data/w3c-specs.txt"},"20091208":{"authors":["Stéphane Boyera"],"href":"https://www.w3.org/TR/2009/NOTE-mw4d-roadmap-20091208/","title":"Mobile Web for Social Development Roadmap","rawDate":"2009-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/MW4D/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"mwabp":{"authors":["Adam Connors","Bryan Sullivan"],"href":"https://www.w3.org/TR/mwabp/","title":"Mobile Web Application Best Practices","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"hasErrata":"https://www.w3.org/2010/12/mwabp-errata.html","versions":{"20080729":{"status":"WD","rawDate":"2008-07-29","href":"https://www.w3.org/TR/2008/WD-mwabp-20080729/","source":"./data/w3c-specs.txt"},"20081222":{"status":"WD","rawDate":"2008-12-22","href":"https://www.w3.org/TR/2008/WD-mwabp-20081222/","source":"./data/w3c-specs.txt"},"20090507":{"status":"WD","rawDate":"2009-05-07","href":"https://www.w3.org/TR/2009/WD-mwabp-20090507/","source":"./data/w3c-specs.txt"},"20091006":{"status":"WD","rawDate":"2009-10-06","href":"https://www.w3.org/TR/2009/WD-mwabp-20091006/","source":"./data/w3c-specs.txt"},"20100211":{"status":"CR","rawDate":"2010-02-11","href":"https://www.w3.org/TR/2010/CR-mwabp-20100211/","source":"./data/w3c-specs.txt"},"20100713":{"status":"WD","rawDate":"2010-07-13","href":"https://www.w3.org/TR/2010/WD-mwabp-20100713/","source":"./data/w3c-specs.txt"},"20101021":{"status":"PR","rawDate":"2010-10-21","href":"https://www.w3.org/TR/2010/PR-mwabp-20101021/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Adam Connors","Bryan Sullivan"],"href":"https://www.w3.org/TR/2010/REC-mwabp-20101214/","title":"Mobile Web Application Best Practices","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"hasErrata":"https://www.w3.org/2010/12/mwabp-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"mwbp-guidelines":{"authors":["Kai Scheppe"],"href":"https://www.w3.org/TR/mwbp-guidelines/","title":"Extended Guidelines for Mobile Web Best Practices 1.0","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091020":{"authors":["Kai Scheppe"],"href":"https://www.w3.org/TR/2009/NOTE-mwbp-guidelines-20091020/","title":"Extended Guidelines for Mobile Web Best Practices 1.0","rawDate":"2009-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"mwbp-wcag":{"authors":["Alan Chuter","Yeliz Yesilada"],"href":"https://www.w3.org/TR/mwbp-wcag/","title":"Relationship between Mobile Web Best Practices (MWBP) and Web Content Accessibility Guidelines (WCAG)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/about/groups/eowg/","https://www.w3.org/2005/MWI/BPWG/"],"versions":{"20080122":{"status":"WD","rawDate":"2008-01-22","href":"https://www.w3.org/TR/2008/WD-mwbp-wcag-20080122/","source":"./data/w3c-specs.txt"},"20080703":{"status":"WD","rawDate":"2008-07-03","href":"https://www.w3.org/TR/2008/WD-mwbp-wcag-20080703/","source":"./data/w3c-specs.txt"},"20090526":{"status":"WD","rawDate":"2009-05-26","href":"https://www.w3.org/TR/2009/WD-mwbp-wcag-20090526/","source":"./data/w3c-specs.txt"},"20090709":{"authors":["Alan Chuter","Yeliz Yesilada"],"href":"https://www.w3.org/TR/2009/NOTE-mwbp-wcag-20090709/","title":"Relationship between Mobile Web Best Practices (MWBP) and Web Content Accessibility Guidelines (WCAG)","rawDate":"2009-07-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/about/groups/eowg/","https://www.w3.org/2005/MWI/BPWG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-07-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"n-quads":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/n-quads/","title":"RDF 1.1 N-Quads","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130409":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/NOTE-n-quads-20130409/","title":"N-Quads","rawDate":"2013-04-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130905":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/WD-n-quads-20130905/","title":"N-Quads","rawDate":"2013-09-05","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/CR-n-quads-20131105/","title":"RDF 1.1 N-Quads","rawDate":"2013-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2014/PR-n-quads-20140109/","title":"RDF 1.1 N-Quads","rawDate":"2014-01-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2014/REC-n-quads-20140225/","title":"RDF 1.1 N-Quads","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/rdf-n-quads/spec/","repository":"https://github.com/w3c/rdf-n-quads"},"n-triples":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/n-triples/","title":"RDF 1.1 N-Triples","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130409":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/NOTE-n-triples-20130409/","title":"N-Triples","rawDate":"2013-04-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130905":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/WD-n-triples-20130905/","title":"N-Triples","rawDate":"2013-09-05","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/CR-n-triples-20131105/","title":"RDF 1.1 N-Triples","rawDate":"2013-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/2014/PR-n-triples-20140109/","title":"RDF 1.1 N-Triples","rawDate":"2014-01-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/2014/REC-n-triples-20140225/","title":"RDF 1.1 N-Triples","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/rdf-n-triples/spec/","repository":"https://github.com/w3c/rdf-n-triples"},"namespaceState":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/namespaceState/","title":"The Disposition of Names in an XML Namespace","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"versions":{"20060329":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/2006/WD-namespaceState-20060329/","title":"The Disposition of Names in an XML Namespace","rawDate":"2006-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-03-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"naur":{"authors":["Jason White","Joshue O'Connor"],"href":"https://www.w3.org/TR/naur/","title":"Natural Language Interface Accessibility User Requirements","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/naur/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211012":{"authors":["Jason White","Joshue O'Connor","Scott Hollier","Janina Sajka"],"href":"https://www.w3.org/TR/2021/WD-naur-20211012/","title":"Natural Language Interface Accessibility User Requirements","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220513":{"authors":["Jason White","Joshue O'Connor"],"href":"https://www.w3.org/TR/2022/DNOTE-naur-20220513/","title":"Natural Language Interface Accessibility User Requirements","rawDate":"2022-05-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220722":{"authors":["Jason White","Joshue O'Connor"],"href":"https://www.w3.org/TR/2022/DNOTE-naur-20220722/","title":"Natural Language Interface Accessibility User Requirements","rawDate":"2022-07-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Jason White","Joshue O'Connor"],"href":"https://www.w3.org/TR/2022/DNOTE-naur-20220903/","title":"Natural Language Interface Accessibility User Requirements","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/apa"},"navigation-error-logging":{"aliasOf":"network-error-logging"},"navigation-timing":{"authors":["Zhiheng Wang"],"href":"https://www.w3.org/TR/navigation-timing/","title":"Navigation Timing","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"hasErrata":"https://www.w3.org/2012/12/navigation-timing-errata.html","versions":{"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-navigation-timing-20101026/","source":"./data/w3c-specs.txt"},"20101207":{"status":"WD","rawDate":"2010-12-07","href":"https://www.w3.org/TR/2010/WD-navigation-timing-20101207/","source":"./data/w3c-specs.txt"},"20110111":{"status":"WD","rawDate":"2011-01-11","href":"https://www.w3.org/TR/2011/WD-navigation-timing-20110111/","source":"./data/w3c-specs.txt"},"20110315":{"status":"CR","rawDate":"2011-03-15","href":"https://www.w3.org/TR/2011/CR-navigation-timing-20110315/","source":"./data/w3c-specs.txt"},"20110602":{"status":"CR","rawDate":"2011-06-02","href":"https://www.w3.org/TR/2011/CR-navigation-timing-20110602/","source":"./data/w3c-specs.txt"},"20120117":{"status":"CR","rawDate":"2012-01-17","href":"https://www.w3.org/TR/2012/CR-navigation-timing-20120117/","source":"./data/w3c-specs.txt"},"20120313":{"status":"CR","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/CR-navigation-timing-20120313/","source":"./data/w3c-specs.txt"},"20120726":{"status":"PR","rawDate":"2012-07-26","href":"https://www.w3.org/TR/2012/PR-navigation-timing-20120726/","source":"./data/w3c-specs.txt"},"20121217":{"authors":["Zhiheng Wang"],"href":"https://www.w3.org/TR/2012/REC-navigation-timing-20121217/","title":"Navigation Timing","rawDate":"2012-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"hasErrata":"https://www.w3.org/2012/12/navigation-timing-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"navigation-timing-2":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/navigation-timing-2/","title":"Navigation Timing Level 2","rawDate":"2024-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130131":{"authors":["Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2013/WD-navigation-timing-2-20130131/","title":"Navigation Timing 2","rawDate":"2013-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140325":{"authors":["Jatinder Mann","Tobin Titus","Arvind Jain"],"href":"https://www.w3.org/TR/2014/WD-navigation-timing-2-20140325/","title":"Navigation Timing 2","rawDate":"2014-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150120":{"authors":["Jatinder Mann","Tobin Titus","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150120/","title":"Navigation Timing 2","rawDate":"2015-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150422":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150422/","title":"Navigation Timing 2","rawDate":"2015-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150604":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150604/","title":"Navigation Timing 2","rawDate":"2015-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150626":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150626/","title":"Navigation Timing 2","rawDate":"2015-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150718":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150718/","title":"Navigation Timing Level 2","rawDate":"2015-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150721/","title":"Navigation Timing Level 2","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150915":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150915/","title":"Navigation Timing Level 2","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150916/","title":"Navigation Timing Level 2","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150918/","title":"Navigation Timing Level 2","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150923":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150923/","title":"Navigation Timing Level 2","rawDate":"2015-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150924/","title":"Navigation Timing Level 2","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150925":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20150925/","title":"Navigation Timing Level 2","rawDate":"2015-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151021":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20151021/","title":"Navigation Timing Level 2","rawDate":"2015-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151028":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20151028/","title":"Navigation Timing Level 2","rawDate":"2015-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151124":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20151124/","title":"Navigation Timing Level 2","rawDate":"2015-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151125":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20151125/","title":"Navigation Timing Level 2","rawDate":"2015-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151204":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2015/WD-navigation-timing-2-20151204/","title":"Navigation Timing Level 2","rawDate":"2015-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160205":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2016/WD-navigation-timing-2-20160205/","title":"Navigation Timing Level 2","rawDate":"2016-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2016/WD-navigation-timing-2-20160225/","title":"Navigation Timing Level 2","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160422":{"authors":["Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2016/WD-navigation-timing-2-20160422/","title":"Navigation Timing Level 2","rawDate":"2016-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2016/WD-navigation-timing-2-20161213/","title":"Navigation Timing Level 2","rawDate":"2016-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170224":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170224/","title":"Navigation Timing Level 2","rawDate":"2017-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170225":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170225/","title":"Navigation Timing Level 2","rawDate":"2017-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170306":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170306/","title":"Navigation Timing Level 2","rawDate":"2017-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170322":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170322/","title":"Navigation Timing Level 2","rawDate":"2017-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170413":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170413/","title":"Navigation Timing Level 2","rawDate":"2017-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170425":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170425/","title":"Navigation Timing Level 2","rawDate":"2017-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170504/","title":"Navigation Timing Level 2","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170509":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170509/","title":"Navigation Timing Level 2","rawDate":"2017-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170629":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170629/","title":"Navigation Timing Level 2","rawDate":"2017-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170925":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20170925/","title":"Navigation Timing Level 2","rawDate":"2017-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171205":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2017/WD-navigation-timing-2-20171205/","title":"Navigation Timing Level 2","rawDate":"2017-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180820":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2018/WD-navigation-timing-2-20180820/","title":"Navigation Timing Level 2","rawDate":"2018-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2018/WD-navigation-timing-2-20180926/","title":"Navigation Timing Level 2","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181017":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2018/WD-navigation-timing-2-20181017/","title":"Navigation Timing Level 2","rawDate":"2018-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181105":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2018/WD-navigation-timing-2-20181105/","title":"Navigation Timing Level 2","rawDate":"2018-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181130":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2018/WD-navigation-timing-2-20181130/","title":"Navigation Timing Level 2","rawDate":"2018-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190308":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2019/WD-navigation-timing-2-20190308/","title":"Navigation Timing Level 2","rawDate":"2019-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2019/WD-navigation-timing-2-20190626/","title":"Navigation Timing Level 2","rawDate":"2019-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190627":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2019/WD-navigation-timing-2-20190627/","title":"Navigation Timing Level 2","rawDate":"2019-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190715":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2019/WD-navigation-timing-2-20190715/","title":"Navigation Timing Level 2","rawDate":"2019-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200121":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2020/WD-navigation-timing-2-20200121/","title":"Navigation Timing Level 2","rawDate":"2020-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200915":{"authors":["Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2020/WD-navigation-timing-2-20200915/","title":"Navigation Timing Level 2","rawDate":"2020-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210308":{"authors":["Yoav Weiss","Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2021/WD-navigation-timing-2-20210308/","title":"Navigation Timing Level 2","rawDate":"2021-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210728":{"authors":["Yoav Weiss","Noam Rosenthal","Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2021/WD-navigation-timing-2-20210728/","title":"Navigation Timing Level 2","rawDate":"2021-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210816":{"authors":["Yoav Weiss","Noam Rosenthal","Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2021/WD-navigation-timing-2-20210816/","title":"Navigation Timing Level 2","rawDate":"2021-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210927":{"authors":["Yoav Weiss","Noam Rosenthal","Ilya Grigorik","Tobin Titus","Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2021/WD-navigation-timing-2-20210927/","title":"Navigation Timing Level 2","rawDate":"2021-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220117":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220117/","title":"Navigation Timing Level 2","rawDate":"2022-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220202/","title":"Navigation Timing Level 2","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220224/","title":"Navigation Timing Level 2","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220309":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220309/","title":"Navigation Timing Level 2","rawDate":"2022-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220310/","title":"Navigation Timing Level 2","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220617/","title":"Navigation Timing Level 2","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-navigation-timing-2-20220907/","title":"Navigation Timing Level 2","rawDate":"2022-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230206":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-navigation-timing-2-20230206/","title":"Navigation Timing Level 2","rawDate":"2023-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230607":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-navigation-timing-2-20230607/","title":"Navigation Timing Level 2","rawDate":"2023-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231024":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-navigation-timing-2-20231024/","title":"Navigation Timing Level 2","rawDate":"2023-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240201":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-navigation-timing-2-20240201/","title":"Navigation Timing Level 2","rawDate":"2024-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/navigation-timing/","repository":"https://github.com/w3c/navigation-timing"},"netinfo-api":{"authors":["Mounir Lamouri"],"href":"https://www.w3.org/TR/netinfo-api/","title":"The Network Information API","rawDate":"2014-04-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110607":{"status":"WD","rawDate":"2011-06-07","href":"https://www.w3.org/TR/2011/WD-netinfo-api-20110607/","source":"./data/w3c-specs.txt"},"20121129":{"authors":["Mounir Lamouri"],"href":"https://www.w3.org/TR/2012/WD-netinfo-api-20121129/","title":"The Network Information API","rawDate":"2012-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140410":{"authors":["Mounir Lamouri"],"href":"https://www.w3.org/TR/2014/NOTE-netinfo-api-20140410/","title":"The Network Information API","rawDate":"2014-04-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://dvcs.w3.org/hg/dap/raw-file/tip/network-api/Overview.html","isRetired":true},"netinfo-usecases":{"authors":["Marcos Caceres","Fernando Jiménez Moreno","Ernesto Jimenez"],"href":"https://www.w3.org/TR/netinfo-usecases/","title":"Review of apps that use network information","rawDate":"2014-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140403":{"authors":["Marcos Caceres","Fernando Jiménez Moreno","Ernesto Jimenez"],"href":"https://www.w3.org/TR/2014/NOTE-netinfo-usecases-20140403/","title":"Review of apps that use network information","rawDate":"2014-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c-webmob.github.io/netinfo-usecases/","repository":"https://github.com/w3c-webmob/netinfo-usecases"},"network-error-logging":{"authors":["Douglas Creager","Ian Clelland"],"href":"https://www.w3.org/TR/network-error-logging/","title":"Network Error Logging","rawDate":"2023-10-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/network-error-logging/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140211":{"authors":["Arvind Jain","Jatinder Mann","Alois Reitbauer"],"href":"https://www.w3.org/TR/2014/WD-navigation-error-logging-20140211/","title":"Navigation Error Logging","rawDate":"2014-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150305":{"authors":["Ilya Grigorik","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-network-error-logging-20150305/","title":"Network Error Logging","rawDate":"2015-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150423":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-network-error-logging-20150423/","title":"Network Error Logging","rawDate":"2015-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-network-error-logging-20150916/","title":"Network Error Logging","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-network-error-logging-20150929/","title":"Network Error Logging","rawDate":"2015-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151027":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2015/WD-network-error-logging-20151027/","title":"Network Error Logging","rawDate":"2015-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-network-error-logging-20160204/","title":"Network Error Logging","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-network-error-logging-20160225/","title":"Network Error Logging","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160524":{"authors":["Ilya Grigorik","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/NOTE-network-error-logging-20160524/","title":"Network Error Logging","rawDate":"2016-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20160720":{"href":"https://www.w3.org/TR/2016/NOTE-network-error-logging-20160720/","title":"Network Error Logging","rawDate":"2016-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180925":{"authors":["Douglas Creager","Ilya Grigorik","Julia Tuttle","Alois Reitbauer","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2018/WD-network-error-logging-1-20180925/","title":"Network Error Logging","rawDate":"2018-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230927":{"authors":["Douglas Creager","Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-network-error-logging-1-20230927/","title":"Network Error Logging","rawDate":"2023-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230929":{"authors":["Douglas Creager","Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-network-error-logging-1-20230929/","title":"Network Error Logging","rawDate":"2023-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231003":{"authors":["Ian Clelland","Douglas Creager"],"href":"https://www.w3.org/TR/2023/WD-network-error-logging-20231003/","title":"Network Error Logging","rawDate":"2023-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231005":{"authors":["Douglas Creager","Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-network-error-logging-20231005/","title":"Network Error Logging","rawDate":"2023-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/network-error-logging"},"network-error-logging-1":{"aliasOf":"network-error-logging"},"newline":{"versions":{"20010314":{"status":"NOTE","rawDate":"2001-03-14","href":"https://www.w3.org/TR/2001/NOTE-newline-20010314","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/newline","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-03-14","title":"The [NEL] Newline Character"},"nfc":{"authors":["Luc Yriarte","Samuel Ortiz","Don Coleman"],"href":"https://www.w3.org/TR/nfc/","title":"Web NFC API","rawDate":"2015-06-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/nfc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140114":{"authors":["Luc Yriarte","Samuel Ortiz","Don Coleman"],"href":"https://www.w3.org/TR/2014/WD-nfc-20140114/","title":"Web NFC API","rawDate":"2014-01-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/nfc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150616":{"authors":["Luc Yriarte","Samuel Ortiz","Don Coleman"],"href":"https://www.w3.org/TR/2015/NOTE-nfc-20150616/","title":"Web NFC API","rawDate":"2015-06-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/nfc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://www.w3.org/2012/nfc/","isRetired":true},"ngram-spec":{"authors":["Andreas Kellner","Dave Raggett"],"href":"https://www.w3.org/TR/ngram-spec/","title":"Stochastic Language Models (N-Gram) Specification","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20010103":{"authors":["Andreas Kellner","Dave Raggett"],"href":"https://www.w3.org/TR/2001/WD-ngram-spec-20010103/","title":"Stochastic Language Models (N-Gram) Specification","rawDate":"2001-01-03","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-01-03","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"nkoo-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/nkoo-gap/","title":"N’Ko Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/afrlreq/gap-analysis/nkoo-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210204":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-nkoo-gap-20210204/","title":"N’Ko Gap Analysis","rawDate":"2021-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210216":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-nkoo-gap-20210216/","title":"N’Ko Gap Analysis","rawDate":"2021-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-nkoo-gap-20210521/","title":"N’Ko Gap Analysis","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-nkoo-gap-20211125/","title":"N’Ko Gap Analysis","rawDate":"2021-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/DNOTE-nkoo-gap-20211202/","title":"N’Ko Gap Analysis","rawDate":"2021-12-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-nkoo-gap-20220119/","title":"N’Ko Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220128":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-nkoo-gap-20220128/","title":"N’Ko Gap Analysis","rawDate":"2022-01-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-nkoo-gap-20220712/","title":"N’Ko Gap Analysis","rawDate":"2022-07-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230608":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230608/","title":"N’Ko Gap Analysis","rawDate":"2023-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230615/","title":"N’Ko Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230627":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230627/","title":"N’Ko Gap Analysis","rawDate":"2023-06-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230727/","title":"N’Ko Gap Analysis","rawDate":"2023-07-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20230807/","title":"N’Ko Gap Analysis","rawDate":"2023-08-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-gap-20231004/","title":"N’Ko Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/afrlreq"},"nkoo-lreq":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/nkoo-lreq/","title":"N'Ko Layout Requirements","rawDate":"2023-06-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/afrlreq/nko/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230613":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-nkoo-lreq-20230613/","title":"N'Ko Layout Requirements","rawDate":"2023-06-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/afrlreq"},"nl-spec":{"authors":["Deborah Dahl"],"href":"https://www.w3.org/TR/nl-spec/","title":"Natural Language Semantics Markup Language for the Speech Interface Framework","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20001120":{"authors":["Deborah Dahl"],"href":"https://www.w3.org/TR/2000/WD-nl-spec-20001120/","title":"Natural Language Semantics Markup Language for the Speech Interface Framework","rawDate":"2000-11-20","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-11-20","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"notifications-20110301":{"authors":["John Gregg","Anne van Kesteren"],"title":"Web Notifications","status":"WD","rawDate":"2011-03-01","href":"https://www.w3.org/TR/2011/WD-notifications-20110301/","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/web-notifications/"],"source":"./data/w3c-specs.txt"},"notifications-20120614":{"authors":["Anne van Kesteren","John Gregg"],"href":"https://www.w3.org/TR/2012/WD-notifications-20120614/","title":"Web Notifications","rawDate":"2012-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/web-notifications/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"notifications-20130912":{"authors":["John Gregg","Anne van Kesteren"],"href":"https://www.w3.org/TR/2013/WD-notifications-20130912/","title":"Web Notifications","rawDate":"2013-09-12","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/web-notifications/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"notifications-20150519":{"authors":["John Gregg","Anne van Kesteren"],"href":"https://www.w3.org/TR/2015/CR-notifications-20150519/","title":"Web Notifications","rawDate":"2015-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/web-notifications/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"notifications-20150910":{"authors":["John Gregg","Anne van Kesteren"],"href":"https://www.w3.org/TR/2015/PR-notifications-20150910/","title":"Web Notifications","rawDate":"2015-09-10","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/web-notifications/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"notifications-20151022":{"authors":["John Gregg","Anne van Kesteren"],"href":"https://www.w3.org/TR/2015/REC-notifications-20151022/","title":"Web Notifications","rawDate":"2015-10-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/web-notifications/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"odrl-model":{"authors":["Renato Iannella","Serena Villata"],"href":"https://www.w3.org/TR/odrl-model/","title":"ODRL Information Model 2.2","rawDate":"2018-02-15","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/poe/model/","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160721":{"authors":["Renato Iannella","Serena Villata"],"href":"https://www.w3.org/TR/2016/WD-odrl-model-20160721/","title":"ODRL Information Model","rawDate":"2016-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Renato Iannella","Serena Villata"],"href":"https://www.w3.org/TR/2017/WD-odrl-model-20170223/","title":"ODRL Information Model","rawDate":"2017-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170926":{"authors":["Renato Iannella","Serena Villata"],"href":"https://www.w3.org/TR/2017/CR-odrl-model-20170926/","title":"ODRL Information Model","rawDate":"2017-09-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180104":{"authors":["Renato Iannella","Serena Villata"],"href":"https://www.w3.org/TR/2018/PR-odrl-model-20180104/","title":"ODRL Information Model 2.2","rawDate":"2018-01-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180215":{"authors":["Renato Iannella","Serena Villata"],"href":"https://www.w3.org/TR/2018/REC-odrl-model-20180215/","title":"ODRL Information Model 2.2","rawDate":"2018-02-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"hasErrata":"https://www.w3.org/2016/poe/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/poe","hasErrata":"https://www.w3.org/2016/poe/errata/"},"odrl-vocab":{"authors":["Renato Iannella","Michael Steidl","Stuart Myles","Víctor Rodríguez-Doncel"],"href":"https://www.w3.org/TR/odrl-vocab/","title":"ODRL Vocabulary & Expression 2.2","rawDate":"2018-02-15","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/poe/vocab/","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160721":{"authors":["Renato Iannella","Michael Steidl","Mo McRoberts","Stuart Myles","James Birmingham","Víctor Rodríguez-Doncel"],"href":"https://www.w3.org/TR/2016/WD-vocab-odrl-20160721/","title":"ODRL Vocabulary & Expression","rawDate":"2016-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Renato Iannella","Michael Steidl","Mo McRoberts","Stuart Myles","James Birmingham","Víctor Rodríguez-Doncel"],"href":"https://www.w3.org/TR/2017/WD-odrl-vocab-20170223/","title":"ODRL Vocabulary & Expression","rawDate":"2017-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170926":{"authors":["Renato Iannella","Michael Steidl","Stuart Myles","Víctor Rodríguez-Doncel"],"href":"https://www.w3.org/TR/2017/CR-odrl-vocab-20170926/","title":"ODRL Vocabulary & Expression","rawDate":"2017-09-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180104":{"authors":["Renato Iannella","Michael Steidl","Stuart Myles","Víctor Rodríguez-Doncel"],"href":"https://www.w3.org/TR/2018/PR-odrl-vocab-20180104/","title":"ODRL Vocabulary & Expression 2.2","rawDate":"2018-01-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180215":{"authors":["Renato Iannella","Michael Steidl","Stuart Myles","Víctor Rodríguez-Doncel"],"href":"https://www.w3.org/TR/2018/REC-odrl-vocab-20180215/","title":"ODRL Vocabulary & Expression 2.2","rawDate":"2018-02-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"hasErrata":"https://www.w3.org/2016/poe/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/poe","hasErrata":"https://www.w3.org/2016/poe/errata/"},"offline-webapps":{"authors":["Anne van Kesteren","Ian Hickson"],"href":"https://www.w3.org/TR/offline-webapps/","title":"Offline Web Applications","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"versions":{"20080530":{"authors":["Anne van Kesteren","Ian Hickson"],"href":"https://www.w3.org/TR/2008/NOTE-offline-webapps-20080530/","title":"Offline Web Applications","rawDate":"2008-05-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-05-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"openscreenprotocol":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/openscreenprotocol/","title":"Open Screen Protocol","rawDate":"2024-01-22","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/openscreenprotocol/","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210318":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2021/WD-openscreenprotocol-20210318/","title":"Open Screen Protocol","rawDate":"2021-03-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220422":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20220422/","title":"Open Screen Protocol","rawDate":"2022-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20220907/","title":"Open Screen Protocol","rawDate":"2022-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220909":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20220909/","title":"Open Screen Protocol","rawDate":"2022-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220912":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20220912/","title":"Open Screen Protocol","rawDate":"2022-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20221018/","title":"Open Screen Protocol","rawDate":"2022-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221107":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20221107/","title":"Open Screen Protocol","rawDate":"2022-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221114":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20221114/","title":"Open Screen Protocol","rawDate":"2022-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/WD-openscreenprotocol-20221212/","title":"Open Screen Protocol","rawDate":"2022-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230305":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20230305/","title":"Open Screen Protocol","rawDate":"2023-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230908":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20230908/","title":"Open Screen Protocol","rawDate":"2023-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230911":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20230911/","title":"Open Screen Protocol","rawDate":"2023-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20231004/","title":"Open Screen Protocol","rawDate":"2023-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20231012/","title":"Open Screen Protocol","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20231013/","title":"Open Screen Protocol","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2023/WD-openscreenprotocol-20231016/","title":"Open Screen Protocol","rawDate":"2023-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240122":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2024/WD-openscreenprotocol-20240122/","title":"Open Screen Protocol","rawDate":"2024-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/openscreenprotocol"},"orientation-event":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/orientation-event/","title":"DeviceOrientation Event Specification","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"versions":{"20110628":{"status":"WD","rawDate":"2011-06-28","href":"https://www.w3.org/TR/2011/WD-orientation-event-20110628/","source":"./data/w3c-specs.txt"},"20111201":{"authors":["Stephen Block","Andrei Popescu"],"href":"https://www.w3.org/TR/2011/WD-orientation-event-20111201/","title":"DeviceOrientation Event Specification","rawDate":"2011-12-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160818":{"authors":["Rich Tibbett","Tim Volodine","Stephen Block","Andrei Popescu"],"href":"https://www.w3.org/TR/2016/CR-orientation-event-20160818/","title":"DeviceOrientation Event Specification","rawDate":"2016-08-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170530":{"authors":["Rich Tibbett","Tim Volodine","Stephen Block","Andrei Popescu"],"href":"https://www.w3.org/TR/2017/NOTE-orientation-event-20170530/","title":"DeviceOrientation Event Specification","rawDate":"2017-05-30","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/geolocation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190416":{"authors":["Rich Tibbett","Tim Volodine","Stephen Block","Andrei Popescu"],"href":"https://www.w3.org/TR/2019/WD-orientation-event-20190416/","title":"DeviceOrientation Event Specification","rawDate":"2019-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"href":"https://www.w3.org/TR/2022/WD-orientation-event-20220610/","title":"DeviceOrientation Event Specification","rawDate":"2022-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"href":"https://www.w3.org/TR/2022/WD-orientation-event-20220919/","title":"DeviceOrientation Event Specification","rawDate":"2022-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230109":{"href":"https://www.w3.org/TR/2023/WD-orientation-event-20230109/","title":"DeviceOrientation Event Specification","rawDate":"2023-01-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"href":"https://www.w3.org/TR/2023/WD-orientation-event-20230130/","title":"DeviceOrientation Event Specification","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230322":{"href":"https://www.w3.org/TR/2023/WD-orientation-event-20230322/","title":"DeviceOrientation Event Specification","rawDate":"2023-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"href":"https://www.w3.org/TR/2023/WD-orientation-event-20230403/","title":"DeviceOrientation Event Specification","rawDate":"2023-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230412":{"href":"https://www.w3.org/TR/2023/WD-orientation-event-20230412/","title":"DeviceOrientation Event Specification","rawDate":"2023-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230421":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-orientation-event-20230421/","title":"DeviceOrientation Event Specification","rawDate":"2023-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231113":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-orientation-event-20231113/","title":"DeviceOrientation Event Specification","rawDate":"2023-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-orientation-event-20231204/","title":"DeviceOrientation Event Specification","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231205":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-orientation-event-20231205/","title":"DeviceOrientation Event Specification","rawDate":"2023-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231211":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-orientation-event-20231211/","title":"DeviceOrientation Event Specification","rawDate":"2023-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240104":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2024/WD-orientation-event-20240104/","title":"DeviceOrientation Event Specification","rawDate":"2024-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2024/WD-orientation-event-20240105/","title":"DeviceOrientation Event Specification","rawDate":"2024-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240122":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2024/WD-orientation-event-20240122/","title":"DeviceOrientation Event Specification","rawDate":"2024-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240202":{"authors":["Reilly Grant","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2024/WD-orientation-event-20240202/","title":"DeviceOrientation Event Specification","rawDate":"2024-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2024-02-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/deviceorientation/","isRetired":true,"repository":"https://github.com/w3c/deviceorientation"},"orientation-sensor":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/orientation-sensor/","title":"Orientation Sensor","rawDate":"2024-01-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/orientation-sensor/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170511":{"authors":["Mikhail Pozdnyakov","Alexander Shalamov","Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-orientation-sensor-20170511/","title":"Orientation Sensor","rawDate":"2017-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170814":{"authors":["Mikhail Pozdnyakov","Alexander Shalamov","Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-orientation-sensor-20170814/","title":"Orientation Sensor","rawDate":"2017-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Mikhail Pozdnyakov","Alexander Shalamov","Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2017/WD-orientation-sensor-20171018/","title":"Orientation Sensor","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Mikhail Pozdnyakov","Alexander Shalamov","Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2018/CR-orientation-sensor-20180320/","title":"Orientation Sensor","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/WD-orientation-sensor-20190307/","title":"Orientation Sensor","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2019/CR-orientation-sensor-20191212/","title":"Orientation Sensor","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2021/WD-orientation-sensor-20210608/","title":"Orientation Sensor","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210725":{"authors":["Kenneth Christiansen","Anssi Kostiainen","Mikhail Pozdnyakov","Alexander Shalamov"],"href":"https://www.w3.org/TR/2021/WD-orientation-sensor-20210725/","title":"Orientation Sensor","rawDate":"2021-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210816":{"authors":["Kenneth Christiansen","Anssi Kostiainen","Mikhail Pozdnyakov","Alexander Shalamov"],"href":"https://www.w3.org/TR/2021/WD-orientation-sensor-20210816/","title":"Orientation Sensor","rawDate":"2021-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210902":{"authors":["Kenneth Christiansen","Anssi Kostiainen","Mikhail Pozdnyakov","Alexander Shalamov"],"href":"https://www.w3.org/TR/2021/WD-orientation-sensor-20210902/","title":"Orientation Sensor","rawDate":"2021-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230801":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-orientation-sensor-20230801/","title":"Orientation Sensor","rawDate":"2023-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231024":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-orientation-sensor-20231024/","title":"Orientation Sensor","rawDate":"2023-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-orientation-sensor-20231025/","title":"Orientation Sensor","rawDate":"2023-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-orientation-sensor-20231103/","title":"Orientation Sensor","rawDate":"2023-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231128":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/WD-orientation-sensor-20231128/","title":"Orientation Sensor","rawDate":"2023-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240105":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/WD-orientation-sensor-20240105/","title":"Orientation Sensor","rawDate":"2024-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240110":{"authors":["Kenneth Christiansen","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/WD-orientation-sensor-20240110/","title":"Orientation Sensor","rawDate":"2024-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/orientation-sensor"},"osge-osa-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/osge-osa-gap/","title":"Osage Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/amlreq/gap-analysis/osge-osa-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210204":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-osge-osa-gap-20210204/","title":"Osage Gap Analysis","rawDate":"2021-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210524":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-osge-osa-gap-20210524/","title":"Osage Gap Analysis","rawDate":"2021-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-osge-osa-gap-20230614/","title":"Osage Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/amlreq"},"owl-absyn":{"aliasOf":"owl-semantics"},"owl-features":{"authors":["Deborah McGuinness","Frank van Harmelen"],"href":"https://www.w3.org/TR/owl-features/","title":"OWL Web Ontology Language Overview","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-features","versions":{"20020729":{"status":"WD","rawDate":"2002-07-29","href":"https://www.w3.org/TR/2002/WD-owl-features-20020729/","source":"./data/w3c-specs.txt"},"20030210":{"status":"WD","rawDate":"2003-02-10","href":"https://www.w3.org/TR/2003/WD-owl-features-20030210/","source":"./data/w3c-specs.txt"},"20030331":{"status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-owl-features-20030331/","source":"./data/w3c-specs.txt"},"20030818":{"status":"CR","rawDate":"2003-08-18","href":"https://www.w3.org/TR/2003/CR-owl-features-20030818/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-owl-features-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Deborah McGuinness","Frank van Harmelen"],"href":"https://www.w3.org/TR/2004/REC-owl-features-20040210/","title":"OWL Web Ontology Language Overview","rawDate":"2004-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-features","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl-guide":{"authors":["Christopher Welty","Deborah McGuinness"],"href":"https://www.w3.org/TR/owl-guide/","title":"OWL Web Ontology Language Guide","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-guide","versions":{"20021104":{"status":"WD","rawDate":"2002-11-04","href":"https://www.w3.org/TR/2002/WD-owl-guide-20021104/","source":"./data/w3c-specs.txt"},"20030210":{"status":"WD","rawDate":"2003-02-10","href":"https://www.w3.org/TR/2003/WD-owl-guide-20030210/","source":"./data/w3c-specs.txt"},"20030331":{"status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-owl-guide-20030331/","source":"./data/w3c-specs.txt"},"20030818":{"status":"CR","rawDate":"2003-08-18","href":"https://www.w3.org/TR/2003/CR-owl-guide-20030818/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-owl-guide-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Christopher Welty","Deborah McGuinness"],"href":"https://www.w3.org/TR/2004/REC-owl-guide-20040210/","title":"OWL Web Ontology Language Guide","rawDate":"2004-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-guide","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl-parsing":{"authors":["Sean Bechhofer"],"href":"https://www.w3.org/TR/owl-parsing/","title":"OWL Web Ontology Language Parsing OWL in RDF/XML","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"versions":{"20040121":{"authors":["Sean Bechhofer"],"href":"https://www.w3.org/TR/2004/NOTE-owl-parsing-20040121/","title":"OWL Web Ontology Language Parsing OWL in RDF/XML","rawDate":"2004-01-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-01-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl-ref":{"authors":["Mike Dean","Guus Schreiber"],"href":"https://www.w3.org/TR/owl-ref/","title":"OWL Web Ontology Language Reference","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-ref","versions":{"20020729":{"status":"WD","rawDate":"2002-07-29","href":"https://www.w3.org/TR/2002/WD-owl-ref-20020729/","source":"./data/w3c-specs.txt"},"20021112":{"status":"WD","rawDate":"2002-11-12","href":"https://www.w3.org/TR/2002/WD-owl-ref-20021112/","source":"./data/w3c-specs.txt"},"20030221":{"status":"WD","rawDate":"2003-02-21","href":"https://www.w3.org/TR/2003/WD-owl-ref-20030221/","source":"./data/w3c-specs.txt"},"20030331":{"status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-owl-ref-20030331/","source":"./data/w3c-specs.txt"},"20030818":{"status":"CR","rawDate":"2003-08-18","href":"https://www.w3.org/TR/2003/CR-owl-ref-20030818/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-owl-ref-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Mike Dean","Guus Schreiber"],"href":"https://www.w3.org/TR/2004/REC-owl-ref-20040210/","title":"OWL Web Ontology Language Reference","rawDate":"2004-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-ref","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl-semantics":{"authors":["Peter Patel-Schneider","Patrick Hayes","Ian Horrocks"],"href":"https://www.w3.org/TR/owl-semantics/","title":"OWL Web Ontology Language Semantics and Abstract Syntax","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-semantics","versions":{"20020729":{"status":"WD","rawDate":"2002-07-29","href":"https://www.w3.org/TR/2002/WD-owl-absyn-20020729/","source":"./data/w3c-specs.txt"},"20021108":{"status":"WD","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/WD-owl-semantics-20021108/","source":"./data/w3c-specs.txt"},"20030203":{"status":"WD","rawDate":"2003-02-03","href":"https://www.w3.org/TR/2003/WD-owl-semantics-20030203/","source":"./data/w3c-specs.txt"},"20030331":{"status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-owl-semantics-20030331/","source":"./data/w3c-specs.txt"},"20030818":{"status":"CR","rawDate":"2003-08-18","href":"https://www.w3.org/TR/2003/CR-owl-semantics-20030818/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-owl-semantics-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Peter Patel-Schneider","Patrick Hayes","Ian Horrocks"],"href":"https://www.w3.org/TR/2004/REC-owl-semantics-20040210/","title":"OWL Web Ontology Language Semantics and Abstract Syntax","rawDate":"2004-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-semantics","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl-test":{"authors":["Jeremy Carroll","Jos De Roo"],"href":"https://www.w3.org/TR/owl-test/","title":"OWL Web Ontology Language Test Cases","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-test","versions":{"20021024":{"status":"WD","rawDate":"2002-10-24","href":"https://www.w3.org/TR/2002/WD-owl-test-20021024/","source":"./data/w3c-specs.txt"},"20030217":{"status":"WD","rawDate":"2003-02-17","href":"https://www.w3.org/TR/2003/WD-owl-test-20030217/","source":"./data/w3c-specs.txt"},"20030331":{"status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-owl-test-20030331/","source":"./data/w3c-specs.txt"},"20030528":{"status":"WD","rawDate":"2003-05-28","href":"https://www.w3.org/TR/2003/WD-owl-test-20030528/","source":"./data/w3c-specs.txt"},"20030818":{"status":"CR","rawDate":"2003-08-18","href":"https://www.w3.org/TR/2003/CR-owl-test-20030818/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-owl-test-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Jeremy Carroll","Jos De Roo"],"href":"https://www.w3.org/TR/2004/REC-owl-test-20040210/","title":"OWL Web Ontology Language Test Cases","rawDate":"2004-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#owl-test","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl-time":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/owl-time/","title":"Time Ontology in OWL","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"versions":{"20060927":{"authors":["Jerry Hobbs","Feng Pan"],"href":"https://www.w3.org/TR/2006/WD-owl-time-20060927/","title":"Time Ontology in OWL","rawDate":"2006-09-27","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160712":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2016/WD-owl-time-20160712/","title":"Time Ontology in OWL","rawDate":"2016-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2017/WD-owl-time-20170202/","title":"Time Ontology in OWL","rawDate":"2017-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170606":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2017/CR-owl-time-20170606/","title":"Time Ontology in OWL","rawDate":"2017-06-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170907":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2017/PR-owl-time-20170907/","title":"Time Ontology in OWL","rawDate":"2017-09-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171019":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2017/REC-owl-time-20171019/","title":"Time Ontology in OWL","rawDate":"2017-10-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"hasErrata":"https://www.w3.org/2017/10/owl-time-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200326":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2020/CR-owl-time-20200326/","title":"Time Ontology in OWL","rawDate":"2020-03-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221115":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2022/CRD-owl-time-20221115/","title":"Time Ontology in OWL","rawDate":"2022-11-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2022-11-15","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/sdw/time/","repository":"https://github.com/w3c/sdw","hasErrata":"https://www.w3.org/2017/10/owl-time-errata.html"},"owl-xmlsyntax":{"authors":["Masahiro Hori","Jérôme Euzenat","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/owl-xmlsyntax/","title":"OWL Web Ontology Language XML Presentation Syntax","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"versions":{"20030611":{"authors":["Masahiro Hori","Jérôme Euzenat","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2003/NOTE-owl-xmlsyntax-20030611/","title":"OWL Web Ontology Language XML Presentation Syntax","rawDate":"2003-06-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-06-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl11-mapping-to-rdf":{"aliasOf":"owl2-mapping-to-rdf"},"owl11-semantics":{"aliasOf":"owl2-direct-semantics"},"owl11-syntax":{"aliasOf":"owl2-syntax"},"owl2-conformance":{"authors":["Michael[tm] Smith","Ian Horrocks","Markus Krötzsch","Birte Glimm"],"href":"https://www.w3.org/TR/owl2-conformance/","title":"OWL 2 Web Ontology Language Conformance (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-test-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-test-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-test-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-conformance-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-conformance-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Michael[tm] Smith","Ian Horrocks","Markus Krötzsch","Birte Glimm"],"href":"https://www.w3.org/TR/2009/REC-owl2-conformance-20091027/","title":"OWL 2 Web Ontology Language Conformance","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-conformance-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Michael[tm] Smith","Ian Horrocks","Markus Krötzsch","Birte Glimm"],"href":"https://www.w3.org/TR/2012/REC-owl2-conformance-20121211/","title":"OWL 2 Web Ontology Language Conformance (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-direct-semantics":{"authors":["Boris Motik","Peter Patel-Schneider","Bernardo Cuenca Grau"],"href":"https://www.w3.org/TR/owl2-direct-semantics/","title":"OWL 2 Web Ontology Language Direct Semantics (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20080108":{"status":"WD","rawDate":"2008-01-08","href":"https://www.w3.org/TR/2008/WD-owl11-semantics-20080108/","source":"./data/w3c-specs.txt"},"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-owl2-semantics-20080411/","source":"./data/w3c-specs.txt"},"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-semantics-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-semantics-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-semantics-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-direct-semantics-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-direct-semantics-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Boris Motik","Peter Patel-Schneider","Bernardo Cuenca Grau"],"href":"https://www.w3.org/TR/2009/REC-owl2-direct-semantics-20091027/","title":"OWL 2 Web Ontology Language Direct Semantics","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-direct-semantics-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Boris Motik","Peter Patel-Schneider","Bernardo Cuenca Grau"],"href":"https://www.w3.org/TR/2012/REC-owl2-direct-semantics-20121211/","title":"OWL 2 Web Ontology Language Direct Semantics (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-dr-linear":{"authors":["Bijan Parsia","Uli Sattler"],"href":"https://www.w3.org/TR/owl2-dr-linear/","title":"OWL 2 Web Ontology Language Data Range Extension: Linear Equations (Second Edition)","rawDate":"2012-12-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-dr-linear-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"WD","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/WD-owl2-dr-linear-20090611/","source":"./data/w3c-specs.txt"},"20091027":{"status":"NOTE","rawDate":"2009-10-27","href":"https://www.w3.org/TR/2009/NOTE-owl2-dr-linear-20091027/","source":"./data/w3c-specs.txt"},"20121018":{"status":"NOTE","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/NOTE-owl2-dr-linear-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Bijan Parsia","Uli Sattler"],"href":"https://www.w3.org/TR/2012/NOTE-owl2-dr-linear-20121211/","title":"OWL 2 Web Ontology Language Data Range Extension: Linear Equations (Second Edition)","rawDate":"2012-12-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"owl2-manchester-syntax":{"authors":["Matthew Horridge","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/owl2-manchester-syntax/","title":"OWL 2 Web Ontology Language Manchester Syntax (Second Edition)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"versions":{"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-manchester-syntax-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-manchester-syntax-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"WD","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/WD-owl2-manchester-syntax-20090611/","source":"./data/w3c-specs.txt"},"20091027":{"status":"NOTE","rawDate":"2009-10-27","href":"https://www.w3.org/TR/2009/NOTE-owl2-manchester-syntax-20091027/","source":"./data/w3c-specs.txt"},"20121018":{"status":"NOTE","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/NOTE-owl2-manchester-syntax-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Matthew Horridge","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2012/NOTE-owl2-manchester-syntax-20121211/","title":"OWL 2 Web Ontology Language Manchester Syntax (Second Edition)","rawDate":"2012-12-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-mapping-to-rdf":{"authors":["Peter Patel-Schneider","Boris Motik"],"href":"https://www.w3.org/TR/owl2-mapping-to-rdf/","title":"OWL 2 Web Ontology Language Mapping to RDF Graphs (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20080108":{"status":"WD","rawDate":"2008-01-08","href":"https://www.w3.org/TR/2008/WD-owl11-mapping-to-rdf-20080108/","source":"./data/w3c-specs.txt"},"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-owl2-mapping-to-rdf-20080411/","source":"./data/w3c-specs.txt"},"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-mapping-to-rdf-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-mapping-to-rdf-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-mapping-to-rdf-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-mapping-to-rdf-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-mapping-to-rdf-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Peter Patel-Schneider","Boris Motik"],"href":"https://www.w3.org/TR/2009/REC-owl2-mapping-to-rdf-20091027/","title":"OWL 2 Web Ontology Language Mapping to RDF Graphs","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-mapping-to-rdf-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Peter Patel-Schneider","Boris Motik"],"href":"https://www.w3.org/TR/2012/REC-owl2-mapping-to-rdf-20121211/","title":"OWL 2 Web Ontology Language Mapping to RDF Graphs (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-new-features":{"authors":["Christine Golbreich","Evan Wallace"],"href":"https://www.w3.org/TR/owl2-new-features/","title":"OWL 2 Web Ontology Language New Features and Rationale (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-new-features-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-new-features-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"WD","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/WD-owl2-new-features-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-new-features-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Christine Golbreich","Evan Wallace"],"href":"https://www.w3.org/TR/2009/REC-owl2-new-features-20091027/","title":"OWL 2 Web Ontology Language New Features and Rationale","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-new-features-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Christine Golbreich","Evan Wallace"],"href":"https://www.w3.org/TR/2012/REC-owl2-new-features-20121211/","title":"OWL 2 Web Ontology Language New Features and Rationale (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-overview":{"authors":["W3C OWL Working Group"],"href":"https://www.w3.org/TR/owl2-overview/","title":"OWL 2 Web Ontology Language Document Overview (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20090327":{"status":"WD","rawDate":"2009-03-27","href":"https://www.w3.org/TR/2009/WD-owl2-overview-20090327/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-overview-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"WD","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/WD-owl2-overview-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-overview-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["W3C OWL Working Group"],"href":"https://www.w3.org/TR/2009/REC-owl2-overview-20091027/","title":"OWL 2 Web Ontology Language Document Overview","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-overview-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["W3C OWL Working Group"],"href":"https://www.w3.org/TR/2012/REC-owl2-overview-20121211/","title":"OWL 2 Web Ontology Language Document Overview (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-primer":{"authors":["Pascal Hitzler","Markus Krötzsch","Bijan Parsia","Peter Patel-Schneider","Sebastian Rudolph"],"href":"https://www.w3.org/TR/owl2-primer/","title":"OWL 2 Web Ontology Language Primer (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-owl2-primer-20080411/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-primer-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"WD","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/WD-owl2-primer-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-primer-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Pascal Hitzler","Markus Krötzsch","Bijan Parsia","Peter Patel-Schneider","Sebastian Rudolph"],"href":"https://www.w3.org/TR/2009/REC-owl2-primer-20091027/","title":"OWL 2 Web Ontology Language Primer","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-primer-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Pascal Hitzler","Markus Krötzsch","Bijan Parsia","Peter Patel-Schneider","Sebastian Rudolph"],"href":"https://www.w3.org/TR/2012/REC-owl2-primer-20121211/","title":"OWL 2 Web Ontology Language Primer (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-profiles":{"authors":["Boris Motik","Bernardo Cuenca Grau","Ian Horrocks","Zhe Wu","Achille Fokoue"],"href":"https://www.w3.org/TR/owl2-profiles/","title":"OWL 2 Web Ontology Language Profiles (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-owl2-profiles-20080411/","source":"./data/w3c-specs.txt"},"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-profiles-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-profiles-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-profiles-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-profiles-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-profiles-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Boris Motik","Bernardo Cuenca Grau","Ian Horrocks","Zhe Wu","Achille Fokoue"],"href":"https://www.w3.org/TR/2009/REC-owl2-profiles-20091027/","title":"OWL 2 Web Ontology Language Profiles","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-profiles-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Boris Motik","Bernardo Cuenca Grau","Ian Horrocks","Zhe Wu","Achille Fokoue"],"href":"https://www.w3.org/TR/2012/REC-owl2-profiles-20121211/","title":"OWL 2 Web Ontology Language Profiles (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-quick-reference":{"authors":["Jie Bao","Elisa Kendall","Deborah McGuinness","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/owl2-quick-reference/","title":"OWL 2 Web Ontology Language Quick Reference Guide (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-quick-reference-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-quick-reference-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"WD","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/WD-owl2-quick-reference-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-quick-reference-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Jie Bao","Elisa Kendall","Deborah McGuinness","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2009/REC-owl2-quick-reference-20091027/","title":"OWL 2 Web Ontology Language Quick Reference Guide","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-quick-reference-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Jie Bao","Elisa Kendall","Deborah McGuinness","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2012/REC-owl2-quick-reference-20121211/","title":"OWL 2 Web Ontology Language Quick Reference Guide (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-rdf-based-semantics":{"authors":["Michael Schneider"],"href":"https://www.w3.org/TR/owl2-rdf-based-semantics/","title":"OWL 2 Web Ontology Language RDF-Based Semantics (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-rdf-based-semantics-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-rdf-based-semantics-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-rdf-based-semantics-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-rdf-based-semantics-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-rdf-based-semantics-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Michael Schneider"],"href":"https://www.w3.org/TR/2009/REC-owl2-rdf-based-semantics-20091027/","title":"OWL 2 Web Ontology Language RDF-Based Semantics","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-rdf-based-semantics-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Michael Schneider"],"href":"https://www.w3.org/TR/2012/REC-owl2-rdf-based-semantics-20121211/","title":"OWL 2 Web Ontology Language RDF-Based Semantics (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-semantics":{"aliasOf":"owl2-direct-semantics"},"owl2-syntax":{"authors":["Boris Motik","Peter Patel-Schneider","Bijan Parsia"],"href":"https://www.w3.org/TR/owl2-syntax/","title":"OWL 2 Web Ontology Language Structural Specification and Functional-Style Syntax (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20080108":{"status":"WD","rawDate":"2008-01-08","href":"https://www.w3.org/TR/2008/WD-owl11-syntax-20080108/","source":"./data/w3c-specs.txt"},"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-owl2-syntax-20080411/","source":"./data/w3c-specs.txt"},"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-syntax-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-syntax-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-syntax-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-syntax-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-syntax-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Boris Motik","Peter Patel-Schneider","Bijan Parsia"],"href":"https://www.w3.org/TR/2009/REC-owl2-syntax-20091027/","title":"OWL 2 Web Ontology Language Structural Specification and Functional-Style Syntax","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-syntax-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Boris Motik","Peter Patel-Schneider","Bijan Parsia"],"href":"https://www.w3.org/TR/2012/REC-owl2-syntax-20121211/","title":"OWL 2 Web Ontology Language Structural Specification and Functional-Style Syntax (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"owl2-test":{"aliasOf":"owl2-conformance"},"owl2-xml-serialization":{"authors":["Boris Motik","Bijan Parsia","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/owl2-xml-serialization/","title":"OWL 2 Web Ontology Language XML Serialization (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","versions":{"20080411":{"status":"WD","rawDate":"2008-04-11","href":"https://www.w3.org/TR/2008/WD-owl2-xml-serialization-20080411/","source":"./data/w3c-specs.txt"},"20081008":{"status":"WD","rawDate":"2008-10-08","href":"https://www.w3.org/TR/2008/WD-owl2-xml-serialization-20081008/","source":"./data/w3c-specs.txt"},"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-owl2-xml-serialization-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-owl2-xml-serialization-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-owl2-xml-serialization-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-owl2-xml-serialization-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Boris Motik","Bijan Parsia","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2009/REC-owl2-xml-serialization-20091027/","title":"OWL 2 Web Ontology Language XML Serialization","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-owl2-xml-serialization-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Boris Motik","Bijan Parsia","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2012/REC-owl2-xml-serialization-20121211/","title":"OWL 2 Web Ontology Language XML Serialization (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-12-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"p3p-rdfschema":{"authors":["Brian McBride","Rigo Wenning","Lorrie Cranor"],"href":"https://www.w3.org/TR/p3p-rdfschema/","title":"An RDF Schema for P3P","status":"NOTE","publisher":"W3C","versions":{"20020125":{"authors":["Brian McBride","Rigo Wenning","Lorrie Cranor"],"href":"https://www.w3.org/TR/2002/NOTE-p3p-rdfschema-20020125/","title":"An RDF Schema for P3P","rawDate":"2002-01-25","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180830":{"authors":["Brian McBride","Rigo Wenning","Lorrie Cranor"],"href":"https://www.w3.org/TR/2018/NOTE-p3p-rdfschema-20180830/","title":"An RDF Schema for P3P","rawDate":"2018-08-30","status":"NOTE","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-08-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"p3pdeployment":{"authors":["Martin PreslerMarshall"],"href":"https://www.w3.org/TR/p3pdeployment/","title":"The Platform for Privacy Preferences 1.0 Deployment Guide","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"versions":{"20020211":{"authors":["Martin PreslerMarshall"],"href":"https://www.w3.org/TR/2002/NOTE-p3pdeployment-20020211","title":"The Platform for Privacy Preferences 1.0 Deployment Guide","rawDate":"2002-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/P3P/Group/Specification/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2002-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"page-visibility":{"authors":["Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/page-visibility/","title":"Page Visibility (Second Edition)","rawDate":"2013-10-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"hasErrata":"https://www.w3.org/2013/05/pv-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110602":{"status":"WD","rawDate":"2011-06-02","href":"https://www.w3.org/TR/2011/WD-page-visibility-20110602/","source":"./data/w3c-specs.txt"},"20110721":{"status":"WD","rawDate":"2011-07-21","href":"https://www.w3.org/TR/2011/WD-page-visibility-20110721/","source":"./data/w3c-specs.txt"},"20120726":{"status":"CR","rawDate":"2012-07-26","href":"https://www.w3.org/TR/2012/CR-page-visibility-20120726/","source":"./data/w3c-specs.txt"},"20130219":{"status":"PR","rawDate":"2013-02-19","href":"https://www.w3.org/TR/2013/PR-page-visibility-20130219/","source":"./data/w3c-specs.txt"},"20130514":{"authors":["Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2013/REC-page-visibility-20130514/","title":"Page Visibility","rawDate":"2013-05-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"hasErrata":"https://www.w3.org/2013/05/pv-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131029":{"authors":["Jatinder Mann","Arvind Jain"],"href":"https://www.w3.org/TR/2013/REC-page-visibility-20131029/","title":"Page Visibility (Second Edition)","rawDate":"2013-10-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"page-visibility-2":{"authors":["Ilya Grigorik","Marcos Caceres"],"href":"https://www.w3.org/TR/page-visibility-2/","title":"Page Visibility Level 2","rawDate":"2022-06-23","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/page-visibility/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160623":{"authors":["Ilya Grigorik","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/WD-page-visibility-2-20160623/","title":"Page Visibility 2","rawDate":"2016-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161026":{"href":"https://www.w3.org/TR/2016/WD-page-visibility-2-20161026/","title":"Page Visibility Level 2","rawDate":"2016-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161122":{"authors":["Ilya Grigorik","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2016/CR-page-visibility-2-20161122/","title":"Page Visibility Level 2","rawDate":"2016-11-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170328":{"authors":["Ilya Grigorik","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2017/CR-page-visibility-2-20170328/","title":"Page Visibility Level 2","rawDate":"2017-03-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171017":{"authors":["Ilya Grigorik","Arvind Jain","Jatinder Mann"],"href":"https://www.w3.org/TR/2017/PR-page-visibility-2-20171017/","title":"Page Visibility Level 2","rawDate":"2017-10-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210518":{"authors":["Ilya Grigorik","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/CR-page-visibility-2-20210518/","title":"Page Visibility Level 2","rawDate":"2021-05-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220623":{"authors":["Ilya Grigorik","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/DISC-page-visibility-2-20220623/","title":"Page Visibility Level 2","rawDate":"2022-06-23","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/page-visibility","isRetired":true},"paint-timing":{"authors":["Ian Clelland","Noam Rosenthal"],"href":"https://www.w3.org/TR/paint-timing/","title":"Paint Timing","rawDate":"2024-01-12","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/paint-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170907":{"authors":["Shubhie Panicker"],"href":"https://www.w3.org/TR/2017/WD-paint-timing-20170907/","title":"Paint Timing 1","rawDate":"2017-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Nicolas Pena Moreno","Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-paint-timing-20230703/","title":"Paint Timing","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231122":{"authors":["Nicolas Pena Moreno","Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/WD-paint-timing-20231122/","title":"Paint Timing","rawDate":"2023-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240110":{"authors":["Nicolas Pena Moreno","Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-paint-timing-20240110/","title":"Paint Timing","rawDate":"2024-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240112":{"authors":["Ian Clelland","Noam Rosenthal"],"href":"https://www.w3.org/TR/2024/WD-paint-timing-20240112/","title":"Paint Timing","rawDate":"2024-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/paint-timing"},"patent-practice":{"versions":{"20020124":{"status":"NOTE","rawDate":"2002-01-24","href":"https://www.w3.org/TR/2002/NOTE-patent-practice-20020124","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/patent-practice","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-01-24","title":"Current Patent Practice"},"payment-handler":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/payment-handler/","title":"Payment Handler API","rawDate":"2023-01-25","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/payment-handler/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170518":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170518/","title":"Payment Handler API","rawDate":"2017-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170622":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170622/","title":"Payment Handler API","rawDate":"2017-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170623":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170623/","title":"Payment Handler API","rawDate":"2017-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170624":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170624/","title":"Payment Handler API","rawDate":"2017-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170726":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170726/","title":"Payment Handler API","rawDate":"2017-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170803":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170803/","title":"Payment Handler API","rawDate":"2017-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170804":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170804/","title":"Payment Handler API","rawDate":"2017-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170815":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170815/","title":"Payment Handler API","rawDate":"2017-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170822":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170822/","title":"Payment Handler API","rawDate":"2017-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170830":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170830/","title":"Payment Handler API","rawDate":"2017-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170905":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170905/","title":"Payment Handler API","rawDate":"2017-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170918":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170918/","title":"Payment Handler API","rawDate":"2017-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170919":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170919/","title":"Payment Handler API","rawDate":"2017-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170921":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20170921/","title":"Payment Handler API","rawDate":"2017-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171004":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20171004/","title":"Payment Handler API","rawDate":"2017-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171010":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20171010/","title":"Payment Handler API","rawDate":"2017-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171113":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20171113/","title":"Payment Handler API","rawDate":"2017-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171129":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20171129/","title":"Payment Handler API","rawDate":"2017-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171203":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2017/WD-payment-handler-20171203/","title":"Payment Handler API","rawDate":"2017-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180108":{"authors":["Adrian Hope-Bailie","Tommy Thorsen","Adam Roach","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2018/WD-payment-handler-20180108/","title":"Payment Handler API","rawDate":"2018-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190924":{"authors":["Adrian Hope-Bailie","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang","Tommy Thorsen","Adam Roach"],"href":"https://www.w3.org/TR/2019/WD-payment-handler-20190924/","title":"Payment Handler API","rawDate":"2019-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191021":{"authors":["Adrian Hope-Bailie","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang","Tommy Thorsen","Adam Roach"],"href":"https://www.w3.org/TR/2019/WD-payment-handler-20191021/","title":"Payment Handler API","rawDate":"2019-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210428":{"authors":["Adrian Hope-Bailie","Jason Normore","Ian Jacobs","Rouslan Solomakhin","Jinho Bang","Tommy Thorsen","Adam Roach"],"href":"https://www.w3.org/TR/2021/WD-payment-handler-20210428/","title":"Payment Handler API","rawDate":"2021-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang","Jason Normore","Tommy Thorsen","Adam Roach"],"href":"https://www.w3.org/TR/2021/WD-payment-handler-20210604/","title":"Payment Handler API","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210714":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang","Jason Normore","Tommy Thorsen","Adam Roach"],"href":"https://www.w3.org/TR/2021/WD-payment-handler-20210714/","title":"Payment Handler API","rawDate":"2021-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211004":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang","Jason Normore","Tommy Thorsen","Adam Roach"],"href":"https://www.w3.org/TR/2021/WD-payment-handler-20211004/","title":"Payment Handler API","rawDate":"2021-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220912":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2022/WD-payment-handler-20220912/","title":"Payment Handler API","rawDate":"2022-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221214":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2022/WD-payment-handler-20221214/","title":"Payment Handler API","rawDate":"2022-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Adrian Hope-Bailie","Ian Jacobs","Rouslan Solomakhin","Jinho Bang"],"href":"https://www.w3.org/TR/2023/WD-payment-handler-20230125/","title":"Payment Handler API","rawDate":"2023-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/payment-handler"},"payment-method-basic-card":{"authors":["Ian Jacobs","Marcos Caceres","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/payment-method-basic-card/","title":"Payment Method: Basic Card","rawDate":"2021-08-27","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/payment-method-basic-card/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160421":{"authors":["Adrian Bateman","Zach Koch","Richard Barnes","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-method-basic-card-20160421/","title":"Basic Card Payment","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161207":{"href":"https://www.w3.org/TR/2016/WD-payment-method-basic-card-20161207/","title":"Basic Card Payment","rawDate":"2016-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161220":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-method-basic-card-20161220/","title":"Basic Card Payment","rawDate":"2016-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170120":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-basic-card-20170120/","title":"Basic Card Payment","rawDate":"2017-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170315":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-basic-card-20170315/","title":"Basic Card Payment","rawDate":"2017-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-basic-card-20170504/","title":"Basic Card Payment","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170726":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-basic-card-20170726/","title":"Basic Card Payment","rawDate":"2017-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170727":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-basic-card-20170727/","title":"Basic Card Payment","rawDate":"2017-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180329":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20180329/","title":"Payment Method: Basic Card","rawDate":"2018-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180510":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20180510/","title":"Payment Method: Basic Card","rawDate":"2018-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180920":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20180920/","title":"Payment Method: Basic Card","rawDate":"2018-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181002":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181002/","title":"Payment Method: Basic Card","rawDate":"2018-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181004":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181004/","title":"Payment Method: Basic Card","rawDate":"2018-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181017":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181017/","title":"Payment Method: Basic Card","rawDate":"2018-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181101":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181101/","title":"Payment Method: Basic Card","rawDate":"2018-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181114":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181114/","title":"Payment Method: Basic Card","rawDate":"2018-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181115":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181115/","title":"Payment Method: Basic Card","rawDate":"2018-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181121":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181121/","title":"Payment Method: Basic Card","rawDate":"2018-11-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181220":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2018/WD-payment-method-basic-card-20181220/","title":"Payment Method: Basic Card","rawDate":"2018-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190117":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190117/","title":"Payment Method: Basic Card","rawDate":"2019-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190314":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190314/","title":"Payment Method: Basic Card","rawDate":"2019-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190324":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190324/","title":"Payment Method: Basic Card","rawDate":"2019-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190326":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190326/","title":"Payment Method: Basic Card","rawDate":"2019-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190328":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190328/","title":"Payment Method: Basic Card","rawDate":"2019-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190330":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190330/","title":"Payment Method: Basic Card","rawDate":"2019-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190403":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190403/","title":"Payment Method: Basic Card","rawDate":"2019-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190412":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190412/","title":"Payment Method: Basic Card","rawDate":"2019-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190424":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190424/","title":"Payment Method: Basic Card","rawDate":"2019-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190425":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190425/","title":"Payment Method: Basic Card","rawDate":"2019-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190730":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190730/","title":"Payment Method: Basic Card","rawDate":"2019-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190917":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20190917/","title":"Payment Method: Basic Card","rawDate":"2019-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191119":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20191119/","title":"Payment Method: Basic Card","rawDate":"2019-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191120":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/WD-payment-method-basic-card-20191120/","title":"Payment Method: Basic Card","rawDate":"2019-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200123":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2020/WD-payment-method-basic-card-20200123/","title":"Payment Method: Basic Card","rawDate":"2020-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200212":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2020/WD-payment-method-basic-card-20200212/","title":"Payment Method: Basic Card","rawDate":"2020-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200213":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2020/WD-payment-method-basic-card-20200213/","title":"Payment Method: Basic Card","rawDate":"2020-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210827":{"authors":["Ian Jacobs","Marcos Caceres","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2021/NOTE-payment-method-basic-card-20210827/","title":"Payment Method: Basic Card","rawDate":"2021-08-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/payment-method-basic-card","isRetired":true},"payment-method-id":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/payment-method-id/","title":"Payment Method Identifiers","rawDate":"2022-09-08","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/payment-method-id/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160421":{"authors":["Adrian Bateman","Zach Koch","Richard Barnes","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-method-id-20160421/","title":"Payment Method Identifiers","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["Adrian Bateman","Zach Koch","Richard Barnes","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-method-id-20160705/","title":"Payment Method Identifiers","rawDate":"2016-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161207":{"href":"https://www.w3.org/TR/2016/WD-payment-method-id-20161207/","title":"Payment Method Identifiers","rawDate":"2016-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170223/","title":"Payment Method Identifiers","rawDate":"2017-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170320":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170320/","title":"Payment Method Identifiers","rawDate":"2017-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170504/","title":"Payment Method Identifiers","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170505":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170505/","title":"Payment Method Identifiers","rawDate":"2017-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170623":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170623/","title":"Payment Method Identifiers","rawDate":"2017-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170726":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170726/","title":"Payment Method Identifiers","rawDate":"2017-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170815":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170815/","title":"Payment Method Identifiers","rawDate":"2017-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170816":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170816/","title":"Payment Method Identifiers","rawDate":"2017-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170831":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170831/","title":"Payment Method Identifiers","rawDate":"2017-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170907":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-method-id-20170907/","title":"Payment Method Identifiers","rawDate":"2017-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170914":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/CR-payment-method-id-20170914/","title":"Payment Method Identifiers","rawDate":"2017-09-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190327":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/CR-payment-method-id-20190327/","title":"Payment Method Identifiers","rawDate":"2019-03-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190403":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Adrian Bateman"],"href":"https://www.w3.org/TR/2019/CR-payment-method-id-20190403/","title":"Payment Method Identifiers","rawDate":"2019-04-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190905":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2019/CR-payment-method-id-20190905/","title":"Payment Method Identifiers","rawDate":"2019-09-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210827":{"authors":["Marcos Caceres","Adrian Bateman","Domenic Denicola","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2021/CRD-payment-method-id-20210827/","title":"Payment Method Identifiers","rawDate":"2021-08-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Marcos Caceres","Adrian Bateman","Domenic Denicola","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2021/CRD-payment-method-id-20210928/","title":"Payment Method Identifiers","rawDate":"2021-09-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2021/PR-payment-method-id-20210930/","title":"Payment Method Identifiers","rawDate":"2021-09-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/REC-payment-method-id-20220908/","title":"Payment Method Identifiers","rawDate":"2022-09-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"hasErrata":"https://www.w3.org/Payments/WG/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/payment-method-id","hasErrata":"https://www.w3.org/Payments/WG/errata.html"},"payment-method-manifest":{"authors":["Dapeng(Max) Liu","Domenic Denicola","Zach Koch"],"href":"https://www.w3.org/TR/payment-method-manifest/","title":"Payment Method Manifest","rawDate":"2017-12-12","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/payment-method-manifest/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20171212":{"authors":["Dapeng(Max) Liu","Domenic Denicola","Zach Koch"],"href":"https://www.w3.org/TR/2017/WD-payment-method-manifest-20171212/","title":"Payment Method Manifest","rawDate":"2017-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/payment-method-manifest"},"payment-request":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/payment-request/","title":"Payment Request API","rawDate":"2022-09-08","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/payment-request/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160421":{"authors":["Adrian Bateman","Zach Koch","Richard Barnes","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-request-20160421/","title":"Payment Request API","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["Adrian Bateman","Zach Koch","Richard Barnes","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-request-20160705/","title":"Payment Request API","rawDate":"2016-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"href":"https://www.w3.org/TR/2016/WD-payment-request-20161206/","title":"Payment Request API","rawDate":"2016-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161207":{"href":"https://www.w3.org/TR/2016/WD-payment-request-20161207/","title":"Payment Request API","rawDate":"2016-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161208":{"href":"https://www.w3.org/TR/2016/WD-payment-request-20161208/","title":"Payment Request API","rawDate":"2016-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161209":{"href":"https://www.w3.org/TR/2016/WD-payment-request-20161209/","title":"Payment Request API","rawDate":"2016-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-request-20161213/","title":"Payment Request API","rawDate":"2016-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161214":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2016/WD-payment-request-20161214/","title":"Payment Request API","rawDate":"2016-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170104":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170104/","title":"Payment Request API","rawDate":"2017-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170111":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170111/","title":"Payment Request API","rawDate":"2017-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170307":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170307/","title":"Payment Request API","rawDate":"2017-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170308":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170308/","title":"Payment Request API","rawDate":"2017-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170310":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170310/","title":"Payment Request API","rawDate":"2017-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170315":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170315/","title":"Payment Request API","rawDate":"2017-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170316":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170316/","title":"Payment Request API","rawDate":"2017-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170321/","title":"Payment Request API","rawDate":"2017-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170322":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170322/","title":"Payment Request API","rawDate":"2017-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170323":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170323/","title":"Payment Request API","rawDate":"2017-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170330":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170330/","title":"Payment Request API","rawDate":"2017-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170331":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170331/","title":"Payment Request API","rawDate":"2017-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170420":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170420/","title":"Payment Request API","rawDate":"2017-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170427":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170427/","title":"Payment Request API","rawDate":"2017-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170503":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170503/","title":"Payment Request API","rawDate":"2017-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170628":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170628/","title":"Payment Request API","rawDate":"2017-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170725":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170725/","title":"Payment Request API","rawDate":"2017-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170728":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170728/","title":"Payment Request API","rawDate":"2017-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170810":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170810/","title":"Payment Request API","rawDate":"2017-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170811":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170811/","title":"Payment Request API","rawDate":"2017-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170815":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170815/","title":"Payment Request API","rawDate":"2017-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170816":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170816/","title":"Payment Request API","rawDate":"2017-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170817":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170817/","title":"Payment Request API","rawDate":"2017-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170821":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170821/","title":"Payment Request API","rawDate":"2017-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170822":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170822/","title":"Payment Request API","rawDate":"2017-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170824":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170824/","title":"Payment Request API","rawDate":"2017-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170825":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170825/","title":"Payment Request API","rawDate":"2017-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170831":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170831/","title":"Payment Request API","rawDate":"2017-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170901":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170901/","title":"Payment Request API","rawDate":"2017-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170904":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170904/","title":"Payment Request API","rawDate":"2017-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170905":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170905/","title":"Payment Request API","rawDate":"2017-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170906":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170906/","title":"Payment Request API","rawDate":"2017-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170908":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170908/","title":"Payment Request API","rawDate":"2017-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170911":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170911/","title":"Payment Request API","rawDate":"2017-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170913":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-payment-request-20170913/","title":"Payment Request API","rawDate":"2017-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170914":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/CR-payment-request-20170914/","title":"Payment Request API","rawDate":"2017-09-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170921":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/CR-payment-request-20170921/","title":"Payment Request API","rawDate":"2017-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180123":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180123/","title":"Payment Request API","rawDate":"2018-01-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180222":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180222/","title":"Payment Request API","rawDate":"2018-02-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180301":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180301/","title":"Payment Request API","rawDate":"2018-03-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180320/","title":"Payment Request API","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180503":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180503/","title":"Payment Request API","rawDate":"2018-05-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180522":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180522/","title":"Payment Request API","rawDate":"2018-05-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180607":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180607/","title":"Payment Request API","rawDate":"2018-06-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180709":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180709/","title":"Payment Request API","rawDate":"2018-07-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180710":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180710/","title":"Payment Request API","rawDate":"2018-07-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180716":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180716/","title":"Payment Request API","rawDate":"2018-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180718":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180718/","title":"Payment Request API","rawDate":"2018-07-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180810":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180810/","title":"Payment Request API","rawDate":"2018-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180817":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180817/","title":"Payment Request API","rawDate":"2018-08-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180820":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180820/","title":"Payment Request API","rawDate":"2018-08-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180830":{"authors":["Adrian Bateman","Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/CR-payment-request-20180830/","title":"Payment Request API","rawDate":"2018-08-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190416":{"authors":["Zach Koch","Roy McElmurry","Domenic Denicola","Marcos Caceres","Ian Jacobs","Rouslan Solomakhin"],"href":"https://www.w3.org/TR/2019/CR-payment-request-20190416/","title":"Payment Request API","rawDate":"2019-04-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191212":{"authors":["Marcos Caceres","Domenic Denicola","Zach Koch","Roy McElmurry","Ian Jacobs","Rouslan Solomakhin"],"href":"https://www.w3.org/TR/2019/CR-payment-request-20191212/","title":"Payment Request API","rawDate":"2019-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201203":{"authors":["Marcos Caceres","Danyao Wang","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2020/CR-payment-request-20201203/","title":"Payment Request API","rawDate":"2020-12-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210629":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry","Danyao Wang"],"href":"https://www.w3.org/TR/2021/CRD-payment-request-20210629/","title":"Payment Request API","rawDate":"2021-06-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210722":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry","Danyao Wang"],"href":"https://www.w3.org/TR/2021/CRD-payment-request-20210722/","title":"Payment Request API","rawDate":"2021-07-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry","Danyao Wang"],"href":"https://www.w3.org/TR/2021/CRD-payment-request-20210823/","title":"Payment Request API","rawDate":"2021-08-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210827":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry","Danyao Wang"],"href":"https://www.w3.org/TR/2021/CRD-payment-request-20210827/","title":"Payment Request API","rawDate":"2021-08-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210907":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry","Danyao Wang"],"href":"https://www.w3.org/TR/2021/CRD-payment-request-20210907/","title":"Payment Request API","rawDate":"2021-09-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs","Domenic Denicola","Adrian Bateman","Zach Koch","Roy McElmurry","Danyao Wang"],"href":"https://www.w3.org/TR/2021/CRD-payment-request-20210928/","title":"Payment Request API","rawDate":"2021-09-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2021/PR-payment-request-20210930/","title":"Payment Request API","rawDate":"2021-09-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2022/REC-payment-request-20220908/","title":"Payment Request API","rawDate":"2022-09-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"hasErrata":"https://www.w3.org/Payments/WG/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/payment-request","hasErrata":"https://www.w3.org/Payments/WG/errata.html"},"payment-request-1.1":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/payment-request-1.1/","title":"Payment Request API 1.1","rawDate":"2024-02-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/payment-request/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220726":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2022/WD-payment-request-1.1-20220726/","title":"Payment Request API 1.1","rawDate":"2022-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230627":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2023/WD-payment-request-1.1-20230627/","title":"Payment Request API 1.1","rawDate":"2023-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2023/WD-payment-request-1.1-20230628/","title":"Payment Request API 1.1","rawDate":"2023-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240116":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2024/WD-payment-request-1.1-20240116/","title":"Payment Request API 1.1","rawDate":"2024-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240118":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2024/WD-payment-request-1.1-20240118/","title":"Payment Request API 1.1","rawDate":"2024-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240205":{"authors":["Marcos Caceres","Rouslan Solomakhin","Ian Jacobs"],"href":"https://www.w3.org/TR/2024/WD-payment-request-1.1-20240205/","title":"Payment Request API 1.1","rawDate":"2024-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/payment-request"},"performance-timeline":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/performance-timeline/","title":"Performance Timeline","rawDate":"2024-02-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110811":{"status":"WD","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/WD-performance-timeline-20110811/","source":"./data/w3c-specs.txt"},"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-performance-timeline-20110901/","source":"./data/w3c-specs.txt"},"20120508":{"status":"WD","rawDate":"2012-05-08","href":"https://www.w3.org/TR/2012/WD-performance-timeline-20120508/","source":"./data/w3c-specs.txt"},"20120726":{"authors":["Jatinder Mann","Zhiheng Wang"],"href":"https://www.w3.org/TR/2012/CR-performance-timeline-20120726/","title":"Performance Timeline","rawDate":"2012-07-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131031":{"authors":["Jatinder Mann","Zhiheng Wang"],"href":"https://www.w3.org/TR/2013/PR-performance-timeline-20131031/","title":"Performance Timeline","rawDate":"2013-10-31","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131212":{"authors":["Jatinder Mann","Zhiheng Wang"],"href":"https://www.w3.org/TR/2013/REC-performance-timeline-20131212/","title":"Performance Timeline","rawDate":"2013-12-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150717":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20150717/","title":"Performance Timeline Level 2","rawDate":"2015-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150915":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20150915/","title":"Performance Timeline Level 2","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20150918/","title":"Performance Timeline Level 2","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150923":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20150923/","title":"Performance Timeline Level 2","rawDate":"2015-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20150924/","title":"Performance Timeline Level 2","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150925":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20150925/","title":"Performance Timeline Level 2","rawDate":"2015-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151021":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20151021/","title":"Performance Timeline Level 2","rawDate":"2015-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151024":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20151024/","title":"Performance Timeline Level 2","rawDate":"2015-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151105":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20151105/","title":"Performance Timeline Level 2","rawDate":"2015-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151125":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20151125/","title":"Performance Timeline Level 2","rawDate":"2015-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151203":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20151203/","title":"Performance Timeline Level 2","rawDate":"2015-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151207":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-performance-timeline-2-20151207/","title":"Performance Timeline Level 2","rawDate":"2015-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20160225/","title":"Performance Timeline Level 2","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20160421/","title":"Performance Timeline Level 2","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160907":{"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20160907/","title":"Performance Timeline Level 2","rawDate":"2016-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160928":{"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20160928/","title":"Performance Timeline Level 2","rawDate":"2016-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160929":{"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20160929/","title":"Performance Timeline Level 2","rawDate":"2016-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161024":{"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20161024/","title":"Performance Timeline Level 2","rawDate":"2016-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161027":{"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20161027/","title":"Performance Timeline Level 2","rawDate":"2016-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161114":{"href":"https://www.w3.org/TR/2016/WD-performance-timeline-2-20161114/","title":"Performance Timeline Level 2","rawDate":"2016-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161208":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang"],"href":"https://www.w3.org/TR/2016/CR-performance-timeline-2-20161208/","title":"Performance Timeline Level 2","rawDate":"2016-12-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181030":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang"],"href":"https://www.w3.org/TR/2018/WD-performance-timeline-2-20181030/","title":"Performance Timeline Level 2","rawDate":"2018-10-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181119":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-performance-timeline-2-20181119/","title":"Performance Timeline Level 2","rawDate":"2018-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181127":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-performance-timeline-2-20181127/","title":"Performance Timeline Level 2","rawDate":"2018-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190110":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190110/","title":"Performance Timeline Level 2","rawDate":"2019-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190320":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190320/","title":"Performance Timeline Level 2","rawDate":"2019-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190321":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190321/","title":"Performance Timeline Level 2","rawDate":"2019-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190329":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190329/","title":"Performance Timeline Level 2","rawDate":"2019-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190423":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190423/","title":"Performance Timeline Level 2","rawDate":"2019-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190626/","title":"Performance Timeline Level 2","rawDate":"2019-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190917":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20190917/","title":"Performance Timeline Level 2","rawDate":"2019-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191024":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-performance-timeline-2-20191024/","title":"Performance Timeline Level 2","rawDate":"2019-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210630":{"authors":["Nicolas Pena Moreno","Ilya Grigorik"],"href":"https://www.w3.org/TR/2021/WD-performance-timeline-2-20210630/","title":"Performance Timeline Level 2","rawDate":"2021-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210819":{"authors":["Nicolas Pena Moreno","Ilya Grigorik"],"href":"https://www.w3.org/TR/2021/WD-performance-timeline-2-20210819/","title":"Performance Timeline Level 2","rawDate":"2021-08-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2021/WD-performance-timeline-2-20211125/","title":"Performance Timeline Level 2","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2021/CR-performance-timeline-20211202/","title":"Performance Timeline","rawDate":"2021-12-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221110":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2022/CRD-performance-timeline-20221110/","title":"Performance Timeline","rawDate":"2022-11-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221115":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2022/CRD-performance-timeline-20221115/","title":"Performance Timeline","rawDate":"2022-11-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231011":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2023/CRD-performance-timeline-20231011/","title":"Performance Timeline","rawDate":"2023-10-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240202":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2024/CRD-performance-timeline-20240202/","title":"Performance Timeline","rawDate":"2024-02-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/performance-timeline/","repository":"https://github.com/w3c/performance-timeline"},"performance-timeline-2":{"aliasOf":"performance-timeline"},"permissions":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/permissions/","title":"Permissions","rawDate":"2024-01-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/permissions/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150407":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2015/WD-permissions-20150407/","title":"The Permissions API","rawDate":"2015-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170925":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2017/WD-permissions-20170925/","title":"Permissions","rawDate":"2017-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200720":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2020/WD-permissions-20200720/","title":"Permissions","rawDate":"2020-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210615":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210615/","title":"Permissions","rawDate":"2021-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210617/","title":"Permissions","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210622":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210622/","title":"Permissions","rawDate":"2021-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210624/","title":"Permissions","rawDate":"2021-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210713":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210713/","title":"Permissions","rawDate":"2021-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210720":{"authors":["Mounir Lamouri","Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210720/","title":"Permissions","rawDate":"2021-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210830":{"authors":["Marcos Caceres","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210830/","title":"Permissions","rawDate":"2021-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Marcos Caceres","Micheal Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210831/","title":"Permissions","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210907":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20210907/","title":"Permissions","rawDate":"2021-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211012/","title":"Permissions","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211013/","title":"Permissions","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211014":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211014/","title":"Permissions","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211017":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211017/","title":"Permissions","rawDate":"2021-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211023":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211023/","title":"Permissions","rawDate":"2021-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211026/","title":"Permissions","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211027":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211027/","title":"Permissions","rawDate":"2021-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211028":{"authors":["Marcos Caceres","Mike Taylor","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211028/","title":"Permissions","rawDate":"2021-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211119/","title":"Permissions","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211121":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211121/","title":"Permissions","rawDate":"2021-11-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211123/","title":"Permissions","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211124":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211124/","title":"Permissions","rawDate":"2021-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2021/WD-permissions-20211207/","title":"Permissions","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220118":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220118/","title":"Permissions","rawDate":"2022-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220202/","title":"Permissions","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220204":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220204/","title":"Permissions","rawDate":"2022-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220207":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220207/","title":"Permissions","rawDate":"2022-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220209/","title":"Permissions","rawDate":"2022-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220210/","title":"Permissions","rawDate":"2022-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220214":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220214/","title":"Permissions","rawDate":"2022-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220215/","title":"Permissions","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220222":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220222/","title":"Permissions","rawDate":"2022-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220224/","title":"Permissions","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220225/","title":"Permissions","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220303":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220303/","title":"Permissions","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220311":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220311/","title":"Permissions","rawDate":"2022-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220506":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220506/","title":"Permissions","rawDate":"2022-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220509":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220509/","title":"Permissions","rawDate":"2022-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220527":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220527/","title":"Permissions","rawDate":"2022-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220730":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220730/","title":"Permissions","rawDate":"2022-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20220907/","title":"Permissions","rawDate":"2022-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20221019/","title":"Permissions","rawDate":"2022-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20221209/","title":"Permissions","rawDate":"2022-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221210":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20221210/","title":"Permissions","rawDate":"2022-12-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221220":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2022/WD-permissions-20221220/","title":"Permissions","rawDate":"2022-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230613":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2023/WD-permissions-20230613/","title":"Permissions","rawDate":"2023-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231122":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2023/WD-permissions-20231122/","title":"Permissions","rawDate":"2023-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231201":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2023/WD-permissions-20231201/","title":"Permissions","rawDate":"2023-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240112":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2024/WD-permissions-20240112/","title":"Permissions","rawDate":"2024-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240116":{"authors":["Marcos Caceres","Mike Taylor"],"href":"https://www.w3.org/TR/2024/WD-permissions-20240116/","title":"Permissions","rawDate":"2024-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/permissions"},"permissions-policy":{"aliasOf":"permissions-policy-1"},"permissions-policy-1":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/permissions-policy-1/","title":"Permissions Policy","rawDate":"2023-12-18","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-permissions-policy/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190416":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2019/WD-feature-policy-1-20190416/","title":"Feature Policy","rawDate":"2019-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200716":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2020/WD-permissions-policy-1-20200716/","title":"Permissions Policy","rawDate":"2020-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2022/WD-permissions-policy-1-20221207/","title":"Permissions Policy","rawDate":"2022-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230123":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230123/","title":"Permissions Policy","rawDate":"2023-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230217":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230217/","title":"Permissions Policy","rawDate":"2023-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230222/","title":"Permissions Policy","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230322":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230322/","title":"Permissions Policy","rawDate":"2023-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230607":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230607/","title":"Permissions Policy","rawDate":"2023-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230630":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230630/","title":"Permissions Policy","rawDate":"2023-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230705/","title":"Permissions Policy","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230717":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230717/","title":"Permissions Policy","rawDate":"2023-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230911":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230911/","title":"Permissions Policy","rawDate":"2023-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230912":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20230912/","title":"Permissions Policy","rawDate":"2023-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20231013/","title":"Permissions Policy","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20231016/","title":"Permissions Policy","rawDate":"2023-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231017":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20231017/","title":"Permissions Policy","rawDate":"2023-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231218":{"authors":["Ian Clelland"],"href":"https://www.w3.org/TR/2023/WD-permissions-policy-1-20231218/","title":"Permissions Policy","rawDate":"2023-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-permissions-policy"},"personalization-semantics-1.0":{"aliasOf":"adapt"},"personalization-semantics-content-1.0":{"aliasOf":"adapt-symbols"},"personalization-semantics-help-1.0":{"aliasOf":"adapt-help"},"personalization-semantics-requirements-1.0":{"aliasOf":"adapt-requirements"},"personalization-semantics-tools-1.0":{"aliasOf":"adapt-tools"},"photo-rdf":{"versions":{"20000928":{"status":"NOTE","rawDate":"2000-09-28","href":"https://www.w3.org/TR/2000/NOTE-photo-rdf-20000928","source":"./data/w3c-specs.txt"},"20020419":{"status":"NOTE","rawDate":"2002-04-19","href":"https://www.w3.org/TR/2002/NOTE-photo-rdf-20020419","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/photo-rdf/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-04-19","title":"Describing and retrieving photos using RDF and HTTP"},"pics-ng-metadata":{"versions":{"19970514":{"status":"NOTE","rawDate":"1997-05-14","href":"https://www.w3.org/TR/NOTE-pics-ng-metadata-970514","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-pics-ng-metadata","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-05-14","title":"PICS-NG Metadata Model and Label Syntax"},"picture-in-picture":{"authors":["Francois Beaufort"],"href":"https://www.w3.org/TR/picture-in-picture/","title":"Picture-in-Picture","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"repository":"https://github.com/w3c/picture-in-picture","rawDate":"2022-12-19","edDraft":"https://w3c.github.io/picture-in-picture/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200130":{"authors":["Francois Beaufort","Mounir Lamouri"],"href":"https://www.w3.org/TR/2020/WD-picture-in-picture-20200130/","title":"Picture-in-Picture","rawDate":"2020-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210315":{"authors":["Francois Beaufort","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-picture-in-picture-20210315/","title":"Picture-in-Picture","rawDate":"2021-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210505":{"authors":["Francois Beaufort","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-picture-in-picture-20210505/","title":"Picture-in-Picture","rawDate":"2021-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Francois Beaufort","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-picture-in-picture-20210604/","title":"Picture-in-Picture","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210830":{"authors":["Francois Beaufort","Mounir Lamouri"],"href":"https://www.w3.org/TR/2021/WD-picture-in-picture-20210830/","title":"Picture-in-Picture","rawDate":"2021-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220428":{"authors":["Francois Beaufort"],"href":"https://www.w3.org/TR/2022/WD-picture-in-picture-20220428/","title":"Picture-in-Picture","rawDate":"2022-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Francois Beaufort"],"href":"https://www.w3.org/TR/2022/WD-picture-in-picture-20220609/","title":"Picture-in-Picture","rawDate":"2022-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220725":{"authors":["Francois Beaufort"],"href":"https://www.w3.org/TR/2022/WD-picture-in-picture-20220725/","title":"Picture-in-Picture","rawDate":"2022-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221206":{"authors":["Francois Beaufort"],"href":"https://www.w3.org/TR/2022/WD-picture-in-picture-20221206/","title":"Picture-in-Picture","rawDate":"2022-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221219":{"authors":["Francois Beaufort"],"href":"https://www.w3.org/TR/2022/WD-picture-in-picture-20221219/","title":"Picture-in-Picture","rawDate":"2022-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"png-3":{"authors":["Chris Lilley","Leonard Rosenthol","Pierre-Anthony Lemieux","Chris Seeger","Chris Blume"],"href":"https://www.w3.org/TR/png-3/","title":"Portable Network Graphics (PNG) Specification (Third Edition)","rawDate":"2023-09-21","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/PNG-spec/","deliveredBy":["https://www.w3.org/groups/wg/png/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221025":{"authors":["Chris Blume","Pierre-Anthony Lemieux","Chris Lilley","Leonard Rosenthol","Chris Seeger"],"href":"https://www.w3.org/TR/2022/WD-png-3-20221025/","title":"Portable Network Graphics (PNG) Specification (Third Edition)","rawDate":"2022-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/png/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Chris Lilley","Leonard Rosenthol","Pierre-Anthony Lemieux","Chris Seeger","Chris Blume"],"href":"https://www.w3.org/TR/2023/WD-png-3-20230720/","title":"Portable Network Graphics (PNG) Specification (Third Edition)","rawDate":"2023-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/png/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Chris Lilley","Leonard Rosenthol","Pierre-Anthony Lemieux","Chris Seeger","Chris Blume"],"href":"https://www.w3.org/TR/2023/CR-png-3-20230921/","title":"Portable Network Graphics (PNG) Specification (Third Edition)","rawDate":"2023-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/png/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/PNG-spec"},"png-hdr-pq":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/png-hdr-pq/","title":"Using the ITU BT.2100 PQ EOTF with the PNG Format","rawDate":"2017-09-11","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/png-hdr-pq/","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170725":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/NOTE-png-hdr-pq-20170725/","title":"Using the ITU BT.2100 PQ EOTF with the PNG Format","rawDate":"2017-07-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170727":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/NOTE-png-hdr-pq-20170727/","title":"Using the ITU BT.2100 PQ EOTF with the PNG Format","rawDate":"2017-07-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170911":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/NOTE-png-hdr-pq-20170911/","title":"Using the ITU BT.2100 PQ EOTF with the PNG Format","rawDate":"2017-09-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/png-hdr-pq"},"poe-ucr":{"authors":["Michael Steidl","Simon Steyskal","Benedict Whittam Smith"],"href":"https://www.w3.org/TR/poe-ucr/","title":"POE Use Cases and Requirements","rawDate":"2017-02-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/poe/ucr/","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160721":{"authors":["Michael Steidl","Simon Steyskal","Benedict Whittam Smith"],"href":"https://www.w3.org/TR/2016/NOTE-poe-ucr-20160721/","title":"POE Use Cases and Requirements","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Michael Steidl","Simon Steyskal","Benedict Whittam Smith"],"href":"https://www.w3.org/TR/2017/WD-poe-ucr-20170223/","title":"POE Use Cases and Requirements","rawDate":"2017-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/poe/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/poe"},"poi-core":{"authors":["Matt Womer"],"href":"https://www.w3.org/TR/poi-core/","title":"Points of Interest Core","rawDate":"2011-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/POI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110512":{"authors":["Matt Womer"],"href":"https://www.w3.org/TR/2011/WD-poi-core-20110512/","title":"Points of Interest Core","rawDate":"2011-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/POI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"pointerevents":{"authors":["Jacob Rossi","Matt Brubeck"],"href":"https://www.w3.org/TR/pointerevents/","title":"Pointer Events","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"versions":{"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-pointerevents-20121211/","source":"./data/w3c-specs.txt"},"20130115":{"status":"WD","rawDate":"2013-01-15","href":"https://www.w3.org/TR/2013/WD-pointerevents-20130115/","source":"./data/w3c-specs.txt"},"20130219":{"status":"WD","rawDate":"2013-02-19","href":"https://www.w3.org/TR/2013/WD-pointerevents-20130219/","source":"./data/w3c-specs.txt"},"20130509":{"authors":["Jacob Rossi","Matt Brubeck"],"href":"https://www.w3.org/TR/2013/CR-pointerevents-20130509/","title":"Pointer Events","rawDate":"2013-05-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141113":{"authors":["Jacob Rossi","Matt Brubeck"],"href":"https://www.w3.org/TR/2014/WD-pointerevents-20141113/","title":"Pointer Events","rawDate":"2014-11-13","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Jacob Rossi","Matt Brubeck"],"href":"https://www.w3.org/TR/2014/PR-pointerevents-20141216/","title":"Pointer Events","rawDate":"2014-12-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150224":{"authors":["Jacob Rossi","Matt Brubeck"],"href":"https://www.w3.org/TR/2015/REC-pointerevents-20150224/","title":"Pointer Events","rawDate":"2015-02-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190404":{"authors":["Jacob Rossi","Matt Brubeck"],"href":"https://www.w3.org/TR/2019/SPSD-pointerevents1-20190404/","title":"Pointer Events","rawDate":"2019-04-04","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2019-04-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://dvcs.w3.org/hg/pointerevents/raw-file/tip/pointerEvents.html","isRetired":true},"pointerevents2":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/pointerevents2/","title":"Pointer Events","rawDate":"2019-04-04","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/pointerevents/","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160719":{"authors":["Jacob Rossi","Matt Brubeck","Rick Byers","Patrick Lauke"],"href":"https://www.w3.org/TR/2016/WD-pointerevents2-20160719/","title":"Pointer Events - Level 2","rawDate":"2016-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180206":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke"],"href":"https://www.w3.org/TR/2018/WD-pointerevents2-20180206/","title":"Pointer Events","rawDate":"2018-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180404":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke"],"href":"https://www.w3.org/TR/2018/WD-pointerevents2-20180404/","title":"Pointer Events","rawDate":"2018-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180510":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke"],"href":"https://www.w3.org/TR/2018/CR-pointerevents2-20180510/","title":"Pointer Events","rawDate":"2018-05-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180522":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke"],"href":"https://www.w3.org/TR/2018/CR-pointerevents2-20180522/","title":"Pointer Events","rawDate":"2018-05-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181016":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2018/PR-pointerevents2-20181016/","title":"Pointer Events","rawDate":"2018-10-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181211":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2018/CR-pointerevents2-20181211/","title":"Pointer Events","rawDate":"2018-12-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190221":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2019/PR-pointerevents2-20190221/","title":"Pointer Events","rawDate":"2019-02-21","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190404":{"authors":["Matt Brubeck","Rick Byers","Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2019/REC-pointerevents2-20190404/","title":"Pointer Events","rawDate":"2019-04-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pointerevents"},"pointerevents3":{"authors":["Patrick Lauke","Robert Flack"],"href":"https://www.w3.org/TR/pointerevents3/","title":"Pointer Events","rawDate":"2024-02-01","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/pointerevents/","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191212":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2019/WD-pointerevents3-20191212/","title":"Pointer Events Level 3","rawDate":"2019-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200921":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2020/WD-pointerevents3-20200921/","title":"Pointer Events","rawDate":"2020-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2020/WD-pointerevents3-20201001/","title":"Pointer Events","rawDate":"2020-10-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210512":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210512/","title":"Pointer Events","rawDate":"2021-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210513/","title":"Pointer Events","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210515":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210515/","title":"Pointer Events","rawDate":"2021-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210516":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210516/","title":"Pointer Events","rawDate":"2021-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/pointerevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210519":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210519/","title":"Pointer Events","rawDate":"2021-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210522":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210522/","title":"Pointer Events","rawDate":"2021-05-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210602":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210602/","title":"Pointer Events","rawDate":"2021-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210610":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210610/","title":"Pointer Events","rawDate":"2021-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210614":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210614/","title":"Pointer Events","rawDate":"2021-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210623":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210623/","title":"Pointer Events","rawDate":"2021-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210630":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210630/","title":"Pointer Events","rawDate":"2021-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210707":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210707/","title":"Pointer Events","rawDate":"2021-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210708":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210708/","title":"Pointer Events","rawDate":"2021-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210721":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210721/","title":"Pointer Events","rawDate":"2021-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210803":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210803/","title":"Pointer Events","rawDate":"2021-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210804":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210804/","title":"Pointer Events","rawDate":"2021-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210808":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210808/","title":"Pointer Events","rawDate":"2021-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210818":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210818/","title":"Pointer Events","rawDate":"2021-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210827":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210827/","title":"Pointer Events","rawDate":"2021-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210901":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210901/","title":"Pointer Events","rawDate":"2021-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210913":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210913/","title":"Pointer Events","rawDate":"2021-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210929/","title":"Pointer Events","rawDate":"2021-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20210930/","title":"Pointer Events","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211013/","title":"Pointer Events","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211020":{"authors":["Patrick Lauke","Navid Zolghadr","Matt Brubeck","Rick Byers"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211020/","title":"Pointer Events","rawDate":"2021-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211205":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211205/","title":"Pointer Events","rawDate":"2021-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211206":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211206/","title":"Pointer Events","rawDate":"2021-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211207/","title":"Pointer Events","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211209":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211209/","title":"Pointer Events","rawDate":"2021-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211212":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211212/","title":"Pointer Events","rawDate":"2021-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211222":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2021/WD-pointerevents3-20211222/","title":"Pointer Events","rawDate":"2021-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220101":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220101/","title":"Pointer Events","rawDate":"2022-01-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220105/","title":"Pointer Events","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220119/","title":"Pointer Events","rawDate":"2022-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220201":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220201/","title":"Pointer Events","rawDate":"2022-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220207":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220207/","title":"Pointer Events","rawDate":"2022-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220302":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220302/","title":"Pointer Events","rawDate":"2022-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220316/","title":"Pointer Events","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220321/","title":"Pointer Events","rawDate":"2022-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220601":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220601/","title":"Pointer Events","rawDate":"2022-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220608/","title":"Pointer Events","rawDate":"2022-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220617/","title":"Pointer Events","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220625":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220625/","title":"Pointer Events","rawDate":"2022-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220629":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220629/","title":"Pointer Events","rawDate":"2022-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220706/","title":"Pointer Events","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220911":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20220911/","title":"Pointer Events","rawDate":"2022-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20221027/","title":"Pointer Events","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221223":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2022/WD-pointerevents3-20221223/","title":"Pointer Events","rawDate":"2022-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230301":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2023/WD-pointerevents3-20230301/","title":"Pointer Events","rawDate":"2023-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230302":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2023/WD-pointerevents3-20230302/","title":"Pointer Events","rawDate":"2023-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Patrick Lauke","Navid Zolghadr"],"href":"https://www.w3.org/TR/2023/WD-pointerevents3-20230831/","title":"Pointer Events","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231002":{"authors":["Patrick Lauke"],"href":"https://www.w3.org/TR/2023/WD-pointerevents3-20231002/","title":"Pointer Events","rawDate":"2023-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Patrick Lauke","Robert Flack"],"href":"https://www.w3.org/TR/2023/WD-pointerevents3-20231025/","title":"Pointer Events","rawDate":"2023-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231122":{"authors":["Patrick Lauke","Robert Flack"],"href":"https://www.w3.org/TR/2023/WD-pointerevents3-20231122/","title":"Pointer Events","rawDate":"2023-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240121":{"authors":["Patrick Lauke","Robert Flack"],"href":"https://www.w3.org/TR/2024/WD-pointerevents3-20240121/","title":"Pointer Events","rawDate":"2024-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240201":{"authors":["Patrick Lauke","Robert Flack"],"href":"https://www.w3.org/TR/2024/WD-pointerevents3-20240201/","title":"Pointer Events","rawDate":"2024-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/pointer-events/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pointerevents"},"pointerlock":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/pointerlock/","title":"Pointer Lock","rawDate":"2016-10-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120529":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2012/WD-pointerlock-20120529/","title":"Pointer Lock","rawDate":"2012-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131031":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2013/WD-pointerlock-20131031/","title":"Pointer Lock","rawDate":"2013-10-31","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2013/CR-pointerlock-20131217/","title":"Pointer Lock","rawDate":"2013-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160705":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2016/CR-pointerlock-20160705/","title":"Pointer Lock","rawDate":"2016-07-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2016/PR-pointerlock-20160830/","title":"Pointer Lock","rawDate":"2016-08-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161027":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2016/REC-pointerlock-20161027/","title":"Pointer Lock","rawDate":"2016-10-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/pointerlock/","repository":"https://github.com/w3c/pointerlock"},"pointerlock-2":{"authors":["Navid Zolghadr","Mustaq Ahmed"],"href":"https://www.w3.org/TR/pointerlock-2/","title":"Pointer Lock 2.0","rawDate":"2022-07-08","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/pointerlock/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161122":{"authors":["Vincent Scheib"],"href":"https://www.w3.org/TR/2016/WD-pointerlock-2-20161122/","title":"Pointer Lock 2.0","rawDate":"2016-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180208":{"authors":["Navid Zolghadr","Vincent Scheib"],"href":"https://www.w3.org/TR/2018/WD-pointerlock-2-20180208/","title":"Pointer Lock 2.0","rawDate":"2018-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181106":{"authors":["Navid Zolghadr","Vincent Scheib"],"href":"https://www.w3.org/TR/2018/WD-pointerlock-2-20181106/","title":"Pointer Lock 2.0","rawDate":"2018-11-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Navid Zolghadr"],"href":"https://www.w3.org/TR/2019/WD-pointerlock-2-20190530/","title":"Pointer Lock 2.0","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190606":{"authors":["Navid Zolghadr"],"href":"https://www.w3.org/TR/2019/WD-pointerlock-2-20190606/","title":"Pointer Lock 2.0","rawDate":"2019-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190828":{"authors":["Navid Zolghadr"],"href":"https://www.w3.org/TR/2019/WD-pointerlock-2-20190828/","title":"Pointer Lock 2.0","rawDate":"2019-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Navid Zolghadr","Mustaq Ahmed"],"href":"https://www.w3.org/TR/2021/WD-pointerlock-2-20211117/","title":"Pointer Lock 2.0","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220707":{"authors":["Navid Zolghadr","Mustaq Ahmed"],"href":"https://www.w3.org/TR/2022/WD-pointerlock-2-20220707/","title":"Pointer Lock 2.0","rawDate":"2022-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220708":{"authors":["Navid Zolghadr","Mustaq Ahmed"],"href":"https://www.w3.org/TR/2022/WD-pointerlock-2-20220708/","title":"Pointer Lock 2.0","rawDate":"2022-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pointerlock"},"poix":{"versions":{"19990624":{"status":"NOTE","rawDate":"1999-06-24","href":"https://www.w3.org/1999/06/NOTE-poix-19990624","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/poix","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-06-24","title":"POIX: Point Of Interest eXchange Language"},"positioning":{"authors":["Scott Furman","Scott Isaacson","Robert Stevahn"],"href":"https://www.w3.org/TR/WD-positioning","title":"Positioning HTML Elements with Cascading Style Sheets","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990902":{"authors":["Scott Furman","Scott Isaacson","Robert Stevahn"],"href":"https://www.w3.org/TR/1999/WD-positioning-19990902","title":"Positioning HTML Elements with Cascading Style Sheets","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"post-spectre-webdev":{"authors":["Mike West"],"href":"https://www.w3.org/TR/post-spectre-webdev/","title":"Post-Spectre Web Development","rawDate":"2021-03-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-post-spectre-webdev/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210316":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/WD-post-spectre-webdev-20210316/","title":"Post-Spectre Web Development","rawDate":"2021-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-post-spectre-webdev"},"post-type-discovery":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/post-type-discovery/","title":"Post Type Discovery","rawDate":"2018-01-18","status":"NOTE","publisher":"W3C","edDraft":"https://ptd.spec.indieweb.org/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160728":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2016/WD-post-type-discovery-20160728/","title":"Post Type Discovery","rawDate":"2016-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161028":{"href":"https://www.w3.org/TR/2016/WD-post-type-discovery-20161028/","title":"Post Type Discovery","rawDate":"2016-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170301":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2017/WD-post-type-discovery-20170301/","title":"Post Type Discovery","rawDate":"2017-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170614":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2017/WD-post-type-discovery-20170614/","title":"Post Type Discovery","rawDate":"2017-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170801":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2017/WD-post-type-discovery-20170801/","title":"Post Type Discovery","rawDate":"2017-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180118":{"authors":["Tantek Çelik"],"href":"https://www.w3.org/TR/2018/NOTE-post-type-discovery-20180118/","title":"Post Type Discovery","rawDate":"2018-01-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/tantek/post-type-discovery"},"powder-dr":{"authors":["Phil Archer","Kevin Smith","Andrea Perego"],"href":"https://www.w3.org/TR/powder-dr/","title":"Protocol for Web Description Resources (POWDER): Description Resources","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"hasErrata":"https://www.w3.org/2007/powder/powder-errata","versions":{"20070925":{"status":"WD","rawDate":"2007-09-25","href":"https://www.w3.org/TR/2007/WD-powder-dr-20070925","source":"./data/w3c-specs.txt"},"20080317":{"status":"WD","rawDate":"2008-03-17","href":"https://www.w3.org/TR/2008/WD-powder-dr-20080317","source":"./data/w3c-specs.txt"},"20080630":{"status":"WD","rawDate":"2008-06-30","href":"https://www.w3.org/TR/2008/WD-powder-dr-20080630/","source":"./data/w3c-specs.txt"},"20080815":{"status":"WD","rawDate":"2008-08-15","href":"https://www.w3.org/TR/2008/WD-powder-dr-20080815/","source":"./data/w3c-specs.txt"},"20081114":{"status":"WD","rawDate":"2008-11-14","href":"https://www.w3.org/TR/2008/WD-powder-dr-20081114/","source":"./data/w3c-specs.txt"},"20090403":{"status":"WD","rawDate":"2009-04-03","href":"https://www.w3.org/TR/2009/WD-powder-dr-20090403/","source":"./data/w3c-specs.txt"},"20090604":{"status":"PR","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/PR-powder-dr-20090604/","source":"./data/w3c-specs.txt"},"20090901":{"authors":["Phil Archer","Kevin Smith","Andrea Perego"],"href":"https://www.w3.org/TR/2009/REC-powder-dr-20090901/","title":"Protocol for Web Description Resources (POWDER): Description Resources","rawDate":"2009-09-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"hasErrata":"https://www.w3.org/2007/powder/powder-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-formal":{"authors":["Stasinos Konstantopoulos","Phil Archer"],"href":"https://www.w3.org/TR/powder-formal/","title":"Protocol for Web Description Resources (POWDER): Formal Semantics","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"hasErrata":"https://www.w3.org/2007/powder/powder-errata","versions":{"20080709":{"status":"WD","rawDate":"2008-07-09","href":"https://www.w3.org/TR/2008/WD-powder-formal-20080709/","source":"./data/w3c-specs.txt"},"20080815":{"status":"WD","rawDate":"2008-08-15","href":"https://www.w3.org/TR/2008/WD-powder-formal-20080815/","source":"./data/w3c-specs.txt"},"20081114":{"status":"WD","rawDate":"2008-11-14","href":"https://www.w3.org/TR/2008/WD-powder-formal-20081114/","source":"./data/w3c-specs.txt"},"20090403":{"status":"WD","rawDate":"2009-04-03","href":"https://www.w3.org/TR/2009/WD-powder-formal-20090403/","source":"./data/w3c-specs.txt"},"20090604":{"status":"PR","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/PR-powder-formal-20090604/","source":"./data/w3c-specs.txt"},"20090901":{"authors":["Stasinos Konstantopoulos","Phil Archer"],"href":"https://www.w3.org/TR/2009/REC-powder-formal-20090901/","title":"Protocol for Web Description Resources (POWDER): Formal Semantics","rawDate":"2009-09-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"hasErrata":"https://www.w3.org/2007/powder/powder-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-grouping":{"authors":["Phil Archer","Andrea Perego","Kevin Smith"],"href":"https://www.w3.org/TR/powder-grouping/","title":"Protocol for Web Description Resources (POWDER): Grouping of Resources","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"hasErrata":"https://www.w3.org/2007/powder/powder-errata","versions":{"20070709":{"status":"WD","rawDate":"2007-07-09","href":"https://www.w3.org/TR/2007/WD-powder-grouping-20070709/","source":"./data/w3c-specs.txt"},"20071031":{"status":"WD","rawDate":"2007-10-31","href":"https://www.w3.org/TR/2007/WD-powder-grouping-20071031/","source":"./data/w3c-specs.txt"},"20080324":{"status":"WD","rawDate":"2008-03-24","href":"https://www.w3.org/TR/2008/WD-powder-grouping-20080324/","source":"./data/w3c-specs.txt"},"20080630":{"status":"WD","rawDate":"2008-06-30","href":"https://www.w3.org/TR/2008/WD-powder-grouping-20080630/","source":"./data/w3c-specs.txt"},"20080815":{"status":"WD","rawDate":"2008-08-15","href":"https://www.w3.org/TR/2008/WD-powder-grouping-20080815/","source":"./data/w3c-specs.txt"},"20081114":{"status":"WD","rawDate":"2008-11-14","href":"https://www.w3.org/TR/2008/WD-powder-grouping-20081114/","source":"./data/w3c-specs.txt"},"20090403":{"status":"WD","rawDate":"2009-04-03","href":"https://www.w3.org/TR/2009/WD-powder-grouping-20090403/","source":"./data/w3c-specs.txt"},"20090604":{"status":"PR","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/PR-powder-grouping-20090604/","source":"./data/w3c-specs.txt"},"20090901":{"authors":["Phil Archer","Andrea Perego","Kevin Smith"],"href":"https://www.w3.org/TR/2009/REC-powder-grouping-20090901/","title":"Protocol for Web Description Resources (POWDER): Grouping of Resources","rawDate":"2009-09-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"hasErrata":"https://www.w3.org/2007/powder/powder-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-primer":{"authors":["Kai Scheppe"],"href":"https://www.w3.org/TR/powder-primer/","title":"Protocol for Web Description Resources (POWDER): Primer","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"versions":{"20080815":{"status":"WD","rawDate":"2008-08-15","href":"https://www.w3.org/TR/2008/WD-powder-primer-20080815/","source":"./data/w3c-specs.txt"},"20081114":{"status":"WD","rawDate":"2008-11-14","href":"https://www.w3.org/TR/2008/WD-powder-primer-20081114/","source":"./data/w3c-specs.txt"},"20090403":{"status":"NOTE","rawDate":"2009-04-03","href":"https://www.w3.org/TR/2009/NOTE-powder-primer-20090403/","source":"./data/w3c-specs.txt"},"20090604":{"status":"NOTE","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/NOTE-powder-primer-20090604/","source":"./data/w3c-specs.txt"},"20090901":{"authors":["Kai Scheppe"],"href":"https://www.w3.org/TR/2009/NOTE-powder-primer-20090901/","title":"Protocol for Web Description Resources (POWDER): Primer","rawDate":"2009-09-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-test":{"authors":["Antonis Kukurikos","Phil Archer"],"href":"https://www.w3.org/TR/powder-test/","title":"Protocol for Web Description Resources (POWDER): Test Suite","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"versions":{"20080815":{"status":"WD","rawDate":"2008-08-15","href":"https://www.w3.org/TR/2008/WD-powder-test-20080815/","source":"./data/w3c-specs.txt"},"20090403":{"status":"NOTE","rawDate":"2009-04-03","href":"https://www.w3.org/TR/2009/NOTE-powder-test-20090403/","source":"./data/w3c-specs.txt"},"20090604":{"status":"NOTE","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/NOTE-powder-test-20090604/","source":"./data/w3c-specs.txt"},"20090910":{"authors":["Antonis Kukurikos","Phil Archer"],"href":"https://www.w3.org/TR/2009/NOTE-powder-test-20090910/","title":"Protocol for Web Description Resources (POWDER): Test Suite","rawDate":"2009-09-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-09-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-use-cases":{"authors":["Phil Archer"],"href":"https://www.w3.org/TR/powder-use-cases/","title":"POWDER: Use Cases and Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"versions":{"20070525":{"status":"NOTE","rawDate":"2007-05-25","href":"https://www.w3.org/TR/2007/NOTE-powder-use-cases-20070525/","source":"./data/w3c-specs.txt"},"20070831":{"status":"NOTE","rawDate":"2007-08-31","href":"https://www.w3.org/TR/2007/NOTE-powder-use-cases-20070831/","source":"./data/w3c-specs.txt"},"20071031":{"authors":["Phil Archer"],"href":"https://www.w3.org/TR/2007/NOTE-powder-use-cases-20071031/","title":"POWDER: Use Cases and Requirements","rawDate":"2007-10-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-10-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-voc":{"authors":["Andrea Perego","Phil Archer"],"href":"https://www.w3.org/TR/powder-voc/","title":"Protocol for Web Description Resources (POWDER): Web Description Resources (WDR) Vocabulary","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"versions":{"20070925":{"authors":["Andrea Perego","Phil Archer"],"href":"https://www.w3.org/TR/2007/WD-powder-voc-20070925/","title":"Protocol for Web Description Resources (POWDER): Web Description Resources (WDR) Vocabulary","rawDate":"2007-09-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/powder/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2007-09-25","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powder-xsd":{"authors":["Andrea Perego","Phil Archer","Kevin Smith"],"href":"https://www.w3.org/TR/powder-xsd/","title":"Protocol for Web Description Resources (POWDER): Web Description Resources Datatypes (WDRD)","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/powder/"],"versions":{"20070925":{"authors":["Andrea Perego","Phil Archer","Kevin Smith"],"href":"https://www.w3.org/TR/2007/WD-powder-xsd-20070925/","title":"Protocol for Web Description Resources (POWDER): Web Description Resources Datatypes (WDRD)","rawDate":"2007-09-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2007/powder/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2007-09-25","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"powerful-features":{"aliasOf":"secure-contexts"},"predefined-counter-styles":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/predefined-counter-styles/","title":"Ready-made Counter Styles","rawDate":"2023-06-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130725":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2013/WD-predefined-counter-styles-20130725/","title":"Predefined Counter Styles","rawDate":"2013-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140821":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2014/WD-predefined-counter-styles-20140821/","title":"Predefined Counter Styles","rawDate":"2014-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150203":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2015/WD-predefined-counter-styles-20150203/","title":"Predefined Counter Styles","rawDate":"2015-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160622":{"href":"https://www.w3.org/TR/2016/WD-predefined-counter-styles-20160622/","title":"Custom Counter Styles","rawDate":"2016-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170216":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2017/NOTE-predefined-counter-styles-20170216/","title":"Ready-made Counter Styles","rawDate":"2017-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210606":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/NOTE-predefined-counter-styles-20210606/","title":"Ready-made Counter Styles","rawDate":"2021-06-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210609":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/NOTE-predefined-counter-styles-20210609/","title":"Ready-made Counter Styles","rawDate":"2021-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230619/","title":"Ready-made Counter Styles","rawDate":"2023-06-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230620":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230620/","title":"Ready-made Counter Styles","rawDate":"2023-06-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230630":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/NOTE-predefined-counter-styles-20230630/","title":"Ready-made Counter Styles","rawDate":"2023-06-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/predefined-counter-styles/","repository":"https://github.com/w3c/predefined-counter-styles"},"preload":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/preload/","title":"Preload","rawDate":"2022-03-31","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/preload/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150721":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-preload-20150721/","title":"Preload","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150723":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-preload-20150723/","title":"Preload","rawDate":"2015-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150724":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-preload-20150724/","title":"Preload","rawDate":"2015-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150901":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-preload-20150901/","title":"Preload","rawDate":"2015-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151007":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-preload-20151007/","title":"Preload","rawDate":"2015-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160113":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160113/","title":"Preload","rawDate":"2016-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160119":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160119/","title":"Preload","rawDate":"2016-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160120":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160120/","title":"Preload","rawDate":"2016-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160126":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160126/","title":"Preload","rawDate":"2016-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160128":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160128/","title":"Preload","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160129":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160129/","title":"Preload","rawDate":"2016-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160130":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160130/","title":"Preload","rawDate":"2016-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160204/","title":"Preload","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160208":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160208/","title":"Preload","rawDate":"2016-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160209":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160209/","title":"Preload","rawDate":"2016-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160216":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160216/","title":"Preload","rawDate":"2016-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160219":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160219/","title":"Preload","rawDate":"2016-02-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160224":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160224/","title":"Preload","rawDate":"2016-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160225/","title":"Preload","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160310":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160310/","title":"Preload","rawDate":"2016-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160321":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160321/","title":"Preload","rawDate":"2016-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160429":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160429/","title":"Preload","rawDate":"2016-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160507":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-preload-20160507/","title":"Preload","rawDate":"2016-05-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160711":{"href":"https://www.w3.org/TR/2016/WD-preload-20160711/","title":"Preload","rawDate":"2016-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161114":{"href":"https://www.w3.org/TR/2016/WD-preload-20161114/","title":"Preload","rawDate":"2016-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161130":{"href":"https://www.w3.org/TR/2016/WD-preload-20161130/","title":"Preload","rawDate":"2016-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170706":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2017/WD-preload-20170706/","title":"Preload","rawDate":"2017-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170712":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2017/WD-preload-20170712/","title":"Preload","rawDate":"2017-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170718":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2017/WD-preload-20170718/","title":"Preload","rawDate":"2017-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170823":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2017/WD-preload-20170823/","title":"Preload","rawDate":"2017-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170830":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2017/WD-preload-20170830/","title":"Preload","rawDate":"2017-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171026":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2017/CR-preload-20171026/","title":"Preload","rawDate":"2017-10-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Ilya Grigorik","Yoav Weiss"],"href":"https://www.w3.org/TR/2019/CR-preload-20190626/","title":"Preload","rawDate":"2019-06-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Yoav Weiss"],"href":"https://www.w3.org/TR/2022/DISC-preload-20220331/","title":"Preload","rawDate":"2022-03-31","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/preload","isRetired":true},"presentation-api":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/presentation-api/","title":"Presentation API","rawDate":"2023-10-16","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/presentation-api/","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150217":{"authors":["Dominik Röttsches"],"href":"https://www.w3.org/TR/2015/WD-presentation-api-20150217/","title":"Presentation API","rawDate":"2015-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150701":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2015/WD-presentation-api-20150701/","title":"Presentation API","rawDate":"2015-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150831":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2015/WD-presentation-api-20150831/","title":"Presentation API","rawDate":"2015-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151013":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2015/WD-presentation-api-20151013/","title":"Presentation API","rawDate":"2015-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160211":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2016/WD-presentation-api-20160211/","title":"Presentation API","rawDate":"2016-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160510":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2016/WD-presentation-api-20160510/","title":"Presentation API","rawDate":"2016-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2016/CR-presentation-api-20160714/","title":"Presentation API","rawDate":"2016-07-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170601":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2017/CR-presentation-api-20170601/","title":"Presentation API","rawDate":"2017-06-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201105":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2020/CRD-presentation-api-20201105/","title":"Presentation API","rawDate":"2020-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220422":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2022/CRD-presentation-api-20220422/","title":"Presentation API","rawDate":"2022-04-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220602":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2022/CRD-presentation-api-20220602/","title":"Presentation API","rawDate":"2022-06-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230123":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2023/CRD-presentation-api-20230123/","title":"Presentation API","rawDate":"2023-01-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2023/CRD-presentation-api-20231012/","title":"Presentation API","rawDate":"2023-10-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Mark Foltz","Dominik Röttsches"],"href":"https://www.w3.org/TR/2023/CRD-presentation-api-20231016/","title":"Presentation API","rawDate":"2023-10-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/presentation-api"},"print":{"authors":["Robert Stevahn","Håkon Wium Lie"],"href":"https://www.w3.org/TR/WD-print","title":"CSS Printing Extensions","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990902":{"authors":["Robert Stevahn","Håkon Wium Lie"],"href":"https://www.w3.org/TR/1999/WD-print-19990902","title":"CSS Printing Extensions","rawDate":"1999-09-02","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"privacy-principles":{"authors":["Robin Berjon","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/privacy-principles/","title":"Privacy Principles","rawDate":"2024-01-18","status":"NOTE","publisher":"W3C","edDraft":"https://w3ctag.github.io/privacy-principles/","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220512":{"authors":["Robin Berjon","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2022/DNOTE-privacy-principles-20220512/","title":"Privacy Principles","rawDate":"2022-05-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221214":{"authors":["Robin Berjon","Tonya Lee Tonya Dickard"],"href":"https://www.w3.org/TR/2022/DNOTE-privacy-principles-20221214/","title":"Privacy Principles","rawDate":"2022-12-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230223":{"authors":["Robin Berjon","Tonya Lee Tonya Dickard"],"href":"https://www.w3.org/TR/2023/DNOTE-privacy-principles-20230223/","title":"Privacy Principles","rawDate":"2023-02-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230906":{"authors":["Robin Berjon","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2023/DNOTE-privacy-principles-20230906/","title":"Privacy Principles","rawDate":"2023-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240118":{"authors":["Robin Berjon","Jeffrey Yasskin"],"href":"https://www.w3.org/TR/2024/DNOTE-privacy-principles-20240118/","title":"Privacy Principles","rawDate":"2024-01-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3ctag/privacy-principles"},"proc-model-req":{"authors":["Dmitry Lenkov","Norman Walsh"],"href":"https://www.w3.org/TR/proc-model-req/","title":"XML Processing Model Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20040405":{"authors":["Dmitry Lenkov","Norman Walsh"],"href":"https://www.w3.org/TR/2004/NOTE-proc-model-req-20040405/","title":"XML Processing Model Requirements","rawDate":"2004-04-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-04-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"progress-events":{"authors":["Anne van Kesteren","Chaals Nevile","Jungkee Song"],"href":"https://www.w3.org/TR/progress-events/","title":"Progress Events","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20070419":{"status":"WD","rawDate":"2007-04-19","href":"https://www.w3.org/TR/2007/WD-progress-events-20070419","source":"./data/w3c-specs.txt"},"20071023":{"status":"WD","rawDate":"2007-10-23","href":"https://www.w3.org/TR/2007/WD-progress-events-20071023","source":"./data/w3c-specs.txt"},"20080521":{"status":"WD","rawDate":"2008-05-21","href":"https://www.w3.org/TR/2008/WD-progress-events-20080521","source":"./data/w3c-specs.txt"},"20101019":{"status":"WD","rawDate":"2010-10-19","href":"https://www.w3.org/TR/2010/WD-progress-events-20101019/","source":"./data/w3c-specs.txt"},"20110310":{"status":"WD","rawDate":"2011-03-10","href":"https://www.w3.org/TR/2011/WD-progress-events-20110310/","source":"./data/w3c-specs.txt"},"20110809":{"status":"WD","rawDate":"2011-08-09","href":"https://www.w3.org/TR/2011/WD-progress-events-20110809/","source":"./data/w3c-specs.txt"},"20110922":{"authors":["Anne van Kesteren"],"href":"https://www.w3.org/TR/2011/CR-progress-events-20110922/","title":"Progress Events","rawDate":"2011-09-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131212":{"authors":["Anne van Kesteren","Charles McCathie Nevile","Jungkee Song"],"href":"https://www.w3.org/TR/2013/PR-progress-events-20131212/","title":"Progress Events","rawDate":"2013-12-12","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["Anne van Kesteren","Chaals Nevile","Jungkee Song"],"href":"https://www.w3.org/TR/2014/REC-progress-events-20140211/","title":"Progress Events","rawDate":"2014-02-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200602":{"authors":["Anne van Kesteren","Chaals Nevile","Jungkee Song"],"href":"https://www.w3.org/TR/2020/SPSD-progress-events-20200602/","title":"Progress Events","rawDate":"2020-06-02","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-06-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://xhr.spec.whatwg.org/","repository":"https://github.com/whatwg/xhr","isRetired":true},"pronunciation-explainer":{"authors":["Markku Hakkinen","Irfan Ali"],"href":"https://www.w3.org/TR/pronunciation-explainer/","title":"Explainer: Improving Spoken Presentation on the Web","rawDate":"2020-03-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/pronunciation/explainer","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200310":{"authors":["Markku Hakkinen","Irfan Ali"],"href":"https://www.w3.org/TR/2020/WD-pronunciation-explainer-20200310/","title":"Explainer: Improving Spoken Presentation on the Web","rawDate":"2020-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pronunciation"},"pronunciation-gap-analysis":{"authors":["Markku Hakkinen","Steve Noble","Irfan Ali","Ruoxi Ran"],"href":"https://www.w3.org/TR/pronunciation-gap-analysis/","title":"Pronunciation Gap Analysis","rawDate":"2020-03-17","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/pronunciation/gap-analysis","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190905":{"authors":["Markku Hakkinen","Steve Noble","Irfan Ali","Ruoxi Ran"],"href":"https://www.w3.org/TR/2019/WD-pronunciation-gap-analysis-20190905/","title":"Pronunciation Gap Analysis","rawDate":"2019-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200317":{"authors":["Markku Hakkinen","Steve Noble","Irfan Ali","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/NOTE-pronunciation-gap-analysis-20200317/","title":"Pronunciation Gap Analysis","rawDate":"2020-03-17","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pronunciation","isRetired":true},"pronunciation-gap-analysis-and-use-cases":{"authors":["Markku Hakkinen","Steve Noble","Dee Dyer","Irfan Ali","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/pronunciation-gap-analysis-and-use-cases/","title":"Pronunciation Gap Analysis and Use Cases","rawDate":"2020-03-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/pronunciation/gap-analysis_and_use-case","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200310":{"authors":["Markku Hakkinen","Steve Noble","Dee Dyer","Irfan Ali","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/WD-pronunciation-gap-analysis-and-use-cases-20200310/","title":"Pronunciation Gap Analysis and Use Cases","rawDate":"2020-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pronunciation"},"pronunciation-lexicon":{"authors":["Paolo Baggia"],"href":"https://www.w3.org/TR/pronunciation-lexicon/","title":"Pronunciation Lexicon Specification (PLS) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2008/10/pronunciation-lexicon-errata.html","versions":{"20050214":{"status":"WD","rawDate":"2005-02-14","href":"https://www.w3.org/TR/2005/WD-pronunciation-lexicon-20050214/","source":"./data/w3c-specs.txt"},"20060131":{"status":"WD","rawDate":"2006-01-31","href":"https://www.w3.org/TR/2006/WD-pronunciation-lexicon-20060131/","source":"./data/w3c-specs.txt"},"20061026":{"status":"WD","rawDate":"2006-10-26","href":"https://www.w3.org/TR/2006/WD-pronunciation-lexicon-20061026/","source":"./data/w3c-specs.txt"},"20071212":{"status":"CR","rawDate":"2007-12-12","href":"https://www.w3.org/TR/2007/CR-pronunciation-lexicon-20071212/","source":"./data/w3c-specs.txt"},"20080818":{"status":"PR","rawDate":"2008-08-18","href":"https://www.w3.org/TR/2008/PR-pronunciation-lexicon-20080818/","source":"./data/w3c-specs.txt"},"20081014":{"authors":["Paolo Baggia"],"href":"https://www.w3.org/TR/2008/REC-pronunciation-lexicon-20081014/","title":"Pronunciation Lexicon Specification (PLS) Version 1.0","rawDate":"2008-10-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2008/10/pronunciation-lexicon-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"pronunciation-use-cases":{"authors":["Irfan Ali","Paul Grenier","Markku Hakkinen","Ruoxi Ran"],"href":"https://www.w3.org/TR/pronunciation-use-cases/","title":"Pronunciation Use Cases","rawDate":"2020-03-17","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/pronunciation/use-cases","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190905":{"authors":["Irfan Ali","Paul Grenier","Markku Hakkinen","Ruoxi Ran"],"href":"https://www.w3.org/TR/2019/WD-pronunciation-use-cases-20190905/","title":"Pronunciation Use Cases","rawDate":"2019-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200317":{"authors":["Irfan Ali","Paul Grenier","Markku Hakkinen","Ruoxi Ran"],"href":"https://www.w3.org/TR/2020/NOTE-pronunciation-use-cases-20200317/","title":"Pronunciation Use Cases","rawDate":"2020-03-17","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pronunciation","isRetired":true},"pronunciation-user-scenarios":{"authors":["Irfan Ali","Sam Kanta","Christine Loew","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/pronunciation-user-scenarios/","title":"Pronunciation User Scenarios","rawDate":"2019-09-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/pronunciation/user-scenarios","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190905":{"authors":["Irfan Ali","Sam Kanta","Christine Loew","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/2019/WD-pronunciation-user-scenarios-20190905/","title":"Pronunciation User Scenarios","rawDate":"2019-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pronunciation"},"prov-aq":{"authors":["Graham Klyne","Paul Groth"],"href":"https://www.w3.org/TR/prov-aq/","title":"PROV-AQ: Provenance Access and Query","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120110":{"status":"WD","rawDate":"2012-01-10","href":"https://www.w3.org/TR/2012/WD-prov-aq-20120110/","source":"./data/w3c-specs.txt"},"20120619":{"status":"WD","rawDate":"2012-06-19","href":"https://www.w3.org/TR/2012/WD-prov-aq-20120619/","source":"./data/w3c-specs.txt"},"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-aq-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Graham Klyne","Paul Groth"],"href":"https://www.w3.org/TR/2013/NOTE-prov-aq-20130430/","title":"PROV-AQ: Provenance Access and Query","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-constraints":{"authors":["James Cheney","Paolo Missier","Luc Moreau"],"href":"https://www.w3.org/TR/prov-constraints/","title":"Constraints of the PROV Data Model","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120503":{"status":"WD","rawDate":"2012-05-03","href":"https://www.w3.org/TR/2012/WD-prov-constraints-20120503/","source":"./data/w3c-specs.txt"},"20120911":{"status":"WD","rawDate":"2012-09-11","href":"https://www.w3.org/TR/2012/WD-prov-constraints-20120911/","source":"./data/w3c-specs.txt"},"20121211":{"status":"CR","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/CR-prov-constraints-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"PR","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/PR-prov-constraints-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["James Cheney","Paolo Missier","Luc Moreau"],"href":"https://www.w3.org/TR/2013/REC-prov-constraints-20130430/","title":"Constraints of the PROV Data Model","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-dc":{"authors":["Daniel Garijo","Kai Eckert"],"href":"https://www.w3.org/TR/prov-dc/","title":"Dublin Core to PROV Mapping","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-prov-dc-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-dc-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Daniel Garijo","Kai Eckert"],"href":"https://www.w3.org/TR/2013/NOTE-prov-dc-20130430/","title":"Dublin Core to PROV Mapping","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-dictionary":{"authors":["Tom De Nies","Sam Coppens"],"href":"https://www.w3.org/TR/prov-dictionary/","title":"PROV-Dictionary: Modeling Provenance for Dictionary Data Structures","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-dictionary-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Tom De Nies","Sam Coppens"],"href":"https://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/","title":"PROV-Dictionary: Modeling Provenance for Dictionary Data Structures","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-dm":{"authors":["Luc Moreau","Paolo Missier"],"href":"https://www.w3.org/TR/prov-dm/","title":"PROV-DM: The PROV Data Model","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111018":{"status":"WD","rawDate":"2011-10-18","href":"https://www.w3.org/TR/2011/WD-prov-dm-20111018/","source":"./data/w3c-specs.txt"},"20111215":{"status":"WD","rawDate":"2011-12-15","href":"https://www.w3.org/TR/2011/WD-prov-dm-20111215/","source":"./data/w3c-specs.txt"},"20120202":{"status":"WD","rawDate":"2012-02-02","href":"https://www.w3.org/TR/2012/WD-prov-dm-20120202/","source":"./data/w3c-specs.txt"},"20120503":{"status":"WD","rawDate":"2012-05-03","href":"https://www.w3.org/TR/2012/WD-prov-dm-20120503/","source":"./data/w3c-specs.txt"},"20120724":{"status":"WD","rawDate":"2012-07-24","href":"https://www.w3.org/TR/2012/WD-prov-dm-20120724/","source":"./data/w3c-specs.txt"},"20121211":{"status":"CR","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/CR-prov-dm-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"PR","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/PR-prov-dm-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Luc Moreau","Paolo Missier"],"href":"https://www.w3.org/TR/2013/REC-prov-dm-20130430/","title":"PROV-DM: The PROV Data Model","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-implementations":{"authors":["Trung Dong Huynh","Paul Groth","Stephan Zednik"],"href":"https://www.w3.org/TR/prov-implementations/","title":"PROV Implementation Report","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-implementations-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Trung Dong Huynh","Paul Groth","Stephan Zednik"],"href":"https://www.w3.org/TR/2013/NOTE-prov-implementations-20130430/","title":"PROV Implementation Report","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-links":{"authors":["Luc Moreau","Timothy Lebo"],"href":"https://www.w3.org/TR/prov-links/","title":"Linking Across Provenance Bundles","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-prov-links-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-links-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Luc Moreau","Timothy Lebo"],"href":"https://www.w3.org/TR/2013/NOTE-prov-links-20130430/","title":"Linking Across Provenance Bundles","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-n":{"authors":["Luc Moreau","Paolo Missier"],"href":"https://www.w3.org/TR/prov-n/","title":"PROV-N: The Provenance Notation","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120503":{"status":"WD","rawDate":"2012-05-03","href":"https://www.w3.org/TR/2012/WD-prov-n-20120503/","source":"./data/w3c-specs.txt"},"20120724":{"status":"WD","rawDate":"2012-07-24","href":"https://www.w3.org/TR/2012/WD-prov-n-20120724/","source":"./data/w3c-specs.txt"},"20121211":{"status":"CR","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/CR-prov-n-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"PR","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/PR-prov-n-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Luc Moreau","Paolo Missier"],"href":"https://www.w3.org/TR/2013/REC-prov-n-20130430/","title":"PROV-N: The Provenance Notation","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-o":{"authors":["Timothy Lebo","Satya Sahoo","Deborah McGuinness"],"href":"https://www.w3.org/TR/prov-o/","title":"PROV-O: The PROV Ontology","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-prov-o-20111213/","source":"./data/w3c-specs.txt"},"20120503":{"status":"WD","rawDate":"2012-05-03","href":"https://www.w3.org/TR/2012/WD-prov-o-20120503/","source":"./data/w3c-specs.txt"},"20120724":{"status":"WD","rawDate":"2012-07-24","href":"https://www.w3.org/TR/2012/WD-prov-o-20120724/","source":"./data/w3c-specs.txt"},"20121211":{"status":"CR","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/CR-prov-o-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"PR","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/PR-prov-o-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Timothy Lebo","Satya Sahoo","Deborah McGuinness"],"href":"https://www.w3.org/TR/2013/REC-prov-o-20130430/","title":"PROV-O: The PROV Ontology","rawDate":"2013-04-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"hasErrata":"https://www.w3.org/2011/prov/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-overview":{"authors":["Paul Groth","Luc Moreau"],"href":"https://www.w3.org/TR/prov-overview/","title":"PROV-Overview","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-prov-overview-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-overview-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Paul Groth","Luc Moreau"],"href":"https://www.w3.org/TR/2013/NOTE-prov-overview-20130430/","title":"PROV-Overview","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-primer":{"authors":["Yolanda Gil","Simon Miles"],"href":"https://www.w3.org/TR/prov-primer/","title":"PROV Model Primer","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120110":{"status":"WD","rawDate":"2012-01-10","href":"https://www.w3.org/TR/2012/WD-prov-primer-20120110/","source":"./data/w3c-specs.txt"},"20120503":{"status":"WD","rawDate":"2012-05-03","href":"https://www.w3.org/TR/2012/WD-prov-primer-20120503/","source":"./data/w3c-specs.txt"},"20120724":{"status":"WD","rawDate":"2012-07-24","href":"https://www.w3.org/TR/2012/WD-prov-primer-20120724/","source":"./data/w3c-specs.txt"},"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-prov-primer-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-primer-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Yolanda Gil","Simon Miles"],"href":"https://www.w3.org/TR/2013/NOTE-prov-primer-20130430/","title":"PROV Model Primer","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-sem":{"authors":["James Cheney"],"href":"https://www.w3.org/TR/prov-sem/","title":"Semantics of the PROV Data Model","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-sem-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["James Cheney"],"href":"https://www.w3.org/TR/2013/NOTE-prov-sem-20130430/","title":"Semantics of the PROV Data Model","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"prov-xml":{"authors":["Hook Hua","Curt Tilmes","Stephan Zednik"],"href":"https://www.w3.org/TR/prov-xml/","title":"PROV-XML: The PROV XML Schema","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121211":{"status":"WD","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/WD-prov-xml-20121211/","source":"./data/w3c-specs.txt"},"20130312":{"status":"WD","rawDate":"2013-03-12","href":"https://www.w3.org/TR/2013/WD-prov-xml-20130312/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Hook Hua","Curt Tilmes","Stephan Zednik"],"href":"https://www.w3.org/TR/2013/NOTE-prov-xml-20130430/","title":"PROV-XML: The PROV XML Schema","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/prov/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"proximity":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/proximity/","title":"Proximity Sensor","rawDate":"2023-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120712":{"status":"WD","rawDate":"2012-07-12","href":"https://www.w3.org/TR/2012/WD-proximity-20120712/","source":"./data/w3c-specs.txt"},"20121206":{"authors":["Anssi Kostiainen","Dzung Tran"],"href":"https://www.w3.org/TR/2012/WD-proximity-20121206/","title":"Proximity Events","rawDate":"2012-12-06","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131001":{"authors":["Anssi Kostiainen","Dzung Tran"],"href":"https://www.w3.org/TR/2013/CR-proximity-20131001/","title":"Proximity Events","rawDate":"2013-10-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150903":{"authors":["Anssi Kostiainen","Dzung Tran"],"href":"https://www.w3.org/TR/2015/WD-proximity-20150903/","title":"Proximity Events","rawDate":"2015-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160719":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2016/WD-proximity-20160719/","title":"Proximity Sensor","rawDate":"2016-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190305":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2019/WD-proximity-20190305/","title":"Proximity Sensor","rawDate":"2019-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-proximity-20210527/","title":"Proximity Sensor","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210531":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-proximity-20210531/","title":"Proximity Sensor","rawDate":"2021-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-proximity-20210601/","title":"Proximity Sensor","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-proximity-20210604/","title":"Proximity Sensor","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-proximity-20210817/","title":"Proximity Sensor","rawDate":"2021-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2021/WD-proximity-20210903/","title":"Proximity Sensor","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-proximity-20230130/","title":"Proximity Sensor","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-proximity-20231026/","title":"Proximity Sensor","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231127":{"authors":["Anssi Kostiainen","Rijubrata Bhaumik"],"href":"https://www.w3.org/TR/2023/WD-proximity-20231127/","title":"Proximity Sensor","rawDate":"2023-11-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/proximity/","repository":"https://github.com/w3c/proximity"},"proxy":{"versions":{"19960221":{"status":"WD","rawDate":"1996-02-21","href":"https://www.w3.org/TR/WD-proxy-960221","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WD-proxy","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"1996-02-21","title":"Notification for Proxy Caches"},"pub-manifest":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/pub-manifest/","title":"Publication Manifest","rawDate":"2020-11-10","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/pub-manifest/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190827":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/WD-pub-manifest-20190827/","title":"Publication Manifest","rawDate":"2019-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190911":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/WD-pub-manifest-20190911/","title":"Publication Manifest","rawDate":"2019-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191118":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/WD-pub-manifest-20191118/","title":"Publication Manifest","rawDate":"2019-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/CR-pub-manifest-20191205/","title":"Publication Manifest","rawDate":"2019-12-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200128":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/CR-pub-manifest-20200128/","title":"Publication Manifest","rawDate":"2020-01-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200317":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/CR-pub-manifest-20200317/","title":"Publication Manifest","rawDate":"2020-03-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200730":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/CR-pub-manifest-20200730/","title":"Publication Manifest","rawDate":"2020-07-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200909":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/CR-pub-manifest-20200909/","title":"Publication Manifest","rawDate":"2020-09-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200914":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/CR-pub-manifest-20200914/","title":"Publication Manifest","rawDate":"2020-09-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/PR-pub-manifest-20201001/","title":"Publication Manifest","rawDate":"2020-10-01","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"hasErrata":"https://w3c.github.io/pub-manifest/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201110":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2020/REC-pub-manifest-20201110/","title":"Publication Manifest","rawDate":"2020-11-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"hasErrata":"https://w3c.github.io/pub-manifest/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pub-manifest","hasErrata":"https://w3c.github.io/pub-manifest/errata/"},"publishing-linking":{"authors":["Ashok Malhotra","Larry Masinter","Jeni Tennison","Daniel Appelquist"],"href":"https://www.w3.org/TR/publishing-linking/","title":"Publishing and Linking on the Web","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120918":{"status":"WD","rawDate":"2012-09-18","href":"https://www.w3.org/TR/2012/WD-publishing-linking-20120918/","source":"./data/w3c-specs.txt"},"20121025":{"status":"WD","rawDate":"2012-10-25","href":"https://www.w3.org/TR/2012/WD-publishing-linking-20121025/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Ashok Malhotra","Larry Masinter","Jeni Tennison","Daniel Appelquist"],"href":"https://www.w3.org/TR/2013/NOTE-publishing-linking-20130430/","title":"Publishing and Linking on the Web","rawDate":"2013-04-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"pubsub":{"aliasOf":"websub"},"push-api":{"authors":["Peter Beverloo","Martin Thomson","Marcos Caceres"],"href":"https://www.w3.org/TR/push-api/","title":"Push API","rawDate":"2023-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121018":{"authors":["Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2012/WD-push-api-20121018/","title":"Push API","rawDate":"2012-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130815":{"authors":["Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2013/WD-push-api-20130815/","title":"Push API","rawDate":"2013-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Bryan Sullivan","Eduardo Fullea","Michael van Ouwerkerk"],"href":"https://www.w3.org/TR/2014/WD-push-api-20141007/","title":"Push API","rawDate":"2014-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150427":{"authors":["Bryan Sullivan","Eduardo Fullea","Michael van Ouwerkerk"],"href":"https://www.w3.org/TR/2015/WD-push-api-20150427/","title":"Push API","rawDate":"2015-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Michael van Ouwerkerk","Martin Thomson","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2015/WD-push-api-20151215/","title":"Push API","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170222":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170222/","title":"Push API","rawDate":"2017-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170328":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170328/","title":"Push API","rawDate":"2017-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170418/","title":"Push API","rawDate":"2017-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170419":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170419/","title":"Push API","rawDate":"2017-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170425":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170425/","title":"Push API","rawDate":"2017-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170427":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170427/","title":"Push API","rawDate":"2017-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170503":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170503/","title":"Push API","rawDate":"2017-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170508":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170508/","title":"Push API","rawDate":"2017-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170621":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170621/","title":"Push API","rawDate":"2017-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170622":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170622/","title":"Push API","rawDate":"2017-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170623":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170623/","title":"Push API","rawDate":"2017-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170705":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170705/","title":"Push API","rawDate":"2017-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170813":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170813/","title":"Push API","rawDate":"2017-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170821":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170821/","title":"Push API","rawDate":"2017-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170822":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170822/","title":"Push API","rawDate":"2017-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170823":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20170823/","title":"Push API","rawDate":"2017-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171026":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20171026/","title":"Push API","rawDate":"2017-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171215":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2017/WD-push-api-20171215/","title":"Push API","rawDate":"2017-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181026":{"authors":["Peter Beverloo","Martin Thomson","Michael van Ouwerkerk","Bryan Sullivan","Eduardo Fullea"],"href":"https://www.w3.org/TR/2018/WD-push-api-20181026/","title":"Push API","rawDate":"2018-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190530/","title":"Push API","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190603":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190603/","title":"Push API","rawDate":"2019-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190711":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190711/","title":"Push API","rawDate":"2019-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190714":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190714/","title":"Push API","rawDate":"2019-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190715":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190715/","title":"Push API","rawDate":"2019-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190716":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190716/","title":"Push API","rawDate":"2019-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190717":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190717/","title":"Push API","rawDate":"2019-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190724":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20190724/","title":"Push API","rawDate":"2019-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191003":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2019/WD-push-api-20191003/","title":"Push API","rawDate":"2019-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200204":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2020/WD-push-api-20200204/","title":"Push API","rawDate":"2020-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20210616/","title":"Push API","rawDate":"2021-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211020":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20211020/","title":"Push API","rawDate":"2021-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211021":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20211021/","title":"Push API","rawDate":"2021-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20211025/","title":"Push API","rawDate":"2021-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211027":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20211027/","title":"Push API","rawDate":"2021-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211028":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20211028/","title":"Push API","rawDate":"2021-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211103":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2021/WD-push-api-20211103/","title":"Push API","rawDate":"2021-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220323":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2022/WD-push-api-20220323/","title":"Push API","rawDate":"2022-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220602":{"authors":["Peter Beverloo","Martin Thomson"],"href":"https://www.w3.org/TR/2022/WD-push-api-20220602/","title":"Push API","rawDate":"2022-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220630":{"authors":["Peter Beverloo","Martin Thomson","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-push-api-20220630/","title":"Push API","rawDate":"2022-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231010":{"authors":["Peter Beverloo","Martin Thomson","Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-push-api-20231010/","title":"Push API","rawDate":"2023-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231211":{"authors":["Peter Beverloo","Martin Thomson","Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-push-api-20231211/","title":"Push API","rawDate":"2023-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/push-api/","repository":"https://github.com/w3c/push-api"},"pwp":{"authors":["Markus Gylling","Ben De Meester","Ivan Herman","Tzviya Siegman","Dave Cramer","Leonard Rosenthol"],"href":"https://www.w3.org/TR/pwp/","title":"Web Publications for the Open Web Platform: Vision And Technical Challenges","rawDate":"2017-05-02","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-pwp/","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151015":{"authors":["Markus Gylling","Ivan Herman","Tzviya Siegman"],"href":"https://www.w3.org/TR/2015/WD-pwp-20151015/","title":"Portable Web Publications for the Open Web Platform","rawDate":"2015-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151126":{"authors":["Markus Gylling","Ivan Herman","Tzviya Siegman"],"href":"https://www.w3.org/TR/2015/WD-pwp-20151126/","title":"Portable Web Publications for the Open Web Platform","rawDate":"2015-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170309":{"authors":["Markus Gylling","Ben De Meester","Ivan Herman","Tzviya Siegman","Dave Cramer","Leonard Rosenthol"],"href":"https://www.w3.org/TR/2017/WD-pwp-20170309/","title":"Web Publications","rawDate":"2017-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170502":{"authors":["Markus Gylling","Ben De Meester","Ivan Herman","Tzviya Siegman","Dave Cramer","Leonard Rosenthol"],"href":"https://www.w3.org/TR/2017/NOTE-pwp-20170502/","title":"Web Publications for the Open Web Platform: Vision And Technical Challenges","rawDate":"2017-05-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dpub-pwp"},"pwp-ucr":{"authors":["Franco Alvarado","Joshua Pyle"],"href":"https://www.w3.org/TR/pwp-ucr/","title":"Web Publications Use Cases and Requirements","rawDate":"2019-08-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dpub-pwp-ucr/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160913":{"authors":["Heather Flanagan","Ivan Herman"],"href":"https://www.w3.org/TR/2016/WD-pwp-ucr-20160913/","title":"Portable Web Publications Use Cases and Requirements","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170309":{"authors":["Heather Flanagan","Ivan Herman","Leonard Rosenthol"],"href":"https://www.w3.org/TR/2017/WD-pwp-ucr-20170309/","title":"Web Publications Use Cases and Requirements","rawDate":"2017-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170502":{"authors":["Heather Flanagan","Ivan Herman","Leonard Rosenthol"],"href":"https://www.w3.org/TR/2017/NOTE-pwp-ucr-20170502/","title":"Web Publications Use Cases and Requirements","rawDate":"2017-05-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/dpub/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190219":{"authors":["Joshua Pyle","Franco Alvarado"],"href":"https://www.w3.org/TR/2019/NOTE-pwp-ucr-20190219/","title":"Web Publications Use Cases and Requirements","rawDate":"2019-02-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190813":{"authors":["Franco Alvarado","Joshua Pyle"],"href":"https://www.w3.org/TR/2019/NOTE-pwp-ucr-20190813/","title":"Web Publications Use Cases and Requirements","rawDate":"2019-08-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/dpub-pwp-ucr","isRetired":true},"pwpub":{"authors":["David Wood"],"href":"https://www.w3.org/TR/pwpub/","title":"Packaged Web Publications","rawDate":"2020-10-01","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/pwpub/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180104":{"authors":["David Wood"],"href":"https://www.w3.org/TR/2018/WD-pwpub-20180104/","title":"Packaged Web Publications","rawDate":"2018-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["David Wood"],"href":"https://www.w3.org/TR/2020/NOTE-pwpub-20201001/","title":"Packaged Web Publications","rawDate":"2020-10-01","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pwpub","isRetired":true},"qa-handbook":{"authors":["Lofton Henderson"],"href":"https://www.w3.org/TR/qa-handbook/","title":"The QA Handbook","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"versions":{"20020201":{"status":"WD","rawDate":"2002-02-01","href":"https://www.w3.org/TR/2002/WD-qaframe-intro-20020201/","source":"./data/w3c-specs.txt"},"20020515":{"status":"WD","rawDate":"2002-05-15","href":"https://www.w3.org/TR/2002/WD-qaframe-intro-20020515/","source":"./data/w3c-specs.txt"},"20021108":{"status":"WD","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/WD-qaframe-intro-20021108/","source":"./data/w3c-specs.txt"},"20030210":{"status":"WD","rawDate":"2003-02-10","href":"https://www.w3.org/TR/2003/WD-qaframe-intro-20030210/","source":"./data/w3c-specs.txt"},"20030912":{"status":"NOTE","rawDate":"2003-09-12","href":"https://www.w3.org/TR/2003/NOTE-qaframe-intro-20030912/","source":"./data/w3c-specs.txt"},"20030922":{"status":"CR","rawDate":"2003-09-22","href":"https://www.w3.org/TR/2003/CR-qaframe-ops-20030922/","source":"./data/w3c-specs.txt"},"20040510":{"status":"WD","rawDate":"2004-05-10","href":"https://www.w3.org/TR/2004/WD-qa-handbook-20040510/","source":"./data/w3c-specs.txt"},"20040830":{"status":"WD","rawDate":"2004-08-30","href":"https://www.w3.org/TR/2004/WD-qa-handbook-20040830/","source":"./data/w3c-specs.txt"},"20041122":{"status":"NOTE","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/NOTE-qa-handbook-20041122/","source":"./data/w3c-specs.txt"},"20050906":{"authors":["Lofton Henderson"],"href":"https://www.w3.org/TR/2005/NOTE-qa-handbook-20050906/","title":"The QA Handbook","rawDate":"2005-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-09-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"qaframe-intro":{"aliasOf":"qa-handbook"},"qaframe-ops":{"aliasOf":"qa-handbook"},"qaframe-ops-extech":{"authors":["Lofton Henderson","Lynne Rosenthal","Dimitris Dimitriadis","Kirill Gavrylyuk"],"etAl":true,"href":"https://www.w3.org/TR/qaframe-ops-extech/","title":"QA Framework: Operational Examples & Techniques","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"versions":{"20020515":{"status":"WD","rawDate":"2002-05-15","href":"https://www.w3.org/TR/2002/WD-qaframe-ops-extech-20020515/","source":"./data/w3c-specs.txt"},"20021202":{"authors":["Lofton Henderson","Lynne Rosenthal","Dimitris Dimitriadis","Kirill Gavrylyuk"],"href":"https://www.w3.org/TR/2002/NOTE-qaframe-ops-extech-20021202/","title":"QA Framework: Operational Examples & Techniques","rawDate":"2002-12-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2002-12-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"qaframe-spec":{"authors":["Karl Dubost","Lynne Rosenthal","Dominique Hazaël-Massieux","Lofton Henderson"],"etAl":true,"href":"https://www.w3.org/TR/qaframe-spec/","title":"QA Framework: Specification Guidelines","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"hasErrata":"https://www.w3.org/QA/2005/08/specgl-errata","versions":{"20020515":{"status":"WD","rawDate":"2002-05-15","href":"https://www.w3.org/TR/2002/WD-qaframe-spec-20020515/","source":"./data/w3c-specs.txt"},"20020826":{"status":"WD","rawDate":"2002-08-26","href":"https://www.w3.org/TR/2002/WD-qaframe-spec-20020826/","source":"./data/w3c-specs.txt"},"20021108":{"status":"WD","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/WD-qaframe-spec-20021108/","source":"./data/w3c-specs.txt"},"20030210":{"status":"WD","rawDate":"2003-02-10","href":"https://www.w3.org/TR/2003/WD-qaframe-spec-20030210/","source":"./data/w3c-specs.txt"},"20030912":{"status":"WD","rawDate":"2003-09-12","href":"https://www.w3.org/TR/2003/WD-qaframe-spec-20030912/","source":"./data/w3c-specs.txt"},"20031110":{"status":"CR","rawDate":"2003-11-10","href":"https://www.w3.org/TR/2003/CR-qaframe-spec-20031110/","source":"./data/w3c-specs.txt"},"20040602":{"status":"WD","rawDate":"2004-06-02","href":"https://www.w3.org/TR/2004/WD-qaframe-spec-20040602/","source":"./data/w3c-specs.txt"},"20040830":{"status":"WD","rawDate":"2004-08-30","href":"https://www.w3.org/TR/2004/WD-qaframe-spec-20040830/","source":"./data/w3c-specs.txt"},"20041122":{"status":"WD","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/WD-qaframe-spec-20041122/","source":"./data/w3c-specs.txt"},"20050428":{"status":"WD","rawDate":"2005-04-28","href":"https://www.w3.org/TR/2005/WD-qaframe-spec-20050428/","source":"./data/w3c-specs.txt"},"20050629":{"status":"PR","rawDate":"2005-06-29","href":"https://www.w3.org/TR/2005/PR-qaframe-spec-20050629/","source":"./data/w3c-specs.txt"},"20050817":{"authors":["Karl Dubost","Lynne Rosenthal","Dominique Hazaël-Massieux","Lofton Henderson"],"href":"https://www.w3.org/TR/2005/REC-qaframe-spec-20050817/","title":"QA Framework: Specification Guidelines","rawDate":"2005-08-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"hasErrata":"https://www.w3.org/QA/2005/08/specgl-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-08-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"qaframe-test":{"authors":["Patrick Curran","Dimitris Dimitriadis"],"href":"https://www.w3.org/TR/qaframe-test/","title":"QA Framework: Test Guidelines","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"versions":{"20021220":{"status":"WD","rawDate":"2002-12-20","href":"https://www.w3.org/TR/2002/WD-qaframe-test-20021220/","source":"./data/w3c-specs.txt"},"20030516":{"status":"WD","rawDate":"2003-05-16","href":"https://www.w3.org/TR/2003/WD-qaframe-test-20030516/","source":"./data/w3c-specs.txt"},"20040225":{"status":"WD","rawDate":"2004-02-25","href":"https://www.w3.org/TR/2004/WD-qaframe-test-20040225/","source":"./data/w3c-specs.txt"},"20040820":{"authors":["Patrick Curran","Dimitris Dimitriadis"],"href":"https://www.w3.org/TR/2004/WD-qaframe-test-20040820/","title":"QA Framework: Test Guidelines","rawDate":"2004-08-20","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/QA/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2004-08-20","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"qb4st":{"authors":["Rob Atkinson"],"href":"https://www.w3.org/TR/qb4st/","title":"QB4ST: RDF Data Cube extensions for spatio-temporal components","rawDate":"2017-09-28","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/qb4st/","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170105":{"authors":["Rob Atkinson"],"href":"https://www.w3.org/TR/2017/NOTE-qb4st-20170105/","title":"QB4ST: RDF Data Cube extensions for spatio-temporal components","rawDate":"2017-01-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Rob Atkinson"],"href":"https://www.w3.org/TR/2017/NOTE-qb4st-20170418/","title":"QB4ST: RDF Data Cube extensions for spatio-temporal components","rawDate":"2017-04-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170928":{"authors":["Rob Atkinson"],"href":"https://www.w3.org/TR/2017/NOTE-qb4st-20170928/","title":"QB4ST: RDF Data Cube extensions for spatio-temporal components","rawDate":"2017-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"query-datamodel":{"aliasOf":"xpath-datamodel"},"query-semantics":{"aliasOf":"xquery-semantics"},"quota-api":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/quota-api/","title":"Quota Management API","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"versions":{"20120703":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/2012/WD-quota-api-20120703/","title":"Quota Management API","rawDate":"2012-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/2013/WD-quota-api-20131105/","title":"Quota Management API","rawDate":"2013-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150409":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/2015/WD-quota-api-20150409/","title":"Quota Management API","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/2015/WD-quota-api-20151215/","title":"Quota Management API","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160515":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/2016/NOTE-quota-api-20160515/","title":"Quota Management API","rawDate":"2016-05-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160523":{"authors":["Kinuko Yasuda"],"href":"https://www.w3.org/TR/2016/NOTE-quota-api-20160523/","title":"Quota Management API","rawDate":"2016-05-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2016-05-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/quota-api/","isRetired":true,"repository":"https://github.com/w3c/quota-api"},"r2rml":{"authors":["Souripriya Das","Seema Sundara","Richard Cyganiak"],"href":"https://www.w3.org/TR/r2rml/","title":"R2RML: RDB to RDF Mapping Language","rawDate":"2012-09-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"hasErrata":"https://www.w3.org/2001/sw/rdb2rdf/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20101028":{"status":"WD","rawDate":"2010-10-28","href":"https://www.w3.org/TR/2010/WD-r2rml-20101028/","source":"./data/w3c-specs.txt"},"20110324":{"status":"WD","rawDate":"2011-03-24","href":"https://www.w3.org/TR/2011/WD-r2rml-20110324/","source":"./data/w3c-specs.txt"},"20110920":{"status":"WD","rawDate":"2011-09-20","href":"https://www.w3.org/TR/2011/WD-r2rml-20110920/","source":"./data/w3c-specs.txt"},"20120223":{"status":"CR","rawDate":"2012-02-23","href":"https://www.w3.org/TR/2012/CR-r2rml-20120223/","source":"./data/w3c-specs.txt"},"20120529":{"status":"WD","rawDate":"2012-05-29","href":"https://www.w3.org/TR/2012/WD-r2rml-20120529/","source":"./data/w3c-specs.txt"},"20120814":{"status":"PR","rawDate":"2012-08-14","href":"https://www.w3.org/TR/2012/PR-r2rml-20120814/","source":"./data/w3c-specs.txt"},"20120927":{"authors":["Souripriya Das","Seema Sundara","Richard Cyganiak"],"href":"https://www.w3.org/TR/2012/REC-r2rml-20120927/","title":"R2RML: RDB to RDF Mapping Language","rawDate":"2012-09-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"hasErrata":"https://www.w3.org/2001/sw/rdb2rdf/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"raur":{"authors":["Joshue O'Connor","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/raur/","title":"RTC Accessibility User Requirements","rawDate":"2021-05-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/apa/raur/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200319":{"authors":["Joshue O Connor","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/2020/WD-raur-20200319/","title":"RTC Accessibility User Requirements","rawDate":"2020-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201207":{"authors":["Joshue O Connor","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/2020/WD-raur-20201207/","title":"RTC Accessibility User Requirements","rawDate":"2020-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Joshue O'Connor","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/2021/NOTE-raur-20210525/","title":"RTC Accessibility User Requirements","rawDate":"2021-05-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/apa"},"raw-sockets":{"aliasOf":"tcp-udp-sockets"},"rch-explainer":{"authors":["Phil Archer"],"href":"https://www.w3.org/TR/rch-explainer/","title":"RDF Dataset Canonicalization and Hash Working Group — Explainer and Use Cases","rawDate":"2023-10-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/rch-explainer/","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20231019":{"authors":["Phil Archer"],"href":"https://www.w3.org/TR/2023/NOTE-rch-explainer-20231019/","title":"RDF Dataset Canonicalization and Hash Working Group — Explainer and Use Cases","rawDate":"2023-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rch-explainer"},"rdb-direct-mapping":{"authors":["Marcelo Arenas","Alexandre Bertails","Eric Prud'hommeaux","Juan Sequeda"],"href":"https://www.w3.org/TR/rdb-direct-mapping/","title":"A Direct Mapping of Relational Data to RDF","rawDate":"2012-09-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"hasErrata":"https://www.w3.org/2001/sw/rdb2rdf/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20101118":{"status":"WD","rawDate":"2010-11-18","href":"https://www.w3.org/TR/2010/WD-rdb-direct-mapping-20101118/","source":"./data/w3c-specs.txt"},"20110324":{"status":"WD","rawDate":"2011-03-24","href":"https://www.w3.org/TR/2011/WD-rdb-direct-mapping-20110324/","source":"./data/w3c-specs.txt"},"20110920":{"status":"WD","rawDate":"2011-09-20","href":"https://www.w3.org/TR/2011/WD-rdb-direct-mapping-20110920/","source":"./data/w3c-specs.txt"},"20120223":{"status":"CR","rawDate":"2012-02-23","href":"https://www.w3.org/TR/2012/CR-rdb-direct-mapping-20120223/","source":"./data/w3c-specs.txt"},"20120529":{"status":"WD","rawDate":"2012-05-29","href":"https://www.w3.org/TR/2012/WD-rdb-direct-mapping-20120529/","source":"./data/w3c-specs.txt"},"20120814":{"status":"PR","rawDate":"2012-08-14","href":"https://www.w3.org/TR/2012/PR-rdb-direct-mapping-20120814/","source":"./data/w3c-specs.txt"},"20120927":{"authors":["Marcelo Arenas","Alexandre Bertails","Eric Prud'hommeaux","Juan Sequeda"],"href":"https://www.w3.org/TR/2012/REC-rdb-direct-mapping-20120927/","title":"A Direct Mapping of Relational Data to RDF","rawDate":"2012-09-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"hasErrata":"https://www.w3.org/2001/sw/rdb2rdf/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdb2rdf-implementations":{"authors":["Boris Villazón-Terrazas","Michael Hausenblas"],"href":"https://www.w3.org/TR/rdb2rdf-implementations/","title":"RDB2RDF Implementation Report","rawDate":"2012-08-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120814":{"authors":["Boris Villazón-Terrazas","Michael Hausenblas"],"href":"https://www.w3.org/TR/2012/NOTE-rdb2rdf-implementations-20120814/","title":"RDB2RDF Implementation Report","rawDate":"2012-08-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdb2rdf-test-cases":{"authors":["Boris Villazón-Terrazas","Michael Hausenblas"],"href":"https://www.w3.org/TR/rdb2rdf-test-cases/","title":"R2RML and Direct Mapping Test Cases","rawDate":"2012-08-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120814":{"authors":["Boris Villazón-Terrazas","Michael Hausenblas"],"href":"https://www.w3.org/TR/2012/NOTE-rdb2rdf-test-cases-20120814/","title":"R2RML and Direct Mapping Test Cases","rawDate":"2012-08-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdb2rdf-ucr":{"authors":["Eric Prud'hommeaux","Michael Hausenblas"],"href":"https://www.w3.org/TR/rdb2rdf-ucr/","title":"Use Cases and Requirements for Mapping Relational Databases to RDF","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"versions":{"20100608":{"authors":["Eric Prud'hommeaux","Michael Hausenblas"],"href":"https://www.w3.org/TR/2010/WD-rdb2rdf-ucr-20100608/","title":"Use Cases and Requirements for Mapping Relational Databases to RDF","rawDate":"2010-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/rdb2rdf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-06-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rdf-api":{"authors":["Nathan Rixham","Manu Sporny","Benjamin Adrian"],"href":"https://www.w3.org/TR/rdf-api/","title":"RDF API","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120705":{"authors":["Nathan Rixham","Manu Sporny","Benjamin Adrian"],"href":"https://www.w3.org/TR/2012/NOTE-rdf-api-20120705/","title":"RDF API","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"rdf-canon":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/rdf-canon/","title":"RDF Dataset Canonicalization","rawDate":"2023-11-30","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-canon/spec/","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221124":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2022/WD-rdf-canon-20221124/","title":"RDF Dataset Canonicalization","rawDate":"2022-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221206":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2022/WD-rdf-canon-20221206/","title":"RDF Dataset Canonicalization","rawDate":"2022-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2022/WD-rdf-canon-20221212/","title":"RDF Dataset Canonicalization","rawDate":"2022-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221219":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2022/WD-rdf-canon-20221219/","title":"RDF Dataset Canonicalization","rawDate":"2022-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230125/","title":"RDF Dataset Canonicalization","rawDate":"2023-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230202/","title":"RDF Dataset Canonicalization","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230205":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230205/","title":"RDF Dataset Canonicalization","rawDate":"2023-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230310/","title":"RDF Dataset Canonicalization","rawDate":"2023-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230315":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230315/","title":"RDF Dataset Canonicalization","rawDate":"2023-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230405":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230405/","title":"RDF Dataset Canonicalization","rawDate":"2023-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230410":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230410/","title":"RDF Dataset Canonicalization","rawDate":"2023-04-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230412":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230412/","title":"RDF Dataset Canonicalization","rawDate":"2023-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230415":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230415/","title":"RDF Dataset Canonicalization","rawDate":"2023-04-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230505":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230505/","title":"RDF Dataset Canonicalization","rawDate":"2023-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230522":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230522/","title":"RDF Dataset Canonicalization","rawDate":"2023-05-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230524":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230524/","title":"RDF Dataset Canonicalization","rawDate":"2023-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230609":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230609/","title":"RDF Dataset Canonicalization","rawDate":"2023-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230614/","title":"RDF Dataset Canonicalization","rawDate":"2023-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230619":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230619/","title":"RDF Dataset Canonicalization","rawDate":"2023-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230630":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230630/","title":"RDF Dataset Canonicalization","rawDate":"2023-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230712/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230715":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230715/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230720/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230721/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230725":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230725/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230726/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230727/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230728":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230728/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230731":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230731/","title":"RDF Dataset Canonicalization","rawDate":"2023-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230810/","title":"RDF Dataset Canonicalization","rawDate":"2023-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230816":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230816/","title":"RDF Dataset Canonicalization","rawDate":"2023-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230818":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230818/","title":"RDF Dataset Canonicalization","rawDate":"2023-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230829":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230829/","title":"RDF Dataset Canonicalization","rawDate":"2023-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230901":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230901/","title":"RDF Dataset Canonicalization","rawDate":"2023-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230911":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20230911/","title":"RDF Dataset Canonicalization","rawDate":"2023-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/WD-rdf-canon-20231004/","title":"RDF Dataset Canonicalization","rawDate":"2023-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Gregg Kellogg","Dave Longley","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/CR-rdf-canon-20231031/","title":"RDF Dataset Canonicalization","rawDate":"2023-10-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231130":{"authors":["Dave Longley","Gregg Kellogg","Dan Yamamoto"],"href":"https://www.w3.org/TR/2023/CRD-rdf-canon-20231130/","title":"RDF Dataset Canonicalization","rawDate":"2023-11-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-canon"},"rdf-concepts":{"authors":["Graham Klyne","Jeremy Carroll"],"href":"https://www.w3.org/TR/rdf-concepts/","title":"Resource Description Framework (RDF): Concepts and Abstract Syntax","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-concepts","versions":{"20020829":{"status":"WD","rawDate":"2002-08-29","href":"https://www.w3.org/TR/2002/WD-rdf-concepts-20020829/","source":"./data/w3c-specs.txt"},"20021108":{"status":"WD","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/WD-rdf-concepts-20021108/","source":"./data/w3c-specs.txt"},"20030123":{"status":"WD","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/WD-rdf-concepts-20030123/","source":"./data/w3c-specs.txt"},"20030905":{"status":"WD","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/WD-rdf-concepts-20030905/","source":"./data/w3c-specs.txt"},"20031010":{"status":"WD","rawDate":"2003-10-10","href":"https://www.w3.org/TR/2003/WD-rdf-concepts-20031010/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-rdf-concepts-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Graham Klyne","Jeremy Carroll"],"href":"https://www.w3.org/TR/2004/REC-rdf-concepts-20040210/","title":"Resource Description Framework (RDF): Concepts and Abstract Syntax","rawDate":"2004-02-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-concepts","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["rdf-syntax-grammar"],"deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"],"edDraft":"https://w3c.github.io/rdf-concepts/spec/","repository":"https://github.com/w3c/rdf-concepts"},"rdf-dawg-uc":{"authors":["Kendall Clark"],"href":"https://www.w3.org/TR/rdf-dawg-uc/","title":"RDF Data Access Use Cases and Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"versions":{"20040602":{"status":"WD","rawDate":"2004-06-02","href":"https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040602/","source":"./data/w3c-specs.txt"},"20040802":{"status":"WD","rawDate":"2004-08-02","href":"https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20040802/","source":"./data/w3c-specs.txt"},"20041012":{"status":"WD","rawDate":"2004-10-12","href":"https://www.w3.org/TR/2004/WD-rdf-dawg-uc-20041012/","source":"./data/w3c-specs.txt"},"20050325":{"authors":["Kendall Clark"],"href":"https://www.w3.org/TR/2005/WD-rdf-dawg-uc-20050325/","title":"RDF Data Access Use Cases and Requirements","rawDate":"2005-03-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-03-25","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rdf-interfaces":{"authors":["Nathan Rixham","Manu Sporny","Benjamin Adrian"],"href":"https://www.w3.org/TR/rdf-interfaces/","title":"RDF Interfaces","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110510":{"status":"WD","rawDate":"2011-05-10","href":"https://www.w3.org/TR/2011/WD-rdf-interfaces-20110510/","source":"./data/w3c-specs.txt"},"20120705":{"authors":["Nathan Rixham","Manu Sporny","Benjamin Adrian"],"href":"https://www.w3.org/TR/2012/NOTE-rdf-interfaces-20120705/","title":"RDF Interfaces","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"rdf-json":{"authors":["Ian Davis","Thomas Steiner","Arnaud Le Hors"],"href":"https://www.w3.org/TR/rdf-json/","title":"RDF 1.1 JSON Alternate Serialization (RDF/JSON)","rawDate":"2013-11-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131107":{"authors":["Ian Davis","Thomas Steiner","Arnaud Le Hors"],"href":"https://www.w3.org/TR/2013/NOTE-rdf-json-20131107/","title":"RDF 1.1 JSON Alternate Serialization (RDF/JSON)","rawDate":"2013-11-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdf-mt":{"authors":["Patrick Hayes"],"href":"https://www.w3.org/TR/rdf-mt/","title":"RDF Semantics","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-mt","versions":{"20010925":{"status":"WD","rawDate":"2001-09-25","href":"https://www.w3.org/TR/2001/WD-rdf-mt-20010925/","source":"./data/w3c-specs.txt"},"20020214":{"status":"WD","rawDate":"2002-02-14","href":"https://www.w3.org/TR/2002/WD-rdf-mt-20020214/","source":"./data/w3c-specs.txt"},"20020429":{"status":"WD","rawDate":"2002-04-29","href":"https://www.w3.org/TR/2002/WD-rdf-mt-20020429/","source":"./data/w3c-specs.txt"},"20021112":{"status":"WD","rawDate":"2002-11-12","href":"https://www.w3.org/TR/2002/WD-rdf-mt-20021112/","source":"./data/w3c-specs.txt"},"20030123":{"status":"WD","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/WD-rdf-mt-20030123/","source":"./data/w3c-specs.txt"},"20030905":{"status":"WD","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/WD-rdf-mt-20030905/","source":"./data/w3c-specs.txt"},"20031010":{"status":"WD","rawDate":"2003-10-10","href":"https://www.w3.org/TR/2003/WD-rdf-mt-20031010/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-rdf-mt-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Patrick Hayes"],"href":"https://www.w3.org/TR/2004/REC-rdf-mt-20040210/","title":"RDF Semantics","rawDate":"2004-02-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-mt","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["rdf-syntax-grammar"],"deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"],"edDraft":"https://w3c.github.io/rdf-semantics/spec/","repository":"https://github.com/w3c/rdf-semantics"},"rdf-pics":{"versions":{"20000327":{"status":"NOTE","rawDate":"2000-03-27","href":"https://www.w3.org/TR/2000/NOTE-rdf-pics-20000327","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/rdf-pics","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-03-27","title":"PICS Rating Vocabularies in XML/RDF"},"rdf-plain-literal":{"authors":["Jie Bao","Sandro Hawke","Boris Motik","Peter Patel-Schneider","Axel Polleres"],"href":"https://www.w3.org/TR/rdf-plain-literal/","title":"rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html","https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20081202":{"status":"WD","rawDate":"2008-12-02","href":"https://www.w3.org/TR/2008/WD-rdf-text-20081202/","source":"./data/w3c-specs.txt"},"20090421":{"status":"WD","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/WD-rdf-text-20090421/","source":"./data/w3c-specs.txt"},"20090611":{"status":"CR","rawDate":"2009-06-11","href":"https://www.w3.org/TR/2009/CR-rdf-plain-literal-20090611/","source":"./data/w3c-specs.txt"},"20090922":{"status":"PR","rawDate":"2009-09-22","href":"https://www.w3.org/TR/2009/PR-rdf-plain-literal-20090922/","source":"./data/w3c-specs.txt"},"20091027":{"authors":["Jie Bao","Sandro Hawke","Boris Motik","Peter Patel-Schneider","Axel Polleres"],"href":"https://www.w3.org/TR/2009/REC-rdf-plain-literal-20091027/","title":"rdf:PlainLiteral: A Datatype for RDF Plain Literals","rawDate":"2009-10-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html","https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121018":{"status":"PER","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/PER-rdf-plain-literal-20121018/","source":"./data/w3c-specs.txt"},"20121211":{"authors":["Jie Bao","Sandro Hawke","Boris Motik","Peter Patel-Schneider","Axel Polleres"],"href":"https://www.w3.org/TR/2012/REC-rdf-plain-literal-20121211/","title":"rdf:PlainLiteral: A Datatype for RDF Plain Literals (Second Edition)","rawDate":"2012-12-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html","https://www.w3.org/2007/OWL/"],"hasErrata":"https://www.w3.org/2007/OWL/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdf-primer":{"authors":["Frank Manola","Eric Miller"],"href":"https://www.w3.org/TR/rdf-primer/","title":"RDF Primer","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-primer","versions":{"20020319":{"status":"WD","rawDate":"2002-03-19","href":"https://www.w3.org/TR/2002/WD-rdf-primer-20020319/","source":"./data/w3c-specs.txt"},"20020426":{"status":"WD","rawDate":"2002-04-26","href":"https://www.w3.org/TR/2002/WD-rdf-primer-20020426/","source":"./data/w3c-specs.txt"},"20021111":{"status":"WD","rawDate":"2002-11-11","href":"https://www.w3.org/TR/2002/WD-rdf-primer-20021111/","source":"./data/w3c-specs.txt"},"20030123":{"status":"WD","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/WD-rdf-primer-20030123/","source":"./data/w3c-specs.txt"},"20030905":{"status":"WD","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/WD-rdf-primer-20030905/","source":"./data/w3c-specs.txt"},"20031010":{"status":"WD","rawDate":"2003-10-10","href":"https://www.w3.org/TR/2003/WD-rdf-primer-20031010/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-rdf-primer-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Frank Manola","Eric Miller"],"href":"https://www.w3.org/TR/2004/REC-rdf-primer-20040210/","title":"RDF Primer","rawDate":"2004-02-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-primer","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["rdf-syntax-grammar"],"deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"],"edDraft":"https://w3c.github.io/rdf-primer/spec/","repository":"https://github.com/w3c/rdf-primer"},"rdf-schema":{"authors":["Dan Brickley","Ramanathan Guha"],"href":"https://www.w3.org/TR/rdf-schema/","title":"RDF Schema 1.1","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-schema","versions":{"19980409":{"status":"WD","rawDate":"1998-04-09","href":"https://www.w3.org/TR/1998/WD-rdf-schema-19980409/","source":"./data/w3c-specs.txt"},"19980814":{"status":"WD","rawDate":"1998-08-14","href":"https://www.w3.org/TR/1998/WD-rdf-schema-19980814/","source":"./data/w3c-specs.txt"},"19981030":{"status":"WD","rawDate":"1998-10-30","href":"https://www.w3.org/TR/1998/WD-rdf-schema-19981030/","source":"./data/w3c-specs.txt"},"19990303":{"status":"PR","rawDate":"1999-03-03","href":"https://www.w3.org/TR/1999/PR-rdf-schema-19990303","source":"./data/w3c-specs.txt"},"20000327":{"status":"CR","rawDate":"2000-03-27","href":"https://www.w3.org/TR/2000/CR-rdf-schema-20000327","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-rdf-schema-20020430/","source":"./data/w3c-specs.txt"},"20021112":{"status":"WD","rawDate":"2002-11-12","href":"https://www.w3.org/TR/2002/WD-rdf-schema-20021112/","source":"./data/w3c-specs.txt"},"20030123":{"status":"WD","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/WD-rdf-schema-20030123/","source":"./data/w3c-specs.txt"},"20030905":{"status":"WD","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/WD-rdf-schema-20030905/","source":"./data/w3c-specs.txt"},"20031010":{"status":"WD","rawDate":"2003-10-10","href":"https://www.w3.org/TR/2003/WD-rdf-schema-20031010/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-rdf-schema-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Dan Brickley","Ramanathan Guha"],"href":"https://www.w3.org/TR/2004/REC-rdf-schema-20040210/","title":"RDF Vocabulary Description Language 1.0: RDF Schema","rawDate":"2004-02-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-schema","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]},"20140109":{"authors":["Dan Brickley","Ramanathan Guha"],"href":"https://www.w3.org/TR/2014/PER-rdf-schema-20140109/","title":"RDF Schema 1.1","rawDate":"2014-01-09","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Dan Brickley","Ramanathan Guha"],"href":"https://www.w3.org/TR/2014/REC-rdf-schema-20140225/","title":"RDF Schema 1.1","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-02-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"obsoletes":["rdf-syntax-grammar"],"edDraft":"https://w3c.github.io/rdf-schema/spec/","repository":"https://github.com/w3c/rdf-schema"},"rdf-simple-intro":{"versions":{"19971113":{"status":"NOTE","rawDate":"1997-11-13","href":"https://www.w3.org/TR/NOTE-rdf-simple-intro-971113","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-rdf-simple-intro","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-11-13","title":"Introduction to RDF Metadata"},"rdf-sparql-XMLres":{"authors":["Dave Beckett","Jeen Broekstra"],"href":"https://www.w3.org/TR/rdf-sparql-XMLres/","title":"SPARQL Query Results XML Format (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#rdf-sparql-XMLres","versions":{"20041221":{"status":"WD","rawDate":"2004-12-21","href":"https://www.w3.org/TR/2004/WD-rdf-sparql-XMLres-20041221/","source":"./data/w3c-specs.txt"},"20050527":{"status":"WD","rawDate":"2005-05-27","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050527/","source":"./data/w3c-specs.txt"},"20050801":{"status":"WD","rawDate":"2005-08-01","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-XMLres-20050801/","source":"./data/w3c-specs.txt"},"20060125":{"status":"WD","rawDate":"2006-01-25","href":"https://www.w3.org/TR/2006/WD-rdf-sparql-XMLres-20060125/","source":"./data/w3c-specs.txt"},"20060406":{"status":"CR","rawDate":"2006-04-06","href":"https://www.w3.org/TR/2006/CR-rdf-sparql-XMLres-20060406/","source":"./data/w3c-specs.txt"},"20070614":{"status":"WD","rawDate":"2007-06-14","href":"https://www.w3.org/TR/2007/WD-rdf-sparql-XMLres-20070614/","source":"./data/w3c-specs.txt"},"20070925":{"status":"CR","rawDate":"2007-09-25","href":"https://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/","source":"./data/w3c-specs.txt"},"20071112":{"status":"PR","rawDate":"2007-11-12","href":"https://www.w3.org/TR/2007/PR-rdf-sparql-XMLres-20071112/","source":"./data/w3c-specs.txt"},"20080115":{"authors":["Dave Beckett","Jeen Broekstra"],"href":"https://www.w3.org/TR/2008/REC-rdf-sparql-XMLres-20080115/","title":"SPARQL Query Results XML Format","rawDate":"2008-01-15","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2001/sw/DataAccess/XML-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121108":{"status":"PER","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PER-rdf-sparql-XMLres-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Dave Beckett","Jeen Broekstra"],"href":"https://www.w3.org/TR/2013/REC-rdf-sparql-XMLres-20130321/","title":"SPARQL Query Results XML Format (Second Edition)","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#rdf-sparql-XMLres","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-03-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/sparql-results-xml/spec/","repository":"https://github.com/w3c/sparql-results-xml"},"rdf-sparql-json-res":{"authors":["Kendall Clark","Lee Feigenbaum","Elias Torres"],"href":"https://www.w3.org/TR/rdf-sparql-json-res/","title":"Serializing SPARQL Query Results in JSON","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"versions":{"20061004":{"status":"NOTE","rawDate":"2006-10-04","href":"https://www.w3.org/TR/2006/NOTE-rdf-sparql-json-res-20061004/","source":"./data/w3c-specs.txt"},"20070618":{"authors":["Kendall Clark","Lee Feigenbaum","Elias Torres"],"href":"https://www.w3.org/TR/2007/NOTE-rdf-sparql-json-res-20070618/","title":"Serializing SPARQL Query Results in JSON","rawDate":"2007-06-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rdf-sparql-protocol":{"authors":["Kendall Clark","Lee Feigenbaum","Elias Torres"],"href":"https://www.w3.org/TR/rdf-sparql-protocol/","title":"SPARQL Protocol for RDF","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2001/sw/DataAccess/protocol-errata","versions":{"20050114":{"status":"WD","rawDate":"2005-01-14","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050114/","source":"./data/w3c-specs.txt"},"20050527":{"status":"WD","rawDate":"2005-05-27","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050527/","source":"./data/w3c-specs.txt"},"20050914":{"status":"WD","rawDate":"2005-09-14","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-protocol-20050914/","source":"./data/w3c-specs.txt"},"20060125":{"status":"WD","rawDate":"2006-01-25","href":"https://www.w3.org/TR/2006/WD-rdf-sparql-protocol-20060125/","source":"./data/w3c-specs.txt"},"20060406":{"status":"CR","rawDate":"2006-04-06","href":"https://www.w3.org/TR/2006/CR-rdf-sparql-protocol-20060406/","source":"./data/w3c-specs.txt"},"20071112":{"status":"PR","rawDate":"2007-11-12","href":"https://www.w3.org/TR/2007/PR-rdf-sparql-protocol-20071112/","source":"./data/w3c-specs.txt"},"20080115":{"authors":["Kendall Clark","Lee Feigenbaum","Elias Torres"],"href":"https://www.w3.org/TR/2008/REC-rdf-sparql-protocol-20080115/","title":"SPARQL Protocol for RDF","rawDate":"2008-01-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2001/sw/DataAccess/protocol-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-01-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/sparql-protocol/spec/","repository":"https://github.com/w3c/sparql-protocol"},"rdf-sparql-query":{"authors":["Eric Prud'hommeaux","Andy Seaborne"],"href":"https://www.w3.org/TR/rdf-sparql-query/","title":"SPARQL Query Language for RDF","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2001/sw/DataAccess/query-errata","versions":{"20041012":{"status":"WD","rawDate":"2004-10-12","href":"https://www.w3.org/TR/2004/WD-rdf-sparql-query-20041012/","source":"./data/w3c-specs.txt"},"20050217":{"status":"WD","rawDate":"2005-02-17","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050217/","source":"./data/w3c-specs.txt"},"20050419":{"status":"WD","rawDate":"2005-04-19","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050419/","source":"./data/w3c-specs.txt"},"20050721":{"status":"WD","rawDate":"2005-07-21","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-query-20050721/","source":"./data/w3c-specs.txt"},"20051123":{"status":"WD","rawDate":"2005-11-23","href":"https://www.w3.org/TR/2005/WD-rdf-sparql-query-20051123/","source":"./data/w3c-specs.txt"},"20060220":{"status":"WD","rawDate":"2006-02-20","href":"https://www.w3.org/TR/2006/WD-rdf-sparql-query-20060220/","source":"./data/w3c-specs.txt"},"20060406":{"status":"CR","rawDate":"2006-04-06","href":"https://www.w3.org/TR/2006/CR-rdf-sparql-query-20060406/","source":"./data/w3c-specs.txt"},"20061004":{"status":"WD","rawDate":"2006-10-04","href":"https://www.w3.org/TR/2006/WD-rdf-sparql-query-20061004/","source":"./data/w3c-specs.txt"},"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-rdf-sparql-query-20070326/","source":"./data/w3c-specs.txt"},"20070614":{"status":"CR","rawDate":"2007-06-14","href":"https://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/","source":"./data/w3c-specs.txt"},"20071112":{"status":"PR","rawDate":"2007-11-12","href":"https://www.w3.org/TR/2007/PR-rdf-sparql-query-20071112/","source":"./data/w3c-specs.txt"},"20080115":{"authors":["Eric Prud'hommeaux","Andy Seaborne"],"href":"https://www.w3.org/TR/2008/REC-rdf-sparql-query-20080115/","title":"SPARQL Query Language for RDF","rawDate":"2008-01-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2001/sw/DataAccess/query-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-01-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/sparql-query/spec/","repository":"https://github.com/w3c/sparql-query"},"rdf-syntax-grammar":{"authors":["Fabien Gandon","Guus Schreiber"],"href":"https://www.w3.org/TR/rdf-syntax-grammar/","title":"RDF 1.1 XML Syntax","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-syntax-grammar","versions":{"19971002":{"status":"WD","rawDate":"1997-10-02","href":"https://www.w3.org/TR/WD-rdf-syntax-971002","source":"./data/w3c-specs.txt"},"19980216":{"status":"WD","rawDate":"1998-02-16","href":"https://www.w3.org/TR/1998/WD-rdf-syntax-19980216","source":"./data/w3c-specs.txt"},"19980720":{"status":"WD","rawDate":"1998-07-20","href":"https://www.w3.org/TR/1998/WD-rdf-syntax-19980720","source":"./data/w3c-specs.txt"},"19980819":{"status":"WD","rawDate":"1998-08-19","href":"https://www.w3.org/TR/1998/WD-rdf-syntax-19980819","source":"./data/w3c-specs.txt"},"19981008":{"status":"WD","rawDate":"1998-10-08","href":"https://www.w3.org/1998/10/WD-rdf-syntax-19981008","source":"./data/w3c-specs.txt"},"19990105":{"status":"PR","rawDate":"1999-01-05","href":"https://www.w3.org/TR/1999/PR-rdf-syntax-19990105","source":"./data/w3c-specs.txt"},"19990222":{"authors":["Ora Lassila"],"href":"https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/","title":"Resource Description Framework (RDF) Model and Syntax Specification","rawDate":"1999-02-22","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/TR/1999/REC-rdf-syntax-19990222/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20010906":{"status":"WD","rawDate":"2001-09-06","href":"https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20010906","source":"./data/w3c-specs.txt"},"20011218":{"status":"WD","rawDate":"2001-12-18","href":"https://www.w3.org/TR/2001/WD-rdf-syntax-grammar-20011218","source":"./data/w3c-specs.txt"},"20020325":{"status":"WD","rawDate":"2002-03-25","href":"https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20020325","source":"./data/w3c-specs.txt"},"20021108":{"status":"WD","rawDate":"2002-11-08","href":"https://www.w3.org/TR/2002/WD-rdf-syntax-grammar-20021108","source":"./data/w3c-specs.txt"},"20030123":{"status":"WD","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030123","source":"./data/w3c-specs.txt"},"20030905":{"status":"WD","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20030905","source":"./data/w3c-specs.txt"},"20031010":{"status":"WD","rawDate":"2003-10-10","href":"https://www.w3.org/TR/2003/WD-rdf-syntax-grammar-20031010/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-rdf-syntax-grammar-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Dave Beckett"],"href":"https://www.w3.org/TR/2004/REC-rdf-syntax-grammar-20040210/","title":"RDF/XML Syntax Specification (Revised)","rawDate":"2004-02-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-syntax-grammar","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]},"20140109":{"authors":["Fabien Gandon","Guus Schreiber"],"href":"https://www.w3.org/TR/2014/PER-rdf-syntax-grammar-20140109/","title":"RDF 1.1 XML Syntax","rawDate":"2014-01-09","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Fabien Gandon","Guus Schreiber"],"href":"https://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/","title":"RDF 1.1 XML Syntax","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-02-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"obsoletedBy":["rdf-primer"],"obsoletes":["rdf-syntax-grammar"],"edDraft":"https://w3c.github.io/rdf-xml/spec/","repository":"https://github.com/w3c/rdf-xml"},"rdf-testcases":{"authors":["jan grant","Dave Beckett"],"href":"https://www.w3.org/TR/rdf-testcases/","title":"RDF Test Cases","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-testcases","versions":{"20010912":{"status":"WD","rawDate":"2001-09-12","href":"https://www.w3.org/TR/2001/WD-rdf-testcases-20010912/","source":"./data/w3c-specs.txt"},"20011115":{"status":"WD","rawDate":"2001-11-15","href":"https://www.w3.org/TR/2001/WD-rdf-testcases-20011115/","source":"./data/w3c-specs.txt"},"20020429":{"status":"WD","rawDate":"2002-04-29","href":"https://www.w3.org/TR/2002/WD-rdf-testcases-20020429","source":"./data/w3c-specs.txt"},"20021112":{"status":"WD","rawDate":"2002-11-12","href":"https://www.w3.org/TR/2002/WD-rdf-testcases-20021112/","source":"./data/w3c-specs.txt"},"20030123":{"status":"WD","rawDate":"2003-01-23","href":"https://www.w3.org/TR/2003/WD-rdf-testcases-20030123/","source":"./data/w3c-specs.txt"},"20030905":{"status":"WD","rawDate":"2003-09-05","href":"https://www.w3.org/TR/2003/WD-rdf-testcases-20030905/","source":"./data/w3c-specs.txt"},"20031010":{"status":"WD","rawDate":"2003-10-10","href":"https://www.w3.org/TR/2003/WD-rdf-testcases-20031010/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-rdf-testcases-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["jan grant","Dave Beckett"],"href":"https://www.w3.org/TR/2004/REC-rdf-testcases-20040210/","title":"RDF Test Cases","rawDate":"2004-02-10","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2001/sw/RDFCore/errata#rdf-testcases","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["rdf-syntax-grammar"],"deliveredBy":["https://www.w3.org/2001/sw/RDFCore/"]},"rdf-text":{"aliasOf":"rdf-plain-literal"},"rdf-uml":{"authors":["Walter W. Chang"],"href":"https://www.w3.org/TR/NOTE-rdf-uml/","title":"A Discussion of the Relationship Between RDF-Schema and UML","status":"NOTE","publisher":"W3C","versions":{"19980804":{"authors":["Walter W. Chang"],"href":"https://www.w3.org/TR/1998/NOTE-rdf-uml-19980804/","title":"A Discussion of the Relationship Between RDF-Schema and UML","rawDate":"1998-08-04","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1998-08-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rdf11-concepts":{"authors":["Richard Cyganiak","David Wood","Markus Lanthaler"],"href":"https://www.w3.org/TR/rdf11-concepts/","title":"RDF 1.1 Concepts and Abstract Syntax","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110830":{"status":"WD","rawDate":"2011-08-30","href":"https://www.w3.org/TR/2011/WD-rdf11-concepts-20110830/","source":"./data/w3c-specs.txt"},"20120605":{"status":"WD","rawDate":"2012-06-05","href":"https://www.w3.org/TR/2012/WD-rdf11-concepts-20120605/","source":"./data/w3c-specs.txt"},"20130115":{"authors":["Richard Cyganiak","David Wood"],"href":"https://www.w3.org/TR/2013/WD-rdf11-concepts-20130115/","title":"RDF 1.1 Concepts and Abstract Syntax","rawDate":"2013-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130723":{"authors":["Richard Cyganiak","David Wood"],"href":"https://www.w3.org/TR/2013/WD-rdf11-concepts-20130723/","title":"RDF 1.1 Concepts and Abstract Syntax","rawDate":"2013-07-23","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Richard Cyganiak","David Wood","Markus Lanthaler"],"href":"https://www.w3.org/TR/2013/CR-rdf11-concepts-20131105/","title":"RDF 1.1 Concepts and Abstract Syntax","rawDate":"2013-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Richard Cyganiak","David Wood","Markus Lanthaler"],"href":"https://www.w3.org/TR/2014/PR-rdf11-concepts-20140109/","title":"RDF 1.1 Concepts and Abstract Syntax","rawDate":"2014-01-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Richard Cyganiak","David Wood","Markus Lanthaler"],"href":"https://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/","title":"RDF 1.1 Concepts and Abstract Syntax","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/rdf-concepts/spec/","repository":"https://github.com/w3c/rdf-concepts"},"rdf11-datasets":{"authors":["Antoine Zimmermann"],"href":"https://www.w3.org/TR/rdf11-datasets/","title":"RDF 1.1: On Semantics of RDF Datasets","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131217":{"authors":["Antoine Zimmermann"],"href":"https://www.w3.org/TR/2013/WD-rdf11-datasets-20131217/","title":"RDF 1.1: On Semantics of RDF Datasets","rawDate":"2013-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Antoine Zimmermann"],"href":"https://www.w3.org/TR/2014/NOTE-rdf11-datasets-20140225/","title":"RDF 1.1: On Semantics of RDF Datasets","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdf11-mt":{"authors":["Patrick Hayes","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/rdf11-mt/","title":"RDF 1.1 Semantics","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130409":{"authors":["Patrick Hayes","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2013/WD-rdf11-mt-20130409/","title":"RDF 1.1 Semantics","rawDate":"2013-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130723":{"authors":["Patrick Hayes","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2013/WD-rdf11-mt-20130723/","title":"RDF 1.1 Semantics","rawDate":"2013-07-23","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Patrick Hayes","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2013/CR-rdf11-mt-20131105/","title":"RDF 1.1 Semantics","rawDate":"2013-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Patrick Hayes","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2014/PR-rdf11-mt-20140109/","title":"RDF 1.1 Semantics","rawDate":"2014-01-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Patrick Hayes","Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2014/REC-rdf11-mt-20140225/","title":"RDF 1.1 Semantics","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/rdf-semantics/spec/","repository":"https://github.com/w3c/rdf-semantics"},"rdf11-new":{"authors":["David Wood"],"href":"https://www.w3.org/TR/rdf11-new/","title":"What’s New in RDF 1.1","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131217":{"authors":["David Wood"],"href":"https://www.w3.org/TR/2013/WD-rdf11-new-20131217/","title":"What’s New in RDF 1.1","rawDate":"2013-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["David Wood"],"href":"https://www.w3.org/TR/2014/NOTE-rdf11-new-20140225/","title":"What’s New in RDF 1.1","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdf11-primer":{"authors":["Guus Schreiber","Yves Raimond"],"href":"https://www.w3.org/TR/rdf11-primer/","title":"RDF 1.1 Primer","rawDate":"2014-06-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131217":{"authors":["Guus Schreiber","Yves Raimond"],"href":"https://www.w3.org/TR/2013/WD-rdf11-primer-20131217/","title":"RDF 1.1 Primer","rawDate":"2013-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Guus Schreiber","Yves Raimond"],"href":"https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140225/","title":"RDF 1.1 Primer","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140624":{"authors":["Guus Schreiber","Yves Raimond"],"href":"https://www.w3.org/TR/2014/NOTE-rdf11-primer-20140624/","title":"RDF 1.1 Primer","rawDate":"2014-06-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdf11-testcases":{"authors":["Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/rdf11-testcases/","title":"RDF 1.1 Test Cases","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140225":{"authors":["Gregg Kellogg","Markus Lanthaler"],"href":"https://www.w3.org/TR/2014/NOTE-rdf11-testcases-20140225/","title":"RDF 1.1 Test Cases","rawDate":"2014-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rdf12-concepts":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg","Andy Seaborne"],"href":"https://www.w3.org/TR/rdf12-concepts/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2024-01-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-concepts/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Gregg Kellogg","Olaf Hartig","Pierre-Antoine Champin"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230516/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230612":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230612/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230615/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230629/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230727/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230817/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230831/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230916":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230916/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230922":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20230922/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20231012/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-concepts-20231013/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240112":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg"],"href":"https://www.w3.org/TR/2024/WD-rdf12-concepts-20240112/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2024-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240121":{"authors":["Olaf Hartig","Pierre-Antoine Champin","Gregg Kellogg","Andy Seaborne"],"href":"https://www.w3.org/TR/2024/WD-rdf12-concepts-20240121/","title":"RDF 1.2 Concepts and Abstract Syntax","rawDate":"2024-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-concepts"},"rdf12-n-quads":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/rdf12-n-quads/","title":"RDF 1.2 N-Quads","rawDate":"2023-12-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-n-quads/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Dominik Tomaszuk","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230516/","title":"RDF 1.2 N-Quads","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230615/","title":"RDF 1.2 N-Quads","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230727/","title":"RDF 1.2 N-Quads","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230831/","title":"RDF 1.2 N-Quads","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230921/","title":"RDF 1.2 N-Quads","rawDate":"2023-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230928/","title":"RDF 1.2 N-Quads","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230929":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20230929/","title":"RDF 1.2 N-Quads","rawDate":"2023-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231012/","title":"RDF 1.2 N-Quads","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231013/","title":"RDF 1.2 N-Quads","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231019/","title":"RDF 1.2 N-Quads","rawDate":"2023-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-quads-20231221/","title":"RDF 1.2 N-Quads","rawDate":"2023-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-n-quads"},"rdf12-n-triples":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/rdf12-n-triples/","title":"RDF 1.2 N-Triples","rawDate":"2023-12-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-n-triples/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Dominik Tomaszuk","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230516/","title":"RDF 1.2 N-Triples","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230615/","title":"RDF 1.2 N-Triples","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230727/","title":"RDF 1.2 N-Triples","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20230831/","title":"RDF 1.2 N-Triples","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231013/","title":"RDF 1.2 N-Triples","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231019/","title":"RDF 1.2 N-Triples","rawDate":"2023-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231104":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231104/","title":"RDF 1.2 N-Triples","rawDate":"2023-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-n-triples-20231221/","title":"RDF 1.2 N-Triples","rawDate":"2023-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-n-triples"},"rdf12-schema":{"authors":["Dominik Tomaszuk","Timothée Haudebourg"],"href":"https://www.w3.org/TR/rdf12-schema/","title":"RDF 1.2 Schema","rawDate":"2023-09-28","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-schema/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Dominik Tomaszuk","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-schema-20230516/","title":"RDF 1.2 Schema","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Dominik Tomaszuk","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-schema-20230615/","title":"RDF 1.2 Schema","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Dominik Tomaszuk","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-schema-20230928/","title":"RDF 1.2 Schema","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-schema"},"rdf12-semantics":{"authors":["Peter Patel-Schneider","Dörthe Arndt","Timothée Haudebourg"],"href":"https://www.w3.org/TR/rdf12-semantics/","title":"RDF 1.2 Semantics","rawDate":"2024-01-25","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-semantics/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230606":{"authors":["Peter Patel-Schneider","Dörthe Arndt","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-semantics-20230606/","title":"RDF 1.2 Semantics","rawDate":"2023-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Peter Patel-Schneider","Dörthe Arndt","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-semantics-20230615/","title":"RDF 1.2 Semantics","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230922":{"authors":["Peter Patel-Schneider","Dörthe Arndt","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-semantics-20230922/","title":"RDF 1.2 Semantics","rawDate":"2023-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Peter Patel-Schneider","Dörthe Arndt","Timothée Haudebourg"],"href":"https://www.w3.org/TR/2024/WD-rdf12-semantics-20240125/","title":"RDF 1.2 Semantics","rawDate":"2024-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-semantics"},"rdf12-trig":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/rdf12-trig/","title":"RDF 1.2 TriG","rawDate":"2023-11-04","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-trig/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Dominik Tomaszuk","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20230516/","title":"RDF 1.2 TriG","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20230628/","title":"RDF 1.2 TriG","rawDate":"2023-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20230727/","title":"RDF 1.2 TriG","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20230921/","title":"RDF 1.2 TriG","rawDate":"2023-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20231013/","title":"RDF 1.2 TriG","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20231103/","title":"RDF 1.2 TriG","rawDate":"2023-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231104":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-trig-20231104/","title":"RDF 1.2 TriG","rawDate":"2023-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-trig"},"rdf12-turtle":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/rdf12-turtle/","title":"RDF 1.2 Turtle","rawDate":"2023-11-04","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-turtle/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Dominik Tomaszuk","Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20230516/","title":"RDF 1.2 Turtle","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20230615/","title":"RDF 1.2 Turtle","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20230727/","title":"RDF 1.2 Turtle","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20230831/","title":"RDF 1.2 Turtle","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230925":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20230925/","title":"RDF 1.2 Turtle","rawDate":"2023-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20230928/","title":"RDF 1.2 Turtle","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231005":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20231005/","title":"RDF 1.2 Turtle","rawDate":"2023-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20231012/","title":"RDF 1.2 Turtle","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20231013/","title":"RDF 1.2 Turtle","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20231103/","title":"RDF 1.2 Turtle","rawDate":"2023-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231104":{"authors":["Gregg Kellogg","Dominik Tomaszuk"],"href":"https://www.w3.org/TR/2023/WD-rdf12-turtle-20231104/","title":"RDF 1.2 Turtle","rawDate":"2023-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-turtle"},"rdf12-xml":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/rdf12-xml/","title":"RDF 1.2 XML Syntax","rawDate":"2023-09-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/rdf-xml/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-xml-20230516/","title":"RDF 1.2 XML Syntax","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-xml-20230615/","title":"RDF 1.2 XML Syntax","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-xml-20230807/","title":"RDF 1.2 XML Syntax","rawDate":"2023-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-xml-20230810/","title":"RDF 1.2 XML Syntax","rawDate":"2023-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-xml-20230831/","title":"RDF 1.2 XML Syntax","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Gregg Kellogg"],"href":"https://www.w3.org/TR/2023/WD-rdf12-xml-20230921/","title":"RDF 1.2 XML Syntax","rawDate":"2023-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/rdf-xml"},"rdfa-api":{"authors":["Manu Sporny","Benjamin Adrian"],"href":"https://www.w3.org/TR/rdfa-api/","title":"RDFa API","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100608":{"status":"WD","rawDate":"2010-06-08","href":"https://www.w3.org/TR/2010/WD-rdfa-api-20100608/","source":"./data/w3c-specs.txt"},"20100923":{"status":"WD","rawDate":"2010-09-23","href":"https://www.w3.org/TR/2010/WD-rdfa-api-20100923/","source":"./data/w3c-specs.txt"},"20110419":{"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-rdfa-api-20110419/","source":"./data/w3c-specs.txt"},"20120705":{"authors":["Manu Sporny","Benjamin Adrian"],"href":"https://www.w3.org/TR/2012/NOTE-rdfa-api-20120705/","title":"RDFa API","rawDate":"2012-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"rdfa-core":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Ivan Herman"],"etAl":true,"href":"https://www.w3.org/TR/rdfa-core/","title":"RDFa Core 1.1 - Third Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"versions":{"20100422":{"status":"WD","rawDate":"2010-04-22","href":"https://www.w3.org/TR/2010/WD-rdfa-core-20100422/","source":"./data/w3c-specs.txt"},"20100803":{"status":"WD","rawDate":"2010-08-03","href":"https://www.w3.org/TR/2010/WD-rdfa-core-20100803/","source":"./data/w3c-specs.txt"},"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-rdfa-core-20101026/","source":"./data/w3c-specs.txt"},"20110331":{"status":"WD","rawDate":"2011-03-31","href":"https://www.w3.org/TR/2011/WD-rdfa-core-20110331/","source":"./data/w3c-specs.txt"},"20111215":{"status":"WD","rawDate":"2011-12-15","href":"https://www.w3.org/TR/2011/WD-rdfa-core-20111215/","source":"./data/w3c-specs.txt"},"20120131":{"status":"WD","rawDate":"2012-01-31","href":"https://www.w3.org/TR/2012/WD-rdfa-core-20120131/","source":"./data/w3c-specs.txt"},"20120313":{"status":"CR","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/CR-rdfa-core-20120313/","source":"./data/w3c-specs.txt"},"20120508":{"status":"PR","rawDate":"2012-05-08","href":"https://www.w3.org/TR/2012/PR-rdfa-core-20120508/","source":"./data/w3c-specs.txt"},"20120607":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Ivan Herman"],"href":"https://www.w3.org/TR/2012/REC-rdfa-core-20120607/","title":"RDFa Core 1.1","rawDate":"2012-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"hasErrata":"https://www.w3.org/2010/02/rdfa/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Ivan Herman"],"href":"https://www.w3.org/TR/2013/PER-rdfa-core-20130625/","title":"RDFa Core 1.1 - Second Edition","rawDate":"2013-06-25","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130822":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Ivan Herman"],"href":"https://www.w3.org/TR/2013/REC-rdfa-core-20130822/","title":"RDFa Core 1.1 - Second Edition","rawDate":"2013-08-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Ivan Herman"],"href":"https://www.w3.org/TR/2014/PER-rdfa-core-20141216/","title":"RDFa Core 1.1 - Third Edition","rawDate":"2014-12-16","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Ivan Herman"],"href":"https://www.w3.org/TR/2015/REC-rdfa-core-20150317/","title":"RDFa Core 1.1 - Third Edition","rawDate":"2015-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-03-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/2010/02/rdfa/errata.html","obsoletes":["rdfa-syntax"]},"rdfa-in-html":{"aliasOf":"html-rdfa"},"rdfa-lite":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/rdfa-lite/","title":"RDFa Lite 1.1 - Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"hasErrata":"https://www.w3.org/2010/02/rdfa/errata.html","versions":{"20111208":{"status":"WD","rawDate":"2011-12-08","href":"https://www.w3.org/TR/2011/WD-rdfa-lite-20111208/","source":"./data/w3c-specs.txt"},"20120131":{"status":"WD","rawDate":"2012-01-31","href":"https://www.w3.org/TR/2012/WD-rdfa-lite-20120131/","source":"./data/w3c-specs.txt"},"20120313":{"status":"CR","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/CR-rdfa-lite-20120313/","source":"./data/w3c-specs.txt"},"20120508":{"status":"PR","rawDate":"2012-05-08","href":"https://www.w3.org/TR/2012/PR-rdfa-lite-20120508/","source":"./data/w3c-specs.txt"},"20120607":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2012/REC-rdfa-lite-20120607/","title":"RDFa Lite 1.1","rawDate":"2012-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"hasErrata":"https://www.w3.org/2010/02/rdfa/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2014/PER-rdfa-lite-20141216/","title":"RDFa Lite 1.1 - Second Edition","rawDate":"2014-12-16","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2015/REC-rdfa-lite-20150317/","title":"RDFa Lite 1.1 - Second Edition","rawDate":"2015-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-03-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rdfa-primer":{"authors":["Ivan Herman","Ben Adida","Manu Sporny","Mark Birbeck"],"href":"https://www.w3.org/TR/rdfa-primer/","title":"RDFa 1.1 Primer - Third Edition","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"versions":{"20060310":{"status":"WD","rawDate":"2006-03-10","href":"https://www.w3.org/TR/2006/WD-xhtml-rdfa-primer-20060310/","source":"./data/w3c-specs.txt"},"20060516":{"status":"WD","rawDate":"2006-05-16","href":"https://www.w3.org/TR/2006/WD-xhtml-rdfa-primer-20060516/","source":"./data/w3c-specs.txt"},"20070312":{"status":"WD","rawDate":"2007-03-12","href":"https://www.w3.org/TR/2007/WD-xhtml-rdfa-primer-20070312/","source":"./data/w3c-specs.txt"},"20071026":{"status":"WD","rawDate":"2007-10-26","href":"https://www.w3.org/TR/2007/WD-xhtml-rdfa-primer-20071026/","source":"./data/w3c-specs.txt"},"20080317":{"status":"WD","rawDate":"2008-03-17","href":"https://www.w3.org/TR/2008/WD-xhtml-rdfa-primer-20080317/","source":"./data/w3c-specs.txt"},"20080620":{"status":"WD","rawDate":"2008-06-20","href":"https://www.w3.org/TR/2008/WD-xhtml-rdfa-primer-20080620/","source":"./data/w3c-specs.txt"},"20081014":{"status":"NOTE","rawDate":"2008-10-14","href":"https://www.w3.org/TR/2008/NOTE-xhtml-rdfa-primer-20081014/","source":"./data/w3c-specs.txt"},"20110419":{"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-rdfa-primer-20110419/","source":"./data/w3c-specs.txt"},"20111208":{"status":"WD","rawDate":"2011-12-08","href":"https://www.w3.org/TR/2011/WD-rdfa-primer-20111208/","source":"./data/w3c-specs.txt"},"20120508":{"status":"WD","rawDate":"2012-05-08","href":"https://www.w3.org/TR/2012/WD-rdfa-primer-20120508/","source":"./data/w3c-specs.txt"},"20120607":{"authors":["Ben Adida","Ivan Herman","Manu Sporny","Mark Birbeck"],"href":"https://www.w3.org/TR/2012/NOTE-rdfa-primer-20120607/","title":"RDFa 1.1 Primer","rawDate":"2012-06-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130822":{"authors":["Ivan Herman","Ben Adida","Manu Sporny","Mark Birbeck"],"href":"https://www.w3.org/TR/2013/NOTE-rdfa-primer-20130822/","title":"RDFa 1.1 Primer - Second Edition","rawDate":"2013-08-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Ivan Herman","Ben Adida","Manu Sporny","Mark Birbeck"],"href":"https://www.w3.org/TR/2015/NOTE-rdfa-primer-20150317/","title":"RDFa 1.1 Primer - Third Edition","rawDate":"2015-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-03-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/2010/02/rdfa/sources/rdfa-primer/Overview-src.html"},"rdfa-syntax":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Steven Pemberton"],"etAl":true,"href":"https://www.w3.org/TR/rdfa-syntax/","title":"RDFa in XHTML: Syntax and Processing","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/","https://www.w3.org/2006/07/SWD/"],"hasErrata":"https://www.w3.org/MarkUp/2008/REC-rdfa-syntax-20081014-errata","versions":{"20071018":{"status":"WD","rawDate":"2007-10-18","href":"https://www.w3.org/TR/2007/WD-rdfa-syntax-20071018","source":"./data/w3c-specs.txt"},"20080221":{"status":"WD","rawDate":"2008-02-21","href":"https://www.w3.org/TR/2008/WD-rdfa-syntax-20080221","source":"./data/w3c-specs.txt"},"20080620":{"status":"CR","rawDate":"2008-06-20","href":"https://www.w3.org/TR/2008/CR-rdfa-syntax-20080620","source":"./data/w3c-specs.txt"},"20080904":{"status":"PR","rawDate":"2008-09-04","href":"https://www.w3.org/TR/2008/PR-rdfa-syntax-20080904","source":"./data/w3c-specs.txt"},"20081014":{"authors":["Ben Adida","Mark Birbeck","Shane McCarron","Steven Pemberton"],"href":"https://www.w3.org/TR/2008/REC-rdfa-syntax-20081014/","title":"RDFa in XHTML: Syntax and Processing","rawDate":"2008-10-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/","https://www.w3.org/2006/07/SWD/"],"hasErrata":"https://www.w3.org/MarkUp/2008/REC-rdfa-syntax-20081014-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["rdfa-core"]},"rdfarch":{"versions":{"19971029":{"status":"NOTE","rawDate":"1997-10-29","href":"https://www.w3.org/TR/NOTE-rdfarch-971029","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-rdfarch","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-10-29","title":"RDF Architecture - W3C Note"},"rdfcal":{"authors":["Dan Connolly","Libby Miller"],"href":"https://www.w3.org/TR/rdfcal/","title":"RDF Calendar - an application of the Resource Description Framework to iCalendar Data","status":"NOTE","publisher":"W3C","versions":{"20050929":{"authors":["Dan Connolly","Libby Miller"],"href":"https://www.w3.org/TR/2005/NOTE-rdfcal-20050929/","title":"RDF Calendar - an application of the Resource Description Framework to iCalendar Data","rawDate":"2005-09-29","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/interest/"]}},"rawDate":"2005-09-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/interest/"]},"rdftm-survey":{"authors":["Steve Pepper","Fabio Vitali","Lars Marius Garshol","Nicola Gessa","Valentina Presutti"],"etAl":true,"href":"https://www.w3.org/TR/rdftm-survey/","title":"A Survey of RDF/Topic Maps Interoperability Proposals","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20050329":{"status":"WD","rawDate":"2005-03-29","href":"https://www.w3.org/TR/2005/WD-rdftm-survey-20050329/","source":"./data/w3c-specs.txt"},"20060210":{"authors":["Steve Pepper","Fabio Vitali","Lars Marius Garshol","Nicola Gessa","Valentina Presutti"],"href":"https://www.w3.org/TR/2006/NOTE-rdftm-survey-20060210/","title":"A Survey of RDF/Topic Maps Interoperability Proposals","rawDate":"2006-02-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"referrer-policy":{"authors":["Jochen Eisinger","Emily Stark"],"href":"https://www.w3.org/TR/referrer-policy/","title":"Referrer Policy","rawDate":"2017-01-26","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-referrer-policy/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140807":{"authors":["Jochen Eisinger","Mike West"],"href":"https://www.w3.org/TR/2014/WD-referrer-policy-20140807/","title":"Referrer Policy","rawDate":"2014-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160601":{"href":"https://www.w3.org/TR/2016/WD-referrer-policy-20160601/","title":"Referrer Policy","rawDate":"2016-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161016":{"href":"https://www.w3.org/TR/2016/WD-referrer-policy-20161016/","title":"Referrer Policy","rawDate":"2016-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161222":{"authors":["Jochen Eisinger","Emily Stark"],"href":"https://www.w3.org/TR/2016/WD-referrer-policy-20161222/","title":"Referrer Policy","rawDate":"2016-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170126":{"authors":["Jochen Eisinger","Emily Stark"],"href":"https://www.w3.org/TR/2017/CR-referrer-policy-20170126/","title":"Referrer Policy","rawDate":"2017-01-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-referrer-policy"},"remote-meetings":{"authors":["Scott Hollier","Judy Brewer","Jason White","Janina Sajka","Joshue O'Connor","Steve Noble"],"href":"https://www.w3.org/TR/remote-meetings/","title":"Accessibility of Remote Meetings","rawDate":"2022-07-22","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/remote-meetings/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211014":{"authors":["Scott Hollier","Judy Brewer","Jason White","Janina Sajka","Joshue O'Connor","Steve Noble"],"href":"https://www.w3.org/TR/2021/WD-remote-meetings-20211014/","title":"Accessibility of Remote Meetings","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Scott Hollier","Judy Brewer","Jason White","Janina Sajka","Joshue O'Connor","Steve Noble"],"href":"https://www.w3.org/TR/2022/DNOTE-remote-meetings-20220517/","title":"Accessibility of Remote Meetings","rawDate":"2022-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220722":{"authors":["Scott Hollier","Judy Brewer","Jason White","Janina Sajka","Joshue O'Connor","Steve Noble"],"href":"https://www.w3.org/TR/2022/NOTE-remote-meetings-20220722/","title":"Accessibility of Remote Meetings","rawDate":"2022-07-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/apa"},"remote-playback":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/remote-playback/","title":"Remote Playback API","rawDate":"2022-09-29","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/remote-playback/","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160714":{"authors":["Anton Vayvod","Mounir Lamouri"],"href":"https://www.w3.org/TR/2016/WD-remote-playback-20160714/","title":"Remote Playback API","rawDate":"2016-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161107":{"href":"https://www.w3.org/TR/2016/WD-remote-playback-20161107/","title":"Remote Playback API","rawDate":"2016-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171019":{"authors":["Mounir Lamouri","Anton Vayvod"],"href":"https://www.w3.org/TR/2017/CR-remote-playback-20171019/","title":"Remote Playback API","rawDate":"2017-10-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220422":{"authors":["Mounir Lamouri","Mark Foltz"],"href":"https://www.w3.org/TR/2022/CRD-remote-playback-20220422/","title":"Remote Playback API","rawDate":"2022-04-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["Mounir Lamouri","Mark Foltz"],"href":"https://www.w3.org/TR/2022/CRD-remote-playback-20220608/","title":"Remote Playback API","rawDate":"2022-06-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220905":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/CRD-remote-playback-20220905/","title":"Remote Playback API","rawDate":"2022-09-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220929":{"authors":["Mark Foltz"],"href":"https://www.w3.org/TR/2022/CRD-remote-playback-20220929/","title":"Remote Playback API","rawDate":"2022-09-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/remote-playback"},"reporting":{"aliasOf":"reporting-1"},"reporting-1":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/reporting-1/","title":"Reporting API","rawDate":"2023-11-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/reporting/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160407":{"authors":["Ilya Grigorik","Mike West"],"href":"https://www.w3.org/TR/2016/WD-reporting-1-20160407/","title":"Reporting API 1","rawDate":"2016-04-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160607":{"authors":["Ilya Grigorik","Mike West"],"href":"https://www.w3.org/TR/2016/NOTE-reporting-1-20160607/","title":"Reporting API 1","rawDate":"2016-06-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20180925":{"authors":["Douglas Creager","Ilya Grigorik","Paul Meyer","Mike West"],"href":"https://www.w3.org/TR/2018/WD-reporting-1-20180925/","title":"Reporting API","rawDate":"2018-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220405":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/2022/WD-reporting-1-20220405/","title":"Reporting API","rawDate":"2022-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220915":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/2022/WD-reporting-1-20220915/","title":"Reporting API","rawDate":"2022-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/2022/WD-reporting-1-20220916/","title":"Reporting API","rawDate":"2022-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220917":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/2022/WD-reporting-1-20220917/","title":"Reporting API","rawDate":"2022-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230512":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/2023/WD-reporting-1-20230512/","title":"Reporting API","rawDate":"2023-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231110":{"authors":["Douglas Creager","Ian Clelland","Mike West"],"href":"https://www.w3.org/TR/2023/WD-reporting-1-20231110/","title":"Reporting API","rawDate":"2023-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/reporting"},"requestidlecallback":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/requestidlecallback/","title":"requestIdleCallback() Cooperative Scheduling of Background Tasks","rawDate":"2022-06-28","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/requestidlecallback/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150917":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2015/WD-requestidlecallback-20150917/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2015-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2015/WD-requestidlecallback-20150918/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150925":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2015/WD-requestidlecallback-20150925/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2015-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2015/WD-requestidlecallback-20150929/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2015-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151125":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2015/WD-requestidlecallback-20151125/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2015-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151209":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2015/WD-requestidlecallback-20151209/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2015-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2016/WD-requestidlecallback-20160204/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2016/WD-requestidlecallback-20160225/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160419":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2016/WD-requestidlecallback-20160419/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2016-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160428":{"authors":["Ross McIlroy"],"href":"https://www.w3.org/TR/2016/WD-requestidlecallback-20160428/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2016-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-requestidlecallback-20160517/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161221":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-requestidlecallback-20161221/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2016-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170103":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-requestidlecallback-20170103/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2017-01-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170131":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/CR-requestidlecallback-20170131/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2017-01-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171010":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/PR-requestidlecallback-20171010/","title":"Cooperative Scheduling of Background Tasks","rawDate":"2017-10-10","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Ross McIlroy","Ilya Grigorik"],"href":"https://www.w3.org/TR/2022/WD-requestidlecallback-20220628/","title":"requestIdleCallback() Cooperative Scheduling of Background Tasks","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/requestidlecallback"},"resize-observer-1":{"authors":["Aleks Totic","Greg Whitworth"],"href":"https://www.w3.org/TR/resize-observer-1/","title":"Resize Observer","rawDate":"2020-02-11","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/resize-observer/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200211":{"authors":["Aleks Totic","Greg Whitworth"],"href":"https://www.w3.org/TR/2020/WD-resize-observer-1-20200211/","title":"Resize Observer","rawDate":"2020-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"resource-hints":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/resource-hints/","title":"Resource Hints","rawDate":"2023-03-14","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/resource-hints/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141021":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2014/WD-resource-hints-20141021/","title":"Resource Hints","rawDate":"2014-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150423":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150423/","title":"Resource Hints","rawDate":"2015-04-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150717":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150717/","title":"Resource Hints","rawDate":"2015-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150916/","title":"Resource Hints","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150923":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150923/","title":"Resource Hints","rawDate":"2015-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150924/","title":"Resource Hints","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150929":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150929/","title":"Resource Hints","rawDate":"2015-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150930":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20150930/","title":"Resource Hints","rawDate":"2015-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151002":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20151002/","title":"Resource Hints","rawDate":"2015-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151007":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-resource-hints-20151007/","title":"Resource Hints","rawDate":"2015-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160126":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160126/","title":"Resource Hints","rawDate":"2016-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160201":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160201/","title":"Resource Hints","rawDate":"2016-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160204/","title":"Resource Hints","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160223":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160223/","title":"Resource Hints","rawDate":"2016-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160225/","title":"Resource Hints","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160517/","title":"Resource Hints","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160527":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20160527/","title":"Resource Hints","rawDate":"2016-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/WD-resource-hints-20161213/","title":"Resource Hints","rawDate":"2016-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170322":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-resource-hints-20170322/","title":"Resource Hints","rawDate":"2017-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-resource-hints-20170504/","title":"Resource Hints","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180115":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-resource-hints-20180115/","title":"Resource Hints","rawDate":"2018-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-resource-hints-20190307/","title":"Resource Hints","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190627":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-resource-hints-20190627/","title":"Resource Hints","rawDate":"2019-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190702":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-resource-hints-20190702/","title":"Resource Hints","rawDate":"2019-07-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201005":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2020/WD-resource-hints-20201005/","title":"Resource Hints","rawDate":"2020-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230314":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2023/DISC-resource-hints-20230314/","title":"Resource Hints","rawDate":"2023-03-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/resource-hints","isRetired":true},"resource-priorities":{"authors":["Tobin Titus","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/resource-priorities/","title":"Resource Priorities","rawDate":"2014-10-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131029":{"authors":["Jatinder Mann","James Simonsen"],"href":"https://www.w3.org/TR/2013/WD-resource-priorities-20131029/","title":"Resource Priorities","rawDate":"2013-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141023":{"authors":["Tobin Titus","James Simonsen","Jatinder Mann"],"href":"https://www.w3.org/TR/2014/NOTE-resource-priorities-20141023/","title":"Resource Priorities","rawDate":"2014-10-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"http://dvcs.w3.org/hg/webperf/raw-file/tip/specs/ResourcePriorities/Overview.html","isRetired":true},"resource-timing":{"aliasOf":"resource-timing-2"},"resource-timing-1":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/resource-timing-1/","title":"Resource Timing","rawDate":"2023-05-11","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/resource-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110524":{"aliasOf":"resource-timing-20110524"},"20110811":{"aliasOf":"resource-timing-20110811"},"20120522":{"aliasOf":"resource-timing-20120522"},"20140325":{"aliasOf":"resource-timing-20140325"},"20140624":{"aliasOf":"resource-timing-20140624"},"20141216":{"aliasOf":"resource-timing-20141216"},"20150422":{"aliasOf":"resource-timing-20150422"},"20150506":{"aliasOf":"resource-timing-20150506"},"20150604":{"aliasOf":"resource-timing-20150604"},"20150721":{"aliasOf":"resource-timing-20150721"},"20150916":{"aliasOf":"resource-timing-20150916"},"20150918":{"aliasOf":"resource-timing-20150918"},"20150921":{"aliasOf":"resource-timing-20150921"},"20150923":{"aliasOf":"resource-timing-20150923"},"20150924":{"aliasOf":"resource-timing-20150924"},"20150925":{"aliasOf":"resource-timing-20150925"},"20150928":{"aliasOf":"resource-timing-20150928"},"20151014":{"aliasOf":"resource-timing-20151014"},"20151020":{"aliasOf":"resource-timing-20151020"},"20151021":{"aliasOf":"resource-timing-20151021"},"20151023":{"aliasOf":"resource-timing-20151023"},"20151025":{"aliasOf":"resource-timing-20151025"},"20151026":{"aliasOf":"resource-timing-20151026"},"20151027":{"aliasOf":"resource-timing-20151027"},"20151029":{"aliasOf":"resource-timing-20151029"},"20151125":{"aliasOf":"resource-timing-20151125"},"20160113":{"aliasOf":"resource-timing-20160113"},"20160204":{"aliasOf":"resource-timing-20160204"},"20160225":{"aliasOf":"resource-timing-20160225"},"20160421":{"aliasOf":"resource-timing-20160421"},"20160426":{"aliasOf":"resource-timing-20160426"},"20160428":{"aliasOf":"resource-timing-20160428"},"20160721":{"aliasOf":"resource-timing-20160721"},"20161103":{"aliasOf":"resource-timing-20161103"},"20170328":{"aliasOf":"resource-timing-20170328"},"20170329":{"aliasOf":"resource-timing-20170329"},"20170330":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2017/CR-resource-timing-1-20170330/","title":"Resource Timing Level 1","rawDate":"2017-03-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180419":{"aliasOf":"resource-timing-20180419"},"20180422":{"aliasOf":"resource-timing-20180422"},"20180516":{"aliasOf":"resource-timing-20180516"},"20180517":{"aliasOf":"resource-timing-20180517"},"20180518":{"aliasOf":"resource-timing-20180518"},"20181011":{"aliasOf":"resource-timing-20181011"},"20181017":{"aliasOf":"resource-timing-20181017"},"20181105":{"aliasOf":"resource-timing-20181105"},"20190307":{"aliasOf":"resource-timing-20190307"},"20190424":{"aliasOf":"resource-timing-20190424"},"20190516":{"aliasOf":"resource-timing-20190516"},"20190619":{"aliasOf":"resource-timing-20190619"},"20190626":{"aliasOf":"resource-timing-20190626"},"20190923":{"aliasOf":"resource-timing-20190923"},"20191128":{"aliasOf":"resource-timing-20191128"},"20200123":{"aliasOf":"resource-timing-20200123"},"20200218":{"aliasOf":"resource-timing-20200218"},"20200818":{"aliasOf":"resource-timing-20200818"},"20210301":{"aliasOf":"resource-timing-20210301"},"20210414":{"aliasOf":"resource-timing-20210414"},"20220114":{"aliasOf":"resource-timing-20220114"},"20220126":{"aliasOf":"resource-timing-20220126"},"20220127":{"aliasOf":"resource-timing-20220127"},"20220413":{"aliasOf":"resource-timing-20220413"},"20220617":{"aliasOf":"resource-timing-20220617"},"20220706":{"aliasOf":"resource-timing-20220706"},"20220707":{"aliasOf":"resource-timing-20220707"},"20220719":{"aliasOf":"resource-timing-20220719"},"20220831":{"aliasOf":"resource-timing-20220831"},"20220908":{"aliasOf":"resource-timing-20220908"},"20220926":{"aliasOf":"resource-timing-20220926"},"20220927":{"aliasOf":"resource-timing-20220927"},"20220929":{"aliasOf":"resource-timing-20220929"},"20221004":{"aliasOf":"resource-timing-20221004"},"20230511":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2023/CRD-resource-timing-20230511/","title":"Resource Timing","rawDate":"2023-05-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"obsoletedBy":["resource-timing"],"repository":"https://github.com/w3c/resource-timing"},"resource-timing-2":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/resource-timing-2/","title":"Resource Timing","rawDate":"2022-10-04","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/resource-timing/","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110524":{"status":"WD","rawDate":"2011-05-24","href":"https://www.w3.org/TR/2011/WD-resource-timing-20110524/","source":"./data/w3c-specs.txt"},"20110811":{"status":"WD","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/WD-resource-timing-20110811/","source":"./data/w3c-specs.txt"},"20120522":{"authors":["Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2012/CR-resource-timing-20120522/","title":"Resource Timing","rawDate":"2012-05-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140325":{"authors":["Jatinder Mann","Arvind Jain","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2014/CR-resource-timing-20140325/","title":"Resource Timing","rawDate":"2014-03-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140624":{"authors":["Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2014/CR-resource-timing-20140624/","title":"Resource Timing","rawDate":"2014-06-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2014/WD-resource-timing-20141216/","title":"Resource Timing","rawDate":"2014-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150422":{"authors":["Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150422/","title":"Resource Timing","rawDate":"2015-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150506":{"authors":["Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150506/","title":"Resource Timing","rawDate":"2015-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150604":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150604/","title":"Resource Timing","rawDate":"2015-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150721":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150721/","title":"Resource Timing","rawDate":"2015-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150916":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150916/","title":"Resource Timing","rawDate":"2015-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150918/","title":"Resource Timing","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150921":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150921/","title":"Resource Timing","rawDate":"2015-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150923":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150923/","title":"Resource Timing","rawDate":"2015-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150924/","title":"Resource Timing","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150925":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150925/","title":"Resource Timing","rawDate":"2015-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150928":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20150928/","title":"Resource Timing","rawDate":"2015-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151014":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151014/","title":"Resource Timing","rawDate":"2015-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151020":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151020/","title":"Resource Timing","rawDate":"2015-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151021":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151021/","title":"Resource Timing","rawDate":"2015-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151023":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151023/","title":"Resource Timing","rawDate":"2015-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151025":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151025/","title":"Resource Timing","rawDate":"2015-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151026":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151026/","title":"Resource Timing","rawDate":"2015-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151027":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151027/","title":"Resource Timing","rawDate":"2015-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151029":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151029/","title":"Resource Timing","rawDate":"2015-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151125":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2015/WD-resource-timing-20151125/","title":"Resource Timing","rawDate":"2015-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160113":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-20160113/","title":"Resource Timing","rawDate":"2016-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160204":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-20160204/","title":"Resource Timing","rawDate":"2016-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160225":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-20160225/","title":"Resource Timing","rawDate":"2016-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-20160421/","title":"Resource Timing","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160426":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-20160426/","title":"Resource Timing Level 1","rawDate":"2016-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160428":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-20160428/","title":"Resource Timing Level 1","rawDate":"2016-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"authors":["Arvind Jain","Todd Reifsteck","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/CR-resource-timing-1-20160721/","title":"Resource Timing Level 1","rawDate":"2016-07-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161103":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-resource-timing-2-20161103/","title":"Resource Timing Level 2","rawDate":"2016-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170328":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2017/WD-resource-timing-2-20170328/","title":"Resource Timing Level 2","rawDate":"2017-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170329":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2017/WD-resource-timing-2-20170329/","title":"Resource Timing Level 2","rawDate":"2017-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170330":{"aliasOf":"resource-timing-1-20170330"},"20180419":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20180419/","title":"Resource Timing Level 2","rawDate":"2018-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180422":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20180422/","title":"Resource Timing Level 2","rawDate":"2018-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180516":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20180516/","title":"Resource Timing Level 2","rawDate":"2018-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180517":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20180517/","title":"Resource Timing Level 2","rawDate":"2018-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180518":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20180518/","title":"Resource Timing Level 2","rawDate":"2018-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20181011/","title":"Resource Timing Level 2","rawDate":"2018-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181017":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20181017/","title":"Resource Timing Level 2","rawDate":"2018-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181105":{"authors":["Todd Reifsteck","Ilya Grigorik","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-resource-timing-2-20181105/","title":"Resource Timing Level 2","rawDate":"2018-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20190307/","title":"Resource Timing Level 2","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190424":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20190424/","title":"Resource Timing Level 2","rawDate":"2019-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190516":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20190516/","title":"Resource Timing Level 2","rawDate":"2019-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190619":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20190619/","title":"Resource Timing Level 2","rawDate":"2019-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20190626/","title":"Resource Timing Level 2","rawDate":"2019-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190923":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20190923/","title":"Resource Timing Level 2","rawDate":"2019-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191128":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-resource-timing-2-20191128/","title":"Resource Timing Level 2","rawDate":"2019-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200123":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2020/WD-resource-timing-2-20200123/","title":"Resource Timing Level 2","rawDate":"2020-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200218":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2020/WD-resource-timing-2-20200218/","title":"Resource Timing Level 2","rawDate":"2020-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Todd Reifsteck","Ilya Grigorik","Yoav Weiss","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2020/WD-resource-timing-2-20200818/","title":"Resource Timing Level 2","rawDate":"2020-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210301":{"authors":["Yoav Weiss","Ilya Grigorik","Todd Reifsteck","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2021/WD-resource-timing-2-20210301/","title":"Resource Timing Level 2","rawDate":"2021-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210414":{"authors":["Yoav Weiss","Noam Rosenthal","Ilya Grigorik","Todd Reifsteck","Arvind Jain","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2021/WD-resource-timing-2-20210414/","title":"Resource Timing Level 2","rawDate":"2021-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220114":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220114/","title":"Resource Timing Level 2","rawDate":"2022-01-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220126/","title":"Resource Timing Level 2","rawDate":"2022-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220127":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220127/","title":"Resource Timing Level 2","rawDate":"2022-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220413":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220413/","title":"Resource Timing Level 2","rawDate":"2022-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220617/","title":"Resource Timing Level 2","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220706/","title":"Resource Timing Level 2","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220707":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220707/","title":"Resource Timing Level 2","rawDate":"2022-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220719":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220719/","title":"Resource Timing Level 2","rawDate":"2022-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220831/","title":"Resource Timing Level 2","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220908/","title":"Resource Timing Level 2","rawDate":"2022-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220926":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220926/","title":"Resource Timing Level 2","rawDate":"2022-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220927/","title":"Resource Timing Level 2","rawDate":"2022-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220929":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/WD-resource-timing-2-20220929/","title":"Resource Timing Level 2","rawDate":"2022-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221004":{"authors":["Yoav Weiss","Noam Rosenthal"],"href":"https://www.w3.org/TR/2022/CR-resource-timing-20221004/","title":"Resource Timing","rawDate":"2022-10-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/resource-timing"},"respimg-usecases":{"authors":["Marcos Caceres","Mathew Marquis","Yoav Weiss","David Newton"],"href":"https://www.w3.org/TR/respimg-usecases/","title":"Use Cases and Requirements for Standardizing Responsive Images","rawDate":"2013-11-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130226":{"authors":["Marcos Caceres","Mathew Marquis","Yoav Weiss"],"href":"https://www.w3.org/TR/2013/WD-respimg-usecases-20130226/","title":"Use Cases and Requirements for Standardizing Responsive Images","rawDate":"2013-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["Marcos Caceres","Mathew Marquis","Yoav Weiss","David Newton"],"href":"https://www.w3.org/TR/2013/NOTE-respimg-usecases-20131107/","title":"Use Cases and Requirements for Standardizing Responsive Images","rawDate":"2013-11-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://usecases.responsiveimages.org"},"responsible-use-spatial":{"authors":["JOSEPH ABHAYARATNA","Ed Parsons"],"href":"https://www.w3.org/TR/responsible-use-spatial/","title":"The Responsible Use of Spatial Data","rawDate":"2021-05-27","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/responsible-use/","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210119":{"authors":["JOSEPH ABHAYARATNA","Ed Parsons"],"href":"https://www.w3.org/TR/2021/NOTE-responsible-use-spatial-20210119/","title":"The Responsible Use of Spatial Data","rawDate":"2021-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["JOSEPH ABHAYARATNA","Ed Parsons"],"href":"https://www.w3.org/TR/2021/NOTE-responsible-use-spatial-20210527/","title":"The Responsible Use of Spatial Data","rawDate":"2021-05-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"reusable-dialog-reqs":{"authors":["Daniel Burnett"],"href":"https://www.w3.org/TR/reusable-dialog-reqs/","title":"Reusable Dialog Requirements for Voice Markup Language","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20000426":{"authors":["Daniel Burnett"],"href":"https://www.w3.org/TR/2000/WD-reusable-dialog-reqs-20000426","title":"Reusable Dialog Requirements for Voice Markup Language","rawDate":"2000-04-26","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-04-26","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rex":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/rex/","title":"Remote Events for XML (REX) 1.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/2006/webapi/"],"versions":{"20060202":{"status":"WD","rawDate":"2006-02-02","href":"https://www.w3.org/TR/2006/WD-rex-20060202","source":"./data/w3c-specs.txt"},"20061013":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/2006/WD-rex-20061013/","title":"Remote Events for XML (REX) 1.0","rawDate":"2006-10-13","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/2006/webapi/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2006-10-13","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rex-reqs":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/rex-reqs/","title":"Remote Events for XML (REX) Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20060202":{"authors":["Robin Berjon"],"href":"https://www.w3.org/TR/2006/NOTE-rex-reqs-20060202/","title":"Remote Events for XML (REX) Requirements","rawDate":"2006-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-02-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-bld":{"authors":["Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/rif-bld/","title":"RIF Basic Logic Dialect (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","versions":{"20071030":{"status":"WD","rawDate":"2007-10-30","href":"https://www.w3.org/TR/2007/WD-rif-bld-20071030/","source":"./data/w3c-specs.txt"},"20080415":{"status":"WD","rawDate":"2008-04-15","href":"https://www.w3.org/TR/2008/WD-rif-bld-20080415/","source":"./data/w3c-specs.txt"},"20080730":{"status":"WD","rawDate":"2008-07-30","href":"https://www.w3.org/TR/2008/WD-rif-bld-20080730/","source":"./data/w3c-specs.txt"},"20090703":{"status":"WD","rawDate":"2009-07-03","href":"https://www.w3.org/TR/2009/WD-rif-bld-20090703/","source":"./data/w3c-specs.txt"},"20091001":{"status":"CR","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/CR-rif-bld-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"PR","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/PR-rif-bld-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"authors":["Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/2010/REC-rif-bld-20100622/","title":"RIF Basic Logic Dialect","rawDate":"2010-06-22","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121211":{"status":"PER","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/PER-rif-bld-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/2013/REC-rif-bld-20130205/","title":"RIF Basic Logic Dialect (Second Edition)","rawDate":"2013-02-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-core":{"authors":["Harold Boley","Gary Hallmark","Michael Kifer","Adrian Paschke","Axel Polleres","Dave Reynolds"],"etAl":true,"href":"https://www.w3.org/TR/rif-core/","title":"RIF Core Dialect (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","versions":{"20070330":{"status":"WD","rawDate":"2007-03-30","href":"https://www.w3.org/TR/2007/WD-rif-core-20070330","source":"./data/w3c-specs.txt"},"20071030":{"status":"WD","rawDate":"2007-10-30","href":"https://www.w3.org/TR/2007/WD-rif-core-20071030","source":"./data/w3c-specs.txt"},"20081218":{"status":"WD","rawDate":"2008-12-18","href":"https://www.w3.org/TR/2008/WD-rif-core-20081218/","source":"./data/w3c-specs.txt"},"20090703":{"status":"WD","rawDate":"2009-07-03","href":"https://www.w3.org/TR/2009/WD-rif-core-20090703/","source":"./data/w3c-specs.txt"},"20091001":{"status":"CR","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/CR-rif-core-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"PR","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/PR-rif-core-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"authors":["Harold Boley","Gary Hallmark","Michael Kifer","Adrian Paschke","Axel Polleres","Dave Reynolds"],"href":"https://www.w3.org/TR/2010/REC-rif-core-20100622/","title":"RIF Core Dialect","rawDate":"2010-06-22","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121211":{"status":"PER","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/PER-rif-core-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Harold Boley","Gary Hallmark","Michael Kifer","Adrian Paschke","Axel Polleres","Dave Reynolds"],"href":"https://www.w3.org/TR/2013/REC-rif-core-20130205/","title":"RIF Core Dialect (Second Edition)","rawDate":"2013-02-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-dtb":{"authors":["Axel Polleres","Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/rif-dtb/","title":"RIF Datatypes and Built-Ins 1.0 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","versions":{"20080730":{"status":"WD","rawDate":"2008-07-30","href":"https://www.w3.org/TR/2008/WD-rif-dtb-20080730/","source":"./data/w3c-specs.txt"},"20081218":{"status":"WD","rawDate":"2008-12-18","href":"https://www.w3.org/TR/2008/WD-rif-dtb-20081218/","source":"./data/w3c-specs.txt"},"20090703":{"status":"WD","rawDate":"2009-07-03","href":"https://www.w3.org/TR/2009/WD-rif-dtb-20090703/","source":"./data/w3c-specs.txt"},"20091001":{"status":"CR","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/CR-rif-dtb-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"PR","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/PR-rif-dtb-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"authors":["Axel Polleres","Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/2010/REC-rif-dtb-20100622/","title":"RIF Datatypes and Built-Ins 1.0","rawDate":"2010-06-22","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121211":{"status":"PER","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/PER-rif-dtb-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Axel Polleres","Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/2013/REC-rif-dtb-20130205/","title":"RIF Datatypes and Built-Ins 1.0 (Second Edition)","rawDate":"2013-02-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-fld":{"authors":["Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/rif-fld/","title":"RIF Framework for Logic Dialects (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","versions":{"20080415":{"status":"WD","rawDate":"2008-04-15","href":"https://www.w3.org/TR/2008/WD-rif-fld-20080415/","source":"./data/w3c-specs.txt"},"20080730":{"status":"WD","rawDate":"2008-07-30","href":"https://www.w3.org/TR/2008/WD-rif-fld-20080730/","source":"./data/w3c-specs.txt"},"20090703":{"status":"WD","rawDate":"2009-07-03","href":"https://www.w3.org/TR/2009/WD-rif-fld-20090703/","source":"./data/w3c-specs.txt"},"20091001":{"status":"CR","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/CR-rif-fld-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"PR","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/PR-rif-fld-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"authors":["Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/2010/REC-rif-fld-20100622/","title":"RIF Framework for Logic Dialects","rawDate":"2010-06-22","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121211":{"status":"PER","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/PER-rif-fld-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Harold Boley","Michael Kifer"],"href":"https://www.w3.org/TR/2013/REC-rif-fld-20130205/","title":"RIF Framework for Logic Dialects (Second Edition)","rawDate":"2013-02-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-in-rdf":{"authors":["Sandro Hawke","Axel Polleres"],"href":"https://www.w3.org/TR/rif-in-rdf/","title":"RIF In RDF (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100622":{"status":"WD","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/WD-rif-in-rdf-20100622/","source":"./data/w3c-specs.txt"},"20110512":{"status":"NOTE","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/NOTE-rif-in-rdf-20110512/","source":"./data/w3c-specs.txt"},"20121211":{"status":"NOTE","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/NOTE-rif-in-rdf-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Sandro Hawke","Axel Polleres"],"href":"https://www.w3.org/TR/2013/NOTE-rif-in-rdf-20130205/","title":"RIF In RDF (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rif-overview":{"authors":["Michael Kifer","Harold Boley"],"href":"https://www.w3.org/TR/rif-overview/","title":"RIF Overview (Second Edition)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"versions":{"20091001":{"status":"WD","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/WD-rif-overview-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"WD","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/WD-rif-overview-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"status":"NOTE","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/NOTE-rif-overview-20100622/","source":"./data/w3c-specs.txt"},"20121211":{"status":"NOTE","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/NOTE-rif-overview-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Michael Kifer","Harold Boley"],"href":"https://www.w3.org/TR/2013/NOTE-rif-overview-20130205/","title":"RIF Overview (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-owl-rl":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/rif-owl-rl/","title":"OWL 2 RL in RIF (Second Edition)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"versions":{"20091001":{"status":"WD","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/WD-rif-owl-rl-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"WD","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/WD-rif-owl-rl-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"status":"NOTE","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/NOTE-rif-owl-rl-20100622/","source":"./data/w3c-specs.txt"},"20121211":{"status":"NOTE","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/NOTE-rif-owl-rl-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/2013/NOTE-rif-owl-rl-20130205/","title":"OWL 2 RL in RIF (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-prd":{"authors":["Christian de Sainte Marie","Gary Hallmark","Adrian Paschke"],"href":"https://www.w3.org/TR/rif-prd/","title":"RIF Production Rule Dialect (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","versions":{"20080730":{"status":"WD","rawDate":"2008-07-30","href":"https://www.w3.org/TR/2008/WD-rif-prd-20080730/","source":"./data/w3c-specs.txt"},"20081218":{"status":"WD","rawDate":"2008-12-18","href":"https://www.w3.org/TR/2008/WD-rif-prd-20081218/","source":"./data/w3c-specs.txt"},"20090703":{"status":"WD","rawDate":"2009-07-03","href":"https://www.w3.org/TR/2009/WD-rif-prd-20090703/","source":"./data/w3c-specs.txt"},"20091001":{"status":"CR","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/CR-rif-prd-20091001/","source":"./data/w3c-specs.txt"},"20100211":{"status":"WD","rawDate":"2010-02-11","href":"https://www.w3.org/TR/2010/WD-rif-prd-20100211/","source":"./data/w3c-specs.txt"},"20100511":{"status":"PR","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/PR-rif-prd-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"authors":["Christian de Sainte Marie","Gary Hallmark","Adrian Paschke"],"href":"https://www.w3.org/TR/2010/REC-rif-prd-20100622/","title":"RIF Production Rule Dialect","rawDate":"2010-06-22","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121211":{"status":"PER","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/PER-rif-prd-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Christian de Sainte Marie","Gary Hallmark","Adrian Paschke"],"href":"https://www.w3.org/TR/2013/REC-rif-prd-20130205/","title":"RIF Production Rule Dialect (Second Edition)","rawDate":"2013-02-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-primer":{"authors":["Leora Morgenstern","Christopher Welty","Harold Boley","Gary Hallmark"],"href":"https://www.w3.org/TR/rif-primer/","title":"RIF Primer (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121211":{"status":"NOTE","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/NOTE-rif-primer-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Leora Morgenstern","Christopher Welty","Harold Boley","Gary Hallmark"],"href":"https://www.w3.org/TR/2013/NOTE-rif-primer-20130205/","title":"RIF Primer (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"rif-rdf-owl":{"authors":["Jos de Bruijn","Christopher Welty"],"href":"https://www.w3.org/TR/rif-rdf-owl/","title":"RIF RDF and OWL Compatibility (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","versions":{"20071030":{"status":"WD","rawDate":"2007-10-30","href":"https://www.w3.org/TR/2007/WD-rif-rdf-owl-20071030/","source":"./data/w3c-specs.txt"},"20080415":{"status":"WD","rawDate":"2008-04-15","href":"https://www.w3.org/TR/2008/WD-rif-rdf-owl-20080415/","source":"./data/w3c-specs.txt"},"20080730":{"status":"WD","rawDate":"2008-07-30","href":"https://www.w3.org/TR/2008/WD-rif-rdf-owl-20080730/","source":"./data/w3c-specs.txt"},"20090703":{"status":"WD","rawDate":"2009-07-03","href":"https://www.w3.org/TR/2009/WD-rif-rdf-owl-20090703/","source":"./data/w3c-specs.txt"},"20091001":{"status":"CR","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/CR-rif-rdf-owl-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"PR","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/PR-rif-rdf-owl-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"authors":["Jos de Bruijn"],"href":"https://www.w3.org/TR/2010/REC-rif-rdf-owl-20100622/","title":"RIF RDF and OWL Compatibility","rawDate":"2010-06-22","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20121211":{"status":"PER","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/PER-rif-rdf-owl-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Jos de Bruijn","Christopher Welty"],"href":"https://www.w3.org/TR/2013/REC-rif-rdf-owl-20130205/","title":"RIF RDF and OWL Compatibility (Second Edition)","rawDate":"2013-02-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"hasErrata":"https://www.w3.org/2010/rif/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-test":{"authors":["Stella Mitchell","Leora Morgenstern","Adrian Paschke"],"href":"https://www.w3.org/TR/rif-test/","title":"RIF Test Cases (Second Edition)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"versions":{"20081218":{"status":"WD","rawDate":"2008-12-18","href":"https://www.w3.org/TR/2008/WD-rif-test-20081218/","source":"./data/w3c-specs.txt"},"20091001":{"status":"WD","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/WD-rif-test-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"WD","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/WD-rif-test-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"status":"WD","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/WD-rif-test-20100622/","source":"./data/w3c-specs.txt"},"20121211":{"status":"NOTE","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/NOTE-rif-test-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Stella Mitchell","Leora Morgenstern","Adrian Paschke"],"href":"https://www.w3.org/TR/2013/NOTE-rif-test-20130205/","title":"RIF Test Cases (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-ucr":{"authors":["Adrian Paschke","Leora Morgenstern","David Hirtle","Allen Ginsberg","Paula-Lavinia Patranjan","Francis McCabe"],"etAl":true,"href":"https://www.w3.org/TR/rif-ucr/","title":"RIF Use Cases and Requirements (Second Edition)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"versions":{"20060323":{"status":"WD","rawDate":"2006-03-23","href":"https://www.w3.org/TR/2006/WD-rif-ucr-20060323/","source":"./data/w3c-specs.txt"},"20060710":{"status":"WD","rawDate":"2006-07-10","href":"https://www.w3.org/TR/2006/WD-rif-ucr-20060710/","source":"./data/w3c-specs.txt"},"20080730":{"status":"WD","rawDate":"2008-07-30","href":"https://www.w3.org/TR/2008/WD-rif-ucr-20080730/","source":"./data/w3c-specs.txt"},"20081218":{"status":"WD","rawDate":"2008-12-18","href":"https://www.w3.org/TR/2008/WD-rif-ucr-20081218/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Adrian Paschke","Leora Morgenstern","David Hirtle","Allen Ginsberg","Paula-Lavinia Patranjan","Francis McCabe"],"href":"https://www.w3.org/TR/2013/NOTE-rif-ucr-20130205/","title":"RIF Use Cases and Requirements (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-02-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"rif-xml-data":{"authors":["Christian de Sainte Marie"],"href":"https://www.w3.org/TR/rif-xml-data/","title":"RIF Combination with XML data (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091001":{"status":"WD","rawDate":"2009-10-01","href":"https://www.w3.org/TR/2009/WD-rif-xml-data-20091001/","source":"./data/w3c-specs.txt"},"20100511":{"status":"WD","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/WD-rif-xml-data-20100511/","source":"./data/w3c-specs.txt"},"20100622":{"status":"WD","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/WD-rif-xml-data-20100622/","source":"./data/w3c-specs.txt"},"20121211":{"status":"NOTE","rawDate":"2012-12-11","href":"https://www.w3.org/TR/2012/NOTE-rif-xml-data-20121211/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Christian de Sainte Marie"],"href":"https://www.w3.org/TR/2013/NOTE-rif-xml-data-20130205/","title":"RIF Combination with XML data (Second Edition)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/rules/wg.html"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"role-attribute":{"authors":["Shane McCarron"],"etAl":true,"href":"https://www.w3.org/TR/role-attribute/","title":"Role Attribute 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"hasErrata":"https://www.w3.org/WAI/PF/role-attribute/errata","versions":{"20100916":{"status":"WD","rawDate":"2010-09-16","href":"https://www.w3.org/TR/2010/WD-role-attribute-20100916/","source":"./data/w3c-specs.txt"},"20110113":{"status":"WD","rawDate":"2011-01-13","href":"https://www.w3.org/TR/2011/WD-role-attribute-20110113/","source":"./data/w3c-specs.txt"},"20120712":{"status":"CR","rawDate":"2012-07-12","href":"https://www.w3.org/TR/2012/CR-role-attribute-20120712/","source":"./data/w3c-specs.txt"},"20121213":{"status":"PR","rawDate":"2012-12-13","href":"https://www.w3.org/TR/2012/PR-role-attribute-20121213/","source":"./data/w3c-specs.txt"},"20130328":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2013/REC-role-attribute-20130328/","title":"Role Attribute 1.0","rawDate":"2013-03-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"hasErrata":"https://www.w3.org/WAI/PF/role-attribute/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","etAl":true}},"rawDate":"2013-03-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ruby":{"authors":["Marcin Sawicki","Michel Suignard","Masayasu Ishikawa","Martin Dürst","Tex Texin"],"etAl":true,"href":"https://www.w3.org/TR/ruby/","title":"Ruby Annotation","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"hasErrata":"https://www.w3.org/2001/05/ruby-errata","versions":{"19981221":{"status":"WD","rawDate":"1998-12-21","href":"https://www.w3.org/TR/1998/WD-ruby-19981221","source":"./data/w3c-specs.txt"},"19990322":{"status":"WD","rawDate":"1999-03-22","href":"https://www.w3.org/TR/1999/WD-ruby-19990322","source":"./data/w3c-specs.txt"},"19990924":{"status":"WD","rawDate":"1999-09-24","href":"https://www.w3.org/TR/1999/WD-ruby-19990924","source":"./data/w3c-specs.txt"},"19991217":{"status":"WD","rawDate":"1999-12-17","href":"https://www.w3.org/TR/1999/WD-ruby-19991217","source":"./data/w3c-specs.txt"},"20010216":{"status":"WD","rawDate":"2001-02-16","href":"https://www.w3.org/TR/2001/WD-ruby-20010216/","source":"./data/w3c-specs.txt"},"20010406":{"status":"PR","rawDate":"2001-04-06","href":"https://www.w3.org/TR/2001/PR-ruby-20010406/","source":"./data/w3c-specs.txt"},"20010531":{"authors":["Marcin Sawicki","Michel Suignard","Masayasu Ishikawa","Martin Dürst","Tex Texin"],"href":"https://www.w3.org/TR/2001/REC-ruby-20010531/","title":"Ruby Annotation","rawDate":"2001-05-31","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"hasErrata":"https://www.w3.org/2001/05/ruby-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-05-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ruby-implementation":{"versions":{"20010531":{"status":"NOTE","rawDate":"2001-05-31","href":"https://www.w3.org/TR/2001/NOTE-ruby-implementation-20010531","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/ruby-implementation/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-05-31","title":"Implementing the Ruby Module"},"ruby-use-cases":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/ruby-use-cases/","title":"Use Cases & Exploratory Approaches for Ruby Markup","rawDate":"2013-10-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120710":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2012/WD-ruby-use-cases-20120710/","title":"Use Cases & Exploratory Approaches for Ruby Markup","rawDate":"2012-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2013/WD-ruby-use-cases-20130910/","title":"Use Cases & Exploratory Approaches for Ruby Markup","rawDate":"2013-09-10","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131008":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2013/NOTE-ruby-use-cases-20131008/","title":"Use Cases & Exploratory Approaches for Ruby Markup","rawDate":"2013-10-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/International/docs/ruby/"},"runtime":{"authors":["Mounir Lamouri","MING JIN"],"href":"https://www.w3.org/TR/runtime/","title":"Runtime and Security Model for Web Applications","rawDate":"2015-08-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130321":{"authors":["Mounir Lamouri","MING JIN"],"href":"https://www.w3.org/TR/2013/WD-runtime-20130321/","title":"Runtime and Security Model for Web Applications","rawDate":"2013-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150806":{"authors":["Mounir Lamouri","MING JIN"],"href":"https://www.w3.org/TR/2015/NOTE-runtime-20150806/","title":"Runtime and Security Model for Web Applications","rawDate":"2015-08-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"sXBL":{"authors":["Jon Ferraiolo","Ian Hickson","David Hyatt"],"href":"https://www.w3.org/TR/sXBL/","title":"SVG's XML Binding Language (sXBL)","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"versions":{"20040901":{"status":"WD","rawDate":"2004-09-01","href":"https://www.w3.org/TR/2004/WD-sXBL-20040901","source":"./data/w3c-specs.txt"},"20041122":{"status":"WD","rawDate":"2004-11-22","href":"https://www.w3.org/TR/2004/WD-sXBL-20041122","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Jon Ferraiolo","Ian Hickson","David Hyatt"],"title":"SVG's XML Binding Language (sXBL)","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"]},"20050405":{"status":"WD","rawDate":"2005-04-05","href":"https://www.w3.org/TR/2005/WD-sXBL-20050405","source":"./data/w3c-specs.txt"},"20050815":{"authors":["Jon Ferraiolo","Ian Hickson","David Hyatt"],"href":"https://www.w3.org/TR/2005/WD-sXBL-20050815/","title":"SVG's XML Binding Language (sXBL)","rawDate":"2005-08-15","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-08-15","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"saur":{"authors":["Steve Noble","Jason White","Scott Hollier","Janina Sajka","Joshue O'Connor"],"href":"https://www.w3.org/TR/saur/","title":"Synchronization Accessibility User Requirements","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/saur/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210928":{"authors":["Steve Noble","Jason White","Scott Hollier","Janina Sajka","Joshue O'Connor"],"href":"https://www.w3.org/TR/2021/WD-saur-20210928/","title":"Synchronization Accessibility User Requirements","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220413":{"authors":["Steve Noble","Jason White","Scott Hollier","Janina Sajka","Joshue O'Connor"],"href":"https://www.w3.org/TR/2022/DNOTE-saur-20220413/","title":"Synchronization Accessibility User Requirements","rawDate":"2022-04-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220705":{"authors":["Steve Noble","Jason White","Scott Hollier","Janina Sajka","Joshue O'Connor"],"href":"https://www.w3.org/TR/2022/NOTE-saur-20220705/","title":"Synchronization Accessibility User Requirements","rawDate":"2022-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Steve Noble","Jason White","Scott Hollier","Janina Sajka","Joshue O'Connor"],"href":"https://www.w3.org/TR/2023/NOTE-saur-20230628/","title":"Synchronization Accessibility User Requirements","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/apa"},"sawsdl":{"authors":["Joel Farrell","Holger Lausen"],"href":"https://www.w3.org/TR/sawsdl/","title":"Semantic Annotations for WSDL and XML Schema","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/sawsdl/"],"hasErrata":"https://www.w3.org/2002/ws/sawsdl/errata/","versions":{"20060630":{"status":"WD","rawDate":"2006-06-30","href":"https://www.w3.org/TR/2006/WD-sawsdl-20060630/","source":"./data/w3c-specs.txt"},"20060928":{"status":"WD","rawDate":"2006-09-28","href":"https://www.w3.org/TR/2006/WD-sawsdl-20060928/","source":"./data/w3c-specs.txt"},"20070126":{"status":"CR","rawDate":"2007-01-26","href":"https://www.w3.org/TR/2007/CR-sawsdl-20070126","source":"./data/w3c-specs.txt"},"20070410":{"status":"WD","rawDate":"2007-04-10","href":"https://www.w3.org/TR/2007/WD-sawsdl-20070410/","source":"./data/w3c-specs.txt"},"20070705":{"status":"PR","rawDate":"2007-07-05","href":"https://www.w3.org/TR/2007/PR-sawsdl-20070705/","source":"./data/w3c-specs.txt"},"20070828":{"authors":["Joel Farrell","Holger Lausen"],"href":"https://www.w3.org/TR/2007/REC-sawsdl-20070828/","title":"Semantic Annotations for WSDL and XML Schema","rawDate":"2007-08-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/sawsdl/"],"hasErrata":"https://www.w3.org/2002/ws/sawsdl/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-08-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"sawsdl-guide":{"authors":["Rama Akkiraju","Brahmananda Sapkota"],"href":"https://www.w3.org/TR/sawsdl-guide/","title":"Semantic Annotations for WSDL and XML Schema — Usage Guide","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/sawsdl/"],"versions":{"20060928":{"status":"WD","rawDate":"2006-09-28","href":"https://www.w3.org/TR/2006/WD-sawsdl-guide-20060928/","source":"./data/w3c-specs.txt"},"20070126":{"status":"WD","rawDate":"2007-01-26","href":"https://www.w3.org/TR/2007/WD-sawsdl-guide-20070126/","source":"./data/w3c-specs.txt"},"20070828":{"authors":["Rama Akkiraju","Brahmananda Sapkota"],"href":"https://www.w3.org/TR/2007/NOTE-sawsdl-guide-20070828/","title":"Semantic Annotations for WSDL and XML Schema — Usage Guide","rawDate":"2007-08-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/sawsdl/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-08-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"schema-arch":{"authors":["Henry Thompson"],"href":"https://www.w3.org/TR/schema-arch/","title":"The Cambridge Communiqué","status":"NOTE","publisher":"W3C","versions":{"19991007":{"authors":["Henry Thompson"],"href":"https://www.w3.org/TR/1999/NOTE-schema-arch-19991007","title":"The Cambridge Communiqué","rawDate":"1999-10-07","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-10-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"screen-capture":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/screen-capture/","title":"Screen Capture","rawDate":"2023-12-14","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/mediacapture-screen-share/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150210":{"authors":["Martin Thomson","Keith Griffin"],"href":"https://www.w3.org/TR/2015/WD-screen-capture-20150210/","title":"Screen Capture","rawDate":"2015-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160607":{"href":"https://www.w3.org/TR/2016/WD-screen-capture-20160607/","title":"Screen Capture","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"href":"https://www.w3.org/TR/2016/WD-screen-capture-20160714/","title":"Screen Capture","rawDate":"2016-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/","https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Martin Thomson","Keith Griffin"]},"20191119":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2019/WD-screen-capture-20191119/","title":"Screen Capture","rawDate":"2019-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210205":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20210205/","title":"Screen Capture","rawDate":"2021-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20210527/","title":"Screen Capture","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20210603/","title":"Screen Capture","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210610":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20210610/","title":"Screen Capture","rawDate":"2021-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210902":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20210902/","title":"Screen Capture","rawDate":"2021-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211109":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20211109/","title":"Screen Capture","rawDate":"2021-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211116":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20211116/","title":"Screen Capture","rawDate":"2021-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2021/WD-screen-capture-20211202/","title":"Screen Capture","rawDate":"2021-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220114":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220114/","title":"Screen Capture","rawDate":"2022-01-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220203/","title":"Screen Capture","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220317":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220317/","title":"Screen Capture","rawDate":"2022-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220505/","title":"Screen Capture","rawDate":"2022-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220519/","title":"Screen Capture","rawDate":"2022-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220616":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220616/","title":"Screen Capture","rawDate":"2022-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220825":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220825/","title":"Screen Capture","rawDate":"2022-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220929":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20220929/","title":"Screen Capture","rawDate":"2022-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221013":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20221013/","title":"Screen Capture","rawDate":"2022-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20221020/","title":"Screen Capture","rawDate":"2022-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221117":{"authors":["Martin Thomson","Keith Griffin","Suhas Nandakumar","Henrik Boström","Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20221117/","title":"Screen Capture","rawDate":"2022-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221201":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2022/WD-screen-capture-20221201/","title":"Screen Capture","rawDate":"2022-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230112":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20230112/","title":"Screen Capture","rawDate":"2023-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20230413/","title":"Screen Capture","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20230629/","title":"Screen Capture","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20230706/","title":"Screen Capture","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20230831/","title":"Screen Capture","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20231026/","title":"Screen Capture","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231214":{"authors":["Jan-Ivar Bruaroey","Elad Alon"],"href":"https://www.w3.org/TR/2023/WD-screen-capture-20231214/","title":"Screen Capture","rawDate":"2023-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/mediacapture-screen-share"},"screen-fold":{"aliasOf":"device-posture"},"screen-orientation":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/screen-orientation/","title":"Screen Orientation","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"versions":{"20120522":{"status":"WD","rawDate":"2012-05-22","href":"https://www.w3.org/TR/2012/WD-screen-orientation-20120522/","source":"./data/w3c-specs.txt"},"20121206":{"authors":["Mounir Lamouri"],"href":"https://www.w3.org/TR/2012/WD-screen-orientation-20121206/","title":"The Screen Orientation API","rawDate":"2012-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140220":{"authors":["Mounir Lamouri"],"href":"https://www.w3.org/TR/2014/WD-screen-orientation-20140220/","title":"The Screen Orientation API","rawDate":"2014-02-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141023":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2014/WD-screen-orientation-20141023/","title":"The Screen Orientation API","rawDate":"2014-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150428":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2015/WD-screen-orientation-20150428/","title":"The Screen Orientation API","rawDate":"2015-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2015/WD-screen-orientation-20151215/","title":"The Screen Orientation API","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151223":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2015/WD-screen-orientation-20151223/","title":"The Screen Orientation API","rawDate":"2015-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160527":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2016/WD-screen-orientation-20160527/","title":"The Screen Orientation API","rawDate":"2016-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160708":{"href":"https://www.w3.org/TR/2016/WD-screen-orientation-20160708/","title":"The Screen Orientation API","rawDate":"2016-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160711":{"href":"https://www.w3.org/TR/2016/WD-screen-orientation-20160711/","title":"The Screen Orientation API","rawDate":"2016-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160718":{"href":"https://www.w3.org/TR/2016/WD-screen-orientation-20160718/","title":"The Screen Orientation API","rawDate":"2016-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"href":"https://www.w3.org/TR/2016/WD-screen-orientation-20160721/","title":"The Screen Orientation API","rawDate":"2016-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161031":{"href":"https://www.w3.org/TR/2016/WD-screen-orientation-20161031/","title":"The Screen Orientation API","rawDate":"2016-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171101":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-screen-orientation-20171101/","title":"The Screen Orientation API","rawDate":"2017-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171103":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-screen-orientation-20171103/","title":"The Screen Orientation API","rawDate":"2017-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171104":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-screen-orientation-20171104/","title":"The Screen Orientation API","rawDate":"2017-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171105":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-screen-orientation-20171105/","title":"The Screen Orientation API","rawDate":"2017-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180508":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180508/","title":"The Screen Orientation API","rawDate":"2018-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180509":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180509/","title":"The Screen Orientation API","rawDate":"2018-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180530":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180530/","title":"The Screen Orientation API","rawDate":"2018-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180531":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180531/","title":"The Screen Orientation API","rawDate":"2018-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180601":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180601/","title":"The Screen Orientation API","rawDate":"2018-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180706":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180706/","title":"The Screen Orientation API","rawDate":"2018-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20180926/","title":"The Screen Orientation API","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181012":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20181012/","title":"The Screen Orientation API","rawDate":"2018-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181214":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/WD-screen-orientation-20181214/","title":"The Screen Orientation API","rawDate":"2018-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190108":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190108/","title":"The Screen Orientation API","rawDate":"2019-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190109":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190109/","title":"The Screen Orientation API","rawDate":"2019-01-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190110":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190110/","title":"The Screen Orientation API","rawDate":"2019-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190117":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190117/","title":"The Screen Orientation API","rawDate":"2019-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190120":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190120/","title":"The Screen Orientation API","rawDate":"2019-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190121":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190121/","title":"The Screen Orientation API","rawDate":"2019-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190122":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190122/","title":"The Screen Orientation API","rawDate":"2019-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190125":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190125/","title":"The Screen Orientation API","rawDate":"2019-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190128":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190128/","title":"The Screen Orientation API","rawDate":"2019-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190129":{"authors":["Mounir Lamouri","Marcos Caceres"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190129/","title":"The Screen Orientation API","rawDate":"2019-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190312":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190312/","title":"The Screen Orientation API","rawDate":"2019-03-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190313":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190313/","title":"The Screen Orientation API","rawDate":"2019-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190314":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190314/","title":"The Screen Orientation API","rawDate":"2019-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190315":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190315/","title":"The Screen Orientation API","rawDate":"2019-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190326":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190326/","title":"The Screen Orientation API","rawDate":"2019-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190416":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190416/","title":"The Screen Orientation API","rawDate":"2019-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190513":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190513/","title":"The Screen Orientation API","rawDate":"2019-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190530/","title":"The Screen Orientation API","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190531":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190531/","title":"The Screen Orientation API","rawDate":"2019-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190626/","title":"The Screen Orientation API","rawDate":"2019-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190627":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190627/","title":"The Screen Orientation API","rawDate":"2019-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190722":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190722/","title":"The Screen Orientation API","rawDate":"2019-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190723":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190723/","title":"The Screen Orientation API","rawDate":"2019-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190903":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20190903/","title":"The Screen Orientation API","rawDate":"2019-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191024":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20191024/","title":"The Screen Orientation API","rawDate":"2019-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191102":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2019/WD-screen-orientation-20191102/","title":"The Screen Orientation API","rawDate":"2019-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200122":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2020/WD-screen-orientation-20200122/","title":"The Screen Orientation API","rawDate":"2020-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200330":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2020/WD-screen-orientation-20200330/","title":"The Screen Orientation API","rawDate":"2020-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200417":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2020/WD-screen-orientation-20200417/","title":"The Screen Orientation API","rawDate":"2020-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201019":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2020/WD-screen-orientation-20201019/","title":"The Screen Orientation API","rawDate":"2020-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2021/WD-screen-orientation-20210617/","title":"The Screen Orientation API","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210906":{"authors":["Mounir Lamouri","Marcos Caceres","Johanna Herman"],"href":"https://www.w3.org/TR/2021/WD-screen-orientation-20210906/","title":"The Screen Orientation API","rawDate":"2021-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221006/","title":"The Screen Orientation API","rawDate":"2022-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221007":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221007/","title":"The Screen Orientation API","rawDate":"2022-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221010/","title":"The Screen Orientation API","rawDate":"2022-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221012":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221012/","title":"The Screen Orientation API","rawDate":"2022-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221014/","title":"The Screen Orientation API","rawDate":"2022-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221015":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221015/","title":"The Screen Orientation API","rawDate":"2022-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221017/","title":"The Screen Orientation API","rawDate":"2022-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221018/","title":"The Screen Orientation API","rawDate":"2022-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221019/","title":"The Screen Orientation API","rawDate":"2022-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221021/","title":"The Screen Orientation API","rawDate":"2022-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221023":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221023/","title":"The Screen Orientation API","rawDate":"2022-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221024":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221024/","title":"The Screen Orientation API","rawDate":"2022-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221025":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221025/","title":"The Screen Orientation API","rawDate":"2022-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221027/","title":"The Screen Orientation API","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221031":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221031/","title":"The Screen Orientation API","rawDate":"2022-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221103":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221103/","title":"The Screen Orientation API","rawDate":"2022-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221109":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221109/","title":"The Screen Orientation API","rawDate":"2022-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221114":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221114/","title":"Screen Orientation","rawDate":"2022-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221216":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-screen-orientation-20221216/","title":"Screen Orientation","rawDate":"2022-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230215":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230215/","title":"Screen Orientation","rawDate":"2023-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230321/","title":"Screen Orientation","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230403/","title":"Screen Orientation","rawDate":"2023-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230413/","title":"Screen Orientation","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230414":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230414/","title":"Screen Orientation","rawDate":"2023-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230502":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230502/","title":"Screen Orientation","rawDate":"2023-05-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230504":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230504/","title":"Screen Orientation","rawDate":"2023-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230803":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230803/","title":"Screen Orientation","rawDate":"2023-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230809":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2023/WD-screen-orientation-20230809/","title":"Screen Orientation","rawDate":"2023-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-08-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/screen-orientation/","repository":"https://github.com/w3c/screen-orientation"},"screen-wake-lock":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/screen-wake-lock/","title":"Screen Wake Lock API","rawDate":"2023-11-07","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/screen-wake-lock/","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150212":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2015/WD-wake-lock-20150212/","title":"Wake Lock API","rawDate":"2015-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150904":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2015/WD-wake-lock-20150904/","title":"Wake Lock API","rawDate":"2015-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160129":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160129/","title":"Wake Lock API","rawDate":"2016-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160316":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160316/","title":"Wake Lock API","rawDate":"2016-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160603":{"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160603/","title":"Wake Lock API","rawDate":"2016-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160617":{"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160617/","title":"Wake Lock API","rawDate":"2016-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160620":{"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160620/","title":"Wake Lock API","rawDate":"2016-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160714/","title":"Wake Lock API","rawDate":"2016-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160803":{"href":"https://www.w3.org/TR/2016/WD-wake-lock-20160803/","title":"Wake Lock API","rawDate":"2016-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161220":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2016/WD-wake-lock-20161220/","title":"Wake Lock API","rawDate":"2016-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170222":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20170222/","title":"Wake Lock API","rawDate":"2017-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170613":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20170613/","title":"Wake Lock API","rawDate":"2017-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170629":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20170629/","title":"Wake Lock API","rawDate":"2017-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170724":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20170724/","title":"Wake Lock API","rawDate":"2017-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170824":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20170824/","title":"Wake Lock API","rawDate":"2017-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170912":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20170912/","title":"Wake Lock API","rawDate":"2017-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171120":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20171120/","title":"Wake Lock API","rawDate":"2017-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171121":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20171121/","title":"Wake Lock API","rawDate":"2017-11-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171123":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20171123/","title":"Wake Lock API","rawDate":"2017-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171204":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/WD-wake-lock-20171204/","title":"Wake Lock API","rawDate":"2017-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Ilya Bogdanovich","Andrey Logvinov","Marcos Caceres"],"href":"https://www.w3.org/TR/2017/CR-wake-lock-20171214/","title":"Wake Lock API","rawDate":"2017-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200929":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2020/WD-screen-wake-lock-20200929/","title":"Screen Wake Lock API","rawDate":"2020-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210601/","title":"Screen Wake Lock API","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210602":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210602/","title":"Screen Wake Lock API","rawDate":"2021-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210603/","title":"Screen Wake Lock API","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210607":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210607/","title":"Screen Wake Lock API","rawDate":"2021-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210624/","title":"Screen Wake Lock API","rawDate":"2021-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210629":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210629/","title":"Screen Wake Lock API","rawDate":"2021-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210826/","title":"Screen Wake Lock API","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210909":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210909/","title":"Screen Wake Lock API","rawDate":"2021-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa","Ilya Bogdanovich","Andrey Logvinov"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20210930/","title":"Screen Wake Lock API","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2021/WD-screen-wake-lock-20211207/","title":"Screen Wake Lock API","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Kenneth Christiansen","Marcos Caceres","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2022/WD-screen-wake-lock-20220916/","title":"Screen Wake Lock API","rawDate":"2022-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2022/WD-screen-wake-lock-20220928/","title":"Screen Wake Lock API","rawDate":"2022-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221123":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2022/WD-screen-wake-lock-20221123/","title":"Screen Wake Lock API","rawDate":"2022-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-screen-wake-lock-20230406/","title":"Screen Wake Lock API","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230714":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-screen-wake-lock-20230714/","title":"Screen Wake Lock API","rawDate":"2023-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-screen-wake-lock-20230719/","title":"Screen Wake Lock API","rawDate":"2023-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231107":{"authors":["Kenneth Christiansen","Raphael Kubo da Costa"],"href":"https://www.w3.org/TR/2023/WD-screen-wake-lock-20231107/","title":"Screen Wake Lock API","rawDate":"2023-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/screen-wake-lock"},"scroll-animations-1":{"authors":["Brian Birtles","Botond Ballo","Antoine Quint","Olga Gerchikov","Elika Etemad","Robert Flack"],"href":"https://www.w3.org/TR/scroll-animations-1/","title":"Scroll-driven Animations","rawDate":"2023-06-06","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/scroll-animations-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221025":{"authors":["Brian Birtles","Botond Ballo","Antoine Quint","Olga Gerchikov","Elika Etemad","Robert Flack"],"href":"https://www.w3.org/TR/2022/WD-scroll-animations-1-20221025/","title":"Scroll-linked Animations","rawDate":"2022-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Brian Birtles","Botond Ballo","Antoine Quint","Olga Gerchikov","Elika Etemad","Robert Flack"],"href":"https://www.w3.org/TR/2022/WD-scroll-animations-1-20221208/","title":"Scroll-linked Animations","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Brian Birtles","Botond Ballo","Antoine Quint","Olga Gerchikov","Elika Etemad","Robert Flack"],"href":"https://www.w3.org/TR/2023/WD-scroll-animations-1-20230406/","title":"Scroll-driven Animations","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230428":{"authors":["Brian Birtles","Botond Ballo","Antoine Quint","Olga Gerchikov","Elika Etemad","Robert Flack"],"href":"https://www.w3.org/TR/2023/WD-scroll-animations-1-20230428/","title":"Scroll-driven Animations","rawDate":"2023-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Brian Birtles","Botond Ballo","Antoine Quint","Olga Gerchikov","Elika Etemad","Robert Flack"],"href":"https://www.w3.org/TR/2023/WD-scroll-animations-1-20230606/","title":"Scroll-driven Animations","rawDate":"2023-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"scxml":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"etAl":true,"href":"https://www.w3.org/TR/scxml/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20050705":{"status":"WD","rawDate":"2005-07-05","href":"https://www.w3.org/TR/2005/WD-scxml-20050705/","source":"./data/w3c-specs.txt"},"20060124":{"status":"WD","rawDate":"2006-01-24","href":"https://www.w3.org/TR/2006/WD-scxml-20060124/","source":"./data/w3c-specs.txt"},"20070221":{"status":"WD","rawDate":"2007-02-21","href":"https://www.w3.org/TR/2007/WD-scxml-20070221/","source":"./data/w3c-specs.txt"},"20080516":{"status":"WD","rawDate":"2008-05-16","href":"https://www.w3.org/TR/2008/WD-scxml-20080516/","source":"./data/w3c-specs.txt"},"20090507":{"status":"WD","rawDate":"2009-05-07","href":"https://www.w3.org/TR/2009/WD-scxml-20090507/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-scxml-20091029/","source":"./data/w3c-specs.txt"},"20100513":{"status":"WD","rawDate":"2010-05-13","href":"https://www.w3.org/TR/2010/WD-scxml-20100513/","source":"./data/w3c-specs.txt"},"20101216":{"status":"WD","rawDate":"2010-12-16","href":"https://www.w3.org/TR/2010/WD-scxml-20101216/","source":"./data/w3c-specs.txt"},"20110426":{"status":"WD","rawDate":"2011-04-26","href":"https://www.w3.org/TR/2011/WD-scxml-20110426/","source":"./data/w3c-specs.txt"},"20120216":{"status":"WD","rawDate":"2012-02-16","href":"https://www.w3.org/TR/2012/WD-scxml-20120216/","source":"./data/w3c-specs.txt"},"20121206":{"authors":["Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2012/WD-scxml-20121206/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","rawDate":"2012-12-06","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130801":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2013/WD-scxml-20130801/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","rawDate":"2013-08-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140313":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2014/CR-scxml-20140313/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","rawDate":"2014-03-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140529":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2014/WD-scxml-20140529/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","rawDate":"2014-05-29","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150430":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2015/PR-scxml-20150430/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","rawDate":"2015-04-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150901":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T.V. Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2015/REC-scxml-20150901/","title":"State Chart XML (SCXML): State Machine Notation for Control Abstraction","rawDate":"2015-09-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-09-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"scxml-dom-iop":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T V Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/scxml-dom-iop/","title":"DOM Event I/O Processor for SCXML","rawDate":"2015-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150811":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T V Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2015/NOTE-scxml-dom-iop-20150811/","title":"DOM Event I/O Processor for SCXML","rawDate":"2015-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"scxml-xpath-dm":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T V Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/scxml-xpath-dm/","title":"XPath Data Model for SCXML","rawDate":"2015-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150811":{"authors":["James Barnett","Rahul Akolkar","RJ Auburn","Michael Bodell","Daniel Burnett","Jerry Carter","Scott McGlashan","Torbjörn Lager","Marc Helbing","Rafah Hosn","T V Raman","Klaus Reifenrath","Noam Rosenthal","Johan Roxendal"],"href":"https://www.w3.org/TR/2015/NOTE-scxml-xpath-dm-20150811/","title":"XPath Data Model for SCXML","rawDate":"2015-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"sdw-bp":{"authors":["Payam Barnaghi","Jeremy Tandy","Linda van den Brink","Timo Homburg"],"href":"https://www.w3.org/TR/sdw-bp/","title":"Spatial Data on the Web Best Practices","rawDate":"2023-09-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/bp/","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160119":{"authors":["Jeremy Tandy","Payam Barnaghi","Linda van den Brink"],"href":"https://www.w3.org/TR/2016/WD-sdw-bp-20160119/","title":"Spatial Data on the Web Best Practices","rawDate":"2016-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161025":{"authors":["Jeremy Tandy","Payam Barnaghi","Linda van den Brink"],"href":"https://www.w3.org/TR/2016/NOTE-sdw-bp-20161025/","title":"Spatial Data on the Web Best Practices","rawDate":"2016-10-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170105":{"authors":["Jeremy Tandy","Payam Barnaghi","Linda van den Brink"],"href":"https://www.w3.org/TR/2017/NOTE-sdw-bp-20170105/","title":"Spatial Data on the Web Best Practices","rawDate":"2017-01-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170216":{"authors":["Jeremy Tandy","Payam Barnaghi","Linda van den Brink"],"href":"https://www.w3.org/TR/2017/NOTE-sdw-bp-20170216/","title":"Spatial Data on the Web Best Practices","rawDate":"2017-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170330":{"authors":["Jeremy Tandy","Linda van den Brink","Payam Barnaghi"],"href":"https://www.w3.org/TR/2017/NOTE-sdw-bp-20170330/","title":"Spatial Data on the Web Best Practices","rawDate":"2017-03-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170511":{"authors":["Jeremy Tandy","Linda van den Brink","Payam Barnaghi"],"href":"https://www.w3.org/TR/2017/NOTE-sdw-bp-20170511/","title":"Spatial Data on the Web Best Practices","rawDate":"2017-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170928":{"authors":["Jeremy Tandy","Linda van den Brink","Payam Barnaghi"],"href":"https://www.w3.org/TR/2017/NOTE-sdw-bp-20170928/","title":"Spatial Data on the Web Best Practices","rawDate":"2017-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230919":{"authors":["Payam Barnaghi","Jeremy Tandy","Linda van den Brink","Timo Homburg"],"href":"https://www.w3.org/TR/2023/DNOTE-sdw-bp-20230919/","title":"Spatial Data on the Web Best Practices","rawDate":"2023-09-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"sdw-ucr":{"authors":["Frans Knibbe","Alejandro Llaves"],"href":"https://www.w3.org/TR/sdw-ucr/","title":"Spatial Data on the Web Use Cases & Requirements","rawDate":"2016-10-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/UseCases/SDWUseCasesAndRequirements.html","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150723":{"authors":["Frans Knibbe","Alejandro Llaves"],"href":"https://www.w3.org/TR/2015/NOTE-sdw-ucr-20150723/","title":"Spatial Data on the Web Use Cases & Requirements","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Frans Knibbe","Alejandro Llaves"],"href":"https://www.w3.org/TR/2015/NOTE-sdw-ucr-20151217/","title":"Spatial Data on the Web Use Cases & Requirements","rawDate":"2015-12-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161025":{"authors":["Frans Knibbe","Alejandro Llaves"],"href":"https://www.w3.org/TR/2016/NOTE-sdw-ucr-20161025/","title":"Spatial Data on the Web Use Cases & Requirements","rawDate":"2016-10-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"secure-contexts":{"authors":["Mike West"],"href":"https://www.w3.org/TR/secure-contexts/","title":"Secure Contexts","rawDate":"2023-11-10","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-secure-contexts/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141204":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2014/WD-powerful-features-20141204/","title":"Requirements for Powerful Features","rawDate":"2014-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150424":{"authors":["Mike West","Yan Zhu"],"href":"https://www.w3.org/TR/2015/WD-powerful-features-20150424/","title":"Privileged Contexts","rawDate":"2015-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160413":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/WD-powerful-features-20160413/","title":"Secure Contexts","rawDate":"2016-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160426":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/WD-secure-contexts-20160426/","title":"Secure Contexts","rawDate":"2016-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160715":{"href":"https://www.w3.org/TR/2016/WD-secure-contexts-20160715/","title":"Secure Contexts","rawDate":"2016-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160718":{"href":"https://www.w3.org/TR/2016/WD-secure-contexts-20160718/","title":"Secure Contexts","rawDate":"2016-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160719":{"href":"https://www.w3.org/TR/2016/WD-secure-contexts-20160719/","title":"Secure Contexts","rawDate":"2016-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2016/CR-secure-contexts-20160915/","title":"Secure Contexts","rawDate":"2016-09-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210916":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/CRD-secure-contexts-20210916/","title":"Secure Contexts","rawDate":"2021-09-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210918":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2021/CRD-secure-contexts-20210918/","title":"Secure Contexts","rawDate":"2021-09-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231110":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2023/CRD-secure-contexts-20231110/","title":"Secure Contexts","rawDate":"2023-11-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-secure-contexts"},"secure-payment-confirmation":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/secure-payment-confirmation/","title":"Secure Payment Confirmation","rawDate":"2023-12-13","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/secure-payment-confirmation/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210831":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2021/WD-secure-payment-confirmation-20210831/","title":"Secure Payment Confirmation","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220810/","title":"Secure Payment Confirmation","rawDate":"2022-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220811":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220811/","title":"Secure Payment Confirmation","rawDate":"2022-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220812":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220812/","title":"Secure Payment Confirmation","rawDate":"2022-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220825":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220825/","title":"Secure Payment Confirmation","rawDate":"2022-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220831/","title":"Secure Payment Confirmation","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220908/","title":"Secure Payment Confirmation","rawDate":"2022-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220914":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220914/","title":"Secure Payment Confirmation","rawDate":"2022-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220919/","title":"Secure Payment Confirmation","rawDate":"2022-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20220927/","title":"Secure Payment Confirmation","rawDate":"2022-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221123":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20221123/","title":"Secure Payment Confirmation","rawDate":"2022-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2022/WD-secure-payment-confirmation-20221209/","title":"Secure Payment Confirmation","rawDate":"2022-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230111":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230111/","title":"Secure Payment Confirmation","rawDate":"2023-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230130/","title":"Secure Payment Confirmation","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230308/","title":"Secure Payment Confirmation","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230323":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230323/","title":"Secure Payment Confirmation","rawDate":"2023-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230413/","title":"Secure Payment Confirmation","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230414":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230414/","title":"Secure Payment Confirmation","rawDate":"2023-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230417":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230417/","title":"Secure Payment Confirmation","rawDate":"2023-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230422":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230422/","title":"Secure Payment Confirmation","rawDate":"2023-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230424":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230424/","title":"Secure Payment Confirmation","rawDate":"2023-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230510/","title":"Secure Payment Confirmation","rawDate":"2023-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230523":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230523/","title":"Secure Payment Confirmation","rawDate":"2023-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/WD-secure-payment-confirmation-20230530/","title":"Secure Payment Confirmation","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/CR-secure-payment-confirmation-20230615/","title":"Secure Payment Confirmation","rawDate":"2023-06-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230621":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230621/","title":"Secure Payment Confirmation","rawDate":"2023-06-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230731":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230731/","title":"Secure Payment Confirmation","rawDate":"2023-07-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230822":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20230822/","title":"Secure Payment Confirmation","rawDate":"2023-08-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231018":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20231018/","title":"Secure Payment Confirmation","rawDate":"2023-10-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231213":{"authors":["Rouslan Solomakhin","Stephen McGruer"],"href":"https://www.w3.org/TR/2023/CRD-secure-payment-confirmation-20231213/","title":"Secure Payment Confirmation","rawDate":"2023-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/secure-payment-confirmation"},"security-privacy-questionnaire":{"authors":["Theresa O'Connor","Peter Snyder"],"href":"https://www.w3.org/TR/security-privacy-questionnaire/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","edDraft":"https://w3ctag.github.io/security-questionnaire/","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/Privacy/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151210":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/NOTE-security-privacy-questionnaire-20151210/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2015-12-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190523":{"authors":["Lukasz Olejnik","Jason Novak"],"href":"https://www.w3.org/TR/2019/NOTE-security-privacy-questionnaire-20190523/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2019-05-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190910":{"authors":["Lukasz Olejnik","Jason Novak"],"href":"https://www.w3.org/TR/2019/NOTE-security-privacy-questionnaire-20190910/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2019-09-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200508":{"authors":["Theresa O'Connor","Peter Snyder"],"href":"https://www.w3.org/TR/2020/NOTE-security-privacy-questionnaire-20200508/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2020-05-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210323":{"authors":["Theresa O'Connor","Peter Snyder"],"href":"https://www.w3.org/TR/2021/NOTE-security-privacy-questionnaire-20210323/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2021-03-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/Privacy/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210923":{"authors":["Theresa O'Connor","Peter Snyder"],"href":"https://www.w3.org/TR/2021/NOTE-security-privacy-questionnaire-20210923/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2021-09-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/Privacy/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Theresa O'Connor","Peter Snyder"],"href":"https://www.w3.org/TR/2021/NOTE-security-privacy-questionnaire-20211216/","title":"Self-Review Questionnaire: Security and Privacy","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/Privacy/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3ctag/security-questionnaire"},"selection-api":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/selection-api/","title":"Selection API","rawDate":"2023-05-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/selection-api/","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141007":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2014/WD-selection-api-20141007/","title":"Selection API","rawDate":"2014-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151008":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2015/WD-selection-api-20151008/","title":"Selection API","rawDate":"2015-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151124":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2015/WD-selection-api-20151124/","title":"Selection API","rawDate":"2015-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151204":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2015/WD-selection-api-20151204/","title":"Selection API","rawDate":"2015-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151207":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2015/WD-selection-api-20151207/","title":"Selection API","rawDate":"2015-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2015/WD-selection-api-20151215/","title":"Selection API","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160310":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2016/WD-selection-api-20160310/","title":"Selection API","rawDate":"2016-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2016/WD-selection-api-20160421/","title":"Selection API","rawDate":"2016-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160921":{"href":"https://www.w3.org/TR/2016/WD-selection-api-20160921/","title":"Selection API","rawDate":"2016-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"href":"https://www.w3.org/TR/2016/WD-selection-api-20161206/","title":"Selection API","rawDate":"2016-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170227":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2017/WD-selection-api-20170227/","title":"Selection API","rawDate":"2017-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170330":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2017/WD-selection-api-20170330/","title":"Selection API","rawDate":"2017-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170430":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2017/WD-selection-api-20170430/","title":"Selection API","rawDate":"2017-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170509":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2017/WD-selection-api-20170509/","title":"Selection API","rawDate":"2017-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170628":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2017/WD-selection-api-20170628/","title":"Selection API","rawDate":"2017-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180402":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2018/WD-selection-api-20180402/","title":"Selection API","rawDate":"2018-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180612":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2018/WD-selection-api-20180612/","title":"Selection API","rawDate":"2018-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2018/WD-selection-api-20180926/","title":"Selection API","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181018":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2018/WD-selection-api-20181018/","title":"Selection API","rawDate":"2018-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2019/WD-selection-api-20190530/","title":"Selection API","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190602":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2019/WD-selection-api-20190602/","title":"Selection API","rawDate":"2019-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190604":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2019/WD-selection-api-20190604/","title":"Selection API","rawDate":"2019-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190605":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2019/WD-selection-api-20190605/","title":"Selection API","rawDate":"2019-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190607":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2019/WD-selection-api-20190607/","title":"Selection API","rawDate":"2019-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190820":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2019/WD-selection-api-20190820/","title":"Selection API","rawDate":"2019-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200226":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2020/WD-selection-api-20200226/","title":"Selection API","rawDate":"2020-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2020/WD-selection-api-20200818/","title":"Selection API","rawDate":"2020-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201219":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2020/WD-selection-api-20201219/","title":"Selection API","rawDate":"2020-12-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210121":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2021/WD-selection-api-20210121/","title":"Selection API","rawDate":"2021-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2021/WD-selection-api-20210527/","title":"Selection API","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210528":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2021/WD-selection-api-20210528/","title":"Selection API","rawDate":"2021-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210611":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2021/WD-selection-api-20210611/","title":"Selection API","rawDate":"2021-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210713":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2021/WD-selection-api-20210713/","title":"Selection API","rawDate":"2021-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210724":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2021/WD-selection-api-20210724/","title":"Selection API","rawDate":"2021-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220719":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2022/WD-selection-api-20220719/","title":"Selection API","rawDate":"2022-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221217":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2022/WD-selection-api-20221217/","title":"Selection API","rawDate":"2022-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2023/WD-selection-api-20230209/","title":"Selection API","rawDate":"2023-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230213":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2023/WD-selection-api-20230213/","title":"Selection API","rawDate":"2023-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2023/WD-selection-api-20230321/","title":"Selection API","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230404":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2023/WD-selection-api-20230404/","title":"Selection API","rawDate":"2023-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230422":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2023/WD-selection-api-20230422/","title":"Selection API","rawDate":"2023-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230516":{"authors":["Ryosuke Niwa"],"href":"https://www.w3.org/TR/2023/WD-selection-api-20230516/","title":"Selection API","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/selection-api"},"selectors-3":{"authors":["Tantek Çelik","Elika Etemad","Daniel Glazman","Ian Hickson","Peter Linss","John Williams"],"href":"https://www.w3.org/TR/selectors-3/","title":"Selectors Level 3","rawDate":"2018-11-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://drafts.csswg.org/selectors-3/","versions":{"19990803":{"status":"WD","rawDate":"1999-08-03","href":"https://www.w3.org/TR/1999/WD-CSS3-selectors-19990803","source":"./data/w3c-specs.txt"},"20000410":{"status":"WD","rawDate":"2000-04-10","href":"https://www.w3.org/TR/2000/WD-css3-selectors-20000410","source":"./data/w3c-specs.txt"},"20001005":{"status":"WD","rawDate":"2000-10-05","href":"https://www.w3.org/TR/2000/WD-css3-selectors-20001005","source":"./data/w3c-specs.txt"},"20010126":{"status":"WD","rawDate":"2001-01-26","href":"https://www.w3.org/TR/2001/WD-css3-selectors-20010126","source":"./data/w3c-specs.txt"},"20011113":{"status":"CR","rawDate":"2001-11-13","href":"https://www.w3.org/TR/2001/CR-css3-selectors-20011113/","source":"./data/w3c-specs.txt"},"20051215":{"status":"WD","rawDate":"2005-12-15","href":"https://www.w3.org/TR/2005/WD-css3-selectors-20051215","source":"./data/w3c-specs.txt"},"20090310":{"status":"WD","rawDate":"2009-03-10","href":"https://www.w3.org/TR/2009/WD-css3-selectors-20090310","source":"./data/w3c-specs.txt"},"20091215":{"status":"PR","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/PR-css3-selectors-20091215/","source":"./data/w3c-specs.txt"},"20110929":{"authors":["Tantek Çelik","Elika Etemad","Daniel Glazman","Ian Hickson","Peter Linss","John Williams"],"href":"https://www.w3.org/TR/2011/REC-css3-selectors-20110929/","title":"Selectors Level 3","rawDate":"2011-09-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"hasErrata":"https://www.w3.org/Style/2011/REC-css3-selectors-20110929-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180130":{"authors":["Tantek Çelik","Elika Etemad","Daniel Glazman","Ian Hickson","Peter Linss","John Williams"],"href":"https://www.w3.org/TR/2018/CR-selectors-3-20180130/","title":"Selectors Level 3","rawDate":"2018-01-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180911":{"authors":["Tantek Çelik","Elika Etemad","Daniel Glazman","Ian Hickson","Peter Linss","John Williams"],"href":"https://www.w3.org/TR/2018/PR-selectors-3-20180911/","title":"Selectors Level 3","rawDate":"2018-09-11","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181106":{"authors":["Tantek Çelik","Elika Etemad","Daniel Glazman","Ian Hickson","Peter Linss","John Williams"],"href":"https://www.w3.org/TR/2018/REC-selectors-3-20181106/","title":"Selectors Level 3","rawDate":"2018-11-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"selectors-4":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/selectors-4/","title":"Selectors Level 4","rawDate":"2022-11-11","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/selectors/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110929":{"status":"WD","rawDate":"2011-09-29","href":"https://www.w3.org/TR/2011/WD-selectors4-20110929/","source":"./data/w3c-specs.txt"},"20120823":{"status":"WD","rawDate":"2012-08-23","href":"https://www.w3.org/TR/2012/WD-selectors4-20120823/","source":"./data/w3c-specs.txt"},"20130502":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-selectors4-20130502/","title":"Selectors Level 4","rawDate":"2013-05-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180202":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/WD-selectors-4-20180202/","title":"Selectors Level 4","rawDate":"2018-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181121":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/WD-selectors-4-20181121/","title":"Selectors Level 4","rawDate":"2018-11-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220507":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/WD-selectors-4-20220507/","title":"Selectors Level 4","rawDate":"2022-05-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221111":{"authors":["Elika Etemad","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2022/WD-selectors-4-20221111/","title":"Selectors Level 4","rawDate":"2022-11-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"selectors-api":{"authors":["Anne van Kesteren","Lachlan Hunt"],"href":"https://www.w3.org/TR/selectors-api/","title":"Selectors API Level 1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/webapi/selectors-api/errata/errata-l1.html","versions":{"20060525":{"status":"WD","rawDate":"2006-05-25","href":"https://www.w3.org/TR/2006/WD-selectors-api-20060525/","source":"./data/w3c-specs.txt"},"20060926":{"status":"WD","rawDate":"2006-09-26","href":"https://www.w3.org/TR/2006/WD-selectors-api-20060926/","source":"./data/w3c-specs.txt"},"20071019":{"status":"WD","rawDate":"2007-10-19","href":"https://www.w3.org/TR/2007/WD-selectors-api-20071019/","source":"./data/w3c-specs.txt"},"20071221":{"status":"WD","rawDate":"2007-12-21","href":"https://www.w3.org/TR/2007/WD-selectors-api-20071221/","source":"./data/w3c-specs.txt"},"20081114":{"status":"WD","rawDate":"2008-11-14","href":"https://www.w3.org/TR/2008/WD-selectors-api-20081114/","source":"./data/w3c-specs.txt"},"20091222":{"status":"CR","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/CR-selectors-api-20091222/","source":"./data/w3c-specs.txt"},"20120628":{"status":"WD","rawDate":"2012-06-28","href":"https://www.w3.org/TR/2012/WD-selectors-api-20120628/","source":"./data/w3c-specs.txt"},"20121213":{"status":"PR","rawDate":"2012-12-13","href":"https://www.w3.org/TR/2012/PR-selectors-api-20121213/","source":"./data/w3c-specs.txt"},"20130221":{"authors":["Anne van Kesteren","Lachlan Hunt"],"href":"https://www.w3.org/TR/2013/REC-selectors-api-20130221/","title":"Selectors API Level 1","rawDate":"2013-02-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/webapi/selectors-api/errata/errata-l1.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201103":{"authors":["Anne van Kesteren","Lachlan Hunt"],"href":"https://www.w3.org/TR/2020/SPSD-selectors-api-20201103/","title":"Selectors API Level 1","rawDate":"2020-11-03","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2020-11-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["dom"]},"selectors-api2":{"authors":["Lachlan Hunt"],"href":"https://www.w3.org/TR/selectors-api2/","title":"Selectors API Level 2","rawDate":"2013-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100119":{"status":"WD","rawDate":"2010-01-19","href":"https://www.w3.org/TR/2010/WD-selectors-api2-20100119/","source":"./data/w3c-specs.txt"},"20120628":{"authors":["Lachlan Hunt"],"href":"https://www.w3.org/TR/2012/WD-selectors-api2-20120628/","title":"Selectors API Level 2","rawDate":"2012-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131017":{"authors":["Lachlan Hunt"],"href":"https://www.w3.org/TR/2013/NOTE-selectors-api2-20131017/","title":"Selectors API Level 2","rawDate":"2013-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://dev.w3.org/2006/webapi/selectors-api2/","isRetired":true},"selectors-nonelement-1":{"authors":["Jirka Kosek","Tab Atkins Jr."],"href":"https://www.w3.org/TR/selectors-nonelement-1/","title":"Non-element Selectors Module Level 1","rawDate":"2019-04-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140603":{"authors":["Jirka Kosek","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-selectors-nonelement-1-20140603/","title":"Non-element Selectors Module Level 1","rawDate":"2014-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190402":{"authors":["Jirka Kosek","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2019/NOTE-selectors-nonelement-1-20190402/","title":"Non-element Selectors Module Level 1","rawDate":"2019-04-02","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://drafts.csswg.org/selectors-nonelement/","repository":"https://github.com/w3c/csswg-drafts","isRetired":true},"selectors-states":{"authors":["Ivan Herman","Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/selectors-states/","title":"Selectors and States","rawDate":"2017-02-23","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/web-annotation/selector-note/","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170223":{"authors":["Ivan Herman","Robert Sanderson","Paolo Ciccarese","Benjamin Young"],"href":"https://www.w3.org/TR/2017/NOTE-selectors-states-20170223/","title":"Selectors and States","rawDate":"2017-02-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/annotation/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/web-annotation"},"selectors4":{"aliasOf":"selectors-4"},"semantic-interpretation":{"authors":["Luc Van Tichelen","David Burke"],"href":"https://www.w3.org/TR/semantic-interpretation/","title":"Semantic Interpretation for Speech Recognition (SISR) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2007/03/sisr-errata.html","versions":{"20011116":{"status":"WD","rawDate":"2001-11-16","href":"https://www.w3.org/TR/2001/WD-semantic-interpretation-20011116/","source":"./data/w3c-specs.txt"},"20030401":{"status":"WD","rawDate":"2003-04-01","href":"https://www.w3.org/TR/2003/WD-semantic-interpretation-20030401/","source":"./data/w3c-specs.txt"},"20041108":{"status":"WD","rawDate":"2004-11-08","href":"https://www.w3.org/TR/2004/WD-semantic-interpretation-20041108/","source":"./data/w3c-specs.txt"},"20060111":{"status":"CR","rawDate":"2006-01-11","href":"https://www.w3.org/TR/2006/CR-semantic-interpretation-20060111/","source":"./data/w3c-specs.txt"},"20061103":{"status":"WD","rawDate":"2006-11-03","href":"https://www.w3.org/TR/2006/WD-semantic-interpretation-20061103","source":"./data/w3c-specs.txt"},"20070205":{"status":"PR","rawDate":"2007-02-05","href":"https://www.w3.org/TR/2007/PR-semantic-interpretation-20070205/","source":"./data/w3c-specs.txt"},"20070405":{"authors":["Luc Van Tichelen","David Burke"],"href":"https://www.w3.org/TR/2007/REC-semantic-interpretation-20070405/","title":"Semantic Interpretation for Speech Recognition (SISR) Version 1.0","rawDate":"2007-04-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2007/03/sisr-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"server-timing":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/server-timing/","title":"Server Timing","rawDate":"2023-04-11","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/server-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150217":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-server-timing-20150217/","title":"Server Timing","rawDate":"2015-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150428":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-server-timing-20150428/","title":"Server Timing","rawDate":"2015-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150717":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2015/WD-server-timing-20150717/","title":"Server Timing","rawDate":"2015-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160523":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2016/NOTE-server-timing-20160523/","title":"Server Timing","rawDate":"2016-05-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20170713":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170713/","title":"Server Timing","rawDate":"2017-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170726":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170726/","title":"Server Timing","rawDate":"2017-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170818":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170818/","title":"Server Timing","rawDate":"2017-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170823":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170823/","title":"Server Timing","rawDate":"2017-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170824":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170824/","title":"Server Timing","rawDate":"2017-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170828":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170828/","title":"Server Timing","rawDate":"2017-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170902":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170902/","title":"Server Timing","rawDate":"2017-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170920":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20170920/","title":"Server Timing","rawDate":"2017-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171018":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20171018/","title":"Server Timing","rawDate":"2017-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20171102/","title":"Server Timing","rawDate":"2017-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171120":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20171120/","title":"Server Timing","rawDate":"2017-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171221":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20171221/","title":"Server Timing","rawDate":"2017-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171229":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2017/WD-server-timing-20171229/","title":"Server Timing","rawDate":"2017-12-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180717":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-server-timing-20180717/","title":"Server Timing","rawDate":"2018-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180926":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-server-timing-20180926/","title":"Server Timing","rawDate":"2018-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181017":{"authors":["Charlie Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-server-timing-20181017/","title":"Server Timing","rawDate":"2018-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181019":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2018/WD-server-timing-20181019/","title":"Server Timing","rawDate":"2018-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190122":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-server-timing-20190122/","title":"Server Timing","rawDate":"2019-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190307":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/WD-server-timing-20190307/","title":"Server Timing","rawDate":"2019-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200120":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2020/WD-server-timing-20200120/","title":"Server Timing","rawDate":"2020-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200420":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2020/WD-server-timing-20200420/","title":"Server Timing","rawDate":"2020-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200430":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2020/WD-server-timing-20200430/","title":"Server Timing","rawDate":"2020-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200728":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2020/WD-server-timing-20200728/","title":"Server Timing","rawDate":"2020-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210630":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2021/WD-server-timing-20210630/","title":"Server Timing","rawDate":"2021-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220421":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2022/WD-server-timing-20220421/","title":"Server Timing","rawDate":"2022-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2023/WD-server-timing-20230303/","title":"Server Timing","rawDate":"2023-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2023/WD-server-timing-20230317/","title":"Server Timing","rawDate":"2023-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230411":{"authors":["Charles Vazac","Ilya Grigorik"],"href":"https://www.w3.org/TR/2023/WD-server-timing-20230411/","title":"Server Timing","rawDate":"2023-04-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/server-timing"},"service-workers":{"authors":["Jake Archibald","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/service-workers/","title":"Service Workers","rawDate":"2022-07-12","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/ServiceWorker/","deliveredBy":["https://www.w3.org/sw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140508":{"authors":["Alex Russell","Jungkee Song"],"href":"https://www.w3.org/TR/2014/WD-service-workers-20140508/","title":"Service Workers","rawDate":"2014-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141118":{"authors":["Alex Russell","Jungkee Song"],"href":"https://www.w3.org/TR/2014/WD-service-workers-20141118/","title":"Service Workers","rawDate":"2014-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150205":{"authors":["Alex Russell","Jungkee Song","Jake Archibald"],"href":"https://www.w3.org/TR/2015/WD-service-workers-20150205/","title":"Service Workers","rawDate":"2015-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150625":{"authors":["Alex Russell","Jungkee Song","Jake Archibald"],"href":"https://www.w3.org/TR/2015/WD-service-workers-20150625/","title":"Service Workers","rawDate":"2015-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161011":{"authors":["Alex Russell","Jungkee Song","Jake Archibald","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2016/WD-service-workers-1-20161011/","title":"Service Workers 1","rawDate":"2016-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Alex Russell","Jungkee Song","Jake Archibald","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2017/WD-service-workers-1-20171102/","title":"Service Workers 1","rawDate":"2017-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/sw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190813":{"authors":["Alex Russell","Jungkee Song","Jake Archibald","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2019/WD-service-workers-1-20190813/","title":"Service Workers 1","rawDate":"2019-08-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/sw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191119":{"authors":["Alex Russell","Jungkee Song","Jake Archibald","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2019/CR-service-workers-1-20191119/","title":"Service Workers 1","rawDate":"2019-11-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/sw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Jake Archibald","Marijn Kruisselbrink"],"href":"https://www.w3.org/TR/2022/CRD-service-workers-20220712/","title":"Service Workers","rawDate":"2022-07-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/sw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/ServiceWorker"},"service-workers-1":{"aliasOf":"service-workers"},"session-id":{"versions":{"19960221":{"status":"WD","rawDate":"1996-02-21","href":"https://www.w3.org/TR/WD-session-id-960221","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WD-session-id","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"1996-02-21","title":"Session Identification URI"},"sgml-lex":{"versions":{"19960615":{"status":"WD","rawDate":"1996-06-15","href":"https://www.w3.org/TR/WD-sgml-lex-960615","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WD-sgml-lex","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"1996-06-15","title":"A Lexical Analyzer for HTML and Basic SGML"},"shacl":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/shacl/","title":"Shapes Constraint Language (SHACL)","rawDate":"2017-07-20","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/data-shapes/shacl/","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20151008":{"authors":["Holger Knublauch","Arthur Ryman"],"href":"https://www.w3.org/TR/2015/WD-shacl-20151008/","title":"Shapes Constraint Language (SHACL)","rawDate":"2015-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160128":{"authors":["Holger Knublauch","Arthur Ryman"],"href":"https://www.w3.org/TR/2016/WD-shacl-20160128/","title":"Shapes Constraint Language (SHACL)","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160530":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/2016/WD-shacl-20160530/","title":"Shapes Constraint Language (SHACL)","rawDate":"2016-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160814":{"href":"https://www.w3.org/TR/2016/WD-shacl-20160814/","title":"Shapes Constraint Language (SHACL)","rawDate":"2016-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170202":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/2017/WD-shacl-20170202/","title":"Shapes Constraint Language (SHACL)","rawDate":"2017-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170303":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/2017/WD-shacl-20170303/","title":"Shapes Constraint Language (SHACL)","rawDate":"2017-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170411":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/2017/CR-shacl-20170411/","title":"Shapes Constraint Language (SHACL)","rawDate":"2017-04-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170608":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/2017/PR-shacl-20170608/","title":"Shapes Constraint Language (SHACL)","rawDate":"2017-06-08","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170720":{"authors":["Holger Knublauch","Dimitris Kontokostas"],"href":"https://www.w3.org/TR/2017/REC-shacl-20170720/","title":"Shapes Constraint Language (SHACL)","rawDate":"2017-07-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"hasErrata":"https://www.w3.org/2017/shacl/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/2017/shacl/errata","repository":"https://github.com/w3c/data-shapes"},"shacl-abstract-syntax":{"authors":["Eric Prud'hommeaux","Karen Coyle"],"href":"https://www.w3.org/TR/shacl-abstract-syntax/","title":"SHACL Abstract Syntax -- Note on Status of Obsolete Proposal","rawDate":"2017-07-20","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/data-shapes/shacl-abstract-syntax/","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160825":{"authors":["Eric Prud'hommeaux","Karen Coyle"],"href":"https://www.w3.org/TR/2016/WD-shacl-abstract-syntax-20160825/","title":"SHACL Core Abstract Syntax and Semantics","rawDate":"2016-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170720":{"authors":["Eric Prud'hommeaux","Karen Coyle"],"href":"https://www.w3.org/TR/2017/NOTE-shacl-abstract-syntax-20170720/","title":"SHACL Abstract Syntax -- Note on Status of Obsolete Proposal","rawDate":"2017-07-20","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/data-shapes"},"shacl-af":{"authors":["Holger Knublauch","Dean Allemang","Simon Steyskal"],"href":"https://www.w3.org/TR/shacl-af/","title":"SHACL Advanced Features","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/data-shapes/shacl-af/","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170608":{"authors":["Holger Knublauch","Dean Allemang","Simon Steyskal"],"href":"https://www.w3.org/TR/2017/NOTE-shacl-af-20170608/","title":"SHACL Advanced Features","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/data-shapes"},"shacl-js":{"authors":["Holger Knublauch","Pano Maria"],"href":"https://www.w3.org/TR/shacl-js/","title":"SHACL JavaScript Extensions","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/data-shapes/shacl-js/","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170608":{"authors":["Holger Knublauch","Pano Maria"],"href":"https://www.w3.org/TR/2017/NOTE-shacl-js-20170608/","title":"SHACL JavaScript Extensions","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/data-shapes"},"shacl-ucr":{"authors":["Simon Steyskal","Karen Coyle"],"href":"https://www.w3.org/TR/shacl-ucr/","title":"SHACL Use Cases and Requirements","rawDate":"2017-07-20","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/data-shapes/data-shapes-ucr/","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150414":{"authors":["Simon Steyskal","Karen Coyle"],"href":"https://www.w3.org/TR/2015/WD-shacl-ucr-20150414/","title":"SHACL Use Cases and Requirements","rawDate":"2015-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150930":{"authors":["Simon Steyskal","Karen Coyle"],"href":"https://www.w3.org/TR/2015/WD-shacl-ucr-20150930/","title":"SHACL Use Cases and Requirements","rawDate":"2015-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160122":{"authors":["Simon Steyskal","Karen Coyle"],"href":"https://www.w3.org/TR/2016/WD-shacl-ucr-20160122/","title":"SHACL Use Cases and Requirements","rawDate":"2016-01-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170720":{"authors":["Simon Steyskal","Karen Coyle"],"href":"https://www.w3.org/TR/2017/NOTE-shacl-ucr-20170720/","title":"SHACL Use Cases and Requirements","rawDate":"2017-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/data-shapes/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/data-shapes"},"shadow-dom":{"authors":["Hayato Ito"],"href":"https://www.w3.org/TR/shadow-dom/","title":"Shadow DOM","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"versions":{"20120522":{"status":"WD","rawDate":"2012-05-22","href":"https://www.w3.org/TR/2012/WD-shadow-dom-20120522/","source":"./data/w3c-specs.txt"},"20121016":{"status":"WD","rawDate":"2012-10-16","href":"https://www.w3.org/TR/2012/WD-shadow-dom-20121016/","source":"./data/w3c-specs.txt"},"20130514":{"authors":["Dimitri Glazkov"],"href":"https://www.w3.org/TR/2013/WD-shadow-dom-20130514/","title":"Shadow DOM","rawDate":"2013-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140617":{"authors":["Dimitri Glazkov","Hayato Ito"],"href":"https://www.w3.org/TR/2014/WD-shadow-dom-20140617/","title":"Shadow DOM","rawDate":"2014-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151006":{"authors":["Dimitri Glazkov","Hayato Ito"],"href":"https://www.w3.org/TR/2015/WD-shadow-dom-20151006/","title":"Shadow DOM","rawDate":"2015-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Dimitri Glazkov","Hayato Ito"],"href":"https://www.w3.org/TR/2015/WD-shadow-dom-20151215/","title":"Shadow DOM","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20160531/","title":"Shadow DOM","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160601":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20160601/","title":"Shadow DOM","rawDate":"2016-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160610":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20160610/","title":"Shadow DOM","rawDate":"2016-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160624":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20160624/","title":"Shadow DOM","rawDate":"2016-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20160830/","title":"Shadow DOM","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161013":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20161013/","title":"Shadow DOM","rawDate":"2016-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161110":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20161110/","title":"Shadow DOM","rawDate":"2016-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161128":{"href":"https://www.w3.org/TR/2016/WD-shadow-dom-20161128/","title":"Shadow DOM","rawDate":"2016-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170116":{"authors":["Hayato Ito"],"href":"https://www.w3.org/TR/2017/WD-shadow-dom-20170116/","title":"Shadow DOM","rawDate":"2017-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170213":{"authors":["Hayato Ito"],"href":"https://www.w3.org/TR/2017/WD-shadow-dom-20170213/","title":"Shadow DOM","rawDate":"2017-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170905":{"authors":["Hayato Ito"],"href":"https://www.w3.org/TR/2017/WD-shadow-dom-20170905/","title":"Shadow DOM","rawDate":"2017-09-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180301":{"authors":["Hayato Ito"],"href":"https://www.w3.org/TR/2018/NOTE-shadow-dom-20180301/","title":"Shadow DOM","rawDate":"2018-03-01","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/webcomponents/spec/shadow/","repository":"https://github.com/w3c/webcomponents","isRetired":true},"shoplogfileformat":{"versions":{"20001115":{"status":"NOTE","rawDate":"2000-11-15","href":"https://www.w3.org/TR/2000/NOTE-shoplogfileformat-20001115","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/shoplogfileformat","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-11-15","title":"Shop Log File Format"},"simple-ruby":{"authors":["Florian Rivoal","Atsushi Shimono","Richard Ishida"],"href":"https://www.w3.org/TR/simple-ruby/","title":"Rules for Simple Placement of Japanese Ruby","rawDate":"2020-06-09","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/simple-ruby/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200609":{"authors":["Florian Rivoal","Atsushi Shimono","Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-simple-ruby-20200609/","title":"Rules for Simple Placement of Japanese Ruby","rawDate":"2020-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/simple-ruby"},"skos-primer":{"authors":["Antoine Isaac","Ed Summers"],"href":"https://www.w3.org/TR/skos-primer/","title":"SKOS Simple Knowledge Organization System Primer","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"versions":{"20080221":{"status":"WD","rawDate":"2008-02-21","href":"https://www.w3.org/TR/2008/WD-skos-primer-20080221/","source":"./data/w3c-specs.txt"},"20080829":{"status":"WD","rawDate":"2008-08-29","href":"https://www.w3.org/TR/2008/WD-skos-primer-20080829/","source":"./data/w3c-specs.txt"},"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-skos-primer-20090317/","source":"./data/w3c-specs.txt"},"20090615":{"status":"WD","rawDate":"2009-06-15","href":"https://www.w3.org/TR/2009/WD-skos-primer-20090615/","source":"./data/w3c-specs.txt"},"20090818":{"authors":["Antoine Isaac","Ed Summers"],"href":"https://www.w3.org/TR/2009/NOTE-skos-primer-20090818/","title":"SKOS Simple Knowledge Organization System Primer","rawDate":"2009-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/2006/07/SWD/SKOS/reference/20090811-errata"}},"hasErrata":"https://www.w3.org/2006/07/SWD/SKOS/reference/20090811-errata","rawDate":"2009-08-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["swbp-skos-core-guide"]},"skos-reference":{"authors":["Alistair Miles","Sean Bechhofer"],"href":"https://www.w3.org/TR/skos-reference/","title":"SKOS Simple Knowledge Organization System Reference","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"hasErrata":"https://www.w3.org/2006/07/SWD/SKOS/reference/20090811-errata","versions":{"20080125":{"status":"WD","rawDate":"2008-01-25","href":"https://www.w3.org/TR/2008/WD-skos-reference-20080125/","source":"./data/w3c-specs.txt"},"20080609":{"status":"WD","rawDate":"2008-06-09","href":"https://www.w3.org/TR/2008/WD-skos-reference-20080609/","source":"./data/w3c-specs.txt"},"20080829":{"status":"WD","rawDate":"2008-08-29","href":"https://www.w3.org/TR/2008/WD-skos-reference-20080829/","source":"./data/w3c-specs.txt"},"20090317":{"status":"CR","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/CR-skos-reference-20090317/","source":"./data/w3c-specs.txt"},"20090615":{"status":"PR","rawDate":"2009-06-15","href":"https://www.w3.org/TR/2009/PR-skos-reference-20090615/","source":"./data/w3c-specs.txt"},"20090818":{"authors":["Alistair Miles","Sean Bechhofer"],"href":"https://www.w3.org/TR/2009/REC-skos-reference-20090818/","title":"SKOS Simple Knowledge Organization System Reference","rawDate":"2009-08-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"hasErrata":"https://www.w3.org/2006/07/SWD/SKOS/reference/20090811-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-08-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["swbp-skos-core-spec"]},"skos-ucr":{"authors":["Antoine Isaac","Jon Phipps","Daniel Rubin"],"href":"https://www.w3.org/TR/skos-ucr/","title":"SKOS Use Cases and Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"versions":{"20070516":{"status":"WD","rawDate":"2007-05-16","href":"https://www.w3.org/TR/2007/WD-skos-ucr-20070516/","source":"./data/w3c-specs.txt"},"20090818":{"authors":["Antoine Isaac","Jon Phipps","Daniel Rubin"],"href":"https://www.w3.org/TR/2009/NOTE-skos-ucr-20090818/","title":"SKOS Use Cases and Requirements","rawDate":"2009-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-08-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"smil-animation":{"authors":["Patrick Schmitz","Aaron Cohen"],"href":"https://www.w3.org/TR/smil-animation/","title":"SMIL Animation","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/2001/09/REC-smil-animation-20010904-errata","versions":{"19991029":{"status":"WD","rawDate":"1999-10-29","href":"https://www.w3.org/TR/1999/WD-smil-animation-19991029","source":"./data/w3c-specs.txt"},"20000128":{"status":"WD","rawDate":"2000-01-28","href":"https://www.w3.org/TR/2000/WD-smil-animation-20000128/","source":"./data/w3c-specs.txt"},"20000731":{"status":"WD","rawDate":"2000-07-31","href":"https://www.w3.org/TR/2000/WD-smil-animation-20000731/","source":"./data/w3c-specs.txt"},"20010719":{"status":"PR","rawDate":"2001-07-19","href":"https://www.w3.org/TR/2001/PR-smil-animation-20010719/","source":"./data/w3c-specs.txt"},"20010904":{"authors":["Patrick Schmitz","Aaron Cohen"],"href":"https://www.w3.org/TR/2001/REC-smil-animation-20010904/","title":"SMIL Animation","rawDate":"2001-09-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/2001/09/REC-smil-animation-20010904-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-09-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"smil-boston-dom":{"authors":["Philippe Le Hegaret","Patrick Schmitz"],"href":"https://www.w3.org/TR/smil-boston-dom/","title":"Synchronized Multimedia Integration Language Document Object Model","rawDate":"2000-02-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/AudioVideo/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20000225":{"authors":["Philippe Le Hegaret","Patrick Schmitz"],"href":"https://www.w3.org/TR/2000/WD-smil-boston-dom-20000225/","title":"Synchronized Multimedia Integration Language Document Object Model","rawDate":"2000-02-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/AudioVideo/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"smil20":{"authors":["Jeffrey Ayars","Dick Bulterman","Aaron Cohen","Ken Day","Erik Hodge","Philipp Hoschka","Eric Hyche","Kenichi Kubota","Rob Lanphier","Nabil Layaida","Thierry Michel","Jacco van Ossenbruggen","Lloyd Rutledge","Bridie Saccocio","Patrick Schmitz","Warner ten Kate"],"href":"https://www.w3.org/TR/smil20/","title":"Synchronized Multimedia Integration Language (SMIL 2.0) Specification","rawDate":"2001-08-07","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/2001/07/REC-SMIL20-20010731-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990803":{"status":"WD","rawDate":"1999-08-03","href":"https://www.w3.org/1999/08/WD-smil-boston-19990803","source":"./data/w3c-specs.txt"},"19990820":{"status":"WD","rawDate":"1999-08-20","href":"https://www.w3.org/1999/08/WD-smil-boston-19990820","source":"./data/w3c-specs.txt"},"19991115":{"status":"WD","rawDate":"1999-11-15","href":"https://www.w3.org/TR/1999/WD-smil-boston-19991115","source":"./data/w3c-specs.txt"},"20000225":{"status":"WD","rawDate":"2000-02-25","href":"https://www.w3.org/TR/2000/WD-smil-boston-20000225","source":"./data/w3c-specs.txt"},"20000622":{"status":"WD","rawDate":"2000-06-22","href":"https://www.w3.org/TR/2000/WD-smil-boston-20000622","source":"./data/w3c-specs.txt"},"20000921":{"status":"WD","rawDate":"2000-09-21","href":"https://www.w3.org/TR/2000/WD-smil20-20000921/","source":"./data/w3c-specs.txt"},"20010301":{"status":"WD","rawDate":"2001-03-01","href":"https://www.w3.org/TR/2001/WD-smil20-20010301/","source":"./data/w3c-specs.txt"},"20010605":{"status":"PR","rawDate":"2001-06-05","href":"https://www.w3.org/TR/2001/PR-smil20-20010605/","source":"./data/w3c-specs.txt"},"20010807":{"authors":["Jeffrey Ayars","Dick Bulterman","Aaron Cohen","Ken Day","Erik Hodge","Philipp Hoschka","Eric Hyche","Kenichi Kubota","Rob Lanphier","Nabil Layaida","Thierry Michel","Jacco van Ossenbruggen","Lloyd Rutledge","Bridie Saccocio","Patrick Schmitz","Warner ten Kate"],"href":"https://www.w3.org/TR/2001/REC-smil20-20010807/","title":"Synchronized Multimedia Integration Language (SMIL 2.0) Specification","rawDate":"2001-08-07","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"hasErrata":"https://www.w3.org/2001/07/REC-SMIL20-20010731-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"}},"status":"REC","obsoletedBy":["SMIL2"]},"sml":{"authors":["Valentina Popescu","Virginia Smith"],"href":"https://www.w3.org/TR/sml/","title":"Service Modeling Language, Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"hasErrata":"https://www.w3.org/2009/05/sml-errata","versions":{"20070806":{"status":"WD","rawDate":"2007-08-06","href":"https://www.w3.org/TR/2007/WD-sml-20070806/","source":"./data/w3c-specs.txt"},"20070926":{"status":"WD","rawDate":"2007-09-26","href":"https://www.w3.org/TR/2007/WD-sml-20070926/","source":"./data/w3c-specs.txt"},"20080114":{"status":"WD","rawDate":"2008-01-14","href":"https://www.w3.org/TR/2008/WD-sml-20080114/","source":"./data/w3c-specs.txt"},"20080303":{"status":"WD","rawDate":"2008-03-03","href":"https://www.w3.org/TR/2008/WD-sml-20080303/","source":"./data/w3c-specs.txt"},"20080912":{"status":"WD","rawDate":"2008-09-12","href":"https://www.w3.org/TR/2008/WD-sml-20080912/","source":"./data/w3c-specs.txt"},"20081125":{"status":"CR","rawDate":"2008-11-25","href":"https://www.w3.org/TR/2008/CR-sml-20081125/","source":"./data/w3c-specs.txt"},"20090212":{"status":"PR","rawDate":"2009-02-12","href":"https://www.w3.org/TR/2009/PR-sml-20090212/","source":"./data/w3c-specs.txt"},"20090512":{"authors":["Valentina Popescu","Virginia Smith"],"href":"https://www.w3.org/TR/2009/REC-sml-20090512/","title":"Service Modeling Language, Version 1.1","rawDate":"2009-05-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"hasErrata":"https://www.w3.org/2009/05/sml-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-05-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"sml-epr-ref-scheme":{"authors":["Len Charest"],"href":"https://www.w3.org/TR/sml-epr-ref-scheme/","title":"Framework for SML EPR-Based Reference Schemes","rawDate":"2009-06-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090630":{"authors":["Len Charest"],"href":"https://www.w3.org/TR/2009/NOTE-sml-epr-ref-scheme-20090630/","title":"Framework for SML EPR-Based Reference Schemes","rawDate":"2009-06-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"sml-if":{"authors":["Valentina Popescu","Virginia Smith"],"href":"https://www.w3.org/TR/sml-if/","title":"Service Modeling Language Interchange Format Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"hasErrata":"https://www.w3.org/2009/05/sml-errata","versions":{"20070806":{"status":"WD","rawDate":"2007-08-06","href":"https://www.w3.org/TR/2007/WD-sml-if-20070806/","source":"./data/w3c-specs.txt"},"20070926":{"status":"WD","rawDate":"2007-09-26","href":"https://www.w3.org/TR/2007/WD-sml-if-20070926/","source":"./data/w3c-specs.txt"},"20080114":{"status":"WD","rawDate":"2008-01-14","href":"https://www.w3.org/TR/2008/WD-sml-if-20080114/","source":"./data/w3c-specs.txt"},"20080303":{"status":"WD","rawDate":"2008-03-03","href":"https://www.w3.org/TR/2008/WD-sml-if-20080303/","source":"./data/w3c-specs.txt"},"20080912":{"status":"WD","rawDate":"2008-09-12","href":"https://www.w3.org/TR/2008/WD-sml-if-20080912/","source":"./data/w3c-specs.txt"},"20081125":{"status":"CR","rawDate":"2008-11-25","href":"https://www.w3.org/TR/2008/CR-sml-if-20081125/","source":"./data/w3c-specs.txt"},"20090212":{"status":"PR","rawDate":"2009-02-12","href":"https://www.w3.org/TR/2009/PR-sml-if-20090212/","source":"./data/w3c-specs.txt"},"20090512":{"authors":["Valentina Popescu","Virginia Smith"],"href":"https://www.w3.org/TR/2009/REC-sml-if-20090512/","title":"Service Modeling Language Interchange Format Version 1.1","rawDate":"2009-05-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"hasErrata":"https://www.w3.org/2009/05/sml-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-05-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"sml-xlink-ref-scheme":{"authors":["Pratul Dublish","Len Charest","Virginia Smith"],"href":"https://www.w3.org/TR/sml-xlink-ref-scheme/","title":"The SML XLink Reference Scheme","rawDate":"2009-10-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090630":{"status":"NOTE","rawDate":"2009-06-30","href":"https://www.w3.org/TR/2009/NOTE-sml-xlink-ref-scheme-20090630","source":"./data/w3c-specs.txt"},"20091023":{"authors":["Pratul Dublish","Len Charest","Virginia Smith"],"href":"https://www.w3.org/TR/2009/NOTE-sml-xlink-ref-scheme-20091023/","title":"The SML XLink Reference Scheme","rawDate":"2009-10-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/SML/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"soap11-ror-httpbinding":{"authors":["David Orchard"],"href":"https://www.w3.org/TR/soap11-ror-httpbinding/","title":"SOAP 1.1 Request Optional Response HTTP Binding","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"versions":{"20060321":{"authors":["David Orchard"],"href":"https://www.w3.org/TR/2006/NOTE-soap11-ror-httpbinding-20060321/","title":"SOAP 1.1 Request Optional Response HTTP Binding","rawDate":"2006-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-03-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-af":{"authors":["Henrik Frystyk Nielsen","Hervé Ruellan"],"href":"https://www.w3.org/TR/soap12-af/","title":"SOAP 1.2 Attachment Feature","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20020814":{"status":"WD","rawDate":"2002-08-14","href":"https://www.w3.org/TR/2002/WD-soap12-af-20020814","source":"./data/w3c-specs.txt"},"20020924":{"status":"WD","rawDate":"2002-09-24","href":"https://www.w3.org/TR/2002/WD-soap12-af-20020924","source":"./data/w3c-specs.txt"},"20040608":{"authors":["Henrik Frystyk Nielsen","Hervé Ruellan"],"href":"https://www.w3.org/TR/2004/NOTE-soap12-af-20040608/","title":"SOAP 1.2 Attachment Feature","rawDate":"2004-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-06-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-email":{"authors":["Highland Mary Mountain","Jacek Kopecky","Stuart Williams","Glen Daniels","Noah Mendelsohn"],"etAl":true,"href":"https://www.w3.org/TR/soap12-email/","title":"SOAP Version 1.2 Email Binding","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20020626":{"status":"NOTE","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/NOTE-soap12-email-20020626","source":"./data/w3c-specs.txt"},"20020703":{"authors":["Highland Mary Mountain","Jacek Kopecky","Stuart Williams","Glen Daniels","Noah Mendelsohn"],"href":"https://www.w3.org/TR/2002/NOTE-soap12-email-20020703","title":"SOAP Version 1.2 Email Binding","rawDate":"2002-07-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-07-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-mtom":{"authors":["Martin Gudgin","Noah Mendelsohn","Mark Nottingham","Hervé Ruellan"],"etAl":true,"href":"https://www.w3.org/TR/soap12-mtom/","title":"SOAP Message Transmission Optimization Mechanism","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2005/01/soap12-mtom-errata","versions":{"20030721":{"status":"WD","rawDate":"2003-07-21","href":"https://www.w3.org/TR/2003/WD-soap12-mtom-20030721","source":"./data/w3c-specs.txt"},"20040209":{"status":"WD","rawDate":"2004-02-09","href":"https://www.w3.org/TR/2004/WD-soap12-mtom-20040209/","source":"./data/w3c-specs.txt"},"20040608":{"status":"WD","rawDate":"2004-06-08","href":"https://www.w3.org/TR/2004/WD-soap12-mtom-20040608/","source":"./data/w3c-specs.txt"},"20040826":{"status":"CR","rawDate":"2004-08-26","href":"https://www.w3.org/TR/2004/CR-soap12-mtom-20040826/","source":"./data/w3c-specs.txt"},"20041116":{"status":"PR","rawDate":"2004-11-16","href":"https://www.w3.org/TR/2004/PR-soap12-mtom-20041116/","source":"./data/w3c-specs.txt"},"20050125":{"authors":["Martin Gudgin","Noah Mendelsohn","Mark Nottingham","Hervé Ruellan"],"href":"https://www.w3.org/TR/2005/REC-soap12-mtom-20050125/","title":"SOAP Message Transmission Optimization Mechanism","rawDate":"2005-01-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2005/01/soap12-mtom-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-mtom-policy":{"authors":["Christopher Ferris","Yves Lafon"],"href":"https://www.w3.org/TR/soap12-mtom-policy/","title":"MTOM Serialization Policy Assertion 1.1","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20070918":{"authors":["Christopher Ferris","Yves Lafon"],"href":"https://www.w3.org/TR/2007/WD-soap12-mtom-policy-20070918/","title":"MTOM Serialization Policy Assertion 1.1","rawDate":"2007-09-18","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2007-09-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"soap12-n11n":{"authors":["Martin Gudgin","Marc Hadley"],"href":"https://www.w3.org/TR/soap12-n11n/","title":"SOAP Version 1.2 Message Normalization","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20030328":{"status":"NOTE","rawDate":"2003-03-28","href":"https://www.w3.org/TR/2003/NOTE-soap12-n11n-20030328/","source":"./data/w3c-specs.txt"},"20031008":{"authors":["Martin Gudgin","Marc Hadley"],"href":"https://www.w3.org/TR/2003/NOTE-soap12-n11n-20031008/","title":"SOAP Version 1.2 Message Normalization","rawDate":"2003-10-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-10-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-os-ucr":{"authors":["Tony Graham","Anish Karmarkar","Mark Jones"],"href":"https://www.w3.org/TR/soap12-os-ucr/","title":"SOAP Optimized Serialization Use Cases and Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-soap12-os-ucr-20031112/","source":"./data/w3c-specs.txt"},"20040608":{"authors":["Tony Graham","Anish Karmarkar","Mark Jones"],"href":"https://www.w3.org/TR/2004/WD-soap12-os-ucr-20040608/","title":"SOAP Optimized Serialization Use Cases and Requirements","rawDate":"2004-06-08","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2004-06-08","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-part0":{"authors":["Nilo Mitra","Yves Lafon"],"href":"https://www.w3.org/TR/soap12-part0/","title":"SOAP Version 1.2 Part 0: Primer (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-part0-20070427-errata.html","versions":{"20011217":{"status":"WD","rawDate":"2001-12-17","href":"https://www.w3.org/TR/2001/WD-soap12-part0-20011217/","source":"./data/w3c-specs.txt"},"20020626":{"status":"WD","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/WD-soap12-part0-20020626","source":"./data/w3c-specs.txt"},"20021219":{"status":"CR","rawDate":"2002-12-19","href":"https://www.w3.org/TR/2002/CR-soap12-part0-20021219","source":"./data/w3c-specs.txt"},"20030507":{"status":"PR","rawDate":"2003-05-07","href":"https://www.w3.org/TR/2003/PR-soap12-part0-20030507/","source":"./data/w3c-specs.txt"},"20030624":{"authors":["Nilo Mitra"],"href":"https://www.w3.org/TR/2003/REC-soap12-part0-20030624/","title":"SOAP Version 1.2 Part 0: Primer","rawDate":"2003-06-24","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2003/06/REC-soap12-20030624-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20061219":{"status":"PER","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/PER-soap12-part0-20061219/","source":"./data/w3c-specs.txt"},"20070427":{"authors":["Nilo Mitra","Yves Lafon"],"href":"https://www.w3.org/TR/2007/REC-soap12-part0-20070427/","title":"SOAP Version 1.2 Part 0: Primer (Second Edition)","rawDate":"2007-04-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-part0-20070427-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-part1":{"authors":["Martin Gudgin","Marc Hadley","Noah Mendelsohn","Jean-Jacques Moreau","Henrik Frystyk Nielsen","Anish Karmarkar","Yves Lafon"],"etAl":true,"href":"https://www.w3.org/TR/soap12-part1/","title":"SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-part1-20070427-errata.html","versions":{"20010709":{"status":"WD","rawDate":"2001-07-09","href":"https://www.w3.org/TR/2001/WD-soap12-20010709/","source":"./data/w3c-specs.txt"},"20011002":{"status":"WD","rawDate":"2001-10-02","href":"https://www.w3.org/TR/2001/WD-soap12-part1-20011002/","source":"./data/w3c-specs.txt"},"20011217":{"status":"WD","rawDate":"2001-12-17","href":"https://www.w3.org/TR/2001/WD-soap12-part1-20011217/","source":"./data/w3c-specs.txt"},"20020626":{"status":"WD","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/WD-soap12-part1-20020626","source":"./data/w3c-specs.txt"},"20021219":{"status":"CR","rawDate":"2002-12-19","href":"https://www.w3.org/TR/2002/CR-soap12-part1-20021219","source":"./data/w3c-specs.txt"},"20030507":{"status":"PR","rawDate":"2003-05-07","href":"https://www.w3.org/TR/2003/PR-soap12-part1-20030507/","source":"./data/w3c-specs.txt"},"20030624":{"authors":["Martin Gudgin","Marc Hadley","Noah Mendelsohn","Jean-Jacques Moreau","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/2003/REC-soap12-part1-20030624/","title":"SOAP Version 1.2 Part 1: Messaging Framework","rawDate":"2003-06-24","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2003/06/REC-soap12-20030624-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20061219":{"status":"PER","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/PER-soap12-part1-20061219/","source":"./data/w3c-specs.txt"},"20070427":{"authors":["Martin Gudgin","Marc Hadley","Noah Mendelsohn","Jean-Jacques Moreau","Henrik Frystyk Nielsen","Anish Karmarkar","Yves Lafon"],"href":"https://www.w3.org/TR/2007/REC-soap12-part1-20070427/","title":"SOAP Version 1.2 Part 1: Messaging Framework (Second Edition)","rawDate":"2007-04-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-part1-20070427-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-part2":{"authors":["Martin Gudgin","Marc Hadley","Noah Mendelsohn","Jean-Jacques Moreau","Henrik Frystyk Nielsen","Anish Karmarkar","Yves Lafon"],"etAl":true,"href":"https://www.w3.org/TR/soap12-part2/","title":"SOAP Version 1.2 Part 2: Adjuncts (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-part2-20070427-errata.html","versions":{"20011002":{"status":"WD","rawDate":"2001-10-02","href":"https://www.w3.org/TR/2001/WD-soap12-part2-20011002/","source":"./data/w3c-specs.txt"},"20011217":{"status":"WD","rawDate":"2001-12-17","href":"https://www.w3.org/TR/2001/WD-soap12-part2-20011217/","source":"./data/w3c-specs.txt"},"20020626":{"status":"WD","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/WD-soap12-part2-20020626","source":"./data/w3c-specs.txt"},"20021219":{"status":"CR","rawDate":"2002-12-19","href":"https://www.w3.org/TR/2002/CR-soap12-part2-20021219","source":"./data/w3c-specs.txt"},"20030507":{"status":"PR","rawDate":"2003-05-07","href":"https://www.w3.org/TR/2003/PR-soap12-part2-20030507/","source":"./data/w3c-specs.txt"},"20030624":{"authors":["Martin Gudgin","Marc Hadley","Noah Mendelsohn","Jean-Jacques Moreau","Henrik Frystyk Nielsen"],"href":"https://www.w3.org/TR/2003/REC-soap12-part2-20030624/","title":"SOAP Version 1.2 Part 2: Adjuncts","rawDate":"2003-06-24","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2003/06/REC-soap12-20030624-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20061219":{"status":"PER","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/PER-soap12-part2-20061219/","source":"./data/w3c-specs.txt"},"20070427":{"authors":["Martin Gudgin","Marc Hadley","Noah Mendelsohn","Jean-Jacques Moreau","Henrik Frystyk Nielsen","Anish Karmarkar","Yves Lafon"],"href":"https://www.w3.org/TR/2007/REC-soap12-part2-20070427/","title":"SOAP Version 1.2 Part 2: Adjuncts (Second Edition)","rawDate":"2007-04-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-part2-20070427-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-part3":{"authors":["David Orchard"],"href":"https://www.w3.org/TR/soap12-part3/","title":"SOAP 1.2 Part 3: One-Way MEP","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20061219":{"status":"WD","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/WD-soap12-part3-20061219/","source":"./data/w3c-specs.txt"},"20070702":{"authors":["David Orchard"],"href":"https://www.w3.org/TR/2007/NOTE-soap12-part3-20070702/","title":"SOAP 1.2 Part 3: One-Way MEP","rawDate":"2007-07-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-07-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-rep":{"authors":["Anish Karmarkar","Martin Gudgin","Yves Lafon"],"href":"https://www.w3.org/TR/soap12-rep/","title":"Resource Representation SOAP Header Block","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2005/01/soap12-rep-errata","versions":{"20040428":{"status":"WD","rawDate":"2004-04-28","href":"https://www.w3.org/TR/2004/WD-soap12-rep-20040428/","source":"./data/w3c-specs.txt"},"20040608":{"status":"WD","rawDate":"2004-06-08","href":"https://www.w3.org/TR/2004/WD-soap12-rep-20040608/","source":"./data/w3c-specs.txt"},"20040826":{"status":"CR","rawDate":"2004-08-26","href":"https://www.w3.org/TR/2004/CR-soap12-rep-20040826/","source":"./data/w3c-specs.txt"},"20041116":{"status":"PR","rawDate":"2004-11-16","href":"https://www.w3.org/TR/2004/PR-soap12-rep-20041116/","source":"./data/w3c-specs.txt"},"20050125":{"authors":["Anish Karmarkar","Martin Gudgin","Yves Lafon"],"href":"https://www.w3.org/TR/2005/REC-soap12-rep-20050125/","title":"Resource Representation SOAP Header Block","rawDate":"2005-01-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2005/01/soap12-rep-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soap12-testcollection":{"authors":["Hugo Haas","Oisin Hurley","Anish Karmarkar","Jeff Mischkinsky","Mark Jones","Lynne R. Thompson","Richard D. Martin"],"etAl":true,"href":"https://www.w3.org/TR/soap12-testcollection/","title":"SOAP Version 1.2 Specification Assertions and Test Collection (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-testcollection-20070427-errata.html","versions":{"20020626":{"status":"WD","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/WD-soap12-testcollection-20020626","source":"./data/w3c-specs.txt"},"20030507":{"status":"PR","rawDate":"2003-05-07","href":"https://www.w3.org/TR/2003/PR-soap12-testcollection-20030507/","source":"./data/w3c-specs.txt"},"20030624":{"authors":["Hugo Haas","Oisin Hurley","Anish Karmarkar","Jeff Mischkinsky","Mark Jones","Lynne R. Thompson","Richard D. Martin"],"href":"https://www.w3.org/TR/2003/REC-soap12-testcollection-20030624/","title":"SOAP Version 1.2 Specification Assertions and Test Collection","rawDate":"2003-06-24","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2003/06/REC-soap12-20030624-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20061219":{"status":"PER","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/PER-soap12-testcollection-20061219/","source":"./data/w3c-specs.txt"},"20070427":{"authors":["Hugo Haas","Oisin Hurley","Anish Karmarkar","Jeff Mischkinsky","Mark Jones","Lynne R. Thompson","Richard D. Martin"],"href":"https://www.w3.org/TR/2007/REC-soap12-testcollection-20070427/","title":"SOAP Version 1.2 Specification Assertions and Test Collection (Second Edition)","rawDate":"2007-04-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2007/04/REC-soap12-testcollection-20070427-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-04-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"soapjms":{"authors":["Phil Adams","Peter Easton","Eric Johnson","Roland Merrick","Mark Phillips"],"href":"https://www.w3.org/TR/soapjms/","title":"SOAP over Java Message Service 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/soapjms/"],"hasErrata":"https://www.w3.org/2002/ws/soapjms/errata/soapjms-20120216-errata","versions":{"20080723":{"status":"WD","rawDate":"2008-07-23","href":"https://www.w3.org/TR/2008/WD-soapjms-20080723","source":"./data/w3c-specs.txt"},"20081121":{"status":"WD","rawDate":"2008-11-21","href":"https://www.w3.org/TR/2008/WD-soapjms-20081121","source":"./data/w3c-specs.txt"},"20090604":{"status":"CR","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/CR-soapjms-20090604","source":"./data/w3c-specs.txt"},"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-soapjms-20101026/","source":"./data/w3c-specs.txt"},"20111208":{"status":"PR","rawDate":"2011-12-08","href":"https://www.w3.org/TR/2011/PR-soapjms-20111208/","source":"./data/w3c-specs.txt"},"20120216":{"authors":["Phil Adams","Peter Easton","Eric Johnson","Roland Merrick","Mark Phillips"],"href":"https://www.w3.org/TR/2012/REC-soapjms-20120216/","title":"SOAP over Java Message Service 1.0","rawDate":"2012-02-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/soapjms/"],"hasErrata":"https://www.w3.org/2002/ws/soapjms/errata/soapjms-20120216-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-02-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"social-web-protocols":{"authors":["Amy Guy"],"href":"https://www.w3.org/TR/social-web-protocols/","title":"Social Web Protocols","rawDate":"2017-12-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c-social.github.io/social-web-protocols","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160112":{"authors":["Amy Guy"],"href":"https://www.w3.org/TR/2016/WD-social-web-protocols-20160112/","title":"Social Web Protocols","rawDate":"2016-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160603":{"href":"https://www.w3.org/TR/2016/WD-social-web-protocols-20160603/","title":"Social Web Protocols","rawDate":"2016-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160823":{"href":"https://www.w3.org/TR/2016/WD-social-web-protocols-20160823/","title":"Social Web Protocols","rawDate":"2016-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161101":{"href":"https://www.w3.org/TR/2016/WD-social-web-protocols-20161101/","title":"Social Web Protocols","rawDate":"2016-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161102":{"href":"https://www.w3.org/TR/2016/WD-social-web-protocols-20161102/","title":"Social Web Protocols","rawDate":"2016-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Amy Guy"],"href":"https://www.w3.org/TR/2017/WD-social-web-protocols-20170504/","title":"Social Web Protocols","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171225":{"authors":["Amy Guy"],"href":"https://www.w3.org/TR/2017/NOTE-social-web-protocols-20171225/","title":"Social Web Protocols","rawDate":"2017-12-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c-social/social-web-protocols"},"sparql-features":{"authors":["Kjetil Kjernsmo","Alexandre Passant"],"href":"https://www.w3.org/TR/sparql-features/","title":"SPARQL New Features and Rationale","rawDate":"2009-07-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090702":{"authors":["Kjetil Kjernsmo","Alexandre Passant"],"href":"https://www.w3.org/TR/2009/WD-sparql-features-20090702/","title":"SPARQL New Features and Rationale","rawDate":"2009-07-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"sparql11-entailment":{"authors":["Birte Glimm","Chimezie Ogbuji"],"href":"https://www.w3.org/TR/sparql11-entailment/","title":"SPARQL 1.1 Entailment Regimes","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-entailment","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-sparql11-entailment-20091022/","source":"./data/w3c-specs.txt"},"20100126":{"status":"WD","rawDate":"2010-01-26","href":"https://www.w3.org/TR/2010/WD-sparql11-entailment-20100126/","source":"./data/w3c-specs.txt"},"20100601":{"status":"WD","rawDate":"2010-06-01","href":"https://www.w3.org/TR/2010/WD-sparql11-entailment-20100601/","source":"./data/w3c-specs.txt"},"20101014":{"status":"WD","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/WD-sparql11-entailment-20101014/","source":"./data/w3c-specs.txt"},"20110512":{"status":"WD","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/WD-sparql11-entailment-20110512/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-sparql11-entailment-20120105/","source":"./data/w3c-specs.txt"},"20121108":{"status":"CR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/CR-sparql11-entailment-20121108/","source":"./data/w3c-specs.txt"},"20130129":{"status":"PR","rawDate":"2013-01-29","href":"https://www.w3.org/TR/2013/PR-sparql11-entailment-20130129/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Birte Glimm","Chimezie Ogbuji"],"href":"https://www.w3.org/TR/2013/REC-sparql11-entailment-20130321/","title":"SPARQL 1.1 Entailment Regimes","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-entailment","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-entailment/spec/","repository":"https://github.com/w3c/sparql-entailment"},"sparql11-federated-query":{"authors":["Eric Prud'hommeaux","Carlos Buil Aranda"],"href":"https://www.w3.org/TR/sparql11-federated-query/","title":"SPARQL 1.1 Federated Query","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-federated-query","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100601":{"status":"WD","rawDate":"2010-06-01","href":"https://www.w3.org/TR/2010/WD-sparql11-federated-query-20100601/","source":"./data/w3c-specs.txt"},"20111117":{"status":"WD","rawDate":"2011-11-17","href":"https://www.w3.org/TR/2011/WD-sparql11-federated-query-20111117/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-federated-query-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Eric Prud'hommeaux","Carlos Buil Aranda"],"href":"https://www.w3.org/TR/2013/REC-sparql11-federated-query-20130321/","title":"SPARQL 1.1 Federated Query","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-federated-query","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-federated-query/spec/","repository":"https://github.com/w3c/sparql-federated-query"},"sparql11-http-rdf-update":{"authors":["Chimezie Ogbuji"],"href":"https://www.w3.org/TR/sparql11-http-rdf-update/","title":"SPARQL 1.1 Graph Store HTTP Protocol","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-sparql11-http-rdf-update-20091022/","source":"./data/w3c-specs.txt"},"20100126":{"status":"WD","rawDate":"2010-01-26","href":"https://www.w3.org/TR/2010/WD-sparql11-http-rdf-update-20100126/","source":"./data/w3c-specs.txt"},"20100601":{"status":"WD","rawDate":"2010-06-01","href":"https://www.w3.org/TR/2010/WD-sparql11-http-rdf-update-20100601/","source":"./data/w3c-specs.txt"},"20101014":{"status":"WD","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/WD-sparql11-http-rdf-update-20101014/","source":"./data/w3c-specs.txt"},"20110512":{"status":"WD","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/WD-sparql11-http-rdf-update-20110512/","source":"./data/w3c-specs.txt"},"20120501":{"authors":["Chimezie Ogbuji"],"href":"https://www.w3.org/TR/2012/WD-sparql11-http-rdf-update-20120501/","title":"SPARQL 1.1 Graph Store HTTP Protocol","rawDate":"2012-05-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20121108":{"authors":["Chimezie Ogbuji"],"href":"https://www.w3.org/TR/2012/CR-sparql11-http-rdf-update-20121108/","title":"SPARQL 1.1 Graph Store HTTP Protocol","rawDate":"2012-11-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130129":{"status":"PR","rawDate":"2013-01-29","href":"https://www.w3.org/TR/2013/PR-sparql11-http-rdf-update-20130129/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Chimezie Ogbuji"],"href":"https://www.w3.org/TR/2013/REC-sparql11-http-rdf-update-20130321/","title":"SPARQL 1.1 Graph Store HTTP Protocol","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-http-rdf-update","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-http-rdf-update","edDraft":"https://w3c.github.io/sparql-graph-store-protocol/spec/","repository":"https://github.com/w3c/sparql-graph-store-protocol"},"sparql11-overview":{"authors":["The W3C SPARQL Working Group"],"href":"https://www.w3.org/TR/sparql11-overview/","title":"SPARQL 1.1 Overview","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-overview","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111117":{"status":"WD","rawDate":"2011-11-17","href":"https://www.w3.org/TR/2011/WD-sparql11-overview-20111117/","source":"./data/w3c-specs.txt"},"20120501":{"status":"WD","rawDate":"2012-05-01","href":"https://www.w3.org/TR/2012/WD-sparql11-overview-20120501/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-overview-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["The W3C SPARQL Working Group"],"href":"https://www.w3.org/TR/2013/REC-sparql11-overview-20130321/","title":"SPARQL 1.1 Overview","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-overview","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"sparql11-property-paths":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/sparql11-property-paths/","title":"SPARQL 1.1 Property Paths","rawDate":"2010-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100126":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/2010/WD-sparql11-property-paths-20100126/","title":"SPARQL 1.1 Property Paths","rawDate":"2010-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"sparql11-protocol":{"authors":["Lee Feigenbaum","Gregory Williams","Kendall Clark","Elias Torres"],"href":"https://www.w3.org/TR/sparql11-protocol/","title":"SPARQL 1.1 Protocol","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-protocol","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-sparql11-protocol-20091022/","source":"./data/w3c-specs.txt"},"20100126":{"status":"WD","rawDate":"2010-01-26","href":"https://www.w3.org/TR/2010/WD-sparql11-protocol-20100126/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-sparql11-protocol-20120105/","source":"./data/w3c-specs.txt"},"20121108":{"status":"CR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/CR-sparql11-protocol-20121108/","source":"./data/w3c-specs.txt"},"20130129":{"status":"PR","rawDate":"2013-01-29","href":"https://www.w3.org/TR/2013/PR-sparql11-protocol-20130129/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Lee Feigenbaum","Gregory Williams","Kendall Clark","Elias Torres"],"href":"https://www.w3.org/TR/2013/REC-sparql11-protocol-20130321/","title":"SPARQL 1.1 Protocol","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-protocol","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-protocol/spec/","repository":"https://github.com/w3c/sparql-protocol"},"sparql11-query":{"authors":["Steven Harris","Andy Seaborne"],"href":"https://www.w3.org/TR/sparql11-query/","title":"SPARQL 1.1 Query Language","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-query","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-sparql11-query-20091022/","source":"./data/w3c-specs.txt"},"20100126":{"status":"WD","rawDate":"2010-01-26","href":"https://www.w3.org/TR/2010/WD-sparql11-query-20100126/","source":"./data/w3c-specs.txt"},"20100601":{"status":"WD","rawDate":"2010-06-01","href":"https://www.w3.org/TR/2010/WD-sparql11-query-20100601/","source":"./data/w3c-specs.txt"},"20101014":{"status":"WD","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/WD-sparql11-query-20101014/","source":"./data/w3c-specs.txt"},"20110512":{"status":"WD","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/WD-sparql11-query-20110512/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-sparql11-query-20120105/","source":"./data/w3c-specs.txt"},"20120724":{"status":"WD","rawDate":"2012-07-24","href":"https://www.w3.org/TR/2012/WD-sparql11-query-20120724/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-query-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Steven Harris","Andy Seaborne"],"href":"https://www.w3.org/TR/2013/REC-sparql11-query-20130321/","title":"SPARQL 1.1 Query Language","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-query","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-query/spec/","repository":"https://github.com/w3c/sparql-query"},"sparql11-results-csv-tsv":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/sparql11-results-csv-tsv/","title":"SPARQL 1.1 Query Results CSV and TSV Formats","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-results-csv-tsv","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110913":{"status":"WD","rawDate":"2011-09-13","href":"https://www.w3.org/TR/2011/WD-sparql11-results-csv-tsv-20110913/","source":"./data/w3c-specs.txt"},"20120501":{"status":"WD","rawDate":"2012-05-01","href":"https://www.w3.org/TR/2012/WD-sparql11-results-csv-tsv-20120501/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-results-csv-tsv-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/2013/REC-sparql11-results-csv-tsv-20130321/","title":"SPARQL 1.1 Query Results CSV and TSV Formats","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-results-csv-tsv","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-results-csv-tsv/spec/","repository":"https://github.com/w3c/sparql-results-csv-tsv"},"sparql11-results-json":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/sparql11-results-json/","title":"SPARQL 1.1 Query Results JSON Format","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-results-json","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110913":{"status":"WD","rawDate":"2011-09-13","href":"https://www.w3.org/TR/2011/WD-sparql11-results-json-20110913/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-results-json-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/2013/REC-sparql11-results-json-20130321/","title":"SPARQL 1.1 Query Results JSON Format","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-results-json","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-results-json/spec/","repository":"https://github.com/w3c/sparql-results-json"},"sparql11-service-description":{"authors":["Gregory Williams"],"href":"https://www.w3.org/TR/sparql11-service-description/","title":"SPARQL 1.1 Service Description","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-service-description","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-sparql11-service-description-20091022/","source":"./data/w3c-specs.txt"},"20100126":{"status":"WD","rawDate":"2010-01-26","href":"https://www.w3.org/TR/2010/WD-sparql11-service-description-20100126/","source":"./data/w3c-specs.txt"},"20100601":{"status":"WD","rawDate":"2010-06-01","href":"https://www.w3.org/TR/2010/WD-sparql11-service-description-20100601/","source":"./data/w3c-specs.txt"},"20101014":{"status":"WD","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/WD-sparql11-service-description-20101014/","source":"./data/w3c-specs.txt"},"20110512":{"status":"WD","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/WD-sparql11-service-description-20110512/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-sparql11-service-description-20120105/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-service-description-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Gregory Williams"],"href":"https://www.w3.org/TR/2013/REC-sparql11-service-description-20130321/","title":"SPARQL 1.1 Service Description","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-service-description","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/sparql-service-description/spec/","repository":"https://github.com/w3c/sparql-service-description"},"sparql11-update":{"authors":["Paula Gearon","Alexandre Passant","Axel Polleres"],"href":"https://www.w3.org/TR/sparql11-update/","title":"SPARQL 1.1 Update","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-update","versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-sparql11-update-20091022/","source":"./data/w3c-specs.txt"},"20100126":{"status":"WD","rawDate":"2010-01-26","href":"https://www.w3.org/TR/2010/WD-sparql11-update-20100126/","source":"./data/w3c-specs.txt"},"20100601":{"status":"WD","rawDate":"2010-06-01","href":"https://www.w3.org/TR/2010/WD-sparql11-update-20100601/","source":"./data/w3c-specs.txt"},"20101014":{"status":"WD","rawDate":"2010-10-14","href":"https://www.w3.org/TR/2010/WD-sparql11-update-20101014/","source":"./data/w3c-specs.txt"},"20110512":{"status":"WD","rawDate":"2011-05-12","href":"https://www.w3.org/TR/2011/WD-sparql11-update-20110512/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-sparql11-update-20120105/","source":"./data/w3c-specs.txt"},"20121108":{"status":"PR","rawDate":"2012-11-08","href":"https://www.w3.org/TR/2012/PR-sparql11-update-20121108/","source":"./data/w3c-specs.txt"},"20130321":{"authors":["Paula Gearon","Alexandre Passant","Axel Polleres"],"href":"https://www.w3.org/TR/2013/REC-sparql11-update-20130321/","title":"SPARQL 1.1 Update","rawDate":"2013-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"hasErrata":"https://www.w3.org/2013/sparql-errata#sparql11-update","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-03-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/sparql-update/spec/","repository":"https://github.com/w3c/sparql-update"},"sparql12-entailment":{"authors":["Peter Patel-Schneider"],"href":"https://www.w3.org/TR/sparql12-entailment/","title":"SPARQL 1.2 Entailment Regimes","rawDate":"2023-06-15","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-entailment/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230606":{"authors":["Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2023/WD-sparql12-entailment-20230606/","title":"SPARQL 1.2 Entailment Regimes","rawDate":"2023-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Peter Patel-Schneider"],"href":"https://www.w3.org/TR/2023/WD-sparql12-entailment-20230615/","title":"SPARQL 1.2 Entailment Regimes","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-entailment"},"sparql12-federated-query":{"authors":["Ruben Taelman","Gregory Williams"],"href":"https://www.w3.org/TR/sparql12-federated-query/","title":"SPARQL 1.2 Federated Query","rawDate":"2023-06-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-federated-query/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Gregory Williams","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-federated-query-20230516/","title":"SPARQL 1.2 Federated Query","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Ruben Taelman","Gregory Williams"],"href":"https://www.w3.org/TR/2023/WD-sparql12-federated-query-20230616/","title":"SPARQL 1.2 Federated Query","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-federated-query"},"sparql12-graph-store-protocol":{"authors":["Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-graph-store-protocol/","title":"SPARQL 1.2 Graph Store Protocol","rawDate":"2023-06-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-graph-store-protocol/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Andy Seaborne"],"href":"https://www.w3.org/TR/2023/WD-sparql12-graph-store-protocol-20230516/","title":"SPARQL 1.2 Graph Store Protocol","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-graph-store-protocol-20230616/","title":"SPARQL 1.2 Graph Store Protocol","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-graph-store-protocol"},"sparql12-protocol":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-protocol/","title":"SPARQL 1.2 Protocol","rawDate":"2023-12-14","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-protocol/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Andy Seaborne","Gregory Williams","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-protocol-20230516/","title":"SPARQL 1.2 Protocol","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-protocol-20230616/","title":"SPARQL 1.2 Protocol","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-protocol-20231102/","title":"SPARQL 1.2 Protocol","rawDate":"2023-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231214":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-protocol-20231214/","title":"SPARQL 1.2 Protocol","rawDate":"2023-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-protocol"},"sparql12-query":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-query/","title":"SPARQL 1.2 Query Language","rawDate":"2024-01-18","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-query/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Andy Seaborne","Gregory Williams","Ruben Taelman","Olaf Hartig"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230516/","title":"SPARQL 1.2 Query Language","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230616/","title":"SPARQL 1.2 Query Language","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230629/","title":"SPARQL 1.2 Query Language","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230703":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230703/","title":"SPARQL 1.2 Query Language","rawDate":"2023-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230706/","title":"SPARQL 1.2 Query Language","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230727/","title":"SPARQL 1.2 Query Language","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230817/","title":"SPARQL 1.2 Query Language","rawDate":"2023-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230818":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230818/","title":"SPARQL 1.2 Query Language","rawDate":"2023-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230928/","title":"SPARQL 1.2 Query Language","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230929":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20230929/","title":"SPARQL 1.2 Query Language","rawDate":"2023-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231005":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20231005/","title":"SPARQL 1.2 Query Language","rawDate":"2023-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231010":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20231010/","title":"SPARQL 1.2 Query Language","rawDate":"2023-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20231013/","title":"SPARQL 1.2 Query Language","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231020":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20231020/","title":"SPARQL 1.2 Query Language","rawDate":"2023-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231208":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-query-20231208/","title":"SPARQL 1.2 Query Language","rawDate":"2023-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240118":{"authors":["Olaf Hartig","Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2024/WD-sparql12-query-20240118/","title":"SPARQL 1.2 Query Language","rawDate":"2024-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-query"},"sparql12-results-csv-tsv":{"authors":["Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-results-csv-tsv/","title":"SPARQL 1.2 Query Results CSV and TSV Formats","rawDate":"2023-11-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-results-csv-tsv/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Gregory Williams","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230516/","title":"SPARQL 1.2 Query Results CSV and TSV Formats","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230616/","title":"SPARQL 1.2 Query Results CSV and TSV Formats","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20230629/","title":"SPARQL 1.2 Query Results CSV and TSV Formats","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231110":{"authors":["Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-csv-tsv-20231110/","title":"SPARQL 1.2 Query Results CSV and TSV Formats","rawDate":"2023-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-results-csv-tsv"},"sparql12-results-json":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-results-json/","title":"SPARQL 1.2 Query Results JSON Format","rawDate":"2023-11-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-results-json/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Andy Seaborne","Gregory Williams","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-json-20230516/","title":"SPARQL 1.2 Query Results JSON Format","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-json-20230616/","title":"SPARQL 1.2 Query Results JSON Format","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-json-20230727/","title":"SPARQL 1.2 Query Results JSON Format","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230728":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-json-20230728/","title":"SPARQL 1.2 Query Results JSON Format","rawDate":"2023-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231130":{"authors":["Andy Seaborne","Ruben Taelman","Gregory Williams","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-json-20231130/","title":"SPARQL 1.2 Query Results JSON Format","rawDate":"2023-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-results-json"},"sparql12-results-xml":{"authors":["Ruben Taelman","Dominik Tomaszuk","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-results-xml/","title":"SPARQL 1.2 Query Results XML Format","rawDate":"2023-11-30","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-results-xml/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Dominik Tomaszuk","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230516/","title":"SPARQL 1.2 Query Results XML Format","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Ruben Taelman","Dominik Tomaszuk","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230616/","title":"SPARQL 1.2 Query Results XML Format","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Ruben Taelman","Dominik Tomaszuk","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230727/","title":"SPARQL 1.2 Query Results XML Format","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230728":{"authors":["Ruben Taelman","Dominik Tomaszuk","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-xml-20230728/","title":"SPARQL 1.2 Query Results XML Format","rawDate":"2023-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231130":{"authors":["Ruben Taelman","Dominik Tomaszuk","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-results-xml-20231130/","title":"SPARQL 1.2 Query Results XML Format","rawDate":"2023-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-results-xml"},"sparql12-service-description":{"authors":["Ruben Taelman","Gregory Williams"],"href":"https://www.w3.org/TR/sparql12-service-description/","title":"SPARQL 1.2 Service Description","rawDate":"2023-12-14","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-service-description/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Gregory Williams","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-service-description-20230516/","title":"SPARQL 1.2 Service Description","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Ruben Taelman","Gregory Williams"],"href":"https://www.w3.org/TR/2023/WD-sparql12-service-description-20230616/","title":"SPARQL 1.2 Service Description","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231214":{"authors":["Ruben Taelman","Gregory Williams"],"href":"https://www.w3.org/TR/2023/WD-sparql12-service-description-20231214/","title":"SPARQL 1.2 Service Description","rawDate":"2023-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-service-description"},"sparql12-update":{"authors":["Ruben Taelman","Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/sparql12-update/","title":"SPARQL 1.2 Update","rawDate":"2023-09-28","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sparql-update/spec/","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230516":{"authors":["Andy Seaborne","Ruben Taelman"],"href":"https://www.w3.org/TR/2023/WD-sparql12-update-20230516/","title":"SPARQL 1.2 Update","rawDate":"2023-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Ruben Taelman","Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-update-20230616/","title":"SPARQL 1.2 Update","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Ruben Taelman","Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-update-20230706/","title":"SPARQL 1.2 Update","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230714":{"authors":["Ruben Taelman","Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-update-20230714/","title":"SPARQL 1.2 Update","rawDate":"2023-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230922":{"authors":["Ruben Taelman","Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-update-20230922/","title":"SPARQL 1.2 Update","rawDate":"2023-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Ruben Taelman","Andy Seaborne","Thomas Pellissier Tanon"],"href":"https://www.w3.org/TR/2023/WD-sparql12-update-20230928/","title":"SPARQL 1.2 Update","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/rdf-star/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sparql-update"},"spec-variability":{"authors":["Dominique Hazaël-Massieux","Lynne Rosenthal"],"href":"https://www.w3.org/TR/spec-variability/","title":"Variability in Specifications","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"versions":{"20040830":{"status":"WD","rawDate":"2004-08-30","href":"https://www.w3.org/TR/2004/WD-spec-variability-20040830/","source":"./data/w3c-specs.txt"},"20050428":{"status":"WD","rawDate":"2005-04-28","href":"https://www.w3.org/TR/2005/WD-spec-variability-20050428/","source":"./data/w3c-specs.txt"},"20050629":{"status":"WD","rawDate":"2005-06-29","href":"https://www.w3.org/TR/2005/WD-spec-variability-20050629/","source":"./data/w3c-specs.txt"},"20050831":{"authors":["Dominique Hazaël-Massieux","Lynne Rosenthal"],"href":"https://www.w3.org/TR/2005/NOTE-spec-variability-20050831/","title":"Variability in Specifications","rawDate":"2005-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-08-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"speech-grammar":{"authors":["Andrew Hunt","Scott McGlashan"],"href":"https://www.w3.org/TR/speech-grammar/","title":"Speech Recognition Grammar Specification Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2004/03/speech-grammar-errata.html","versions":{"20000710":{"status":"WD","rawDate":"2000-07-10","href":"https://www.w3.org/TR/2000/WD-grammar-spec-20000710","source":"./data/w3c-specs.txt"},"20010103":{"status":"WD","rawDate":"2001-01-03","href":"https://www.w3.org/TR/2001/WD-speech-grammar-20010103/","source":"./data/w3c-specs.txt"},"20010820":{"status":"WD","rawDate":"2001-08-20","href":"https://www.w3.org/TR/2001/WD-speech-grammar-20010820/","source":"./data/w3c-specs.txt"},"20020626":{"status":"CR","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/CR-speech-grammar-20020626","source":"./data/w3c-specs.txt"},"20031218":{"status":"PR","rawDate":"2003-12-18","href":"https://www.w3.org/TR/2003/PR-speech-grammar-20031218/","source":"./data/w3c-specs.txt"},"20040316":{"authors":["Andrew Hunt","Scott McGlashan"],"href":"https://www.w3.org/TR/2004/REC-speech-grammar-20040316/","title":"Speech Recognition Grammar Specification Version 1.0","rawDate":"2004-03-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2004/03/speech-grammar-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-03-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"speech-synthesis":{"authors":["Daniel Burnett","Mark Walker","Andrew Hunt"],"href":"https://www.w3.org/TR/speech-synthesis/","title":"Speech Synthesis Markup Language (SSML) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2004/09/ssml-errata.html","versions":{"20000808":{"status":"WD","rawDate":"2000-08-08","href":"https://www.w3.org/TR/2000/WD-speech-synthesis-20000808","source":"./data/w3c-specs.txt"},"20010103":{"status":"WD","rawDate":"2001-01-03","href":"https://www.w3.org/TR/2001/WD-speech-synthesis-20010103/","source":"./data/w3c-specs.txt"},"20020405":{"status":"WD","rawDate":"2002-04-05","href":"https://www.w3.org/TR/2002/WD-speech-synthesis-20020405/","source":"./data/w3c-specs.txt"},"20021202":{"status":"WD","rawDate":"2002-12-02","href":"https://www.w3.org/TR/2002/WD-speech-synthesis-20021202/","source":"./data/w3c-specs.txt"},"20031218":{"status":"CR","rawDate":"2003-12-18","href":"https://www.w3.org/TR/2003/CR-speech-synthesis-20031218/","source":"./data/w3c-specs.txt"},"20040715":{"status":"PR","rawDate":"2004-07-15","href":"https://www.w3.org/TR/2004/PR-speech-synthesis-20040715/","source":"./data/w3c-specs.txt"},"20040907":{"authors":["Daniel Burnett","Mark Walker","Andrew Hunt"],"href":"https://www.w3.org/TR/2004/REC-speech-synthesis-20040907/","title":"Speech Synthesis Markup Language (SSML) Version 1.0","rawDate":"2004-09-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2004/09/ssml-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-09-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"speech-synthesis11":{"authors":["Daniel Burnett","Zhi Wei Shuang"],"href":"https://www.w3.org/TR/speech-synthesis11/","title":"Speech Synthesis Markup Language (SSML) Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2010/04/speech-synthesis11-errata.html","versions":{"20070110":{"status":"WD","rawDate":"2007-01-10","href":"https://www.w3.org/TR/2007/WD-speech-synthesis11-20070110/","source":"./data/w3c-specs.txt"},"20070611":{"status":"WD","rawDate":"2007-06-11","href":"https://www.w3.org/TR/2007/WD-speech-synthesis11-20070611/","source":"./data/w3c-specs.txt"},"20070904":{"status":"WD","rawDate":"2007-09-04","href":"https://www.w3.org/TR/2007/WD-speech-synthesis11-20070904/","source":"./data/w3c-specs.txt"},"20071212":{"status":"WD","rawDate":"2007-12-12","href":"https://www.w3.org/TR/2007/WD-speech-synthesis11-20071212/","source":"./data/w3c-specs.txt"},"20080317":{"status":"WD","rawDate":"2008-03-17","href":"https://www.w3.org/TR/2008/WD-speech-synthesis11-20080317/","source":"./data/w3c-specs.txt"},"20080620":{"status":"WD","rawDate":"2008-06-20","href":"https://www.w3.org/TR/2008/WD-speech-synthesis11-20080620/","source":"./data/w3c-specs.txt"},"20081107":{"status":"CR","rawDate":"2008-11-07","href":"https://www.w3.org/TR/2008/CR-speech-synthesis11-20081107/","source":"./data/w3c-specs.txt"},"20090827":{"status":"CR","rawDate":"2009-08-27","href":"https://www.w3.org/TR/2009/CR-speech-synthesis11-20090827/","source":"./data/w3c-specs.txt"},"20100223":{"status":"PR","rawDate":"2010-02-23","href":"https://www.w3.org/TR/2010/PR-speech-synthesis11-20100223/","source":"./data/w3c-specs.txt"},"20100907":{"authors":["Daniel Burnett","Zhi Wei Shuang"],"href":"https://www.w3.org/TR/2010/REC-speech-synthesis11-20100907/","title":"Speech Synthesis Markup Language (SSML) Version 1.1","rawDate":"2010-09-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2010/04/speech-synthesis11-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-09-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"speechobjects":{"versions":{"20001114":{"status":"NOTE","rawDate":"2000-11-14","href":"https://www.w3.org/TR/2000/NOTE-speechobjects-20001114","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/speechobjects","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-11-14","title":"SpeechObjects Specification V1.0"},"spoken-html":{"authors":["Irfan Ali","Markku Hakkinen","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/spoken-html/","title":"Specification for Spoken Presentation in HTML","rawDate":"2021-09-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/pronunciation/technical-approach","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210518":{"authors":["Irfan Ali","Markku Hakkinen","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/2021/WD-spoken-html-20210518/","title":"Specification for Spoken Presentation in HTML","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210923":{"authors":["Irfan Ali","Markku Hakkinen","Paul Grenier","Ruoxi Ran"],"href":"https://www.w3.org/TR/2021/WD-spoken-html-20210923/","title":"Specification for Spoken Presentation in HTML","rawDate":"2021-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/pronunciation"},"sprot11":{"authors":["Lee Feigenbaum","Andy Seaborne","Elias Torres"],"href":"https://www.w3.org/TR/sprot11/","title":"SPARQL Protocol for RDF Using WSDL 1.1","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"versions":{"20051024":{"authors":["Lee Feigenbaum","Andy Seaborne","Elias Torres"],"href":"https://www.w3.org/TR/2005/WD-sprot11-20051024/","title":"SPARQL Protocol for RDF Using WSDL 1.1","rawDate":"2005-10-24","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/DataAccess/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-10-24","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ssml-sayas":{"authors":["Daniel Burnett","Paolo Baggia","An Buyle","Ellen Eide","Luc Van Tichelen"],"etAl":true,"href":"https://www.w3.org/TR/ssml-sayas/","title":"SSML 1.0 say-as attribute values","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20050526":{"authors":["Daniel Burnett","Paolo Baggia","An Buyle","Ellen Eide","Luc Van Tichelen"],"href":"https://www.w3.org/TR/2005/NOTE-ssml-sayas-20050526/","title":"SSML 1.0 say-as attribute values","rawDate":"2005-05-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-05-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ssml11reqs":{"authors":["Daniel Burnett","Zhi Wei Shuang"],"href":"https://www.w3.org/TR/ssml11reqs/","title":"Speech Synthesis Markup Language Version 1.1 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20061219":{"status":"WD","rawDate":"2006-12-19","href":"https://www.w3.org/TR/2006/WD-ssml11reqs-20061219/","source":"./data/w3c-specs.txt"},"20070611":{"authors":["Daniel Burnett","Zhi Wei Shuang"],"href":"https://www.w3.org/TR/2007/WD-ssml11reqs-20070611/","title":"Speech Synthesis Markup Language Version 1.1 Requirements","rawDate":"2007-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"staticrange":{"href":"https://w3c.github.io/staticrange/","title":"Static Range","status":"ED","publisher":"W3C","repository":"https://github.com/w3c/staticrange"},"streamproc":{"authors":["Robert O'Callahan"],"href":"https://www.w3.org/TR/streamproc/","title":"MediaStream Processing API","rawDate":"2012-05-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111215":{"status":"WD","rawDate":"2011-12-15","href":"https://www.w3.org/TR/2011/WD-streamproc-20111215/","source":"./data/w3c-specs.txt"},"20120531":{"authors":["Robert O'Callahan"],"href":"https://www.w3.org/TR/2012/NOTE-streamproc-20120531/","title":"MediaStream Processing API","rawDate":"2012-05-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"streams-api":{"authors":["Feras Moussa","Takeshi Yoshino"],"href":"https://www.w3.org/TR/streams-api/","title":"Streams API","rawDate":"2016-11-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130214":{"authors":["Feras Moussa"],"href":"https://www.w3.org/TR/2013/WD-streams-api-20130214/","title":"Streams API","rawDate":"2013-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Feras Moussa","Takeshi Yoshino"],"href":"https://www.w3.org/TR/2013/WD-streams-api-20131105/","title":"Streams API","rawDate":"2013-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141023":{"authors":["Feras Moussa","Takeshi Yoshino"],"href":"https://www.w3.org/TR/2014/WD-streams-api-20141023/","title":"Streams API","rawDate":"2014-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161129":{"authors":["Feras Moussa","Takeshi Yoshino"],"href":"https://www.w3.org/TR/2016/NOTE-streams-api-20161129/","title":"Streams API","rawDate":"2016-11-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://streams.spec.whatwg.org/","isRetired":true,"repository":"https://github.com/whatwg/streams"},"string-meta":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/string-meta/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2024-01-22","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/string-meta/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190416":{"authors":["Addison Phillips","Richard Ishida"],"href":"https://www.w3.org/TR/2019/WD-string-meta-20190416/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2019-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190611":{"authors":["Addison Phillips","Richard Ishida"],"href":"https://www.w3.org/TR/2019/WD-string-meta-20190611/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2019-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Addison Phillips","Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-string-meta-20220307/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2022-03-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220804":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2022/DNOTE-string-meta-20220804/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2022-08-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2023/DNOTE-string-meta-20230720/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240122":{"authors":["Richard Ishida","Addison Phillips"],"href":"https://www.w3.org/TR/2024/DNOTE-string-meta-20240122/","title":"Strings on the Web: Language and Direction Metadata","rawDate":"2024-01-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/string-meta"},"stts2":{"versions":{"19971017":{"status":"NOTE","rawDate":"1997-10-17","href":"https://www.w3.org/TR/NOTE-stts2-971017","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-stts2","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-10-17","title":"STSS 2"},"svg-aam-1.0":{"authors":["Amelia Bellamy-Royds","Ian Pouncey"],"href":"https://www.w3.org/TR/svg-aam-1.0/","title":"SVG Accessibility API Mappings","rawDate":"2018-05-10","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/svg-aam/","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150226":{"authors":["Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2015/WD-svg-aam-1.0-20150226/","title":"SVG Accessibility API Mappings","rawDate":"2015-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Amelia Bellamy-Royds","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2015/WD-svg-aam-1.0-20151119/","title":"SVG Accessibility API Mappings","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160908":{"href":"https://www.w3.org/TR/2016/WD-svg-aam-1.0-20160908/","title":"SVG Accessibility API Mappings","rawDate":"2016-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180510":{"authors":["Amelia Bellamy-Royds","Ian Pouncey"],"href":"https://www.w3.org/TR/2018/WD-svg-aam-1.0-20180510/","title":"SVG Accessibility API Mappings","rawDate":"2018-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria"},"svg-integration":{"authors":["Cameron McCormack","Doug Schepers","Dirk Schulze"],"href":"https://www.w3.org/TR/svg-integration/","title":"SVG Integration","rawDate":"2014-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140417":{"authors":["Cameron McCormack","Doug Schepers","Dirk Schulze"],"href":"https://www.w3.org/TR/2014/WD-svg-integration-20140417/","title":"SVG Integration","rawDate":"2014-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://svgwg.org/specs/integration/","repository":"https://github.com/w3c/svgwg"},"svg-markers":{"authors":["Cameron McCormack"],"href":"https://www.w3.org/TR/svg-markers/","title":"SVG Markers","rawDate":"2015-04-09","status":"WD","publisher":"W3C","edDraft":"https://svgwg.org/specs/markers/","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150409":{"authors":["Cameron McCormack"],"href":"https://www.w3.org/TR/2015/WD-svg-markers-20150409/","title":"SVG Markers","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/svgwg"},"svg-paths":{"authors":["Cyril Concolato","Cameron McCormack","Doug Schepers"],"href":"https://www.w3.org/TR/svg-paths/","title":"SVG Paths","rawDate":"2015-07-09","status":"WD","publisher":"W3C","edDraft":"https://svgwg.org/specs/paths/","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150709":{"authors":["Cyril Concolato","Cameron McCormack","Doug Schepers"],"href":"https://www.w3.org/TR/2015/WD-svg-paths-20150709/","title":"SVG Paths","rawDate":"2015-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/svgwg"},"svg-strokes":{"authors":["Cameron McCormack","Dirk Schulze"],"href":"https://www.w3.org/TR/svg-strokes/","title":"SVG Strokes","rawDate":"2015-04-09","status":"WD","publisher":"W3C","edDraft":"https://svgwg.org/specs/strokes/","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150409":{"authors":["Cameron McCormack","Dirk Schulze"],"href":"https://www.w3.org/TR/2015/WD-svg-strokes-20150409/","title":"SVG Strokes","rawDate":"2015-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/svgwg"},"sw-oosd-primer":{"authors":["Holger Knublauch","Daniel Oberle","Philip Tetlow","Evan Wallace"],"etAl":true,"href":"https://www.w3.org/TR/sw-oosd-primer/","title":"A Semantic Web Primer for Object-Oriented Software Developers","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20060309":{"authors":["Holger Knublauch","Daniel Oberle","Philip Tetlow","Evan Wallace"],"href":"https://www.w3.org/TR/2006/NOTE-sw-oosd-primer-20060309/","title":"A Semantic Web Primer for Object-Oriented Software Developers","rawDate":"2006-03-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-03-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"swbp-classes-as-values":{"authors":["Natasha Noy"],"href":"https://www.w3.org/TR/swbp-classes-as-values/","title":"Representing Classes As Property Values on the Semantic Web","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20040721":{"status":"WD","rawDate":"2004-07-21","href":"https://www.w3.org/TR/2004/WD-swbp-classes-as-values-20040721/","source":"./data/w3c-specs.txt"},"20050405":{"authors":["Natasha Noy"],"href":"https://www.w3.org/TR/2005/NOTE-swbp-classes-as-values-20050405/","title":"Representing Classes As Property Values on the Semantic Web","rawDate":"2005-04-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-04-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"swbp-image-annotation":{"authors":["Jacco van Ossenbruggen","Raphaël Troncy","Giorgos Stamou","Jeff Pan"],"href":"https://www.w3.org/TR/swbp-image-annotation/","title":"Image Annotation on the Semantic Web","rawDate":"2006-03-22","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20060322":{"authors":["Jacco van Ossenbruggen","Raphaël Troncy","Giorgos Stamou","Jeff Pan"],"href":"https://www.w3.org/TR/2006/WD-swbp-image-annotation-20060322/","title":"Image Annotation on the Semantic Web","rawDate":"2006-03-22","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"swbp-n-aryRelations":{"authors":["Natasha Noy","Alan Rector"],"href":"https://www.w3.org/TR/swbp-n-aryRelations/","title":"Defining N-ary Relations on the Semantic Web","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20040721":{"status":"WD","rawDate":"2004-07-21","href":"https://www.w3.org/TR/2004/WD-swbp-n-aryRelations-20040721/","source":"./data/w3c-specs.txt"},"20060412":{"authors":["Natasha Noy","Alan Rector"],"href":"https://www.w3.org/TR/2006/NOTE-swbp-n-aryRelations-20060412/","title":"Defining N-ary Relations on the Semantic Web","rawDate":"2006-04-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-04-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"swbp-skos-core-guide":{"authors":["Alistair Miles","Dan Brickley"],"href":"https://www.w3.org/TR/swbp-skos-core-guide/","title":"SKOS Core Guide","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20050510","source":"./data/w3c-specs.txt"},"20051102":{"authors":["Alistair Miles","Dan Brickley"],"href":"https://www.w3.org/TR/2005/WD-swbp-skos-core-guide-20051102/","title":"SKOS Core Guide","rawDate":"2005-11-02","publisher":"W3C","isSuperseded":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-11-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["skos-primer"]},"swbp-skos-core-spec":{"authors":["Alistair Miles","Dan Brickley"],"href":"https://www.w3.org/TR/swbp-skos-core-spec/","title":"SKOS Core Vocabulary Specification","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-swbp-skos-core-spec-20050510","source":"./data/w3c-specs.txt"},"20051102":{"authors":["Alistair Miles","Dan Brickley"],"href":"https://www.w3.org/TR/2005/WD-swbp-skos-core-spec-20051102/","title":"SKOS Core Vocabulary Specification","rawDate":"2005-11-02","publisher":"W3C","isSuperseded":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-11-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["skos-reference"]},"swbp-specified-values":{"authors":["Alan Rector"],"href":"https://www.w3.org/TR/swbp-specified-values/","title":"Representing Specified Values in OWL: \"value partitions\" and \"value sets\"","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20040803":{"status":"WD","rawDate":"2004-08-03","href":"https://www.w3.org/TR/2004/WD-swbp-specified-values-20040803/","source":"./data/w3c-specs.txt"},"20050517":{"authors":["Alan Rector"],"href":"https://www.w3.org/TR/2005/NOTE-swbp-specified-values-20050517/","title":"Representing Specified Values in OWL: \"value partitions\" and \"value sets\"","rawDate":"2005-05-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-05-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"swbp-thesaurus-pubguide":{"authors":["Alistair Miles"],"href":"https://www.w3.org/TR/swbp-thesaurus-pubguide/","title":"Quick Guide to Publishing a Thesaurus on the Semantic Web","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-swbp-thesaurus-pubguide-20050510","source":"./data/w3c-specs.txt"},"20050517":{"authors":["Alistair Miles"],"href":"https://www.w3.org/TR/2005/WD-swbp-thesaurus-pubguide-20050517/","title":"Quick Guide to Publishing a Thesaurus on the Semantic Web","rawDate":"2005-05-17","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-05-17","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"swbp-vocab-pub":{"authors":["Diego Berrueta","Jon Phipps"],"href":"https://www.w3.org/TR/swbp-vocab-pub/","title":"Best Practice Recipes for Publishing RDF Vocabularies","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"versions":{"20060314":{"status":"WD","rawDate":"2006-03-14","href":"https://www.w3.org/TR/2006/WD-swbp-vocab-pub-20060314/","source":"./data/w3c-specs.txt"},"20080123":{"status":"WD","rawDate":"2008-01-23","href":"https://www.w3.org/TR/2008/WD-swbp-vocab-pub-20080123/","source":"./data/w3c-specs.txt"},"20080828":{"authors":["Diego Berrueta","Jon Phipps"],"href":"https://www.w3.org/TR/2008/NOTE-swbp-vocab-pub-20080828/","title":"Best Practice Recipes for Publishing RDF Vocabularies","rawDate":"2008-08-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-08-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"swbp-xsch-datatypes":{"authors":["Jeremy Carroll","Jeff Pan"],"href":"https://www.w3.org/TR/swbp-xsch-datatypes/","title":"XML Schema Datatypes in RDF and OWL","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20050427":{"status":"WD","rawDate":"2005-04-27","href":"https://www.w3.org/TR/2005/WD-swbp-xsch-datatypes-20050427","source":"./data/w3c-specs.txt"},"20060314":{"authors":["Jeremy Carroll","Jeff Pan"],"href":"https://www.w3.org/TR/2006/NOTE-swbp-xsch-datatypes-20060314/","title":"XML Schema Datatypes in RDF and OWL","rawDate":"2006-03-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-03-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"sysenv":{"aliasOf":"DPF"},"system-info-api":{"authors":["Max Froumentin","Dzung Tran","Bryan Sullivan"],"etAl":true,"href":"https://www.w3.org/TR/system-info-api/","title":"The System Information API","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"versions":{"20100202":{"authors":["Dzung Tran","Max Froumentin"],"href":"https://www.w3.org/TR/2010/WD-system-info-api-20100202/","title":"The System Information API","rawDate":"2010-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","etAl":true},"20140114":{"authors":["Max Froumentin","Dzung Tran","Bryan Sullivan"],"href":"https://www.w3.org/TR/2014/NOTE-system-info-api-20140114/","title":"The System Information API","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2014-01-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"tabular-data-model":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/tabular-data-model/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2015-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140327":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2014/WD-tabular-data-model-20140327/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2014-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140710":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2014/WD-tabular-data-model-20140710/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2014-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150108":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/WD-tabular-data-model-20150108/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2015-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150416":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/WD-tabular-data-model-20150416/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2015-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150716":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/CR-tabular-data-model-20150716/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2015-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151117":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/PR-tabular-data-model-20151117/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2015-11-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/REC-tabular-data-model-20151217/","title":"Model for Tabular Data and Metadata on the Web","rawDate":"2015-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/csvw/syntax/","repository":"https://github.com/w3c/csvw"},"tabular-data-primer":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/tabular-data-primer/","title":"CSV on the Web: A Primer","rawDate":"2016-02-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/csvw/primer/","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160225":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2016/NOTE-tabular-data-primer-20160225/","title":"CSV on the Web: A Primer","rawDate":"2016-02-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csvw"},"tabular-metadata":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/tabular-metadata/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2015-12-17","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/csvw/metadata/","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140710":{"authors":["Rufus Pollock","Jeni Tennison"],"href":"https://www.w3.org/TR/2014/WD-tabular-metadata-20140710/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2014-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150108":{"authors":["Rufus Pollock","Jeni Tennison"],"href":"https://www.w3.org/TR/2015/WD-tabular-metadata-20150108/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2015-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150416":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/WD-tabular-metadata-20150416/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2015-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150716":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/CR-tabular-metadata-20150716/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2015-07-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151117":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/PR-tabular-metadata-20151117/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2015-11-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Jeni Tennison","Gregg Kellogg"],"href":"https://www.w3.org/TR/2015/REC-tabular-metadata-20151217/","title":"Metadata Vocabulary for Tabular Data","rawDate":"2015-12-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/csvw/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csvw"},"taml-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/taml-gap/","title":"Tamil Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/iip/gap-analysis/taml-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-taml-gap-20200616/","title":"Tamil Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-taml-gap-20210126/","title":"Tamil Gap Analysis","rawDate":"2021-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210210":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-taml-gap-20210210/","title":"Tamil Gap Analysis","rawDate":"2021-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210217":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-taml-gap-20210217/","title":"Tamil Gap Analysis","rawDate":"2021-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210330":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-taml-gap-20210330/","title":"Tamil Gap Analysis","rawDate":"2021-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210331":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-taml-gap-20210331/","title":"Tamil Gap Analysis","rawDate":"2021-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-taml-gap-20210525/","title":"Tamil Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-taml-gap-20220119/","title":"Tamil Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220121":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-taml-gap-20220121/","title":"Tamil Gap Analysis","rawDate":"2022-01-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-taml-gap-20230614/","title":"Tamil Gap Analysis","rawDate":"2023-06-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-taml-gap-20231004/","title":"Tamil Gap Analysis","rawDate":"2023-10-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/iip"},"task-models":{"authors":["Fabio Paternò","Carmen Santoro","Spano Lucio Davide","Dave Raggett"],"href":"https://www.w3.org/TR/task-models/","title":"MBUI - Task Models","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120802":{"authors":["Fabio Paternò","Dave Raggett"],"href":"https://www.w3.org/TR/2012/WD-task-models-20120802/","title":"MBUI - Task Models","rawDate":"2012-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131107":{"authors":["Fabio Paternò","Dave Raggett"],"href":"https://www.w3.org/TR/2013/WD-task-models-20131107/","title":"MBUI - Task Models","rawDate":"2013-11-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Fabio Paternò","Carmen Santoro","Spano Lucio Davide","Dave Raggett"],"href":"https://www.w3.org/TR/2014/NOTE-task-models-20140408/","title":"MBUI - Task Models","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/mbui/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"task-scheduler":{"authors":["Mahesh Kulkarni"],"href":"https://www.w3.org/TR/task-scheduler/","title":"Task Scheduler API Specification","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/2012/sysapps/web-alarms/","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130205":{"authors":["Christophe Dumez"],"href":"https://www.w3.org/TR/2013/WD-web-alarms-20130205/","title":"Web Alarms API Specification","rawDate":"2013-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141202":{"authors":["Mahesh Kulkarni"],"href":"https://www.w3.org/TR/2014/WD-task-scheduler-20141202/","title":"Task Scheduler API Specification","rawDate":"2014-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150723":{"authors":["Mahesh Kulkarni"],"href":"https://www.w3.org/TR/2015/NOTE-task-scheduler-20150723/","title":"Task Scheduler API Specification","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"tcp-udp-sockets":{"authors":["Claes Nilsson"],"href":"https://www.w3.org/TR/tcp-udp-sockets/","title":"TCP and UDP Socket API","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","edDraft":"https://www.w3.org/2012/sysapps/tcp-udp-sockets/","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130514":{"authors":["Claes Nilsson"],"href":"https://www.w3.org/TR/2013/WD-raw-sockets-20130514/","title":"Raw Socket API","rawDate":"2013-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141202":{"authors":["Claes Nilsson"],"href":"https://www.w3.org/TR/2014/WD-tcp-udp-sockets-20141202/","title":"TCP and UDP Socket API","rawDate":"2014-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150723":{"authors":["Claes Nilsson"],"href":"https://www.w3.org/TR/2015/NOTE-tcp-udp-sockets-20150723/","title":"TCP and UDP Socket API","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"telephony":{"authors":["Marcos Caceres","Jose Manuel Cantera Fonseca","Eduardo Fullea","Zoltan Kis","John Lyle"],"href":"https://www.w3.org/TR/telephony/","title":"Web Telephony API","rawDate":"2015-06-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130620":{"authors":["Marcos Caceres","Jose Manuel Cantera Fonseca","Eduardo Fullea","Zoltan Kis"],"href":"https://www.w3.org/TR/2013/WD-telephony-20130620/","title":"Web Telephony API","rawDate":"2013-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150602":{"authors":["Marcos Caceres","Jose Manuel Cantera Fonseca","Eduardo Fullea","Zoltan Kis","John Lyle"],"href":"https://www.w3.org/TR/2015/NOTE-telephony-20150602/","title":"Web Telephony API","rawDate":"2015-06-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/sysapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://www.w3.org/2012/sysapps/telephony/","isRetired":true},"tenthold-1":{"versions":{"20011128":{"status":"NOTE","rawDate":"2001-11-28","href":"https://www.w3.org/TR/2001/NOTE-tenthold-1-20011128/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/tenthold-1/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-11-28","title":"Tentative Hold Protocol Part 1: White Paper"},"tenthold-2":{"versions":{"20011128":{"status":"NOTE","rawDate":"2001-11-28","href":"https://www.w3.org/TR/2001/NOTE-tenthold-2-20011128/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/tenthold-2/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-11-28","title":"Tentative Hold Protocol Part 2: Technical Specification"},"test-metadata":{"authors":["Patrick Curran","Karl Dubost"],"href":"https://www.w3.org/TR/test-metadata/","title":"Test Metadata","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"versions":{"20050914":{"authors":["Patrick Curran","Karl Dubost"],"href":"https://www.w3.org/TR/2005/NOTE-test-metadata-20050914/","title":"Test Metadata","rawDate":"2005-09-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/QA/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-09-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"test-methodology":{"authors":["Dominique Hazaël-Massieux","Marcos Caceres"],"href":"https://www.w3.org/TR/test-methodology/","title":"A Method for Writing Testable Conformance Requirements","rawDate":"2010-01-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/Tests/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100128":{"authors":["Dominique Hazaël-Massieux","Marcos Caceres"],"href":"https://www.w3.org/TR/2010/NOTE-test-methodology-20100128/","title":"A Method for Writing Testable Conformance Requirements","rawDate":"2010-01-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2005/MWI/Tests/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"thai-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/thai-gap/","title":"Thai Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sealreq/gap-analysis/thai-gap","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-thai-gap-20200616/","title":"Thai Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210127":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-thai-gap-20210127/","title":"Thai Gap Analysis","rawDate":"2021-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210129":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-thai-gap-20210129/","title":"Thai Gap Analysis","rawDate":"2021-01-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210218":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-thai-gap-20210218/","title":"Thai Gap Analysis","rawDate":"2021-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-thai-gap-20210525/","title":"Thai Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-thai-gap-20220119/","title":"Thai Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2023/DNOTE-thai-gap-20230615/","title":"Thai Gap Analysis","rawDate":"2023-06-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sealreq"},"tibt-gap":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/tibt-gap/","title":"Tibetan Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/tlreq/gap-analysis/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-tibt-gap-20200616/","title":"Tibetan Gap Analysis","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210525":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2021/WD-tibt-gap-20210525/","title":"Tibetan Gap Analysis","rawDate":"2021-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-tibt-gap-20220119/","title":"Tibetan Gap Analysis","rawDate":"2022-01-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/tlreq"},"timesheets":{"authors":["Petri Vuorimaa","Dick Bulterman","Pablo Cesar"],"href":"https://www.w3.org/TR/timesheets/","title":"SMIL Timesheets 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"versions":{"20080110":{"status":"WD","rawDate":"2008-01-10","href":"https://www.w3.org/TR/2008/WD-timesheets-20080110/","source":"./data/w3c-specs.txt"},"20120328":{"authors":["Petri Vuorimaa","Dick Bulterman","Pablo Cesar"],"href":"https://www.w3.org/TR/2012/NOTE-timesheets-20120328/","title":"SMIL Timesheets 1.0","rawDate":"2012-03-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2012-03-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"timezone":{"authors":["Addison Phillips"],"etAl":true,"href":"https://www.w3.org/TR/timezone/","title":"Working with Time Zones","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20051013":{"status":"NOTE","rawDate":"2005-10-13","href":"https://www.w3.org/TR/2005/NOTE-timezone-20051013/","source":"./data/w3c-specs.txt"},"20110705":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2011/NOTE-timezone-20110705/","title":"Working with Time Zones","rawDate":"2011-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-07-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"timing-entrytypes-registry":{"authors":["Philippe Le Hegaret"],"href":"https://www.w3.org/TR/timing-entrytypes-registry/","title":"Timing Entry Names Registry","rawDate":"2019-07-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/timing-entrytypes-registry/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190723":{"authors":["Philippe Le Hegaret"],"href":"https://www.w3.org/TR/2019/WD-timing-entrytypes-registry-20190723/","title":"Timing Entry Names Registry","rawDate":"2019-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/timing-entrytypes-registry"},"tlreq":{"authors":["Richard Ishida","Chunming Hu"],"href":"https://www.w3.org/TR/tlreq/","title":"Requirements for Tibetan Text Layout and Typography","rawDate":"2020-06-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/tlreq/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200616":{"authors":["Richard Ishida","Chunming Hu"],"href":"https://www.w3.org/TR/2020/WD-tlreq-20200616/","title":"Requirements for Tibetan Text Layout and Typography","rawDate":"2020-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/tlreq"},"touch-events":{"authors":["Doug Schepers","Sangwhan Moon","Matt Brubeck","Arthur Barstow"],"href":"https://www.w3.org/TR/touch-events/","title":"Touch Events","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webevents/"],"versions":{"20110505":{"status":"WD","rawDate":"2011-05-05","href":"https://www.w3.org/TR/2011/WD-touch-events-20110505/","source":"./data/w3c-specs.txt"},"20110913":{"status":"WD","rawDate":"2011-09-13","href":"https://www.w3.org/TR/2011/WD-touch-events-20110913/","source":"./data/w3c-specs.txt"},"20111027":{"status":"WD","rawDate":"2011-10-27","href":"https://www.w3.org/TR/2011/WD-touch-events-20111027/","source":"./data/w3c-specs.txt"},"20111215":{"status":"CR","rawDate":"2011-12-15","href":"https://www.w3.org/TR/2011/CR-touch-events-20111215/","source":"./data/w3c-specs.txt"},"20130124":{"status":"WD","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/WD-touch-events-20130124/","source":"./data/w3c-specs.txt"},"20130509":{"authors":["Doug Schepers","Sangwhan Moon","Matt Brubeck","Arthur Barstow"],"href":"https://www.w3.org/TR/2013/PR-touch-events-20130509/","title":"Touch Events version 1","rawDate":"2013-05-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131010":{"authors":["Doug Schepers","Sangwhan Moon","Matt Brubeck","Arthur Barstow"],"href":"https://www.w3.org/TR/2013/REC-touch-events-20131010/","title":"Touch Events","rawDate":"2013-10-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-10-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/touch-events/","repository":"https://github.com/w3c/touch-events"},"touch-events-extensions":{"authors":["Doug Schepers","Sangwhan Moon","Matt Brubeck"],"href":"https://www.w3.org/TR/touch-events-extensions/","title":"Touch Events Extensions","rawDate":"2013-10-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131031":{"authors":["Doug Schepers","Sangwhan Moon","Matt Brubeck"],"href":"https://www.w3.org/TR/2013/NOTE-touch-events-extensions-20131031/","title":"Touch Events Extensions","rawDate":"2013-10-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webevents/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://dvcs.w3.org/hg/webevents/raw-file/default/touchevents.html","isRetired":true},"trace-context":{"aliasOf":"trace-context-1"},"trace-context-1":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer","Bogdan Drutu","Nik Molnar","Yuri Shkuro"],"href":"https://www.w3.org/TR/trace-context-1/","title":"Trace Context","rawDate":"2021-11-23","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/trace-context/","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181106":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer"],"href":"https://www.w3.org/TR/2018/WD-distributed-tracing-20181106/","title":"Trace Context","rawDate":"2018-11-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181122":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer"],"href":"https://www.w3.org/TR/2018/WD-trace-context-20181122/","title":"Trace Context","rawDate":"2018-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190509":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer","Bogdan Drutu","Nik Molnar","Yuri Shkuro"],"href":"https://www.w3.org/TR/2019/CR-trace-context-20190509/","title":"Trace Context","rawDate":"2019-05-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190813":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer","Bogdan Drutu","Nik Molnar","Yuri Shkuro"],"href":"https://www.w3.org/TR/2019/CR-trace-context-20190813/","title":"Trace Context","rawDate":"2019-08-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191121":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer","Bogdan Drutu","Nik Molnar","Yuri Shkuro"],"href":"https://www.w3.org/TR/2019/PR-trace-context-1-20191121/","title":"Trace Context","rawDate":"2019-11-21","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200206":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer","Bogdan Drutu","Nik Molnar","Yuri Shkuro"],"href":"https://www.w3.org/TR/2020/REC-trace-context-1-20200206/","title":"Trace Context - Level 1","rawDate":"2020-02-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Sergey Kanzhelev","Morgan McLean","Alois Reitbauer","Bogdan Drutu","Nik Molnar","Yuri Shkuro"],"href":"https://www.w3.org/TR/2021/REC-trace-context-1-20211123/","title":"Trace Context","rawDate":"2021-11-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"hasErrata":"https://w3c.github.io/trace-context/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/trace-context","hasErrata":"https://w3c.github.io/trace-context/errata.html"},"trace-context-2":{"authors":["Sergey Kanzhelev","Yuri Shkuro","Daniel Dyla"],"href":"https://www.w3.org/TR/trace-context-2/","title":"Trace Context Level 2","rawDate":"2023-04-18","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/trace-context/","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220929":{"authors":["Sergey Kanzhelev","Daniel Dyla","Yuri Shkuro"],"href":"https://www.w3.org/TR/2022/WD-trace-context-2-20220929/","title":"Trace Context Level 2","rawDate":"2022-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Sergey Kanzhelev","Daniel Dyla","Yuri Shkuro"],"href":"https://www.w3.org/TR/2023/WD-trace-context-2-20230406/","title":"Trace Context Level 2","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230418":{"authors":["Sergey Kanzhelev","Yuri Shkuro","Daniel Dyla"],"href":"https://www.w3.org/TR/2023/CR-trace-context-2-20230418/","title":"Trace Context Level 2","rawDate":"2023-04-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/trace-context"},"trace-context-protocols-registry":{"authors":["Sergey Kanzhelev","Philippe Le Hegaret"],"href":"https://www.w3.org/TR/trace-context-protocols-registry/","title":"Trace Context Protocols Registry","rawDate":"2019-11-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/trace-context-protocols-registry/","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190314":{"authors":["Sergey Kanzhelev","Philippe Le Hégaret"],"href":"https://www.w3.org/TR/2019/NOTE-trace-context-protocols-registry-20190314/","title":"Trace Context Protocols Registry","rawDate":"2019-03-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2018/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191119":{"authors":["Sergey Kanzhelev","Philippe Le Hegaret"],"href":"https://www.w3.org/TR/2019/NOTE-trace-context-protocols-registry-20191119/","title":"Trace Context Protocols Registry","rawDate":"2019-11-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/distributed-tracing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/trace-context-protocols-registry"},"tracking-compliance":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/tracking-compliance/","title":"Tracking Compliance and Scope","rawDate":"2019-01-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111114":{"status":"WD","rawDate":"2011-11-14","href":"https://www.w3.org/TR/2011/WD-tracking-compliance-20111114/","source":"./data/w3c-specs.txt"},"20120313":{"status":"WD","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/WD-tracking-compliance-20120313/","source":"./data/w3c-specs.txt"},"20121002":{"status":"WD","rawDate":"2012-10-02","href":"https://www.w3.org/TR/2012/WD-tracking-compliance-20121002/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Justin Brookman","Heather West","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2013/WD-tracking-compliance-20130430/","title":"Tracking Compliance and Scope","rawDate":"2013-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130912":{"authors":["Justin Brookman","Heather West","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2013/WD-tracking-compliance-20130912/","title":"Tracking Compliance and Scope","rawDate":"2013-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140128":{"authors":["Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2014/WD-tracking-compliance-20140128/","title":"Tracking Compliance and Scope","rawDate":"2014-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140508":{"authors":["Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2014/WD-tracking-compliance-20140508/","title":"Tracking Compliance and Scope","rawDate":"2014-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140807":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2014/WD-tracking-compliance-20140807/","title":"Tracking Compliance and Scope","rawDate":"2014-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141125":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2014/WD-tracking-compliance-20141125/","title":"Tracking Compliance and Scope","rawDate":"2014-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150331":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2015/WD-tracking-compliance-20150331/","title":"Tracking Compliance and Scope","rawDate":"2015-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2015/WD-tracking-compliance-20150714/","title":"Tracking Compliance and Scope","rawDate":"2015-07-14","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160426":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2016/CR-tracking-compliance-20160426/","title":"Tracking Compliance and Scope","rawDate":"2016-04-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190122":{"authors":["Nick Doty","Heather West","Justin Brookman","Sean Harvey","Erica Newland"],"href":"https://www.w3.org/TR/2019/NOTE-tracking-compliance-20190122/","title":"Tracking Compliance and Scope","rawDate":"2019-01-22","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://www.w3.org/2011/tracking-protection/drafts/tracking-compliance.html","isRetired":true},"tracking-dnt":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/tracking-dnt/","title":"Tracking Preference Expression (DNT)","rawDate":"2019-01-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111114":{"status":"WD","rawDate":"2011-11-14","href":"https://www.w3.org/TR/2011/WD-tracking-dnt-20111114/","source":"./data/w3c-specs.txt"},"20120313":{"status":"WD","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/WD-tracking-dnt-20120313/","source":"./data/w3c-specs.txt"},"20121002":{"status":"WD","rawDate":"2012-10-02","href":"https://www.w3.org/TR/2012/WD-tracking-dnt-20121002/","source":"./data/w3c-specs.txt"},"20130430":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2013/WD-tracking-dnt-20130430/","title":"Tracking Preference Expression (DNT)","rawDate":"2013-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130912":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2013/WD-tracking-dnt-20130912/","title":"Tracking Preference Expression (DNT)","rawDate":"2013-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140128":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2014/WD-tracking-dnt-20140128/","title":"Tracking Preference Expression (DNT)","rawDate":"2014-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140424":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2014/WD-tracking-dnt-20140424/","title":"Tracking Preference Expression (DNT)","rawDate":"2014-04-24","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150820":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2015/CR-tracking-dnt-20150820/","title":"Tracking Preference Expression (DNT)","rawDate":"2015-08-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171019":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2017/CR-tracking-dnt-20171019/","title":"Tracking Preference Expression (DNT)","rawDate":"2017-10-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190117":{"authors":["Roy Fielding","David Singer"],"href":"https://www.w3.org/TR/2019/NOTE-tracking-dnt-20190117/","title":"Tracking Preference Expression (DNT)","rawDate":"2019-01-17","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2011/tracking-protection/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/dnt/drafts/tracking-dnt.html","repository":"https://github.com/w3c/dnt","isRetired":true},"trig":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/trig/","title":"RDF 1.1 TriG","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130409":{"authors":["Gavin Carothers"],"href":"https://www.w3.org/TR/2013/WD-trig-20130409/","title":"TriG","rawDate":"2013-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130919":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/2013/WD-trig-20130919/","title":"TriG","rawDate":"2013-09-19","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/2013/CR-trig-20131105/","title":"RDF 1.1 TriG","rawDate":"2013-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/2014/PR-trig-20140109/","title":"RDF 1.1 TriG","rawDate":"2014-01-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Gavin Carothers","Andy Seaborne"],"href":"https://www.w3.org/TR/2014/REC-trig-20140225/","title":"RDF 1.1 TriG","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/rdf-trig/spec/","repository":"https://github.com/w3c/rdf-trig"},"trusted-types":{"authors":["Krzysztof Kotowicz"],"href":"https://www.w3.org/TR/trusted-types/","title":"Trusted Types","rawDate":"2022-09-27","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/trusted-types/dist/spec/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220927":{"authors":["Krzysztof Kotowicz"],"href":"https://www.w3.org/TR/2022/WD-trusted-types-20220927/","title":"Trusted Types","rawDate":"2022-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/trusted-types"},"tt-af-1-0-req":{"aliasOf":"ttaf1-req"},"ttaf1-dfxp":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/ttaf1-dfxp/","title":"Timed Text Markup Language (TTML) 1.0 (Second Edition)","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"versions":{"20101118":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2010/REC-ttaf1-dfxp-20101118/","title":"Timed Text Markup Language (TTML) 1.0","rawDate":"2010-11-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2010/11/ttml-issues.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130131":{"aliasOf":"ttml1-20130131"},"20130709":{"aliasOf":"ttml1-20130709"}},"rawDate":"2013-07-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/2010/11/ttml-issues.html"},"ttaf1-req":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/ttaf1-req/","title":"Timed Text (TT) Authoring Format 1.0 Use Cases and Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"versions":{"20030515":{"status":"WD","rawDate":"2003-05-15","href":"https://www.w3.org/TR/2003/WD-tt-af-1-0-req-20030515/","source":"./data/w3c-specs.txt"},"20030915":{"status":"WD","rawDate":"2003-09-15","href":"https://www.w3.org/TR/2003/WD-tt-af-1-0-req-20030915/","source":"./data/w3c-specs.txt"},"20060427":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2006/NOTE-ttaf1-req-20060427/","title":"Timed Text (TT) Authoring Format 1.0 Use Cases and Requirements","rawDate":"2006-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-04-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ttml-imsc1":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/ttml-imsc1/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0 (IMSC1)","rawDate":"2018-06-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140501":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2014/WD-ttml-imsc1-20140501/","title":"TTML Text and Image Profiles for Internet Media Subtitles and Captions 1.0","rawDate":"2014-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140930":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2014/WD-ttml-imsc1-20140930/","title":"TTML Text and Image Profiles for Internet Media Subtitles and Captions 1.0","rawDate":"2014-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2014/CR-ttml-imsc1-20141209/","title":"TTML Text and Image Profiles for Internet Media Subtitles and Captions 1.0","rawDate":"2014-12-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150519":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2015/CR-ttml-imsc1-20150519/","title":"TTML Text and Image Profiles for Internet Media Subtitles and Captions 1.0","rawDate":"2015-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160128":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2016/CR-ttml-imsc1-20160128/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0 (IMSC1)","rawDate":"2016-01-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160308":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2016/PR-ttml-imsc1-20160308/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0 (IMSC1)","rawDate":"2016-03-08","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160421":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2016/REC-ttml-imsc1-20160421/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0 (IMSC1)","rawDate":"2016-04-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180626":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/SPSD-ttml-imsc1-20180626/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0 (IMSC1)","rawDate":"2018-06-26","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://rawgit.com/w3c/imsc1/master/spec/ttml-ww-profiles.html","repository":"https://github.com/w3c/imsc1","isRetired":true},"ttml-imsc1.0.1":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/ttml-imsc1.0.1/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0.1 (IMSC1)","rawDate":"2018-04-24","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/imsc/imsc1/spec/ttml-ww-profiles.html","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170202":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/WD-ttml-imsc1.0.1-20170202/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0.1 (IMSC1)","rawDate":"2017-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170322":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/WD-ttml-imsc1.0.1-20170322/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0.1 (IMSC1)","rawDate":"2017-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170713":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/CR-ttml-imsc1.0.1-20170713/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0.1 (IMSC1)","rawDate":"2017-07-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180227":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/PR-ttml-imsc1.0.1-20180227/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0.1 (IMSC1)","rawDate":"2018-02-27","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180424":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/REC-ttml-imsc1.0.1-20180424/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.0.1 (IMSC1)","rawDate":"2018-04-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2018/04/ttml-imsc1.0.1-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/imsc","hasErrata":"https://www.w3.org/2018/04/ttml-imsc1.0.1-errata.html"},"ttml-imsc1.1":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/ttml-imsc1.1/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.1","rawDate":"2018-11-08","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/imsc/imsc1/spec/ttml-ww-profiles.html","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20171017":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2017/WD-ttml-imsc1.1-20171017/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.1","rawDate":"2017-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180503":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/CR-ttml-imsc1.1-20180503/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.1","rawDate":"2018-05-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180726":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/CR-ttml-imsc1.1-20180726/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.1","rawDate":"2018-07-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181004":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/PR-ttml-imsc1.1-20181004/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.1","rawDate":"2018-10-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/REC-ttml-imsc1.1-20181108/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.1","rawDate":"2018-11-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2018/11/ttml-imsc1.1-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/imsc","hasErrata":"https://www.w3.org/2018/11/ttml-imsc1.1-errata.html"},"ttml-imsc1.2":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/ttml-imsc1.2/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.2","rawDate":"2020-08-04","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/imsc/imsc1/spec/ttml-ww-profiles.html","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191128":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2019/WD-ttml-imsc1.2-20191128/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.2","rawDate":"2019-11-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200324":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2020/CR-ttml-imsc1.2-20200324/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.2","rawDate":"2020-03-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200616":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2020/PR-ttml-imsc1.2-20200616/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.2","rawDate":"2020-06-16","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200804":{"authors":["Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2020/REC-ttml-imsc1.2-20200804/","title":"TTML Profiles for Internet Media Subtitles and Captions 1.2","rawDate":"2020-08-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2020/08/ttml-imsc1.2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/imsc","hasErrata":"https://www.w3.org/2020/08/ttml-imsc1.2-errata.html"},"ttml-profile-registry":{"authors":["Mike Dolan","Nigel Megitt","Glenn Adams"],"href":"https://www.w3.org/TR/ttml-profile-registry/","title":"TTML Media Type Definition and Profile Registry","rawDate":"2020-11-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/tt-profile-registry/","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160510":{"authors":["Mike Dolan","Andreas Tai"],"href":"https://www.w3.org/TR/2016/NOTE-ttml-profile-registry-20160510/","title":"TTML Media Type Definition and Profile Registry","rawDate":"2016-05-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161009":{"href":"https://www.w3.org/TR/2016/NOTE-ttml-profile-registry-20161009/","title":"TTML Media Type Definition and Profile Registry","rawDate":"2016-10-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Mike Dolan"],"href":"https://www.w3.org/TR/2017/NOTE-ttml-profile-registry-20170117/","title":"TTML Media Type Definition and Profile Registry","rawDate":"2017-01-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190411":{"authors":["Glenn Adams","Mike Dolan"],"href":"https://www.w3.org/TR/2019/NOTE-ttml-profile-registry-20190411/","title":"TTML Media Type Definition and Profile Registry","rawDate":"2019-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201119":{"authors":["Mike Dolan","Nigel Megitt","Glenn Adams"],"href":"https://www.w3.org/TR/2020/NOTE-ttml-profile-registry-20201119/","title":"TTML Media Type Definition and Profile Registry","rawDate":"2020-11-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/tt-profile-registry"},"ttml1":{"authors":["Glenn Adams","Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/ttml1/","title":"Timed Text Markup Language 1 (TTML1) (Third Edition)","rawDate":"2018-11-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20041101":{"status":"WD","rawDate":"2004-11-01","href":"https://www.w3.org/TR/2004/WD-ttaf1-dfxp-20041101/","source":"./data/w3c-specs.txt"},"20050314":{"status":"WD","rawDate":"2005-03-14","href":"https://www.w3.org/TR/2005/WD-ttaf1-dfxp-20050314/","source":"./data/w3c-specs.txt"},"20050321":{"status":"WD","rawDate":"2005-03-21","href":"https://www.w3.org/TR/2005/WD-ttaf1-dfxp-20050321/","source":"./data/w3c-specs.txt"},"20060427":{"status":"WD","rawDate":"2006-04-27","href":"https://www.w3.org/TR/2006/WD-ttaf1-dfxp-20060427/","source":"./data/w3c-specs.txt"},"20061116":{"status":"CR","rawDate":"2006-11-16","href":"https://www.w3.org/TR/2006/CR-ttaf1-dfxp-20061116/","source":"./data/w3c-specs.txt"},"20090511":{"status":"WD","rawDate":"2009-05-11","href":"https://www.w3.org/TR/2009/WD-ttaf1-dfxp-20090511/","source":"./data/w3c-specs.txt"},"20090602":{"status":"WD","rawDate":"2009-06-02","href":"https://www.w3.org/TR/2009/WD-ttaf1-dfxp-20090602/","source":"./data/w3c-specs.txt"},"20090924":{"status":"CR","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/CR-ttaf1-dfxp-20090924/","source":"./data/w3c-specs.txt"},"20100223":{"status":"CR","rawDate":"2010-02-23","href":"https://www.w3.org/TR/2010/CR-ttaf1-dfxp-20100223/","source":"./data/w3c-specs.txt"},"20100914":{"status":"PR","rawDate":"2010-09-14","href":"https://www.w3.org/TR/2010/PR-ttaf1-dfxp-20100914/","source":"./data/w3c-specs.txt"},"20101118":{"aliasOf":"ttaf1-dfxp-20101118"},"20130131":{"status":"WD","rawDate":"2013-01-31","href":"https://www.w3.org/TR/2013/WD-ttaf1-dfxp-20130131/","source":"./data/w3c-specs.txt"},"20130709":{"status":"PER","rawDate":"2013-07-09","href":"https://www.w3.org/TR/2013/PER-ttaf1-dfxp-20130709/","source":"./data/w3c-specs.txt"},"20130924":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2013/REC-ttml1-20130924/","title":"Timed Text Markup Language 1 (TTML1) (Second Edition)","rawDate":"2013-09-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180424":{"authors":["Glenn Adams","Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/CR-ttml1-20180424/","title":"Timed Text Markup Language 1 (TTML1) (Third Edition)","rawDate":"2018-04-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180809":{"authors":["Glenn Adams","Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/CR-ttml1-20180809/","title":"Timed Text Markup Language 1 (TTML1) (Third Edition)","rawDate":"2018-08-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181004":{"authors":["Glenn Adams","Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/PR-ttml1-20181004/","title":"Timed Text Markup Language 1 (TTML1) (Third Edition)","rawDate":"2018-10-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Glenn Adams","Pierre-Anthony Lemieux"],"href":"https://www.w3.org/TR/2018/REC-ttml1-20181108/","title":"Timed Text Markup Language 1 (TTML1) (Third Edition)","rawDate":"2018-11-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2018/11/ttml1-3ed-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/2018/11/ttml1-3ed-errata.html","edDraft":"https://w3c.github.io/ttml1/index.html","repository":"https://github.com/w3c/ttml1"},"ttml10-sdp-us":{"authors":["Glenn Adams","Monica Martin","Sean Hayes"],"href":"https://www.w3.org/TR/ttml10-sdp-us/","title":"TTML Simple Delivery Profile for Closed Captions (US)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120913":{"status":"WD","rawDate":"2012-09-13","href":"https://www.w3.org/TR/2012/WD-ttml10-sdp-us-20120913/","source":"./data/w3c-specs.txt"},"20130103":{"status":"WD","rawDate":"2013-01-03","href":"https://www.w3.org/TR/2013/WD-ttml10-sdp-us-20130103/","source":"./data/w3c-specs.txt"},"20130205":{"authors":["Glenn Adams","Monica Martin","Sean Hayes"],"href":"https://www.w3.org/TR/2013/NOTE-ttml10-sdp-us-20130205/","title":"TTML Simple Delivery Profile for Closed Captions (US)","rawDate":"2013-02-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ttml2":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/ttml2/","title":"Timed Text Markup Language 2 (TTML2) (2nd Edition)","rawDate":"2021-03-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150212":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2015/WD-ttml2-20150212/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2015-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160524":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2016/WD-ttml2-20160524/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2016-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161117":{"href":"https://www.w3.org/TR/2016/WD-ttml2-20161117/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2016-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170106":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2017/WD-ttml2-20170106/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2017-01-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170630":{"authors":["Glenn Adams"],"href":"https://www.w3.org/TR/2017/WD-ttml2-20170630/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2017-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180313":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2018/CR-ttml2-20180313/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2018-03-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180628":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2018/CR-ttml2-20180628/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2018-06-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180814":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2018/CR-ttml2-20180814/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2018-08-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181004":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2018/PR-ttml2-20181004/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2018-10-04","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2018/REC-ttml2-20181108/","title":"Timed Text Markup Language 2 (TTML2)","rawDate":"2018-11-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2018/11/ttml2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200128":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2020/CR-ttml2-20200128/","title":"Timed Text Markup Language 2 (TTML2) (2nd Edition)","rawDate":"2020-01-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210309":{"authors":["Glenn Adams","Cyril Concolato"],"href":"https://www.w3.org/TR/2021/CR-ttml2-20210309/","title":"Timed Text Markup Language 2 (TTML2) (2nd Edition)","rawDate":"2021-03-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"hasErrata":"https://www.w3.org/2018/11/ttml2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/ttml2/index.html","repository":"https://github.com/w3c/ttml2","hasErrata":"https://www.w3.org/2018/11/ttml2-errata.html"},"turingtest":{"authors":["Scott Hollier","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/turingtest/","title":"Inaccessibility of CAPTCHA","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"versions":{"20031105":{"status":"WD","rawDate":"2003-11-05","href":"https://www.w3.org/TR/2003/WD-turingtest-20031105/","source":"./data/w3c-specs.txt"},"20051123":{"authors":["Matthew May"],"href":"https://www.w3.org/TR/2005/NOTE-turingtest-20051123/","title":"Inaccessibility of CAPTCHA","rawDate":"2005-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180703":{"authors":["Scott Hollier","Janina Sajka","Michael Cooper"],"href":"https://www.w3.org/TR/2018/WD-turingtest-20180703/","title":"Inaccessibility of CAPTCHA","rawDate":"2018-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190214":{"authors":["Scott Hollier","Janina Sajka","Michael Cooper","Matthew May"],"href":"https://www.w3.org/TR/2019/WD-turingtest-20190214/","title":"Inaccessibility of CAPTCHA","rawDate":"2019-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190524":{"authors":["Scott Hollier","Janina Sajka","Jason White","Michael Cooper","Matthew May"],"href":"https://www.w3.org/TR/2019/WD-turingtest-20190524/","title":"Inaccessibility of CAPTCHA","rawDate":"2019-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Scott Hollier","Janina Sajka","Jason White","Michael Cooper","Matthew May"],"href":"https://www.w3.org/TR/2019/WD-turingtest-20190626/","title":"Inaccessibility of CAPTCHA","rawDate":"2019-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190823":{"authors":["Scott Hollier","Janina Sajka","Jason White","Michael Cooper","Matthew May"],"href":"https://www.w3.org/TR/2019/NOTE-turingtest-20190823/","title":"Inaccessibility of CAPTCHA","rawDate":"2019-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191209":{"authors":["Scott Hollier","Janina Sajka","Jason White","Michael Cooper","Matthew May"],"href":"https://www.w3.org/TR/2019/NOTE-turingtest-20191209/","title":"Inaccessibility of CAPTCHA","rawDate":"2019-12-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Scott Hollier","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/2021/DNOTE-turingtest-20211216/","title":"Inaccessibility of CAPTCHA","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2021-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/captcha-accessibility/","repository":"https://github.com/w3c/apa"},"turtle":{"authors":["Eric Prud'hommeaux","Gavin Carothers"],"href":"https://www.w3.org/TR/turtle/","title":"RDF 1.1 Turtle","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110809":{"status":"WD","rawDate":"2011-08-09","href":"https://www.w3.org/TR/2011/WD-turtle-20110809/","source":"./data/w3c-specs.txt"},"20120710":{"status":"WD","rawDate":"2012-07-10","href":"https://www.w3.org/TR/2012/WD-turtle-20120710/","source":"./data/w3c-specs.txt"},"20130219":{"authors":["Eric Prud'hommeaux","Gavin Carothers"],"href":"https://www.w3.org/TR/2013/CR-turtle-20130219/","title":"Turtle","rawDate":"2013-02-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140109":{"authors":["Eric Prud'hommeaux","Gavin Carothers"],"href":"https://www.w3.org/TR/2014/PR-turtle-20140109/","title":"RDF 1.1 Turtle","rawDate":"2014-01-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140225":{"authors":["Eric Prud'hommeaux","Gavin Carothers"],"href":"https://www.w3.org/TR/2014/REC-turtle-20140225/","title":"RDF 1.1 Turtle","rawDate":"2014-02-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/rdf-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/rdf-turtle/spec/","repository":"https://github.com/w3c/rdf-turtle"},"tvcontrol-api":{"authors":["Steve Morris","Sung Hei Kim","Alexander Futász"],"href":"https://www.w3.org/TR/tvcontrol-api/","title":"TV Control API Specification","rawDate":"2017-05-18","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/tvcontrol-api/","deliveredBy":["https://www.w3.org/2016/tvcontrol/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160915":{"authors":["Sung Hei Kim","Alexander Futász"],"href":"https://www.w3.org/TR/2016/WD-tvcontrol-api-20160915/","title":"TV Control API Specification","rawDate":"2016-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/tvcontrol/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170316":{"authors":["Steve Morris","Sung Hei Kim","Alexander Futász"],"href":"https://www.w3.org/TR/2017/WD-tvcontrol-api-20170316/","title":"TV Control API Specification","rawDate":"2017-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2016/tvcontrol/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170518":{"authors":["Steve Morris","Sung Hei Kim","Alexander Futász"],"href":"https://www.w3.org/TR/2017/NOTE-tvcontrol-api-20170518/","title":"TV Control API Specification","rawDate":"2017-05-18","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2016/tvcontrol/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/w3c/tvcontrol-api"},"typography":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/typography/","title":"Language enablement index","rawDate":"2024-01-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/typography/","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170209":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2017/WD-typography-20170209/","title":"International text layout and typography index","rawDate":"2017-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180828":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2018/WD-typography-20180828/","title":"International text layout and typography index","rawDate":"2018-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190520":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2019/WD-typography-20190520/","title":"International text layout and typography index","rawDate":"2019-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200520":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2020/WD-typography-20200520/","title":"Language enablement index","rawDate":"2020-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2022/DNOTE-typography-20221101/","title":"Language enablement index","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2024/DNOTE-typography-20240125/","title":"Language enablement index","rawDate":"2024-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/typography"},"uclp":{"versions":{"19990120":{"status":"NOTE","rawDate":"1999-01-20","href":"https://www.w3.org/TR/1999/NOTE-uclp-19990120","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-uclp","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-01-20","title":"Universal Commerce Language and Protocol (UCLP)"},"uievents":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/uievents/","title":"UI Events","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20000901":{"authors":["Philippe Le Hégaret","Tom Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2000-09-01","href":"https://www.w3.org/TR/2000/WD-DOM-Level-3-Events-20000901/"},"20010410":{"authors":["Tom Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2001-04-10","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-Events-20010410/"},"20010823":{"authors":["Tom Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2001-08-23","href":"https://www.w3.org/TR/2001/WD-DOM-Level-3-Events-20010823/"},"20020208":{"authors":["Tom Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2002-02-08","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Events-20020208/"},"20020712":{"authors":["Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2002-07-12","href":"https://www.w3.org/TR/2002/WD-DOM-Level-3-Events-20020712"},"20030221":{"authors":["Philippe Le Hégaret","Tim Pixley"],"status":"WD","rawDate":"2003-02-21","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030221"},"20030331":{"authors":["Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331"},"20031107":{"authors":["Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"NOTE","rawDate":"2003-11-07","href":"https://www.w3.org/TR/2003/NOTE-DOM-Level-3-Events-20031107"},"20060413":{"authors":["Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2006-04-13","href":"https://www.w3.org/TR/2006/WD-DOM-Level-3-Events-20060413"},"20071221":{"authors":["Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2007-12-21","href":"https://www.w3.org/TR/2007/WD-DOM-Level-3-Events-20071221"},"20090908":{"authors":["Doug Schepers","Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2009-09-08","href":"https://www.w3.org/TR/2009/WD-DOM-Level-3-Events-20090908"},"20100907":{"authors":["Doug Schepers","Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2010-09-07","href":"https://www.w3.org/TR/2010/WD-DOM-Level-3-Events-20100907"},"20110531":{"authors":["Doug Schepers","Jacob Rossi","Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2011-05-31","href":"https://www.w3.org/TR/2011/WD-DOM-Level-3-Events-20110531/"},"20120614":{"authors":["Travis Leithead","Jacob Rossi","Doug Schepers","Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"title":"Document Object Model (DOM) Level 3 Events Specification","status":"WD","rawDate":"2012-06-14","href":"https://www.w3.org/TR/2012/WD-DOM-Level-3-Events-20120614/"},"20120906":{"authors":["Travis Leithead","Jacob Rossi","Doug Schepers","Björn Höhrmann","Philippe Le Hégaret","Tim Pixley"],"href":"https://www.w3.org/TR/2012/WD-DOM-Level-3-Events-20120906/","title":"Document Object Model (DOM) Level 3 Events Specification","rawDate":"2012-09-06","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"]},"20130725":{"authors":["Travis Leithead","Gary Kacmarcik"],"href":"https://www.w3.org/TR/2013/WD-uievents-20130725/","title":"UI Events","rawDate":"2013-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2013/WD-uievents-20131105/","title":"UI Events","rawDate":"2013-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140612":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2014/WD-uievents-20140612/","title":"UI Events","rawDate":"2014-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"20140925":{"authors":["Gary Kacmarcik","Travis Leithead","Jacob Rossi","Doug Schepers","Björn Höhrmann","Philippe Le Hégaret","Tom Pixley"],"href":"https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-20140925/","title":"Document Object Model (DOM) Level 3 Events Specification","rawDate":"2014-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150319":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-uievents-20150319/","title":"UI Events (formerly DOM Level 3 Events)","rawDate":"2015-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150428":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-uievents-20150428/","title":"UI Events (formerly DOM Level 3 Events)","rawDate":"2015-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-uievents-20151215/","title":"UI Events Specification","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160804":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2016/WD-uievents-20160804/","title":"UI Events","rawDate":"2016-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181108":{"authors":["Gary Kacmarcik","Travis Leithead","Doug Schepers"],"href":"https://www.w3.org/TR/2018/WD-uievents-20181108/","title":"UI Events","rawDate":"2018-11-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190530":{"authors":["Gary Kacmarcik","Travis Leithead","Doug Schepers"],"href":"https://www.w3.org/TR/2019/WD-uievents-20190530/","title":"UI Events","rawDate":"2019-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210916":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-uievents-20210916/","title":"UI Events","rawDate":"2021-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211008":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-uievents-20211008/","title":"UI Events","rawDate":"2021-10-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211015":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-uievents-20211015/","title":"UI Events","rawDate":"2021-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211019":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-uievents-20211019/","title":"UI Events","rawDate":"2021-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211020":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2021/WD-uievents-20211020/","title":"UI Events","rawDate":"2021-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220601":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2022/WD-uievents-20220601/","title":"UI Events","rawDate":"2022-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220629":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2022/WD-uievents-20220629/","title":"UI Events","rawDate":"2022-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220913":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2022/WD-uievents-20220913/","title":"UI Events","rawDate":"2022-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230509":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2023/WD-uievents-20230509/","title":"UI Events","rawDate":"2023-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230627":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2023/WD-uievents-20230627/","title":"UI Events","rawDate":"2023-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230823":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2023/WD-uievents-20230823/","title":"UI Events","rawDate":"2023-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230915":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2023/WD-uievents-20230915/","title":"UI Events","rawDate":"2023-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2023/WD-uievents-20231204/","title":"UI Events","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/uievents/","isRetired":true,"repository":"https://github.com/w3c/uievents"},"uievents-code":{"authors":["Travis Leithead","Gary Kacmarcik"],"href":"https://www.w3.org/TR/uievents-code/","title":"UI Events KeyboardEvent code Values","rawDate":"2023-05-30","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/uievents-code/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140612":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-code-20140612/","title":"DOM Level 3 KeyboardEvent code Values","rawDate":"2014-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150428":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-DOM-Level-3-Events-code-20150428/","title":"DOM Level 3 KeyboardEvent code Values","rawDate":"2015-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-uievents-code-20151215/","title":"UI Events KeyboardEvent code Values","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161024":{"href":"https://www.w3.org/TR/2016/WD-uievents-code-20161024/","title":"UI Events KeyboardEvent code Values","rawDate":"2016-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170601":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2017/CR-uievents-code-20170601/","title":"UI Events KeyboardEvent code Values","rawDate":"2017-06-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Travis Leithead","Gary Kacmarcik"],"href":"https://www.w3.org/TR/2023/CR-uievents-code-20230530/","title":"UI Events KeyboardEvent code Values","rawDate":"2023-05-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/uievents-code"},"uievents-key":{"authors":["Travis Leithead","Gary Kacmarcik"],"href":"https://www.w3.org/TR/uievents-key/","title":"UI Events KeyboardEvent key Values","rawDate":"2023-05-30","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/uievents-key/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140612":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2014/WD-DOM-Level-3-Events-key-20140612/","title":"DOM Level 3 KeyboardEvent key Values","rawDate":"2014-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150427":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-DOM-Level-3-Events-key-20150427/","title":"DOM Level 3 KeyboardEvent key Values","rawDate":"2015-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151215":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2015/WD-uievents-key-20151215/","title":"UI Events KeyboardEvent key Values","rawDate":"2015-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161024":{"href":"https://www.w3.org/TR/2016/WD-uievents-key-20161024/","title":"UI Events KeyboardEvent key Values","rawDate":"2016-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170601":{"authors":["Gary Kacmarcik","Travis Leithead"],"href":"https://www.w3.org/TR/2017/CR-uievents-key-20170601/","title":"UI Events KeyboardEvent key Values","rawDate":"2017-06-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Travis Leithead","Gary Kacmarcik"],"href":"https://www.w3.org/TR/2023/CR-uievents-key-20230530/","title":"UI Events KeyboardEvent key Values","rawDate":"2023-05-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/uievents-key"},"unicode-xml":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/unicode-xml/","title":"Unicode in XML and other Markup Languages","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20020218":{"status":"NOTE","rawDate":"2002-02-18","href":"https://www.w3.org/TR/2002/NOTE-unicode-xml-20020218/","source":"./data/w3c-specs.txt"},"20030613":{"status":"NOTE","rawDate":"2003-06-13","href":"https://www.w3.org/TR/2003/NOTE-unicode-xml-20030613/","source":"./data/w3c-specs.txt"},"20070516":{"status":"NOTE","rawDate":"2007-05-16","href":"https://www.w3.org/TR/2007/NOTE-unicode-xml-20070516/","source":"./data/w3c-specs.txt"},"20130124":{"authors":["Richard Ishida"],"href":"https://www.w3.org/TR/2013/NOTE-unicode-xml-20130124/","title":"Unicode in XML and other Markup Languages","rawDate":"2013-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160503":{"authors":["Martin Dürst"],"href":"https://www.w3.org/TR/2016/NOTE-unicode-xml-20160503/","title":"Unicode in XML and other Markup Languages","rawDate":"2016-05-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170713":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2017/NOTE-unicode-xml-20170713/","title":"Unicode in XML and other Markup Languages","rawDate":"2017-07-13","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2017-07-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/unicode-xml/","isRetired":true,"repository":"https://github.com/w3c/unicode-xml"},"upgrade-insecure-requests":{"authors":["Mike West"],"href":"https://www.w3.org/TR/upgrade-insecure-requests/","title":"Upgrade Insecure Requests","rawDate":"2015-10-08","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webappsec-upgrade-insecure-requests/","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150226":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-upgrade-insecure-requests-20150226/","title":"Upgrade Insecure Requests","rawDate":"2015-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150424":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/WD-upgrade-insecure-requests-20150424/","title":"Upgrade Insecure Requests","rawDate":"2015-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151008":{"authors":["Mike West"],"href":"https://www.w3.org/TR/2015/CR-upgrade-insecure-requests-20151008/","title":"Upgrade Insecure Requests","rawDate":"2015-10-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webappsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webappsec-upgrade-insecure-requests"},"uri-clarification":{"authors":["URI Planning Interest Group"],"href":"https://www.w3.org/TR/uri-clarification/","title":"URIs, URLs, and URNs: Clarifications and Recommendations 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/12/URI/"],"versions":{"20010921":{"authors":["URI Planning Interest Group"],"href":"https://www.w3.org/TR/2001/NOTE-uri-clarification-20010921/","title":"URIs, URLs, and URNs: Clarifications and Recommendations 1.0","rawDate":"2001-09-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/12/URI/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-09-21","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"urispace":{"versions":{"20010215":{"status":"NOTE","rawDate":"2001-02-15","href":"https://www.w3.org/TR/2001/NOTE-urispace-20010215","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/urispace","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-02-15","title":"URISpace"},"url-1":{"authors":["Anne van Kesteren","Sam Ruby"],"href":"https://www.w3.org/TR/url-1/","title":"URL","rawDate":"2016-12-06","status":"NOTE","publisher":"W3C","edDraft":"https://url.spec.whatwg.org/","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120524":{"authors":["Erik Arvidsson","Michael[tm] Smith"],"href":"https://www.w3.org/TR/2012/WD-url-20120524/","title":"URL","rawDate":"2012-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Anne van Kesteren","Sam Ruby"],"href":"https://www.w3.org/TR/2014/WD-url-1-20141209/","title":"URL","rawDate":"2014-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161206":{"authors":["Anne van Kesteren","Sam Ruby"],"href":"https://www.w3.org/TR/2016/NOTE-url-1-20161206/","title":"URL","rawDate":"2016-12-06","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"repository":"https://github.com/whatwg/url"},"url-20120524":{"aliasOf":"url-1-20120524"},"url-20141209":{"aliasOf":"url-1-20141209"},"url-20161206":{"aliasOf":"url-1-20161206"},"urls-in-data":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/urls-in-data/","title":"URLs in Data Primer","rawDate":"2013-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130604":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2013/WD-urls-in-data-20130604/","title":"URLs in Data Primer","rawDate":"2013-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"user-timing":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/user-timing/","title":"User Timing Level 3","rawDate":"2023-11-14","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/user-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110811":{"status":"WD","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/WD-user-timing-20110811/","source":"./data/w3c-specs.txt"},"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-user-timing-20110901/","source":"./data/w3c-specs.txt"},"20120508":{"status":"WD","rawDate":"2012-05-08","href":"https://www.w3.org/TR/2012/WD-user-timing-20120508/","source":"./data/w3c-specs.txt"},"20120726":{"authors":["Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2012/CR-user-timing-20120726/","title":"User Timing","rawDate":"2012-07-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131031":{"authors":["Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2013/PR-user-timing-20131031/","title":"User Timing","rawDate":"2013-10-31","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131212":{"authors":["Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2013/REC-user-timing-20131212/","title":"User Timing","rawDate":"2013-12-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190226":{"authors":["Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/SPSD-user-timing-1-20190226/","title":"User Timing","rawDate":"2019-02-26","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2021/CR-user-timing-20211202/","title":"User Timing","rawDate":"2021-12-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2022/CRD-user-timing-20220803/","title":"User Timing Level 3","rawDate":"2022-08-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230426":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2023/CRD-user-timing-20230426/","title":"User Timing Level 3","rawDate":"2023-04-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231106":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2023/CRD-user-timing-20231106/","title":"User Timing Level 3","rawDate":"2023-11-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231114":{"authors":["Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2023/CRD-user-timing-20231114/","title":"User Timing Level 3","rawDate":"2023-11-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/user-timing"},"user-timing-1":{"aliasOf":"user-timing"},"user-timing-2":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/user-timing-2/","title":"User Timing Level 2","rawDate":"2019-02-26","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/user-timing/","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161101":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2016/WD-user-timing-2-20161101/","title":"User Timing Level 2","rawDate":"2016-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171206":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2017/WD-user-timing-2-20171206/","title":"User Timing Level 2","rawDate":"2017-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171207":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2017/WD-user-timing-2-20171207/","title":"User Timing Level 2","rawDate":"2017-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180222":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-user-timing-2-20180222/","title":"User Timing Level 2","rawDate":"2018-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180402":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-user-timing-2-20180402/","title":"User Timing Level 2","rawDate":"2018-04-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180706":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/WD-user-timing-2-20180706/","title":"User Timing Level 2","rawDate":"2018-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180709":{"authors":["Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2018/CR-user-timing-2-20180709/","title":"User Timing Level 2","rawDate":"2018-07-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190110":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/PR-user-timing-2-20190110/","title":"User Timing Level 2","rawDate":"2019-01-10","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190226":{"authors":["Ilya Grigorik"],"href":"https://www.w3.org/TR/2019/REC-user-timing-2-20190226/","title":"User Timing Level 2","rawDate":"2019-02-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/user-timing"},"user-timing-3":{"authors":["Nicolas Pena Moreno","Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/user-timing-3/","title":"User Timing Level 3","rawDate":"2021-09-13","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/user-timing/","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190305":{"authors":["Ilya Grigorik","Nicolas Pena Moreno"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190305/","title":"User Timing Level 3","rawDate":"2019-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190308":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190308/","title":"User Timing Level 3","rawDate":"2019-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190425":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190425/","title":"User Timing Level 3","rawDate":"2019-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190619":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190619/","title":"User Timing Level 3","rawDate":"2019-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190626":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190626/","title":"User Timing Level 3","rawDate":"2019-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190627":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190627/","title":"User Timing Level 3","rawDate":"2019-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190628":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190628/","title":"User Timing Level 3","rawDate":"2019-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190717":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190717/","title":"User Timing Level 3","rawDate":"2019-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190809":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190809/","title":"User Timing Level 3","rawDate":"2019-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190927":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2019/WD-user-timing-3-20190927/","title":"User Timing Level 3","rawDate":"2019-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200326":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2020/WD-user-timing-3-20200326/","title":"User Timing Level 3","rawDate":"2020-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200421":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2020/WD-user-timing-3-20200421/","title":"User Timing Level 3","rawDate":"2020-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200818":{"authors":["Ilya Grigorik","Nicolas Pena Moreno","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2020/WD-user-timing-3-20200818/","title":"User Timing Level 3","rawDate":"2020-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210308":{"authors":["Nicolas Pena Moreno","Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2021/WD-user-timing-3-20210308/","title":"User Timing Level 3","rawDate":"2021-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210713":{"authors":["Nicolas Pena Moreno","Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2021/WD-user-timing-3-20210713/","title":"User Timing Level 3","rawDate":"2021-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210913":{"authors":["Nicolas Pena Moreno","Ilya Grigorik","Jatinder Mann","Zhiheng Wang","Anderson Quach"],"href":"https://www.w3.org/TR/2021/WD-user-timing-3-20210913/","title":"User Timing Level 3","rawDate":"2021-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webperf/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/user-timing"},"using-aria":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/using-aria/","title":"Using ARIA","rawDate":"2018-09-27","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/using-aria/","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130214":{"authors":["Steve Faulkner"],"href":"https://www.w3.org/TR/2013/WD-aria-in-html-20130214/","title":"Using WAI-ARIA in HTML","rawDate":"2013-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131003":{"authors":["Steve Faulkner","Hans Hillen","Gez Lemon","David MacDonald"],"href":"https://www.w3.org/TR/2013/WD-aria-in-html-20131003/","title":"Using WAI-ARIA in HTML","rawDate":"2013-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140626":{"authors":["Steve Faulkner","Hans Hillen","David MacDonald"],"href":"https://www.w3.org/TR/2014/WD-aria-in-html-20140626/","title":"Using WAI-ARIA in HTML","rawDate":"2014-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150514":{"authors":["Steve Faulkner","Hans Hillen","David MacDonald"],"href":"https://www.w3.org/TR/2015/WD-aria-in-html-20150514/","title":"Notes on Using ARIA in HTML","rawDate":"2015-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150521":{"authors":["Steve Faulkner","Hans Hillen","David MacDonald"],"href":"https://www.w3.org/TR/2015/WD-aria-in-html-20150521/","title":"Notes on Using ARIA in HTML","rawDate":"2015-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170214":{"authors":["Steve Faulkner","David MacDonald","Hans Hillen"],"href":"https://www.w3.org/TR/2017/WD-aria-in-html-20170214/","title":"Notes on Using ARIA in HTML","rawDate":"2017-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170417":{"authors":["Steve Faulkner","Hans Hillen","David MacDonald"],"href":"https://www.w3.org/TR/2017/WD-aria-in-html-20170417/","title":"Using ARIA","rawDate":"2017-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Steve Faulkner","Hans Hillen","David MacDonald"],"href":"https://www.w3.org/TR/2017/WD-aria-in-html-20170418/","title":"Using ARIA","rawDate":"2017-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2017/WD-using-aria-20170504/","title":"Using ARIA","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171030":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2017/WD-using-aria-20171030/","title":"Using ARIA","rawDate":"2017-10-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171123":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2017/WD-using-aria-20171123/","title":"Using ARIA","rawDate":"2017-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180115":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2018/WD-using-aria-20180115/","title":"Using ARIA","rawDate":"2018-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180920":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2018/WD-using-aria-20180920/","title":"Using ARIA","rawDate":"2018-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180924":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2018/WD-using-aria-20180924/","title":"Using ARIA","rawDate":"2018-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180927":{"authors":["Steve Faulkner","David MacDonald"],"href":"https://www.w3.org/TR/2018/WD-using-aria-20180927/","title":"Using ARIA","rawDate":"2018-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/using-aria"},"vbi-reqs":{"authors":["Kenneth Rehor"],"href":"https://www.w3.org/TR/vbi-reqs/","title":"Voice Browser Interoperation: Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20020808":{"authors":["Kenneth Rehor"],"href":"https://www.w3.org/TR/2002/WD-vbi-reqs-20020808/","title":"Voice Browser Interoperation: Requirements","rawDate":"2002-08-08","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-08-08","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"vc-bitstring-status-list":{"authors":["Manu Sporny","Dave Longley","Michael Prorock","Mahmoud Alkhraishi"],"href":"https://www.w3.org/TR/vc-bitstring-status-list/","title":"Bitstring Status List v1.0","rawDate":"2024-02-04","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/vc-bitstring-status-list/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230427":{"authors":["Manu Sporny","Dave Longley","Orie Steele","Mahmoud Alkhraishi","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-status-list-20230427/","title":"Verifiable Credentials Status List v2021","rawDate":"2023-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Manu Sporny","Dave Longley","Orie Steele","Mahmoud Alkhraishi","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-bitstring-status-list-20231123/","title":"Bitstring Status List v1.0","rawDate":"2023-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240107":{"authors":["Manu Sporny","Dave Longley","Michael Prorock","Mahmoud Alkhraishi"],"href":"https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240107/","title":"Bitstring Status List v1.0","rawDate":"2024-01-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240204":{"authors":["Manu Sporny","Dave Longley","Michael Prorock","Mahmoud Alkhraishi"],"href":"https://www.w3.org/TR/2024/WD-vc-bitstring-status-list-20240204/","title":"Bitstring Status List v1.0","rawDate":"2024-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-bitstring-status-list"},"vc-data-integrity":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/vc-data-integrity/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-12-10","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/vc-data-integrity/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221110":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2022/WD-vc-data-integrity-20221110/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2022-11-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230128":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230128/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230211":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230211/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230225":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230225/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230226":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230226/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230304":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230304/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230305":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230305/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-03-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230317/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230408":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230408/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230420":{"authors":["Manu Sporny","Dave Longley","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230420/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230428":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230428/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230515/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230528":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230528/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230630":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230630/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230704":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230704/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-07-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230705/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230709":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230709/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230713":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230713/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230731":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230731/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230805":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230805/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230806":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230806/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230810/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230812":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230812/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230818":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230818/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230819":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230819/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230824":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230824/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230826/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230831/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230902/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230918":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230918/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230925":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20230925/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-09-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20231012/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20231013/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231017":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20231017/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231021":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-data-integrity-20231021/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231121":{"authors":["Manu Sporny","Dave Longley","Dmitri Zagidulin","Sebastian Crane","Greg Bernstein"],"href":"https://www.w3.org/TR/2023/CR-vc-data-integrity-20231121/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-11-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231210":{"authors":["Manu Sporny","Dave Longley","Greg Bernstein","Dmitri Zagidulin","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/CRD-vc-data-integrity-20231210/","title":"Verifiable Credential Data Integrity 1.0","rawDate":"2023-12-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-data-integrity"},"vc-data-model":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel","Kyle Den Hartog"],"href":"https://www.w3.org/TR/vc-data-model/","title":"Verifiable Credentials Data Model v1.1","rawDate":"2022-03-03","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/vc-data-model/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170803":{"authors":["Daniel Burnett","Manu Sporny","Dave Longley","Gregg Kellogg"],"href":"https://www.w3.org/TR/2017/WD-verifiable-claims-data-model-20170803/","title":"Verifiable Claims Data Model and Representations","rawDate":"2017-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190208":{"authors":["Manu Sporny","Daniel Burnett","Dave Longley","Gregg Kellogg"],"href":"https://www.w3.org/TR/2019/WD-verifiable-claims-data-model-20190208/","title":"Verifiable Credentials Data Model 1.0","rawDate":"2019-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190328":{"authors":["Manu Sporny","Grant Noble","Daniel Burnett","Dave Longley"],"href":"https://www.w3.org/TR/2019/CR-verifiable-claims-data-model-20190328/","title":"Verifiable Credentials Data Model 1.0","rawDate":"2019-03-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190725":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel"],"href":"https://www.w3.org/TR/2019/CR-vc-data-model-20190725/","title":"Verifiable Credentials Data Model 1.0","rawDate":"2019-07-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190905":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel"],"href":"https://www.w3.org/TR/2019/PR-vc-data-model-20190905/","title":"Verifiable Credentials Data Model 1.0","rawDate":"2019-09-05","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191119":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel"],"href":"https://www.w3.org/TR/2019/REC-vc-data-model-20191119/","title":"Verifiable Credentials Data Model 1.0","rawDate":"2019-11-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211109":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel","Kyle Den Hartog"],"href":"https://www.w3.org/TR/2021/REC-vc-data-model-20211109/","title":"Verifiable Credentials Data Model v1.1","rawDate":"2021-11-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220303":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel","Kyle Den Hartog"],"href":"https://www.w3.org/TR/2022/REC-vc-data-model-20220303/","title":"Verifiable Credentials Data Model v1.1","rawDate":"2022-03-03","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-data-model"},"vc-data-model-2.0":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/vc-data-model-2.0/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-02-07","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/vc-data-model/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220811":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel","Kyle Den Hartog","Orie Steele","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220811/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220824":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel","Kyle Den Hartog","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220824/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Manu Sporny","Grant Noble","Dave Longley","Daniel Burnett","Brent Zundel","Kyle Den Hartog","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220903/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220910":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220910/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220916":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20220916/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221006/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221023":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221023/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221027/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221028":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221028/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221105":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221105/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221121":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221121/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-11-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221130":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221130/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221211":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221211/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221218":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2022/WD-vc-data-model-2.0-20221218/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2022-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230119":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230119/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230128":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230128/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230212":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230212/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-02-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230222/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230304":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230304/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-03-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230306":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230306/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230307/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230315":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230315/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230316":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230316/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230323":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230323/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230403/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230410":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230410/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230414":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230414/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230419/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230422":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230422/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230424":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230424/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230427/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230504":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230504/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230507":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230507/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-05-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230509":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230509/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230510/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230513":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230513/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230520":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230520/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230611":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230611/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230612":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230612/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230617":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230617/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230627":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230627/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230630":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230630/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230702":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230702/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230704":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230704/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230708/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230709":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230709/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230711":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230711/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230712/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230714":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230714/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230718":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230718/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230719/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230723":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230723/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230725":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230725/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230727/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230728":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230728/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230730":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230730/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230802":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230802/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230803":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230803/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230809":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230809/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230811":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230811/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230814":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230814/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230815":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230815/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230820":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230820/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230822":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230822/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230823":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230823/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230824":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230824/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230827":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230827/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230829":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230829/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230831":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230831/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230909":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230909/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230910":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230910/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230911":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230911/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230913":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230913/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230914":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230914/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230926":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230926/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230929":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20230929/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231012/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231013/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231016/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231021":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231021/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231031/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231101/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231104":{"authors":["Manu Sporny","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231104/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231202":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231202/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231206":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Orie Steele","Michael Jones","Gabe Cohen","Oliver Terbu"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231206/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231215":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231215/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231216":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231216/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231217":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231217/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231226":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231226/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231227":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-data-model-2.0-20231227/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2023-12-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240106":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240106/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-01-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240110":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240110/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240112":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240112/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240113":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-data-model-2.0-20240113/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240205":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240205/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-02-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240207":{"authors":["Manu Sporny","Ted Thibodeau Jr","Ivan Herman","Michael Jones","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/CRD-vc-data-model-2.0-20240207/","title":"Verifiable Credentials Data Model v2.0","rawDate":"2024-02-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-data-model"},"vc-di-bbs":{"href":"https://www.w3.org/TR/vc-di-bbs/","title":"BBS Cryptosuite v2023","rawDate":"2024-02-02","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/vc-di-bbs/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230518":{"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20230518/","title":"BBS Cryptosuite v2023","rawDate":"2023-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230524":{"authors":["Orie Steele"],"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20230524/","title":"BBS Cryptosuite v2023","rawDate":"2023-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Orie Steele"],"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20231016/","title":"BBS Cryptosuite v2023","rawDate":"2023-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231025":{"authors":["Orie Steele","Greg Bernstein","Manu Sporny"],"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20231025/","title":"BBS Cryptosuite v2023","rawDate":"2023-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231104":{"authors":["Greg Bernstein","Manu Sporny"],"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20231104/","title":"BBS Cryptosuite v2023","rawDate":"2023-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231214":{"authors":["Greg Bernstein","Manu Sporny"],"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20231214/","title":"BBS Cryptosuite v2023","rawDate":"2023-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231218":{"authors":["Greg Bernstein","Manu Sporny"],"href":"https://www.w3.org/TR/2023/WD-vc-di-bbs-20231218/","title":"BBS Cryptosuite v2023","rawDate":"2023-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240202":{"authors":["Greg Bernstein","Manu Sporny"],"href":"https://www.w3.org/TR/2024/WD-vc-di-bbs-20240202/","title":"BBS Cryptosuite v2023","rawDate":"2024-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-di-bbs","authors":["Greg Bernstein","Manu Sporny"]},"vc-di-ecdsa":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/vc-di-ecdsa/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2024-02-06","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/vc-di-ecdsa/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230418":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230418/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230420":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230420/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230518":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230518/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230603":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230603/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230616":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230616/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230626/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230706/","title":"ECDSA Cryptosuite v2019","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230709":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230709/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230713":{"authors":["Manu Sporny","Martin Reed"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230713/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230723":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230723/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230806":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230806/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230810/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230817/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230819":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230819/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-08-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230822":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230822/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230826/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230902/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20230928/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231002":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231002/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231006/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231012/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231013/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231017":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231017/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231021":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231021/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-ecdsa-20231101/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231121":{"authors":["Manu Sporny","Martin Reed","Sebastian Crane","Greg Bernstein"],"href":"https://www.w3.org/TR/2023/CR-vc-di-ecdsa-20231121/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-11-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231210":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/CRD-vc-di-ecdsa-20231210/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-12-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231227":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/CRD-vc-di-ecdsa-20231227/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2023-12-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Manu Sporny","Martin Reed","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2024/CRD-vc-di-ecdsa-20240206/","title":"Data Integrity ECDSA Cryptosuites v1.0","rawDate":"2024-02-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-di-ecdsa"},"vc-di-eddsa":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/vc-di-eddsa/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-12-27","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/vc-di-eddsa/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230418":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230418/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230420":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230420/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230421":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230421/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230503":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230503/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230515/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230518":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230518/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230603":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230603/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230706/","title":"EdDSA Cryptosuite v2022","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230709":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230709/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230713":{"authors":["Manu Sporny","Dmitri Zagidulin"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230713/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230714":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230714/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230810/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230817/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230826/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230902":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20230902/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231012/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231013/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231017":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231017/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231021":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231021/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/WD-vc-di-eddsa-20231101/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231121":{"authors":["Manu Sporny","Dmitri Zagidulin","Sebastian Crane","Greg Bernstein"],"href":"https://www.w3.org/TR/2023/CR-vc-di-eddsa-20231121/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-11-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231210":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/CRD-vc-di-eddsa-20231210/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-12-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231227":{"authors":["Manu Sporny","Dmitri Zagidulin","Greg Bernstein","Sebastian Crane"],"href":"https://www.w3.org/TR/2023/CRD-vc-di-eddsa-20231227/","title":"Data Integrity EdDSA Cryptosuites v1.0","rawDate":"2023-12-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-di-eddsa"},"vc-imp-guide":{"authors":["Andrei Sambra"],"href":"https://www.w3.org/TR/vc-imp-guide/","title":"Verifiable Credentials Implementation Guidelines 1.0","rawDate":"2019-09-24","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/vc-imp-guide/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190924":{"authors":["Andrei Sambra"],"href":"https://www.w3.org/TR/2019/NOTE-vc-imp-guide-20190924/","title":"Verifiable Credentials Implementation Guidelines 1.0","rawDate":"2019-09-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-imp-guide"},"vc-jose-cose":{"authors":["Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/vc-jose-cose/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2024-02-07","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/vc-jose-cose/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230427":{"authors":["Michael Jones","Orie Steele","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230427/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230501":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230501/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230515/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230525":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230525/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230601":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230601/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230607":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230607/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230614/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230615/","title":"Securing Verifiable Credentials using JSON Web Tokens","rawDate":"2023-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230629/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230630":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230630/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230710":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jwt-20230710/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Michael Jones","Orie Steele","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230720/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230721/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230811":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230811/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230815":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230815/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230816":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230816/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230823":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230823/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230824":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230824/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230908":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230908/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230912":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230912/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230913":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230913/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230914":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230914/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230921":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230921/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230927":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20230927/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231006":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231006/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231010":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231010/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231014":{"authors":["Orie Steele","Michael Jones","Michael Prorock"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231014/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231016":{"authors":["Orie Steele","Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231016/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231024":{"authors":["Orie Steele","Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231024/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231027":{"authors":["Orie Steele","Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231027/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231117":{"authors":["Orie Steele","Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231117/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Orie Steele","Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231204/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231215":{"authors":["Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231215/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231221":{"authors":["Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2023/WD-vc-jose-cose-20231221/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2023-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240101":{"authors":["Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-jose-cose-20240101/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2024-01-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240126":{"authors":["Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-jose-cose-20240126/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2024-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240207":{"authors":["Michael Jones","Michael Prorock","Gabe Cohen"],"href":"https://www.w3.org/TR/2024/WD-vc-jose-cose-20240207/","title":"Securing Verifiable Credentials using JOSE and COSE","rawDate":"2024-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-jose-cose"},"vc-json-schema":{"authors":["Gabe Cohen","Michael Prorock","Andres Uribe"],"href":"https://www.w3.org/TR/vc-json-schema/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-12-18","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/vc-json-schema/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230523":{"authors":["Orie Steele","Gabe Cohen","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230523/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230524":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230524/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230530/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230612":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230612/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230613":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230613/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230706/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230712/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230717":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230717/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230725":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230725/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-07-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230726/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230731":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230731/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-07-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230801":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230801/","title":"Verifiable Credentials JSON Schema Specification 2023","rawDate":"2023-08-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230802":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230802/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230803":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230803/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230807/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230809":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230809/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230814":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230814/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230815":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230815/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230817/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230821/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230828":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230828/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230829":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230829/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230903":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230903/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230907":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230907/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230912":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230912/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230915":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230915/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230926":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20230926/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231002":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20231002/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231014":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20231014/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231022":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20231022/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Gabe Cohen","Orie Steele","Andres Uribe"],"href":"https://www.w3.org/TR/2023/WD-vc-json-schema-20231031/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231121":{"authors":["Orie Steele","Gabe Cohen","Andres Uribe"],"href":"https://www.w3.org/TR/2023/CR-vc-json-schema-20231121/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-11-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231218":{"authors":["Gabe Cohen","Michael Prorock","Andres Uribe"],"href":"https://www.w3.org/TR/2023/CRD-vc-json-schema-20231218/","title":"Verifiable Credentials JSON Schema Specification","rawDate":"2023-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-json-schema"},"vc-jws-2020":{"authors":["Orie Steele","Michael Jones"],"href":"https://www.w3.org/TR/vc-jws-2020/","title":"JSON Web Signatures for Data Integrity Proofs","rawDate":"2023-06-29","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/vc-jws-2020/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20221208":{"authors":["Orie Steele","Michael Jones"],"href":"https://www.w3.org/TR/2022/WD-vc-jws-2020-20221208/","title":"JSON Web Signature 2020","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230111":{"authors":["Orie Steele","Michael Jones"],"href":"https://www.w3.org/TR/2023/WD-vc-jws-2020-20230111/","title":"JSON Web Signature 2020","rawDate":"2023-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230127":{"authors":["Orie Steele","Michael Jones"],"href":"https://www.w3.org/TR/2023/WD-vc-jws-2020-20230127/","title":"JSON Web Signatures for Data Integrity Proofs","rawDate":"2023-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Orie Steele","Michael Jones"],"href":"https://www.w3.org/TR/2023/WD-vc-jws-2020-20230629/","title":"JSON Web Signatures for Data Integrity Proofs","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-jws-2020"},"vc-jwt":{"aliasOf":"vc-jose-cose"},"vc-specs-dir":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/vc-specs-dir/","title":"VC Specifications Directory","rawDate":"2024-02-01","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/vc-specs-dir/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20240201":{"authors":["Manu Sporny"],"href":"https://www.w3.org/TR/2024/NOTE-vc-specs-dir-20240201/","title":"VC Specifications Directory","rawDate":"2024-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-specs-dir"},"vc-status-list":{"aliasOf":"vc-bitstring-status-list"},"vc-use-cases":{"authors":["Shane McCarron","Joe Andrieu","Matt Stone","Tzviya Siegman","Gregg Kellogg","Ted Thibodeau Jr"],"href":"https://www.w3.org/TR/vc-use-cases/","title":"Verifiable Credentials Use Cases","rawDate":"2019-09-24","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/vc-use-cases/","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170608":{"authors":["Shane McCarron","Daniel Burnett","Gregg Kellogg","Brian Sletten","Manu Sporny"],"href":"https://www.w3.org/TR/2017/NOTE-verifiable-claims-use-cases-20170608/","title":"Verifiable Claims Use Cases","rawDate":"2017-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190924":{"authors":["Shane McCarron","Joe Andrieu","Matt Stone","Tzviya Siegman","Gregg Kellogg","Ted Thibodeau Jr"],"href":"https://www.w3.org/TR/2019/NOTE-vc-use-cases-20190924/","title":"Verifiable Credentials Use Cases","rawDate":"2019-09-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/vc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vc-use-cases"},"vcard-rdf":{"authors":["Renato Iannella","James McKinney"],"href":"https://www.w3.org/TR/vcard-rdf/","title":"vCard Ontology - for describing People and Organizations","rawDate":"2014-05-22","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010222":{"status":"NOTE","rawDate":"2001-02-22","href":"https://www.w3.org/TR/2001/NOTE-vcard-rdf-20010222","source":"./data/w3c-specs.txt"},"20130502":{"authors":["Renato Iannella","James McKinney"],"href":"https://www.w3.org/TR/2013/WD-vcard-rdf-20130502/","title":"vCard Ontology","rawDate":"2013-05-02","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130924":{"authors":["Renato Iannella","James McKinney"],"href":"https://www.w3.org/TR/2013/WD-vcard-rdf-20130924/","title":"vCard Ontology","rawDate":"2013-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/interest/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140522":{"authors":["Renato Iannella","James McKinney"],"href":"https://www.w3.org/TR/2014/NOTE-vcard-rdf-20140522/","title":"vCard Ontology - for describing People and Organizations","rawDate":"2014-05-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/interest/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/2001/sw/interest/"]},"vehicle-data":{"authors":["Wonsuk Lee","Qing An","Adam Crofts","Kevin Gavigan","Justin(JongSeon) Park","Kevron Rees"],"href":"https://www.w3.org/TR/vehicle-data/","title":"Vehicle Data","rawDate":"2017-10-12","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/automotive/vehicle_data/data_spec.html","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150616":{"authors":["WonSuk Lee","Qing An","Adam Crofts","Kevin Gavigan","Justin(JongSeon) Park","Kevron Rees"],"href":"https://www.w3.org/TR/2015/WD-vehicle-data-20150616/","title":"Vehicle Data","rawDate":"2015-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/automotive/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160119":{"authors":["WonSuk Lee","Qing An","Adam Crofts","Kevin Gavigan","Justin(JongSeon) Park","Kevron Rees"],"href":"https://www.w3.org/TR/2016/WD-vehicle-data-20160119/","title":"Vehicle Data","rawDate":"2016-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/auto/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171012":{"authors":["Wonsuk Lee","Qing An","Adam Crofts","Kevin Gavigan","Justin(JongSeon) Park","Kevron Rees"],"href":"https://www.w3.org/TR/2017/NOTE-vehicle-data-20171012/","title":"Vehicle Data","rawDate":"2017-10-12","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/automotive","isRetired":true},"vehicle-information-api":{"authors":["Powell Kinney","Shinjiro Urata","Mike Aro"],"href":"https://www.w3.org/TR/vehicle-information-api/","title":"Vehicle Information API Specification","rawDate":"2018-06-26","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/automotive/vehicle_information_api/vehicle_information_api_specification.html","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150616":{"authors":["WonSuk Lee","Qing An","Adam Crofts","Kevin Gavigan","Justin(JongSeon) Park","Kevron Rees"],"href":"https://www.w3.org/TR/2015/WD-vehicle-information-api-20150616/","title":"Vehicle Information Access API","rawDate":"2015-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/automotive/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160119":{"authors":["WonSuk Lee","Qing An","Adam Crofts","Kevin Gavigan","Justin(JongSeon) Park","Kevron Rees"],"href":"https://www.w3.org/TR/2016/WD-vehicle-information-api-20160119/","title":"Vehicle Information Access API","rawDate":"2016-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/auto/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170605":{"authors":["Powell Kinney","Shinjiro Urata","Mike Aro"],"href":"https://www.w3.org/TR/2017/WD-vehicle-information-api-20170605/","title":"Vehicle Information API Specification","rawDate":"2017-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/auto/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170621":{"authors":["Powell Kinney","Shinjiro Urata","Mike Aro"],"href":"https://www.w3.org/TR/2017/WD-vehicle-information-api-20170621/","title":"Vehicle Information API Specification","rawDate":"2017-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/auto/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180626":{"authors":["Powell Kinney","Shinjiro Urata","Mike Aro"],"href":"https://www.w3.org/TR/2018/NOTE-vehicle-information-api-20180626/","title":"Vehicle Information API Specification","rawDate":"2018-06-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/automotive","isRetired":true},"vehicle-information-service":{"authors":["Kevin Gavigan","Adam Crofts","Wonsuk Lee","Powell Kinney","Ted Guild"],"href":"https://www.w3.org/TR/vehicle-information-service/","title":"Vehicle Information Service Specification","rawDate":"2022-03-29","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/automotive/vehicle_data/vehicle_information_service.html","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161020":{"authors":["Kevin Gavigan","Adam Crofts","WonSuk Lee","Powell Kinney"],"href":"https://www.w3.org/TR/2016/WD-vehicle-information-service-20161020/","title":"Vehicle Signal Server Specification","rawDate":"2016-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/auto/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180213":{"authors":["Kevin Gavigan","Adam Crofts","Wonsuk Lee","Powell Kinney"],"href":"https://www.w3.org/TR/2018/CR-vehicle-information-service-20180213/","title":"Vehicle Information Service Specification","rawDate":"2018-02-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220329":{"authors":["Kevin Gavigan","Adam Crofts","Wonsuk Lee","Powell Kinney","Ted Guild"],"href":"https://www.w3.org/TR/2022/DISC-vehicle-information-service-20220329/","title":"Vehicle Information Service Specification","rawDate":"2022-03-29","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/automotive","isRetired":true},"verifiable-claims-data-model":{"aliasOf":"vc-data-model"},"verifiable-claims-use-cases":{"aliasOf":"vc-use-cases"},"vibration":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/vibration/","title":"Vibration API (Second Edition)","rawDate":"2016-10-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111117":{"status":"WD","rawDate":"2011-11-17","href":"https://www.w3.org/TR/2011/WD-vibration-20111117/","source":"./data/w3c-specs.txt"},"20120202":{"status":"WD","rawDate":"2012-02-02","href":"https://www.w3.org/TR/2012/WD-vibration-20120202/","source":"./data/w3c-specs.txt"},"20120508":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2012/CR-vibration-20120508/","title":"Vibration API","rawDate":"2012-05-08","status":"CR","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130523":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2013/WD-vibration-20130523/","title":"Vibration API","rawDate":"2013-05-23","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130723":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2013/CR-vibration-20130723/","title":"Vibration API","rawDate":"2013-07-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2014/WD-vibration-20140211/","title":"Vibration API","rawDate":"2014-02-11","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140619":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2014/WD-vibration-20140619/","title":"Vibration API","rawDate":"2014-06-19","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140909":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2014/CR-vibration-20140909/","title":"Vibration API","rawDate":"2014-09-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141209":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2014/PR-vibration-20141209/","title":"Vibration API","rawDate":"2014-12-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150210":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2015/REC-vibration-20150210/","title":"Vibration API","rawDate":"2015-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160818":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/PER-vibration-20160818/","title":"Vibration API","rawDate":"2016-08-18","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161018":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2016/REC-vibration-20161018/","title":"Vibration API (Second Edition)","rawDate":"2016-10-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"hasErrata":"https://www.w3.org/2009/dap/vibration-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/vibration/","hasErrata":"https://www.w3.org/2009/dap/vibration-errata.html","repository":"https://github.com/w3c/vibration"},"view-mode":{"authors":["Robin Berjon","Marcos Caceres"],"href":"https://www.w3.org/TR/view-mode/","title":"The 'view-mode' Media Feature","rawDate":"2018-10-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets-vmmf/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091006":{"status":"WD","rawDate":"2009-10-06","href":"https://www.w3.org/TR/2009/WD-widgets-vmmf-20091006/","source":"./data/w3c-specs.txt"},"20100420":{"status":"WD","rawDate":"2010-04-20","href":"https://www.w3.org/TR/2010/WD-view-mode-20100420/","source":"./data/w3c-specs.txt"},"20100624":{"status":"CR","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/CR-view-mode-20100624/","source":"./data/w3c-specs.txt"},"20110811":{"status":"PR","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/PR-view-mode-20110811/","source":"./data/w3c-specs.txt"},"20120619":{"authors":["Robin Berjon","Marcos Caceres"],"href":"https://www.w3.org/TR/2012/REC-view-mode-20120619/","title":"The 'view-mode' Media Feature","rawDate":"2012-06-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets-vmmf/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Robin Berjon","Marcos Caceres"],"href":"https://www.w3.org/TR/2018/OBSL-view-mode-20181011/","title":"The 'view-mode' Media Feature","rawDate":"2018-10-11","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"virtual-keyboard":{"authors":["Anupam Snigdha"],"href":"https://www.w3.org/TR/virtual-keyboard/","title":"VirtualKeyboard API","rawDate":"2022-05-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/virtual-keyboard/","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210824":{"authors":["Anupam Snigdha"],"href":"https://www.w3.org/TR/2021/WD-virtual-keyboard-20210824/","title":"VirtualKeyboard API","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Anupam Snigdha","Grisha Lyukshin"],"href":"https://www.w3.org/TR/2021/WD-virtual-keyboard-20210928/","title":"VirtualKeyboard API","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220505":{"authors":["Anupam Snigdha"],"href":"https://www.w3.org/TR/2022/WD-virtual-keyboard-20220505/","title":"VirtualKeyboard API","rawDate":"2022-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webediting/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/virtual-keyboard"},"viss2-core":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/viss2-core/","title":"VISS version 2 - Core","rawDate":"2023-11-14","status":"WD","publisher":"W3C","edDraft":"https://github.com/w3c/automotive/blob/gh-pages/spec/VISSv2_Core.html","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210729":{"authors":["Ulf Bjorkengren","Isaac Agudo"],"href":"https://www.w3.org/TR/2021/WD-viss2-core-20210729/","title":"VISS version 2 - Core","rawDate":"2021-07-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220308":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-core-20220308/","title":"VISS version 2 - Core","rawDate":"2022-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220503":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-core-20220503/","title":"VISS version 2 - Core","rawDate":"2022-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-core-20220816/","title":"VISS version 2 - Core","rawDate":"2022-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-core-20220928/","title":"VISS version 2 - Core","rawDate":"2022-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221129":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-core-20221129/","title":"VISS version 2 - Core","rawDate":"2022-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230117":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-core-20230117/","title":"VISS version 2 - Core","rawDate":"2023-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230331":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-core-20230331/","title":"VISS version 2 - Core","rawDate":"2023-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230418":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-core-20230418/","title":"VISS version 2 - Core","rawDate":"2023-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230908":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-core-20230908/","title":"VISS version 2 - Core","rawDate":"2023-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230927":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-core-20230927/","title":"VISS version 2 - Core","rawDate":"2023-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231114":{"authors":["Ulf Bjorkengren","Isaac Agudo","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-core-20231114/","title":"VISS version 2 - Core","rawDate":"2023-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/automotive"},"viss2-transport":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/viss2-transport/","title":"VISS version 2-Transport","rawDate":"2023-11-14","status":"WD","publisher":"W3C","edDraft":"https://github.com/w3c/automotive/blob/gh-pages/spec/VISSv2_Transport.html","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210729":{"authors":["Ulf Bjorkengren","Patrick Lünnemann"],"href":"https://www.w3.org/TR/2021/WD-viss2-transport-20210729/","title":"VISS version 2-Transport","rawDate":"2021-07-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220311":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-transport-20220311/","title":"VISS version 2-Transport","rawDate":"2022-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220503":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-transport-20220503/","title":"VISS version 2-Transport","rawDate":"2022-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-transport-20220816/","title":"VISS version 2-Transport","rawDate":"2022-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-transport-20220928/","title":"VISS version 2-Transport","rawDate":"2022-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221129":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2022/WD-viss2-transport-20221129/","title":"VISS version 2-Transport","rawDate":"2022-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230117":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-transport-20230117/","title":"VISS version 2-Transport","rawDate":"2023-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-transport-20230321/","title":"VISS version 2-Transport","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230331":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-transport-20230331/","title":"VISS version 2-Transport","rawDate":"2023-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230418":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-transport-20230418/","title":"VISS version 2-Transport","rawDate":"2023-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230908":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-transport-20230908/","title":"VISS version 2-Transport","rawDate":"2023-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231114":{"authors":["Ulf Bjorkengren","Wonsuk Lee"],"href":"https://www.w3.org/TR/2023/WD-viss2-transport-20231114/","title":"VISS version 2-Transport","rawDate":"2023-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/automotive"},"visual-marks":{"versions":{"20010221":{"status":"NOTE","rawDate":"2001-02-21","href":"https://www.w3.org/TR/2001/NOTE-visual-marks-20010221/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/visual-marks/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-02-21","title":"Clear, Secure, and Portable Visual Marks for the Cyber World"},"vocab-adms":{"authors":["Phil Archer","Gofran Shukair"],"href":"https://www.w3.org/TR/vocab-adms/","title":"Asset Description Metadata Schema (ADMS)","rawDate":"2013-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130528":{"authors":["Phil Archer","Gofran Shukair"],"href":"https://www.w3.org/TR/2013/NOTE-vocab-adms-20130528/","title":"Asset Description Metadata Schema (ADMS)","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130801":{"authors":["Phil Archer","Gofran Shukair"],"href":"https://www.w3.org/TR/2013/NOTE-vocab-adms-20130801/","title":"Asset Description Metadata Schema (ADMS)","rawDate":"2013-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"vocab-data-cube":{"authors":["Richard Cyganiak","Dave Reynolds"],"href":"https://www.w3.org/TR/vocab-data-cube/","title":"The RDF Data Cube Vocabulary","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120405":{"status":"WD","rawDate":"2012-04-05","href":"https://www.w3.org/TR/2012/WD-vocab-data-cube-20120405/","source":"./data/w3c-specs.txt"},"20130312":{"authors":["Richard Cyganiak","Dave Reynolds"],"href":"https://www.w3.org/TR/2013/WD-vocab-data-cube-20130312/","title":"The RDF Data Cube Vocabulary","rawDate":"2013-03-12","status":"LCWD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["Richard Cyganiak","Dave Reynolds"],"href":"https://www.w3.org/TR/2013/CR-vocab-data-cube-20130625/","title":"The RDF Data Cube Vocabulary","rawDate":"2013-06-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Richard Cyganiak","Dave Reynolds"],"href":"https://www.w3.org/TR/2013/PR-vocab-data-cube-20131217/","title":"The RDF Data Cube Vocabulary","rawDate":"2013-12-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Richard Cyganiak","Dave Reynolds"],"href":"https://www.w3.org/TR/2014/REC-vocab-data-cube-20140116/","title":"The RDF Data Cube Vocabulary","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"vocab-data-cube-use-cases":{"authors":["Benedikt Kaempgen","Richard Cyganiak"],"href":"https://www.w3.org/TR/vocab-data-cube-use-cases/","title":"Use Cases and Lessons for the Data Cube Vocabulary","rawDate":"2013-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130801":{"authors":["Benedikt Kaempgen","Richard Cyganiak"],"href":"https://www.w3.org/TR/2013/NOTE-vocab-data-cube-use-cases-20130801/","title":"Use Cases and Lessons for the Data Cube Vocabulary","rawDate":"2013-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"vocab-dcat":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/vocab-dcat/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2020-02-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120405":{"status":"WD","rawDate":"2012-04-05","href":"https://www.w3.org/TR/2012/WD-vocab-dcat-20120405/","source":"./data/w3c-specs.txt"},"20130312":{"authors":["Fadi Maali","John Erickson","Phil Archer"],"href":"https://www.w3.org/TR/2013/WD-vocab-dcat-20130312/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2013-03-12","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130801":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/2013/WD-vocab-dcat-20130801/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2013-08-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/2013/CR-vocab-dcat-20131105/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2013-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/2013/PR-vocab-dcat-20131217/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2013-12-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/2014/REC-vocab-dcat-20140116/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200204":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/2020/SPSD-vocab-dcat-20200204/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2020-02-04","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true,"obsoletedBy":["vocab-dcat-2"]},"vocab-dcat-1":{"authors":["Fadi Maali","John Erickson"],"href":"https://www.w3.org/TR/vocab-dcat-1/","title":"Data Catalog Vocabulary (DCAT)","rawDate":"2020-02-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"versions":{"20140116":{"aliasOf":"vocab-dcat-20140116"},"20200204":{"aliasOf":"vocab-dcat-20200204"}}},"vocab-dcat-2":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/vocab-dcat-2/","title":"Data Catalog Vocabulary (DCAT) - Version 2","rawDate":"2020-02-04","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/dxwg/dcat/","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180508":{"authors":["Alejandra Gonzalez Beltran","David Browning","Simon Cox","Peter Winstanley"],"href":"https://www.w3.org/TR/2018/WD-vocab-dcat-2-20180508/","title":"Data Catalog Vocabulary (DCAT) - revised edition","rawDate":"2018-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181016":{"authors":["Alejandra Gonzalez Beltran","David Browning","Simon Cox","Peter Winstanley"],"href":"https://www.w3.org/TR/2018/WD-vocab-dcat-2-20181016/","title":"Data Catalog Vocabulary (DCAT) - revised edition","rawDate":"2018-10-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190528":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2019/WD-vocab-dcat-2-20190528/","title":"Data Catalog Vocabulary (DCAT) - Version 2","rawDate":"2019-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191003":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2019/CR-vocab-dcat-2-20191003/","title":"Data Catalog Vocabulary (DCAT) - Version 2","rawDate":"2019-10-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191119":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2019/PR-vocab-dcat-2-20191119/","title":"Data Catalog Vocabulary (DCAT) - Version 2","rawDate":"2019-11-19","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200204":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2020/REC-vocab-dcat-2-20200204/","title":"Data Catalog Vocabulary (DCAT) - Version 2","rawDate":"2020-02-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"hasErrata":"https://w3c.github.io/dxwg/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dxwg","hasErrata":"https://w3c.github.io/dxwg/errata/","obsoletes":["vocab-dcat"]},"vocab-dcat-3":{"authors":["Simon Cox","Andrea Perego","Alejandra Gonzalez Beltran","Peter Winstanley","Riccardo Albertoni","David Browning"],"href":"https://www.w3.org/TR/vocab-dcat-3/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2024-01-18","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/dxwg/dcat/","deliveredBy":["https://www.w3.org/2017/dxwg/"],"hasErrata":"https://w3c.github.io/dxwg/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201217":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2020/WD-vocab-dcat-3-20201217/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2020-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"hasErrata":"https://w3c.github.io/dxwg/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210504":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2021/WD-vocab-dcat-3-20210504/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2021-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220111":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2022/WD-vocab-dcat-3-20220111/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2022-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220510":{"authors":["Riccardo Albertoni","David Browning","Simon Cox","Alejandra Gonzalez Beltran","Andrea Perego","Peter Winstanley"],"href":"https://www.w3.org/TR/2022/WD-vocab-dcat-3-20220510/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2022-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Simon Cox","Andrea Perego","Alejandra Gonzalez Beltran","Peter Winstanley","Riccardo Albertoni","David Browning"],"href":"https://www.w3.org/TR/2023/WD-vocab-dcat-3-20230307/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2023-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240118":{"authors":["Simon Cox","Andrea Perego","Alejandra Gonzalez Beltran","Peter Winstanley","Riccardo Albertoni","David Browning"],"href":"https://www.w3.org/TR/2024/CR-vocab-dcat-3-20240118/","title":"Data Catalog Vocabulary (DCAT) - Version 3","rawDate":"2024-01-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/dxwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dxwg"},"vocab-dqv":{"authors":["Riccardo Albertoni","Antoine Isaac"],"href":"https://www.w3.org/TR/vocab-dqv/","title":"Data on the Web Best Practices: Data Quality Vocabulary","rawDate":"2016-12-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dwbp/vocab-dqg.html","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150625":{"authors":["Riccardo Albertoni","Christophe Gueret","Antoine Isaac"],"href":"https://www.w3.org/TR/2015/WD-vocab-dqv-20150625/","title":"Data Quality Vocabulary","rawDate":"2015-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Riccardo Albertoni","Antoine Isaac","Christophe Gueret"],"href":"https://www.w3.org/TR/2015/WD-vocab-dqv-20151217/","title":"Data on the Web Best Practices: Data Quality Vocabulary","rawDate":"2015-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Riccardo Albertoni","Antoine Isaac"],"href":"https://www.w3.org/TR/2016/WD-vocab-dqv-20160519/","title":"Data on the Web Best Practices: Data Quality Vocabulary","rawDate":"2016-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"authors":["Riccardo Albertoni","Antoine Isaac"],"href":"https://www.w3.org/TR/2016/NOTE-vocab-dqv-20160830/","title":"Data on the Web Best Practices: Data Quality Vocabulary","rawDate":"2016-08-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Riccardo Albertoni","Antoine Isaac"],"href":"https://www.w3.org/TR/2016/NOTE-vocab-dqv-20161215/","title":"Data on the Web Best Practices: Data Quality Vocabulary","rawDate":"2016-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dwbp"},"vocab-duv":{"authors":["Bernadette Farias Loscio","Eric Stephan","Sumit Purohit"],"href":"https://www.w3.org/TR/vocab-duv/","title":"Data on the Web Best Practices: Dataset Usage Vocabulary","rawDate":"2016-12-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/dwbp/vocab-du.html","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150625":{"authors":["Bernadette Farias Loscio","Eric Stephan","Sumit Purohit"],"href":"https://www.w3.org/TR/2015/WD-vocab-duv-20150625/","title":"Dataset Usage Vocabulary","rawDate":"2015-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160128":{"authors":["Bernadette Farias Loscio","Eric Stephan","Sumit Purohit"],"href":"https://www.w3.org/TR/2016/WD-vocab-duv-20160128/","title":"Data on the Web Best Practices: Dataset Usage Vocabulary","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160519":{"authors":["Bernadette Farias Loscio","Eric Stephan","Sumit Purohit"],"href":"https://www.w3.org/TR/2016/WD-vocab-duv-20160519/","title":"Data on the Web Best Practices: Dataset Usage Vocabulary","rawDate":"2016-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"authors":["Bernadette Farias Loscio","Eric Stephan","Sumit Purohit"],"href":"https://www.w3.org/TR/2016/NOTE-vocab-duv-20160830/","title":"Data on the Web Best Practices: Dataset Usage Vocabulary","rawDate":"2016-08-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Bernadette Farias Loscio","Eric Stephan","Sumit Purohit"],"href":"https://www.w3.org/TR/2016/NOTE-vocab-duv-20161215/","title":"Data on the Web Best Practices: Dataset Usage Vocabulary","rawDate":"2016-12-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2013/dwbp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/dwbp"},"vocab-odrl":{"aliasOf":"odrl-vocab"},"vocab-org":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/vocab-org/","title":"The Organization Ontology","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120405":{"status":"WD","rawDate":"2012-04-05","href":"https://www.w3.org/TR/2012/WD-vocab-org-20120405/","source":"./data/w3c-specs.txt"},"20121023":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/2012/WD-vocab-org-20121023/","title":"An organization ontology","rawDate":"2012-10-23","status":"LCWD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/2013/CR-vocab-org-20130625/","title":"The Organization Ontology","rawDate":"2013-06-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/2013/PR-vocab-org-20131217/","title":"The Organization Ontology","rawDate":"2013-12-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140116":{"authors":["Dave Reynolds"],"href":"https://www.w3.org/TR/2014/REC-vocab-org-20140116/","title":"The Organization Ontology","rawDate":"2014-01-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"vocab-owl-time-agg":{"authors":["Simon Cox","Adam Shepherd","Charles Vardeman"],"href":"https://www.w3.org/TR/vocab-owl-time-agg/","title":"Extensions to the OWL-Time Ontology - temporal aggregates","rawDate":"2020-07-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/time-aggregates/","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200707":{"authors":["Simon Cox","Adam Shepherd","Charles Vardeman"],"href":"https://www.w3.org/TR/2020/NOTE-vocab-owl-time-agg-20200707/","title":"Extensions to the OWL-Time Ontology - temporal aggregates","rawDate":"2020-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"vocab-owl-time-rel":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/vocab-owl-time-rel/","title":"Extensions to the OWL-Time Ontology - entity relations","rawDate":"2020-07-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/time-entity-relations/","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200707":{"authors":["Simon Cox","Chris Little"],"href":"https://www.w3.org/TR/2020/NOTE-vocab-owl-time-rel-20200707/","title":"Extensions to the OWL-Time Ontology - entity relations","rawDate":"2020-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"vocab-people":{"authors":["Michael Hausenblas"],"href":"https://www.w3.org/TR/vocab-people/","title":"Terms for describing people","rawDate":"2012-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120405":{"authors":["Michael Hausenblas"],"href":"https://www.w3.org/TR/2012/WD-vocab-people-20120405/","title":"Terms for describing people","rawDate":"2012-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"vocab-regorg":{"authors":["Phil Archer","Marios Meimaris","Agis Papantoniou"],"href":"https://www.w3.org/TR/vocab-regorg/","title":"Registered Organization Vocabulary","rawDate":"2013-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130108":{"authors":["Phil Archer","Agisilaos Papantoniou"],"href":"https://www.w3.org/TR/2013/WD-vocab-regorg-20130108/","title":"Registered Organization Vocabulary","rawDate":"2013-01-08","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130528":{"authors":["Phil Archer","Marios Meimaris","Agis Papantoniou"],"href":"https://www.w3.org/TR/2013/NOTE-vocab-regorg-20130528/","title":"Registered Organization Vocabulary","rawDate":"2013-05-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130801":{"authors":["Phil Archer","Marios Meimaris","Agis Papantoniou"],"href":"https://www.w3.org/TR/2013/NOTE-vocab-regorg-20130801/","title":"Registered Organization Vocabulary","rawDate":"2013-08-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/gld/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"vocab-ssn":{"authors":["Armin Haller","Krzysztof Janowicz","Simon Cox","Danh Le Phuoc","Kerry Taylor","Maxime Lefrançois"],"href":"https://www.w3.org/TR/vocab-ssn/","title":"Semantic Sensor Network Ontology","rawDate":"2017-10-19","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/ssn/","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160531":{"authors":["Kerry Taylor","Krzysztof Janowicz","Danh Le Phuoc","Armin Haller"],"href":"https://www.w3.org/TR/2016/WD-vocab-ssn-20160531/","title":"Semantic Sensor Network Ontology","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170105":{"authors":["Kerry Taylor","Krzysztof Janowicz","Danh Le Phuoc","Armin Haller"],"href":"https://www.w3.org/TR/2017/WD-vocab-ssn-20170105/","title":"Semantic Sensor Network Ontology","rawDate":"2017-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170504":{"authors":["Armin Haller","Krzysztof Janowicz","Danh Le Phuoc","Kerry Taylor","Maxime Lefrançois"],"href":"https://www.w3.org/TR/2017/WD-vocab-ssn-20170504/","title":"Semantic Sensor Network Ontology","rawDate":"2017-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170711":{"authors":["Armin Haller","Krzysztof Janowicz","Simon Cox","Danh Le Phuoc","Kerry Taylor","Maxime Lefrançois"],"href":"https://www.w3.org/TR/2017/CR-vocab-ssn-20170711/","title":"Semantic Sensor Network Ontology","rawDate":"2017-07-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170907":{"authors":["Armin Haller","Krzysztof Janowicz","Simon Cox","Danh Le Phuoc","Kerry Taylor","Maxime Lefrançois"],"href":"https://www.w3.org/TR/2017/PR-vocab-ssn-20170907/","title":"Semantic Sensor Network Ontology","rawDate":"2017-09-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2015/spatial/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171019":{"authors":["Armin Haller","Krzysztof Janowicz","Simon Cox","Danh Le Phuoc","Kerry Taylor","Maxime Lefrançois"],"href":"https://www.w3.org/TR/2017/REC-vocab-ssn-20171019/","title":"Semantic Sensor Network Ontology","rawDate":"2017-10-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"hasErrata":"https://www.w3.org/2017/10/vocab-ssn-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw","hasErrata":"https://www.w3.org/2017/10/vocab-ssn-errata.html"},"vocab-ssn-ext":{"authors":["Simon Cox"],"href":"https://www.w3.org/TR/vocab-ssn-ext/","title":"Extensions to the Semantic Sensor Network Ontology","rawDate":"2020-01-16","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/ssn-extensions/","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181122":{"authors":["Simon Cox"],"href":"https://www.w3.org/TR/2018/WD-vocab-ssn-ext-20181122/","title":"Extensions to the Semantic Sensor Network Ontology","rawDate":"2018-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200116":{"authors":["Simon Cox"],"href":"https://www.w3.org/TR/2020/WD-vocab-ssn-ext-20200116/","title":"Extensions to the Semantic Sensor Network Ontology","rawDate":"2020-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2017/sdwig/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"voice":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/NOTE-voice","title":"Voice Browsers","status":"NOTE","publisher":"W3C","versions":{"19980128":{"authors":["Dave Raggett"],"href":"https://www.w3.org/TR/1998/NOTE-voice-0128","title":"Voice Browsers","rawDate":"1998-01-28","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1998-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voice-architecture":{"authors":["Michael K. Brown","D. A. Dahl"],"href":"https://www.w3.org/TR/voice-architecture/","title":"Model Architecture for Voice Browser Systems","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"19991223":{"authors":["Michael K. Brown","D. A. Dahl"],"href":"https://www.w3.org/TR/1999/WD-voice-architecture-19991223/","title":"Model Architecture for Voice Browser Systems","rawDate":"1999-12-23","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-12-23","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voice-dialog-reqs":{"authors":["Scott McGlashan"],"href":"https://www.w3.org/TR/voice-dialog-reqs/","title":"Dialog Requirements for Voice Markup Languages","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"19991223":{"authors":["Scott McGlashan"],"href":"https://www.w3.org/TR/1999/WD-voice-dialog-reqs-19991223/","title":"Dialog Requirements for Voice Markup Languages","rawDate":"1999-12-23","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-12-23","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voice-grammar-reqs":{"authors":["Michael K. Brown"],"href":"https://www.w3.org/TR/voice-grammar-reqs/","title":"Grammar Representation Requirements for Voice Markup Languages","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"19991223":{"authors":["Michael K. Brown"],"href":"https://www.w3.org/TR/1999/WD-voice-grammar-reqs-19991223/","title":"Grammar Representation Requirements for Voice Markup Languages","rawDate":"1999-12-23","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-12-23","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voice-intro":{"authors":["Jim Larson"],"href":"https://www.w3.org/TR/voice-intro/","title":"Voice Browsers, Introduction","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"19991223":{"status":"WD","rawDate":"1999-12-23","href":"https://www.w3.org/TR/1999/WD-voice-intro-19991223","source":"./data/w3c-specs.txt"},"20001204":{"authors":["Jim Larson"],"href":"https://www.w3.org/TR/2000/WD-voice-intro-20001204/","title":"Voice Browsers, Introduction","rawDate":"2000-12-04","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-12-04","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voice-nlu-reqs":{"authors":["Deborah Dahl"],"href":"https://www.w3.org/TR/voice-nlu-reqs/","title":"Natural Language Processing Requirements for Voice Markup Languages","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"19991223":{"authors":["Deborah Dahl"],"href":"https://www.w3.org/TR/1999/WD-voice-nlu-reqs-19991223/","title":"Natural Language Processing Requirements for Voice Markup Languages","rawDate":"1999-12-23","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-12-23","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voice-tts-reqs":{"authors":["Andrew Hunt"],"href":"https://www.w3.org/TR/voice-tts-reqs/","title":"Speech Synthesis Markup Requirements for Voice Markup Languages","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"19991223":{"authors":["Andrew Hunt"],"href":"https://www.w3.org/TR/1999/WD-voice-tts-reqs-19991223/","title":"Speech Synthesis Markup Requirements for Voice Markup Languages","rawDate":"1999-12-23","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-12-23","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voicexml":{"versions":{"20000505":{"status":"NOTE","rawDate":"2000-05-05","href":"https://www.w3.org/TR/2000/NOTE-voicexml-20000505","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/voicexml/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-05-05","title":"Voice eXtensible Markup Language (VoiceXML) version 1.0"},"voicexml20":{"authors":["Scott McGlashan","Daniel Burnett","Jerry Carter","Peter Danielsen","Jim Ferrans","Andrew Hunt","Bruce Lucas","Brandon Porter","Kenneth Rehor","Steph Tryphonas"],"etAl":true,"href":"https://www.w3.org/TR/voicexml20/","title":"Voice Extensible Markup Language (VoiceXML) Version 2.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2004/03/voicexml20-errata.html","versions":{"20011023":{"status":"WD","rawDate":"2001-10-23","href":"https://www.w3.org/TR/2001/WD-voicexml20-20011023/","source":"./data/w3c-specs.txt"},"20020424":{"status":"WD","rawDate":"2002-04-24","href":"https://www.w3.org/TR/2002/WD-voicexml20-20020424/","source":"./data/w3c-specs.txt"},"20030128":{"status":"CR","rawDate":"2003-01-28","href":"https://www.w3.org/TR/2003/CR-voicexml20-20030128/","source":"./data/w3c-specs.txt"},"20030220":{"status":"CR","rawDate":"2003-02-20","href":"https://www.w3.org/TR/2003/CR-voicexml20-20030220/","source":"./data/w3c-specs.txt"},"20040203":{"status":"PR","rawDate":"2004-02-03","href":"https://www.w3.org/TR/2004/PR-voicexml20-20040203/","source":"./data/w3c-specs.txt"},"20040316":{"authors":["Scott McGlashan","Daniel Burnett","Jerry Carter","Peter Danielsen","Jim Ferrans","Andrew Hunt","Bruce Lucas","Brandon Porter","Kenneth Rehor","Steph Tryphonas"],"href":"https://www.w3.org/TR/2004/REC-voicexml20-20040316/","title":"Voice Extensible Markup Language (VoiceXML) Version 2.0","rawDate":"2004-03-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2004/03/voicexml20-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-03-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voicexml21":{"authors":["Matt Oshry","RJ Auburn","Paolo Baggia","Michael Bodell","David Burke","Daniel Burnett","Jerry Carter","Scott McGlashan","Alex Lee","Brandon Porter","Kenneth Rehor"],"etAl":true,"href":"https://www.w3.org/TR/voicexml21/","title":"Voice Extensible Markup Language (VoiceXML) 2.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2007/06/voicexml21-errata.html","versions":{"20040323":{"status":"WD","rawDate":"2004-03-23","href":"https://www.w3.org/TR/2004/WD-voicexml21-20040323/","source":"./data/w3c-specs.txt"},"20040728":{"status":"WD","rawDate":"2004-07-28","href":"https://www.w3.org/TR/2004/WD-voicexml21-20040728/","source":"./data/w3c-specs.txt"},"20050613":{"status":"CR","rawDate":"2005-06-13","href":"https://www.w3.org/TR/2005/CR-voicexml21-20050613/","source":"./data/w3c-specs.txt"},"20060915":{"status":"WD","rawDate":"2006-09-15","href":"https://www.w3.org/TR/2006/WD-voicexml21-20060915/","source":"./data/w3c-specs.txt"},"20070425":{"status":"PR","rawDate":"2007-04-25","href":"https://www.w3.org/TR/2007/PR-voicexml21-20070425/","source":"./data/w3c-specs.txt"},"20070619":{"authors":["Matt Oshry","RJ Auburn","Paolo Baggia","Michael Bodell","David Burke","Daniel Burnett","Jerry Carter","Scott McGlashan","Alex Lee","Brandon Porter","Kenneth Rehor"],"href":"https://www.w3.org/TR/2007/REC-voicexml21-20070619/","title":"Voice Extensible Markup Language (VoiceXML) 2.1","rawDate":"2007-06-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"hasErrata":"https://www.w3.org/2007/06/voicexml21-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"voicexml30":{"authors":["Scott McGlashan","Daniel Burnett","Rahul Akolkar","RJ Auburn","Paolo Baggia","Michael Bodell","Jerry Carter","Mangesh Deshmukh","Matt Oshry","Kenneth Rehor","Xu Yang","Milan Young","Rafah Hosn"],"etAl":true,"href":"https://www.w3.org/TR/voicexml30/","title":"Voice Extensible Markup Language (VoiceXML) 3.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20081219":{"status":"WD","rawDate":"2008-12-19","href":"https://www.w3.org/TR/2008/WD-voicexml30-20081219/","source":"./data/w3c-specs.txt"},"20090602":{"status":"WD","rawDate":"2009-06-02","href":"https://www.w3.org/TR/2009/WD-voicexml30-20090602/","source":"./data/w3c-specs.txt"},"20090825":{"status":"WD","rawDate":"2009-08-25","href":"https://www.w3.org/TR/2009/WD-voicexml30-20090825/","source":"./data/w3c-specs.txt"},"20091203":{"status":"WD","rawDate":"2009-12-03","href":"https://www.w3.org/TR/2009/WD-voicexml30-20091203/","source":"./data/w3c-specs.txt"},"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-voicexml30-20100304/","source":"./data/w3c-specs.txt"},"20100617":{"status":"WD","rawDate":"2010-06-17","href":"https://www.w3.org/TR/2010/WD-voicexml30-20100617/","source":"./data/w3c-specs.txt"},"20100831":{"status":"WD","rawDate":"2010-08-31","href":"https://www.w3.org/TR/2010/WD-voicexml30-20100831/","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Scott McGlashan","Daniel Burnett","Rahul Akolkar","RJ Auburn","Paolo Baggia","Michael Bodell","Jerry Carter","Mangesh Deshmukh","Matt Oshry","Kenneth Rehor","Xu Yang","Milan Young","Rafah Hosn"],"href":"https://www.w3.org/TR/2010/WD-voicexml30-20101216/","title":"Voice Extensible Markup Language (VoiceXML) 3.0","rawDate":"2010-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"void":{"authors":["Keith Alexander","Richard Cyganiak","Michael Hausenblas","Jun Zhao"],"href":"https://www.w3.org/TR/void/","title":"Describing Linked Datasets with the VoID Vocabulary","rawDate":"2011-03-03","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110303":{"authors":["Keith Alexander","Richard Cyganiak","Michael Hausenblas","Jun Zhao"],"href":"https://www.w3.org/TR/2011/NOTE-void-20110303/","title":"Describing Linked Datasets with the VoID Vocabulary","rawDate":"2011-03-03","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/2001/sw/interest/"]}},"deliveredBy":["https://www.w3.org/2001/sw/interest/"]},"vsso":{"authors":["Benjamin Klotz","Raphaël Troncy","Daniel Wilms"],"href":"https://www.w3.org/TR/vsso/","title":"VSSo: Vehicle Signal Specification Ontology","rawDate":"2022-03-03","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/vsso/","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220303":{"authors":["Benjamin Klotz","Raphaël Troncy","Daniel Wilms"],"href":"https://www.w3.org/TR/2022/WD-vsso-20220303/","title":"VSSo: Vehicle Signal Specification Ontology","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vsso"},"vsso-core":{"authors":["Benjamin Klotz","Raphaël Troncy","Daniel Wilms"],"href":"https://www.w3.org/TR/vsso-core/","title":"VSSo Core: Vehicle Signal Specification Core Ontology","rawDate":"2022-03-03","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/vsso/","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220303":{"authors":["Benjamin Klotz","Raphaël Troncy","Daniel Wilms"],"href":"https://www.w3.org/TR/2022/WD-vsso-core-20220303/","title":"VSSo Core: Vehicle Signal Specification Core Ontology","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/auto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/vsso"},"vxml30reqs":{"authors":["Jeff Hoepfinger"],"href":"https://www.w3.org/TR/vxml30reqs/","title":"Voice Extensible Markup Language (VoiceXML) 3.0 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"versions":{"20080808":{"authors":["Jeff Hoepfinger"],"href":"https://www.w3.org/TR/2008/WD-vxml30reqs-20080808/","title":"Voice Extensible Markup Language (VoiceXML) 3.0 Requirements","rawDate":"2008-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Voice/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-08-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"w3c-html":{"href":"https://www.w3.org/TR/html/","title":"HTML","rawDate":"2021-01-28","status":"REC","publisher":"W3C","edDraft":"https://html.spec.whatwg.org/","deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200618":{"href":"https://www.w3.org/TR/2020/CR-html-20200618/","title":"HTML","rawDate":"2020-06-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/html/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"href":"https://www.w3.org/TR/2020/PR-html-20201222/","title":"HTML","rawDate":"2020-12-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/html/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"href":"https://www.w3.org/TR/2021/REC-html-20210128/","title":"HTML","rawDate":"2021-01-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/whatwg/html"},"w3c-vision":{"authors":["Chris Wilson"],"href":"https://www.w3.org/TR/w3c-vision/","title":"Vision for W3C","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/AB-public/Vision","deliveredBy":["https://www.w3.org/Member/Board/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230725":{"authors":["Chris Wilson"],"href":"https://www.w3.org/TR/2023/DNOTE-w3c-vision-20230725/","title":"Vision for W3C","rawDate":"2023-07-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Member/Board/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Chris Wilson"],"href":"https://www.w3.org/TR/2023/DNOTE-w3c-vision-20231026/","title":"Vision for W3C","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Member/Board/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/AB-public"},"wai-age-literature":{"authors":["Andrew Arch"],"href":"https://www.w3.org/TR/wai-age-literature/","title":"Web Accessibility for Older Users: A Literature Review","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/about/groups/eowg/"],"versions":{"20080514":{"authors":["Andrew Arch"],"href":"https://www.w3.org/TR/2008/WD-wai-age-literature-20080514/","title":"Web Accessibility for Older Users: A Literature Review","rawDate":"2008-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/about/groups/eowg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-05-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wai-aria":{"authors":["James Craig","Michael Cooper"],"etAl":true,"href":"https://www.w3.org/TR/wai-aria/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"versions":{"20060926":{"status":"WD","rawDate":"2006-09-26","href":"https://www.w3.org/TR/2006/WD-aria-role-20060926/","source":"./data/w3c-specs.txt"},"20061220":{"status":"WD","rawDate":"2006-12-20","href":"https://www.w3.org/TR/2006/WD-aria-role-20061220/","source":"./data/w3c-specs.txt"},"20070601":{"status":"WD","rawDate":"2007-06-01","href":"https://www.w3.org/TR/2007/WD-aria-role-20070601/","source":"./data/w3c-specs.txt"},"20071019":{"status":"WD","rawDate":"2007-10-19","href":"https://www.w3.org/TR/2007/WD-aria-role-20071019/","source":"./data/w3c-specs.txt"},"20080204":{"status":"WD","rawDate":"2008-02-04","href":"https://www.w3.org/TR/2008/WD-wai-aria-20080204/","source":"./data/w3c-specs.txt"},"20080806":{"status":"WD","rawDate":"2008-08-06","href":"https://www.w3.org/TR/2008/WD-wai-aria-20080806/","source":"./data/w3c-specs.txt"},"20090224":{"status":"WD","rawDate":"2009-02-24","href":"https://www.w3.org/TR/2009/WD-wai-aria-20090224/","source":"./data/w3c-specs.txt"},"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-wai-aria-20091215/","source":"./data/w3c-specs.txt"},"20100916":{"status":"WD","rawDate":"2010-09-16","href":"https://www.w3.org/TR/2010/WD-wai-aria-20100916/","source":"./data/w3c-specs.txt"},"20110118":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2011/CR-wai-aria-20110118/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.0","rawDate":"2011-01-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","etAl":true},"20140206":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2014/PR-wai-aria-20140206/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.0","rawDate":"2014-02-06","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140320":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2014/REC-wai-aria-20140320/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.0","rawDate":"2014-03-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-03-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wai-aria-1.0":{"aliasOf":"wai-aria"},"wai-aria-1.1":{"authors":["Joanmarie Diggs","Shane McCarron","Michael Cooper","Richard Schwerdtfeger","James Craig"],"href":"https://www.w3.org/TR/wai-aria-1.1/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130926":{"authors":["James Craig","Michael Cooper"],"href":"https://www.w3.org/TR/2013/WD-wai-aria-1.1-20130926/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2013-09-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140612":{"authors":["James Craig","Michael Cooper","Shane McCarron"],"href":"https://www.w3.org/TR/2014/WD-wai-aria-1.1-20140612/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2014-06-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141211":{"authors":["James Craig","Michael Cooper","Shane McCarron"],"href":"https://www.w3.org/TR/2014/WD-wai-aria-1.1-20141211/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2014-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150514":{"authors":["Joanmarie Diggs","James Craig","Shane McCarron","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-wai-aria-1.1-20150514/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2015-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150714":{"authors":["Joanmarie Diggs","James Craig","Shane McCarron","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-wai-aria-1.1-20150714/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2015-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Joanmarie Diggs","James Craig","Shane McCarron","Michael Cooper"],"href":"https://www.w3.org/TR/2015/WD-wai-aria-1.1-20151119/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Joanmarie Diggs","James Craig","Shane McCarron","Michael Cooper"],"href":"https://www.w3.org/TR/2016/WD-wai-aria-1.1-20160317/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"href":"https://www.w3.org/TR/2016/WD-wai-aria-1.1-20160721/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2016-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161027":{"authors":["Joanmarie Diggs","James Craig","Shane McCarron","Michael Cooper"],"href":"https://www.w3.org/TR/2016/CR-wai-aria-1.1-20161027/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2016-10-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Joanmarie Diggs","Shane McCarron","Michael Cooper","Richard Schwerdtfeger","James Craig"],"href":"https://www.w3.org/TR/2017/PR-wai-aria-1.1-20171102/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2017-11-02","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Joanmarie Diggs","Shane McCarron","Michael Cooper","Richard Schwerdtfeger","James Craig"],"href":"https://www.w3.org/TR/2017/REC-wai-aria-1.1-20171214/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.1","rawDate":"2017-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/aria","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/aria/","repository":"https://github.com/w3c/aria","hasErrata":"https://www.w3.org/WAI/ARIA/1.1/errata/aria"},"wai-aria-1.2":{"authors":["Joanmarie Diggs","James Nurthen","Michael Cooper","Carolyn MacLeod"],"href":"https://www.w3.org/TR/wai-aria-1.2/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2023-06-06","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/aria/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180719":{"authors":["Joanmarie Diggs","James Nurthen","Michael Cooper"],"href":"https://www.w3.org/TR/2018/WD-wai-aria-1.2-20180719/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2018-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Joanmarie Diggs","Shane McCarron","James Nurthen","Michael Cooper","Richard Schwerdtfeger","James Craig"],"href":"https://www.w3.org/TR/2018/WD-wai-aria-1.2-20181218/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191218":{"authors":["Joanmarie Diggs","Shane McCarron","James Nurthen","Michael Cooper","Richard Schwerdtfeger","James Craig"],"href":"https://www.w3.org/TR/2019/WD-wai-aria-1.2-20191218/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2019-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210302":{"authors":["Joanmarie Diggs","James Nurthen","Michael Cooper"],"href":"https://www.w3.org/TR/2021/CR-wai-aria-1.2-20210302/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2021-03-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Joanmarie Diggs","James Nurthen","Michael Cooper"],"href":"https://www.w3.org/TR/2021/CRD-wai-aria-1.2-20211208/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2021-12-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230328":{"authors":["Michael Cooper","James Nurthen","Joanmarie Diggs","Carolyn MacLeod"],"href":"https://www.w3.org/TR/2023/PR-wai-aria-1.2-20230328/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2023-03-28","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Joanmarie Diggs","James Nurthen","Michael Cooper","Carolyn MacLeod"],"href":"https://www.w3.org/TR/2023/REC-wai-aria-1.2-20230606/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.2","rawDate":"2023-06-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria"},"wai-aria-1.3":{"authors":["James Nurthen","Peter Krautzberger"],"href":"https://www.w3.org/TR/wai-aria-1.3/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.3","rawDate":"2024-01-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/aria/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20240123":{"authors":["James Nurthen","Peter Krautzberger"],"href":"https://www.w3.org/TR/2024/WD-wai-aria-1.3-20240123/","title":"Accessible Rich Internet Applications (WAI-ARIA) 1.3","rawDate":"2024-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/aria"},"wai-aria-10":{"aliasOf":"wai-aria"},"wai-aria-11":{"aliasOf":"wai-aria-1.1"},"wai-aria-implementation":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/wai-aria-implementation/","title":"WAI-ARIA 1.0 User Agent Implementation Guide","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"versions":{"20090224":{"status":"WD","rawDate":"2009-02-24","href":"https://www.w3.org/TR/2009/WD-wai-aria-implementation-20090224/","source":"./data/w3c-specs.txt"},"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-wai-aria-implementation-20091215/","source":"./data/w3c-specs.txt"},"20100916":{"status":"WD","rawDate":"2010-09-16","href":"https://www.w3.org/TR/2010/WD-wai-aria-implementation-20100916/","source":"./data/w3c-specs.txt"},"20120110":{"status":"WD","rawDate":"2012-01-10","href":"https://www.w3.org/TR/2012/WD-wai-aria-implementation-20120110/","source":"./data/w3c-specs.txt"},"20120816":{"authors":["Andi Snow-Weaver","Michael Cooper"],"href":"https://www.w3.org/TR/2012/WD-wai-aria-implementation-20120816/","title":"WAI-ARIA 1.0 User Agent Implementation Guide","rawDate":"2012-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131105":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/2013/WD-wai-aria-implementation-20131105/","title":"WAI-ARIA 1.0 User Agent Implementation Guide","rawDate":"2013-11-05","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131217":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/2013/CR-wai-aria-implementation-20131217/","title":"WAI-ARIA 1.0 User Agent Implementation Guide","rawDate":"2013-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140206":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/2014/PR-wai-aria-implementation-20140206/","title":"WAI-ARIA 1.0 User Agent Implementation Guide","rawDate":"2014-02-06","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140320":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/2014/REC-wai-aria-implementation-20140320/","title":"WAI-ARIA 1.0 User Agent Implementation Guide","rawDate":"2014-03-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-03-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wai-aria-practices":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/wai-aria-practices/","title":"WAI-ARIA 1.0 Authoring Practices","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"versions":{"20080204":{"status":"WD","rawDate":"2008-02-04","href":"https://www.w3.org/TR/2008/WD-wai-aria-practices-20080204/","source":"./data/w3c-specs.txt"},"20090224":{"status":"WD","rawDate":"2009-02-24","href":"https://www.w3.org/TR/2009/WD-wai-aria-practices-20090224/","source":"./data/w3c-specs.txt"},"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-wai-aria-practices-20091215/","source":"./data/w3c-specs.txt"},"20100916":{"status":"WD","rawDate":"2010-09-16","href":"https://www.w3.org/TR/2010/WD-wai-aria-practices-20100916/","source":"./data/w3c-specs.txt"},"20130307":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/2013/WD-wai-aria-practices-20130307/","title":"WAI-ARIA 1.0 Authoring Practices","rawDate":"2013-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"authors":["Joseph Scheuhammer","Michael Cooper"],"href":"https://www.w3.org/TR/2016/WD-wai-aria-practices-20160714/","title":"WAI-ARIA 1.0 Authoring Practices","rawDate":"2016-07-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2016-07-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"wai-aria-practices-1.1":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper"],"href":"https://www.w3.org/TR/wai-aria-practices-1.1/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/aria-practices/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150514":{"authors":["Matthew King","James Nurthen","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2015/WD-wai-aria-practices-1.1-20150514/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2015-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Matthew King","James Nurthen","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2015/WD-wai-aria-practices-1.1-20151119/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2015-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160317":{"authors":["Matthew King","James Nurthen","Michael Cooper","Michiel Bijl","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2016/WD-wai-aria-practices-1.1-20160317/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2016-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161214":{"authors":["Matthew King","James Nurthen","Michiel Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2016/WD-wai-aria-practices-1.1-20161214/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2016-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170628":{"authors":["Matthew King","James Nurthen","Michiel Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2017/WD-wai-aria-practices-1.1-20170628/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2017-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171214":{"authors":["Matthew King","James Nurthen","Michiel Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2017/NOTE-wai-aria-practices-1.1-20171214/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2017-12-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180726":{"authors":["Matthew King","James Nurthen","Michiel Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/NOTE-wai-aria-practices-1.1-20180726/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2018-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190207":{"authors":["Matthew King","JaEun Ku","James Nurthen","Zoë Bijl","Michael Cooper"],"href":"https://www.w3.org/TR/2019/NOTE-wai-aria-practices-1.1-20190207/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2019-02-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190814":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2019/NOTE-wai-aria-practices-1.1-20190814/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2019-08-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper"],"href":"https://www.w3.org/TR/2022/NOTE-wai-aria-practices-1.1-20220519/","title":"WAI-ARIA Authoring Practices 1.1","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/aria-practices","isRetired":true},"wai-aria-practices-1.2":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper"],"href":"https://www.w3.org/TR/wai-aria-practices-1.2/","title":"WAI-ARIA Authoring Practices 1.2","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/aria-practices/","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180719":{"authors":["Matthew King","James Nurthen","Michiel Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/WD-wai-aria-practices-1.2-20180719/","title":"WAI-ARIA Authoring Practices 1.2","rawDate":"2018-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181218":{"authors":["Matthew King","James Nurthen","Zoë Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2018/WD-wai-aria-practices-1.2-20181218/","title":"WAI-ARIA Authoring Practices 1.2","rawDate":"2018-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191218":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper","Joseph Scheuhammer","Lisa Pappas","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2019/WD-wai-aria-practices-1.2-20191218/","title":"WAI-ARIA Authoring Practices 1.2","rawDate":"2019-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211129":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper"],"href":"https://www.w3.org/TR/2021/NOTE-wai-aria-practices-1.2-20211129/","title":"WAI-ARIA Authoring Practices 1.2","rawDate":"2021-11-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Matthew King","JaEun Jemma Ku","James Nurthen","Zoë Bijl","Michael Cooper"],"href":"https://www.w3.org/TR/2022/NOTE-wai-aria-practices-1.2-20220519/","title":"WAI-ARIA Authoring Practices 1.2","rawDate":"2022-05-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/aria-practices","isRetired":true},"wai-aria-primer":{"authors":["Lisa Pappas","Richard Schwerdtfeger","Michael Cooper"],"href":"https://www.w3.org/TR/wai-aria-primer/","title":"WAI-ARIA 1.0 Primer","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/ARIA/"],"versions":{"20080204":{"status":"WD","rawDate":"2008-02-04","href":"https://www.w3.org/TR/2008/WD-wai-aria-primer-20080204/","source":"./data/w3c-specs.txt"},"20100916":{"authors":["Lisa Pappas","Richard Schwerdtfeger","Michael Cooper"],"href":"https://www.w3.org/TR/2010/WD-wai-aria-primer-20100916/","title":"WAI-ARIA 1.0 Primer","rawDate":"2010-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160714":{"authors":["Lisa Pappas","Richard Schwerdtfeger","Michael Cooper"],"href":"https://www.w3.org/TR/2016/WD-wai-aria-primer-20160714/","title":"WAI-ARIA 1.0 Primer","rawDate":"2016-07-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/ARIA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2016-07-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"wai-aria-roadmap":{"authors":["Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/wai-aria-roadmap/","title":"Roadmap for Accessible Rich Internet Applications (WAI-ARIA Roadmap)","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"versions":{"20060926":{"status":"WD","rawDate":"2006-09-26","href":"https://www.w3.org/TR/2006/WD-aria-roadmap-20060926/","source":"./data/w3c-specs.txt"},"20061220":{"status":"WD","rawDate":"2006-12-20","href":"https://www.w3.org/TR/2006/WD-aria-roadmap-20061220/","source":"./data/w3c-specs.txt"},"20071019":{"status":"WD","rawDate":"2007-10-19","href":"https://www.w3.org/TR/2007/WD-aria-roadmap-20071019/","source":"./data/w3c-specs.txt"},"20080204":{"authors":["Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2008/WD-wai-aria-roadmap-20080204/","title":"Roadmap for Accessible Rich Internet Applications (WAI-ARIA Roadmap)","rawDate":"2008-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-02-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wake-lock":{"aliasOf":"screen-wake-lock"},"wake-lock-use-cases":{"authors":["Marcos Caceres","Natasha Rooney","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/wake-lock-use-cases/","title":"Wake Lock: Use cases","rawDate":"2014-08-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c-webmob.github.io/wake-lock-use-cases/","deliveredBy":["https://www.w3.org/Mobile/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140814":{"authors":["Marcos Caceres","Natasha Rooney","Dominique Hazaël-Massieux"],"href":"https://www.w3.org/TR/2014/NOTE-wake-lock-use-cases-20140814/","title":"Wake Lock: Use cases","rawDate":"2014-08-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Mobile/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c-webmob/wake-lock-use-cases"},"wasm-core-1":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/wasm-core-1/","title":"WebAssembly Core Specification","rawDate":"2019-12-05","status":"REC","publisher":"W3C","edDraft":"https://webassembly.github.io/spec/core/bikeshed/","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180215":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/2018/WD-wasm-core-1-20180215/","title":"WebAssembly Core Specification","rawDate":"2018-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180904":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/2018/WD-wasm-core-1-20180904/","title":"WebAssembly Core Specification","rawDate":"2018-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190718":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/2019/CR-wasm-core-1-20190718/","title":"WebAssembly Core Specification","rawDate":"2019-07-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191001":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/2019/PR-wasm-core-1-20191001/","title":"WebAssembly Core Specification","rawDate":"2019-10-01","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/","title":"WebAssembly Core Specification","rawDate":"2019-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"hasErrata":"https://www.w3.org/2019/12/wasm-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webassembly/spec","hasErrata":"https://www.w3.org/2019/12/wasm-errata"},"wasm-core-2":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/wasm-core-2/","title":"WebAssembly Core Specification","rawDate":"2022-04-19","status":"WD","publisher":"W3C","edDraft":"https://webassembly.github.io/spec/core/","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220419":{"authors":["Andreas Rossberg"],"href":"https://www.w3.org/TR/2022/WD-wasm-core-2-20220419/","title":"WebAssembly Core Specification","rawDate":"2022-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webassembly/spec"},"wasm-js-api-1":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/wasm-js-api-1/","title":"WebAssembly JavaScript Interface","rawDate":"2019-12-05","status":"REC","publisher":"W3C","edDraft":"https://webassembly.github.io/spec/js-api/","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180215":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2018/WD-wasm-js-api-1-20180215/","title":"WebAssembly JavaScript Interface","rawDate":"2018-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180904":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2018/WD-wasm-js-api-1-20180904/","title":"WebAssembly JavaScript Interface","rawDate":"2018-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190718":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2019/CR-wasm-js-api-1-20190718/","title":"WebAssembly JavaScript Interface","rawDate":"2019-07-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191001":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2019/PR-wasm-js-api-1-20191001/","title":"WebAssembly JavaScript Interface","rawDate":"2019-10-01","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2019/REC-wasm-js-api-1-20191205/","title":"WebAssembly JavaScript Interface","rawDate":"2019-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"hasErrata":"https://www.w3.org/2019/12/wasm-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webassembly/spec","hasErrata":"https://www.w3.org/2019/12/wasm-errata"},"wasm-js-api-2":{"authors":[". Ms2ger"],"href":"https://www.w3.org/TR/wasm-js-api-2/","title":"WebAssembly JavaScript Interface","rawDate":"2022-04-19","status":"WD","publisher":"W3C","edDraft":"https://webassembly.github.io/spec/js-api/","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220419":{"authors":[". Ms2ger"],"href":"https://www.w3.org/TR/2022/WD-wasm-js-api-2-20220419/","title":"WebAssembly JavaScript Interface","rawDate":"2022-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webassembly/spec"},"wasm-web-api-1":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/wasm-web-api-1/","title":"WebAssembly Web API","rawDate":"2019-12-05","status":"REC","publisher":"W3C","edDraft":"https://webassembly.github.io/spec/web-api/","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180215":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2018/WD-wasm-web-api-1-20180215/","title":"WebAssembly Web API","rawDate":"2018-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180904":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2018/WD-wasm-web-api-1-20180904/","title":"WebAssembly Web API","rawDate":"2018-09-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190718":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2019/CR-wasm-web-api-1-20190718/","title":"WebAssembly Web API","rawDate":"2019-07-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191001":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2019/PR-wasm-web-api-1-20191001/","title":"WebAssembly Web API","rawDate":"2019-10-01","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["Daniel Ehrenberg"],"href":"https://www.w3.org/TR/2019/REC-wasm-web-api-1-20191205/","title":"WebAssembly Web API","rawDate":"2019-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"hasErrata":"https://www.w3.org/2019/12/wasm-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webassembly/spec","hasErrata":"https://www.w3.org/2019/12/wasm-errata"},"wasm-web-api-2":{"authors":[". Ms2ger"],"href":"https://www.w3.org/TR/wasm-web-api-2/","title":"WebAssembly Web API","rawDate":"2022-04-19","status":"WD","publisher":"W3C","edDraft":"https://webassembly.github.io/spec/web-api/","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220419":{"authors":[". Ms2ger"],"href":"https://www.w3.org/TR/2022/WD-wasm-web-api-2-20220419/","title":"WebAssembly Web API","rawDate":"2022-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/wasm/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webassembly/spec"},"wbxml":{"versions":{"19990624":{"status":"NOTE","rawDate":"1999-06-24","href":"https://www.w3.org/1999/06/NOTE-wbxml-19990624","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/wbxml","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1999-06-24","title":"WAP WAP Binary XML (WBXML) Encoding Specification"},"wcag-3.0":{"authors":["Jeanne F Spellman","Rachael Bradley Montgomery","Michael Cooper","Shawn Lauriat"],"href":"https://www.w3.org/TR/wcag-3.0/","title":"W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2023-07-24","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/silver/guidelines/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210121":{"authors":["Jeanne F Spellman","Rachael Bradley Montgomery","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/2021/WD-wcag-3.0-20210121/","title":"W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2021-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Jeanne F Spellman","Rachael Bradley Montgomery","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/2021/WD-wcag-3.0-20210608/","title":"W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Jeanne F Spellman","Rachael Bradley Montgomery","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/2021/WD-wcag-3.0-20211207/","title":"W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230724":{"authors":["Jeanne F Spellman","Rachael Bradley Montgomery","Michael Cooper","Shawn Lauriat"],"href":"https://www.w3.org/TR/2023/WD-wcag-3.0-20230724/","title":"W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2023-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/silver"},"wcag-3.0-explainer":{"authors":["Jeanne F Spellman","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/wcag-3.0-explainer/","title":"Explainer for W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2021-12-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/silver/explainer/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211207":{"authors":["Jeanne F Spellman","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/2021/DNOTE-wcag-3.0-explainer-20211207/","title":"Explainer for W3C Accessibility Guidelines (WCAG) 3.0","rawDate":"2021-12-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/silver"},"wcag-3.0-requirements":{"authors":["Jeanne F Spellman","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/wcag-3.0-requirements/","title":"Requirements for WCAG 3.0","rawDate":"2021-01-21","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/silver/requirements/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210121":{"authors":["Jeanne F Spellman","Shawn Lauriat","Michael Cooper"],"href":"https://www.w3.org/TR/2021/WD-wcag-3.0-requirements-20210121/","title":"Requirements for WCAG 3.0","rawDate":"2021-01-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/silver"},"wcag2-ext-req":{"href":"https://www.w3.org/TR/wcag2-ext-req/","title":"Requirements for WCAG 2.0 Extensions","rawDate":"2016-01-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/wcag/wcag20/extensions/requirements.html","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160105":{"href":"https://www.w3.org/TR/2016/WD-wcag2-ext-req-20160105/","title":"Requirements for WCAG 2.0 Extensions","rawDate":"2016-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"]}},"authors":["Michael Cooper","Andrew Kirkpatrick","Joshue O'Connor"],"repository":"https://github.com/w3c/wcag"},"wcag2-req":{"authors":["Gregg Vanderheiden","John Slatin","Wendy Chisholm"],"href":"https://www.w3.org/TR/wcag2-req/","title":"Requirements for WCAG 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20020426":{"status":"WD","rawDate":"2002-04-26","href":"https://www.w3.org/TR/2002/WD-wcag2-req-20020426","source":"./data/w3c-specs.txt"},"20060425":{"authors":["Gregg Vanderheiden","John Slatin","Wendy Chisholm"],"href":"https://www.w3.org/TR/2006/NOTE-wcag2-req-20060425/","title":"Requirements for WCAG 2.0","rawDate":"2006-04-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-04-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wcag2-tech-req":{"authors":["Michael Cooper"],"href":"https://www.w3.org/TR/wcag2-tech-req/","title":"Requirements for WCAG 2.0 Checklists and Techniques","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"versions":{"20030207":{"authors":["Michael Cooper"],"href":"https://www.w3.org/TR/2003/WD-wcag2-tech-req-20030207/","title":"Requirements for WCAG 2.0 Checklists and Techniques","rawDate":"2003-02-07","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-02-07","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wcag2ict":{"authors":["Michael Cooper","Peter Korn","Andi Snow-Weaver","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/wcag2ict/","title":"Guidance on Applying WCAG 2.0 to Non-Web Information and Communications Technologies (WCAG2ICT)","rawDate":"2013-09-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120727":{"status":"WD","rawDate":"2012-07-27","href":"https://www.w3.org/TR/2012/WD-wcag2ict-20120727/","source":"./data/w3c-specs.txt"},"20121213":{"authors":["Michael Cooper","Andi Snow-Weaver"],"href":"https://www.w3.org/TR/2012/WD-wcag2ict-20121213/","title":"Guidance on Applying WCAG 2.0 to Non-Web Information and Communications Technologies","rawDate":"2012-12-13","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130711":{"authors":["Michael Cooper","Peter Korn","Andi Snow-Weaver"],"href":"https://www.w3.org/TR/2013/WD-wcag2ict-20130711/","title":"Guidance on Applying WCAG 2.0 to Non-Web Information and Communications Technologies (WCAG2ICT)","rawDate":"2013-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130905":{"authors":["Michael Cooper","Peter Korn","Andi Snow-Weaver","Gregg Vanderheiden"],"href":"https://www.w3.org/TR/2013/NOTE-wcag2ict-20130905/","title":"Guidance on Applying WCAG 2.0 to Non-Web Information and Communications Technologies (WCAG2ICT)","rawDate":"2013-09-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230815":{"aliasOf":"wcag2ict-22-20230815"}},"edDraft":"https://w3c.github.io/wcag2ict/","repository":"https://github.com/w3c/wcag2ict"},"wcag2ict-22":{"authors":["Mary Jo Mueller","Chris Loiselle","Phil Day"],"href":"https://www.w3.org/TR/wcag2ict-22","title":"Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT)","rawDate":"2023-08-15","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wcag2ict/","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230815":{"authors":["Mary Jo Mueller","Chris Loiselle","Phil Day"],"href":"https://www.w3.org/TR/2023/DNOTE-wcag2ict-20230815/","title":"Guidance on Applying WCAG 2.2 to Non-Web Information and Communications Technologies (WCAG2ICT)","rawDate":"2023-08-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/GL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wcag2ict"},"web-alarms":{"aliasOf":"task-scheduler"},"web-animations":{"aliasOf":"web-animations-1"},"web-animations-1":{"authors":["Brian Birtles","Robert Flack","Stephen McGruer","Antoine Quint"],"href":"https://www.w3.org/TR/web-animations-1/","title":"Web Animations","rawDate":"2023-06-05","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/web-animations-1/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130625":{"authors":["Brian Birtles","Shane Stephens","Alex Danilo","Dmitry Baranovskiy","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2013/WD-web-animations-20130625/","title":"Web Animations 1.0","rawDate":"2013-06-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140605":{"authors":["Brian Birtles","Shane Stephens","Alex Danilo","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2014/WD-web-animations-20140605/","title":"Web Animations 1.0","rawDate":"2014-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150707":{"authors":["Brian Birtles","Shane Stephens","Alex Danilo","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2015/WD-web-animations-1-20150707/","title":"Web Animations","rawDate":"2015-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/members"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"href":"https://www.w3.org/TR/2016/WD-web-animations-1-20160913/","title":"Web Animations","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/members","https://www.w3.org/Graphics/SVG/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Brian Birtles","Robert Flack","Stephen McGruer","Antoine Quint","Shane Stephens","Alex Danilo","Tab Atkins Jr."],"href":"https://www.w3.org/TR/2018/WD-web-animations-1-20181011/","title":"Web Animations","rawDate":"2018-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/SVG/WG/","https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210518":{"authors":["Brian Birtles","Robert Flack","Stephen McGruer","Antoine Quint"],"href":"https://www.w3.org/TR/2021/WD-web-animations-1-20210518/","title":"Web Animations","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Brian Birtles","Robert Flack","Stephen McGruer","Antoine Quint"],"href":"https://www.w3.org/TR/2022/WD-web-animations-1-20220908/","title":"Web Animations","rawDate":"2022-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230605":{"authors":["Brian Birtles","Robert Flack","Stephen McGruer","Antoine Quint"],"href":"https://www.w3.org/TR/2023/WD-web-animations-1-20230605/","title":"Web Animations","rawDate":"2023-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/web-animations"},"web-animations-2":{"authors":["Brian Birtles","Robert Flack"],"href":"https://www.w3.org/TR/web-animations-2/","title":"Web Animations Level 2","rawDate":"2023-02-21","status":"WD","publisher":"W3C","edDraft":"https://drafts.csswg.org/web-animations-2/","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230221":{"authors":["Brian Birtles","Robert Flack"],"href":"https://www.w3.org/TR/2023/WD-web-animations-2-20230221/","title":"Web Animations Level 2","rawDate":"2023-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/csswg-drafts"},"web-forms-2":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/web-forms-2/","title":"Web Forms 2.0","publisher":"W3C","versions":{"20060821":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2006/WD-web-forms-2-20060821/","title":"Web Forms 2.0","rawDate":"2006-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20090226":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2009/WD-web-forms-2-20090226/","title":"Web Forms 2.0","rawDate":"2009-02-26","publisher":"W3C","isSuperseded":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2009-02-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isSuperseded":true,"status":"WD","deliveredBy":["https://www.w3.org/2006/appformats/"],"obsoletedBy":["html5"]},"web-intents":{"authors":["Greg Billock","James Hawkins","Paul Kinlan"],"href":"https://www.w3.org/TR/web-intents/","title":"Web Intents","rawDate":"2013-05-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120626":{"authors":["Greg Billock","James Hawkins","Paul Kinlan"],"href":"https://www.w3.org/TR/2012/WD-web-intents-20120626/","title":"Web Intents","rawDate":"2012-06-26","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130523":{"authors":["Greg Billock","James Hawkins","Paul Kinlan"],"href":"https://www.w3.org/TR/2013/NOTE-web-intents-20130523/","title":"Web Intents","rawDate":"2013-05-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"web-locks":{"authors":["Joshua Bell","Kagami Rosylight"],"href":"https://www.w3.org/TR/web-locks/","title":"Web Locks API","rawDate":"2023-01-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/web-locks/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230105":{"authors":["Joshua Bell","Kagami Rosylight"],"href":"https://www.w3.org/TR/2023/WD-web-locks-20230105/","title":"Web Locks API","rawDate":"2023-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/web-locks"},"web-nfc":{"href":"https://w3c.github.io/web-nfc/","title":"Web NFC API","status":"ED","publisher":"W3C","repository":"https://github.com/w3c/web-nfc"},"web-packaging":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/web-packaging/","title":"Packaging on the Web","rawDate":"2018-06-26","status":"NOTE","publisher":"W3C","edDraft":"https://w3ctag.github.io/packaging-on-the-web/","deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150115":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2015/WD-web-packaging-20150115/","title":"Packaging on the Web","rawDate":"2015-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/","https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180130":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2018/NOTE-web-packaging-20180130/","title":"Packaging on the Web","rawDate":"2018-01-30","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180626":{"authors":["Jeni Tennison"],"href":"https://www.w3.org/TR/2018/NOTE-web-packaging-20180626/","title":"Packaging on the Web","rawDate":"2018-06-26","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3ctag/packaging-on-the-web","isRetired":true},"web-payments-use-cases":{"href":"https://www.w3.org/TR/web-payments-use-cases/","title":"Web Payments Use Cases 1.0","rawDate":"2018-07-19","status":"NOTE","publisher":"W3C","edDraft":"https://dvcs.w3.org/hg/webpayments/raw-file/default/latest/use-cases/index.html","deliveredBy":["https://www.w3.org/WebCommerce/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20150416":{"href":"https://www.w3.org/TR/2015/WD-web-payments-use-cases-20150416/","title":"Web Payments Use Cases 1.0","rawDate":"2015-04-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150730":{"authors":["Manu Sporny","Ian Jacobs"],"href":"https://www.w3.org/TR/2015/WD-web-payments-use-cases-20150730/","title":"Web Payments Use Cases 1.0","rawDate":"2015-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180719":{"authors":["Manu Sporny","Ian Jacobs"],"href":"https://www.w3.org/TR/2018/NOTE-web-payments-use-cases-20180719/","title":"Web Payments Use Cases 1.0","rawDate":"2018-07-19","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/WebCommerce/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"authors":["Manu Sporny","Ian Jacobs"],"isRetired":true},"web-share":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/web-share/","title":"Web Share API","rawDate":"2023-05-30","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/web-share/","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191217":{"authors":["Matt Giuca"],"href":"https://www.w3.org/TR/2019/WD-web-share-20191217/","title":"Web Share API","rawDate":"2019-12-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200606":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2020/WD-web-share-20200606/","title":"Web Share API","rawDate":"2020-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200617":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2020/WD-web-share-20200617/","title":"Web Share API","rawDate":"2020-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200804":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2020/WD-web-share-20200804/","title":"Web Share API","rawDate":"2020-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200827":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2020/WD-web-share-20200827/","title":"Web Share API","rawDate":"2020-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200924":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2020/WD-web-share-20200924/","title":"Web Share API","rawDate":"2020-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201019":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2020/WD-web-share-20201019/","title":"Web Share API","rawDate":"2020-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210120":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210120/","title":"Web Share API","rawDate":"2021-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210617/","title":"Web Share API","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210808":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210808/","title":"Web Share API","rawDate":"2021-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210809":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210809/","title":"Web Share API","rawDate":"2021-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210817/","title":"Web Share API","rawDate":"2021-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210820":{"authors":["Matt Giuca","Eric Willigers"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210820/","title":"Web Share API","rawDate":"2021-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210826/","title":"Web Share API","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210903/","title":"Web Share API","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210913":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210913/","title":"Web Share API","rawDate":"2021-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210920":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-web-share-20210920/","title":"Web Share API","rawDate":"2021-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-web-share-20211013/","title":"Web Share API","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211122":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2021/WD-web-share-20211122/","title":"Web Share API","rawDate":"2021-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2019/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220316/","title":"Web Share API","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220530":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220530/","title":"Web Share API","rawDate":"2022-05-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220607/","title":"Web Share API","rawDate":"2022-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220608/","title":"Web Share API","rawDate":"2022-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220701":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220701/","title":"Web Share API","rawDate":"2022-07-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220707":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220707/","title":"Web Share API","rawDate":"2022-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220712":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/WD-web-share-20220712/","title":"Web Share API","rawDate":"2022-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220830":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/CR-web-share-20220830/","title":"Web Share API","rawDate":"2022-08-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/CRD-web-share-20220921/","title":"Web Share API","rawDate":"2022-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221103":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/CRD-web-share-20221103/","title":"Web Share API","rawDate":"2022-11-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221108":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/CRD-web-share-20221108/","title":"Web Share API","rawDate":"2022-11-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/CRD-web-share-20221212/","title":"Web Share API","rawDate":"2022-12-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221215":{"authors":["Matt Giuca","Eric Willigers","Marcos Caceres"],"href":"https://www.w3.org/TR/2022/PR-web-share-20221215/","title":"Web Share API","rawDate":"2022-12-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230530":{"authors":["Marcos Caceres","Eric Willigers","Matt Giuca"],"href":"https://www.w3.org/TR/2023/REC-web-share-20230530/","title":"Web Share API","rawDate":"2023-05-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webapps/"],"hasErrata":"https://github.com/w3c/web-share/labels/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/web-share","hasErrata":"https://github.com/w3c/web-share/labels/errata"},"webarch":{"authors":["Ian Jacobs","Norman Walsh"],"href":"https://www.w3.org/TR/webarch/","title":"Architecture of the World Wide Web, Volume One","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"hasErrata":"https://www.w3.org/2001/tag/webarch/errata.html","versions":{"20020830":{"status":"WD","rawDate":"2002-08-30","href":"https://www.w3.org/TR/2002/WD-webarch-20020830/","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-webarch-20021115/","source":"./data/w3c-specs.txt"},"20030326":{"status":"WD","rawDate":"2003-03-26","href":"https://www.w3.org/TR/2003/WD-webarch-20030326/","source":"./data/w3c-specs.txt"},"20030627":{"status":"WD","rawDate":"2003-06-27","href":"https://www.w3.org/TR/2003/WD-webarch-20030627/","source":"./data/w3c-specs.txt"},"20031001":{"status":"WD","rawDate":"2003-10-01","href":"https://www.w3.org/TR/2003/WD-webarch-20031001/","source":"./data/w3c-specs.txt"},"20031209":{"status":"WD","rawDate":"2003-12-09","href":"https://www.w3.org/TR/2003/WD-webarch-20031209/","source":"./data/w3c-specs.txt"},"20040705":{"status":"WD","rawDate":"2004-07-05","href":"https://www.w3.org/TR/2004/WD-webarch-20040705/","source":"./data/w3c-specs.txt"},"20040816":{"status":"WD","rawDate":"2004-08-16","href":"https://www.w3.org/TR/2004/WD-webarch-20040816/","source":"./data/w3c-specs.txt"},"20041105":{"status":"PR","rawDate":"2004-11-05","href":"https://www.w3.org/TR/2004/PR-webarch-20041105/","source":"./data/w3c-specs.txt"},"20041215":{"authors":["Ian Jacobs","Norman Walsh"],"href":"https://www.w3.org/TR/2004/REC-webarch-20041215/","title":"Architecture of the World Wide Web, Volume One","rawDate":"2004-12-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/tag/"],"hasErrata":"https://www.w3.org/2001/tag/webarch/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-12-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"webarch-extlang":{"versions":{"19980210":{"status":"NOTE","rawDate":"1998-02-10","href":"https://www.w3.org/TR/1998/NOTE-webarch-extlang-19980210","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-webarch-extlang","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-02-10","title":"Web Architecture: Extensible languages"},"webaudio":{"authors":["Paul Adenot","Hongchan Choi"],"href":"https://www.w3.org/TR/webaudio/","title":"Web Audio API","rawDate":"2021-06-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111215":{"status":"WD","rawDate":"2011-12-15","href":"https://www.w3.org/TR/2011/WD-webaudio-20111215/","source":"./data/w3c-specs.txt"},"20120315":{"status":"WD","rawDate":"2012-03-15","href":"https://www.w3.org/TR/2012/WD-webaudio-20120315/","source":"./data/w3c-specs.txt"},"20120802":{"status":"WD","rawDate":"2012-08-02","href":"https://www.w3.org/TR/2012/WD-webaudio-20120802/","source":"./data/w3c-specs.txt"},"20121213":{"authors":["Chris Rogers"],"href":"https://www.w3.org/TR/2012/WD-webaudio-20121213/","title":"Web Audio API","rawDate":"2012-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131010":{"authors":["Paul Adenot","Chris Wilson","Chris Rogers"],"href":"https://www.w3.org/TR/2013/WD-webaudio-20131010/","title":"Web Audio API","rawDate":"2013-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151208":{"authors":["Paul Adenot","Chris Wilson","Chris Rogers"],"href":"https://www.w3.org/TR/2015/WD-webaudio-20151208/","title":"Web Audio API","rawDate":"2015-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180619":{"authors":["Bryan Garaventa","Raymond Toy"],"href":"https://www.w3.org/TR/2018/WD-webaudio-20180619/","title":"Web Audio API","rawDate":"2018-06-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180918":{"authors":["Paul Adenot","Raymond Toy"],"href":"https://www.w3.org/TR/2018/CR-webaudio-20180918/","title":"Web Audio API","rawDate":"2018-09-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200611":{"authors":["Paul Adenot","Hongchan Choi"],"href":"https://www.w3.org/TR/2020/CR-webaudio-20200611/","title":"Web Audio API","rawDate":"2020-06-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210114":{"authors":["Paul Adenot","Hongchan Choi"],"href":"https://www.w3.org/TR/2021/CR-webaudio-20210114/","title":"Web Audio API","rawDate":"2021-01-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210506":{"authors":["Paul Adenot","Hongchan Choi"],"href":"https://www.w3.org/TR/2021/PR-webaudio-20210506/","title":"Web Audio API","rawDate":"2021-05-06","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Paul Adenot","Hongchan Choi"],"href":"https://www.w3.org/TR/2021/REC-webaudio-20210617/","title":"Web Audio API","rawDate":"2021-06-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"hasErrata":"https://www.w3.org/2011/audio/REC-webaudio-20210617-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://webaudio.github.io/web-audio-api/","repository":"https://github.com/webaudio/web-audio-api","hasErrata":"https://www.w3.org/2011/audio/REC-webaudio-20210617-errata.html"},"webaudio-usecases":{"authors":["Joe Berkovitz","Olivier Thereaux"],"href":"https://www.w3.org/TR/webaudio-usecases/","title":"Web Audio Processing: Use Cases and Requirements","rawDate":"2013-01-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121004":{"status":"WD","rawDate":"2012-10-04","href":"https://www.w3.org/TR/2012/WD-webaudio-usecases-20121004/","source":"./data/w3c-specs.txt"},"20130129":{"authors":["Joe Berkovitz","Olivier Thereaux"],"href":"https://www.w3.org/TR/2013/NOTE-webaudio-usecases-20130129/","title":"Web Audio Processing: Use Cases and Requirements","rawDate":"2013-01-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"webauthn":{"aliasOf":"webauthn-1"},"webauthn-1":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Emil Lundberg"],"href":"https://www.w3.org/TR/webauthn-1/","title":"Web Authentication:An API for accessing Public Key Credentials Level 1","rawDate":"2019-03-04","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/webauthn/","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160531":{"authors":["Vijay Bharadwaj","Hubert Le Van Gong","Dirk Balfanz","Alexei Czeskis","Arnar Birgisson","Jeff Hodges","Michael Jones","Rolf Lindemann"],"href":"https://www.w3.org/TR/2016/WD-webauthn-20160531/","title":"Web Authentication: A Web API for accessing scoped credentials","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160902":{"href":"https://www.w3.org/TR/2016/WD-webauthn-20160902/","title":"Web Authentication: An API for accessing Scoped Credentials none","rawDate":"2016-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160928":{"href":"https://www.w3.org/TR/2016/WD-webauthn-20160928/","title":"Web Authentication: An API for accessing Scoped Credentials","rawDate":"2016-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161207":{"href":"https://www.w3.org/TR/2016/WD-webauthn-20161207/","title":"Web Authentication: An API for accessing Scoped Credentials","rawDate":"2016-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170216":{"authors":["Vijay Bharadwaj","Hubert Le Van Gong","Dirk Balfanz","Alexei Czeskis","Arnar Birgisson","Jeff Hodges","Michael Jones","Rolf Lindemann","J.C. Jones"],"href":"https://www.w3.org/TR/2017/WD-webauthn-20170216/","title":"Web Authentication: An API for accessing Scoped Credentials","rawDate":"2017-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170505":{"authors":["Vijay Bharadwaj","Hubert Le Van Gong","Dirk Balfanz","Alexei Czeskis","Arnar Birgisson","Jeff Hodges","Michael Jones","Rolf Lindemann","J.C. Jones"],"href":"https://www.w3.org/TR/2017/WD-webauthn-20170505/","title":"Web Authentication: An API for accessing Public Key Credentials","rawDate":"2017-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170811":{"authors":["Vijay Bharadwaj","Hubert Le Van Gong","Dirk Balfanz","Alexei Czeskis","Arnar Birgisson","Jeff Hodges","Michael Jones","Rolf Lindemann","J.C. Jones"],"href":"https://www.w3.org/TR/2017/WD-webauthn-20170811/","title":"Web Authentication: An API for accessing Public Key Credentials Level 1","rawDate":"2017-08-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171205":{"authors":["Vijay Bharadwaj","Hubert Le Van Gong","Dirk Balfanz","Alexei Czeskis","Arnar Birgisson","Jeff Hodges","Michael Jones","Rolf Lindemann","J.C. Jones"],"href":"https://www.w3.org/TR/2017/WD-webauthn-20171205/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 1","rawDate":"2017-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180306":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Vijay Bharadwaj","Arnar Birgisson","Hubert Le Van Gong"],"href":"https://www.w3.org/TR/2018/WD-webauthn-20180306/","title":"Web Authentication: An API for accessing Public Key Credentials Level 1","rawDate":"2018-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180315":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Vijay Bharadwaj","Arnar Birgisson","Hubert Le Van Gong"],"href":"https://www.w3.org/TR/2018/WD-webauthn-20180315/","title":"Web Authentication: An API for accessing Public Key Credentials Level 1","rawDate":"2018-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180320":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Emil Lundberg"],"href":"https://www.w3.org/TR/2018/CR-webauthn-20180320/","title":"Web Authentication: An API for accessing Public Key Credentials Level 1","rawDate":"2018-03-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180807":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Vijay Bharadwaj","Arnar Birgisson","Hubert Le Van Gong"],"href":"https://www.w3.org/TR/2018/CR-webauthn-20180807/","title":"Web Authentication: An API for accessing Public Key Credentials Level 1","rawDate":"2018-08-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190117":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Emil Lundberg"],"href":"https://www.w3.org/TR/2019/PR-webauthn-20190117/","title":"Web Authentication:An API for accessing Public Key CredentialsLevel 1","rawDate":"2019-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190304":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Huakai Liao","Rolf Lindemann","Emil Lundberg"],"href":"https://www.w3.org/TR/2019/REC-webauthn-1-20190304/","title":"Web Authentication:An API for accessing Public Key Credentials Level 1","rawDate":"2019-03-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webauthn"},"webauthn-2":{"authors":["Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Emil Lundberg"],"href":"https://www.w3.org/TR/webauthn-2/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 2","rawDate":"2021-04-08","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/webauthn/","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190604":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Rolf Lindemann","Emil Lundberg"],"href":"https://www.w3.org/TR/2019/WD-webauthn-2-20190604/","title":"Web Authentication:An API for accessing Public Key Credentials Level 2","rawDate":"2019-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191126":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Rolf Lindemann","Vijay Bharadwaj","Arnar Birgisson","Hubert Le Van Gong","Huakai Liao"],"href":"https://www.w3.org/TR/2019/WD-webauthn-2-20191126/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 2","rawDate":"2019-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200730":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Rolf Lindemann","Vijay Bharadwaj","Arnar Birgisson","Hubert Le Van Gong","Huakai Liao"],"href":"https://www.w3.org/TR/2020/WD-webauthn-2-20200730/","title":"Web Authentication:An API for accessing Public Key CredentialsLevel 2","rawDate":"2020-07-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201216":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Rolf Lindemann","Emil Lundberg","Vijay Bharadwaj","Arnar Birgisson","Hubert Le Van Gong","Huakai Liao"],"href":"https://www.w3.org/TR/2020/WD-webauthn-2-20201216/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 2","rawDate":"2020-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201222":{"authors":["Dirk Balfanz","Alexei Czeskis","Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Rolf Lindemann","Emil Lundberg"],"href":"https://www.w3.org/TR/2020/CR-webauthn-2-20201222/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 2","rawDate":"2020-12-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210225":{"authors":["Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Emil Lundberg"],"href":"https://www.w3.org/TR/2021/PR-webauthn-2-20210225/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 2","rawDate":"2021-02-25","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210408":{"authors":["Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Emil Lundberg"],"href":"https://www.w3.org/TR/2021/REC-webauthn-2-20210408/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 2","rawDate":"2021-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"hasErrata":"https://www.w3.org/2021/04/webauthn-2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webauthn","hasErrata":"https://www.w3.org/2021/04/webauthn-2-errata.html"},"webauthn-3":{"authors":["Michael Jones","Akshay Kumar","Emil Lundberg"],"href":"https://www.w3.org/TR/webauthn-3/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 3","rawDate":"2023-09-27","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webauthn/","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210427":{"authors":["Jeff Hodges","J.C. Jones","Michael Jones","Akshay Kumar","Emil Lundberg"],"href":"https://www.w3.org/TR/2021/WD-webauthn-3-20210427/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 3","rawDate":"2021-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230927":{"authors":["Michael Jones","Akshay Kumar","Emil Lundberg"],"href":"https://www.w3.org/TR/2023/WD-webauthn-3-20230927/","title":"Web Authentication: An API for accessing Public Key Credentials - Level 3","rawDate":"2023-09-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webauthn/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webauthn"},"webcgm20":{"authors":["Benoit Bezaire","David Cruikshank","Lofton Henderson"],"href":"https://www.w3.org/TR/webcgm20/","title":"WebCGM 2.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/WebCGM/WG/"],"hasErrata":"https://www.w3.org/2006/WebCGM20-errata.html","versions":{"20060623":{"status":"WD","rawDate":"2006-06-23","href":"https://www.w3.org/TR/2006/WD-webcgm20-20060623/","source":"./data/w3c-specs.txt"},"20060906":{"status":"CR","rawDate":"2006-09-06","href":"https://www.w3.org/TR/2006/CR-webcgm20-20060906/","source":"./data/w3c-specs.txt"},"20061017":{"status":"PR","rawDate":"2006-10-17","href":"https://www.w3.org/TR/2006/PR-webcgm20-20061017/","source":"./data/w3c-specs.txt"},"20070130":{"authors":["Benoit Bezaire","David Cruikshank","Lofton Henderson"],"href":"https://www.w3.org/TR/2007/REC-webcgm20-20070130/","title":"WebCGM 2.0","rawDate":"2007-01-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/WebCGM/WG/"],"hasErrata":"https://www.w3.org/2006/WebCGM20-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191205":{"authors":["Benoit Bezaire","David Cruikshank","Lofton Henderson"],"href":"https://www.w3.org/TR/2019/SPSD-webcgm20-20191205/","title":"WebCGM 2.0","rawDate":"2019-12-05","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Graphics/WebCGM/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2019-12-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true,"obsoletedBy":["webcgm21"]},"webcgm21":{"authors":["Benoit Bezaire","Lofton Henderson"],"href":"https://www.w3.org/TR/webcgm21/","title":"WebCGM 2.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/WebCGM/WG/"],"hasErrata":"https://www.w3.org/2010/WebCGM21-errata.html","versions":{"20080917":{"status":"WD","rawDate":"2008-09-17","href":"https://www.w3.org/TR/2008/WD-webcgm21-20080917/","source":"./data/w3c-specs.txt"},"20090130":{"status":"WD","rawDate":"2009-01-30","href":"https://www.w3.org/TR/2009/WD-webcgm21-20090130/","source":"./data/w3c-specs.txt"},"20090604":{"status":"WD","rawDate":"2009-06-04","href":"https://www.w3.org/TR/2009/WD-webcgm21-20090604/","source":"./data/w3c-specs.txt"},"20090915":{"status":"CR","rawDate":"2009-09-15","href":"https://www.w3.org/TR/2009/CR-webcgm21-20090915/","source":"./data/w3c-specs.txt"},"20100114":{"status":"PR","rawDate":"2010-01-14","href":"https://www.w3.org/TR/2010/PR-webcgm21-20100114/","source":"./data/w3c-specs.txt"},"20100301":{"authors":["Benoit Bezaire","Lofton Henderson"],"href":"https://www.w3.org/TR/2010/REC-webcgm21-20100301/","title":"WebCGM 2.1","rawDate":"2010-03-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Graphics/WebCGM/WG/"],"hasErrata":"https://www.w3.org/2010/WebCGM21-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-03-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["WebCGM","webcgm20"]},"webcodecs":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/webcodecs/","title":"WebCodecs","rawDate":"2024-02-06","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210408":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210408/","title":"WebCodecs","rawDate":"2021-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210427":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210427/","title":"WebCodecs","rawDate":"2021-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210430":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210430/","title":"WebCodecs","rawDate":"2021-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210503":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210503/","title":"WebCodecs","rawDate":"2021-05-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210505":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210505/","title":"WebCodecs","rawDate":"2021-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210506":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210506/","title":"WebCodecs","rawDate":"2021-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210511":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210511/","title":"WebCodecs","rawDate":"2021-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210512":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210512/","title":"WebCodecs","rawDate":"2021-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210513/","title":"WebCodecs","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210514":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210514/","title":"WebCodecs","rawDate":"2021-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210518":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210518/","title":"WebCodecs","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210520":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210520/","title":"WebCodecs","rawDate":"2021-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210521/","title":"WebCodecs","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210526/","title":"WebCodecs","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210527/","title":"WebCodecs","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210603/","title":"WebCodecs","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210604/","title":"WebCodecs","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210608/","title":"WebCodecs","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210611":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210611/","title":"WebCodecs","rawDate":"2021-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210617/","title":"WebCodecs","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210817/","title":"WebCodecs","rawDate":"2021-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210818/","title":"WebCodecs","rawDate":"2021-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210820":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210820/","title":"WebCodecs","rawDate":"2021-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210823/","title":"WebCodecs","rawDate":"2021-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210906/","title":"WebCodecs","rawDate":"2021-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210908/","title":"WebCodecs","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210921/","title":"WebCodecs","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210923":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210923/","title":"WebCodecs","rawDate":"2021-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210924":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210924/","title":"WebCodecs","rawDate":"2021-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210928/","title":"WebCodecs","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20210930/","title":"WebCodecs","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20211006/","title":"WebCodecs","rawDate":"2021-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20211020/","title":"WebCodecs","rawDate":"2021-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211112":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20211112/","title":"WebCodecs","rawDate":"2021-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20211117/","title":"WebCodecs","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211129":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20211129/","title":"WebCodecs","rawDate":"2021-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-20211216/","title":"WebCodecs","rawDate":"2021-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220125/","title":"WebCodecs","rawDate":"2022-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220126/","title":"WebCodecs","rawDate":"2022-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220209/","title":"WebCodecs","rawDate":"2022-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220216/","title":"WebCodecs","rawDate":"2022-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220504/","title":"WebCodecs","rawDate":"2022-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220524/","title":"WebCodecs","rawDate":"2022-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220802/","title":"WebCodecs","rawDate":"2022-08-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220808/","title":"WebCodecs","rawDate":"2022-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220809/","title":"WebCodecs","rawDate":"2022-08-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220810/","title":"WebCodecs","rawDate":"2022-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220816/","title":"WebCodecs","rawDate":"2022-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220817/","title":"WebCodecs","rawDate":"2022-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220818/","title":"WebCodecs","rawDate":"2022-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220819/","title":"WebCodecs","rawDate":"2022-08-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220823/","title":"WebCodecs","rawDate":"2022-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220829/","title":"WebCodecs","rawDate":"2022-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220831/","title":"WebCodecs","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220903/","title":"WebCodecs","rawDate":"2022-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220906/","title":"WebCodecs","rawDate":"2022-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220907/","title":"WebCodecs","rawDate":"2022-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220919/","title":"WebCodecs","rawDate":"2022-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20220928/","title":"WebCodecs","rawDate":"2022-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221003/","title":"WebCodecs","rawDate":"2022-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221006/","title":"WebCodecs","rawDate":"2022-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221010/","title":"WebCodecs","rawDate":"2022-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221014/","title":"WebCodecs","rawDate":"2022-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221017/","title":"WebCodecs","rawDate":"2022-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221018/","title":"WebCodecs","rawDate":"2022-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221019/","title":"WebCodecs","rawDate":"2022-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221020/","title":"WebCodecs","rawDate":"2022-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221021/","title":"WebCodecs","rawDate":"2022-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221027/","title":"WebCodecs","rawDate":"2022-10-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221101/","title":"WebCodecs","rawDate":"2022-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221122/","title":"WebCodecs","rawDate":"2022-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webcodecs-20221212/","title":"WebCodecs","rawDate":"2022-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230104/","title":"WebCodecs","rawDate":"2023-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230125/","title":"WebCodecs","rawDate":"2023-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230130/","title":"WebCodecs","rawDate":"2023-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230201/","title":"WebCodecs","rawDate":"2023-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230202/","title":"WebCodecs","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230208/","title":"WebCodecs","rawDate":"2023-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230209/","title":"WebCodecs","rawDate":"2023-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230310/","title":"WebCodecs","rawDate":"2023-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230313/","title":"WebCodecs","rawDate":"2023-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230317/","title":"WebCodecs","rawDate":"2023-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230403/","title":"WebCodecs","rawDate":"2023-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230419/","title":"WebCodecs","rawDate":"2023-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230427/","title":"WebCodecs","rawDate":"2023-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230511/","title":"WebCodecs","rawDate":"2023-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230628/","title":"WebCodecs","rawDate":"2023-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230705/","title":"WebCodecs","rawDate":"2023-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230706/","title":"WebCodecs","rawDate":"2023-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230707/","title":"WebCodecs","rawDate":"2023-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230708/","title":"WebCodecs","rawDate":"2023-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230719/","title":"WebCodecs","rawDate":"2023-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230720/","title":"WebCodecs","rawDate":"2023-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230726/","title":"WebCodecs","rawDate":"2023-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230817/","title":"WebCodecs","rawDate":"2023-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230821/","title":"WebCodecs","rawDate":"2023-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230825/","title":"WebCodecs","rawDate":"2023-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230826/","title":"WebCodecs","rawDate":"2023-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230928/","title":"WebCodecs","rawDate":"2023-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20230930/","title":"WebCodecs","rawDate":"2023-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20231012/","title":"WebCodecs","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20231026/","title":"WebCodecs","rawDate":"2023-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20231028/","title":"WebCodecs","rawDate":"2023-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20231101/","title":"WebCodecs","rawDate":"2023-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20231103/","title":"WebCodecs","rawDate":"2023-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2023/WD-webcodecs-20231123/","title":"WebCodecs","rawDate":"2023-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2024/WD-webcodecs-20240108/","title":"WebCodecs","rawDate":"2024-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba","Eugene Zemtsov"],"href":"https://www.w3.org/TR/2024/WD-webcodecs-20240206/","title":"WebCodecs","rawDate":"2024-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-aac-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-aac-codec-registration/","title":"AAC WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/aac_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-aac-codec-registration-20211216/","title":"AAC WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220126/","title":"AAC WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220209/","title":"AAC WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220216/","title":"AAC WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220321/","title":"AAC WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220504/","title":"AAC WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220524/","title":"AAC WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220802/","title":"AAC WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220808/","title":"AAC WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220809/","title":"AAC WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220810/","title":"AAC WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220816/","title":"AAC WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220817/","title":"AAC WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220818/","title":"AAC WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220819/","title":"AAC WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220823/","title":"AAC WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220829/","title":"AAC WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220831/","title":"AAC WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220903/","title":"AAC WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220906/","title":"AAC WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220907/","title":"AAC WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220920/","title":"AAC WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20220928/","title":"AAC WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221003/","title":"AAC WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221006/","title":"AAC WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221010/","title":"AAC WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221014/","title":"AAC WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221017/","title":"AAC WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221018/","title":"AAC WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221019/","title":"AAC WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221020/","title":"AAC WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221021/","title":"AAC WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221027/","title":"AAC WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221101/","title":"AAC WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221122/","title":"AAC WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-aac-codec-registration-20221212/","title":"AAC WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230104/","title":"AAC WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230125/","title":"AAC WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230130/","title":"AAC WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230201/","title":"AAC WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230202/","title":"AAC WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230208/","title":"AAC WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230209/","title":"AAC WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230310/","title":"AAC WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230313/","title":"AAC WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230317/","title":"AAC WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230403/","title":"AAC WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230419/","title":"AAC WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230427/","title":"AAC WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230511/","title":"AAC WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230628/","title":"AAC WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230705/","title":"AAC WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230706/","title":"AAC WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230707/","title":"AAC WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230708/","title":"AAC WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230719/","title":"AAC WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230720/","title":"AAC WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230726/","title":"AAC WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230817/","title":"AAC WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230821/","title":"AAC WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230825/","title":"AAC WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230826/","title":"AAC WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230928/","title":"AAC WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20230930/","title":"AAC WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231012/","title":"AAC WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231026/","title":"AAC WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231028/","title":"AAC WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231101/","title":"AAC WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231102/","title":"AAC WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231103/","title":"AAC WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-aac-codec-registration-20231123/","title":"AAC WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240108/","title":"AAC WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-aac-codec-registration-20240206/","title":"AAC WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-alaw-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-alaw-codec-registration/","title":"A-law PCM WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/alaw_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-alaw-codec-registration-20211216/","title":"A-law PCM WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220126/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220209/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220216/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220321/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220504/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220524/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220802/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220808/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220809/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220810/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220816/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220817/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220818/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220819/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220823/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220829/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220831/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220903/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220906/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220907/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220920/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20220928/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221003/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221006/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221010/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221014/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221017/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221018/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221019/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221020/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221021/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221027/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221101/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221122/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-alaw-codec-registration-20221212/","title":"A-law PCM WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230104/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230125/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230130/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230201/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230202/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230208/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230209/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230310/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230313/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230317/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230403/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230419/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230427/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230511/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230628/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230705/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230706/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230707/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230708/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230719/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230720/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230726/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230817/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230821/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230825/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230826/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230928/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20230930/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231012/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231026/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231028/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231101/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231102/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231103/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-alaw-codec-registration-20231123/","title":"A-law PCM WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240108/","title":"A-law PCM WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-alaw-codec-registration-20240206/","title":"A-law PCM WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-av1-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-av1-codec-registration/","title":"AV1 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/av1_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-av1-codec-registration-20211216/","title":"AV1 WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220126/","title":"AV1 WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220209/","title":"AV1 WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220216/","title":"AV1 WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220321/","title":"AV1 WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220504/","title":"AV1 WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220524/","title":"AV1 WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220802/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220808/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220809/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220810/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220816/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220817/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220818/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220819/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220823/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220829/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220831/","title":"AV1 WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220903/","title":"AV1 WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220906/","title":"AV1 WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220907/","title":"AV1 WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220920/","title":"AV1 WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20220928/","title":"AV1 WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221003/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221006/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221010/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221014/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221017/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221018/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221019/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221020/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221021/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221027/","title":"AV1 WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221101/","title":"AV1 WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221122/","title":"AV1 WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-av1-codec-registration-20221212/","title":"AV1 WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230104/","title":"AV1 WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230125/","title":"AV1 WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230130/","title":"AV1 WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230201/","title":"AV1 WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230202/","title":"AV1 WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230208/","title":"AV1 WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230209/","title":"AV1 WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230310/","title":"AV1 WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230313/","title":"AV1 WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230317/","title":"AV1 WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230403/","title":"AV1 WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230419/","title":"AV1 WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230427/","title":"AV1 WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230511/","title":"AV1 WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230628/","title":"AV1 WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230705/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230706/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230707/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230708/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230719/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230720/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230726/","title":"AV1 WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230817/","title":"AV1 WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230821/","title":"AV1 WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230825/","title":"AV1 WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230826/","title":"AV1 WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230928/","title":"AV1 WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20230930/","title":"AV1 WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231012/","title":"AV1 WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231026/","title":"AV1 WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231028/","title":"AV1 WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231101/","title":"AV1 WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231102/","title":"AV1 WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231103/","title":"AV1 WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-av1-codec-registration-20231123/","title":"AV1 WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240108/","title":"AV1 WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-av1-codec-registration-20240206/","title":"AV1 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-avc-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-avc-codec-registration/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/avc_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210408":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210408/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210513/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210514":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210514/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210518":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210518/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210520":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210520/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210521/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210526/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210527/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210603/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210604/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210608/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210611":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210611/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210617/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210817/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210818/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210820":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210820/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210823/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210906/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210908/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210921/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210923":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210923/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210924":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210924/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210928/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20210930/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211006/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-avc-codec-registration-20211020/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-avc-codec-registration-20211216/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220125/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220126/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220209/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220216/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220321/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220504/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220524/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220802/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220808/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220809/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220810/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220816/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220817/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220818/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220819/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220823/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220829/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220831/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220903/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220906/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220907/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220919/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-09-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20220928/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221003/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221006/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221010/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221014/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221017/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221018/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221019/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221020/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221021/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221027/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221101/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221122/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-avc-codec-registration-20221212/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230104/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230125/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230130/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230201/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230202/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230208/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230209/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230310/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230313/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230317/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230403/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230419/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230427/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230511/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230628/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230705/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230706/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230707/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230708/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230719/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230720/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230726/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230817/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230821/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230825/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230826/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230928/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20230930/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231012/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231026/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231028/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231101/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231102/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231103/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-avc-codec-registration-20231123/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240108/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-avc-codec-registration-20240206/","title":"AVC (H.264) WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-codec-registry":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-codec-registry/","title":"WebCodecs Codec Registry","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/codec_registry.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210408":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210408/","title":"WebCodecs Codec Registry","rawDate":"2021-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210513":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210513/","title":"WebCodecs Codec Registry","rawDate":"2021-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210514":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210514/","title":"WebCodecs Codec Registry","rawDate":"2021-05-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210518":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210518/","title":"WebCodecs Codec Registry","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210520":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210520/","title":"WebCodecs Codec Registry","rawDate":"2021-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210521":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210521/","title":"WebCodecs Codec Registry","rawDate":"2021-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210526/","title":"WebCodecs Codec Registry","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210527/","title":"WebCodecs Codec Registry","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210603/","title":"WebCodecs Codec Registry","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210604/","title":"WebCodecs Codec Registry","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210608/","title":"WebCodecs Codec Registry","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210611":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210611/","title":"WebCodecs Codec Registry","rawDate":"2021-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210617/","title":"WebCodecs Codec Registry","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210817/","title":"WebCodecs Codec Registry","rawDate":"2021-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210818/","title":"WebCodecs Codec Registry","rawDate":"2021-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210820":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210820/","title":"WebCodecs Codec Registry","rawDate":"2021-08-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210823/","title":"WebCodecs Codec Registry","rawDate":"2021-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210906/","title":"WebCodecs Codec Registry","rawDate":"2021-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210908/","title":"WebCodecs Codec Registry","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210921/","title":"WebCodecs Codec Registry","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210923":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210923/","title":"WebCodecs Codec Registry","rawDate":"2021-09-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210924":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210924/","title":"WebCodecs Codec Registry","rawDate":"2021-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210928/","title":"WebCodecs Codec Registry","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20210930/","title":"WebCodecs Codec Registry","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211006/","title":"WebCodecs Codec Registry","rawDate":"2021-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webcodecs-codec-registry-20211020/","title":"WebCodecs Codec Registry","rawDate":"2021-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-codec-registry-20211216/","title":"WebCodecs Codec Registry","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220125/","title":"WebCodecs Codec Registry","rawDate":"2022-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220126/","title":"WebCodecs Codec Registry","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220209/","title":"WebCodecs Codec Registry","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220216/","title":"WebCodecs Codec Registry","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220321/","title":"WebCodecs Codec Registry","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220504/","title":"WebCodecs Codec Registry","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220524/","title":"WebCodecs Codec Registry","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220802/","title":"WebCodecs Codec Registry","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220808/","title":"WebCodecs Codec Registry","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220809/","title":"WebCodecs Codec Registry","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220810/","title":"WebCodecs Codec Registry","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220816/","title":"WebCodecs Codec Registry","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220817/","title":"WebCodecs Codec Registry","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220818/","title":"WebCodecs Codec Registry","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220819/","title":"WebCodecs Codec Registry","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220823/","title":"WebCodecs Codec Registry","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220829/","title":"WebCodecs Codec Registry","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220831/","title":"WebCodecs Codec Registry","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220903/","title":"WebCodecs Codec Registry","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220906/","title":"WebCodecs Codec Registry","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220907/","title":"WebCodecs Codec Registry","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220919/","title":"WebCodecs Codec Registry","rawDate":"2022-09-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20220928/","title":"WebCodecs Codec Registry","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221003/","title":"WebCodecs Codec Registry","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221006/","title":"WebCodecs Codec Registry","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-codec-registry-20221010/","title":"WebCodecs Codec Registry","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-flac-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-flac-codec-registration/","title":"FLAC WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/flac_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-flac-codec-registration-20211216/","title":"FLAC WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220126/","title":"FLAC WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220209/","title":"FLAC WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220216/","title":"FLAC WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220321/","title":"FLAC WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220504/","title":"FLAC WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220524/","title":"FLAC WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220802/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220808/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220809/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220810/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220816/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220817/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220818/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220819/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220823/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220829/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220831/","title":"FLAC WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220903/","title":"FLAC WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220906/","title":"FLAC WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220907/","title":"FLAC WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220920/","title":"FLAC WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20220928/","title":"FLAC WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221003/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221006/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221010/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221014/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221017/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221018/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221019/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221020/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221021/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221027/","title":"FLAC WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221101/","title":"FLAC WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221122/","title":"FLAC WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-flac-codec-registration-20221212/","title":"FLAC WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230104/","title":"FLAC WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230125/","title":"FLAC WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230130/","title":"FLAC WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230201/","title":"FLAC WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230202/","title":"FLAC WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230208/","title":"FLAC WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230209/","title":"FLAC WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230310/","title":"FLAC WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230313/","title":"FLAC WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230317/","title":"FLAC WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230403/","title":"FLAC WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230419/","title":"FLAC WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230427/","title":"FLAC WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230511/","title":"FLAC WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230628/","title":"FLAC WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230705/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230706/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230707/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230708/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230719/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230720/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230726/","title":"FLAC WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230817/","title":"FLAC WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230821/","title":"FLAC WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230825/","title":"FLAC WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230826/","title":"FLAC WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230928/","title":"FLAC WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20230930/","title":"FLAC WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231012/","title":"FLAC WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231026/","title":"FLAC WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231028/","title":"FLAC WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231101/","title":"FLAC WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231102/","title":"FLAC WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231103/","title":"FLAC WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-flac-codec-registration-20231123/","title":"FLAC WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240108/","title":"FLAC WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-flac-codec-registration-20240206/","title":"FLAC WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-hevc-codec-registration":{"href":"https://www.w3.org/TR/webcodecs-hevc-codec-registration/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/hevc_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220927":{"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20220927/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-09-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"]},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221003/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221006/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221010/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221014/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221017/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221018/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221019/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221020/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221021/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221027/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221101/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221122/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-hevc-codec-registration-20221212/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230104/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230125/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230130/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230201/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230202/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230208/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230209/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230310/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230313/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230317/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230403/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230419/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230427/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230511/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230628/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230705/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230706/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230707/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230708/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230719/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230720/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230726/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230817/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230821/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230825/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230826/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230928/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20230930/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231012/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231026/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231028/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231101/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231102/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231103/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-hevc-codec-registration-20231123/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240108/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-hevc-codec-registration-20240206/","title":"HEVC (H.265) WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs","authors":["Paul Adenot","Bernard Aboba"]},"webcodecs-mp3-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-mp3-codec-registration/","title":"MP3 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/mp3_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-mp3-codec-registration-20211216/","title":"MP3 WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220126/","title":"MP3 WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220209/","title":"MP3 WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220216/","title":"MP3 WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220321/","title":"MP3 WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220504/","title":"MP3 WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220524/","title":"MP3 WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220802/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220808/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220809/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220810/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220816/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220817/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220818/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220819/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220823/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220829/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220831/","title":"MP3 WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220903/","title":"MP3 WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220906/","title":"MP3 WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220907/","title":"MP3 WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220919/","title":"MP3 WebCodecs Registration","rawDate":"2022-09-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20220928/","title":"MP3 WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221003/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221006/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221010/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221014/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221017/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221018/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221019/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221020/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221021/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221027/","title":"MP3 WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221101/","title":"MP3 WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221122/","title":"MP3 WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-mp3-codec-registration-20221212/","title":"MP3 WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230104/","title":"MP3 WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230125/","title":"MP3 WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230130/","title":"MP3 WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230201/","title":"MP3 WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230202/","title":"MP3 WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230208/","title":"MP3 WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230209/","title":"MP3 WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230310/","title":"MP3 WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230313/","title":"MP3 WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230317/","title":"MP3 WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230403/","title":"MP3 WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230419/","title":"MP3 WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230427/","title":"MP3 WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230511/","title":"MP3 WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230628/","title":"MP3 WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230705/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230706/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230707/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230708/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230719/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230720/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230726/","title":"MP3 WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230817/","title":"MP3 WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230821/","title":"MP3 WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230825/","title":"MP3 WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230826/","title":"MP3 WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230928/","title":"MP3 WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20230930/","title":"MP3 WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231012/","title":"MP3 WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231026/","title":"MP3 WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231028/","title":"MP3 WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231101/","title":"MP3 WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231102/","title":"MP3 WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231103/","title":"MP3 WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-mp3-codec-registration-20231123/","title":"MP3 WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240108/","title":"MP3 WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-mp3-codec-registration-20240206/","title":"MP3 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-opus-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-opus-codec-registration/","title":"Opus WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/opus_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-opus-codec-registration-20211216/","title":"Opus WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220126/","title":"Opus WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220209/","title":"Opus WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220216/","title":"Opus WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220321/","title":"Opus WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220504/","title":"Opus WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220524/","title":"Opus WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220802/","title":"Opus WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220808/","title":"Opus WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220809/","title":"Opus WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220810/","title":"Opus WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220816/","title":"Opus WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220817/","title":"Opus WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220818/","title":"Opus WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220819/","title":"Opus WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220823/","title":"Opus WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220829/","title":"Opus WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220831/","title":"Opus WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220903/","title":"Opus WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220906/","title":"Opus WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220907/","title":"Opus WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220920/","title":"Opus WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20220928/","title":"Opus WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221003/","title":"Opus WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221006/","title":"Opus WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221010/","title":"Opus WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221014/","title":"Opus WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221017/","title":"Opus WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221018/","title":"Opus WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221019/","title":"Opus WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221020/","title":"Opus WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221021/","title":"Opus WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221027/","title":"Opus WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221101/","title":"Opus WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221122/","title":"Opus WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-opus-codec-registration-20221212/","title":"Opus WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230104/","title":"Opus WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230125/","title":"Opus WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230130/","title":"Opus WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230201/","title":"Opus WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230202/","title":"Opus WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230208/","title":"Opus WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230209/","title":"Opus WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230310/","title":"Opus WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230313/","title":"Opus WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230317/","title":"Opus WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230403/","title":"Opus WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230419/","title":"Opus WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230427/","title":"Opus WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230511/","title":"Opus WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230628/","title":"Opus WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230705/","title":"Opus WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230706/","title":"Opus WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230707/","title":"Opus WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230708/","title":"Opus WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230719/","title":"Opus WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230720/","title":"Opus WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230726/","title":"Opus WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230817/","title":"Opus WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230821/","title":"Opus WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230825/","title":"Opus WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230826/","title":"Opus WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230928/","title":"Opus WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20230930/","title":"Opus WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231012/","title":"Opus WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231026/","title":"Opus WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231028/","title":"Opus WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231101/","title":"Opus WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231102/","title":"Opus WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231103/","title":"Opus WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-opus-codec-registration-20231123/","title":"Opus WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240108/","title":"Opus WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-opus-codec-registration-20240206/","title":"Opus WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-pcm-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-pcm-codec-registration/","title":"Linear PCM WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/pcm_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-pcm-codec-registration-20211216/","title":"Linear PCM WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220126/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220209/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220216/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220321/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220504/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220524/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220802/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220808/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220809/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220810/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220816/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220817/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220818/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220819/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220823/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220829/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220831/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220903/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220906/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220907/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220920/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20220928/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221003/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221006/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221010/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221014/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221017/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221018/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221019/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221020/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221021/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221027/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221101/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221122/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-pcm-codec-registration-20221212/","title":"Linear PCM WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230104/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230125/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230130/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230201/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230202/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230208/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230209/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230310/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230313/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230317/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230403/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230419/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230427/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230511/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230628/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230705/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230706/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230707/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230708/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230719/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230720/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230726/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230817/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230821/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230825/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230826/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230928/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20230930/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231012/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231026/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231028/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231101/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231102/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231103/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-pcm-codec-registration-20231123/","title":"Linear PCM WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240108/","title":"Linear PCM WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-pcm-codec-registration-20240206/","title":"Linear PCM WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-ulaw-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-ulaw-codec-registration/","title":"u-law PCM WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/ulaw_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-ulaw-codec-registration-20211216/","title":"u-law PCM WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220126/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220209/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220216/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220321/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220504/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220524/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220802/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220808/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220809/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220810/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220816/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220817/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220818/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220819/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220823/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220829/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220831/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220903/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220906/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220907/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220920/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20220928/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221003/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221006/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221010/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221014/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221017/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221018/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221019/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221020/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221021/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221027/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221101/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221122/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-ulaw-codec-registration-20221212/","title":"u-law PCM WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230104/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230125/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230130/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230201/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230202/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230208/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230209/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230310/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230313/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230317/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230403/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230419/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230427/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230511/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230628/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230705/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230706/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230707/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230708/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230719/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230720/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230726/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230817/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230821/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230825/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230826/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230928/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20230930/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231012/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231026/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231028/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231101/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231102/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231103/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-ulaw-codec-registration-20231123/","title":"u-law PCM WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240108/","title":"u-law PCM WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-ulaw-codec-registration-20240206/","title":"u-law PCM WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-vorbis-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-vorbis-codec-registration/","title":"Vorbis WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/vorbis_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-vorbis-codec-registration-20211216/","title":"Vorbis WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220126/","title":"Vorbis WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220209/","title":"Vorbis WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220216/","title":"Vorbis WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220321/","title":"Vorbis WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220504/","title":"Vorbis WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220524/","title":"Vorbis WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220802/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220808/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220809/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220810/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220816/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220817/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220818/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220819/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220823/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220829/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220831/","title":"Vorbis WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220903/","title":"Vorbis WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220906/","title":"Vorbis WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220907/","title":"Vorbis WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220919/","title":"Vorbis WebCodecs Registration","rawDate":"2022-09-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20220928/","title":"Vorbis WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221003/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221006/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221010/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221014/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221017/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221018/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221019/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221020/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221021/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221027/","title":"Vorbis WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221101/","title":"Vorbis WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221122/","title":"Vorbis WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vorbis-codec-registration-20221212/","title":"Vorbis WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230104/","title":"Vorbis WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230125/","title":"Vorbis WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230130/","title":"Vorbis WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230201/","title":"Vorbis WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230202/","title":"Vorbis WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230208/","title":"Vorbis WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230209/","title":"Vorbis WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230310/","title":"Vorbis WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230313/","title":"Vorbis WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230317/","title":"Vorbis WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230403/","title":"Vorbis WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230419/","title":"Vorbis WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230427/","title":"Vorbis WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230511/","title":"Vorbis WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230628/","title":"Vorbis WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230705/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230706/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230707/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230708/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230719/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230720/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230726/","title":"Vorbis WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230817/","title":"Vorbis WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230821/","title":"Vorbis WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230825/","title":"Vorbis WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230826/","title":"Vorbis WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230928/","title":"Vorbis WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20230930/","title":"Vorbis WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231012/","title":"Vorbis WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231026/","title":"Vorbis WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231028/","title":"Vorbis WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231101/","title":"Vorbis WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231102/","title":"Vorbis WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231103/","title":"Vorbis WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vorbis-codec-registration-20231123/","title":"Vorbis WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240108/","title":"Vorbis WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-vorbis-codec-registration-20240206/","title":"Vorbis WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-vp8-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-vp8-codec-registration/","title":"VP8 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/vp8_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-vp8-codec-registration-20211216/","title":"VP8 WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220126/","title":"VP8 WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220209/","title":"VP8 WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220216/","title":"VP8 WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220321/","title":"VP8 WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220504/","title":"VP8 WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220524/","title":"VP8 WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220802/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220808/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220809":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220809/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220810/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220816/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220817/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220818/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220819/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220823/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220829/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220831/","title":"VP8 WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220903/","title":"VP8 WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220906/","title":"VP8 WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220907/","title":"VP8 WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220920/","title":"VP8 WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20220928/","title":"VP8 WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221003/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221006/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221010/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221014/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221017/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221018/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221019/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221020/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221021/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221027/","title":"VP8 WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221101/","title":"VP8 WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221122/","title":"VP8 WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp8-codec-registration-20221212/","title":"VP8 WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230104/","title":"VP8 WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230125/","title":"VP8 WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230130/","title":"VP8 WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230201/","title":"VP8 WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230202/","title":"VP8 WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230208/","title":"VP8 WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230209/","title":"VP8 WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230310/","title":"VP8 WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230313/","title":"VP8 WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230317/","title":"VP8 WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230403/","title":"VP8 WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230419/","title":"VP8 WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230427/","title":"VP8 WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230511/","title":"VP8 WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230628/","title":"VP8 WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230705/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230706/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230707/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230708/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230719/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230720/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230726/","title":"VP8 WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230817/","title":"VP8 WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230821/","title":"VP8 WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230825/","title":"VP8 WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230826/","title":"VP8 WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230928/","title":"VP8 WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20230930/","title":"VP8 WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231012/","title":"VP8 WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231026/","title":"VP8 WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231028/","title":"VP8 WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231101/","title":"VP8 WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231102/","title":"VP8 WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231103/","title":"VP8 WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp8-codec-registration-20231123/","title":"VP8 WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240108/","title":"VP8 WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-vp8-codec-registration-20240206/","title":"VP8 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcodecs-vp9-codec-registration":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/webcodecs-vp9-codec-registration/","title":"VP9 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webcodecs/vp9_codec_registration.html","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20211216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webcodecs-vp9-codec-registration-20211216/","title":"VP9 WebCodecs Registration","rawDate":"2021-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220126/","title":"VP9 WebCodecs Registration","rawDate":"2022-01-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220209/","title":"VP9 WebCodecs Registration","rawDate":"2022-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220216":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220216/","title":"VP9 WebCodecs Registration","rawDate":"2022-02-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220321/","title":"VP9 WebCodecs Registration","rawDate":"2022-03-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220504":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220504/","title":"VP9 WebCodecs Registration","rawDate":"2022-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220524":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220524/","title":"VP9 WebCodecs Registration","rawDate":"2022-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220802":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220802/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220808":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220808/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220810/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220816/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220817/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220818":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220818/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220819/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220823":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220823/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220829/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220831/","title":"VP9 WebCodecs Registration","rawDate":"2022-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220903":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220903/","title":"VP9 WebCodecs Registration","rawDate":"2022-09-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220906":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220906/","title":"VP9 WebCodecs Registration","rawDate":"2022-09-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220907/","title":"VP9 WebCodecs Registration","rawDate":"2022-09-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220920/","title":"VP9 WebCodecs Registration","rawDate":"2022-09-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20220928/","title":"VP9 WebCodecs Registration","rawDate":"2022-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221003/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221006/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221010":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221010/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221014":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221014/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221017/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221018":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221018/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221019/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221020/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221021":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221021/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221027":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221027/","title":"VP9 WebCodecs Registration","rawDate":"2022-10-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Chris Cunningham","Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221101/","title":"VP9 WebCodecs Registration","rawDate":"2022-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221122":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221122/","title":"VP9 WebCodecs Registration","rawDate":"2022-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221212":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webcodecs-vp9-codec-registration-20221212/","title":"VP9 WebCodecs Registration","rawDate":"2022-12-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230104/","title":"VP9 WebCodecs Registration","rawDate":"2023-01-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230125/","title":"VP9 WebCodecs Registration","rawDate":"2023-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230130":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230130/","title":"VP9 WebCodecs Registration","rawDate":"2023-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230201":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230201/","title":"VP9 WebCodecs Registration","rawDate":"2023-02-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230202/","title":"VP9 WebCodecs Registration","rawDate":"2023-02-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230208":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230208/","title":"VP9 WebCodecs Registration","rawDate":"2023-02-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230209/","title":"VP9 WebCodecs Registration","rawDate":"2023-02-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230310":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230310/","title":"VP9 WebCodecs Registration","rawDate":"2023-03-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230313":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230313/","title":"VP9 WebCodecs Registration","rawDate":"2023-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230317/","title":"VP9 WebCodecs Registration","rawDate":"2023-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230403":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230403/","title":"VP9 WebCodecs Registration","rawDate":"2023-04-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230419/","title":"VP9 WebCodecs Registration","rawDate":"2023-04-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230427/","title":"VP9 WebCodecs Registration","rawDate":"2023-04-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230511/","title":"VP9 WebCodecs Registration","rawDate":"2023-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230628":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230628/","title":"VP9 WebCodecs Registration","rawDate":"2023-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230705":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230705/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230706/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230707":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230707/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230708":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230708/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230719":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230719/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230720/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230726/","title":"VP9 WebCodecs Registration","rawDate":"2023-07-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230817":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230817/","title":"VP9 WebCodecs Registration","rawDate":"2023-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230821":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230821/","title":"VP9 WebCodecs Registration","rawDate":"2023-08-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230825":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230825/","title":"VP9 WebCodecs Registration","rawDate":"2023-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230826":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230826/","title":"VP9 WebCodecs Registration","rawDate":"2023-08-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230928/","title":"VP9 WebCodecs Registration","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230930":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20230930/","title":"VP9 WebCodecs Registration","rawDate":"2023-09-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231012/","title":"VP9 WebCodecs Registration","rawDate":"2023-10-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231026/","title":"VP9 WebCodecs Registration","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231028":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231028/","title":"VP9 WebCodecs Registration","rawDate":"2023-10-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231101":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231101/","title":"VP9 WebCodecs Registration","rawDate":"2023-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231102/","title":"VP9 WebCodecs Registration","rawDate":"2023-11-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231103/","title":"VP9 WebCodecs Registration","rawDate":"2023-11-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231123":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webcodecs-vp9-codec-registration-20231123/","title":"VP9 WebCodecs Registration","rawDate":"2023-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240108/","title":"VP9 WebCodecs Registration","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Paul Adenot","Bernard Aboba"],"href":"https://www.w3.org/TR/2024/DNOTE-webcodecs-vp9-codec-registration-20240206/","title":"VP9 WebCodecs Registration","rawDate":"2024-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/media-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webcodecs"},"webcrypto-key-discovery":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/webcrypto-key-discovery/","title":"WebCrypto Key Discovery","rawDate":"2016-03-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130108":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130108/","title":"WebCrypto Key Discovery","rawDate":"2013-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130822":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/2013/WD-webcrypto-key-discovery-20130822/","title":"WebCrypto Key Discovery","rawDate":"2013-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["Mark Watson"],"href":"https://www.w3.org/TR/2016/NOTE-webcrypto-key-discovery-20160329/","title":"WebCrypto Key Discovery","rawDate":"2016-03-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://dvcs.w3.org/hg/webcrypto-keydiscovery/raw-file/tip/Overview.html","isRetired":true},"webcrypto-usecases":{"authors":["Arun Ranganathan"],"href":"https://www.w3.org/TR/webcrypto-usecases/","title":"Web Cryptography API Use Cases","rawDate":"2013-09-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130108":{"authors":["Arun Ranganathan"],"href":"https://www.w3.org/TR/2013/WD-webcrypto-usecases-20130108/","title":"Web Cryptography API Use Cases","rawDate":"2013-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Arun Ranganathan"],"href":"https://www.w3.org/TR/2013/NOTE-webcrypto-usecases-20130910/","title":"Web Cryptography API Use Cases","rawDate":"2013-09-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2012/webcrypto/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://dvcs.w3.org/hg/webcrypto-usecases/raw-file/tip/Overview.html"},"webdatabase":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/webdatabase/","title":"Web SQL Database","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20090910":{"status":"WD","rawDate":"2009-09-10","href":"https://www.w3.org/TR/2009/WD-webdatabase-20090910/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-webdatabase-20091029/","source":"./data/w3c-specs.txt"},"20091222":{"status":"WD","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/WD-webdatabase-20091222/","source":"./data/w3c-specs.txt"},"20101118":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2010/NOTE-webdatabase-20101118/","title":"Web SQL Database","rawDate":"2010-11-18","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-11-18","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"webdriver":{"aliasOf":"webdriver1"},"webdriver1":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/webdriver1/","title":"WebDriver","rawDate":"2018-06-05","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/webdriver/","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120710":{"status":"WD","rawDate":"2012-07-10","href":"https://www.w3.org/TR/2012/WD-webdriver-20120710/","source":"./data/w3c-specs.txt"},"20130117":{"status":"WD","rawDate":"2013-01-17","href":"https://www.w3.org/TR/2013/WD-webdriver-20130117/","source":"./data/w3c-specs.txt"},"20130312":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2013/WD-webdriver-20130312/","title":"WebDriver","rawDate":"2013-03-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150803":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150803/","title":"WebDriver","rawDate":"2015-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150808":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150808/","title":"WebDriver","rawDate":"2015-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150827":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150827/","title":"WebDriver","rawDate":"2015-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150902":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150902/","title":"WebDriver","rawDate":"2015-09-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150909":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150909/","title":"WebDriver","rawDate":"2015-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150915":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150915/","title":"WebDriver","rawDate":"2015-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150918":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150918/","title":"WebDriver","rawDate":"2015-09-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150921":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20150921/","title":"WebDriver","rawDate":"2015-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151025":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20151025/","title":"WebDriver","rawDate":"2015-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151109":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2015/WD-webdriver-20151109/","title":"WebDriver","rawDate":"2015-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160120":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2016/WD-webdriver-20160120/","title":"WebDriver","rawDate":"2016-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160406":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2016/WD-webdriver-20160406/","title":"WebDriver","rawDate":"2016-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160426":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2016/WD-webdriver-20160426/","title":"WebDriver","rawDate":"2016-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160523":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2016/WD-webdriver-20160523/","title":"WebDriver","rawDate":"2016-05-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160830":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20160830/","title":"WebDriver","rawDate":"2016-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161013":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161013/","title":"WebDriver","rawDate":"2016-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161019":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161019/","title":"WebDriver","rawDate":"2016-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161021":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161021/","title":"WebDriver","rawDate":"2016-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161025":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161025/","title":"WebDriver","rawDate":"2016-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161031":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161031/","title":"WebDriver","rawDate":"2016-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161116":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161116/","title":"WebDriver","rawDate":"2016-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161129":{"href":"https://www.w3.org/TR/2016/WD-webdriver-20161129/","title":"WebDriver","rawDate":"2016-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170105":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170105/","title":"WebDriver","rawDate":"2017-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170110":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170110/","title":"WebDriver","rawDate":"2017-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170111":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170111/","title":"WebDriver","rawDate":"2017-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170112":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170112/","title":"WebDriver","rawDate":"2017-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170113":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170113/","title":"WebDriver","rawDate":"2017-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170116":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170116/","title":"WebDriver","rawDate":"2017-01-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170117/","title":"WebDriver","rawDate":"2017-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170118":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170118/","title":"WebDriver","rawDate":"2017-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170119":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170119/","title":"WebDriver","rawDate":"2017-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170120":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170120/","title":"WebDriver","rawDate":"2017-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170222":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170222/","title":"WebDriver","rawDate":"2017-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170223":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170223/","title":"WebDriver","rawDate":"2017-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170224":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170224/","title":"WebDriver","rawDate":"2017-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170228":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170228/","title":"WebDriver","rawDate":"2017-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170301":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170301/","title":"WebDriver","rawDate":"2017-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170302":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170302/","title":"WebDriver","rawDate":"2017-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170306":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170306/","title":"WebDriver","rawDate":"2017-03-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170307":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170307/","title":"WebDriver","rawDate":"2017-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170308":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170308/","title":"WebDriver","rawDate":"2017-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170312":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170312/","title":"WebDriver","rawDate":"2017-03-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170316":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170316/","title":"WebDriver","rawDate":"2017-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170320":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170320/","title":"WebDriver","rawDate":"2017-03-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170322":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170322/","title":"WebDriver","rawDate":"2017-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170324":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170324/","title":"WebDriver","rawDate":"2017-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170329":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/WD-webdriver-20170329/","title":"WebDriver","rawDate":"2017-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170330":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2017/CR-webdriver-20170330/","title":"WebDriver","rawDate":"2017-03-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180426":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2018/PR-webdriver1-20180426/","title":"WebDriver","rawDate":"2018-04-26","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180605":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2018/REC-webdriver1-20180605/","title":"WebDriver","rawDate":"2018-06-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"hasErrata":"https://github.com/w3c/webdriver/issues?q=is%3Aissue+label%3Aerrata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webdriver","hasErrata":"https://github.com/w3c/webdriver/issues?q=is%3Aissue+label%3Aerrata"},"webdriver2":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/webdriver2/","title":"WebDriver","rawDate":"2024-01-23","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webdriver/","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190912":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2019/WD-webdriver2-20190912/","title":"WebDriver","rawDate":"2019-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191124":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2019/WD-webdriver2-20191124/","title":"WebDriver - Level 2","rawDate":"2019-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200327":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200327/","title":"WebDriver","rawDate":"2020-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200519":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200519/","title":"WebDriver","rawDate":"2020-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200521":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200521/","title":"WebDriver","rawDate":"2020-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200528":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200528/","title":"WebDriver","rawDate":"2020-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200529":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200529/","title":"WebDriver","rawDate":"2020-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200604":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200604/","title":"WebDriver","rawDate":"2020-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200610":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200610/","title":"WebDriver","rawDate":"2020-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200717":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200717/","title":"WebDriver","rawDate":"2020-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200824":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2020/WD-webdriver2-20200824/","title":"WebDriver","rawDate":"2020-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2021/WD-webdriver2-20210921/","title":"WebDriver","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2021/WD-webdriver2-20211013/","title":"WebDriver","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211122":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2021/WD-webdriver2-20211122/","title":"WebDriver","rawDate":"2021-11-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220214":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220214/","title":"WebDriver","rawDate":"2022-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220315":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220315/","title":"WebDriver","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220401":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220401/","title":"WebDriver","rawDate":"2022-04-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220525":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220525/","title":"WebDriver","rawDate":"2022-05-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220615":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220615/","title":"WebDriver","rawDate":"2022-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220624/","title":"WebDriver","rawDate":"2022-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220825":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220825/","title":"WebDriver","rawDate":"2022-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20220921/","title":"WebDriver","rawDate":"2022-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221013":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20221013/","title":"WebDriver","rawDate":"2022-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221019":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20221019/","title":"WebDriver","rawDate":"2022-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221025":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20221025/","title":"WebDriver","rawDate":"2022-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221216":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2022/WD-webdriver2-20221216/","title":"WebDriver","rawDate":"2022-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230119":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230119/","title":"WebDriver","rawDate":"2023-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230222/","title":"WebDriver","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230303/","title":"WebDriver","rawDate":"2023-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230321/","title":"WebDriver","rawDate":"2023-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230607":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230607/","title":"WebDriver","rawDate":"2023-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230804":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230804/","title":"WebDriver","rawDate":"2023-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230807":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20230807/","title":"WebDriver","rawDate":"2023-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231114":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20231114/","title":"WebDriver","rawDate":"2023-11-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231213":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20231213/","title":"WebDriver","rawDate":"2023-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231215":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2023/WD-webdriver2-20231215/","title":"WebDriver","rawDate":"2023-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240104":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2024/WD-webdriver2-20240104/","title":"WebDriver","rawDate":"2024-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240115":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2024/WD-webdriver2-20240115/","title":"WebDriver","rawDate":"2024-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240123":{"authors":["Simon Stewart","David Burns"],"href":"https://www.w3.org/TR/2024/WD-webdriver2-20240123/","title":"WebDriver","rawDate":"2024-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/testing/browser/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webdriver"},"webgpu":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/webgpu/","title":"WebGPU","rawDate":"2024-02-05","status":"WD","publisher":"W3C","edDraft":"https://gpuweb.github.io/gpuweb/","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210518":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210518/","title":"WebGPU","rawDate":"2021-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210526":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210526/","title":"WebGPU","rawDate":"2021-05-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210527":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210527/","title":"WebGPU","rawDate":"2021-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210528":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210528/","title":"WebGPU","rawDate":"2021-05-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210531":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210531/","title":"WebGPU","rawDate":"2021-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210601":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210601/","title":"WebGPU","rawDate":"2021-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210602":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210602/","title":"WebGPU","rawDate":"2021-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210603":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210603/","title":"WebGPU","rawDate":"2021-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210604":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210604/","title":"WebGPU","rawDate":"2021-06-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210608":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210608/","title":"WebGPU","rawDate":"2021-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210609":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210609/","title":"WebGPU","rawDate":"2021-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210610":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210610/","title":"WebGPU","rawDate":"2021-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210614":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210614/","title":"WebGPU","rawDate":"2021-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210615":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210615/","title":"WebGPU","rawDate":"2021-06-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210616":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210616/","title":"WebGPU","rawDate":"2021-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210617":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210617/","title":"WebGPU","rawDate":"2021-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210618":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210618/","title":"WebGPU","rawDate":"2021-06-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210620":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210620/","title":"WebGPU","rawDate":"2021-06-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210622":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210622/","title":"WebGPU","rawDate":"2021-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210623":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210623/","title":"WebGPU","rawDate":"2021-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210624":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210624/","title":"WebGPU","rawDate":"2021-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210628":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210628/","title":"WebGPU","rawDate":"2021-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210629":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210629/","title":"WebGPU","rawDate":"2021-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210630":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210630/","title":"WebGPU","rawDate":"2021-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210706":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210706/","title":"WebGPU","rawDate":"2021-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210707":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210707/","title":"WebGPU","rawDate":"2021-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210708":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210708/","title":"WebGPU","rawDate":"2021-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210711":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210711/","title":"WebGPU","rawDate":"2021-07-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210712/","title":"WebGPU","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210713":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210713/","title":"WebGPU","rawDate":"2021-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210714":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210714/","title":"WebGPU","rawDate":"2021-07-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210715/","title":"WebGPU","rawDate":"2021-07-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210716":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210716/","title":"WebGPU","rawDate":"2021-07-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210717":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210717/","title":"WebGPU","rawDate":"2021-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210719":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210719/","title":"WebGPU","rawDate":"2021-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210720":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210720/","title":"WebGPU","rawDate":"2021-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210721":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210721/","title":"WebGPU","rawDate":"2021-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210722":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210722/","title":"WebGPU","rawDate":"2021-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210723":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210723/","title":"WebGPU","rawDate":"2021-07-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210726":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210726/","title":"WebGPU","rawDate":"2021-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210727":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210727/","title":"WebGPU","rawDate":"2021-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210728":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210728/","title":"WebGPU","rawDate":"2021-07-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210803":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210803/","title":"WebGPU","rawDate":"2021-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210804":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210804/","title":"WebGPU","rawDate":"2021-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210806":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210806/","title":"WebGPU","rawDate":"2021-08-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210818":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210818/","title":"WebGPU","rawDate":"2021-08-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210823/","title":"WebGPU","rawDate":"2021-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210824/","title":"WebGPU","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210825/","title":"WebGPU","rawDate":"2021-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210826":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210826/","title":"WebGPU","rawDate":"2021-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210831":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210831/","title":"WebGPU","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210908/","title":"WebGPU","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210910":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210910/","title":"WebGPU","rawDate":"2021-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210915":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210915/","title":"WebGPU","rawDate":"2021-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210917":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210917/","title":"WebGPU","rawDate":"2021-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210920":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210920/","title":"WebGPU","rawDate":"2021-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210921":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210921/","title":"WebGPU","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210928":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210928/","title":"WebGPU","rawDate":"2021-09-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210929":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20210929/","title":"WebGPU","rawDate":"2021-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211004":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211004/","title":"WebGPU","rawDate":"2021-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211006":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211006/","title":"WebGPU","rawDate":"2021-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211012":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211012/","title":"WebGPU","rawDate":"2021-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211013":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211013/","title":"WebGPU","rawDate":"2021-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211014":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211014/","title":"WebGPU","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211015":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211015/","title":"WebGPU","rawDate":"2021-10-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211018":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211018/","title":"WebGPU","rawDate":"2021-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211019":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211019/","title":"WebGPU","rawDate":"2021-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211022":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211022/","title":"WebGPU","rawDate":"2021-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211025":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211025/","title":"WebGPU","rawDate":"2021-10-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211026/","title":"WebGPU","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211028":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211028/","title":"WebGPU","rawDate":"2021-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211029":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211029/","title":"WebGPU","rawDate":"2021-10-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211101":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211101/","title":"WebGPU","rawDate":"2021-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211102":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211102/","title":"WebGPU","rawDate":"2021-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211112":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211112/","title":"WebGPU","rawDate":"2021-11-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211113":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211113/","title":"WebGPU","rawDate":"2021-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211116":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211116/","title":"WebGPU","rawDate":"2021-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211117":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Justin Fan"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211117/","title":"WebGPU","rawDate":"2021-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211118":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211118/","title":"WebGPU","rawDate":"2021-11-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211119":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211119/","title":"WebGPU","rawDate":"2021-11-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211123/","title":"WebGPU","rawDate":"2021-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211124":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211124/","title":"WebGPU","rawDate":"2021-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211125/","title":"WebGPU","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211129":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211129/","title":"WebGPU","rawDate":"2021-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211130":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211130/","title":"WebGPU","rawDate":"2021-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211201":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211201/","title":"WebGPU","rawDate":"2021-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211202":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211202/","title":"WebGPU","rawDate":"2021-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211203":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211203/","title":"WebGPU","rawDate":"2021-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211205":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211205/","title":"WebGPU","rawDate":"2021-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211206":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211206/","title":"WebGPU","rawDate":"2021-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211207/","title":"WebGPU","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211208/","title":"WebGPU","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211210":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211210/","title":"WebGPU","rawDate":"2021-12-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211214":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211214/","title":"WebGPU","rawDate":"2021-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211215/","title":"WebGPU","rawDate":"2021-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211216/","title":"WebGPU","rawDate":"2021-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211220":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211220/","title":"WebGPU","rawDate":"2021-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211221":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211221/","title":"WebGPU","rawDate":"2021-12-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211222":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211222/","title":"WebGPU","rawDate":"2021-12-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211223":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211223/","title":"WebGPU","rawDate":"2021-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211224/","title":"WebGPU","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211228":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211228/","title":"WebGPU","rawDate":"2021-12-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211229":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211229/","title":"WebGPU","rawDate":"2021-12-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211230":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2021/WD-webgpu-20211230/","title":"WebGPU","rawDate":"2021-12-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220104":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220104/","title":"WebGPU","rawDate":"2022-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220105/","title":"WebGPU","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220106":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220106/","title":"WebGPU","rawDate":"2022-01-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220107":{"authors":["Dzmitry Malyshau","Kai Ninomiya"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220107/","title":"WebGPU","rawDate":"2022-01-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220110":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220110/","title":"WebGPU","rawDate":"2022-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220111":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220111/","title":"WebGPU","rawDate":"2022-01-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220112":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220112/","title":"WebGPU","rawDate":"2022-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220113":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220113/","title":"WebGPU","rawDate":"2022-01-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220117":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220117/","title":"WebGPU","rawDate":"2022-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220118":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220118/","title":"WebGPU","rawDate":"2022-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220119":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220119/","title":"WebGPU","rawDate":"2022-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220125":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220125/","title":"WebGPU","rawDate":"2022-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220126":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220126/","title":"WebGPU","rawDate":"2022-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220127":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220127/","title":"WebGPU","rawDate":"2022-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220128":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220128/","title":"WebGPU","rawDate":"2022-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220131":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220131/","title":"WebGPU","rawDate":"2022-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220202/","title":"WebGPU","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220203/","title":"WebGPU","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220204":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220204/","title":"WebGPU","rawDate":"2022-02-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220205":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220205/","title":"WebGPU","rawDate":"2022-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220207":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220207/","title":"WebGPU","rawDate":"2022-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220208":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220208/","title":"WebGPU","rawDate":"2022-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220209":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220209/","title":"WebGPU","rawDate":"2022-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220210":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220210/","title":"WebGPU","rawDate":"2022-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220211":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220211/","title":"WebGPU","rawDate":"2022-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220214":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220214/","title":"WebGPU","rawDate":"2022-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220215/","title":"WebGPU","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220217":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220217/","title":"WebGPU","rawDate":"2022-02-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220218":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220218/","title":"WebGPU","rawDate":"2022-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220222":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220222/","title":"WebGPU","rawDate":"2022-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220223/","title":"WebGPU","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220224/","title":"WebGPU","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220225/","title":"WebGPU","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220302":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220302/","title":"WebGPU","rawDate":"2022-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220303":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220303/","title":"WebGPU","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220310":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220310/","title":"WebGPU","rawDate":"2022-03-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220315":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220315/","title":"WebGPU","rawDate":"2022-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220316":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220316/","title":"WebGPU","rawDate":"2022-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220319":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220319/","title":"WebGPU","rawDate":"2022-03-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220321":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220321/","title":"WebGPU","rawDate":"2022-03-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220323":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220323/","title":"WebGPU","rawDate":"2022-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220324/","title":"WebGPU","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220325":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220325/","title":"WebGPU","rawDate":"2022-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220326":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220326/","title":"WebGPU","rawDate":"2022-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220328/","title":"WebGPU","rawDate":"2022-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220329":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220329/","title":"WebGPU","rawDate":"2022-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220331/","title":"WebGPU","rawDate":"2022-03-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220403":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220403/","title":"WebGPU","rawDate":"2022-04-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220404":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220404/","title":"WebGPU","rawDate":"2022-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220506":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220506/","title":"WebGPU","rawDate":"2022-05-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220509":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220509/","title":"WebGPU","rawDate":"2022-05-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220510":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220510/","title":"WebGPU","rawDate":"2022-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220511":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220511/","title":"WebGPU","rawDate":"2022-05-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220512":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220512/","title":"WebGPU","rawDate":"2022-05-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220513":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220513/","title":"WebGPU","rawDate":"2022-05-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220516":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220516/","title":"WebGPU","rawDate":"2022-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220517/","title":"WebGPU","rawDate":"2022-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220518":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220518/","title":"WebGPU","rawDate":"2022-05-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220520":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220520/","title":"WebGPU","rawDate":"2022-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220521":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220521/","title":"WebGPU","rawDate":"2022-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220603":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220603/","title":"WebGPU","rawDate":"2022-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220606":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220606/","title":"WebGPU","rawDate":"2022-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220607":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220607/","title":"WebGPU","rawDate":"2022-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220608":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220608/","title":"WebGPU","rawDate":"2022-06-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220609/","title":"WebGPU","rawDate":"2022-06-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220610":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220610/","title":"WebGPU","rawDate":"2022-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220611":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220611/","title":"WebGPU","rawDate":"2022-06-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220613":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220613/","title":"WebGPU","rawDate":"2022-06-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220614":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220614/","title":"WebGPU","rawDate":"2022-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220616":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220616/","title":"WebGPU","rawDate":"2022-06-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220617/","title":"WebGPU","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220623":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220623/","title":"WebGPU","rawDate":"2022-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220624":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220624/","title":"WebGPU","rawDate":"2022-06-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220627":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220627/","title":"WebGPU","rawDate":"2022-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220628/","title":"WebGPU","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220629":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220629/","title":"WebGPU","rawDate":"2022-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220630":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220630/","title":"WebGPU","rawDate":"2022-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220706/","title":"WebGPU","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220707":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220707/","title":"WebGPU","rawDate":"2022-07-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220708":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220708/","title":"WebGPU","rawDate":"2022-07-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220803/","title":"WebGPU","rawDate":"2022-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220805":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220805/","title":"WebGPU","rawDate":"2022-08-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220812":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220812/","title":"WebGPU","rawDate":"2022-08-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220815":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220815/","title":"WebGPU","rawDate":"2022-08-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220816":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220816/","title":"WebGPU","rawDate":"2022-08-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220817":{"authors":["Dzmitry Malyshau","Kai Ninomiya","Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220817/","title":"WebGPU","rawDate":"2022-08-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220819":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220819/","title":"WebGPU","rawDate":"2022-08-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220822":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220822/","title":"WebGPU","rawDate":"2022-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220824":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220824/","title":"WebGPU","rawDate":"2022-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220825":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220825/","title":"WebGPU","rawDate":"2022-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220826":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220826/","title":"WebGPU","rawDate":"2022-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220827":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220827/","title":"WebGPU","rawDate":"2022-08-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220829/","title":"WebGPU","rawDate":"2022-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220830":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220830/","title":"WebGPU","rawDate":"2022-08-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220831/","title":"WebGPU","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220908":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220908/","title":"WebGPU","rawDate":"2022-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220913":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220913/","title":"WebGPU","rawDate":"2022-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220917":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220917/","title":"WebGPU","rawDate":"2022-09-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220930":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20220930/","title":"WebGPU","rawDate":"2022-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221003":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221003/","title":"WebGPU","rawDate":"2022-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221004":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221004/","title":"WebGPU","rawDate":"2022-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221005":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221005/","title":"WebGPU","rawDate":"2022-10-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221006":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221006/","title":"WebGPU","rawDate":"2022-10-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221007":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221007/","title":"WebGPU","rawDate":"2022-10-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221011":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221011/","title":"WebGPU","rawDate":"2022-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221017":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221017/","title":"WebGPU","rawDate":"2022-10-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221026":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221026/","title":"WebGPU","rawDate":"2022-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221117":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221117/","title":"WebGPU","rawDate":"2022-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221129":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221129/","title":"WebGPU","rawDate":"2022-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221130":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221130/","title":"WebGPU","rawDate":"2022-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221207/","title":"WebGPU","rawDate":"2022-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221208/","title":"WebGPU","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221209/","title":"WebGPU","rawDate":"2022-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221223":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221223/","title":"WebGPU","rawDate":"2022-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221230":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2022/WD-webgpu-20221230/","title":"WebGPU","rawDate":"2022-12-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230104":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230104/","title":"WebGPU","rawDate":"2023-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230118":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230118/","title":"WebGPU","rawDate":"2023-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230202":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230202/","title":"WebGPU","rawDate":"2023-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230214":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230214/","title":"WebGPU","rawDate":"2023-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230222":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230222/","title":"WebGPU","rawDate":"2023-02-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230224":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230224/","title":"WebGPU","rawDate":"2023-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230227":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230227/","title":"WebGPU","rawDate":"2023-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230228":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230228/","title":"WebGPU","rawDate":"2023-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230301":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230301/","title":"WebGPU","rawDate":"2023-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230302":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230302/","title":"WebGPU","rawDate":"2023-03-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230303/","title":"WebGPU","rawDate":"2023-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230307/","title":"WebGPU","rawDate":"2023-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230308/","title":"WebGPU","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230309":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230309/","title":"WebGPU","rawDate":"2023-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230314":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230314/","title":"WebGPU","rawDate":"2023-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230315":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230315/","title":"WebGPU","rawDate":"2023-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230317":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230317/","title":"WebGPU","rawDate":"2023-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230322":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230322/","title":"WebGPU","rawDate":"2023-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230324":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230324/","title":"WebGPU","rawDate":"2023-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230328":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230328/","title":"WebGPU","rawDate":"2023-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230406":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230406/","title":"WebGPU","rawDate":"2023-04-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230413":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230413/","title":"WebGPU","rawDate":"2023-04-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230418":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230418/","title":"WebGPU","rawDate":"2023-04-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230419":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230419/","title":"WebGPU","rawDate":"2023-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230421":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230421/","title":"WebGPU","rawDate":"2023-04-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230424":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230424/","title":"WebGPU","rawDate":"2023-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230425":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230425/","title":"WebGPU","rawDate":"2023-04-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230426":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230426/","title":"WebGPU","rawDate":"2023-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230501":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230501/","title":"WebGPU","rawDate":"2023-05-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230505":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230505/","title":"WebGPU","rawDate":"2023-05-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230508":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230508/","title":"WebGPU","rawDate":"2023-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230510":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230510/","title":"WebGPU","rawDate":"2023-05-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230519/","title":"WebGPU","rawDate":"2023-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230529":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230529/","title":"WebGPU","rawDate":"2023-05-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230601":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230601/","title":"WebGPU","rawDate":"2023-06-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230606/","title":"WebGPU","rawDate":"2023-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230614/","title":"WebGPU","rawDate":"2023-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230621":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230621/","title":"WebGPU","rawDate":"2023-06-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230626":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230626/","title":"WebGPU","rawDate":"2023-06-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230712/","title":"WebGPU","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230717":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230717/","title":"WebGPU","rawDate":"2023-07-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230721":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230721/","title":"WebGPU","rawDate":"2023-07-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230726":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230726/","title":"WebGPU","rawDate":"2023-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230912":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20230912/","title":"WebGPU","rawDate":"2023-09-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231002":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231002/","title":"WebGPU","rawDate":"2023-10-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231009":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231009/","title":"WebGPU","rawDate":"2023-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231010":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231010/","title":"WebGPU","rawDate":"2023-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231011":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231011/","title":"WebGPU","rawDate":"2023-10-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231012/","title":"WebGPU","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231013":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231013/","title":"WebGPU","rawDate":"2023-10-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231018":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231018/","title":"WebGPU","rawDate":"2023-10-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231019/","title":"WebGPU","rawDate":"2023-10-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231020":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231020/","title":"WebGPU","rawDate":"2023-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231023":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231023/","title":"WebGPU","rawDate":"2023-10-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231031":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231031/","title":"WebGPU","rawDate":"2023-10-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231103":{"authors":["Kai Ninomiya","Brandon Jones","Myles Maxfield"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231103/","title":"WebGPU","rawDate":"2023-11-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231120":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231120/","title":"WebGPU","rawDate":"2023-11-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231204":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231204/","title":"WebGPU","rawDate":"2023-12-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231206":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2023/WD-webgpu-20231206/","title":"WebGPU","rawDate":"2023-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240104":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2024/WD-webgpu-20240104/","title":"WebGPU","rawDate":"2024-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2024/WD-webgpu-20240108/","title":"WebGPU","rawDate":"2024-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240120":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2024/WD-webgpu-20240120/","title":"WebGPU","rawDate":"2024-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240124":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2024/WD-webgpu-20240124/","title":"WebGPU","rawDate":"2024-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2024/WD-webgpu-20240125/","title":"WebGPU","rawDate":"2024-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240205":{"authors":["Kai Ninomiya","Brandon Jones","Jim Blandy"],"href":"https://www.w3.org/TR/2024/WD-webgpu-20240205/","title":"WebGPU","rawDate":"2024-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2020/gpu/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/gpuweb/gpuweb"},"webintents-local-services":{"authors":["Claes Nilsson","Norifumi Kikkawa"],"href":"https://www.w3.org/TR/webintents-local-services/","title":"Web Intents Addendum - Local Services","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121004":{"authors":["Claes Nilsson","Norifumi Kikkawa"],"href":"https://www.w3.org/TR/2012/WD-webintents-local-services-20121004/","title":"Web Intents Addendum - Local Services","rawDate":"2012-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/","https://www.w3.org/2009/dap/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140114":{"authors":["Claes Nilsson","Norifumi Kikkawa"],"href":"https://www.w3.org/TR/2014/NOTE-webintents-local-services-20140114/","title":"Web Intents Addendum - Local Services","rawDate":"2014-01-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/das/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"isRetired":true},"webmachinelearning-ethics":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/webmachinelearning-ethics/","title":"Ethical Principles for Web Machine Learning","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","edDraft":"https://webmachinelearning.github.io/webmachinelearning-ethics/","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220628":{"authors":["James Fletcher","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20220628/","title":"Ethical Principles for Web Machine Learning","rawDate":"2022-06-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221125":{"authors":["James Fletcher","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221125/","title":"Ethical Principles for Web Machine Learning","rawDate":"2022-11-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221128":{"authors":["James Fletcher","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221128/","title":"Ethical Principles for Web Machine Learning","rawDate":"2022-11-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221129":{"authors":["James Fletcher","Anssi Kostiainen"],"href":"https://www.w3.org/TR/2022/DNOTE-webmachinelearning-ethics-20221129/","title":"Ethical Principles for Web Machine Learning","rawDate":"2022-11-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230811":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2023/DNOTE-webmachinelearning-ethics-20230811/","title":"Ethical Principles for Web Machine Learning","rawDate":"2023-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240108":{"authors":["Anssi Kostiainen"],"href":"https://www.w3.org/TR/2024/DNOTE-webmachinelearning-ethics-20240108/","title":"Ethical Principles for Web Machine Learning","rawDate":"2024-01-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webmachinelearning/ethical-webmachinelearning"},"webmention":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/webmention/","title":"Webmention","rawDate":"2017-01-12","status":"REC","publisher":"W3C","edDraft":"https://webmention.net/draft/","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160112":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-webmention-20160112/","title":"Webmention","rawDate":"2016-01-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160301":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-webmention-20160301/","title":"Webmention","rawDate":"2016-03-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160329":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-webmention-20160329/","title":"Webmention","rawDate":"2016-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160420":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-webmention-20160420/","title":"Webmention","rawDate":"2016-04-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160429":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-webmention-20160429/","title":"Webmention","rawDate":"2016-04-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160517":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-webmention-20160517/","title":"Webmention","rawDate":"2016-05-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160524":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/CR-webmention-20160524/","title":"Webmention","rawDate":"2016-05-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161101":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2016/PR-webmention-20161101/","title":"Webmention","rawDate":"2016-11-01","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170112":{"authors":["Aaron Parecki"],"href":"https://www.w3.org/TR/2017/REC-webmention-20170112/","title":"Webmention","rawDate":"2017-01-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"hasErrata":"https://webmention.net/errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://webmention.net/errata/","repository":"https://github.com/w3c/webmention"},"webmessaging":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/webmessaging/","title":"HTML5 Web Messaging","status":"REC","publisher":"W3C","versions":{"20101118":{"status":"WD","rawDate":"2010-11-18","href":"https://www.w3.org/TR/2010/WD-webmessaging-20101118/","source":"./data/w3c-specs.txt"},"20110317":{"status":"WD","rawDate":"2011-03-17","href":"https://www.w3.org/TR/2011/WD-webmessaging-20110317/","source":"./data/w3c-specs.txt"},"20111020":{"status":"WD","rawDate":"2011-10-20","href":"https://www.w3.org/TR/2011/WD-webmessaging-20111020/","source":"./data/w3c-specs.txt"},"20120313":{"status":"WD","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/WD-webmessaging-20120313/","source":"./data/w3c-specs.txt"},"20120501":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2012/CR-webmessaging-20120501/","title":"HTML5 Web Messaging","rawDate":"2012-05-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150407":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2015/PR-webmessaging-20150407/","title":"HTML5 Web Messaging","rawDate":"2015-04-07","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150519":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2015/REC-webmessaging-20150519/","title":"HTML5 Web Messaging","rawDate":"2015-05-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"https://www.w3.org/2008/webapps/wiki/Errata/WebMessaging","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2021/SPSD-webmessaging-20210128/","title":"HTML5 Web Messaging","rawDate":"2021-01-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"rawDate":"2021-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://html.spec.whatwg.org/multipage/web-messaging.html","hasErrata":"https://www.w3.org/2008/webapps/wiki/Errata/WebMessaging","repository":"https://github.com/whatwg/html","isRetired":true},"webmidi":{"authors":["Chris Wilson","Jussi Kalliokoski"],"href":"https://www.w3.org/TR/webmidi/","title":"Web MIDI API","rawDate":"2015-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121025":{"status":"WD","rawDate":"2012-10-25","href":"https://www.w3.org/TR/2012/WD-webmidi-20121025/","source":"./data/w3c-specs.txt"},"20121213":{"authors":["Jussi Kalliokoski","Chris Wilson"],"href":"https://www.w3.org/TR/2012/WD-webmidi-20121213/","title":"Web MIDI API","rawDate":"2012-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131126":{"authors":["Jussi Kalliokoski","Chris Wilson"],"href":"https://www.w3.org/TR/2013/WD-webmidi-20131126/","title":"Web MIDI API","rawDate":"2013-11-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Chris Wilson","Jussi Kalliokoski"],"href":"https://www.w3.org/TR/2015/WD-webmidi-20150317/","title":"Web MIDI API","rawDate":"2015-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/audio/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://webaudio.github.io/web-midi-api/","repository":"https://github.com/webaudio/web-midi-api"},"webnn":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/webnn/","title":"Web Neural Network API","rawDate":"2024-02-07","status":"CR","publisher":"W3C","edDraft":"https://webmachinelearning.github.io/webnn/","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210622":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210622/","title":"Web Neural Network API","rawDate":"2021-06-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210722":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210722/","title":"Web Neural Network API","rawDate":"2021-07-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210810":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210810/","title":"Web Neural Network API","rawDate":"2021-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210903":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210903/","title":"Web Neural Network API","rawDate":"2021-09-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210908":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210908/","title":"Web Neural Network API","rawDate":"2021-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210920":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210920/","title":"Web Neural Network API","rawDate":"2021-09-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210922":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210922/","title":"Web Neural Network API","rawDate":"2021-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20210930/","title":"Web Neural Network API","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211116":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20211116/","title":"Web Neural Network API","rawDate":"2021-11-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211125":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20211125/","title":"Web Neural Network API","rawDate":"2021-11-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211215":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2021/WD-webnn-20211215/","title":"Web Neural Network API","rawDate":"2021-12-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220115":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220115/","title":"Web Neural Network API","rawDate":"2022-01-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220127":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220127/","title":"Web Neural Network API","rawDate":"2022-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220214":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220214/","title":"Web Neural Network API","rawDate":"2022-02-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220215/","title":"Web Neural Network API","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220223/","title":"Web Neural Network API","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220322":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220322/","title":"Web Neural Network API","rawDate":"2022-03-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220324":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220324/","title":"Web Neural Network API","rawDate":"2022-03-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220430":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220430/","title":"Web Neural Network API","rawDate":"2022-04-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220520":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220520/","title":"Web Neural Network API","rawDate":"2022-05-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220617":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220617/","title":"Web Neural Network API","rawDate":"2022-06-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220628":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220628/","title":"Web Neural Network API","rawDate":"2022-06-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220630":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220630/","title":"Web Neural Network API","rawDate":"2022-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220825":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220825/","title":"Web Neural Network API","rawDate":"2022-08-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220831":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220831/","title":"Web Neural Network API","rawDate":"2022-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220901":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220901/","title":"Web Neural Network API","rawDate":"2022-09-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220929":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20220929/","title":"Web Neural Network API","rawDate":"2022-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221024":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221024/","title":"Web Neural Network API","rawDate":"2022-10-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221104":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221104/","title":"Web Neural Network API","rawDate":"2022-11-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221205":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221205/","title":"Web Neural Network API","rawDate":"2022-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221207/","title":"Web Neural Network API","rawDate":"2022-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221208/","title":"Web Neural Network API","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221209":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221209/","title":"Web Neural Network API","rawDate":"2022-12-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221213":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221213/","title":"Web Neural Network API","rawDate":"2022-12-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221220":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2022/WD-webnn-20221220/","title":"Web Neural Network API","rawDate":"2022-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230124":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/WD-webnn-20230124/","title":"Web Neural Network API","rawDate":"2023-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230308":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/WD-webnn-20230308/","title":"Web Neural Network API","rawDate":"2023-03-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230309":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/WD-webnn-20230309/","title":"Web Neural Network API","rawDate":"2023-03-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CR-webnn-20230330/","title":"Web Neural Network API","rawDate":"2023-03-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230414":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230414/","title":"Web Neural Network API","rawDate":"2023-04-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230515":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230515/","title":"Web Neural Network API","rawDate":"2023-05-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230516":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230516/","title":"Web Neural Network API","rawDate":"2023-05-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230519":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230519/","title":"Web Neural Network API","rawDate":"2023-05-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230606/","title":"Web Neural Network API","rawDate":"2023-06-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230620":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230620/","title":"Web Neural Network API","rawDate":"2023-06-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230810":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230810/","title":"Web Neural Network API","rawDate":"2023-08-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230830":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20230830/","title":"Web Neural Network API","rawDate":"2023-08-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20231026/","title":"Web Neural Network API","rawDate":"2023-10-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231211":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20231211/","title":"Web Neural Network API","rawDate":"2023-12-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231216":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20231216/","title":"Web Neural Network API","rawDate":"2023-12-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231219":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2023/CRD-webnn-20231219/","title":"Web Neural Network API","rawDate":"2023-12-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240117":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240117/","title":"Web Neural Network API","rawDate":"2024-01-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240118":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240118/","title":"Web Neural Network API","rawDate":"2024-01-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240120":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240120/","title":"Web Neural Network API","rawDate":"2024-01-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240122":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240122/","title":"Web Neural Network API","rawDate":"2024-01-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240123":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240123/","title":"Web Neural Network API","rawDate":"2024-01-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240125/","title":"Web Neural Network API","rawDate":"2024-01-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240206":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240206/","title":"Web Neural Network API","rawDate":"2024-02-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240207":{"authors":["Ningxin Hu","Chai Chaoweeraprasit"],"href":"https://www.w3.org/TR/2024/CRD-webnn-20240207/","title":"Web Neural Network API","rawDate":"2024-02-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webmachinelearning/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/webmachinelearning/webnn"},"webont-req":{"authors":["Jeff Heflin"],"href":"https://www.w3.org/TR/webont-req/","title":"OWL Web Ontology Language Use Cases and Requirements","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#webont-req","versions":{"20020307":{"status":"WD","rawDate":"2002-03-07","href":"https://www.w3.org/TR/2002/WD-webont-req-20020307/","source":"./data/w3c-specs.txt"},"20020708":{"status":"WD","rawDate":"2002-07-08","href":"https://www.w3.org/TR/2002/WD-webont-req-20020708/","source":"./data/w3c-specs.txt"},"20030203":{"status":"WD","rawDate":"2003-02-03","href":"https://www.w3.org/TR/2003/WD-webont-req-20030203/","source":"./data/w3c-specs.txt"},"20030331":{"status":"WD","rawDate":"2003-03-31","href":"https://www.w3.org/TR/2003/WD-webont-req-20030331/","source":"./data/w3c-specs.txt"},"20030818":{"status":"CR","rawDate":"2003-08-18","href":"https://www.w3.org/TR/2003/CR-webont-req-20030818/","source":"./data/w3c-specs.txt"},"20031215":{"status":"PR","rawDate":"2003-12-15","href":"https://www.w3.org/TR/2003/PR-webont-req-20031215/","source":"./data/w3c-specs.txt"},"20040210":{"authors":["Jeff Heflin"],"href":"https://www.w3.org/TR/2004/REC-webont-req-20040210/","title":"OWL Web Ontology Language Use Cases and Requirements","rawDate":"2004-02-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/WebOnt/"],"hasErrata":"https://www.w3.org/2001/sw/WebOnt/errata#webont-req","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"webpayments-http-api":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/webpayments-http-api/","title":"Web Payments HTTP API 1.0","rawDate":"2017-12-12","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webpayments-http-api/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160915":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2016/WD-webpayments-http-api-20160915/","title":"Web Payments HTTP API 1.0","rawDate":"2016-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171212":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2017/NOTE-webpayments-http-api-20171212/","title":"Web Payments HTTP API 1.0","rawDate":"2017-12-12","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webpayments-http-api","isRetired":true},"webpayments-http-messages":{"authors":["Manu Sporny","Shane McCarron"],"href":"https://www.w3.org/TR/webpayments-http-messages/","title":"Web Payments HTTP Messages 1.0","rawDate":"2020-07-21","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webpayments-http-messages/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160915":{"authors":["Manu Sporny","Dave Longley"],"href":"https://www.w3.org/TR/2016/WD-webpayments-http-messages-20160915/","title":"Web Payments HTTP Messages 1.0","rawDate":"2016-09-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200721":{"authors":["Manu Sporny","Shane McCarron"],"href":"https://www.w3.org/TR/2020/NOTE-webpayments-http-messages-20200721/","title":"Web Payments HTTP Messages 1.0","rawDate":"2020-07-21","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webpayments-http-messages","isRetired":true},"webpayments-overview":{"authors":["Manu Sporny","Adrian Hope-Bailie","Nick Telford-Reed","Roy McElmurry","Dapeng(Max) Liu"],"href":"https://www.w3.org/TR/webpayments-overview/","title":"Web Payments Overview 1.0","rawDate":"2016-10-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webpayments-overview/","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161013":{"authors":["Manu Sporny","Adrian Hope-Bailie","Nick Telford-Reed","Roy McElmurry","Dapeng(Max) Liu"],"href":"https://www.w3.org/TR/2016/NOTE-webpayments-overview-20161013/","title":"Web Payments Overview 1.0","rawDate":"2016-10-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/Payments/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webpayments-overview"},"webrtc":{"authors":["Cullen Jennings","Florent Castelli","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/webrtc/","title":"WebRTC: Real-Time Communication in Browsers","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"versions":{"20111027":{"status":"WD","rawDate":"2011-10-27","href":"https://www.w3.org/TR/2011/WD-webrtc-20111027/","source":"./data/w3c-specs.txt"},"20120209":{"status":"WD","rawDate":"2012-02-09","href":"https://www.w3.org/TR/2012/WD-webrtc-20120209/","source":"./data/w3c-specs.txt"},"20120821":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2012/WD-webrtc-20120821/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2012-08-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130910":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2013/WD-webrtc-20130910/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2013-09-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150210":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan"],"href":"https://www.w3.org/TR/2015/WD-webrtc-20150210/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2015-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160128":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba"],"href":"https://www.w3.org/TR/2016/WD-webrtc-20160128/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2016-01-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160531":{"href":"https://www.w3.org/TR/2016/WD-webrtc-20160531/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2016-05-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160803":{"href":"https://www.w3.org/TR/2016/WD-webrtc-20160803/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2016-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160913":{"href":"https://www.w3.org/TR/2016/WD-webrtc-20160913/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2016-09-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161123":{"href":"https://www.w3.org/TR/2016/WD-webrtc-20161123/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2016-11-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161124":{"href":"https://www.w3.org/TR/2016/WD-webrtc-20161124/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2016-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170313":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba"],"href":"https://www.w3.org/TR/2017/WD-webrtc-20170313/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2017-03-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170508":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2017/WD-webrtc-20170508/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2017-05-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170515":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2017/WD-webrtc-20170515/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2017-05-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170605":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2017/WD-webrtc-20170605/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2017-06-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170822":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2017/WD-webrtc-20170822/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2017-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171102":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2017/CR-webrtc-20171102/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2017-11-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180621":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2018/CR-webrtc-20180621/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2018-06-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180927":{"authors":["Adam Bergkvist","Daniel Burnett","Cullen Jennings","Anant Narayanan","Bernard Aboba","Taylor Brandstetter","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2018/CR-webrtc-20180927/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2018-09-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191213":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2019/CR-webrtc-20191213/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2019-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200825":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CR-webrtc-20200825/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2020-08-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200903":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CR-webrtc-20200903/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2020-09-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200924":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-20200924/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2020-09-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201007":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-20201007/","title":"WebRTC 1.0: Real-time Communication Between Browsers","rawDate":"2020-10-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201008":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-20201008/","title":"WebRTC 1.0: Real-Time Communication Between Browsers","rawDate":"2020-10-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201015":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-20201015/","title":"WebRTC 1.0: Real-Time Communication Between Browsers","rawDate":"2020-10-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201105":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey","Adam Bergkvist","Daniel Burnett","Anant Narayanan","Bernard Aboba","Taylor Brandstetter"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-20201105/","title":"WebRTC 1.0: Real-Time Communication Between Browsers","rawDate":"2020-11-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201215":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2020/PR-webrtc-20201215/","title":"WebRTC 1.0: Real-Time Communication Between Browsers","rawDate":"2020-12-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210126":{"authors":["Cullen Jennings","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2021/REC-webrtc-20210126/","title":"WebRTC 1.0: Real-Time Communication Between Browsers","rawDate":"2021-01-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"hasErrata":"https://w3c.github.io/webrtc-pc/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230301":{"authors":["Cullen Jennings","Florent Castelli","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2023/REC-webrtc-20230301/","title":"WebRTC: Real-Time Communication in Browsers","rawDate":"2023-03-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230306":{"authors":["Cullen Jennings","Florent Castelli","Henrik Boström","Jan-Ivar Bruaroey"],"href":"https://www.w3.org/TR/2023/REC-webrtc-20230306/","title":"WebRTC: Real-Time Communication in Browsers","rawDate":"2023-03-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-03-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/webrtc-pc/","repository":"https://github.com/w3c/webrtc-pc","hasErrata":"https://w3c.github.io/webrtc-pc/errata.html"},"webrtc-dscp":{"aliasOf":"webrtc-priority"},"webrtc-encoded-transform":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/webrtc-encoded-transform/","title":"WebRTC Encoded Transform","rawDate":"2023-12-12","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webrtc-encoded-transform/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210921":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/WD-webrtc-encoded-transform-20210921/","title":"WebRTC Encoded Transform","rawDate":"2021-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2021/WD-webrtc-encoded-transform-20211207/","title":"WebRTC Encoded Transform","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220127":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20220127/","title":"WebRTC Encoded Transform","rawDate":"2022-01-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220130":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20220130/","title":"WebRTC Encoded Transform","rawDate":"2022-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220519":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20220519/","title":"WebRTC Encoded Transform","rawDate":"2022-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220706":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20220706/","title":"WebRTC Encoded Transform","rawDate":"2022-07-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220929":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20220929/","title":"WebRTC Encoded Transform","rawDate":"2022-09-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221020":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20221020/","title":"WebRTC Encoded Transform","rawDate":"2022-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221208":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2022/WD-webrtc-encoded-transform-20221208/","title":"WebRTC Encoded Transform","rawDate":"2022-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230131":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230131/","title":"WebRTC Encoded Transform","rawDate":"2023-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230427/","title":"WebRTC Encoded Transform","rawDate":"2023-04-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230428":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230428/","title":"WebRTC Encoded Transform","rawDate":"2023-04-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230602":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230602/","title":"WebRTC Encoded Transform","rawDate":"2023-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230629/","title":"WebRTC Encoded Transform","rawDate":"2023-06-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230713":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230713/","title":"WebRTC Encoded Transform","rawDate":"2023-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230727/","title":"WebRTC Encoded Transform","rawDate":"2023-07-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230922":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20230922/","title":"WebRTC Encoded Transform","rawDate":"2023-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231004":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231004/","title":"WebRTC Encoded Transform","rawDate":"2023-10-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231009":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231009/","title":"WebRTC Encoded Transform","rawDate":"2023-10-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231012":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231012/","title":"WebRTC Encoded Transform","rawDate":"2023-10-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231207":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231207/","title":"WebRTC Encoded Transform","rawDate":"2023-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231212":{"authors":["Harald Alvestrand","Guido Urdaneta","youenn fablet"],"href":"https://www.w3.org/TR/2023/WD-webrtc-encoded-transform-20231212/","title":"WebRTC Encoded Transform","rawDate":"2023-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webrtc-encoded-transform"},"webrtc-identity":{"authors":["Cullen Jennings","Martin Thomson"],"href":"https://www.w3.org/TR/webrtc-identity/","title":"Identity for WebRTC 1.0","rawDate":"2018-09-27","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webrtc-identity/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180927":{"authors":["Cullen Jennings","Martin Thomson"],"href":"https://www.w3.org/TR/2018/CR-webrtc-identity-20180927/","title":"Identity for WebRTC 1.0","rawDate":"2018-09-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webrtc-identity"},"webrtc-insertable-streams":{"authors":["Harald Alvestrand","Guido Urdaneta"],"href":"https://w3c.github.io/webrtc-insertable-streams/","title":"WebRTC Insertable Media using Streams","status":"ED","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"repository":"https://github.com/w3c/webrtc-insertable-streams/"},"webrtc-nv-use-cases":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/webrtc-nv-use-cases/","title":"WebRTC Extended Use Cases","rawDate":"2023-12-14","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/webrtc-nv-use-cases/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20181211":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2018/WD-webrtc-nv-use-cases-20181211/","title":"WebRTC Next Version Use Cases","rawDate":"2018-12-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201130":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2020/WD-webrtc-nv-use-cases-20201130/","title":"WebRTC Next Version Use Cases","rawDate":"2020-11-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webrtc-nv-use-cases-20210215/","title":"WebRTC Next Version Use Cases","rawDate":"2021-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210316":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webrtc-nv-use-cases-20210316/","title":"WebRTC Next Version Use Cases","rawDate":"2021-03-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211121":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webrtc-nv-use-cases-20211121/","title":"WebRTC Next Version Use Cases","rawDate":"2021-11-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211122":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webrtc-nv-use-cases-20211122/","title":"WebRTC Next Version Use Cases","rawDate":"2021-11-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211123":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/DNOTE-webrtc-nv-use-cases-20211123/","title":"WebRTC Next Version Use Cases","rawDate":"2021-11-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220905":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20220905/","title":"WebRTC Next Version Use Cases","rawDate":"2022-09-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221015":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221015/","title":"WebRTC Next Version Use Cases","rawDate":"2022-10-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221201":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221201/","title":"WebRTC Next Version Use Cases","rawDate":"2022-12-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221202":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221202/","title":"WebRTC Next Version Use Cases","rawDate":"2022-12-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221206":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/DNOTE-webrtc-nv-use-cases-20221206/","title":"WebRTC Next Version Use Cases","rawDate":"2022-12-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230113":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230113/","title":"WebRTC Next Version Use Cases","rawDate":"2023-01-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230127":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230127/","title":"WebRTC Next Version Use Cases","rawDate":"2023-01-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230405":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230405/","title":"WebRTC Extended Use Cases","rawDate":"2023-04-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230606/","title":"WebRTC Extended Use Cases","rawDate":"2023-06-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230627":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230627/","title":"WebRTC Extended Use Cases","rawDate":"2023-06-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230629":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230629/","title":"WebRTC Extended Use Cases","rawDate":"2023-06-29","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230706":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230706/","title":"WebRTC Extended Use Cases","rawDate":"2023-07-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230722":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230722/","title":"WebRTC Extended Use Cases","rawDate":"2023-07-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230727":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230727/","title":"WebRTC Extended Use Cases","rawDate":"2023-07-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230808":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230808/","title":"WebRTC Extended Use Cases","rawDate":"2023-08-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230823":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20230823/","title":"WebRTC Extended Use Cases","rawDate":"2023-08-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231019":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231019/","title":"WebRTC Extended Use Cases","rawDate":"2023-10-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231026":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231026/","title":"WebRTC Extended Use Cases","rawDate":"2023-10-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231208":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231208/","title":"WebRTC Extended Use Cases","rawDate":"2023-12-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231214":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/DNOTE-webrtc-nv-use-cases-20231214/","title":"WebRTC Extended Use Cases","rawDate":"2023-12-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webrtc-nv-use-cases"},"webrtc-priority":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/webrtc-priority/","title":"WebRTC Priority Control API","rawDate":"2021-03-18","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webrtc-priority/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180703":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2018/WD-webrtc-dscp-20180703/","title":"WebRTC DSCP Control API","rawDate":"2018-07-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200123":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2020/WD-webrtc-priority-20200123/","title":"WebRTC Priority Control API","rawDate":"2020-01-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200922":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2020/WD-webrtc-priority-20200922/","title":"WebRTC Priority Control API","rawDate":"2020-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210318":{"authors":["Harald Alvestrand"],"href":"https://www.w3.org/TR/2021/CR-webrtc-priority-20210318/","title":"WebRTC Priority Control API","rawDate":"2021-03-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webrtc-priority"},"webrtc-stats":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/webrtc-stats/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2024-01-25","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webrtc-stats/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141021":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2014/WD-webrtc-stats-20141021/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2014-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150206":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2015/WD-webrtc-stats-20150206/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2015-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160524":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2016/WD-webrtc-stats-20160524/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2016-05-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160527":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2016/WD-webrtc-stats-20160527/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2016-05-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160921":{"href":"https://www.w3.org/TR/2016/WD-webrtc-stats-20160921/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2016-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161214":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2016/WD-webrtc-stats-20161214/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2016-12-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180110":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180110/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-01-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180117":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180117/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180131":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180131/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-01-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180226":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180226/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-02-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180227":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180227/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-02-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180307":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180307/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180314":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180314/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180328":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180328/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180516":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180516/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-05-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180519":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180519/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-05-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180627":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/WD-webrtc-stats-20180627/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-06-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180703":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2018/CR-webrtc-stats-20180703/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2018-07-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200114":{"authors":["Harald Alvestrand","Varun Singh"],"href":"https://www.w3.org/TR/2020/CR-webrtc-stats-20200114/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2020-01-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201006":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-stats-20201006/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2020-10-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201201":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2020/CRD-webrtc-stats-20201201/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2020-12-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2021/CRD-webrtc-stats-20210119/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2021-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210120":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2021/CRD-webrtc-stats-20210120/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2021-01-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2021/CRD-webrtc-stats-20210215/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2021-02-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210623":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2021/CRD-webrtc-stats-20210623/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2021-06-23","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210715":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2021/CRD-webrtc-stats-20210715/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2021-07-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211110":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2021/CRD-webrtc-stats-20211110/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2021-11-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220422":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220422/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-04-22","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220517":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220517/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-05-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220609":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220609/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-06-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220614":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220614/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-06-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220629":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220629/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-06-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220630":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220630/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-06-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220726":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220726/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-07-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220920":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220920/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-09-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220921/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-09-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220926":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220926/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-09-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220927":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220927/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-09-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220928":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20220928/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-09-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221011":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20221011/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-10-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221129":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20221129/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-11-29","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221207":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20221207/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-12-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221214":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20221214/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221216":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20221216/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-12-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221225":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2022/CRD-webrtc-stats-20221225/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2022-12-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230125/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-01-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230224":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230224/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-02-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230303/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-03-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230307/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-03-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230309":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230309/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-03-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230321":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230321/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-03-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230330/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-03-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230421":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230421/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-04-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230427":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230427/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-04-27","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230511":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230511/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-05-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230615":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230615/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-06-15","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230720":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230720/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-07-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230803":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230803/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-08-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230804":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20230804/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-08-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231214":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2023/CRD-webrtc-stats-20231214/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2023-12-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240111":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2024/CRD-webrtc-stats-20240111/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2024-01-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240125":{"authors":["Harald Alvestrand","Varun Singh","Henrik Boström"],"href":"https://www.w3.org/TR/2024/CRD-webrtc-stats-20240125/","title":"Identifiers for WebRTC's Statistics API","rawDate":"2024-01-25","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webrtc-stats"},"webrtc-svc":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/webrtc-svc/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2024-02-05","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webrtc-svc/","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191022":{"authors":["Peter Thatcher","Bernard Aboba"],"href":"https://www.w3.org/TR/2019/WD-webrtc-svc-20191022/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2019-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2011/04/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200408":{"authors":["Peter Thatcher","Bernard Aboba"],"href":"https://www.w3.org/TR/2020/WD-webrtc-svc-20200408/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2020-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201202":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2020/WD-webrtc-svc-20201202/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2020-12-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210119":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210119/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-01-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210215":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210215/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210315":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210315/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210709":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210709/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-07-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210710":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210710/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210712":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210712/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210823":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20210823/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-08-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211109":{"authors":["Bernard Aboba","Peter Thatcher"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20211109/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-11-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211205":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20211205/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-12-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211206":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20211206/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-12-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211208":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20211208/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211216":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2021/WD-webrtc-svc-20211216/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2021-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220120":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220120/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-01-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220201":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220201/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220202":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220202/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220211":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220211/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220221":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220221/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220223/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220224":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220224/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220225":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220225/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-02-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220303":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220303/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220829":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2022/WD-webrtc-svc-20220829/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2022-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230126":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230126/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-01-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230209":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230209/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-02-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230210":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230210/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-02-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230213":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230213/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230221":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230221/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-02-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230329":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230329/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-03-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230412":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230412/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-04-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230414":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230414/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230415":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230415/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-04-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230417":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20230417/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-04-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231102":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20231102/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-11-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231115":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20231115/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-11-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231212":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20231212/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231216":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2023/WD-webrtc-svc-20231216/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2023-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240124":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2024/WD-webrtc-svc-20240124/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2024-01-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240205":{"authors":["Bernard Aboba"],"href":"https://www.w3.org/TR/2024/WD-webrtc-svc-20240205/","title":"Scalable Video Coding (SVC) Extension for WebRTC","rawDate":"2024-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/groups/wg/webrtc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webrtc-svc"},"webstorage":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/webstorage/","title":"Web Storage (Second Edition)","status":"REC","publisher":"W3C","versions":{"20090423":{"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-webstorage-20090423/","source":"./data/w3c-specs.txt"},"20090910":{"status":"WD","rawDate":"2009-09-10","href":"https://www.w3.org/TR/2009/WD-webstorage-20090910/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-webstorage-20091029/","source":"./data/w3c-specs.txt"},"20091222":{"status":"WD","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/WD-webstorage-20091222/","source":"./data/w3c-specs.txt"},"20110208":{"status":"WD","rawDate":"2011-02-08","href":"https://www.w3.org/TR/2011/WD-webstorage-20110208/","source":"./data/w3c-specs.txt"},"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-webstorage-20110901/","source":"./data/w3c-specs.txt"},"20111025":{"status":"WD","rawDate":"2011-10-25","href":"https://www.w3.org/TR/2011/WD-webstorage-20111025/","source":"./data/w3c-specs.txt"},"20111208":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2011/CR-webstorage-20111208","title":"Web Storage","rawDate":"2011-12-08","status":"CR","publisher":"W3C"},"20130409":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2013/PR-webstorage-20130409/","title":"Web Storage","rawDate":"2013-04-09","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130730":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2013/REC-webstorage-20130730/","title":"Web Storage","rawDate":"2013-07-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150609":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2015/CR-webstorage-20150609/","title":"Web Storage (Second Edition)","rawDate":"2015-06-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151126":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2015/PR-webstorage-20151126/","title":"Web Storage (Second Edition)","rawDate":"2015-11-26","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160419":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2016/REC-webstorage-20160419/","title":"Web Storage (Second Edition)","rawDate":"2016-04-19","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2021/SPSD-webstorage-20210128/","title":"Web Storage (Second Edition)","rawDate":"2021-01-28","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"rawDate":"2021-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://w3c.github.io/webstorage/","repository":"https://github.com/w3c/webstorage","isRetired":true},"websub":{"authors":["Julien Genestoux","Aaron Parecki"],"href":"https://www.w3.org/TR/websub/","title":"WebSub","rawDate":"2018-01-23","status":"REC","publisher":"W3C","edDraft":"https://websub.net/draft","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20161020":{"authors":["Julien Genestoux"],"href":"https://www.w3.org/TR/2016/WD-pubsub-20161020/","title":"PubSub","rawDate":"2016-10-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161124":{"authors":["Julien Genestoux","Aaron Parecki"],"href":"https://www.w3.org/TR/2016/WD-websub-20161124/","title":"WebSub","rawDate":"2016-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170411":{"authors":["Julien Genestoux","Aaron Parecki"],"href":"https://www.w3.org/TR/2017/CR-websub-20170411/","title":"WebSub","rawDate":"2017-04-11","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20171003":{"authors":["Julien Genestoux","Aaron Parecki"],"href":"https://www.w3.org/TR/2017/PR-websub-20171003/","title":"WebSub","rawDate":"2017-10-03","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180123":{"authors":["Julien Genestoux","Aaron Parecki"],"href":"https://www.w3.org/TR/2018/REC-websub-20180123/","title":"WebSub","rawDate":"2018-01-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Social/WG"],"hasErrata":"https://websub.net/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/websub","hasErrata":"https://websub.net/errata"},"webtransport":{"authors":["Bernard Aboba","Nidhi Jaju","Victor Vasiliev"],"href":"https://www.w3.org/TR/webtransport/","title":"WebTransport","rawDate":"2023-12-20","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/webtransport/","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210504":{"authors":["Bernard Aboba","Victor Vasiliev","Yutaka Hirano"],"href":"https://www.w3.org/TR/2021/WD-webtransport-20210504/","title":"WebTransport","rawDate":"2021-05-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211014":{"authors":["Bernard Aboba","Victor Vasiliev","Yutaka Hirano"],"href":"https://www.w3.org/TR/2021/WD-webtransport-20211014/","title":"WebTransport","rawDate":"2021-10-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220311":{"authors":["Bernard Aboba","Victor Vasiliev","Yutaka Hirano"],"href":"https://www.w3.org/TR/2022/WD-webtransport-20220311/","title":"WebTransport","rawDate":"2022-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220623":{"authors":["Bernard Aboba","Victor Vasiliev","Yutaka Hirano"],"href":"https://www.w3.org/TR/2022/WD-webtransport-20220623/","title":"WebTransport","rawDate":"2022-06-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230118":{"authors":["Bernard Aboba","Victor Vasiliev","Yutaka Hirano"],"href":"https://www.w3.org/TR/2023/WD-webtransport-20230118/","title":"WebTransport","rawDate":"2023-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230405":{"authors":["Bernard Aboba","Nidhi Jaju","Victor Vasiliev"],"href":"https://www.w3.org/TR/2023/WD-webtransport-20230405/","title":"WebTransport","rawDate":"2023-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230712":{"authors":["Bernard Aboba","Nidhi Jaju","Victor Vasiliev"],"href":"https://www.w3.org/TR/2023/WD-webtransport-20230712/","title":"WebTransport","rawDate":"2023-07-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231220":{"authors":["Bernard Aboba","Nidhi Jaju","Victor Vasiliev"],"href":"https://www.w3.org/TR/2023/WD-webtransport-20231220/","title":"WebTransport","rawDate":"2023-12-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/webtransport/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webtransport"},"webvmt":{"authors":["Rob Smith"],"href":"https://www.w3.org/TR/webvmt/","title":"WebVMT: The Web Video Map Tracks Format","rawDate":"2023-09-19","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/sdw/proposals/geotagging/webvmt/","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20230919":{"authors":["Rob Smith"],"href":"https://www.w3.org/TR/2023/NOTE-webvmt-20230919/","title":"WebVMT: The Web Video Map Tracks Format","rawDate":"2023-09-19","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2021/sdw"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/sdw"},"webvr":{"href":"https://immersive-web.github.io/webvr/spec/1.1/","title":"WebVR","status":"ED","publisher":"W3C","repository":"https://github.com/immersive-web/webxr"},"webvtt1":{"authors":["Silvia Pfeiffer"],"href":"https://www.w3.org/TR/webvtt1/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2019-04-04","status":"CR","publisher":"W3C","edDraft":"https://w3c.github.io/webvtt/","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141113":{"authors":["Silvia Pfeiffer","Philip Jägenstedt","Ian Hickson"],"href":"https://www.w3.org/TR/2014/WD-webvtt1-20141113/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2014-11-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151208":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2015/WD-webvtt1-20151208/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2015-12-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170713":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2017/WD-webvtt1-20170713/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2017-07-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170808":{"authors":["Simon Pieters"],"href":"https://www.w3.org/TR/2017/WD-webvtt1-20170808/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2017-08-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180510":{"authors":["Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2018/CR-webvtt1-20180510/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2018-05-10","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190404":{"authors":["Silvia Pfeiffer"],"href":"https://www.w3.org/TR/2019/CR-webvtt1-20190404/","title":"WebVTT: The Web Video Text Tracks Format","rawDate":"2019-04-04","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/AudioVideo/TT/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/webvtt"},"webxr":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/webxr/","title":"WebXR Device API","rawDate":"2023-10-05","status":"CR","publisher":"W3C","edDraft":"https://immersive-web.github.io/webxr/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20190205":{"authors":["Brandon Jones","Nell Waliczek"],"href":"https://www.w3.org/TR/2019/WD-webxr-20190205/","title":"WebXR Device API","rawDate":"2019-02-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190521":{"authors":["Brandon Jones","Nell Waliczek"],"href":"https://www.w3.org/TR/2019/WD-webxr-20190521/","title":"WebXR Device API","rawDate":"2019-05-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191010":{"authors":["Brandon Jones","Nell Waliczek"],"href":"https://www.w3.org/TR/2019/WD-webxr-20191010/","title":"WebXR Device API","rawDate":"2019-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200724":{"authors":["Brandon Jones","Manish Goregaokar","Nell Waliczek"],"href":"https://www.w3.org/TR/2020/WD-webxr-20200724/","title":"WebXR Device API","rawDate":"2020-07-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier","Nell Waliczek"],"href":"https://www.w3.org/TR/2021/WD-webxr-20210824/","title":"WebXR Device API","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210930":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier","Nell Waliczek"],"href":"https://www.w3.org/TR/2021/WD-webxr-20210930/","title":"WebXR Device API","rawDate":"2021-09-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211021":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier","Nell Waliczek"],"href":"https://www.w3.org/TR/2021/WD-webxr-20211021/","title":"WebXR Device API","rawDate":"2021-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211026":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier","Nell Waliczek"],"href":"https://www.w3.org/TR/2021/WD-webxr-20211026/","title":"WebXR Device API","rawDate":"2021-10-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxr-20211224/","title":"WebXR Device API","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220105/","title":"WebXR Device API","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220207":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220207/","title":"WebXR Device API","rawDate":"2022-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220208":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220208/","title":"WebXR Device API","rawDate":"2022-02-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220314":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220314/","title":"WebXR Device API","rawDate":"2022-03-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220325":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220325/","title":"WebXR Device API","rawDate":"2022-03-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220328":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220328/","title":"WebXR Device API","rawDate":"2022-03-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220330":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-20220330/","title":"WebXR Device API","rawDate":"2022-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220331":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/CR-webxr-20220331/","title":"WebXR Device API","rawDate":"2022-03-31","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220426":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/CRD-webxr-20220426/","title":"WebXR Device API","rawDate":"2022-04-26","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220601":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/CRD-webxr-20220601/","title":"WebXR Device API","rawDate":"2022-06-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220824":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/CRD-webxr-20220824/","title":"WebXR Device API","rawDate":"2022-08-24","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2023/CRD-webxr-20230303/","title":"WebXR Device API","rawDate":"2023-03-03","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230621":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2023/CRD-webxr-20230621/","title":"WebXR Device API","rawDate":"2023-06-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230901":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2023/CRD-webxr-20230901/","title":"WebXR Device API","rawDate":"2023-09-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231005":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2023/CRD-webxr-20231005/","title":"WebXR Device API","rawDate":"2023-10-05","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/webxr"},"webxr-ar-module-1":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/webxr-ar-module-1/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2022-11-02","status":"CR","publisher":"W3C","edDraft":"https://immersive-web.github.io/webxr-ar-module/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191010":{"authors":["Brandon Jones","Nell Waliczek","Manish Goregaokar"],"href":"https://www.w3.org/TR/2019/WD-webxr-ar-module-1-20191010/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2019-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier","Nell Waliczek"],"href":"https://www.w3.org/TR/2021/WD-webxr-ar-module-1-20210824/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211223":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxr-ar-module-1-20211223/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2021-12-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxr-ar-module-1-20211224/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-ar-module-1-20220203/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220317":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-ar-module-1-20220317/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2022-03-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220426":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-ar-module-1-20220426/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2022-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/CR-webxr-ar-module-1-20221101/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2022-11-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221102":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/CRD-webxr-ar-module-1-20221102/","title":"WebXR Augmented Reality Module - Level 1","rawDate":"2022-11-02","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/webxr-ar-module"},"webxr-depth-sensing-1":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/webxr-depth-sensing-1/","title":"WebXR Depth Sensing Module","rawDate":"2022-04-19","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/depth-sensing/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210831":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2021/WD-webxr-depth-sensing-1-20210831/","title":"WebXR Depth Sensing Module","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220215":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2022/WD-webxr-depth-sensing-1-20220215/","title":"WebXR Depth Sensing Module","rawDate":"2022-02-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220223":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2022/WD-webxr-depth-sensing-1-20220223/","title":"WebXR Depth Sensing Module","rawDate":"2022-02-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220419":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2022/WD-webxr-depth-sensing-1-20220419/","title":"WebXR Depth Sensing Module","rawDate":"2022-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/depth-sensing"},"webxr-dom-overlays-1":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/webxr-dom-overlays-1/","title":"WebXR DOM Overlays Module","rawDate":"2022-11-17","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/dom-overlays/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210831":{"authors":["Klaus Weidner"],"href":"https://www.w3.org/TR/2021/WD-webxr-dom-overlays-1-20210831/","title":"WebXR DOM Overlays Module","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220705":{"authors":["Klaus Weidner"],"href":"https://www.w3.org/TR/2022/WD-webxr-dom-overlays-1-20220705/","title":"WebXR DOM Overlays Module","rawDate":"2022-07-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221117":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2022/WD-webxr-dom-overlays-1-20221117/","title":"WebXR DOM Overlays Module","rawDate":"2022-11-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/dom-overlays"},"webxr-gamepads-module-1":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/webxr-gamepads-module-1/","title":"WebXR Gamepads Module - Level 1","rawDate":"2022-04-26","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/webxr-gamepads-module/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20191010":{"authors":["Brandon Jones","Nell Waliczek"],"href":"https://www.w3.org/TR/2019/WD-webxr-gamepads-module-1-20191010/","title":"WebXR Gamepads Module - Level 1","rawDate":"2019-10-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier","Nell Waliczek"],"href":"https://www.w3.org/TR/2021/WD-webxr-gamepads-module-1-20210824/","title":"WebXR Gamepads Module - Level 1","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxr-gamepads-module-1-20211224/","title":"WebXR Gamepads Module - Level 1","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211228":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxr-gamepads-module-1-20211228/","title":"WebXR Gamepads Module - Level 1","rawDate":"2021-12-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220104":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-gamepads-module-1-20220104/","title":"WebXR Gamepads Module - Level 1","rawDate":"2022-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-gamepads-module-1-20220105/","title":"WebXR Gamepads Module - Level 1","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220203":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-gamepads-module-1-20220203/","title":"WebXR Gamepads Module - Level 1","rawDate":"2022-02-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220426":{"authors":["Brandon Jones","Manish Goregaokar","Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxr-gamepads-module-1-20220426/","title":"WebXR Gamepads Module - Level 1","rawDate":"2022-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/webxr-gamepads-module"},"webxr-hand-input-1":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/webxr-hand-input-1/","title":"WebXR Hand Input Module - Level 1","rawDate":"2024-02-07","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/webxr-hand-input/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201022":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/2020/WD-webxr-hand-input-1-20201022/","title":"WebXR Hand Input Module - Level 1","rawDate":"2020-10-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/2021/WD-webxr-hand-input-1-20210824/","title":"WebXR Hand Input Module - Level 1","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211224":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/2021/WD-webxr-hand-input-1-20211224/","title":"WebXR Hand Input Module - Level 1","rawDate":"2021-12-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/2022/WD-webxr-hand-input-1-20220105/","title":"WebXR Hand Input Module - Level 1","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220419":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/2022/WD-webxr-hand-input-1-20220419/","title":"WebXR Hand Input Module - Level 1","rawDate":"2022-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20240207":{"authors":["Manish Goregaokar"],"href":"https://www.w3.org/TR/2024/WD-webxr-hand-input-1-20240207/","title":"WebXR Hand Input Module - Level 1","rawDate":"2024-02-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/webxr-hand-input"},"webxr-hit-test-1":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/webxr-hit-test-1/","title":"WebXR Hit Test Module","rawDate":"2022-04-19","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/hit-test/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210831":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2021/WD-webxr-hit-test-1-20210831/","title":"WebXR Hit Test Module","rawDate":"2021-08-31","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220419":{"authors":["Piotr Bialecki"],"href":"https://www.w3.org/TR/2022/WD-webxr-hit-test-1-20220419/","title":"WebXR Hit Test Module","rawDate":"2022-04-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/hit-test"},"webxr-lighting-estimation-1":{"authors":["Brandon Jones"],"href":"https://www.w3.org/TR/webxr-lighting-estimation-1/","title":"WebXR Lighting Estimation API Level 1","rawDate":"2022-06-03","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/lighting-estimation/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210909":{"authors":["Brandon Jones"],"href":"https://www.w3.org/TR/2021/WD-webxr-lighting-estimation-1-20210909/","title":"WebXR Lighting Estimation API Level 1","rawDate":"2021-09-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220603":{"authors":["Brandon Jones"],"href":"https://www.w3.org/TR/2022/WD-webxr-lighting-estimation-1-20220603/","title":"WebXR Lighting Estimation API Level 1","rawDate":"2022-06-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/lighting-estimation"},"webxrlayers-1":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/webxrlayers-1/","title":"WebXR Layers API Level 1","rawDate":"2023-05-02","status":"WD","publisher":"W3C","edDraft":"https://immersive-web.github.io/layers/","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201203":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2020/WD-webxrlayers-1-20201203/","title":"WebXR Layers API Level 1","rawDate":"2020-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210824":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxrlayers-1-20210824/","title":"WebXR Layers API Level 1","rawDate":"2021-08-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20211207":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2021/WD-webxrlayers-1-20211207/","title":"WebXR Layers API Level 1","rawDate":"2021-12-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220105":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220105/","title":"WebXR Layers API Level 1","rawDate":"2022-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220426":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220426/","title":"WebXR Layers API Level 1","rawDate":"2022-04-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220719":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220719/","title":"WebXR Layers API Level 1","rawDate":"2022-07-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220826":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220826/","title":"WebXR Layers API Level 1","rawDate":"2022-08-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220919":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220919/","title":"WebXR Layers API Level 1","rawDate":"2022-09-19","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220921":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220921/","title":"WebXR Layers API Level 1","rawDate":"2022-09-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220922":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2022/WD-webxrlayers-1-20220922/","title":"WebXR Layers API Level 1","rawDate":"2022-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230125":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2023/WD-webxrlayers-1-20230125/","title":"WebXR Layers API Level 1","rawDate":"2023-01-25","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230502":{"authors":["Rik Cabanier"],"href":"https://www.w3.org/TR/2023/WD-webxrlayers-1-20230502/","title":"WebXR Layers API Level 1","rawDate":"2023-05-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/immersive-web/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/immersive-web/layers"},"widgets":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/widgets/","title":"Packaged Web Apps (Widgets) - Packaging and XML Configuration (Second Edition)","rawDate":"2018-10-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20061109":{"status":"WD","rawDate":"2006-11-09","href":"https://www.w3.org/TR/2006/WD-widgets-20061109/","source":"./data/w3c-specs.txt"},"20071013":{"status":"WD","rawDate":"2007-10-13","href":"https://www.w3.org/TR/2007/WD-widgets-20071013/","source":"./data/w3c-specs.txt"},"20080414":{"status":"WD","rawDate":"2008-04-14","href":"https://www.w3.org/TR/2008/WD-widgets-20080414/","source":"./data/w3c-specs.txt"},"20081222":{"status":"WD","rawDate":"2008-12-22","href":"https://www.w3.org/TR/2008/WD-widgets-20081222/","source":"./data/w3c-specs.txt"},"20090528":{"status":"WD","rawDate":"2009-05-28","href":"https://www.w3.org/TR/2009/WD-widgets-20090528/","source":"./data/w3c-specs.txt"},"20090723":{"status":"CR","rawDate":"2009-07-23","href":"https://www.w3.org/TR/2009/CR-widgets-20090723/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-widgets-20091029/","source":"./data/w3c-specs.txt"},"20091201":{"status":"CR","rawDate":"2009-12-01","href":"https://www.w3.org/TR/2009/CR-widgets-20091201/","source":"./data/w3c-specs.txt"},"20101005":{"status":"WD","rawDate":"2010-10-05","href":"https://www.w3.org/TR/2010/WD-widgets-20101005/","source":"./data/w3c-specs.txt"},"20110322":{"status":"WD","rawDate":"2011-03-22","href":"https://www.w3.org/TR/2011/WD-widgets-20110322/","source":"./data/w3c-specs.txt"},"20110607":{"status":"WD","rawDate":"2011-06-07","href":"https://www.w3.org/TR/2011/WD-widgets-20110607/","source":"./data/w3c-specs.txt"},"20110811":{"status":"PR","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/PR-widgets-20110811/","source":"./data/w3c-specs.txt"},"20110927":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2011/REC-widgets-20110927/","title":"Widget Packaging and XML Configuration","rawDate":"2011-09-27","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20120925":{"status":"PER","rawDate":"2012-09-25","href":"https://www.w3.org/TR/2012/PER-widgets-20120925/","source":"./data/w3c-specs.txt"},"20121127":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2012/REC-widgets-20121127/","title":"Packaged Web Apps (Widgets) - Packaging and XML Configuration (Second Edition)","rawDate":"2012-11-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2018/OBSL-widgets-20181011/","title":"Packaged Web Apps (Widgets) - Packaging and XML Configuration (Second Edition)","rawDate":"2018-10-11","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"widgets-access":{"authors":["Marcos Caceres","Robin Berjon"],"href":"https://www.w3.org/TR/widgets-access/","title":"Widget Access Request Policy","rawDate":"2018-10-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets-access/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090618":{"status":"WD","rawDate":"2009-06-18","href":"https://www.w3.org/TR/2009/WD-widgets-access-20090618/","source":"./data/w3c-specs.txt"},"20090804":{"status":"WD","rawDate":"2009-08-04","href":"https://www.w3.org/TR/2009/WD-widgets-access-20090804/","source":"./data/w3c-specs.txt"},"20091208":{"status":"WD","rawDate":"2009-12-08","href":"https://www.w3.org/TR/2009/WD-widgets-access-20091208/","source":"./data/w3c-specs.txt"},"20100420":{"status":"CR","rawDate":"2010-04-20","href":"https://www.w3.org/TR/2010/CR-widgets-access-20100420/","source":"./data/w3c-specs.txt"},"20111213":{"status":"PR","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/PR-widgets-access-20111213/","source":"./data/w3c-specs.txt"},"20120207":{"authors":["Marcos Caceres","Robin Berjon"],"href":"https://www.w3.org/TR/2012/REC-widgets-access-20120207/","title":"Widget Access Request Policy","rawDate":"2012-02-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets-access/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Marcos Caceres","Robin Berjon"],"href":"https://www.w3.org/TR/2018/OBSL-widgets-access-20181011/","title":"Widget Access Request Policy","rawDate":"2018-10-11","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"widgets-apis":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/widgets-apis/","title":"Widget Interface","rawDate":"2018-10-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090205":{"status":"WD","rawDate":"2009-02-05","href":"https://www.w3.org/TR/2009/WD-widgets-apis-20090205/","source":"./data/w3c-specs.txt"},"20090423":{"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-widgets-apis-20090423/","source":"./data/w3c-specs.txt"},"20090818":{"status":"WD","rawDate":"2009-08-18","href":"https://www.w3.org/TR/2009/WD-widgets-apis-20090818/","source":"./data/w3c-specs.txt"},"20091117":{"status":"WD","rawDate":"2009-11-17","href":"https://www.w3.org/TR/2009/WD-widgets-apis-20091117/","source":"./data/w3c-specs.txt"},"20091222":{"status":"CR","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/CR-widgets-apis-20091222/","source":"./data/w3c-specs.txt"},"20100907":{"status":"WD","rawDate":"2010-09-07","href":"https://www.w3.org/TR/2010/WD-widgets-apis-20100907/","source":"./data/w3c-specs.txt"},"20110607":{"status":"WD","rawDate":"2011-06-07","href":"https://www.w3.org/TR/2011/WD-widgets-apis-20110607/","source":"./data/w3c-specs.txt"},"20111213":{"status":"CR","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/CR-widgets-apis-20111213/","source":"./data/w3c-specs.txt"},"20120522":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2012/PR-widgets-apis-20120522/","title":"Widget Interface","rawDate":"2012-05-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131031":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2013/REC-widgets-apis-20131031/","title":"Widget Interface","rawDate":"2013-10-31","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2018/OBSL-widgets-apis-20181011/","title":"Widget Interface","rawDate":"2018-10-11","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"edDraft":"https://w3c.github.io/packaged-webapps/api/Overview.html","repository":"https://github.com/w3c/packaged-webapps","isRetired":true},"widgets-digsig":{"authors":["Marcos Caceres","Paddy Byers","Stuart Knightley","Frederick Hirsch","Mark Priestley"],"href":"https://www.w3.org/TR/widgets-digsig/","title":"XML Digital Signatures for Widgets","rawDate":"2018-10-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets-digsig/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20080414":{"status":"WD","rawDate":"2008-04-14","href":"https://www.w3.org/TR/2008/WD-widgets-digsig-20080414/","source":"./data/w3c-specs.txt"},"20090331":{"status":"WD","rawDate":"2009-03-31","href":"https://www.w3.org/TR/2009/WD-widgets-digsig-20090331/","source":"./data/w3c-specs.txt"},"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-widgets-digsig-20090430/","source":"./data/w3c-specs.txt"},"20090625":{"status":"CR","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/CR-widgets-digsig-20090625/","source":"./data/w3c-specs.txt"},"20100415":{"status":"WD","rawDate":"2010-04-15","href":"https://www.w3.org/TR/2010/WD-widgets-digsig-20100415/","source":"./data/w3c-specs.txt"},"20100511":{"status":"WD","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/WD-widgets-digsig-20100511/","source":"./data/w3c-specs.txt"},"20100624":{"status":"CR","rawDate":"2010-06-24","href":"https://www.w3.org/TR/2010/CR-widgets-digsig-20100624/","source":"./data/w3c-specs.txt"},"20110607":{"status":"WD","rawDate":"2011-06-07","href":"https://www.w3.org/TR/2011/WD-widgets-digsig-20110607/","source":"./data/w3c-specs.txt"},"20110811":{"status":"PR","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/PR-widgets-digsig-20110811/","source":"./data/w3c-specs.txt"},"20130418":{"authors":["Marcos Caceres","Paddy Byers","Stuart Knightley","Frederick Hirsch","Mark Priestley"],"href":"https://www.w3.org/TR/2013/REC-widgets-digsig-20130418/","title":"XML Digital Signatures for Widgets","rawDate":"2013-04-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"hasErrata":"http://dev.w3.org/2006/waf/widgets-digsig/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181011":{"authors":["Marcos Caceres","Paddy Byers","Stuart Knightley","Frederick Hirsch","Mark Priestley"],"href":"https://www.w3.org/TR/2018/OBSL-widgets-digsig-20181011/","title":"XML Digital Signatures for Widgets","rawDate":"2018-10-11","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"widgets-land":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/widgets-land/","title":"Widgets 1.0: The Widget Landscape (Q1 2008)","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"versions":{"20080414":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2008/WD-widgets-land-20080414/","title":"Widgets 1.0: The Widget Landscape (Q1 2008)","rawDate":"2008-04-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-04-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"widgets-reqs":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/widgets-reqs/","title":"Requirement For Standardizing Widgets","rawDate":"2011-09-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20060821":{"status":"WD","rawDate":"2006-08-21","href":"https://www.w3.org/TR/2006/WD-WAPF-REQ-20060821/","source":"./data/w3c-specs.txt"},"20061109":{"status":"WD","rawDate":"2006-11-09","href":"https://www.w3.org/TR/2006/WD-WAPF-REQ-20061109/","source":"./data/w3c-specs.txt"},"20070209":{"status":"WD","rawDate":"2007-02-09","href":"https://www.w3.org/TR/2007/WD-widgets-reqs-20070209/","source":"./data/w3c-specs.txt"},"20070705":{"status":"WD","rawDate":"2007-07-05","href":"https://www.w3.org/TR/2007/WD-widgets-reqs-20070705/","source":"./data/w3c-specs.txt"},"20080414":{"status":"WD","rawDate":"2008-04-14","href":"https://www.w3.org/TR/2008/WD-widgets-reqs-20080414/","source":"./data/w3c-specs.txt"},"20080625":{"status":"WD","rawDate":"2008-06-25","href":"https://www.w3.org/TR/2008/WD-widgets-reqs-20080625/","source":"./data/w3c-specs.txt"},"20080915":{"status":"WD","rawDate":"2008-09-15","href":"https://www.w3.org/TR/2008/WD-widgets-reqs-20080915/","source":"./data/w3c-specs.txt"},"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-widgets-reqs-20090430/","source":"./data/w3c-specs.txt"},"20101026":{"status":"WD","rawDate":"2010-10-26","href":"https://www.w3.org/TR/2010/WD-widgets-reqs-20101026/","source":"./data/w3c-specs.txt"},"20110927":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2011/NOTE-widgets-reqs-20110927/","title":"Requirement For Standardizing Widgets","rawDate":"2011-09-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"widgets-updates":{"authors":["Marcos Caceres","Richard Tibbett"],"href":"https://www.w3.org/TR/widgets-updates/","title":"Widget Updates","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20081007":{"status":"WD","rawDate":"2008-10-07","href":"https://www.w3.org/TR/2008/WD-widgets-updates-20081007/","source":"./data/w3c-specs.txt"},"20100413":{"status":"WD","rawDate":"2010-04-13","href":"https://www.w3.org/TR/2010/WD-widgets-updates-20100413/","source":"./data/w3c-specs.txt"},"20100928":{"status":"WD","rawDate":"2010-09-28","href":"https://www.w3.org/TR/2010/WD-widgets-updates-20100928/","source":"./data/w3c-specs.txt"},"20120322":{"authors":["Marcos Cáceres","Richard Tibbett"],"href":"https://www.w3.org/TR/2012/WD-widgets-updates-20120322/","title":"Widget Updates","rawDate":"2012-03-22","status":"LCWD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130606":{"authors":["Marcos Caceres","Richard Tibbett"],"href":"https://www.w3.org/TR/2013/NOTE-widgets-updates-20130606/","title":"Widget Updates","rawDate":"2013-06-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2013-06-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"widgets-uri":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/widgets-uri/","title":"Widget URI scheme","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20090618":{"status":"WD","rawDate":"2009-06-18","href":"https://www.w3.org/TR/2009/WD-widgets-uri-20090618/","source":"./data/w3c-specs.txt"},"20091008":{"status":"WD","rawDate":"2009-10-08","href":"https://www.w3.org/TR/2009/WD-widgets-uri-20091008/","source":"./data/w3c-specs.txt"},"20110927":{"status":"WD","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/WD-widgets-uri-20110927/","source":"./data/w3c-specs.txt"},"20120313":{"authors":["Marcos Caceres"],"href":"https://www.w3.org/TR/2012/NOTE-widgets-uri-20120313/","title":"Widget URI scheme","rawDate":"2012-03-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-03-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"widgets-vmmf":{"aliasOf":"view-mode"},"widl":{"versions":{"19970922":{"status":"NOTE","rawDate":"1997-09-22","href":"https://www.w3.org/TR/NOTE-widl-970922","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-widl","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1997-09-22","title":"Web Interface Definition Language Submission"},"window-management":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/window-management/","title":"Window Management","rawDate":"2023-09-06","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/window-management/","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20220630":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2022/WD-window-placement-20220630/","title":"Multi-Screen Window Placement","rawDate":"2022-06-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220922":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2022/WD-window-placement-20220922/","title":"Multi-Screen Window Placement","rawDate":"2022-09-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221101":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2022/WD-window-placement-20221101/","title":"Multi-Screen Window Placement","rawDate":"2022-11-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221201":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2022/WD-window-placement-20221201/","title":"Multi-Screen Window Placement","rawDate":"2022-12-01","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20221216":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2022/WD-window-placement-20221216/","title":"Multi-Screen Window Placement","rawDate":"2022-12-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230206":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-placement-20230206/","title":"Multi-Screen Window Placement","rawDate":"2023-02-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230303":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-placement-20230303/","title":"Multi-Screen Window Placement","rawDate":"2023-03-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-placement-20230307/","title":"Multi-Screen Window Placement","rawDate":"2023-03-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230330":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-management-20230330/","title":"Multi-Screen Window Management","rawDate":"2023-03-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230405":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-management-20230405/","title":"Window Management","rawDate":"2023-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230606":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-management-20230606/","title":"Window Management","rawDate":"2023-06-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230614":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-management-20230614/","title":"Window Management","rawDate":"2023-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230829":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-management-20230829/","title":"Window Management","rawDate":"2023-08-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230906":{"authors":["Joshua Bell","Mike Wasserman"],"href":"https://www.w3.org/TR/2023/WD-window-management-20230906/","title":"Window Management","rawDate":"2023-09-06","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2014/secondscreen/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/window-management"},"window-placement":{"aliasOf":"window-management"},"wordnet-rdf":{"authors":["Mark van Assem","Aldo Gangemi","Guus Schreiber"],"href":"https://www.w3.org/TR/wordnet-rdf/","title":"RDF/OWL Representation of WordNet","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"versions":{"20060619":{"authors":["Mark van Assem","Aldo Gangemi","Guus Schreiber"],"href":"https://www.w3.org/TR/2006/WD-wordnet-rdf-20060619/","title":"RDF/OWL Representation of WordNet","rawDate":"2006-06-19","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2001/sw/BestPractices/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2006-06-19","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"workers":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/workers/","title":"Web Workers","status":"NOTE","publisher":"W3C","versions":{"20090423":{"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-workers-20090423/","source":"./data/w3c-specs.txt"},"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-workers-20091029/","source":"./data/w3c-specs.txt"},"20091222":{"status":"WD","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/WD-workers-20091222/","source":"./data/w3c-specs.txt"},"20110208":{"status":"WD","rawDate":"2011-02-08","href":"https://www.w3.org/TR/2011/WD-workers-20110208/","source":"./data/w3c-specs.txt"},"20110310":{"status":"WD","rawDate":"2011-03-10","href":"https://www.w3.org/TR/2011/WD-workers-20110310/","source":"./data/w3c-specs.txt"},"20110901":{"status":"WD","rawDate":"2011-09-01","href":"https://www.w3.org/TR/2011/WD-workers-20110901/","source":"./data/w3c-specs.txt"},"20120313":{"status":"WD","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/WD-workers-20120313/","source":"./data/w3c-specs.txt"},"20120501":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2012/CR-workers-20120501/","title":"Web Workers","rawDate":"2012-05-01","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150924":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2015/WD-workers-20150924/","title":"Web Workers","rawDate":"2015-09-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2021/NOTE-workers-20210128/","title":"Web Workers","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"deliveredBy":["https://www.w3.org/groups/wg/htmlwg/"],"rawDate":"2021-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://html.spec.whatwg.org/multipage/workers.html","repository":"https://github.com/whatwg/html","isRetired":true},"worklets-1":{"authors":["Ian Kilpatrick"],"href":"https://www.w3.org/TR/worklets-1/","title":"Worklets Level 1","rawDate":"2021-07-29","status":"NOTE","publisher":"W3C","edDraft":"https://drafts.css-houdini.org/worklets/","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20160607":{"authors":["Ian Kilpatrick"],"href":"https://www.w3.org/TR/2016/WD-worklets-1-20160607/","title":"Worklets Level 1","rawDate":"2016-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200908":{"authors":["Ian Kilpatrick"],"href":"https://www.w3.org/TR/2020/WD-worklets-1-20200908/","title":"Worklets Level 1","rawDate":"2020-09-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210729":{"authors":["Ian Kilpatrick"],"href":"https://www.w3.org/TR/2021/NOTE-worklets-1-20210729/","title":"Worklets Level 1","rawDate":"2021-07-29","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/CSS/","https://www.w3.org/2001/tag/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"isRetired":true},"wot-architecture":{"authors":["Matthias Kovatsch","Ryuichi Matsukura","Michael Lagally","Toru Kawaguchi","Kunihiko Toumura","Kazuo Kajimoto"],"href":"https://www.w3.org/TR/wot-architecture/","title":"Web of Things (WoT) Architecture","rawDate":"2020-04-09","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-architecture/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170914":{"authors":["Kazuo Kajimoto","Matthias Kovatsch","Uday Davuluru"],"href":"https://www.w3.org/TR/2017/WD-wot-architecture-20170914/","title":"Web of Things (WoT) Architecture","rawDate":"2017-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190516":{"authors":["Matthias Kovatsch","Ryuichi Matsukura","Michael Lagally","Toru Kawaguchi","Kunihiko Toumura","Kazuo Kajimoto"],"href":"https://www.w3.org/TR/2019/CR-wot-architecture-20190516/","title":"Web of Things (WoT) Architecture","rawDate":"2019-05-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191106":{"authors":["Matthias Kovatsch","Ryuichi Matsukura","Michael Lagally","Toru Kawaguchi","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2019/CR-wot-architecture-20191106/","title":"Web of Things (WoT) Architecture","rawDate":"2019-11-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200130":{"authors":["Matthias Kovatsch","Ryuichi Matsukura","Michael Lagally","Toru Kawaguchi","Kunihiko Toumura","Kazuo Kajimoto"],"href":"https://www.w3.org/TR/2020/PR-wot-architecture-20200130/","title":"Web of Things (WoT) Architecture","rawDate":"2020-01-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200409":{"aliasOf":"wot-architecture10-20200409"}},"repository":"https://github.com/w3c/wot-architecture","hasErrata":"https://w3c.github.io/wot-architecture/errata.html"},"wot-architecture10":{"authors":["Matthias Kovatsch","Ryuichi Matsukura","Michael Lagally","Toru Kawaguchi","Kunihiko Toumura","Kazuo Kajimoto"],"href":"https://www.w3.org/TR/wot-architecture10/","title":"Web of Things (WoT) Architecture","rawDate":"2020-04-09","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-architecture/","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-architecture/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200409":{"authors":["Matthias Kovatsch","Ryuichi Matsukura","Michael Lagally","Toru Kawaguchi","Kunihiko Toumura","Kazuo Kajimoto"],"href":"https://www.w3.org/TR/2020/REC-wot-architecture-20200409/","title":"Web of Things (WoT) Architecture","rawDate":"2020-04-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-architecture/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-architecture"},"wot-architecture11":{"authors":["Michael Lagally","Ryuichi Matsukura","Kunihiko Toumura","Michael McCool"],"href":"https://www.w3.org/TR/wot-architecture11/","title":"Web of Things (WoT) Architecture 1.1","rawDate":"2023-12-05","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-architecture/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201124":{"authors":["Michael Lagally","Ryuichi Matsukura","Toru Kawaguchi","Kunihiko Toumura","Kazuo Kajimoto"],"href":"https://www.w3.org/TR/2020/WD-wot-architecture11-20201124/","title":"Web of Things (WoT) Architecture 1.1","rawDate":"2020-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220907":{"authors":["Michael Lagally","Ryuichi Matsukura","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2022/WD-wot-architecture11-20220907/","title":"Web of Things (WoT) Architecture 1.1","rawDate":"2022-09-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230119":{"authors":["Michael Lagally","Ryuichi Matsukura","Michael McCool","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2023/CR-wot-architecture11-20230119/","title":"Web of Things (WoT) Architecture 1.1","rawDate":"2023-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230711":{"authors":["Michael Lagally","Ryuichi Matsukura","Kunihiko Toumura","Michael McCool"],"href":"https://www.w3.org/TR/2023/PR-wot-architecture11-20230711/","title":"Web of Things (WoT) Architecture 1.1","rawDate":"2023-07-11","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231205":{"authors":["Michael Lagally","Ryuichi Matsukura","Kunihiko Toumura","Michael McCool"],"href":"https://www.w3.org/TR/2023/REC-wot-architecture11-20231205/","title":"Web of Things (WoT) Architecture 1.1","rawDate":"2023-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-architecture/errata11.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-architecture","hasErrata":"https://w3c.github.io/wot-architecture/errata11.html"},"wot-binding-templates":{"authors":["Michael Koster","Ege Korkan"],"href":"https://www.w3.org/TR/wot-binding-templates/","title":"Web of Things (WoT) Binding Templates","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wot-binding-templates/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180405":{"authors":["Michael Koster"],"href":"https://www.w3.org/TR/2018/NOTE-wot-binding-templates-20180405/","title":"Web of Things (WoT) Protocol Binding Templates","rawDate":"2018-04-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200130":{"authors":["Michael Koster","Ege Korkan"],"href":"https://www.w3.org/TR/2020/NOTE-wot-binding-templates-20200130/","title":"Web of Things (WoT) Binding Templates","rawDate":"2020-01-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230928":{"authors":["Michael Koster","Ege Korkan"],"href":"https://www.w3.org/TR/2023/NOTE-wot-binding-templates-20230928/","title":"Web of Things (WoT) Binding Templates","rawDate":"2023-09-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-binding-templates"},"wot-discovery":{"authors":["Kunihiko Toumura","Michael McCool","Andrea Cimmino","Farshid Tavakolizadeh"],"href":"https://www.w3.org/TR/wot-discovery/","title":"Web of Things (WoT) Discovery","rawDate":"2023-12-05","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-discovery/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201124":{"authors":["Andrea Cimmino","Michael McCool","Farshid Tavakolizadeh","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2020/WD-wot-discovery-20201124/","title":"Web of Things (WoT) Discovery","rawDate":"2020-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210602":{"authors":["Andrea Cimmino","Michael McCool","Farshid Tavakolizadeh","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2021/WD-wot-discovery-20210602/","title":"Web of Things (WoT) Discovery","rawDate":"2021-06-02","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220810":{"authors":["Andrea Cimmino","Michael McCool","Farshid Tavakolizadeh","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2022/WD-wot-discovery-20220810/","title":"Web of Things (WoT) Discovery","rawDate":"2022-08-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230119":{"authors":["Andrea Cimmino","Michael McCool","Farshid Tavakolizadeh","Kunihiko Toumura"],"href":"https://www.w3.org/TR/2023/CR-wot-discovery-20230119/","title":"Web of Things (WoT) Discovery","rawDate":"2023-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230711":{"authors":["Kunihiko Toumura","Michael McCool","Andrea Cimmino","Farshid Tavakolizadeh"],"href":"https://www.w3.org/TR/2023/PR-wot-discovery-20230711/","title":"Web of Things (WoT) Discovery","rawDate":"2023-07-11","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231205":{"authors":["Kunihiko Toumura","Michael McCool","Andrea Cimmino","Farshid Tavakolizadeh"],"href":"https://www.w3.org/TR/2023/REC-wot-discovery-20231205/","title":"Web of Things (WoT) Discovery","rawDate":"2023-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-discovery/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-discovery","hasErrata":"https://w3c.github.io/wot-discovery/errata.html"},"wot-profile":{"authors":["Michael Lagally","Ben Francis","Michael McCool","Ryuichi Matsukura","Sebastian Käbisch","Tomoaki Mizushima"],"href":"https://www.w3.org/TR/wot-profile/","title":"Web of Things (WoT) Profile","rawDate":"2023-01-18","status":"WD","publisher":"W3C","edDraft":"https://w3c.github.io/wot-profile/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201124":{"authors":["Michael Lagally","Michael McCool","Ryuichi Matsukura","Sebastian Käbisch","Tomoaki Mizushima"],"href":"https://www.w3.org/TR/2020/WD-wot-profile-20201124/","title":"Web of Things (WoT) Profile","rawDate":"2020-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230118":{"authors":["Michael Lagally","Ben Francis","Michael McCool","Ryuichi Matsukura","Sebastian Käbisch","Tomoaki Mizushima"],"href":"https://www.w3.org/TR/2023/WD-wot-profile-20230118/","title":"Web of Things (WoT) Profile","rawDate":"2023-01-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-profile"},"wot-scripting-api":{"authors":["Zoltan Kis","Daniel Peintner","Cristiano Aguzzi","Johannes Hund","Kazuaki Nimura"],"href":"https://www.w3.org/TR/wot-scripting-api/","title":"Web of Things (WoT) Scripting API","rawDate":"2023-10-03","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wot-scripting-api/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170914":{"authors":["Zoltan Kis","Kazuaki Nimura","Daniel Peintner"],"href":"https://www.w3.org/TR/2017/WD-wot-scripting-api-20170914/","title":"Web of Things (WoT) Scripting API","rawDate":"2017-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180405":{"authors":["Zoltan Kis","Kazuaki Nimura","Daniel Peintner","Johannes Hund"],"href":"https://www.w3.org/TR/2018/WD-wot-scripting-api-20180405/","title":"Web of Things (WoT) Scripting API","rawDate":"2018-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181129":{"authors":["Zoltan Kis","Kazuaki Nimura","Daniel Peintner","Johannes Hund"],"href":"https://www.w3.org/TR/2018/WD-wot-scripting-api-20181129/","title":"Web of Things (WoT) Scripting API","rawDate":"2018-11-29","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191028":{"authors":["Zoltan Kis","Daniel Peintner","Johannes Hund","Kazuaki Nimura"],"href":"https://www.w3.org/TR/2019/WD-wot-scripting-api-20191028/","title":"Web of Things (WoT) Scripting API","rawDate":"2019-10-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201124":{"authors":["Zoltan Kis","Daniel Peintner","Cristiano Aguzzi","Johannes Hund","Kazuaki Nimura"],"href":"https://www.w3.org/TR/2020/NOTE-wot-scripting-api-20201124/","title":"Web of Things (WoT) Scripting API","rawDate":"2020-11-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231003":{"authors":["Zoltan Kis","Daniel Peintner","Cristiano Aguzzi","Johannes Hund","Kazuaki Nimura"],"href":"https://www.w3.org/TR/2023/NOTE-wot-scripting-api-20231003/","title":"Web of Things (WoT) Scripting API","rawDate":"2023-10-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-scripting-api"},"wot-security":{"authors":["Elena Reshetova","Michael McCool"],"href":"https://www.w3.org/TR/wot-security/","title":"Web of Things (WoT) Security and Privacy Guidelines","rawDate":"2019-11-06","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wot-security/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20171214":{"authors":["Elena Reshetova","Michael McCool"],"href":"https://www.w3.org/TR/2017/NOTE-wot-security-20171214/","title":"Web of Things (WoT) Security and Privacy Considerations","rawDate":"2017-12-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181203":{"authors":["Elena Reshetova","Michael McCool"],"href":"https://www.w3.org/TR/2018/NOTE-wot-security-20181203/","title":"Web of Things (WoT) Security and Privacy Considerations","rawDate":"2018-12-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191106":{"authors":["Elena Reshetova","Michael McCool"],"href":"https://www.w3.org/TR/2019/NOTE-wot-security-20191106/","title":"Web of Things (WoT) Security and Privacy Guidelines","rawDate":"2019-11-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-security"},"wot-thing-description":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay","Matthias Kovatsch"],"href":"https://www.w3.org/TR/wot-thing-description/","title":"Web of Things (WoT) Thing Description","rawDate":"2020-04-09","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-thing-description/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20170914":{"authors":["Sebastian Käbisch","Takuki Kamiya"],"href":"https://www.w3.org/TR/2017/WD-wot-thing-description-20170914/","title":"Web of Things (WoT) Thing Description","rawDate":"2017-09-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180405":{"authors":["Sebastian Käbisch","Takuki Kamiya"],"href":"https://www.w3.org/TR/2018/WD-wot-thing-description-20180405/","title":"Web of Things (WoT) Thing Description","rawDate":"2018-04-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181021":{"authors":["Sebastian Käbisch","Takuki Kamiya"],"href":"https://www.w3.org/TR/2018/WD-wot-thing-description-20181021/","title":"Web of Things (WoT) Thing Description","rawDate":"2018-10-21","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190516":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay"],"href":"https://www.w3.org/TR/2019/CR-wot-thing-description-20190516/","title":"Web of Things (WoT) Thing Description","rawDate":"2019-05-16","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20191106":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay","Matthias Kovatsch"],"href":"https://www.w3.org/TR/2019/CR-wot-thing-description-20191106/","title":"Web of Things (WoT) Thing Description","rawDate":"2019-11-06","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200130":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay","Matthias Kovatsch"],"href":"https://www.w3.org/TR/2020/PR-wot-thing-description-20200130/","title":"Web of Things (WoT) Thing Description","rawDate":"2020-01-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200409":{"aliasOf":"wot-thing-description10-20200409"}},"repository":"https://github.com/w3c/wot-thing-description","hasErrata":"https://w3c.github.io/wot-thing-description/errata.html"},"wot-thing-description10":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay","Matthias Kovatsch"],"href":"https://www.w3.org/TR/wot-thing-description10/","title":"Web of Things (WoT) Thing Description","rawDate":"2020-04-09","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-thing-description/","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-thing-description/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200409":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay","Matthias Kovatsch"],"href":"https://www.w3.org/TR/2020/REC-wot-thing-description-20200409/","title":"Web of Things (WoT) Thing Description","rawDate":"2020-04-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-thing-description/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-thing-description"},"wot-thing-description11":{"authors":["Sebastian Käbisch","Michael McCool","Ege Korkan"],"href":"https://www.w3.org/TR/wot-thing-description11/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2023-12-05","status":"REC","publisher":"W3C","edDraft":"https://w3c.github.io/wot-thing-description/","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20201124":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay"],"href":"https://www.w3.org/TR/2020/WD-wot-thing-description11-20201124/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2020-11-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210607":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay"],"href":"https://www.w3.org/TR/2021/WD-wot-thing-description11-20210607/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2021-06-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220311":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay"],"href":"https://www.w3.org/TR/2022/WD-wot-thing-description11-20220311/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2022-03-11","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220803":{"authors":["Sebastian Käbisch","Takuki Kamiya","Michael McCool","Victor Charpenay"],"href":"https://www.w3.org/TR/2022/WD-wot-thing-description11-20220803/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2022-08-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230119":{"authors":["Sebastian Käbisch","Michael McCool","Ege Korkan"],"href":"https://www.w3.org/TR/2023/CR-wot-thing-description11-20230119/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2023-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230711":{"authors":["Sebastian Käbisch","Michael McCool","Ege Korkan"],"href":"https://www.w3.org/TR/2023/PR-wot-thing-description11-20230711/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2023-07-11","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20231205":{"authors":["Sebastian Käbisch","Michael McCool","Ege Korkan"],"href":"https://www.w3.org/TR/2023/REC-wot-thing-description11-20231205/","title":"Web of Things (WoT) Thing Description 1.1","rawDate":"2023-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/WG/"],"hasErrata":"https://w3c.github.io/wot-thing-description/errata11.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-thing-description","hasErrata":"https://w3c.github.io/wot-thing-description/errata11.html"},"wot-usecases":{"authors":["Michael Lagally","Michael McCool","Ryuichi Matsukura","Tomoaki Mizushima"],"href":"https://www.w3.org/TR/wot-usecases/","title":"Web of Things (WoT): Use Cases and Requirements","rawDate":"2022-03-07","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wot-usecases/","deliveredBy":["https://www.w3.org/WoT/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20210518":{"authors":["Michael Lagally","Michael McCool","Ryuichi Matsukura","Tomoaki Mizushima"],"href":"https://www.w3.org/TR/2021/NOTE-wot-usecases-20210518/","title":"Web of Things (WoT): Use Cases and Requirements","rawDate":"2021-05-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20220307":{"authors":["Michael Lagally","Michael McCool","Ryuichi Matsukura","Tomoaki Mizushima"],"href":"https://www.w3.org/TR/2022/NOTE-wot-usecases-20220307/","title":"Web of Things (WoT): Use Cases and Requirements","rawDate":"2022-03-07","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WoT/IG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wot-usecases"},"wpub":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/wpub/","title":"Web Publications","rawDate":"2019-08-13","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wpub/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180104":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2018/WD-wpub-20180104/","title":"Web Publications","rawDate":"2018-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180315":{"authors":["Matt Garrish","Ivan Herman","Baldur Bjarnason","Timothy Cole","Dave Cramer","Hadrien Gardeur","Florian Rivoal"],"href":"https://www.w3.org/TR/2018/WD-wpub-20180315/","title":"Web Publications","rawDate":"2018-03-15","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180726":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2018/WD-wpub-20180726/","title":"Web Publications","rawDate":"2018-07-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180814":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2018/WD-wpub-20180814/","title":"Web Publications","rawDate":"2018-08-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20181212":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2018/WD-wpub-20181212/","title":"Web Publications","rawDate":"2018-12-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190130":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/WD-wpub-20190130/","title":"Web Publications","rawDate":"2019-01-30","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190409":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/WD-wpub-20190409/","title":"Web Publications","rawDate":"2019-04-09","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190614":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/WD-wpub-20190614/","title":"Web Publications","rawDate":"2019-06-14","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20190813":{"authors":["Matt Garrish","Ivan Herman"],"href":"https://www.w3.org/TR/2019/NOTE-wpub-20190813/","title":"Web Publications","rawDate":"2019-08-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"repository":"https://github.com/w3c/wpub","isRetired":true},"wpub-ann":{"authors":["Timothy Cole","Ivan Herman"],"href":"https://www.w3.org/TR/wpub-ann/","title":"Web Annotation Extensions for Web Publications","rawDate":"2020-10-01","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/wpub-ann/","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20180104":{"authors":["Timothy Cole","Ivan Herman"],"href":"https://www.w3.org/TR/2018/WD-wpub-ann-20180104/","title":"Web Annotation Extensions for Web Publications","rawDate":"2018-01-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20201001":{"authors":["Timothy Cole","Ivan Herman"],"href":"https://www.w3.org/TR/2020/NOTE-wpub-ann-20201001/","title":"Web Annotation Extensions for Web Publications","rawDate":"2020-10-01","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/publishing/groups/publ-wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/wpub-ann","isRetired":true},"ws-addr-core":{"authors":["Martin Gudgin","Marc Hadley","Tony Rogers"],"href":"https://www.w3.org/TR/ws-addr-core/","title":"Web Services Addressing 1.0 - Core","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"hasErrata":"https://www.w3.org/2006/05/ws-addr-errata.html","versions":{"20041208":{"status":"WD","rawDate":"2004-12-08","href":"https://www.w3.org/TR/2004/WD-ws-addr-core-20041208","source":"./data/w3c-specs.txt"},"20050215":{"status":"WD","rawDate":"2005-02-15","href":"https://www.w3.org/TR/2005/WD-ws-addr-core-20050215","source":"./data/w3c-specs.txt"},"20050331":{"status":"WD","rawDate":"2005-03-31","href":"https://www.w3.org/TR/2005/WD-ws-addr-core-20050331","source":"./data/w3c-specs.txt"},"20050817":{"status":"CR","rawDate":"2005-08-17","href":"https://www.w3.org/TR/2005/CR-ws-addr-core-20050817","source":"./data/w3c-specs.txt"},"20060321":{"status":"PR","rawDate":"2006-03-21","href":"https://www.w3.org/TR/2006/PR-ws-addr-core-20060321","source":"./data/w3c-specs.txt"},"20060509":{"authors":["Martin Gudgin","Marc Hadley","Tony Rogers"],"href":"https://www.w3.org/TR/2006/REC-ws-addr-core-20060509/","title":"Web Services Addressing 1.0 - Core","rawDate":"2006-05-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"hasErrata":"https://www.w3.org/2006/05/ws-addr-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-05-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-addr-metadata":{"authors":["Martin Gudgin","Marc Hadley","Tony Rogers","Ümit Yalçinalp"],"etAl":true,"href":"https://www.w3.org/TR/ws-addr-metadata/","title":"Web Services Addressing 1.0 - Metadata","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"hasErrata":"https://www.w3.org/2006/05/ws-addr-errata.html","versions":{"20041208":{"status":"WD","rawDate":"2004-12-08","href":"https://www.w3.org/TR/2004/WD-ws-addr-wsdl-20041208","source":"./data/w3c-specs.txt"},"20050215":{"status":"WD","rawDate":"2005-02-15","href":"https://www.w3.org/TR/2005/WD-ws-addr-wsdl-20050215","source":"./data/w3c-specs.txt"},"20050413":{"status":"WD","rawDate":"2005-04-13","href":"https://www.w3.org/TR/2005/WD-ws-addr-wsdl-20050413","source":"./data/w3c-specs.txt"},"20060216":{"status":"WD","rawDate":"2006-02-16","href":"https://www.w3.org/TR/2006/WD-ws-addr-wsdl-20060216","source":"./data/w3c-specs.txt"},"20060529":{"status":"CR","rawDate":"2006-05-29","href":"https://www.w3.org/TR/2006/CR-ws-addr-wsdl-20060529","source":"./data/w3c-specs.txt"},"20070202":{"status":"WD","rawDate":"2007-02-02","href":"https://www.w3.org/TR/2007/WD-ws-addr-metadata-20070202","source":"./data/w3c-specs.txt"},"20070516":{"status":"WD","rawDate":"2007-05-16","href":"https://www.w3.org/TR/2007/WD-ws-addr-metadata-20070516","source":"./data/w3c-specs.txt"},"20070627":{"status":"WD","rawDate":"2007-06-27","href":"https://www.w3.org/TR/2007/WD-ws-addr-metadata-20070627","source":"./data/w3c-specs.txt"},"20070731":{"status":"PR","rawDate":"2007-07-31","href":"https://www.w3.org/TR/2007/PR-ws-addr-metadata-20070731","source":"./data/w3c-specs.txt"},"20070904":{"authors":["Martin Gudgin","Marc Hadley","Tony Rogers","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2007/REC-ws-addr-metadata-20070904/","title":"Web Services Addressing 1.0 - Metadata","rawDate":"2007-09-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"hasErrata":"https://www.w3.org/2006/05/ws-addr-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-09-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-addr-soap":{"authors":["Martin Gudgin","Marc Hadley","Tony Rogers"],"etAl":true,"href":"https://www.w3.org/TR/ws-addr-soap/","title":"Web Services Addressing 1.0 - SOAP Binding","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"hasErrata":"https://www.w3.org/2006/05/ws-addr-errata.html","versions":{"20041208":{"status":"WD","rawDate":"2004-12-08","href":"https://www.w3.org/TR/2004/WD-ws-addr-soap-20041208","source":"./data/w3c-specs.txt"},"20050215":{"status":"WD","rawDate":"2005-02-15","href":"https://www.w3.org/TR/2005/WD-ws-addr-soap-20050215","source":"./data/w3c-specs.txt"},"20050331":{"status":"WD","rawDate":"2005-03-31","href":"https://www.w3.org/TR/2005/WD-ws-addr-soap-20050331","source":"./data/w3c-specs.txt"},"20050817":{"status":"CR","rawDate":"2005-08-17","href":"https://www.w3.org/TR/2005/CR-ws-addr-soap-20050817","source":"./data/w3c-specs.txt"},"20060321":{"status":"PR","rawDate":"2006-03-21","href":"https://www.w3.org/TR/2006/PR-ws-addr-soap-20060321","source":"./data/w3c-specs.txt"},"20060509":{"authors":["Martin Gudgin","Marc Hadley","Tony Rogers"],"href":"https://www.w3.org/TR/2006/REC-ws-addr-soap-20060509/","title":"Web Services Addressing 1.0 - SOAP Binding","rawDate":"2006-05-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/addr/"],"hasErrata":"https://www.w3.org/2006/05/ws-addr-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-05-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-addr-wsdl":{"aliasOf":"ws-addr-metadata"},"ws-arch":{"authors":["David Booth","Hugo Haas","Francis McCabe","Eric Newcomer","Mike Champion","Christopher Ferris","David Orchard"],"etAl":true,"href":"https://www.w3.org/TR/ws-arch/","title":"Web Services Architecture","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"versions":{"20021114":{"status":"WD","rawDate":"2002-11-14","href":"https://www.w3.org/TR/2002/WD-ws-arch-20021114/","source":"./data/w3c-specs.txt"},"20030514":{"status":"WD","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/WD-ws-arch-20030514/","source":"./data/w3c-specs.txt"},"20030808":{"status":"WD","rawDate":"2003-08-08","href":"https://www.w3.org/TR/2003/WD-ws-arch-20030808/","source":"./data/w3c-specs.txt"},"20040211":{"authors":["David Booth","Hugo Haas","Francis McCabe","Eric Newcomer","Mike Champion","Christopher Ferris","David Orchard"],"href":"https://www.w3.org/TR/2004/NOTE-ws-arch-20040211/","title":"Web Services Architecture","rawDate":"2004-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-arch-scenarios":{"authors":["Hao He","Hugo Haas","David Orchard"],"href":"https://www.w3.org/TR/ws-arch-scenarios/","title":"Web Services Architecture Usage Scenarios","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"versions":{"20020730":{"status":"WD","rawDate":"2002-07-30","href":"https://www.w3.org/TR/2002/WD-ws-arch-scenarios-20020730/","source":"./data/w3c-specs.txt"},"20030514":{"status":"WD","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/WD-ws-arch-scenarios-20030514/","source":"./data/w3c-specs.txt"},"20040211":{"authors":["Hao He","Hugo Haas","David Orchard"],"href":"https://www.w3.org/TR/2004/NOTE-ws-arch-scenarios-20040211/","title":"Web Services Architecture Usage Scenarios","rawDate":"2004-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-cdl-10":{"authors":["Nickolas Kavantzas","David Burdett","Greg Ritzinger","Tony Fletcher","Yves Lafon","Charlton Barreto"],"etAl":true,"href":"https://www.w3.org/TR/ws-cdl-10/","title":"Web Services Choreography Description Language Version 1.0","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/chor/"],"versions":{"20040427":{"status":"WD","rawDate":"2004-04-27","href":"https://www.w3.org/TR/2004/WD-ws-cdl-10-20040427/","source":"./data/w3c-specs.txt"},"20041012":{"status":"WD","rawDate":"2004-10-12","href":"https://www.w3.org/TR/2004/WD-ws-cdl-10-20041012/","source":"./data/w3c-specs.txt"},"20041217":{"status":"WD","rawDate":"2004-12-17","href":"https://www.w3.org/TR/2004/WD-ws-cdl-10-20041217/","source":"./data/w3c-specs.txt"},"20051109":{"authors":["Nickolas Kavantzas","David Burdett","Greg Ritzinger","Tony Fletcher","Yves Lafon","Charlton Barreto"],"href":"https://www.w3.org/TR/2005/CR-ws-cdl-10-20051109/","title":"Web Services Choreography Description Language Version 1.0","rawDate":"2005-11-09","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/chor/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2005-11-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"ws-cdl-10-primer":{"authors":["Steve Ross-Talbot","Tony Fletcher"],"href":"https://www.w3.org/TR/ws-cdl-10-primer/","title":"Web Services Choreography Description Language: Primer","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/chor/"],"versions":{"20060619":{"authors":["Steve Ross-Talbot","Tony Fletcher"],"href":"https://www.w3.org/TR/2006/WD-ws-cdl-10-primer-20060619/","title":"Web Services Choreography Description Language: Primer","rawDate":"2006-06-19","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/ws/chor/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2006-06-19","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-chor-model":{"authors":["David Burdett","Nickolas Kavantzas"],"href":"https://www.w3.org/TR/ws-chor-model/","title":"WS Choreography Model Overview","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/chor/"],"versions":{"20040324":{"authors":["David Burdett","Nickolas Kavantzas"],"href":"https://www.w3.org/TR/2004/WD-ws-chor-model-20040324/","title":"WS Choreography Model Overview","rawDate":"2004-03-24","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/ws/chor/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2004-03-24","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-chor-reqs":{"authors":["Daniel Austin","Abbie Barbir","Ed Peters","Steve Ross-Talbot"],"etAl":true,"href":"https://www.w3.org/TR/ws-chor-reqs/","title":"Web Services Choreography Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/chor/"],"versions":{"20030812":{"status":"WD","rawDate":"2003-08-12","href":"https://www.w3.org/TR/2003/WD-ws-chor-reqs-20030812","source":"./data/w3c-specs.txt"},"20040311":{"authors":["Daniel Austin","Abbie Barbir","Ed Peters","Steve Ross-Talbot"],"href":"https://www.w3.org/TR/2004/WD-ws-chor-reqs-20040311/","title":"Web Services Choreography Requirements","rawDate":"2004-03-11","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/ws/chor/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2004-03-11","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-desc-reqs":{"authors":["Jeffrey Schlimmer"],"href":"https://www.w3.org/TR/ws-desc-reqs/","title":"Web Services Description Requirements","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"versions":{"20020429":{"status":"WD","rawDate":"2002-04-29","href":"https://www.w3.org/TR/2002/WD-ws-desc-reqs-20020429","source":"./data/w3c-specs.txt"},"20021028":{"authors":["Jeffrey Schlimmer"],"href":"https://www.w3.org/TR/2002/WD-ws-desc-reqs-20021028/","title":"Web Services Description Requirements","rawDate":"2002-10-28","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2002-10-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"ws-desc-usecases":{"authors":["Waqar Sadiq","Sandeep Kumar"],"href":"https://www.w3.org/TR/ws-desc-usecases/","title":"Web Service Description Usage Scenarios","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"versions":{"20020604":{"authors":["Waqar Sadiq","Sandeep Kumar"],"href":"https://www.w3.org/TR/2002/WD-ws-desc-usecases-20020604/","title":"Web Service Description Usage Scenarios","rawDate":"2002-06-04","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-06-04","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-enumeration":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"etAl":true,"href":"https://www.w3.org/TR/ws-enumeration/","title":"Web Services Enumeration (WS-Enumeration)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-enumeration-20111213-errata","versions":{"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-ws-enumeration-20090317","source":"./data/w3c-specs.txt"},"20090625":{"status":"WD","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/WD-ws-enumeration-20090625","source":"./data/w3c-specs.txt"},"20090924":{"status":"WD","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/WD-ws-enumeration-20090924","source":"./data/w3c-specs.txt"},"20091217":{"status":"WD","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/WD-ws-enumeration-20091217","source":"./data/w3c-specs.txt"},"20100330":{"status":"WD","rawDate":"2010-03-30","href":"https://www.w3.org/TR/2010/WD-ws-enumeration-20100330","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-enumeration-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-enumeration-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-enumeration-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-enumeration-20111213/","title":"Web Services Enumeration (WS-Enumeration)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-enumeration-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-event-descriptions":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/ws-event-descriptions/","title":"Web Services Event Descriptions (WS-EventDescriptions)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-event-descriptions-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100209":{"status":"WD","rawDate":"2010-02-09","href":"https://www.w3.org/TR/2010/WD-ws-event-descriptions-20100209","source":"./data/w3c-specs.txt"},"20100330":{"status":"WD","rawDate":"2010-03-30","href":"https://www.w3.org/TR/2010/WD-ws-event-descriptions-20100330","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-event-descriptions-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-event-descriptions-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-event-descriptions-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-event-descriptions-20111213/","title":"Web Services Event Descriptions (WS-EventDescriptions)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-event-descriptions-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ws-eventing":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"etAl":true,"href":"https://www.w3.org/TR/ws-eventing/","title":"Web Services Eventing (WS-Eventing)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-eventing-20111213-errata","versions":{"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-ws-eventing-20090317","source":"./data/w3c-specs.txt"},"20090625":{"status":"WD","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/WD-ws-eventing-20090625","source":"./data/w3c-specs.txt"},"20090924":{"status":"WD","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/WD-ws-eventing-20090924","source":"./data/w3c-specs.txt"},"20091217":{"status":"WD","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/WD-ws-eventing-20091217","source":"./data/w3c-specs.txt"},"20100330":{"status":"WD","rawDate":"2010-03-30","href":"https://www.w3.org/TR/2010/WD-ws-eventing-20100330","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-eventing-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-eventing-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-eventing-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-eventing-20111213/","title":"Web Services Eventing (WS-Eventing)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-eventing-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-fragment":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/ws-fragment/","title":"Web Services Fragment (WS-Fragment)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-fragment-20111213-errata","versions":{"20091029":{"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-ws-fragment-20091029","source":"./data/w3c-specs.txt"},"20091217":{"status":"WD","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/WD-ws-fragment-20091217","source":"./data/w3c-specs.txt"},"20100330":{"status":"WD","rawDate":"2010-03-30","href":"https://www.w3.org/TR/2010/WD-ws-fragment-20100330","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-fragment-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-fragment-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-fragment-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-fragment-20111213/","title":"Web Services Fragment (WS-Fragment)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-fragment-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-gloss":{"authors":["Hugo Haas","Allen Brown"],"href":"https://www.w3.org/TR/ws-gloss/","title":"Web Services Glossary","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"versions":{"20021114":{"status":"WD","rawDate":"2002-11-14","href":"https://www.w3.org/TR/2002/WD-ws-gloss-20021114/","source":"./data/w3c-specs.txt"},"20030514":{"status":"WD","rawDate":"2003-05-14","href":"https://www.w3.org/TR/2003/WD-ws-gloss-20030514/","source":"./data/w3c-specs.txt"},"20030808":{"status":"WD","rawDate":"2003-08-08","href":"https://www.w3.org/TR/2003/WD-ws-gloss-20030808/","source":"./data/w3c-specs.txt"},"20040211":{"authors":["Hugo Haas","Allen Brown"],"href":"https://www.w3.org/TR/2004/NOTE-ws-gloss-20040211/","title":"Web Services Glossary","rawDate":"2004-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-i18n":{"authors":["Addison Phillips","Mary Trumble","Felix Sasaki"],"href":"https://www.w3.org/TR/ws-i18n/","title":"Web Services Internationalization (WS-I18N)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20050914":{"status":"WD","rawDate":"2005-09-14","href":"https://www.w3.org/TR/2005/WD-ws-i18n-20050914/","source":"./data/w3c-specs.txt"},"20080415":{"status":"WD","rawDate":"2008-04-15","href":"https://www.w3.org/TR/2008/WD-ws-i18n-20080415/","source":"./data/w3c-specs.txt"},"20120522":{"authors":["Addison Phillips","Mary Trumble","Felix Sasaki"],"href":"https://www.w3.org/TR/2012/NOTE-ws-i18n-20120522/","title":"Web Services Internationalization (WS-I18N)","rawDate":"2012-05-22","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2012-05-22","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"ws-i18n-req":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/ws-i18n-req/","title":"Requirements for the Internationalization of Web Services","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20031217":{"status":"WD","rawDate":"2003-12-17","href":"https://www.w3.org/TR/2003/WD-ws-i18n-req-20031217/","source":"./data/w3c-specs.txt"},"20041116":{"authors":["Addison Phillips"],"href":"https://www.w3.org/TR/2004/NOTE-ws-i18n-req-20041116/","title":"Requirements for the Internationalization of Web Services","rawDate":"2004-11-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-11-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-i18n-scenarios":{"authors":["Debasish Banerjee","Martin Dürst","Michael McKenna","Addison Phillips","Takao Suzuki","Tex Texin","Mary Trumble","Andrea Vine","Kentaro Noji"],"etAl":true,"href":"https://www.w3.org/TR/ws-i18n-scenarios/","title":"Web Services Internationalization Usage Scenarios","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"versions":{"20021220":{"status":"WD","rawDate":"2002-12-20","href":"https://www.w3.org/TR/2002/WD-ws-i18n-scenarios-20021220/","source":"./data/w3c-specs.txt"},"20030516":{"status":"WD","rawDate":"2003-05-16","href":"https://www.w3.org/TR/2003/WD-ws-i18n-scenarios-20030516/","source":"./data/w3c-specs.txt"},"20040512":{"status":"WD","rawDate":"2004-05-12","href":"https://www.w3.org/TR/2004/WD-ws-i18n-scenarios-20040512/","source":"./data/w3c-specs.txt"},"20040730":{"authors":["Debasish Banerjee","Martin Dürst","Michael McKenna","Addison Phillips","Takao Suzuki","Tex Texin","Mary Trumble","Andrea Vine","Kentaro Noji"],"href":"https://www.w3.org/TR/2004/NOTE-ws-i18n-scenarios-20040730/","title":"Web Services Internationalization Usage Scenarios","rawDate":"2004-07-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-07-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-metadata-exchange":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"etAl":true,"href":"https://www.w3.org/TR/ws-metadata-exchange/","title":"Web Services Metadata Exchange (WS-MetadataExchange)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-metadata-exchange-20111213-errata","versions":{"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-ws-metadata-exchange-20090317","source":"./data/w3c-specs.txt"},"20090625":{"status":"WD","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/WD-ws-metadata-exchange-20090625","source":"./data/w3c-specs.txt"},"20090924":{"status":"WD","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/WD-ws-metadata-exchange-20090924","source":"./data/w3c-specs.txt"},"20091217":{"status":"WD","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/WD-ws-metadata-exchange-20091217","source":"./data/w3c-specs.txt"},"20100330":{"status":"WD","rawDate":"2010-03-30","href":"https://www.w3.org/TR/2010/WD-ws-metadata-exchange-20100330","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-metadata-exchange-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-metadata-exchange-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-metadata-exchange-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-metadata-exchange-20111213/","title":"Web Services Metadata Exchange (WS-MetadataExchange)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-metadata-exchange-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-policy":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"etAl":true,"href":"https://www.w3.org/TR/ws-policy/","title":"Web Services Policy 1.5 - Framework","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"hasErrata":"https://www.w3.org/2002/ws/policy/7/framework-errata.html","versions":{"20060731":{"status":"WD","rawDate":"2006-07-31","href":"https://www.w3.org/TR/2006/WD-ws-policy-20060731","source":"./data/w3c-specs.txt"},"20060927":{"status":"WD","rawDate":"2006-09-27","href":"https://www.w3.org/TR/2006/WD-ws-policy-20060927","source":"./data/w3c-specs.txt"},"20061102":{"status":"WD","rawDate":"2006-11-02","href":"https://www.w3.org/TR/2006/WD-ws-policy-20061102","source":"./data/w3c-specs.txt"},"20061117":{"status":"WD","rawDate":"2006-11-17","href":"https://www.w3.org/TR/2006/WD-ws-policy-20061117","source":"./data/w3c-specs.txt"},"20070228":{"status":"CR","rawDate":"2007-02-28","href":"https://www.w3.org/TR/2007/CR-ws-policy-20070228","source":"./data/w3c-specs.txt"},"20070330":{"status":"CR","rawDate":"2007-03-30","href":"https://www.w3.org/TR/2007/CR-ws-policy-20070330","source":"./data/w3c-specs.txt"},"20070605":{"status":"CR","rawDate":"2007-06-05","href":"https://www.w3.org/TR/2007/CR-ws-policy-20070605","source":"./data/w3c-specs.txt"},"20070706":{"status":"PR","rawDate":"2007-07-06","href":"https://www.w3.org/TR/2007/PR-ws-policy-20070706","source":"./data/w3c-specs.txt"},"20070904":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2007/REC-ws-policy-20070904/","title":"Web Services Policy 1.5 - Framework","rawDate":"2007-09-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"hasErrata":"https://www.w3.org/2002/ws/policy/7/framework-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-09-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-policy-attach":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"etAl":true,"href":"https://www.w3.org/TR/ws-policy-attach/","title":"Web Services Policy 1.5 - Attachment","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"hasErrata":"https://www.w3.org/2002/ws/policy/7/attachment-errata.html","versions":{"20060731":{"status":"WD","rawDate":"2006-07-31","href":"https://www.w3.org/TR/2006/WD-ws-policy-attach-20060731","source":"./data/w3c-specs.txt"},"20060927":{"status":"WD","rawDate":"2006-09-27","href":"https://www.w3.org/TR/2006/WD-ws-policy-attach-20060927","source":"./data/w3c-specs.txt"},"20061102":{"status":"WD","rawDate":"2006-11-02","href":"https://www.w3.org/TR/2006/WD-ws-policy-attach-20061102","source":"./data/w3c-specs.txt"},"20061117":{"status":"WD","rawDate":"2006-11-17","href":"https://www.w3.org/TR/2006/WD-ws-policy-attach-20061117","source":"./data/w3c-specs.txt"},"20070228":{"status":"CR","rawDate":"2007-02-28","href":"https://www.w3.org/TR/2007/CR-ws-policy-attach-20070228","source":"./data/w3c-specs.txt"},"20070330":{"status":"CR","rawDate":"2007-03-30","href":"https://www.w3.org/TR/2007/CR-ws-policy-attach-20070330","source":"./data/w3c-specs.txt"},"20070605":{"status":"CR","rawDate":"2007-06-05","href":"https://www.w3.org/TR/2007/CR-ws-policy-attach-20070605","source":"./data/w3c-specs.txt"},"20070706":{"status":"PR","rawDate":"2007-07-06","href":"https://www.w3.org/TR/2007/PR-ws-policy-attach-20070706","source":"./data/w3c-specs.txt"},"20070904":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2007/REC-ws-policy-attach-20070904/","title":"Web Services Policy 1.5 - Attachment","rawDate":"2007-09-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"hasErrata":"https://www.w3.org/2002/ws/policy/7/attachment-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-09-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-policy-guidelines":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"etAl":true,"href":"https://www.w3.org/TR/ws-policy-guidelines/","title":"Web Services Policy 1.5 - Guidelines for Policy Assertion Authors","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"versions":{"20061221":{"status":"WD","rawDate":"2006-12-21","href":"https://www.w3.org/TR/2006/WD-ws-policy-guidelines-20061221","source":"./data/w3c-specs.txt"},"20070330":{"status":"WD","rawDate":"2007-03-30","href":"https://www.w3.org/TR/2007/WD-ws-policy-guidelines-20070330","source":"./data/w3c-specs.txt"},"20070810":{"status":"WD","rawDate":"2007-08-10","href":"https://www.w3.org/TR/2007/WD-ws-policy-guidelines-20070810","source":"./data/w3c-specs.txt"},"20070928":{"status":"WD","rawDate":"2007-09-28","href":"https://www.w3.org/TR/2007/WD-ws-policy-guidelines-20070928","source":"./data/w3c-specs.txt"},"20071112":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2007/NOTE-ws-policy-guidelines-20071112/","title":"Web Services Policy 1.5 - Guidelines for Policy Assertion Authors","rawDate":"2007-11-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-11-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-policy-primer":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"etAl":true,"href":"https://www.w3.org/TR/ws-policy-primer/","title":"Web Services Policy 1.5 - Primer","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"versions":{"20061018":{"status":"WD","rawDate":"2006-10-18","href":"https://www.w3.org/TR/2006/WD-ws-policy-primer-20061018","source":"./data/w3c-specs.txt"},"20061221":{"status":"WD","rawDate":"2006-12-21","href":"https://www.w3.org/TR/2006/WD-ws-policy-primer-20061221","source":"./data/w3c-specs.txt"},"20070330":{"status":"WD","rawDate":"2007-03-30","href":"https://www.w3.org/TR/2007/WD-ws-policy-primer-20070330","source":"./data/w3c-specs.txt"},"20070605":{"status":"WD","rawDate":"2007-06-05","href":"https://www.w3.org/TR/2007/WD-ws-policy-primer-20070605","source":"./data/w3c-specs.txt"},"20070810":{"status":"WD","rawDate":"2007-08-10","href":"https://www.w3.org/TR/2007/WD-ws-policy-primer-20070810","source":"./data/w3c-specs.txt"},"20070928":{"status":"WD","rawDate":"2007-09-28","href":"https://www.w3.org/TR/2007/WD-ws-policy-primer-20070928","source":"./data/w3c-specs.txt"},"20071112":{"authors":["Asir Vedamuthu","David Orchard","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2007/NOTE-ws-policy-primer-20071112/","title":"Web Services Policy 1.5 - Primer","rawDate":"2007-11-12","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-11-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-resource-transfer":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"etAl":true,"href":"https://www.w3.org/TR/ws-resource-transfer/","title":"Web Services Resource Transfer (WS-RT)","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"versions":{"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-ws-resource-transfer-20090317","source":"./data/w3c-specs.txt"},"20090625":{"status":"WD","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/WD-ws-resource-transfer-20090625","source":"./data/w3c-specs.txt"},"20090924":{"status":"WD","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/WD-ws-resource-transfer-20090924","source":"./data/w3c-specs.txt"},"20100713":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2010/NOTE-ws-resource-transfer-20100713/","title":"Web Services Resource Transfer (WS-RT)","rawDate":"2010-07-13","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2002/ws/ra/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE"}},"rawDate":"2010-07-13","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"ws-soap-assertions":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/ws-soap-assertions/","title":"Web Services SOAP Assertions (WS-SOAPAssertions)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-soap-assertions-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100608":{"status":"WD","rawDate":"2010-06-08","href":"https://www.w3.org/TR/2010/WD-ws-soap-assertions-20100608","source":"./data/w3c-specs.txt"},"20100713":{"status":"WD","rawDate":"2010-07-13","href":"https://www.w3.org/TR/2010/WD-ws-soap-assertions-20100713","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-soap-assertions-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-soap-assertions-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-soap-assertions-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-soap-assertions-20111213/","title":"Web Services SOAP Assertions (WS-SOAPAssertions)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-soap-assertions-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"ws-transfer":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"etAl":true,"href":"https://www.w3.org/TR/ws-transfer/","title":"Web Services Transfer (WS-Transfer)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-transfer-20111213-errata","versions":{"20090317":{"status":"WD","rawDate":"2009-03-17","href":"https://www.w3.org/TR/2009/WD-ws-transfer-20090317","source":"./data/w3c-specs.txt"},"20090625":{"status":"WD","rawDate":"2009-06-25","href":"https://www.w3.org/TR/2009/WD-ws-transfer-20090625","source":"./data/w3c-specs.txt"},"20090924":{"status":"WD","rawDate":"2009-09-24","href":"https://www.w3.org/TR/2009/WD-ws-transfer-20090924","source":"./data/w3c-specs.txt"},"20091217":{"status":"WD","rawDate":"2009-12-17","href":"https://www.w3.org/TR/2009/WD-ws-transfer-20091217","source":"./data/w3c-specs.txt"},"20100330":{"status":"WD","rawDate":"2010-03-30","href":"https://www.w3.org/TR/2010/WD-ws-transfer-20100330","source":"./data/w3c-specs.txt"},"20100805":{"status":"WD","rawDate":"2010-08-05","href":"https://www.w3.org/TR/2010/WD-ws-transfer-20100805","source":"./data/w3c-specs.txt"},"20110428":{"status":"CR","rawDate":"2011-04-28","href":"https://www.w3.org/TR/2011/CR-ws-transfer-20110428","source":"./data/w3c-specs.txt"},"20110927":{"status":"PR","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/PR-ws-transfer-20110927","source":"./data/w3c-specs.txt"},"20111213":{"authors":["Doug Davis","Ashok Malhotra","Katy Warr","Wu Chou"],"href":"https://www.w3.org/TR/2011/REC-ws-transfer-20111213/","title":"Web Services Transfer (WS-Transfer)","rawDate":"2011-12-13","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/ra/"],"hasErrata":"https://www.w3.org/2002/ws/ra/errata/ws-transfer-20111213-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-12-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsa-reqs":{"authors":["Daniel Austin","Abbie Barbir","Christopher Ferris","Sharad Garg"],"etAl":true,"href":"https://www.w3.org/TR/wsa-reqs/","title":"Web Services Architecture Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"versions":{"20020429":{"status":"WD","rawDate":"2002-04-29","href":"https://www.w3.org/TR/2002/WD-wsa-reqs-20020429","source":"./data/w3c-specs.txt"},"20020819":{"status":"WD","rawDate":"2002-08-19","href":"https://www.w3.org/TR/2002/WD-wsa-reqs-20020819","source":"./data/w3c-specs.txt"},"20021011":{"status":"WD","rawDate":"2002-10-11","href":"https://www.w3.org/TR/2002/WD-wsa-reqs-20021011","source":"./data/w3c-specs.txt"},"20021114":{"status":"WD","rawDate":"2002-11-14","href":"https://www.w3.org/TR/2002/WD-wsa-reqs-20021114","source":"./data/w3c-specs.txt"},"20040211":{"authors":["Daniel Austin","Abbie Barbir","Christopher Ferris","Sharad Garg"],"href":"https://www.w3.org/TR/2004/NOTE-wsa-reqs-20040211/","title":"Web Services Architecture Requirements","rawDate":"2004-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsc-threats":{"authors":["Thomas Roessler"],"href":"https://www.w3.org/TR/wsc-threats/","title":"Web User Interaction: Threat Trees","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/WSC/"],"versions":{"20071101":{"authors":["Thomas Roessler"],"href":"https://www.w3.org/TR/2007/NOTE-wsc-threats-20071101/","title":"Web User Interaction: Threat Trees","rawDate":"2007-11-01","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/WSC/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-11-01","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsc-ui":{"authors":["Thomas Roessler","Anil Saldhana"],"href":"https://www.w3.org/TR/wsc-ui/","title":"Web Security Context: User Interface Guidelines","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/WSC/"],"hasErrata":"https://www.w3.org/2010/08/wsc-errata.html","versions":{"20071101":{"status":"WD","rawDate":"2007-11-01","href":"https://www.w3.org/TR/2007/WD-wsc-xit-20071101/","source":"./data/w3c-specs.txt"},"20080403":{"status":"WD","rawDate":"2008-04-03","href":"https://www.w3.org/TR/2008/WD-wsc-xit-20080403/","source":"./data/w3c-specs.txt"},"20080724":{"status":"WD","rawDate":"2008-07-24","href":"https://www.w3.org/TR/2008/WD-wsc-ui-20080724/","source":"./data/w3c-specs.txt"},"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-wsc-ui-20090226/","source":"./data/w3c-specs.txt"},"20091222":{"status":"CR","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/CR-wsc-ui-20091222/","source":"./data/w3c-specs.txt"},"20100309":{"status":"WD","rawDate":"2010-03-09","href":"https://www.w3.org/TR/2010/WD-wsc-ui-20100309/","source":"./data/w3c-specs.txt"},"20100622":{"status":"PR","rawDate":"2010-06-22","href":"https://www.w3.org/TR/2010/PR-wsc-ui-20100622/","source":"./data/w3c-specs.txt"},"20100812":{"authors":["Thomas Roessler","Anil Saldhana"],"href":"https://www.w3.org/TR/2010/REC-wsc-ui-20100812/","title":"Web Security Context: User Interface Guidelines","rawDate":"2010-08-12","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/WSC/"],"hasErrata":"https://www.w3.org/2010/08/wsc-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-08-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsc-usecases":{"authors":["Tyler Close"],"href":"https://www.w3.org/TR/wsc-usecases/","title":"Web Security Experience, Indicators and Trust: Scope and Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/WSC/"],"versions":{"20070302":{"status":"WD","rawDate":"2007-03-02","href":"https://www.w3.org/TR/2007/WD-wsc-usecases-20070302/","source":"./data/w3c-specs.txt"},"20070525":{"status":"WD","rawDate":"2007-05-25","href":"https://www.w3.org/TR/2007/WD-wsc-usecases-20070525/","source":"./data/w3c-specs.txt"},"20071101":{"status":"WD","rawDate":"2007-11-01","href":"https://www.w3.org/TR/2007/WD-wsc-usecases-20071101/","source":"./data/w3c-specs.txt"},"20080306":{"authors":["Tyler Close"],"href":"https://www.w3.org/TR/2008/NOTE-wsc-usecases-20080306/","title":"Web Security Experience, Indicators and Trust: Scope and Use Cases","rawDate":"2008-03-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/WSC/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-03-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsc-xit":{"aliasOf":"wsc-ui"},"wsci":{"versions":{"20020808":{"status":"NOTE","rawDate":"2002-08-08","href":"https://www.w3.org/TR/2002/NOTE-wsci-20020808","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/wsci","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-08-08","title":"Web Service Choreography Interface (WSCI) 1.0"},"wscl10":{"versions":{"20020314":{"status":"NOTE","rawDate":"2002-03-14","href":"https://www.w3.org/TR/2002/NOTE-wscl10-20020314/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/wscl10/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-03-14","title":"Web Services Conversation Language (WSCL) 1.0"},"wsdl":{"versions":{"20010315":{"status":"NOTE","rawDate":"2001-03-15","href":"https://www.w3.org/TR/2001/NOTE-wsdl-20010315","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/wsdl","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-03-15","title":"Web Service Definition Language (WSDL)"},"wsdl11elementidentifiers":{"authors":["David Orchard","Asir Vedamuthu","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"etAl":true,"href":"https://www.w3.org/TR/wsdl11elementidentifiers/","title":"WSDL 1.1 Element Identifiers","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"versions":{"20070131":{"status":"WD","rawDate":"2007-01-31","href":"https://www.w3.org/TR/2007/WD-wsdl11elementidentifiers-20070131","source":"./data/w3c-specs.txt"},"20070330":{"status":"WD","rawDate":"2007-03-30","href":"https://www.w3.org/TR/2007/WD-wsdl11elementidentifiers-20070330","source":"./data/w3c-specs.txt"},"20070720":{"authors":["David Orchard","Asir Vedamuthu","Frederick Hirsch","Maryann Hondo","Prasad Yendluri","Toufic Boubez","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2007/NOTE-wsdl11elementidentifiers-20070720/","title":"WSDL 1.1 Element Identifiers","rawDate":"2007-07-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/policy/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-07-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl12":{"aliasOf":"wsdl20"},"wsdl12-bindings":{"aliasOf":"wsdl20-adjuncts"},"wsdl12-patterns":{"aliasOf":"wsdl20-adjuncts"},"wsdl20":{"authors":["Roberto Chinnici","Jean-Jacques Moreau","Arthur Ryman","Sanjiva Weerawarana"],"etAl":true,"href":"https://www.w3.org/TR/wsdl20/","title":"Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"hasErrata":"https://www.w3.org/2007/06/wsdl20-errata.html","versions":{"20020709":{"status":"WD","rawDate":"2002-07-09","href":"https://www.w3.org/TR/2002/WD-wsdl12-20020709","source":"./data/w3c-specs.txt"},"20030124":{"status":"WD","rawDate":"2003-01-24","href":"https://www.w3.org/TR/2003/WD-wsdl12-20030124","source":"./data/w3c-specs.txt"},"20030303":{"status":"WD","rawDate":"2003-03-03","href":"https://www.w3.org/TR/2003/WD-wsdl12-20030303","source":"./data/w3c-specs.txt"},"20030611":{"status":"WD","rawDate":"2003-06-11","href":"https://www.w3.org/TR/2003/WD-wsdl12-20030611","source":"./data/w3c-specs.txt"},"20031110":{"status":"WD","rawDate":"2003-11-10","href":"https://www.w3.org/TR/2003/WD-wsdl20-20031110","source":"./data/w3c-specs.txt"},"20040326":{"status":"WD","rawDate":"2004-03-26","href":"https://www.w3.org/TR/2004/WD-wsdl20-20040326","source":"./data/w3c-specs.txt"},"20040803":{"status":"WD","rawDate":"2004-08-03","href":"https://www.w3.org/TR/2004/WD-wsdl20-20040803","source":"./data/w3c-specs.txt"},"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-wsdl20-20050510","source":"./data/w3c-specs.txt"},"20050803":{"status":"WD","rawDate":"2005-08-03","href":"https://www.w3.org/TR/2005/WD-wsdl20-20050803","source":"./data/w3c-specs.txt"},"20060106":{"status":"CR","rawDate":"2006-01-06","href":"https://www.w3.org/TR/2006/CR-wsdl20-20060106","source":"./data/w3c-specs.txt"},"20060327":{"status":"CR","rawDate":"2006-03-27","href":"https://www.w3.org/TR/2006/CR-wsdl20-20060327","source":"./data/w3c-specs.txt"},"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-wsdl20-20070326","source":"./data/w3c-specs.txt"},"20070523":{"status":"PR","rawDate":"2007-05-23","href":"https://www.w3.org/TR/2007/PR-wsdl20-20070523","source":"./data/w3c-specs.txt"},"20070626":{"authors":["Roberto Chinnici","Jean-Jacques Moreau","Arthur Ryman","Sanjiva Weerawarana"],"href":"https://www.w3.org/TR/2007/REC-wsdl20-20070626/","title":"Web Services Description Language (WSDL) Version 2.0 Part 1: Core Language","rawDate":"2007-06-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"hasErrata":"https://www.w3.org/2007/06/wsdl20-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl20-additional-meps":{"authors":["Amelia Lewis"],"href":"https://www.w3.org/TR/wsdl20-additional-meps/","title":"Web Services Description Language (WSDL) Version 2.0: Additional MEPs","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"versions":{"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-wsdl20-additional-meps-20070326","source":"./data/w3c-specs.txt"},"20070523":{"status":"WD","rawDate":"2007-05-23","href":"https://www.w3.org/TR/2007/WD-wsdl20-additional-meps-20070523","source":"./data/w3c-specs.txt"},"20070626":{"authors":["Amelia Lewis"],"href":"https://www.w3.org/TR/2007/NOTE-wsdl20-additional-meps-20070626/","title":"Web Services Description Language (WSDL) Version 2.0: Additional MEPs","rawDate":"2007-06-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl20-adjuncts":{"authors":["Roberto Chinnici","Hugo Haas","Amelia Lewis","Jean-Jacques Moreau","David Orchard","Sanjiva Weerawarana"],"etAl":true,"href":"https://www.w3.org/TR/wsdl20-adjuncts/","title":"Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"hasErrata":"https://www.w3.org/2007/06/wsdl20-errata.html","versions":{"20020709":{"status":"WD","rawDate":"2002-07-09","href":"https://www.w3.org/TR/2002/WD-wsdl12-bindings-20020709","source":"./data/w3c-specs.txt"},"20030124":{"status":"WD","rawDate":"2003-01-24","href":"https://www.w3.org/TR/2003/WD-wsdl12-bindings-20030124","source":"./data/w3c-specs.txt"},"20030611":{"status":"WD","rawDate":"2003-06-11","href":"https://www.w3.org/TR/2003/WD-wsdl12-bindings-20030611","source":"./data/w3c-specs.txt"},"20031110":{"status":"WD","rawDate":"2003-11-10","href":"https://www.w3.org/TR/2003/WD-wsdl20-patterns-20031110","source":"./data/w3c-specs.txt"},"20040326":{"status":"WD","rawDate":"2004-03-26","href":"https://www.w3.org/TR/2004/WD-wsdl20-patterns-20040326","source":"./data/w3c-specs.txt"},"20040803":{"status":"WD","rawDate":"2004-08-03","href":"https://www.w3.org/TR/2004/WD-wsdl20-bindings-20040803","source":"./data/w3c-specs.txt"},"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-wsdl20-adjuncts-20050510","source":"./data/w3c-specs.txt"},"20050803":{"status":"WD","rawDate":"2005-08-03","href":"https://www.w3.org/TR/2005/WD-wsdl20-adjuncts-20050803","source":"./data/w3c-specs.txt"},"20060106":{"status":"CR","rawDate":"2006-01-06","href":"https://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060106","source":"./data/w3c-specs.txt"},"20060327":{"status":"CR","rawDate":"2006-03-27","href":"https://www.w3.org/TR/2006/CR-wsdl20-adjuncts-20060327","source":"./data/w3c-specs.txt"},"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-wsdl20-adjuncts-20070326","source":"./data/w3c-specs.txt"},"20070523":{"status":"PR","rawDate":"2007-05-23","href":"https://www.w3.org/TR/2007/PR-wsdl20-adjuncts-20070523","source":"./data/w3c-specs.txt"},"20070626":{"authors":["Roberto Chinnici","Hugo Haas","Amelia Lewis","Jean-Jacques Moreau","David Orchard","Sanjiva Weerawarana"],"href":"https://www.w3.org/TR/2007/REC-wsdl20-adjuncts-20070626/","title":"Web Services Description Language (WSDL) Version 2.0 Part 2: Adjuncts","rawDate":"2007-06-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"hasErrata":"https://www.w3.org/2007/06/wsdl20-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl20-altschemalangs":{"authors":["Amelia Lewis","Bijan Parsia"],"href":"https://www.w3.org/TR/wsdl20-altschemalangs/","title":"Discussion of Alternative Schema Languages and Type System Support in WSDL 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"versions":{"20050817":{"authors":["Amelia Lewis","Bijan Parsia"],"href":"https://www.w3.org/TR/2005/NOTE-wsdl20-altschemalangs-20050817/","title":"Discussion of Alternative Schema Languages and Type System Support in WSDL 2.0","rawDate":"2005-08-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-08-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl20-bindings":{"aliasOf":"wsdl20-adjuncts"},"wsdl20-extensions":{"aliasOf":"wsdl20-adjuncts"},"wsdl20-patterns":{"aliasOf":"wsdl20-adjuncts"},"wsdl20-primer":{"authors":["David Booth","Kevin Liu"],"href":"https://www.w3.org/TR/wsdl20-primer/","title":"Web Services Description Language (WSDL) Version 2.0 Part 0: Primer","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"hasErrata":"https://www.w3.org/2007/06/wsdl20-errata.html","versions":{"20041221":{"status":"WD","rawDate":"2004-12-21","href":"https://www.w3.org/TR/2004/WD-wsdl20-primer-20041221","source":"./data/w3c-specs.txt"},"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-wsdl20-primer-20050510","source":"./data/w3c-specs.txt"},"20050803":{"status":"WD","rawDate":"2005-08-03","href":"https://www.w3.org/TR/2005/WD-wsdl20-primer-20050803","source":"./data/w3c-specs.txt"},"20060106":{"status":"CR","rawDate":"2006-01-06","href":"https://www.w3.org/TR/2006/CR-wsdl20-primer-20060106","source":"./data/w3c-specs.txt"},"20060327":{"status":"CR","rawDate":"2006-03-27","href":"https://www.w3.org/TR/2006/CR-wsdl20-primer-20060327","source":"./data/w3c-specs.txt"},"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-wsdl20-primer-20070326","source":"./data/w3c-specs.txt"},"20070523":{"status":"PR","rawDate":"2007-05-23","href":"https://www.w3.org/TR/2007/PR-wsdl20-primer-20070523","source":"./data/w3c-specs.txt"},"20070626":{"authors":["David Booth","Kevin Liu"],"href":"https://www.w3.org/TR/2007/REC-wsdl20-primer-20070626/","title":"Web Services Description Language (WSDL) Version 2.0 Part 0: Primer","rawDate":"2007-06-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"hasErrata":"https://www.w3.org/2007/06/wsdl20-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl20-rdf":{"authors":["Jacek Kopecky"],"href":"https://www.w3.org/TR/wsdl20-rdf/","title":"Web Services Description Language (WSDL) Version 2.0: RDF Mapping","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"versions":{"20051104":{"status":"WD","rawDate":"2005-11-04","href":"https://www.w3.org/TR/2005/WD-wsdl20-rdf-20051104/","source":"./data/w3c-specs.txt"},"20060327":{"status":"WD","rawDate":"2006-03-27","href":"https://www.w3.org/TR/2006/WD-wsdl20-rdf-20060327","source":"./data/w3c-specs.txt"},"20060518":{"status":"WD","rawDate":"2006-05-18","href":"https://www.w3.org/TR/2006/WD-wsdl20-rdf-20060518","source":"./data/w3c-specs.txt"},"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-wsdl20-rdf-20070326/","source":"./data/w3c-specs.txt"},"20070523":{"status":"WD","rawDate":"2007-05-23","href":"https://www.w3.org/TR/2007/WD-wsdl20-rdf-20070523/","source":"./data/w3c-specs.txt"},"20070626":{"authors":["Jacek Kopecky"],"href":"https://www.w3.org/TR/2007/NOTE-wsdl20-rdf-20070626/","title":"Web Services Description Language (WSDL) Version 2.0: RDF Mapping","rawDate":"2007-06-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wsdl20-soap11-binding":{"authors":["Asir Vedamuthu"],"href":"https://www.w3.org/TR/wsdl20-soap11-binding/","title":"Web Services Description Language (WSDL) Version 2.0 SOAP 1.1 Binding","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"versions":{"20050510":{"status":"WD","rawDate":"2005-05-10","href":"https://www.w3.org/TR/2005/WD-wsdl20-soap11-binding-20050510","source":"./data/w3c-specs.txt"},"20050803":{"status":"WD","rawDate":"2005-08-03","href":"https://www.w3.org/TR/2005/WD-wsdl20-soap11-binding-20050803","source":"./data/w3c-specs.txt"},"20060106":{"status":"WD","rawDate":"2006-01-06","href":"https://www.w3.org/TR/2006/WD-wsdl20-soap11-binding-20060106","source":"./data/w3c-specs.txt"},"20060327":{"status":"WD","rawDate":"2006-03-27","href":"https://www.w3.org/TR/2006/WD-wsdl20-soap11-binding-20060327","source":"./data/w3c-specs.txt"},"20070326":{"status":"WD","rawDate":"2007-03-26","href":"https://www.w3.org/TR/2007/WD-wsdl20-soap11-binding-20070326","source":"./data/w3c-specs.txt"},"20070523":{"status":"WD","rawDate":"2007-05-23","href":"https://www.w3.org/TR/2007/WD-wsdl20-soap11-binding-20070523","source":"./data/w3c-specs.txt"},"20070626":{"authors":["Asir Vedamuthu"],"href":"https://www.w3.org/TR/2007/NOTE-wsdl20-soap11-binding-20070626/","title":"Web Services Description Language (WSDL) Version 2.0 SOAP 1.1 Binding","rawDate":"2007-06-26","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-06-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wslc":{"authors":["Hao He","Mark Potts","Igor Sedukhin"],"href":"https://www.w3.org/TR/wslc/","title":"Web Service Management: Service Life Cycle","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"versions":{"20040211":{"authors":["Hao He","Mark Potts","Igor Sedukhin"],"href":"https://www.w3.org/TR/2004/NOTE-wslc-20040211/","title":"Web Service Management: Service Life Cycle","rawDate":"2004-02-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/arch/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"wwwicn":{"versions":{"19960729":{"status":"WD","rawDate":"1996-07-29","href":"https://www.w3.org/TR/WD-wwwicn-960729","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/WD-wwwicn","publisher":"W3C","source":"./data/w3c-specs.txt","status":"WD","rawDate":"1996-07-29","title":"HTML predefined icon-like symbols"},"xag":{"authors":["Daniel Dardailler","Sean Palmer","Charles McCathieNevile"],"href":"https://www.w3.org/TR/xag","title":"XML Accessibility Guidelines","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"versions":{"20010829":{"status":"WD","rawDate":"2001-08-29","href":"https://www.w3.org/TR/2001/WD-xmlgl-20010829","source":"./data/w3c-specs.txt"},"20021003":{"authors":["Daniel Dardailler","Sean Palmer","Charles McCathieNevile"],"href":"https://www.w3.org/TR/2002/WD-xag-20021003","title":"XML Accessibility Guidelines","rawDate":"2002-10-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-10-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xaur":{"authors":["Joshue O'Connor","Janina Sajka","Jason White","Scott Hollier","Michael Cooper"],"href":"https://www.w3.org/TR/xaur/","title":"XR Accessibility User Requirements","rawDate":"2021-08-25","status":"NOTE","publisher":"W3C","edDraft":"https://w3c.github.io/apa/xaur/","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20200213":{"authors":["Joshue O Connor","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/2020/WD-xaur-20200213/","title":"XR Accessibility User Requirements","rawDate":"2020-02-13","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20200916":{"authors":["Joshue O'Connor","Janina Sajka","Jason White","Michael Cooper"],"href":"https://www.w3.org/TR/2020/WD-xaur-20200916/","title":"XR Accessibility User Requirements","rawDate":"2020-09-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210825":{"authors":["Joshue O'Connor","Janina Sajka","Jason White","Scott Hollier","Michael Cooper"],"href":"https://www.w3.org/TR/2021/NOTE-xaur-20210825/","title":"XR Accessibility User Requirements","rawDate":"2021-08-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/WAI/APA/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/w3c/apa"},"xbc-characterization":{"authors":["Oliver Goldman","Dmitry Lenkov"],"href":"https://www.w3.org/TR/xbc-characterization/","title":"XML Binary Characterization","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"versions":{"20050331":{"authors":["Oliver Goldman","Dmitry Lenkov"],"href":"https://www.w3.org/TR/2005/NOTE-xbc-characterization-20050331/","title":"XML Binary Characterization","rawDate":"2005-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-03-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xbc-measurement":{"authors":["Stephen Williams","Peter Haggar"],"href":"https://www.w3.org/TR/xbc-measurement/","title":"XML Binary Characterization Measurement Methodologies","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"versions":{"20050224":{"status":"WD","rawDate":"2005-02-24","href":"https://www.w3.org/TR/2005/WD-xbc-measurement-20050224/","source":"./data/w3c-specs.txt"},"20050331":{"authors":["Stephen Williams","Peter Haggar"],"href":"https://www.w3.org/TR/2005/NOTE-xbc-measurement-20050331/","title":"XML Binary Characterization Measurement Methodologies","rawDate":"2005-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-03-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xbc-properties":{"authors":["Michael Cokus","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/xbc-properties/","title":"XML Binary Characterization Properties","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"versions":{"20041005":{"status":"WD","rawDate":"2004-10-05","href":"https://www.w3.org/TR/2004/WD-xbc-properties-20041005/","source":"./data/w3c-specs.txt"},"20050224":{"status":"WD","rawDate":"2005-02-24","href":"https://www.w3.org/TR/2005/WD-xbc-properties-20050224/","source":"./data/w3c-specs.txt"},"20050331":{"authors":["Michael Cokus","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/2005/NOTE-xbc-properties-20050331/","title":"XML Binary Characterization Properties","rawDate":"2005-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-03-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xbc-use-cases":{"authors":["Michael Cokus","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/xbc-use-cases/","title":"XML Binary Characterization Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"versions":{"20040728":{"status":"WD","rawDate":"2004-07-28","href":"https://www.w3.org/TR/2004/WD-xbc-use-cases-20040728/","source":"./data/w3c-specs.txt"},"20041104":{"status":"WD","rawDate":"2004-11-04","href":"https://www.w3.org/TR/2004/WD-xbc-use-cases-20041104/","source":"./data/w3c-specs.txt"},"20041109":{"status":"WD","rawDate":"2004-11-09","href":"https://www.w3.org/TR/2004/WD-xbc-use-cases-20041109/","source":"./data/w3c-specs.txt"},"20050224":{"status":"WD","rawDate":"2005-02-24","href":"https://www.w3.org/TR/2005/WD-xbc-use-cases-20050224/","source":"./data/w3c-specs.txt"},"20050331":{"authors":["Michael Cokus","Santiago Pericas-Geertsen"],"href":"https://www.w3.org/TR/2005/NOTE-xbc-use-cases-20050331/","title":"XML Binary Characterization Use Cases","rawDate":"2005-03-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Binary"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-03-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xbl":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/xbl/","title":"XBL 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"versions":{"20010223":{"status":"NOTE","rawDate":"2001-02-23","href":"https://www.w3.org/TR/2001/NOTE-xbl-20010223/","source":"./data/w3c-specs.txt"},"20060619":{"status":"WD","rawDate":"2006-06-19","href":"https://www.w3.org/TR/2006/WD-xbl-20060619/","source":"./data/w3c-specs.txt"},"20060907":{"status":"WD","rawDate":"2006-09-07","href":"https://www.w3.org/TR/2006/WD-xbl-20060907/","source":"./data/w3c-specs.txt"},"20070117":{"status":"WD","rawDate":"2007-01-17","href":"https://www.w3.org/TR/2007/WD-xbl-20070117/","source":"./data/w3c-specs.txt"},"20070316":{"status":"CR","rawDate":"2007-03-16","href":"https://www.w3.org/TR/2007/CR-xbl-20070316/","source":"./data/w3c-specs.txt"},"20120524":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2012/NOTE-xbl-20120524/","title":"XBL 2.0","rawDate":"2012-05-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2012-05-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xbl-primer":{"authors":["Lachlan Hunt","Marcos Caceres"],"href":"https://www.w3.org/TR/xbl-primer/","title":"XBL 2.0 Primer: An Introduction for Developers","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"versions":{"20070718":{"authors":["Lachlan Hunt","Marcos Caceres"],"href":"https://www.w3.org/TR/2007/WD-xbl-primer-20070718/","title":"XBL 2.0 Primer: An Introduction for Developers","rawDate":"2007-07-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/appformats/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-07-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xdnl":{"versions":{"20000323":{"status":"NOTE","rawDate":"2000-03-23","href":"https://www.w3.org/TR/2000/NOTE-xdnl-20000323","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xdnl/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-03-23","title":"XML Document Navigation Language"},"xexpr":{"versions":{"20001121":{"status":"NOTE","rawDate":"2000-11-21","href":"https://www.w3.org/TR/2000/NOTE-xexpr-20001121","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xexpr","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-11-21","title":"XEXPR - XML Expression Language"},"xforms":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/xforms/","title":"XForms 1.0 (Third Edition)","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"hasErrata":"https://www.w3.org/2007/10/REC-xforms-20071029-errata.html","versions":{"20000406":{"status":"WD","rawDate":"2000-04-06","href":"https://www.w3.org/TR/2000/WD-xforms-datamodel-20000406","source":"./data/w3c-specs.txt"},"20000815":{"status":"WD","rawDate":"2000-08-15","href":"https://www.w3.org/TR/2000/WD-xforms-datamodel-20000815/","source":"./data/w3c-specs.txt"},"20001219":{"status":"WD","rawDate":"2000-12-19","href":"https://www.w3.org/TR/2000/WD-xforms-20001219/","source":"./data/w3c-specs.txt"},"20010216":{"status":"WD","rawDate":"2001-02-16","href":"https://www.w3.org/TR/2001/WD-xforms-20010216/","source":"./data/w3c-specs.txt"},"20010608":{"status":"WD","rawDate":"2001-06-08","href":"https://www.w3.org/TR/2001/WD-xforms-20010608/","source":"./data/w3c-specs.txt"},"20010828":{"status":"WD","rawDate":"2001-08-28","href":"https://www.w3.org/TR/2001/WD-xforms-20010828/","source":"./data/w3c-specs.txt"},"20011207":{"status":"WD","rawDate":"2001-12-07","href":"https://www.w3.org/TR/2001/WD-xforms-20011207/","source":"./data/w3c-specs.txt"},"20020118":{"status":"WD","rawDate":"2002-01-18","href":"https://www.w3.org/TR/2002/WD-xforms-20020118/","source":"./data/w3c-specs.txt"},"20020821":{"status":"WD","rawDate":"2002-08-21","href":"https://www.w3.org/TR/2002/WD-xforms-20020821/","source":"./data/w3c-specs.txt"},"20021112":{"status":"CR","rawDate":"2002-11-12","href":"https://www.w3.org/TR/2002/CR-xforms-20021112/","source":"./data/w3c-specs.txt"},"20030801":{"status":"PR","rawDate":"2003-08-01","href":"https://www.w3.org/TR/2003/PR-xforms-20030801/","source":"./data/w3c-specs.txt"},"20031014":{"authors":["Micah Dubinko","L Klotz","Roland Merrick","T.V. Raman"],"href":"https://www.w3.org/TR/2003/REC-xforms-20031014/","title":"XForms 1.0","rawDate":"2003-10-14","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"hasErrata":"https://www.w3.org/2003/10/REC-xforms-10-20031014-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20051006":{"status":"PER","rawDate":"2005-10-06","href":"https://www.w3.org/TR/2005/PER-xforms-20051006/","source":"./data/w3c-specs.txt"},"20060314":{"authors":["John Boyer","David Landwehr","Roland Merrick","T.V. Raman","Micah Dubinko","L Klotz"],"href":"https://www.w3.org/TR/2006/REC-xforms-20060314/","title":"XForms 1.0 (Second Edition)","rawDate":"2006-03-14","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"hasErrata":"https://www.w3.org/2006/03/REC-xforms-20060314-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20070725":{"status":"PER","rawDate":"2007-07-25","href":"https://www.w3.org/TR/2007/PER-xforms-20070725/","source":"./data/w3c-specs.txt"},"20071029":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/2007/REC-xforms-20071029/","title":"XForms 1.0 (Third Edition)","rawDate":"2007-10-29","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"hasErrata":"https://www.w3.org/2007/10/REC-xforms-20071029-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"}},"rawDate":"2007-10-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC","obsoletedBy":["xforms11"]},"xforms-11-req":{"authors":["John Boyer","Roland Merrick"],"href":"https://www.w3.org/TR/xforms-11-req/","title":"XForms 1.1 Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"versions":{"20040126":{"status":"NOTE","rawDate":"2004-01-26","href":"https://www.w3.org/TR/2004/NOTE-xforms-11-req-20040126/","source":"./data/w3c-specs.txt"},"20040611":{"status":"NOTE","rawDate":"2004-06-11","href":"https://www.w3.org/TR/2004/NOTE-xforms-11-req-20040611/","source":"./data/w3c-specs.txt"},"20040831":{"authors":["John Boyer","Roland Merrick"],"href":"https://www.w3.org/TR/2004/NOTE-xforms-11-req-20040831/","title":"XForms 1.1 Requirements","rawDate":"2004-08-31","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-08-31","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xforms-basic":{"authors":["Micah Dubinko","T.V. Raman"],"href":"https://www.w3.org/TR/xforms-basic/","title":"XForms 1.0 Basic Profile","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"versions":{"20031014":{"authors":["Micah Dubinko","T.V. Raman"],"href":"https://www.w3.org/TR/2003/CR-xforms-basic-20031014/","title":"XForms 1.0 Basic Profile","rawDate":"2003-10-14","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-10-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xforms-xpath":{"authors":["Nick Van Den Bleeken","John Boyer"],"href":"https://www.w3.org/TR/xforms-xpath/","title":"XForms 2.0: XPath expression module","rawDate":"2012-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120807":{"authors":["Nick Van Den Bleeken","John Boyer"],"href":"https://www.w3.org/TR/2012/WD-xforms-xpath-20120807/","title":"XForms 2.0: XPath expression module","rawDate":"2012-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xforms11":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/xforms11/","title":"XForms 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"hasErrata":"https://www.w3.org/2009/10/REC-xforms-20091020-errata-20091020.html","versions":{"20041115":{"status":"WD","rawDate":"2004-11-15","href":"https://www.w3.org/TR/2004/WD-xforms11-20041115/","source":"./data/w3c-specs.txt"},"20051209":{"status":"WD","rawDate":"2005-12-09","href":"https://www.w3.org/TR/2005/WD-xforms11-20051209/","source":"./data/w3c-specs.txt"},"20060714":{"status":"WD","rawDate":"2006-07-14","href":"https://www.w3.org/TR/2006/WD-xforms11-20060714/","source":"./data/w3c-specs.txt"},"20061103":{"status":"WD","rawDate":"2006-11-03","href":"https://www.w3.org/TR/2006/WD-xforms11-20061103/","source":"./data/w3c-specs.txt"},"20061212":{"status":"WD","rawDate":"2006-12-12","href":"https://www.w3.org/TR/2006/WD-xforms11-20061212/","source":"./data/w3c-specs.txt"},"20070222":{"status":"WD","rawDate":"2007-02-22","href":"https://www.w3.org/TR/2007/WD-xforms11-20070222/","source":"./data/w3c-specs.txt"},"20071129":{"status":"CR","rawDate":"2007-11-29","href":"https://www.w3.org/TR/2007/CR-xforms11-20071129/","source":"./data/w3c-specs.txt"},"20090818":{"status":"PR","rawDate":"2009-08-18","href":"https://www.w3.org/TR/2009/PR-xforms11-20090818/","source":"./data/w3c-specs.txt"},"20091020":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/2009/REC-xforms-20091020/","title":"XForms 1.1","rawDate":"2009-10-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"hasErrata":"https://www.w3.org/2009/10/REC-xforms-20091020-errata-20091020.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-10-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["xforms"]},"xforms20":{"authors":["John Boyer","L Klotz","Steven Pemberton","Nick Van Den Bleeken"],"href":"https://www.w3.org/TR/xforms20/","title":"XForms 2.0","rawDate":"2012-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120807":{"authors":["John Boyer","L Klotz","Steven Pemberton","Nick Van Den Bleeken"],"href":"https://www.w3.org/TR/2012/WD-xforms20-20120807/","title":"XForms 2.0","rawDate":"2012-08-07","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xframes":{"authors":["Steven Pemberton","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/xframes/","title":"XFrames","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20020806":{"status":"WD","rawDate":"2002-08-06","href":"https://www.w3.org/TR/2002/WD-xframes-20020806","source":"./data/w3c-specs.txt"},"20051012":{"status":"WD","rawDate":"2005-10-12","href":"https://www.w3.org/TR/2005/WD-xframes-20051012","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Steven Pemberton","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/2010/NOTE-xframes-20101216/","title":"XFrames","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xh":{"authors":["Dan Connolly","Lauren Wood"],"href":"https://www.w3.org/TR/NOTE-xh","title":"XML in HTML Meeting Report","status":"NOTE","publisher":"W3C","versions":{"19980511":{"authors":["Dan Connolly","Lauren Wood"],"href":"https://www.w3.org/TR/1998/NOTE-xh-19980511","title":"XML in HTML Meeting Report","rawDate":"1998-05-11","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1998-05-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xhtml+voice":{"versions":{"20011221":{"status":"NOTE","rawDate":"2001-12-21","href":"https://www.w3.org/TR/2001/NOTE-xhtml+voice-20011221/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xhtml+voice/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-12-21","title":"XHTML+Voice Profile 1.0"},"xhtml-access":{"authors":["Mark Birbeck","Shane McCarron","Steven Pemberton","T.V. Raman","Richard Schwerdtfeger"],"etAl":true,"href":"https://www.w3.org/TR/xhtml-access/","title":"XHTML Access Module","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20080107":{"status":"WD","rawDate":"2008-01-07","href":"https://www.w3.org/TR/2008/WD-xhtml-access-20080107","source":"./data/w3c-specs.txt"},"20080526":{"status":"WD","rawDate":"2008-05-26","href":"https://www.w3.org/TR/2008/WD-xhtml-access-20080526","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Mark Birbeck","Shane McCarron","Steven Pemberton","T.V. Raman","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2010/NOTE-xhtml-access-20101216/","title":"XHTML Access Module","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xhtml-basic":{"authors":["Shane McCarron"],"etAl":true,"href":"https://www.w3.org/TR/xhtml-basic/","title":"XHTML™ Basic 1.1 - Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2010/xhtml-basic-2nd-edition-errata.html","versions":{"19991220":{"status":"WD","rawDate":"1999-12-20","href":"https://www.w3.org/TR/1999/WD-xhtml-basic-19991220","source":"./data/w3c-specs.txt"},"19991221":{"status":"WD","rawDate":"1999-12-21","href":"https://www.w3.org/TR/1999/WD-xhtml-basic-19991221","source":"./data/w3c-specs.txt"},"20000210":{"status":"WD","rawDate":"2000-02-10","href":"https://www.w3.org/TR/2000/WD-xhtml-basic-20000210","source":"./data/w3c-specs.txt"},"20001103":{"status":"PR","rawDate":"2000-11-03","href":"https://www.w3.org/TR/2000/PR-xhtml-basic-20001103","source":"./data/w3c-specs.txt"},"20001219":{"authors":["Mark Baker","Masayasu Ishikawa","Shinichi Matsui","Peter Stark","Ted Wugofski","Toshihiko Yamakami"],"href":"https://www.w3.org/TR/2000/REC-xhtml-basic-20001219/","title":"XHTML™ Basic","rawDate":"2000-12-19","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2000/12/REC-xhtml-basic-20001219-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20060607":{"status":"WD","rawDate":"2006-06-07","href":"https://www.w3.org/TR/2006/WD-xhtml-basic-20060607","source":"./data/w3c-specs.txt"},"20060705":{"status":"WD","rawDate":"2006-07-05","href":"https://www.w3.org/TR/2006/WD-xhtml-basic-20060705","source":"./data/w3c-specs.txt"},"20070713":{"status":"CR","rawDate":"2007-07-13","href":"https://www.w3.org/TR/2007/CR-xhtml-basic-20070713","source":"./data/w3c-specs.txt"},"20080611":{"status":"PR","rawDate":"2008-06-11","href":"https://www.w3.org/TR/2008/PR-xhtml-basic-20080611","source":"./data/w3c-specs.txt"},"20080729":{"authors":["Mark Baker","Masayasu Ishikawa","Shinichi Matsui","Peter Stark","Ted Wugofski","Toshihiko Yamakami"],"href":"https://www.w3.org/TR/2008/REC-xhtml-basic-20080729/","title":"XHTML™ Basic 1.1","rawDate":"2008-07-29","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2008/07/REC-xhtml-basic-20080729-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20101007":{"status":"PER","rawDate":"2010-10-07","href":"https://www.w3.org/TR/2010/PER-xhtml-basic-20101007","source":"./data/w3c-specs.txt"},"20101123":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2010/REC-xhtml-basic-20101123/","title":"XHTML™ Basic 1.1 - Second Edition","rawDate":"2010-11-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2010/xhtml-basic-2nd-edition-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2018/SPSD-xhtml-basic-20180327/","title":"XHTML™ Basic 1.1 - Second Edition","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xhtml-building":{"authors":["Murray Altheim","Shane McCarron"],"href":"https://www.w3.org/TR/xhtml-building/","title":"Building XHTML™ Modules","rawDate":"2000-01-05","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20000105":{"authors":["Murray Altheim","Shane McCarron"],"href":"https://www.w3.org/TR/2000/WD-xhtml-building-20000105/","title":"Building XHTML™ Modules","rawDate":"2000-01-05","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"xhtml-forms-req":{"authors":["Micah Dubinko","Sebastian Schnitzenbaumer","Dave Raggett"],"etAl":true,"href":"https://www.w3.org/TR/xhtml-forms-req/","title":"XForms Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"versions":{"19990906":{"status":"WD","rawDate":"1999-09-06","href":"https://www.w3.org/TR/1999/WD-xhtml-forms-req-19990906","source":"./data/w3c-specs.txt"},"20000329":{"status":"WD","rawDate":"2000-03-29","href":"https://www.w3.org/TR/2000/WD-xhtml-forms-req-20000329","source":"./data/w3c-specs.txt"},"20000821":{"status":"WD","rawDate":"2000-08-21","href":"https://www.w3.org/TR/2000/WD-xhtml-forms-req-20000821","source":"./data/w3c-specs.txt"},"20010404":{"authors":["Micah Dubinko","Sebastian Schnitzenbaumer","Dave Raggett"],"href":"https://www.w3.org/TR/2001/WD-xhtml-forms-req-20010404","title":"XForms Requirements","rawDate":"2001-04-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-04-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xhtml-m12n-schema":{"aliasOf":"xhtml-modularization"},"xhtml-media-types":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/xhtml-media-types/","title":"XHTML Media Types - Second Edition","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20020430":{"status":"NOTE","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/NOTE-xhtml-media-types-20020430","source":"./data/w3c-specs.txt"},"20020801":{"status":"NOTE","rawDate":"2002-08-01","href":"https://www.w3.org/TR/2002/NOTE-xhtml-media-types-20020801","source":"./data/w3c-specs.txt"},"20090116":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2009/NOTE-xhtml-media-types-20090116/","title":"XHTML Media Types - Second Edition","rawDate":"2009-01-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-01-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xhtml-modularization":{"authors":["Shane McCarron"],"etAl":true,"href":"https://www.w3.org/TR/xhtml-modularization/","title":"XHTML™ Modularization 1.1 - Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"19990406":{"rawDate":"1999-04-06","href":"https://www.w3.org/TR/1999/xhtml-modularization-19990406/","source":"./data/w3c-specs.txt"},"19990910":{"status":"WD","rawDate":"1999-09-10","href":"https://www.w3.org/TR/1999/WD-xhtml-modularization-19990910/","source":"./data/w3c-specs.txt"},"20000105":{"status":"WD","rawDate":"2000-01-05","href":"https://www.w3.org/TR/2000/WD-xhtml-modularization-20000105/","source":"./data/w3c-specs.txt"},"20001020":{"status":"CR","rawDate":"2000-10-20","href":"https://www.w3.org/TR/2000/CR-xhtml-modularization-20001020/","source":"./data/w3c-specs.txt"},"20010222":{"status":"PR","rawDate":"2001-02-22","href":"https://www.w3.org/TR/2001/PR-xhtml-modularization-20010222","source":"./data/w3c-specs.txt"},"20010322":{"status":"WD","rawDate":"2001-03-22","href":"https://www.w3.org/TR/2001/WD-xhtml-m12n-schema-20010322/","source":"./data/w3c-specs.txt"},"20010410":{"authors":["Murray Altheim","Frank Boumphrey","Sam Dooley","Shane McCarron","Sebastian Schnitzenbaumer","Ted Wugofski"],"href":"https://www.w3.org/TR/2001/REC-xhtml-modularization-20010410/","title":"Modularization of XHTML™","rawDate":"2001-04-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2001/04/REC-xhtml-modularization-20010410-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20011219":{"status":"WD","rawDate":"2001-12-19","href":"https://www.w3.org/TR/2001/WD-xhtml-m12n-schema-20011219/","source":"./data/w3c-specs.txt"},"20020815":{"status":"WD","rawDate":"2002-08-15","href":"https://www.w3.org/TR/2002/WD-xhtml-m12n-schema-20020815","source":"./data/w3c-specs.txt"},"20021209":{"status":"WD","rawDate":"2002-12-09","href":"https://www.w3.org/TR/2002/WD-xhtml-m12n-schema-20021209","source":"./data/w3c-specs.txt"},"20031003":{"status":"WD","rawDate":"2003-10-03","href":"https://www.w3.org/TR/2003/WD-xhtml-m12n-schema-20031003","source":"./data/w3c-specs.txt"},"20040218":{"authors":["Masayasu Ishikawa","Subramanian Peruvemba","Daniel Austin","Shane McCarron"],"href":"https://www.w3.org/TR/2004/WD-xhtml-modularization-20040218","title":"Modularization of XHTML™ 1.0 - Second Edition","rawDate":"2004-02-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20060213":{"status":"PR","rawDate":"2006-02-13","href":"https://www.w3.org/TR/2006/PR-xhtml-modularization-20060213","source":"./data/w3c-specs.txt"},"20060705":{"status":"WD","rawDate":"2006-07-05","href":"https://www.w3.org/TR/2006/WD-xhtml-modularization-20060705","source":"./data/w3c-specs.txt"},"20080611":{"status":"PR","rawDate":"2008-06-11","href":"https://www.w3.org/TR/2008/PR-xhtml-modularization-20080611","source":"./data/w3c-specs.txt"},"20081008":{"authors":["Daniel Austin","Subramanian Peruvemba","Shane McCarron","Masayasu Ishikawa","Mark Birbeck"],"href":"https://www.w3.org/TR/2008/REC-xhtml-modularization-20081008/","title":"XHTML™ Modularization 1.1","rawDate":"2008-10-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2008/REC-xhtml-modularization-20081008-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20100414":{"status":"PER","rawDate":"2010-04-14","href":"https://www.w3.org/TR/2010/PER-xhtml-modularization-20100414","source":"./data/w3c-specs.txt"},"20100729":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2010/REC-xhtml-modularization-20100729/","title":"XHTML™ Modularization 1.1 - Second Edition","rawDate":"2010-07-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2008/REC-xhtml-modularization-20081008-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","etAl":true},"20180327":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2018/SPSD-xhtml-modularization-20180327/","title":"XHTML™ Modularization 1.1 - Second Edition","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/MarkUp/2008/REC-xhtml-modularization-20081008-errata","isRetired":true},"xhtml-print":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/xhtml-print/","title":"XHTML-Print - Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2010/xhtml-print-2nd-edition-errata.html","versions":{"20030729":{"status":"WD","rawDate":"2003-07-29","href":"https://www.w3.org/TR/2003/WD-xhtml-print-20030729","source":"./data/w3c-specs.txt"},"20040120":{"status":"CR","rawDate":"2004-01-20","href":"https://www.w3.org/TR/2004/CR-xhtml-print-20040120","source":"./data/w3c-specs.txt"},"20060131":{"status":"PR","rawDate":"2006-01-31","href":"https://www.w3.org/TR/2006/PR-xhtml-print-20060131/","source":"./data/w3c-specs.txt"},"20060920":{"authors":["Melinda Grant","Jim Bigelow"],"href":"https://www.w3.org/TR/2006/REC-xhtml-print-20060920/","title":"XHTML-Print","rawDate":"2006-09-20","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2006/03/REC-xhtml-print-20060328-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20101007":{"status":"PER","rawDate":"2010-10-07","href":"https://www.w3.org/TR/2010/PER-xhtml-print-20101007/","source":"./data/w3c-specs.txt"},"20101123":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2010/REC-xhtml-print-20101123/","title":"XHTML-Print - Second Edition","rawDate":"2010-11-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2010/xhtml-print-2nd-edition-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2018/SPSD-xhtml-print-20180327/","title":"XHTML-Print - Second Edition","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xhtml-prof-req":{"authors":["Dave Raggett","Peter Stark","Ted Wugofski"],"href":"https://www.w3.org/TR/xhtml-prof-req/","title":"XHTML™ Document Profile Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"19990906":{"authors":["Dave Raggett","Peter Stark","Ted Wugofski"],"href":"https://www.w3.org/TR/1999/WD-xhtml-prof-req-19990906/","title":"XHTML™ Document Profile Requirements","rawDate":"1999-09-06","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-09-06","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xhtml-pubid":{"authors":["David Carlisle"],"href":"https://www.w3.org/TR/xhtml-pubid/","title":"Public Identifiers for entity resolution in XHTML","rawDate":"2015-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20130228":{"authors":["David Carlisle"],"href":"https://www.w3.org/TR/2013/WD-xhtml-pubid-20130228/","title":"Public Identifiers for entity resolution in XHTML","rawDate":"2013-02-28","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130822":{"authors":["David Carlisle"],"href":"https://www.w3.org/TR/2013/WD-xhtml-pubid-20130822/","title":"Public Identifiers for entity resolution in XHTML","rawDate":"2013-08-22","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["David Carlisle"],"href":"https://www.w3.org/TR/2015/NOTE-xhtml-pubid-20150317/","title":"Public Identifiers for entity resolution in XHTML","rawDate":"2015-03-17","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/html/wg/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"edDraft":"https://www.w3.org/2003/entities/2007doc/xhtml-pubid.html","isRetired":true},"xhtml-rdfa":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/xhtml-rdfa/","title":"XHTML+RDFa 1.1 - Third Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"versions":{"20100422":{"status":"WD","rawDate":"2010-04-22","href":"https://www.w3.org/TR/2010/WD-xhtml-rdfa-20100422/","source":"./data/w3c-specs.txt"},"20100803":{"status":"WD","rawDate":"2010-08-03","href":"https://www.w3.org/TR/2010/WD-xhtml-rdfa-20100803/","source":"./data/w3c-specs.txt"},"20101109":{"status":"WD","rawDate":"2010-11-09","href":"https://www.w3.org/TR/2010/WD-xhtml-rdfa-20101109/","source":"./data/w3c-specs.txt"},"20110331":{"status":"WD","rawDate":"2011-03-31","href":"https://www.w3.org/TR/2011/WD-xhtml-rdfa-20110331/","source":"./data/w3c-specs.txt"},"20111215":{"status":"WD","rawDate":"2011-12-15","href":"https://www.w3.org/TR/2011/WD-xhtml-rdfa-20111215/","source":"./data/w3c-specs.txt"},"20120131":{"status":"WD","rawDate":"2012-01-31","href":"https://www.w3.org/TR/2012/WD-xhtml-rdfa-20120131/","source":"./data/w3c-specs.txt"},"20120313":{"status":"CR","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/CR-xhtml-rdfa-20120313/","source":"./data/w3c-specs.txt"},"20120508":{"status":"PR","rawDate":"2012-05-08","href":"https://www.w3.org/TR/2012/PR-xhtml-rdfa-20120508/","source":"./data/w3c-specs.txt"},"20120607":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2012/REC-xhtml-rdfa-20120607/","title":"XHTML+RDFa 1.1","rawDate":"2012-06-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"hasErrata":"https://www.w3.org/2010/02/rdfa/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130625":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2013/PER-xhtml-rdfa-20130625/","title":"XHTML+RDFa 1.1 - Second Edition","rawDate":"2013-06-25","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130822":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2013/REC-xhtml-rdfa-20130822/","title":"XHTML+RDFa 1.1 - Second Edition","rawDate":"2013-08-22","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2014/PER-xhtml-rdfa-20141216/","title":"XHTML+RDFa 1.1 - Third Edition","rawDate":"2014-12-16","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150317":{"authors":["Shane McCarron"],"href":"https://www.w3.org/TR/2015/REC-xhtml-rdfa-20150317/","title":"XHTML+RDFa 1.1 - Third Edition","rawDate":"2015-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2010/02/rdfa/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-03-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/2010/02/rdfa/errata.html"},"xhtml-rdfa-primer":{"aliasOf":"rdfa-primer"},"xhtml-rdfa-scenarios":{"authors":["Ben Adida","Michael Hausenblas"],"href":"https://www.w3.org/TR/xhtml-rdfa-scenarios/","title":"RDFa Use Cases: Scenarios for Embedding RDF in HTML","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2006/07/SWD/"],"versions":{"20070330":{"authors":["Ben Adida","Michael Hausenblas"],"href":"https://www.w3.org/TR/2007/WD-xhtml-rdfa-scenarios-20070330/","title":"RDFa Use Cases: Scenarios for Embedding RDF in HTML","rawDate":"2007-03-30","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2006/07/SWD/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2007-03-30","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xhtml-roadmap":{"authors":["Steven Pemberton","Dave Raggett","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/xhtml-roadmap/","title":"HTML Working Group Roadmap","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20001108":{"authors":["Steven Pemberton","Dave Raggett","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/2000/NOTE-xhtml-roadmap-20001108/","title":"HTML Working Group Roadmap","rawDate":"2000-11-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2000-11-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xhtml-role":{"authors":["Mark Birbeck","Shane McCarron","Steven Pemberton","T.V. Raman","Richard Schwerdtfeger"],"etAl":true,"href":"https://www.w3.org/TR/xhtml-role/","title":"XHTML Role Attribute Module","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/","https://www.w3.org/WAI/PF/"],"versions":{"20060725":{"status":"WD","rawDate":"2006-07-25","href":"https://www.w3.org/TR/2006/WD-xhtml-role-20060725","source":"./data/w3c-specs.txt"},"20061113":{"status":"WD","rawDate":"2006-11-13","href":"https://www.w3.org/TR/2006/WD-xhtml-role-20061113","source":"./data/w3c-specs.txt"},"20071004":{"status":"WD","rawDate":"2007-10-04","href":"https://www.w3.org/TR/2007/WD-xhtml-role-20071004","source":"./data/w3c-specs.txt"},"20080407":{"status":"WD","rawDate":"2008-04-07","href":"https://www.w3.org/TR/2008/WD-xhtml-role-20080407","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Mark Birbeck","Shane McCarron","Steven Pemberton","T.V. Raman","Richard Schwerdtfeger"],"href":"https://www.w3.org/TR/2010/NOTE-xhtml-role-20101216/","title":"XHTML Role Attribute Module","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/","https://www.w3.org/WAI/PF/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xhtml1":{"authors":["Steven Pemberton"],"href":"https://www.w3.org/TR/xhtml1/","title":"XHTML™ 1.0 The Extensible HyperText Markup Language (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"19981205":{"status":"WD","rawDate":"1998-12-05","href":"https://www.w3.org/TR/1998/WD-html-in-xml-19981205","source":"./data/w3c-specs.txt"},"19990224":{"status":"WD","rawDate":"1999-02-24","href":"https://www.w3.org/TR/1999/WD-html-in-xml-19990224","source":"./data/w3c-specs.txt"},"19990304":{"status":"WD","rawDate":"1999-03-04","href":"https://www.w3.org/TR/1999/WD-html-in-xml-19990304","source":"./data/w3c-specs.txt"},"19990505":{"rawDate":"1999-05-05","href":"https://www.w3.org/TR/1999/xhtml1-19990505","source":"./data/w3c-specs.txt"},"19990824":{"status":"PR","rawDate":"1999-08-24","href":"https://www.w3.org/TR/1999/PR-xhtml1-19990824","source":"./data/w3c-specs.txt"},"19991124":{"status":"WD","rawDate":"1999-11-24","href":"https://www.w3.org/TR/1999/WD-xhtml1-19991124","source":"./data/w3c-specs.txt"},"19991210":{"status":"PR","rawDate":"1999-12-10","href":"https://www.w3.org/TR/1999/PR-xhtml1-19991210","source":"./data/w3c-specs.txt"},"20000126":{"authors":["Steven Pemberton"],"href":"https://www.w3.org/TR/2000/REC-xhtml1-20000126/","title":"XHTML™ 1.0: The Extensible HyperText Markup Language - A Reformulation of HTML 4 in XML 1.0","rawDate":"2000-01-26","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2002/08/REC-xhtml1-20020801-errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20011004":{"authors":["Murray Altheim","Shane McCarron"],"href":"https://www.w3.org/TR/2001/WD-xhtml1-20011004/","title":"XHTML™ 1.0: The Extensible HyperText Markup Language (Second Edition)","rawDate":"2001-10-04","publisher":"W3C","isSuperseded":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"PER"},"20020801":{"authors":["Steven Pemberton"],"href":"https://www.w3.org/TR/2002/REC-xhtml1-20020801/","title":"XHTML™ 1.0 The Extensible HyperText Markup Language (Second Edition)","rawDate":"2002-08-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2002/08/REC-xhtml1-20020801-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Steven Pemberton"],"href":"https://www.w3.org/TR/2018/SPSD-xhtml1-20180327/","title":"XHTML™ 1.0 The Extensible HyperText Markup Language (Second Edition)","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/2002/08/REC-xhtml1-20020801-errata","isRetired":true},"xhtml1-schema":{"authors":["Masayasu Ishikawa"],"href":"https://www.w3.org/TR/xhtml1-schema/","title":"XHTML 1.0 in XML Schema","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20020902":{"authors":["Masayasu Ishikawa"],"href":"https://www.w3.org/TR/2002/NOTE-xhtml1-schema-20020902/","title":"XHTML 1.0 in XML Schema","rawDate":"2002-09-02","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-09-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xhtml11":{"authors":["Masayasu Ishikawa","Shane McCarron"],"href":"https://www.w3.org/TR/xhtml11/","title":"XHTML™ 1.1 - Module-based XHTML - Second Edition","status":"REC","publisher":"W3C","versions":{"19990910":{"status":"WD","rawDate":"1999-09-10","href":"https://www.w3.org/TR/1999/WD-xhtml11-19990910","source":"./data/w3c-specs.txt"},"20000105":{"status":"WD","rawDate":"2000-01-05","href":"https://www.w3.org/TR/2000/WD-xhtml11-20000105","source":"./data/w3c-specs.txt"},"20010406":{"status":"PR","rawDate":"2001-04-06","href":"https://www.w3.org/TR/2001/PR-xhtml11-20010406","source":"./data/w3c-specs.txt"},"20010531":{"authors":["Murray Altheim","Shane McCarron"],"href":"https://www.w3.org/TR/2001/REC-xhtml11-20010531/","title":"XHTML™ 1.1 - Module-based XHTML","rawDate":"2001-05-31","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2001/04/REC-xhtml-modularization-20010410-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20070216":{"status":"WD","rawDate":"2007-02-16","href":"https://www.w3.org/TR/2007/WD-xhtml11-20070216","source":"./data/w3c-specs.txt"},"20101007":{"status":"PER","rawDate":"2010-10-07","href":"https://www.w3.org/TR/2010/PER-xhtml11-20101007","source":"./data/w3c-specs.txt"},"20101123":{"authors":["Shane McCarron","Masayasu Ishikawa"],"href":"https://www.w3.org/TR/2010/REC-xhtml11-20101123/","title":"XHTML™ 1.1 - Module-based XHTML - Second Edition","rawDate":"2010-11-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2009/xhtml11-2nd-edition-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20180327":{"authors":["Masayasu Ishikawa","Shane McCarron"],"href":"https://www.w3.org/TR/2018/SPSD-xhtml11-20180327/","title":"XHTML™ 1.1 - Module-based XHTML - Second Edition","rawDate":"2018-03-27","status":"REC","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"1e":{"aliasOf":"xhtml11-20010531"},"2e":{"aliasOf":"xhtml11-20101123"}},"deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/MarkUp/2009/xhtml11-2nd-edition-errata.html","rawDate":"2018-03-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xhtml2":{"authors":["Mark Birbeck","Markus Gylling","Shane McCarron","Steven Pemberton","Jonny Axelsson","Micah Dubinko","Beth Epperson","Masayasu Ishikawa","Ann Navarro"],"etAl":true,"href":"https://www.w3.org/TR/xhtml2/","title":"XHTML™ 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"versions":{"20020805":{"status":"WD","rawDate":"2002-08-05","href":"https://www.w3.org/TR/2002/WD-xhtml2-20020805","source":"./data/w3c-specs.txt"},"20021211":{"status":"WD","rawDate":"2002-12-11","href":"https://www.w3.org/TR/2002/WD-xhtml2-20021211","source":"./data/w3c-specs.txt"},"20021218":{"status":"WD","rawDate":"2002-12-18","href":"https://www.w3.org/TR/2002/WD-xhtml2-20021218","source":"./data/w3c-specs.txt"},"20030131":{"status":"WD","rawDate":"2003-01-31","href":"https://www.w3.org/TR/2003/WD-xhtml2-20030131","source":"./data/w3c-specs.txt"},"20030506":{"status":"WD","rawDate":"2003-05-06","href":"https://www.w3.org/TR/2003/WD-xhtml2-20030506","source":"./data/w3c-specs.txt"},"20040722":{"status":"WD","rawDate":"2004-07-22","href":"https://www.w3.org/TR/2004/WD-xhtml2-20040722","source":"./data/w3c-specs.txt"},"20050527":{"status":"WD","rawDate":"2005-05-27","href":"https://www.w3.org/TR/2005/WD-xhtml2-20050527","source":"./data/w3c-specs.txt"},"20060726":{"status":"WD","rawDate":"2006-07-26","href":"https://www.w3.org/TR/2006/WD-xhtml2-20060726","source":"./data/w3c-specs.txt"},"20101216":{"authors":["Mark Birbeck","Markus Gylling","Shane McCarron","Steven Pemberton","Jonny Axelsson","Micah Dubinko","Beth Epperson","Masayasu Ishikawa","Ann Navarro"],"href":"https://www.w3.org/TR/2010/NOTE-xhtml2-20101216/","title":"XHTML™ 2.0","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2010-12-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xinclude":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard"],"href":"https://www.w3.org/TR/xinclude/","title":"XML Inclusions (XInclude) Version 1.0 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2006/11/xinclude-errata/","versions":{"19991123":{"status":"NOTE","rawDate":"1999-11-23","href":"https://www.w3.org/TR/1999/NOTE-xinclude-19991123","source":"./data/w3c-specs.txt"},"20000322":{"status":"WD","rawDate":"2000-03-22","href":"https://www.w3.org/TR/2000/WD-xinclude-20000322","source":"./data/w3c-specs.txt"},"20000717":{"status":"WD","rawDate":"2000-07-17","href":"https://www.w3.org/TR/2000/WD-xinclude-20000717","source":"./data/w3c-specs.txt"},"20001026":{"status":"WD","rawDate":"2000-10-26","href":"https://www.w3.org/TR/2000/WD-xinclude-20001026/","source":"./data/w3c-specs.txt"},"20010516":{"status":"WD","rawDate":"2001-05-16","href":"https://www.w3.org/TR/2001/WD-xinclude-20010516/","source":"./data/w3c-specs.txt"},"20020221":{"status":"CR","rawDate":"2002-02-21","href":"https://www.w3.org/TR/2002/CR-xinclude-20020221/","source":"./data/w3c-specs.txt"},"20020917":{"status":"CR","rawDate":"2002-09-17","href":"https://www.w3.org/TR/2002/CR-xinclude-20020917","source":"./data/w3c-specs.txt"},"20031110":{"status":"WD","rawDate":"2003-11-10","href":"https://www.w3.org/TR/2003/WD-xinclude-20031110","source":"./data/w3c-specs.txt"},"20040413":{"status":"CR","rawDate":"2004-04-13","href":"https://www.w3.org/TR/2004/CR-xinclude-20040413","source":"./data/w3c-specs.txt"},"20040930":{"status":"PR","rawDate":"2004-09-30","href":"https://www.w3.org/TR/2004/PR-xinclude-20040930/","source":"./data/w3c-specs.txt"},"20041220":{"authors":["Jonathan Marsh","David Orchard"],"href":"https://www.w3.org/TR/2004/REC-xinclude-20041220/","title":"XML Inclusions (XInclude) Version 1.0","rawDate":"2004-12-20","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2004/12/xinclude-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20061003":{"status":"PER","rawDate":"2006-10-03","href":"https://www.w3.org/TR/2006/PER-xinclude-20061003/","source":"./data/w3c-specs.txt"},"20061115":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard"],"href":"https://www.w3.org/TR/2006/REC-xinclude-20061115/","title":"XML Inclusions (XInclude) Version 1.0 (Second Edition)","rawDate":"2006-11-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2006/11/xinclude-errata/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-11-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xinclude-11":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/xinclude-11/","title":"XML Inclusions (XInclude) Version 1.1","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20121009":{"status":"WD","rawDate":"2012-10-09","href":"https://www.w3.org/TR/2012/WD-xinclude-11-20121009/","source":"./data/w3c-specs.txt"},"20130115":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/2013/WD-xinclude-11-20130115/","title":"XML Inclusions (XInclude) Version 1.1","rawDate":"2013-01-15","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131008":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/2013/CR-xinclude-11-20131008/","title":"XML Inclusions (XInclude) Version 1.1","rawDate":"2013-10-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141216":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/2014/WD-xinclude-11-20141216/","title":"XML Inclusions (XInclude) Version 1.1","rawDate":"2014-12-16","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150630":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/2015/CR-xinclude-11-20150630/","title":"XML Inclusions (XInclude) Version 1.1","rawDate":"2015-06-30","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"authors":["Jonathan Marsh","David Orchard","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/2016/NOTE-xinclude-11-20160721/","title":"XML Inclusions (XInclude) Version 1.1","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xinclude-11-requirements":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/xinclude-11-requirements/","title":"XInclude 1.1 Requirement and Use Cases","rawDate":"2012-02-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120214":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/2012/NOTE-xinclude-11-requirements-20120214/","title":"XInclude 1.1 Requirement and Use Cases","rawDate":"2012-02-14","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xkms":{"versions":{"20010330":{"status":"NOTE","rawDate":"2001-03-30","href":"https://www.w3.org/TR/2001/NOTE-xkms-20010330/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xkms/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2001-03-30","title":"XML Key Management Specification (XKMS)"},"xkms-pgp":{"authors":["Tommy Lindberg","José Kahan"],"href":"https://www.w3.org/TR/xkms-pgp/","title":"Using XKMS with PGP","status":"NOTE","publisher":"W3C","versions":{"20051219":{"authors":["Tommy Lindberg","José Kahan"],"href":"https://www.w3.org/TR/2005/NOTE-xkms-pgp-20051219/","title":"Using XKMS with PGP","rawDate":"2005-12-19","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-12-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xkms-wsdl":{"authors":["Rich Salz","Yunhao Zhang"],"href":"https://www.w3.org/TR/xkms-wsdl/","title":"A WSDL 1.1 description for XKMS","status":"NOTE","publisher":"W3C","versions":{"20051118":{"authors":["Rich Salz","Yunhao Zhang"],"href":"https://www.w3.org/TR/2005/NOTE-xkms-wsdl-20051118/","title":"A WSDL 1.1 description for XKMS","rawDate":"2005-11-18","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-11-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xkms2":{"authors":["Phillip Hallam-Baker","Shivaram Mysore"],"href":"https://www.w3.org/TR/xkms2/","title":"XML Key Management Specification (XKMS 2.0)","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2005/06/xkms2-errata.html","versions":{"20030418":{"status":"WD","rawDate":"2003-04-18","href":"https://www.w3.org/TR/2003/WD-xkms2-20030418/","source":"./data/w3c-specs.txt"},"20040405":{"status":"CR","rawDate":"2004-04-05","href":"https://www.w3.org/TR/2004/CR-xkms2-20040405/","source":"./data/w3c-specs.txt"},"20050502":{"status":"PR","rawDate":"2005-05-02","href":"https://www.w3.org/TR/2005/PR-xkms2-20050502/","source":"./data/w3c-specs.txt"},"20050628":{"authors":["Phillip Hallam-Baker","Shivaram Mysore"],"href":"https://www.w3.org/TR/2005/REC-xkms2-20050628/","title":"XML Key Management Specification (XKMS 2.0)","rawDate":"2005-06-28","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2005/06/xkms2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-06-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xkms2-bindings":{"authors":["Phillip Hallam-Baker","Shivaram Mysore"],"href":"https://www.w3.org/TR/xkms2-bindings/","title":"XML Key Management Specification (XKMS 2.0) Bindings","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2005/06/xkms2-errata.html","versions":{"20020318":{"status":"WD","rawDate":"2002-03-18","href":"https://www.w3.org/TR/2002/WD-xkms2-20020318/","source":"./data/w3c-specs.txt"},"20030418":{"status":"WD","rawDate":"2003-04-18","href":"https://www.w3.org/TR/2003/WD-xkms2-bindings-20030418/","source":"./data/w3c-specs.txt"},"20040405":{"status":"CR","rawDate":"2004-04-05","href":"https://www.w3.org/TR/2004/CR-xkms2-bindings-20040405/","source":"./data/w3c-specs.txt"},"20050502":{"status":"PR","rawDate":"2005-05-02","href":"https://www.w3.org/TR/2005/PR-xkms2-bindings-20050502/","source":"./data/w3c-specs.txt"},"20050628":{"authors":["Phillip Hallam-Baker","Shivaram Mysore"],"href":"https://www.w3.org/TR/2005/REC-xkms2-bindings-20050628/","title":"XML Key Management Specification (XKMS 2.0) Bindings","rawDate":"2005-06-28","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/2005/06/xkms2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-06-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xkms2-req":{"authors":["Frederick Hirsch","Mike Just"],"href":"https://www.w3.org/TR/xkms2-req/","title":"XML Key Management (XKMS 2.0) Requirements","status":"NOTE","publisher":"W3C","versions":{"20020318":{"status":"WD","rawDate":"2002-03-18","href":"https://www.w3.org/TR/2002/WD-xkms2-req-20020318","source":"./data/w3c-specs.txt"},"20030505":{"authors":["Frederick Hirsch","Mike Just"],"href":"https://www.w3.org/TR/2003/NOTE-xkms2-req-20030505","title":"XML Key Management (XKMS 2.0) Requirements","rawDate":"2003-05-05","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-05-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xkms2-xbulk":{"authors":["Merlin Hughes"],"href":"https://www.w3.org/TR/xkms2-xbulk/","title":"XML Key Management Specification Bulk Operation (X-BULK)","rawDate":"2002-03-18","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20020318":{"authors":["Merlin Hughes"],"href":"https://www.w3.org/TR/2002/WD-xkms2-xbulk-20020318/","title":"XML Key Management Specification Bulk Operation (X-BULK)","rawDate":"2002-03-18","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"xlink":{"authors":["Steven DeRose","Eve Maler","David Orchard"],"href":"https://www.w3.org/TR/xlink/","title":"XML Linking Language (XLink) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2001/06/xlink-errata","versions":{"19970406":{"status":"WD","rawDate":"1997-04-06","href":"https://www.w3.org/TR/WD-xml-link-970406","source":"./data/w3c-specs.txt"},"19970731":{"status":"WD","rawDate":"1997-07-31","href":"https://www.w3.org/TR/WD-xml-link-970731","source":"./data/w3c-specs.txt"},"19980303":{"status":"WD","rawDate":"1998-03-03","href":"https://www.w3.org/TR/1998/WD-xlink-19980303","source":"./data/w3c-specs.txt"},"19990726":{"status":"WD","rawDate":"1999-07-26","href":"https://www.w3.org/1999/07/WD-xlink-19990726","source":"./data/w3c-specs.txt"},"19991220":{"status":"WD","rawDate":"1999-12-20","href":"https://www.w3.org/TR/1999/WD-xlink-19991220","source":"./data/w3c-specs.txt"},"20000119":{"status":"WD","rawDate":"2000-01-19","href":"https://www.w3.org/TR/2000/WD-xlink-20000119","source":"./data/w3c-specs.txt"},"20000221":{"status":"WD","rawDate":"2000-02-21","href":"https://www.w3.org/TR/2000/WD-xlink-20000221/","source":"./data/w3c-specs.txt"},"20000703":{"status":"CR","rawDate":"2000-07-03","href":"https://www.w3.org/TR/2000/CR-xlink-20000703/","source":"./data/w3c-specs.txt"},"20001220":{"status":"PR","rawDate":"2000-12-20","href":"https://www.w3.org/TR/2000/PR-xlink-20001220/","source":"./data/w3c-specs.txt"},"20010627":{"authors":["Steven DeRose","Eve Maler","David Orchard"],"href":"https://www.w3.org/TR/2001/REC-xlink-20010627/","title":"XML Linking Language (XLink) Version 1.0","rawDate":"2001-06-27","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2001/06/xlink-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-06-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xlink-naming":{"versions":{"20001220":{"status":"NOTE","rawDate":"2000-12-20","href":"https://www.w3.org/TR/2000/NOTE-xlink-naming-20001220","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xlink-naming/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-12-20","title":"XLink Markup Name Control"},"xlink-principles":{"authors":["Eve Maler","Steven DeRose"],"href":"https://www.w3.org/TR/NOTE-xlink-principles","title":"XML Linking Language (XLink) Design Principles","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking","https://www.w3.org/XML/Core/"],"versions":{"19980303":{"authors":["Eve Maler","Steven DeRose"],"href":"https://www.w3.org/TR/1998/NOTE-xlink-principles-19980303","title":"XML Linking Language (XLink) Design Principles","rawDate":"1998-03-03","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking","https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1998-03-03","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xlink-req":{"authors":["Steven DeRose"],"href":"https://www.w3.org/TR/NOTE-xlink-req/","title":"XML XLink Requirements Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"versions":{"19990224":{"authors":["Steven DeRose"],"href":"https://www.w3.org/TR/1999/NOTE-xlink-req-19990224/","title":"XML XLink Requirements Version 1.0","rawDate":"1999-02-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-02-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xlink10-ext":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/xlink10-ext/","title":"Extending XLink 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20050127":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/2005/NOTE-xlink10-ext-20050127/","title":"Extending XLink 1.0","rawDate":"2005-01-27","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-01-27","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xlink11":{"authors":["Steven DeRose","Eve Maler","David Orchard","Norman Walsh"],"etAl":true,"href":"https://www.w3.org/TR/xlink11/","title":"XML Linking Language (XLink) Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2010/xlink-11-errata.html","versions":{"20050428":{"status":"WD","rawDate":"2005-04-28","href":"https://www.w3.org/TR/2005/WD-xlink11-20050428/","source":"./data/w3c-specs.txt"},"20050707":{"status":"WD","rawDate":"2005-07-07","href":"https://www.w3.org/TR/2005/WD-xlink11-20050707/","source":"./data/w3c-specs.txt"},"20060328":{"status":"CR","rawDate":"2006-03-28","href":"https://www.w3.org/TR/2006/CR-xlink11-20060328/","source":"./data/w3c-specs.txt"},"20080331":{"status":"WD","rawDate":"2008-03-31","href":"https://www.w3.org/TR/2008/WD-xlink11-20080331/","source":"./data/w3c-specs.txt"},"20100225":{"status":"PR","rawDate":"2010-02-25","href":"https://www.w3.org/TR/2010/PR-xlink11-20100225/","source":"./data/w3c-specs.txt"},"20100506":{"authors":["Steven DeRose","Eve Maler","David Orchard","Norman Walsh"],"href":"https://www.w3.org/TR/2010/REC-xlink11-20100506/","title":"XML Linking Language (XLink) Version 1.1","rawDate":"2010-05-06","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2010/xlink-11-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-05-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xlink2rdf":{"authors":["Ron Daniel"],"href":"https://www.w3.org/TR/xlink2rdf/","title":"Harvesting RDF Statements from XLinks","status":"NOTE","publisher":"W3C","versions":{"20000929":{"authors":["Ron Daniel"],"href":"https://www.w3.org/TR/2000/NOTE-xlink2rdf-20000929/","title":"Harvesting RDF Statements from XLinks","rawDate":"2000-09-29","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2000-09-29","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmcl":{"versions":{"20020919":{"status":"NOTE","rawDate":"2002-09-19","href":"https://www.w3.org/TR/2002/NOTE-xmcl-20020919/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xmcl/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-09-19","title":"XMCL - the eXtensible Media Commerce Language"},"xml":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau"],"etAl":true,"href":"https://www.w3.org/TR/xml/","title":"Extensible Markup Language (XML) 1.0 (Fifth Edition)","status":"REC","publisher":"W3C","versions":{"19961114":{"status":"WD","rawDate":"1996-11-14","href":"https://www.w3.org/TR/WD-xml-961114","source":"./data/w3c-specs.txt"},"19971208":{"status":"PR","rawDate":"1997-12-08","href":"https://www.w3.org/TR/PR-xml-971208","source":"./data/w3c-specs.txt"},"19980210":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/1998/REC-xml-19980210","title":"XML 1.0 Recommendation","rawDate":"1998-02-10","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V10-2e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20000814":{"status":"WD","rawDate":"2000-08-14","href":"https://www.w3.org/TR/2000/WD-xml-2e-20000814","source":"./data/w3c-specs.txt"},"20001006":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler"],"href":"https://www.w3.org/TR/2000/REC-xml-20001006","title":"Extensible Markup Language (XML) 1.0 (Second Edition)","rawDate":"2000-10-06","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V10-2e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20031030":{"status":"PER","rawDate":"2003-10-30","href":"https://www.w3.org/TR/2003/PER-xml-20031030","source":"./data/w3c-specs.txt"},"20040204":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau"],"href":"https://www.w3.org/TR/2004/REC-xml-20040204","title":"Extensible Markup Language (XML) 1.0 (Third Edition)","rawDate":"2004-02-04","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V10-3e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20060614":{"status":"PER","rawDate":"2006-06-14","href":"https://www.w3.org/TR/2006/PER-xml-20060614","source":"./data/w3c-specs.txt"},"20060816":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau"],"href":"https://www.w3.org/TR/2006/REC-xml-20060816/","title":"Extensible Markup Language (XML) 1.0 (Fourth Edition)","rawDate":"2006-08-16","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V10-4e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20080205":{"status":"PER","rawDate":"2008-02-05","href":"https://www.w3.org/TR/2008/PER-xml-20080205","source":"./data/w3c-specs.txt"},"20081126":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau"],"href":"https://www.w3.org/TR/2008/REC-xml-20081126/","title":"Extensible Markup Language (XML) 1.0 (Fifth Edition)","rawDate":"2008-11-26","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V10-5e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"4e":{"aliasOf":"xml-20060816"}},"deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V10-5e-errata","rawDate":"2008-11-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-blueberry-req":{"authors":["John Cowan"],"href":"https://www.w3.org/TR/xml-blueberry-req/","title":"XML Blueberry Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20010620":{"status":"WD","rawDate":"2001-06-20","href":"https://www.w3.org/TR/2001/WD-xml-blueberry-req-20010620","source":"./data/w3c-specs.txt"},"20010921":{"authors":["John Cowan"],"href":"https://www.w3.org/TR/2001/WD-xml-blueberry-req-20010921","title":"XML Blueberry Requirements","rawDate":"2001-09-21","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-09-21","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-c14n":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/xml-c14n/","title":"Canonical XML Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2001/03/C14N-errata","versions":{"19990729":{"status":"WD","rawDate":"1999-07-29","href":"https://www.w3.org/1999/07/WD-xml-c14n-19990729","source":"./data/w3c-specs.txt"},"19991109":{"status":"WD","rawDate":"1999-11-09","href":"https://www.w3.org/TR/1999/WD-xml-c14n-19991109.html","source":"./data/w3c-specs.txt"},"19991115":{"status":"WD","rawDate":"1999-11-15","href":"https://www.w3.org/TR/1999/WD-xml-c14n-19991115.html","source":"./data/w3c-specs.txt"},"20000119":{"status":"WD","rawDate":"2000-01-19","href":"https://www.w3.org/TR/2000/WD-xml-c14n-20000119.html","source":"./data/w3c-specs.txt"},"20000601":{"status":"WD","rawDate":"2000-06-01","href":"https://www.w3.org/TR/2000/WD-xml-c14n-20000601","source":"./data/w3c-specs.txt"},"20000613":{"status":"WD","rawDate":"2000-06-13","href":"https://www.w3.org/TR/2000/WD-xml-c14n-20000613","source":"./data/w3c-specs.txt"},"20000710":{"status":"WD","rawDate":"2000-07-10","href":"https://www.w3.org/TR/2000/WD-xml-c14n-20000710","source":"./data/w3c-specs.txt"},"20000907":{"status":"WD","rawDate":"2000-09-07","href":"https://www.w3.org/TR/2000/WD-xml-c14n-20000907","source":"./data/w3c-specs.txt"},"20001011":{"status":"WD","rawDate":"2000-10-11","href":"https://www.w3.org/TR/2000/WD-xml-c14n-20001011","source":"./data/w3c-specs.txt"},"20001026":{"status":"CR","rawDate":"2000-10-26","href":"https://www.w3.org/TR/2000/CR-xml-c14n-20001026","source":"./data/w3c-specs.txt"},"20001212":{"status":"CR","rawDate":"2000-12-12","href":"https://www.w3.org/TR/2000/CR-xml-c14n-20001212","source":"./data/w3c-specs.txt"},"20010119":{"status":"PR","rawDate":"2001-01-19","href":"https://www.w3.org/TR/2001/PR-xml-c14n-20010119","source":"./data/w3c-specs.txt"},"20010315":{"authors":["John Boyer"],"href":"https://www.w3.org/TR/2001/REC-xml-c14n-20010315","title":"Canonical XML Version 1.0","rawDate":"2001-03-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2001/03/C14N-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-03-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-c14n11":{"authors":["John Boyer","Glenn Marcy"],"href":"https://www.w3.org/TR/xml-c14n11/","title":"Canonical XML Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2008/05/xml-c14n11-errata","versions":{"20060915":{"status":"WD","rawDate":"2006-09-15","href":"https://www.w3.org/TR/2006/WD-xml-c14n11-20060915","source":"./data/w3c-specs.txt"},"20061220":{"status":"WD","rawDate":"2006-12-20","href":"https://www.w3.org/TR/2006/WD-xml-c14n11-20061220","source":"./data/w3c-specs.txt"},"20070621":{"status":"CR","rawDate":"2007-06-21","href":"https://www.w3.org/TR/2007/CR-xml-c14n11-20070621","source":"./data/w3c-specs.txt"},"20080129":{"status":"PR","rawDate":"2008-01-29","href":"https://www.w3.org/TR/2008/PR-xml-c14n11-20080129","source":"./data/w3c-specs.txt"},"20080502":{"authors":["John Boyer","Glenn Marcy"],"href":"https://www.w3.org/TR/2008/REC-xml-c14n11-20080502/","title":"Canonical XML Version 1.1","rawDate":"2008-05-02","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2008/05/xml-c14n11-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-05-02","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-c14n2":{"authors":["John Boyer","Glenn Marcy","Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/xml-c14n2/","title":"Canonical XML Version 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-xml-c14n2-20091022/","source":"./data/w3c-specs.txt"},"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-xml-c14n2-20100304/","source":"./data/w3c-specs.txt"},"20100831":{"status":"WD","rawDate":"2010-08-31","href":"https://www.w3.org/TR/2010/WD-xml-c14n2-20100831/","source":"./data/w3c-specs.txt"},"20110421":{"status":"WD","rawDate":"2011-04-21","href":"https://www.w3.org/TR/2011/WD-xml-c14n2-20110421/","source":"./data/w3c-specs.txt"},"20120124":{"status":"CR","rawDate":"2012-01-24","href":"https://www.w3.org/TR/2012/CR-xml-c14n2-20120124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["John Boyer","Glenn Marcy","Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xml-c14n2-20130411/","title":"Canonical XML Version 2.0","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-c14n2-testcases":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/xml-c14n2-testcases/","title":"Test cases for Canonical XML 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-xml-c14n2-testcases-20120105/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xml-c14n2-testcases-20130411/","title":"Test cases for Canonical XML 2.0","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130618":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xml-c14n2-testcases-20130618/","title":"Test cases for Canonical XML 2.0","rawDate":"2013-06-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-06-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/2008/xmlsec/Drafts/c14n-20/test-cases/"},"xml-canonical-req":{"authors":["James Tauber","Joel Nava"],"href":"https://www.w3.org/TR/NOTE-xml-canonical-req","title":"XML Canonicalization Requirements","status":"NOTE","publisher":"W3C","versions":{"19990605":{"authors":["James Tauber","Joel Nava"],"href":"https://www.w3.org/TR/1999/NOTE-xml-canonical-req-19990605","title":"XML Canonicalization Requirements","rawDate":"1999-06-05","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-06-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-encryption-req":{"authors":["Joseph Reagle"],"href":"https://www.w3.org/TR/xml-encryption-req/","title":"XML Encryption Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20020304":{"authors":["Joseph Reagle"],"href":"https://www.w3.org/TR/2002/NOTE-xml-encryption-req-20020304","title":"XML Encryption Requirements","rawDate":"2002-03-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-03-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-entity-names":{"authors":["Patrick D F Ion","David Carlisle"],"href":"https://www.w3.org/TR/xml-entity-names/","title":"XML Entity Definitions for Characters (3rd Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/2003/entities/2007xml/errata.html","versions":{"20071214":{"status":"WD","rawDate":"2007-12-14","href":"https://www.w3.org/TR/2007/WD-xml-entity-names-20071214/","source":"./data/w3c-specs.txt"},"20080721":{"status":"WD","rawDate":"2008-07-21","href":"https://www.w3.org/TR/2008/WD-xml-entity-names-20080721/","source":"./data/w3c-specs.txt"},"20091117":{"status":"WD","rawDate":"2009-11-17","href":"https://www.w3.org/TR/2009/WD-xml-entity-names-20091117/","source":"./data/w3c-specs.txt"},"20100211":{"status":"PR","rawDate":"2010-02-11","href":"https://www.w3.org/TR/2010/PR-xml-entity-names-20100211/","source":"./data/w3c-specs.txt"},"20100401":{"authors":["David Carlisle","Patrick D F Ion"],"href":"https://www.w3.org/TR/2010/REC-xml-entity-names-20100401/","title":"XML Entity Definitions for Characters","rawDate":"2010-04-01","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"hasErrata":"https://www.w3.org/2003/entities/2007xml/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140211":{"authors":["David Carlisle","Patrick D F Ion"],"href":"https://www.w3.org/TR/2014/PER-xml-entity-names-20140211/","title":"XML Entity Definitions for Characters (2nd Edition)","rawDate":"2014-02-11","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140410":{"authors":["David Carlisle","Patrick D F Ion"],"href":"https://www.w3.org/TR/2014/REC-xml-entity-names-20140410/","title":"XML Entity Definitions for Characters (2nd Edition)","rawDate":"2014-04-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20230307":{"authors":["Patrick D F Ion","David Carlisle"],"href":"https://www.w3.org/TR/2023/REC-xml-entity-names-20230307/","title":"XML Entity Definitions for Characters (3rd Edition)","rawDate":"2023-03-07","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Math/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2023-03-07","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-events":{"aliasOf":"xml-events2"},"xml-events2":{"authors":["Shane McCarron","Mark Birbeck","Roland Merrick"],"href":"https://www.w3.org/TR/xml-events2/","title":"XML Events 2","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/","https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19991221":{"status":"WD","rawDate":"1999-12-21","href":"https://www.w3.org/TR/1999/WD-xhtml-events-19991221","source":"./data/w3c-specs.txt"},"20000828":{"status":"WD","rawDate":"2000-08-28","href":"https://www.w3.org/TR/2000/WD-xhtml-events-20000828","source":"./data/w3c-specs.txt"},"20010608":{"status":"WD","rawDate":"2001-06-08","href":"https://www.w3.org/TR/2001/WD-xhtml-events-20010608","source":"./data/w3c-specs.txt"},"20011016":{"status":"WD","rawDate":"2001-10-16","href":"https://www.w3.org/TR/2001/WD-xml-events-20011016","source":"./data/w3c-specs.txt"},"20011026":{"status":"WD","rawDate":"2001-10-26","href":"https://www.w3.org/TR/2001/WD-xml-events-20011026/","source":"./data/w3c-specs.txt"},"20020812":{"status":"WD","rawDate":"2002-08-12","href":"https://www.w3.org/TR/2002/WD-xml-events-20020812","source":"./data/w3c-specs.txt"},"20030207":{"status":"CR","rawDate":"2003-02-07","href":"https://www.w3.org/TR/2003/CR-xml-events-20030207","source":"./data/w3c-specs.txt"},"20030804":{"status":"PR","rawDate":"2003-08-04","href":"https://www.w3.org/TR/2003/PR-xml-events-20030804","source":"./data/w3c-specs.txt"},"20031014":{"authors":["Shane McCarron","Steven Pemberton","T.V. Raman"],"href":"https://www.w3.org/TR/2003/REC-xml-events-20031014","title":"XML Events","rawDate":"2003-10-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"hasErrata":"https://www.w3.org/2003/10/REC-xml-events-20031014-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20070216":{"authors":["Shane McCarron","Mark Birbeck"],"href":"https://www.w3.org/TR/2007/WD-xml-events-20070216","title":"XML Events 2","rawDate":"2007-02-16","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20101216":{"authors":["Shane McCarron","Mark Birbeck","Roland Merrick"],"href":"https://www.w3.org/TR/2010/NOTE-xml-events2-20101216/","title":"XML Events 2","rawDate":"2010-12-16","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/MarkUp/","https://www.w3.org/MarkUp/Forms/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"hasErrata":"https://www.w3.org/2003/10/REC-xml-events-20031014-errata","isRetired":true},"xml-exc-c14n":{"authors":["John Boyer","Donald Eastlake","Joseph Reagle"],"href":"https://www.w3.org/TR/xml-exc-c14n/","title":"Exclusive XML Canonicalization Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2002/07/xml-exc-c14n-errata","versions":{"20011120":{"status":"WD","rawDate":"2001-11-20","href":"https://www.w3.org/TR/2001/WD-xml-exc-c14n-20011120","source":"./data/w3c-specs.txt"},"20020212":{"status":"CR","rawDate":"2002-02-12","href":"https://www.w3.org/TR/2002/CR-xml-exc-c14n-20020212","source":"./data/w3c-specs.txt"},"20020524":{"status":"PR","rawDate":"2002-05-24","href":"https://www.w3.org/TR/2002/PR-xml-exc-c14n-20020524/","source":"./data/w3c-specs.txt"},"20020718":{"authors":["John Boyer","Donald Eastlake","Joseph Reagle"],"href":"https://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/","title":"Exclusive XML Canonicalization Version 1.0","rawDate":"2002-07-18","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2002/07/xml-exc-c14n-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-07-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-fragid":{"authors":["Paul Grosso"],"href":"https://www.w3.org/TR/xml-fragid/","title":"Proposal for XML Fragment Identifier Syntax 0.9","status":"NOTE","publisher":"W3C","versions":{"20030912":{"authors":["Paul Grosso"],"href":"https://www.w3.org/TR/2003/NOTE-xml-fragid-20030912/","title":"Proposal for XML Fragment Identifier Syntax 0.9","rawDate":"2003-09-12","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2003-09-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xml-fragment":{"authors":["Paul Grosso","Daniel Veillard"],"href":"https://www.w3.org/TR/xml-fragment","title":"XML Fragment Interchange","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"19990303":{"status":"WD","rawDate":"1999-03-03","href":"https://www.w3.org/1999/WD-xml-fragment-19990303.html","source":"./data/w3c-specs.txt"},"19990412":{"status":"WD","rawDate":"1999-04-12","href":"https://www.w3.org/1999/WD-xml-fragment-19990412.html","source":"./data/w3c-specs.txt"},"19990630":{"status":"WD","rawDate":"1999-06-30","href":"https://www.w3.org/1999/06/WD-xml-fragment-19990630.html","source":"./data/w3c-specs.txt"},"20010212":{"authors":["Paul Grosso","Daniel Veillard"],"href":"https://www.w3.org/TR/2001/CR-xml-fragment-20010212","title":"XML Fragment Interchange","rawDate":"2001-02-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2001-02-12","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xml-i18n-bp":{"authors":["Yves Savourel","Jirka Kosek","Richard Ishida"],"href":"https://www.w3.org/TR/xml-i18n-bp/","title":"Best Practices for XML Internationalization","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/its/"],"versions":{"20060518":{"status":"WD","rawDate":"2006-05-18","href":"https://www.w3.org/TR/2006/WD-xml-i18n-bp-20060518/","source":"./data/w3c-specs.txt"},"20070427":{"status":"WD","rawDate":"2007-04-27","href":"https://www.w3.org/TR/2007/WD-xml-i18n-bp-20070427/","source":"./data/w3c-specs.txt"},"20070628":{"status":"WD","rawDate":"2007-06-28","href":"https://www.w3.org/TR/2007/WD-xml-i18n-bp-20070628/","source":"./data/w3c-specs.txt"},"20071031":{"status":"WD","rawDate":"2007-10-31","href":"https://www.w3.org/TR/2007/WD-xml-i18n-bp-20071031/","source":"./data/w3c-specs.txt"},"20080213":{"authors":["Yves Savourel","Jirka Kosek","Richard Ishida"],"href":"https://www.w3.org/TR/2008/NOTE-xml-i18n-bp-20080213/","title":"Best Practices for XML Internationalization","rawDate":"2008-02-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/International/its/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-02-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-id":{"authors":["Jonathan Marsh","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/xml-id/","title":"xml:id Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2005/09/xml-id-errata","versions":{"20040407":{"status":"WD","rawDate":"2004-04-07","href":"https://www.w3.org/TR/2004/WD-xml-id-20040407","source":"./data/w3c-specs.txt"},"20041109":{"status":"WD","rawDate":"2004-11-09","href":"https://www.w3.org/TR/2004/WD-xml-id-20041109/","source":"./data/w3c-specs.txt"},"20050208":{"status":"CR","rawDate":"2005-02-08","href":"https://www.w3.org/TR/2005/CR-xml-id-20050208/","source":"./data/w3c-specs.txt"},"20050712":{"status":"PR","rawDate":"2005-07-12","href":"https://www.w3.org/TR/2005/PR-xml-id-20050712/","source":"./data/w3c-specs.txt"},"20050909":{"authors":["Jonathan Marsh","Daniel Veillard","Norman Walsh"],"href":"https://www.w3.org/TR/2005/REC-xml-id-20050909/","title":"xml:id Version 1.0","rawDate":"2005-09-09","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2005/09/xml-id-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-09-09","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-id-req":{"authors":["Jonathan Marsh"],"href":"https://www.w3.org/TR/xml-id-req/","title":"xml:id Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20030806":{"authors":["Jonathan Marsh"],"href":"https://www.w3.org/TR/2003/WD-xml-id-req-20030806/","title":"xml:id Requirements","rawDate":"2003-08-06","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-08-06","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-infoset":{"authors":["John Cowan","Richard Tobin"],"href":"https://www.w3.org/TR/xml-infoset/","title":"XML Information Set (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2001/10/02/xml-infoset-errata.html","versions":{"19990517":{"status":"WD","rawDate":"1999-05-17","href":"https://www.w3.org/TR/1999/WD-xml-infoset-19990517","source":"./data/w3c-specs.txt"},"19991220":{"status":"WD","rawDate":"1999-12-20","href":"https://www.w3.org/TR/1999/WD-xml-infoset-19991220","source":"./data/w3c-specs.txt"},"20000726":{"status":"WD","rawDate":"2000-07-26","href":"https://www.w3.org/TR/2000/WD-xml-infoset-20000726","source":"./data/w3c-specs.txt"},"20001220":{"status":"WD","rawDate":"2000-12-20","href":"https://www.w3.org/TR/2000/WD-xml-infoset-20001220","source":"./data/w3c-specs.txt"},"20010202":{"status":"WD","rawDate":"2001-02-02","href":"https://www.w3.org/TR/2001/WD-xml-infoset-20010202","source":"./data/w3c-specs.txt"},"20010316":{"status":"WD","rawDate":"2001-03-16","href":"https://www.w3.org/TR/2001/WD-xml-infoset-20010316","source":"./data/w3c-specs.txt"},"20010514":{"status":"CR","rawDate":"2001-05-14","href":"https://www.w3.org/TR/2001/CR-xml-infoset-20010514","source":"./data/w3c-specs.txt"},"20010810":{"status":"PR","rawDate":"2001-08-10","href":"https://www.w3.org/TR/2001/PR-xml-infoset-20010810","source":"./data/w3c-specs.txt"},"20011024":{"authors":["John Cowan","Richard Tobin"],"href":"https://www.w3.org/TR/2001/REC-xml-infoset-20011024/","title":"XML Information Set","rawDate":"2001-10-24","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2001/10/02/xml-infoset-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20031210":{"status":"PER","rawDate":"2003-12-10","href":"https://www.w3.org/TR/2003/PER-xml-infoset-20031210","source":"./data/w3c-specs.txt"},"20040204":{"authors":["John Cowan","Richard Tobin"],"href":"https://www.w3.org/TR/2004/REC-xml-infoset-20040204/","title":"XML Information Set (Second Edition)","rawDate":"2004-02-04","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2001/10/02/xml-infoset-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-02-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-infoset-rdfs":{"authors":["Richard Tobin"],"href":"https://www.w3.org/TR/xml-infoset-rdfs/","title":"An RDF Schema for the XML Information Set","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20010406":{"authors":["Richard Tobin"],"href":"https://www.w3.org/TR/2001/NOTE-xml-infoset-rdfs-20010406","title":"An RDF Schema for the XML Information Set","rawDate":"2001-04-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-04-06","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-infoset-req":{"authors":["David Megginson"],"href":"https://www.w3.org/TR/NOTE-xml-infoset-req","title":"XML Information Set Requirements","status":"NOTE","publisher":"W3C","versions":{"19990218":{"authors":["David Megginson"],"href":"https://www.w3.org/TR/1999/NOTE-xml-infoset-req-19990218","title":"XML Information Set Requirements","rawDate":"1999-02-18","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-02-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-link-style":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/xml-link-style/","title":"XML Linking and Style","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"versions":{"20010605":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/2001/NOTE-xml-link-style-20010605/","title":"XML Linking and Style","rawDate":"2001-06-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-06-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-media-types":{"authors":["Anish Karmarkar","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/xml-media-types/","title":"Describing Media Content of Binary Data in XML","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/","https://www.w3.org/2002/ws/desc/"],"versions":{"20040608":{"status":"WD","rawDate":"2004-06-08","href":"https://www.w3.org/TR/2004/WD-xml-media-types-20040608","source":"./data/w3c-specs.txt"},"20041102":{"status":"WD","rawDate":"2004-11-02","href":"https://www.w3.org/TR/2004/WD-xml-media-types-20041102","source":"./data/w3c-specs.txt"},"20050502":{"status":"NOTE","rawDate":"2005-05-02","href":"https://www.w3.org/TR/2005/NOTE-xml-media-types-20050502","source":"./data/w3c-specs.txt"},"20050504":{"authors":["Anish Karmarkar","Ümit Yalçinalp"],"href":"https://www.w3.org/TR/2005/NOTE-xml-media-types-20050504/","title":"Describing Media Content of Binary Data in XML","rawDate":"2005-05-04","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/","https://www.w3.org/2002/ws/desc/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-05-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-model":{"authors":["Paul Grosso","Jirka Kosek"],"href":"https://www.w3.org/TR/xml-model/","title":"Associating Schemas with XML documents 1.0 (Third Edition)","rawDate":"2012-10-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100415":{"status":"NOTE","rawDate":"2010-04-15","href":"https://www.w3.org/TR/2010/NOTE-xml-model-20100415/","source":"./data/w3c-specs.txt"},"20110811":{"status":"NOTE","rawDate":"2011-08-11","href":"https://www.w3.org/TR/2011/NOTE-xml-model-20110811/","source":"./data/w3c-specs.txt"},"20121009":{"authors":["Paul Grosso","Jirka Kosek"],"href":"https://www.w3.org/TR/2012/NOTE-xml-model-20121009/","title":"Associating Schemas with XML documents 1.0 (Third Edition)","rawDate":"2012-10-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xml-names":{"authors":["Tim Bray","Dave Hollander","Andrew Layman","Richard Tobin","Henry Thompson"],"etAl":true,"href":"https://www.w3.org/TR/xml-names/","title":"Namespaces in XML 1.0 (Third Edition)","status":"REC","publisher":"W3C","hasErrata":"https://www.w3.org/XML/2009/xml-names-errata","versions":{"19980119":{"status":"NOTE","rawDate":"1998-01-19","href":"https://www.w3.org/TR/1998/NOTE-xml-names-0119","source":"./data/w3c-specs.txt"},"19980327":{"status":"WD","rawDate":"1998-03-27","href":"https://www.w3.org/TR/1998/WD-xml-names-19980327","source":"./data/w3c-specs.txt"},"19980518":{"status":"WD","rawDate":"1998-05-18","href":"https://www.w3.org/TR/1998/WD-xml-names-19980518","source":"./data/w3c-specs.txt"},"19980802":{"status":"WD","rawDate":"1998-08-02","href":"https://www.w3.org/TR/1998/WD-xml-names-19980802","source":"./data/w3c-specs.txt"},"19980916":{"status":"WD","rawDate":"1998-09-16","href":"https://www.w3.org/TR/1998/WD-xml-names-19980916","source":"./data/w3c-specs.txt"},"19981117":{"status":"PR","rawDate":"1998-11-17","href":"https://www.w3.org/TR/1998/PR-xml-names-19981117","source":"./data/w3c-specs.txt"},"19990114":{"authors":["Tim Bray","Dave Hollander","Andrew Layman"],"href":"https://www.w3.org/TR/1999/REC-xml-names-19990114","title":"Namespaces in XML","rawDate":"1999-01-14","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-names-19990114-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20060614":{"status":"PER","rawDate":"2006-06-14","href":"https://www.w3.org/TR/2006/PER-xml-names-20060614","source":"./data/w3c-specs.txt"},"20060816":{"authors":["Tim Bray","Dave Hollander","Andrew Layman","Richard Tobin"],"href":"https://www.w3.org/TR/2006/REC-xml-names-20060816/","title":"Namespaces in XML 1.0 (Second Edition)","rawDate":"2006-08-16","publisher":"W3C","hasErrata":"https://www.w3.org/XML/2006/xml-names-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","deliveredBy":["https://www.w3.org/XML/Core/"],"status":"REC"},"20090806":{"status":"PER","rawDate":"2009-08-06","href":"https://www.w3.org/TR/2009/PER-xml-names-20090806/","source":"./data/w3c-specs.txt"},"20091208":{"authors":["Tim Bray","Dave Hollander","Andrew Layman","Richard Tobin","Henry Thompson"],"href":"https://www.w3.org/TR/2009/REC-xml-names-20091208/","title":"Namespaces in XML 1.0 (Third Edition)","rawDate":"2009-12-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2009/xml-names-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"0119":{"aliasOf":"xml-names-19980119"}},"deliveredBy":["https://www.w3.org/XML/Core/"],"rawDate":"2009-12-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-names11":{"authors":["Tim Bray","Dave Hollander","Andrew Layman","Richard Tobin"],"etAl":true,"href":"https://www.w3.org/TR/xml-names11/","title":"Namespaces in XML 1.1 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2006/xml-names11-errata","versions":{"20020403":{"status":"WD","rawDate":"2002-04-03","href":"https://www.w3.org/TR/2002/WD-xml-names11-20020403/","source":"./data/w3c-specs.txt"},"20020905":{"status":"WD","rawDate":"2002-09-05","href":"https://www.w3.org/TR/2002/WD-xml-names11-20020905","source":"./data/w3c-specs.txt"},"20021218":{"status":"CR","rawDate":"2002-12-18","href":"https://www.w3.org/TR/2002/CR-xml-names11-20021218/","source":"./data/w3c-specs.txt"},"20031105":{"status":"PR","rawDate":"2003-11-05","href":"https://www.w3.org/TR/2003/PR-xml-names11-20031105/","source":"./data/w3c-specs.txt"},"20040204":{"authors":["Tim Bray","Dave Hollander","Andrew Layman","Richard Tobin"],"href":"https://www.w3.org/TR/2004/REC-xml-names11-20040204/","title":"Namespaces in XML 1.1","rawDate":"2004-02-04","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2004/xml-names11-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20060614":{"status":"PER","rawDate":"2006-06-14","href":"https://www.w3.org/TR/2006/PER-xml-names11-20060614","source":"./data/w3c-specs.txt"},"20060816":{"authors":["Tim Bray","Dave Hollander","Andrew Layman","Richard Tobin"],"href":"https://www.w3.org/TR/2006/REC-xml-names11-20060816/","title":"Namespaces in XML 1.1 (Second Edition)","rawDate":"2006-08-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/2006/xml-names11-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-08-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-names11-req":{"authors":["Jonathan Marsh"],"href":"https://www.w3.org/TR/xml-names11-req/","title":"Namespaces in XML 1.1 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"versions":{"20020403":{"authors":["Jonathan Marsh"],"href":"https://www.w3.org/TR/2002/WD-xml-names11-req-20020403/","title":"Namespaces in XML 1.1 Requirements","rawDate":"2002-04-03","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Core/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-04-03","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-pipeline":{"versions":{"20020228":{"status":"NOTE","rawDate":"2002-02-28","href":"https://www.w3.org/TR/2002/NOTE-xml-pipeline-20020228/","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xml-pipeline/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-02-28","title":"XML Pipeline Definition Language Version 1.0"},"xml-proc-profiles":{"authors":["Henry Thompson","Norman Walsh","James Fuller"],"href":"https://www.w3.org/TR/xml-proc-profiles/","title":"XML processor profiles","rawDate":"2014-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100518":{"status":"WD","rawDate":"2010-05-18","href":"https://www.w3.org/TR/2010/WD-xml-proc-profiles-20100518/","source":"./data/w3c-specs.txt"},"20101021":{"status":"WD","rawDate":"2010-10-21","href":"https://www.w3.org/TR/2010/WD-xml-proc-profiles-20101021/","source":"./data/w3c-specs.txt"},"20101130":{"status":"WD","rawDate":"2010-11-30","href":"https://www.w3.org/TR/2010/WD-xml-proc-profiles-20101130/","source":"./data/w3c-specs.txt"},"20110412":{"status":"WD","rawDate":"2011-04-12","href":"https://www.w3.org/TR/2011/WD-xml-proc-profiles-20110412/","source":"./data/w3c-specs.txt"},"20120124":{"authors":["Henry Thompson","Norman Walsh","James Fuller"],"href":"https://www.w3.org/TR/2012/WD-xml-proc-profiles-20120124/","title":"XML processor profiles","rawDate":"2012-01-24","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140206":{"authors":["Henry Thompson","Norman Walsh","James Fuller"],"href":"https://www.w3.org/TR/2014/NOTE-xml-proc-profiles-20140206/","title":"XML processor profiles","rawDate":"2014-02-06","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xml-ql":{"versions":{"19980819":{"status":"NOTE","rawDate":"1998-08-19","href":"https://www.w3.org/TR/1998/NOTE-xml-ql-19980819","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/NOTE-xml-ql","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"1998-08-19","title":"XML-QL: A Query Language for XML"},"xml-schema-req":{"authors":["Ashok Malhotra","Murray Maloney"],"href":"https://www.w3.org/TR/NOTE-xml-schema-req","title":"XML Schema Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"versions":{"19990215":{"authors":["Ashok Malhotra","Murray Maloney"],"href":"https://www.w3.org/TR/1999/NOTE-xml-schema-req-19990215","title":"XML Schema Requirements","rawDate":"1999-02-15","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-02-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml-stylesheet":{"authors":["James Clark","Simon Pieters","Henry Thompson"],"href":"https://www.w3.org/TR/xml-stylesheet/","title":"Associating Style Sheets with XML documents 1.0 (Second Edition)","rawDate":"2010-10-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/1999/06/REC-xml-stylesheet-19990629/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19981001":{"status":"WD","rawDate":"1998-10-01","href":"https://www.w3.org/TR/1998/WD-xml-stylesheet-19981001","source":"./data/w3c-specs.txt"},"19990114":{"status":"PR","rawDate":"1999-01-14","href":"https://www.w3.org/TR/1999/PR-xml-stylesheet-19990114","source":"./data/w3c-specs.txt"},"19990407":{"rawDate":"1999-04-07","href":"https://www.w3.org/TR/1999/xml-stylesheet-19990407","source":"./data/w3c-specs.txt"},"19990428":{"rawDate":"1999-04-28","href":"https://www.w3.org/TR/1999/xml-stylesheet-19990428","source":"./data/w3c-specs.txt"},"19990629":{"authors":["James Clark"],"href":"https://www.w3.org/1999/06/REC-xml-stylesheet-19990629/","title":"Associating Style Sheets with XML documents","rawDate":"1999-06-29","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/1999/06/REC-xml-stylesheet-19990629/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20100909":{"status":"PER","rawDate":"2010-09-09","href":"https://www.w3.org/TR/2010/PER-xml-stylesheet-20100909","source":"./data/w3c-specs.txt"},"20101028":{"authors":["James Clark","Simon Pieters","Henry Thompson"],"href":"https://www.w3.org/TR/2010/REC-xml-stylesheet-20101028/","title":"Associating Style Sheets with XML documents 1.0 (Second Edition)","rawDate":"2010-10-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/1999/06/REC-xml-stylesheet-19990629/errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xml11":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau","John Cowan"],"etAl":true,"href":"https://www.w3.org/TR/xml11/","title":"Extensible Markup Language (XML) 1.1 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V11-2e-errata","versions":{"20011213":{"status":"WD","rawDate":"2001-12-13","href":"https://www.w3.org/TR/2001/WD-xml11-20011213/","source":"./data/w3c-specs.txt"},"20020425":{"status":"WD","rawDate":"2002-04-25","href":"https://www.w3.org/TR/2002/WD-xml11-20020425/","source":"./data/w3c-specs.txt"},"20021015":{"status":"CR","rawDate":"2002-10-15","href":"https://www.w3.org/TR/2002/CR-xml11-20021015","source":"./data/w3c-specs.txt"},"20031105":{"status":"PR","rawDate":"2003-11-05","href":"https://www.w3.org/TR/2003/PR-xml11-20031105/","source":"./data/w3c-specs.txt"},"20040204":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau","John Cowan"],"href":"https://www.w3.org/TR/2004/REC-xml11-20040204/","title":"Extensible Markup Language (XML) 1.1","rawDate":"2004-02-04","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V11-1e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20060614":{"status":"PER","rawDate":"2006-06-14","href":"https://www.w3.org/TR/2006/PER-xml11-20060614","source":"./data/w3c-specs.txt"},"20060816":{"authors":["Tim Bray","Jean Paoli","Michael Sperberg-McQueen","Eve Maler","François Yergeau","John Cowan"],"href":"https://www.w3.org/TR/2006/REC-xml11-20060816/","title":"Extensible Markup Language (XML) 1.1 (Second Edition)","rawDate":"2006-08-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/XML/xml-V11-2e-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-08-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xml11schema10":{"authors":["Henry Thompson"],"href":"https://www.w3.org/TR/xml11schema10/","title":"Processing XML 1.1 documents with XML Schema 1.0 processors","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"versions":{"20050511":{"authors":["Henry Thompson"],"href":"https://www.w3.org/TR/2005/NOTE-xml11schema10-20050511/","title":"Processing XML 1.1 documents with XML Schema 1.0 processors","rawDate":"2005-05-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-05-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlbase":{"authors":["Jonathan Marsh","Richard Tobin"],"href":"https://www.w3.org/TR/xmlbase/","title":"XML Base (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2009/01/xmlbase-errata","versions":{"19991220":{"status":"WD","rawDate":"1999-12-20","href":"https://www.w3.org/TR/1999/WD-xmlbase-19991220","source":"./data/w3c-specs.txt"},"20000607":{"status":"WD","rawDate":"2000-06-07","href":"https://www.w3.org/TR/2000/WD-xmlbase-20000607","source":"./data/w3c-specs.txt"},"20000908":{"status":"CR","rawDate":"2000-09-08","href":"https://www.w3.org/TR/2000/CR-xmlbase-20000908","source":"./data/w3c-specs.txt"},"20001220":{"status":"PR","rawDate":"2000-12-20","href":"https://www.w3.org/TR/2000/PR-xmlbase-20001220/","source":"./data/w3c-specs.txt"},"20010627":{"authors":["Jonathan Marsh"],"href":"https://www.w3.org/TR/2001/REC-xmlbase-20010627/","title":"XML Base","rawDate":"2001-06-27","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2001/06/xmlbase-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20061220":{"status":"PER","rawDate":"2006-12-20","href":"https://www.w3.org/TR/2006/PER-xmlbase-20061220/","source":"./data/w3c-specs.txt"},"20080320":{"status":"PER","rawDate":"2008-03-20","href":"https://www.w3.org/TR/2008/PER-xmlbase-20080320/","source":"./data/w3c-specs.txt"},"20090128":{"authors":["Jonathan Marsh","Richard Tobin"],"href":"https://www.w3.org/TR/2009/REC-xmlbase-20090128/","title":"XML Base (Second Edition)","rawDate":"2009-01-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Core/"],"hasErrata":"https://www.w3.org/2009/01/xmlbase-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-01-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-bestpractices":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/xmldsig-bestpractices/","title":"XML Signature Best Practices","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20081114":{"status":"WD","rawDate":"2008-11-14","href":"https://www.w3.org/TR/2008/WD-xmldsig-bestpractices-20081114/","source":"./data/w3c-specs.txt"},"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmldsig-bestpractices-20090226/","source":"./data/w3c-specs.txt"},"20090730":{"status":"WD","rawDate":"2009-07-30","href":"https://www.w3.org/TR/2009/WD-xmldsig-bestpractices-20090730/","source":"./data/w3c-specs.txt"},"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xmldsig-bestpractices-20100204/","source":"./data/w3c-specs.txt"},"20100831":{"status":"WD","rawDate":"2010-08-31","href":"https://www.w3.org/TR/2010/WD-xmldsig-bestpractices-20100831/","source":"./data/w3c-specs.txt"},"20110809":{"status":"WD","rawDate":"2011-08-09","href":"https://www.w3.org/TR/2011/WD-xmldsig-bestpractices-20110809/","source":"./data/w3c-specs.txt"},"20120710":{"status":"NOTE","rawDate":"2012-07-10","href":"https://www.w3.org/TR/2012/NOTE-xmldsig-bestpractices-20120710/","source":"./data/w3c-specs.txt"},"20130124":{"status":"NOTE","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/NOTE-xmldsig-bestpractices-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/2013/NOTE-xmldsig-bestpractices-20130411/","title":"XML Signature Best Practices","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-core":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Thomas Roessler"],"etAl":true,"href":"https://www.w3.org/TR/xmldsig-core/","title":"XML Signature Syntax and Processing (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/xmlsec/","https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2008/06/xmldsigcore-errata.html","versions":{"20000114":{"status":"WD","rawDate":"2000-01-14","href":"https://www.w3.org/Signature/Drafts/WD-xmldsig-core-20000114/","source":"./data/w3c-specs.txt"},"20000128":{"status":"WD","rawDate":"2000-01-28","href":"https://www.w3.org/Signature/Drafts/WD-xmldsig-core-20000128/","source":"./data/w3c-specs.txt"},"20000203":{"status":"WD","rawDate":"2000-02-03","href":"https://www.w3.org/Signature/Drafts/WD-xmldsig-core-20000203/","source":"./data/w3c-specs.txt"},"20000208":{"status":"WD","rawDate":"2000-02-08","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20000208/","source":"./data/w3c-specs.txt"},"20000228":{"status":"WD","rawDate":"2000-02-28","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20000228/","source":"./data/w3c-specs.txt"},"20000510":{"status":"WD","rawDate":"2000-05-10","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20000510/","source":"./data/w3c-specs.txt"},"20000601":{"status":"WD","rawDate":"2000-06-01","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20000601/","source":"./data/w3c-specs.txt"},"20000711":{"status":"WD","rawDate":"2000-07-11","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20000711/","source":"./data/w3c-specs.txt"},"20000918":{"status":"WD","rawDate":"2000-09-18","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20000918/","source":"./data/w3c-specs.txt"},"20001012":{"status":"WD","rawDate":"2000-10-12","href":"https://www.w3.org/TR/2000/WD-xmldsig-core-20001012/","source":"./data/w3c-specs.txt"},"20001031":{"status":"CR","rawDate":"2000-10-31","href":"https://www.w3.org/TR/2000/CR-xmldsig-core-20001031/","source":"./data/w3c-specs.txt"},"20010419":{"status":"CR","rawDate":"2001-04-19","href":"https://www.w3.org/TR/2001/CR-xmldsig-core-20010419/","source":"./data/w3c-specs.txt"},"20010820":{"status":"PR","rawDate":"2001-08-20","href":"https://www.w3.org/TR/2001/PR-xmldsig-core-20010820/","source":"./data/w3c-specs.txt"},"20020212":{"authors":["Donald Eastlake","Joseph Reagle","David Solo"],"href":"https://www.w3.org/TR/2002/REC-xmldsig-core-20020212/","title":"XML-Signature Syntax and Processing","rawDate":"2002-02-12","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2001/10/xmldsig-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20080326":{"status":"PER","rawDate":"2008-03-26","href":"https://www.w3.org/TR/2008/PER-xmldsig-core-20080326/","source":"./data/w3c-specs.txt"},"20080610":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Thomas Roessler"],"href":"https://www.w3.org/TR/2008/REC-xmldsig-core-20080610/","title":"XML Signature Syntax and Processing (Second Edition)","rawDate":"2008-06-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/xmlsec/","https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2008/06/xmldsigcore-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-06-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-core1":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Magnus Nyström","Thomas Roessler","Kelvin Yiu"],"href":"https://www.w3.org/TR/xmldsig-core1/","title":"XML Signature Syntax and Processing Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmldsig-core1-20090226/","source":"./data/w3c-specs.txt"},"20090730":{"status":"WD","rawDate":"2009-07-30","href":"https://www.w3.org/TR/2009/WD-xmldsig-core1-20090730/","source":"./data/w3c-specs.txt"},"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xmldsig-core1-20100204/","source":"./data/w3c-specs.txt"},"20100513":{"status":"WD","rawDate":"2010-05-13","href":"https://www.w3.org/TR/2010/WD-xmldsig-core1-20100513/","source":"./data/w3c-specs.txt"},"20101130":{"status":"WD","rawDate":"2010-11-30","href":"https://www.w3.org/TR/2010/WD-xmldsig-core1-20101130/","source":"./data/w3c-specs.txt"},"20110303":{"status":"CR","rawDate":"2011-03-03","href":"https://www.w3.org/TR/2011/CR-xmldsig-core1-20110303/","source":"./data/w3c-specs.txt"},"20121018":{"status":"WD","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/WD-xmldsig-core1-20121018/","source":"./data/w3c-specs.txt"},"20130124":{"status":"PR","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/PR-xmldsig-core1-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Magnus Nyström","Thomas Roessler","Kelvin Yiu"],"href":"https://www.w3.org/TR/2013/REC-xmldsig-core1-20130411/","title":"XML Signature Syntax and Processing Version 1.1","rawDate":"2013-04-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-core1-explain":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/xmldsig-core1-explain/","title":"Functional Explanation of Changes in XML Signature 1.1","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20121018":{"status":"NOTE","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/NOTE-xmldsig-core1-explain-20121018/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xmldsig-core1-explain-20130411/","title":"Functional Explanation of Changes in XML Signature 1.1","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-core1-interop":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/xmldsig-core1-interop/","title":"XML Signature 1.1 Interop Test Report","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20121113":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/2012/NOTE-xmldsig-core1-interop-20121113/","title":"XML Signature 1.1 Interop Test Report","rawDate":"2012-11-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-11-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-core2":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Thomas Roessler","Kelvin Yiu","Pratik Datta","Scott Cantor"],"href":"https://www.w3.org/TR/xmldsig-core2/","title":"XML Signature Syntax and Processing Version 2.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20091022":{"status":"WD","rawDate":"2009-10-22","href":"https://www.w3.org/TR/2009/WD-xmldsig-core2-20091022/","source":"./data/w3c-specs.txt"},"20100304":{"status":"WD","rawDate":"2010-03-04","href":"https://www.w3.org/TR/2010/WD-xmldsig-core2-20100304/","source":"./data/w3c-specs.txt"},"20100831":{"status":"WD","rawDate":"2010-08-31","href":"https://www.w3.org/TR/2010/WD-xmldsig-core2-20100831/","source":"./data/w3c-specs.txt"},"20110421":{"status":"WD","rawDate":"2011-04-21","href":"https://www.w3.org/TR/2011/WD-xmldsig-core2-20110421/","source":"./data/w3c-specs.txt"},"20120124":{"status":"CR","rawDate":"2012-01-24","href":"https://www.w3.org/TR/2012/CR-xmldsig-core2-20120124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Thomas Roessler","Kelvin Yiu","Pratik Datta","Scott Cantor"],"href":"https://www.w3.org/TR/2013/NOTE-xmldsig-core2-20130411/","title":"XML Signature Syntax and Processing Version 2.0","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150723":{"authors":["Donald Eastlake","Joseph Reagle","David Solo","Frederick Hirsch","Thomas Roessler","Kelvin Yiu","Pratik Datta","Scott Cantor"],"href":"https://www.w3.org/TR/2015/NOTE-xmldsig-core2-20150723/","title":"XML Signature Syntax and Processing Version 2.0","rawDate":"2015-07-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2015-07-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","edDraft":"https://www.w3.org/2008/xmlsec/Drafts/xmldsig-core-20/"},"xmldsig-filter2":{"authors":["John Boyer","Merlin Hughes","Joseph Reagle"],"href":"https://www.w3.org/TR/xmldsig-filter2/","title":"XML-Signature XPath Filter 2.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2002/11/xpath-filter2-errata.html","versions":{"20020425":{"status":"WD","rawDate":"2002-04-25","href":"https://www.w3.org/TR/2002/WD-xmldsig-filter2-20020425/","source":"./data/w3c-specs.txt"},"20020620":{"status":"WD","rawDate":"2002-06-20","href":"https://www.w3.org/TR/2002/WD-xmldsig-filter2-20020620/","source":"./data/w3c-specs.txt"},"20020718":{"status":"CR","rawDate":"2002-07-18","href":"https://www.w3.org/TR/2002/CR-xmldsig-filter2-20020718/","source":"./data/w3c-specs.txt"},"20020827":{"status":"PR","rawDate":"2002-08-27","href":"https://www.w3.org/TR/2002/PR-xmldsig-filter2-20020827/","source":"./data/w3c-specs.txt"},"20021108":{"authors":["John Boyer","Merlin Hughes","Joseph Reagle"],"href":"https://www.w3.org/TR/2002/REC-xmldsig-filter2-20021108/","title":"XML-Signature XPath Filter 2.0","rawDate":"2002-11-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/2002/11/xpath-filter2-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-11-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-p3p-profile":{"versions":{"20010202":{"status":"NOTE","rawDate":"2001-02-02","href":"https://www.w3.org/TR/2001/NOTE-xmldsig-p3p-profile-20010202/","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","authors":["Joseph Reagle"],"title":"A P3P Assurance Signature Profile","publisher":"W3C"}},"href":"https://www.w3.org/TR/xmldsig-p3p-profile/","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"NOTE","rawDate":"2001-02-02","title":"A P3P Assurance Signature Profile","authors":["Joseph Reagle"],"obsoletedBy":["P3P"]},"xmldsig-properties":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/xmldsig-properties/","title":"XML Signature Properties","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmldsig-properties-20090226/","source":"./data/w3c-specs.txt"},"20090430":{"status":"WD","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/WD-xmldsig-properties-20090430/","source":"./data/w3c-specs.txt"},"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xmldsig-properties-20100204/","source":"./data/w3c-specs.txt"},"20110303":{"status":"CR","rawDate":"2011-03-03","href":"https://www.w3.org/TR/2011/CR-xmldsig-properties-20110303/","source":"./data/w3c-specs.txt"},"20130124":{"status":"PR","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/PR-xmldsig-properties-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/REC-xmldsig-properties-20130411/","title":"XML Signature Properties","rawDate":"2013-04-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-requirements":{"authors":["Joseph Reagle Jr"],"href":"https://www.w3.org/TR/xmldsig-requirements","title":"XML-Signature Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"19990720":{"rawDate":"1999-07-20","href":"https://www.w3.org/Signature/Drafts/xmldsig-requirements-990720.html","source":"./data/w3c-specs.txt"},"19990728":{"rawDate":"1999-07-28","href":"https://www.w3.org/Signature/Drafts/xmldsig-requirements-990728.html","source":"./data/w3c-specs.txt"},"19990820":{"status":"WD","rawDate":"1999-08-20","href":"https://www.w3.org/1999/08/WD-xmldsig-requirements-990820.html","source":"./data/w3c-specs.txt"},"19991014":{"href":"https://www.w3.org/TR/1999/WD-xmldsig-requirements-19991014","title":"XML-Signature Requirements","rawDate":"1999-10-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"1999-10-14","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-simplify":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/xmldsig-simplify/","title":"XML Signature Transform Simplification: Requirements and Design","status":"NOTE","publisher":"W3C","versions":{"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmldsig-simplify-20090226/","source":"./data/w3c-specs.txt"},"20090730":{"status":"WD","rawDate":"2009-07-30","href":"https://www.w3.org/TR/2009/WD-xmldsig-simplify-20090730/","source":"./data/w3c-specs.txt"},"20100204":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/2010/NOTE-xmldsig-simplify-20100204/","title":"XML Signature Transform Simplification: Requirements and Design","rawDate":"2010-02-04","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-02-04","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig-xpath":{"authors":["Pratik Datta","Frederick Hirsch","Meiko Jensen"],"href":"https://www.w3.org/TR/xmldsig-xpath/","title":"XML Signature Streaming Profile of XPath 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20100831":{"status":"WD","rawDate":"2010-08-31","href":"https://www.w3.org/TR/2010/WD-xmldsig-xpath-20100831/","source":"./data/w3c-specs.txt"},"20110421":{"status":"WD","rawDate":"2011-04-21","href":"https://www.w3.org/TR/2011/WD-xmldsig-xpath-20110421/","source":"./data/w3c-specs.txt"},"20120124":{"status":"CR","rawDate":"2012-01-24","href":"https://www.w3.org/TR/2012/CR-xmldsig-xpath-20120124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Pratik Datta","Frederick Hirsch","Meiko Jensen"],"href":"https://www.w3.org/TR/2013/NOTE-xmldsig-xpath-20130411/","title":"XML Signature Streaming Profile of XPath 1.0","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmldsig2ed-tests":{"authors":["Juan Carlos Cruellas","Konrad Lanz","Sean Mullan"],"href":"https://www.w3.org/TR/xmldsig2ed-tests/","title":"Test Cases for C14N 1.1 and XMLDSig Interoperability","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/xmlsec/","https://www.w3.org/2008/xmlsec/"],"versions":{"20080610":{"authors":["Juan Carlos Cruellas","Konrad Lanz","Sean Mullan"],"href":"https://www.w3.org/TR/2008/NOTE-xmldsig2ed-tests-20080610/","title":"Test Cases for C14N 1.1 and XMLDSig Interoperability","rawDate":"2008-06-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2007/xmlsec/","https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-06-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlenc-core":{"authors":["Donald Eastlake","Joseph Reagle"],"href":"https://www.w3.org/TR/xmlenc-core/","title":"XML Encryption Syntax and Processing","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/Encryption/2002/12-xmlenc-errata","versions":{"20021210":{"authors":["Donald Eastlake","Joseph Reagle"],"href":"https://www.w3.org/TR/2002/REC-xmlenc-core-20021210/","title":"XML Encryption Syntax and Processing","rawDate":"2002-12-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/Encryption/2002/12-xmlenc-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-12-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlenc-core1":{"authors":["Donald Eastlake","Joseph Reagle","Frederick Hirsch","Thomas Roessler"],"href":"https://www.w3.org/TR/xmlenc-core1/","title":"XML Encryption Syntax and Processing Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20010626":{"status":"WD","rawDate":"2001-06-26","href":"https://www.w3.org/TR/2001/WD-xmlenc-core-20010626/","source":"./data/w3c-specs.txt"},"20011018":{"status":"WD","rawDate":"2001-10-18","href":"https://www.w3.org/TR/2001/WD-xmlenc-core-20011018/","source":"./data/w3c-specs.txt"},"20020304":{"status":"CR","rawDate":"2002-03-04","href":"https://www.w3.org/TR/2002/CR-xmlenc-core-20020304/","source":"./data/w3c-specs.txt"},"20020802":{"status":"CR","rawDate":"2002-08-02","href":"https://www.w3.org/TR/2002/CR-xmlenc-core-20020802/","source":"./data/w3c-specs.txt"},"20021003":{"status":"PR","rawDate":"2002-10-03","href":"https://www.w3.org/TR/2002/PR-xmlenc-core-20021003/","source":"./data/w3c-specs.txt"},"20021210":{"aliasOf":"xmlenc-core-20021210"},"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmlenc-core1-20090226/","source":"./data/w3c-specs.txt"},"20090730":{"status":"WD","rawDate":"2009-07-30","href":"https://www.w3.org/TR/2009/WD-xmlenc-core1-20090730/","source":"./data/w3c-specs.txt"},"20100316":{"status":"WD","rawDate":"2010-03-16","href":"https://www.w3.org/TR/2010/WD-xmlenc-core1-20100316/","source":"./data/w3c-specs.txt"},"20100513":{"status":"WD","rawDate":"2010-05-13","href":"https://www.w3.org/TR/2010/WD-xmlenc-core1-20100513/","source":"./data/w3c-specs.txt"},"20101130":{"status":"WD","rawDate":"2010-11-30","href":"https://www.w3.org/TR/2010/WD-xmlenc-core1-20101130/","source":"./data/w3c-specs.txt"},"20110303":{"status":"CR","rawDate":"2011-03-03","href":"https://www.w3.org/TR/2011/CR-xmlenc-core1-20110303/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-xmlenc-core1-20120105/","source":"./data/w3c-specs.txt"},"20120313":{"status":"CR","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/CR-xmlenc-core1-20120313/","source":"./data/w3c-specs.txt"},"20121018":{"status":"WD","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/WD-xmlenc-core1-20121018/","source":"./data/w3c-specs.txt"},"20130124":{"status":"PR","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/PR-xmlenc-core1-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Donald Eastlake","Joseph Reagle","Frederick Hirsch","Thomas Roessler"],"href":"https://www.w3.org/TR/2013/REC-xmlenc-core1-20130411/","title":"XML Encryption Syntax and Processing Version 1.1","rawDate":"2013-04-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/Encryption/2002/12-xmlenc-errata"},"xmlenc-core1-explain":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/xmlenc-core1-explain/","title":"Functional Explanation of Changes in XML Encryption 1.1","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20121018":{"status":"NOTE","rawDate":"2012-10-18","href":"https://www.w3.org/TR/2012/NOTE-xmlenc-core1-explain-20121018/","source":"./data/w3c-specs.txt"},"20130124":{"status":"NOTE","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/NOTE-xmlenc-core1-explain-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xmlenc-core1-explain-20130411/","title":"Functional Explanation of Changes in XML Encryption 1.1","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlenc-core1-interop":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/xmlenc-core1-interop/","title":"XML Encryption 1.1 Interop Test Report","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20121113":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/2012/NOTE-xmlenc-core1-interop-20121113/","title":"XML Encryption 1.1 Interop Test Report","rawDate":"2012-11-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-11-13","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["xmlenc-core1-testcases"]},"xmlenc-core1-testcases":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/xmlenc-core1-testcases/","title":"Test cases for XML Encryption 1.1","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20120105":{"authors":["Pratik Datta","Frederick Hirsch"],"href":"https://www.w3.org/TR/2012/WD-xmlenc-core1-testcases-20120105/","title":"Test cases for XML Encryption 1.1","rawDate":"2012-01-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-01-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["xmlenc-core1-interop"]},"xmlenc-decrypt":{"authors":["Merlin Hughes","Takeshi Imamura","Hiroshi Maruyama"],"href":"https://www.w3.org/TR/xmlenc-decrypt/","title":"Decryption Transform for XML Signature","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/Encryption/2002/12-xmlenc-decrypt-errata","versions":{"20010626":{"status":"WD","rawDate":"2001-06-26","href":"https://www.w3.org/TR/2001/WD-xmlenc-decrypt-20010626","source":"./data/w3c-specs.txt"},"20011018":{"status":"WD","rawDate":"2001-10-18","href":"https://www.w3.org/TR/2001/WD-xmlenc-decrypt-20011018","source":"./data/w3c-specs.txt"},"20020304":{"status":"CR","rawDate":"2002-03-04","href":"https://www.w3.org/TR/2002/CR-xmlenc-decrypt-20020304","source":"./data/w3c-specs.txt"},"20020802":{"status":"CR","rawDate":"2002-08-02","href":"https://www.w3.org/TR/2002/CR-xmlenc-decrypt-20020802","source":"./data/w3c-specs.txt"},"20021003":{"status":"PR","rawDate":"2002-10-03","href":"https://www.w3.org/TR/2002/PR-xmlenc-decrypt-20021003","source":"./data/w3c-specs.txt"},"20021210":{"authors":["Merlin Hughes","Takeshi Imamura","Hiroshi Maruyama"],"href":"https://www.w3.org/TR/2002/REC-xmlenc-decrypt-20021210","title":"Decryption Transform for XML Signature","rawDate":"2002-12-10","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"hasErrata":"https://www.w3.org/Encryption/2002/12-xmlenc-decrypt-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2002-12-10","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlenc-transform20":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/xmlenc-transform20/","title":"XML Encryption 1.1 CipherReference Processing using 2.0 Transforms","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20110707":{"status":"WD","rawDate":"2011-07-07","href":"https://www.w3.org/TR/2011/WD-xmlenc-transform20-20110707/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-xmlenc-transform20-20120105/","source":"./data/w3c-specs.txt"},"20120313":{"status":"CR","rawDate":"2012-03-13","href":"https://www.w3.org/TR/2012/CR-xmlenc-transform20-20120313/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xmlenc-transform20-20130411/","title":"XML Encryption 1.1 CipherReference Processing using 2.0 Transforms","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlp-am":{"authors":["Stuart Williams","Mark Jones"],"href":"https://www.w3.org/TR/xmlp-am/","title":"XML Protocol Abstract Model","rawDate":"2003-02-20","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20010709":{"status":"WD","rawDate":"2001-07-09","href":"https://www.w3.org/TR/2001/WD-xmlp-am-20010709/","source":"./data/w3c-specs.txt"},"20030220":{"authors":["Stuart Williams","Mark Jones"],"href":"https://www.w3.org/TR/2003/WD-xmlp-am-20030220/","title":"XML Protocol Abstract Model","rawDate":"2003-02-20","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"status":"WD"},"xmlp-reqs":{"authors":["Alex Ceponkus","Paul Cotton","David Ezell","David Fallside","Martin Gudgin","Oisin Hurley","John Ibbotson","Alex Miłowski","Kevin Mitchell","Jean-Jacques Moreau","Eric Newcomer","Henrik Frystyk Nielsen","Bob Lojek","Mark Nottingham","Waqar Sadiq","Stuart Williams","Amr Yassin"],"etAl":true,"href":"https://www.w3.org/TR/xmlp-reqs/","title":"XML Protocol (XMLP) Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20001219":{"status":"WD","rawDate":"2000-12-19","href":"https://www.w3.org/TR/2000/WD-xp-reqs-20001219/","source":"./data/w3c-specs.txt"},"20010319":{"status":"WD","rawDate":"2001-03-19","href":"https://www.w3.org/TR/2001/WD-xmlp-reqs-20010319/","source":"./data/w3c-specs.txt"},"20020626":{"status":"WD","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/WD-xmlp-reqs-20020626","source":"./data/w3c-specs.txt"},"20030728":{"authors":["Alex Ceponkus","Paul Cotton","David Ezell","David Fallside","Martin Gudgin","Oisin Hurley","John Ibbotson","Alex Miłowski","Kevin Mitchell","Jean-Jacques Moreau","Eric Newcomer","Henrik Frystyk Nielsen","Bob Lojek","Mark Nottingham","Waqar Sadiq","Stuart Williams","Amr Yassin"],"href":"https://www.w3.org/TR/2003/NOTE-xmlp-reqs-20030728/","title":"XML Protocol (XMLP) Requirements","rawDate":"2003-07-28","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-07-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlp-scenarios":{"authors":["John Ibbotson"],"href":"https://www.w3.org/TR/xmlp-scenarios/","title":"SOAP Version 1.2 Usage Scenarios","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20011217":{"status":"WD","rawDate":"2001-12-17","href":"https://www.w3.org/TR/2001/WD-xmlp-scenarios-20011217/","source":"./data/w3c-specs.txt"},"20020626":{"status":"WD","rawDate":"2002-06-26","href":"https://www.w3.org/TR/2002/WD-xmlp-scenarios-20020626","source":"./data/w3c-specs.txt"},"20030730":{"authors":["John Ibbotson"],"href":"https://www.w3.org/TR/2003/NOTE-xmlp-scenarios-20030730/","title":"SOAP Version 1.2 Usage Scenarios","rawDate":"2003-07-30","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-07-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlquery-full-text-requirements":{"aliasOf":"xpath-full-text-10-requirements"},"xmlquery-full-text-use-cases":{"aliasOf":"xpath-full-text-10-use-cases"},"xmlquery-req":{"aliasOf":"xquery-requirements"},"xmlquery-use-cases":{"aliasOf":"xquery-use-cases"},"xmlschema-0":{"authors":["David Fallside","Priscilla Walmsley"],"href":"https://www.w3.org/TR/xmlschema-0/","title":"XML Schema Part 0: Primer Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2004/03/xmlschema-errata","versions":{"20000225":{"status":"WD","rawDate":"2000-02-25","href":"https://www.w3.org/TR/2000/WD-xmlschema-0-20000225/","source":"./data/w3c-specs.txt"},"20000407":{"status":"WD","rawDate":"2000-04-07","href":"https://www.w3.org/TR/2000/WD-xmlschema-0-20000407/","source":"./data/w3c-specs.txt"},"20000922":{"status":"WD","rawDate":"2000-09-22","href":"https://www.w3.org/TR/2000/WD-xmlschema-0-20000922/","source":"./data/w3c-specs.txt"},"20001024":{"status":"CR","rawDate":"2000-10-24","href":"https://www.w3.org/TR/2000/CR-xmlschema-0-20001024/","source":"./data/w3c-specs.txt"},"20010316":{"status":"PR","rawDate":"2001-03-16","href":"https://www.w3.org/TR/2001/PR-xmlschema-0-20010316/","source":"./data/w3c-specs.txt"},"20010330":{"status":"PR","rawDate":"2001-03-30","href":"https://www.w3.org/TR/2001/PR-xmlschema-0-20010330/","source":"./data/w3c-specs.txt"},"20010502":{"authors":["David Fallside"],"href":"https://www.w3.org/TR/2001/REC-xmlschema-0-20010502/","title":"XML Schema Part 0: Primer","rawDate":"2001-05-02","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2001/05/xmlschema-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20040318":{"status":"PER","rawDate":"2004-03-18","href":"https://www.w3.org/TR/2004/PER-xmlschema-0-20040318/","source":"./data/w3c-specs.txt"},"20041028":{"authors":["David Fallside","Priscilla Walmsley"],"href":"https://www.w3.org/TR/2004/REC-xmlschema-0-20041028/","title":"XML Schema Part 0: Primer Second Edition","rawDate":"2004-10-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2004/03/xmlschema-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-10-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-1":{"authors":["Henry Thompson","David Beech","Murray Maloney","Noah Mendelsohn"],"etAl":true,"href":"https://www.w3.org/TR/xmlschema-1/","title":"XML Schema Part 1: Structures Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2004/03/xmlschema-errata","versions":{"1":{"rawDate":"1999-05-06","href":"https://www.w3.org/1999/05/06-xmlschema-1/","source":"./data/w3c-specs.txt"},"19991105":{"status":"WD","rawDate":"1999-11-05","href":"https://www.w3.org/TR/1999/WD-xmlschema-1-19991105/","source":"./data/w3c-specs.txt"},"19991217":{"status":"WD","rawDate":"1999-12-17","href":"https://www.w3.org/TR/1999/WD-xmlschema-1-19991217/","source":"./data/w3c-specs.txt"},"20000225":{"status":"WD","rawDate":"2000-02-25","href":"https://www.w3.org/TR/2000/WD-xmlschema-1-20000225/","source":"./data/w3c-specs.txt"},"20000407":{"status":"WD","rawDate":"2000-04-07","href":"https://www.w3.org/TR/2000/WD-xmlschema-1-20000407/","source":"./data/w3c-specs.txt"},"20000922":{"status":"WD","rawDate":"2000-09-22","href":"https://www.w3.org/TR/2000/WD-xmlschema-1-20000922/","source":"./data/w3c-specs.txt"},"20001024":{"status":"CR","rawDate":"2000-10-24","href":"https://www.w3.org/TR/2000/CR-xmlschema-1-20001024/","source":"./data/w3c-specs.txt"},"20010316":{"status":"PR","rawDate":"2001-03-16","href":"https://www.w3.org/TR/2001/PR-xmlschema-1-20010316/","source":"./data/w3c-specs.txt"},"20010330":{"status":"PR","rawDate":"2001-03-30","href":"https://www.w3.org/TR/2001/PR-xmlschema-1-20010330/","source":"./data/w3c-specs.txt"},"20010502":{"authors":["Henry Thompson","David Beech","Murray Maloney","Noah Mendelsohn"],"href":"https://www.w3.org/TR/2001/REC-xmlschema-1-20010502/","title":"XML Schema Part 1: Structures","rawDate":"2001-05-02","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2001/05/xmlschema-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20040318":{"status":"PER","rawDate":"2004-03-18","href":"https://www.w3.org/TR/2004/PER-xmlschema-1-20040318/","source":"./data/w3c-specs.txt"},"20041028":{"authors":["Henry Thompson","David Beech","Murray Maloney","Noah Mendelsohn"],"href":"https://www.w3.org/TR/2004/REC-xmlschema-1-20041028/","title":"XML Schema Part 1: Structures Second Edition","rawDate":"2004-10-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2004/03/xmlschema-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-10-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-11-req":{"authors":["Charles Campbell","Ashok Malhotra","Priscilla Walmsley"],"href":"https://www.w3.org/TR/xmlschema-11-req/","title":"Requirements for XML Schema 1.1","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"versions":{"20030121":{"authors":["Charles Campbell","Ashok Malhotra","Priscilla Walmsley"],"href":"https://www.w3.org/TR/2003/WD-xmlschema-11-req-20030121/","title":"Requirements for XML Schema 1.1","rawDate":"2003-01-21","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-01-21","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-2":{"authors":["Paul V. Biron","Ashok Malhotra"],"href":"https://www.w3.org/TR/xmlschema-2/","title":"XML Schema Part 2: Datatypes Second Edition","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2004/03/xmlschema-errata","versions":{"2":{"rawDate":"1999-05-06","href":"https://www.w3.org/1999/05/06-xmlschema-2/","source":"./data/w3c-specs.txt"},"19991105":{"status":"WD","rawDate":"1999-11-05","href":"https://www.w3.org/TR/1999/WD-xmlschema-2-19991105/","source":"./data/w3c-specs.txt"},"19991217":{"status":"WD","rawDate":"1999-12-17","href":"https://www.w3.org/TR/1999/WD-xmlschema-2-19991217/","source":"./data/w3c-specs.txt"},"20000225":{"status":"WD","rawDate":"2000-02-25","href":"https://www.w3.org/TR/2000/WD-xmlschema-2-20000225/","source":"./data/w3c-specs.txt"},"20000407":{"status":"WD","rawDate":"2000-04-07","href":"https://www.w3.org/TR/2000/WD-xmlschema-2-20000407/","source":"./data/w3c-specs.txt"},"20000922":{"status":"WD","rawDate":"2000-09-22","href":"https://www.w3.org/TR/2000/WD-xmlschema-2-20000922/","source":"./data/w3c-specs.txt"},"20001024":{"status":"CR","rawDate":"2000-10-24","href":"https://www.w3.org/TR/2000/CR-xmlschema-2-20001024/","source":"./data/w3c-specs.txt"},"20010316":{"status":"PR","rawDate":"2001-03-16","href":"https://www.w3.org/TR/2001/PR-xmlschema-2-20010316/","source":"./data/w3c-specs.txt"},"20010330":{"status":"PR","rawDate":"2001-03-30","href":"https://www.w3.org/TR/2001/PR-xmlschema-2-20010330/","source":"./data/w3c-specs.txt"},"20010502":{"authors":["Paul V. Biron","Ashok Malhotra"],"href":"https://www.w3.org/TR/2001/REC-xmlschema-2-20010502/","title":"XML Schema Part 2: Datatypes","rawDate":"2001-05-02","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2001/05/xmlschema-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20040318":{"status":"PER","rawDate":"2004-03-18","href":"https://www.w3.org/TR/2004/PER-xmlschema-2-20040318/","source":"./data/w3c-specs.txt"},"20041028":{"authors":["Paul V. Biron","Ashok Malhotra"],"href":"https://www.w3.org/TR/2004/REC-xmlschema-2-20041028/","title":"XML Schema Part 2: Datatypes Second Edition","rawDate":"2004-10-28","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/2004/03/xmlschema-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-10-28","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-formal":{"authors":["Allen Brown","Matthew Fuchs","Jonathan Robie","Philip Wadler"],"etAl":true,"href":"https://www.w3.org/TR/xmlschema-formal/","title":"XML Schema: Formal Description","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"versions":{"20010320":{"status":"WD","rawDate":"2001-03-20","href":"https://www.w3.org/TR/2001/WD-xmlschema-formal-20010320/","source":"./data/w3c-specs.txt"},"20010925":{"authors":["Allen Brown","Matthew Fuchs","Jonathan Robie","Philip Wadler"],"href":"https://www.w3.org/TR/2001/WD-xmlschema-formal-20010925/","title":"XML Schema: Formal Description","rawDate":"2001-09-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-09-25","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-guide2versioning":{"authors":["David Orchard"],"href":"https://www.w3.org/TR/xmlschema-guide2versioning/","title":"Guide to Versioning XML Languages using new XML Schema 1.1 features","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"versions":{"20060928":{"status":"WD","rawDate":"2006-09-28","href":"https://www.w3.org/TR/2006/WD-xmlschema-guide2versioning-20060928","source":"./data/w3c-specs.txt"},"20070720":{"authors":["David Orchard"],"href":"https://www.w3.org/TR/2007/WD-xmlschema-guide2versioning-20070720/","title":"Guide to Versioning XML Languages using new XML Schema 1.1 features","rawDate":"2007-07-20","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-07-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-patterns":{"authors":["Jonathan Calladine","George Cowe","Paul Downey","Yves Lafon"],"etAl":true,"href":"https://www.w3.org/TR/xmlschema-patterns/","title":"Basic XML Schema Patterns for Databinding Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/databinding/"],"versions":{"20060512":{"status":"WD","rawDate":"2006-05-12","href":"https://www.w3.org/TR/2006/WD-xmlschema-patterns-20060512/","source":"./data/w3c-specs.txt"},"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-xmlschema-patterns-20061122/","source":"./data/w3c-specs.txt"},"20071031":{"status":"WD","rawDate":"2007-10-31","href":"https://www.w3.org/TR/2007/WD-xmlschema-patterns-20071031/","source":"./data/w3c-specs.txt"},"20080328":{"status":"WD","rawDate":"2008-03-28","href":"https://www.w3.org/TR/2008/WD-xmlschema-patterns-20080328/","source":"./data/w3c-specs.txt"},"20090505":{"authors":["Jonathan Calladine","George Cowe","Paul Downey","Yves Lafon"],"href":"https://www.w3.org/TR/2009/NOTE-xmlschema-patterns-20090505/","title":"Basic XML Schema Patterns for Databinding Version 1.0","rawDate":"2009-05-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/databinding/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-05-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-patterns-advanced":{"authors":["Jonathan Calladine","George Cowe","Paul Downey","Yves Lafon"],"etAl":true,"href":"https://www.w3.org/TR/xmlschema-patterns-advanced/","title":"Advanced XML Schema Patterns for Databinding Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/databinding/"],"versions":{"20061122":{"status":"WD","rawDate":"2006-11-22","href":"https://www.w3.org/TR/2006/WD-xmlschema-patterns-advanced-20061122/","source":"./data/w3c-specs.txt"},"20071031":{"status":"WD","rawDate":"2007-10-31","href":"https://www.w3.org/TR/2007/WD-xmlschema-patterns-advanced-20071031/","source":"./data/w3c-specs.txt"},"20080328":{"status":"WD","rawDate":"2008-03-28","href":"https://www.w3.org/TR/2008/WD-xmlschema-patterns-advanced-20080328/","source":"./data/w3c-specs.txt"},"20090505":{"authors":["Jonathan Calladine","George Cowe","Paul Downey","Yves Lafon"],"href":"https://www.w3.org/TR/2009/NOTE-xmlschema-patterns-advanced-20090505/","title":"Advanced XML Schema Patterns for Databinding Version 1.0","rawDate":"2009-05-05","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2002/ws/databinding/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2009-05-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema-ref":{"authors":["Mary Holstege","Asir Vedamuthu"],"href":"https://www.w3.org/TR/xmlschema-ref/","title":"W3C XML Schema Definition Language (XSD): Component Designators","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"versions":{"20030109":{"status":"WD","rawDate":"2003-01-09","href":"https://www.w3.org/TR/2003/WD-xmlschema-ref-20030109/","source":"./data/w3c-specs.txt"},"20040309":{"status":"WD","rawDate":"2004-03-09","href":"https://www.w3.org/TR/2004/WD-xmlschema-ref-20040309/","source":"./data/w3c-specs.txt"},"20040716":{"status":"WD","rawDate":"2004-07-16","href":"https://www.w3.org/TR/2004/WD-xmlschema-ref-20040716/","source":"./data/w3c-specs.txt"},"20050329":{"status":"WD","rawDate":"2005-03-29","href":"https://www.w3.org/TR/2005/WD-xmlschema-ref-20050329/","source":"./data/w3c-specs.txt"},"20080910":{"status":"WD","rawDate":"2008-09-10","href":"https://www.w3.org/TR/2008/WD-xmlschema-ref-20080910/","source":"./data/w3c-specs.txt"},"20081117":{"status":"WD","rawDate":"2008-11-17","href":"https://www.w3.org/TR/2008/WD-xmlschema-ref-20081117/","source":"./data/w3c-specs.txt"},"20100119":{"authors":["Mary Holstege","Asir Vedamuthu"],"href":"https://www.w3.org/TR/2010/CR-xmlschema-ref-20100119/","title":"W3C XML Schema Definition Language (XSD): Component Designators","rawDate":"2010-01-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-01-19","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema11-1":{"authors":["Sandy Gao","Michael Sperberg-McQueen","Henry Thompson","Noah Mendelsohn","David Beech","Murray Maloney"],"href":"https://www.w3.org/TR/xmlschema11-1/","title":"W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/XML/XMLSchema/v1.1/1e/errata.html","versions":{"20040716":{"status":"WD","rawDate":"2004-07-16","href":"https://www.w3.org/TR/2004/WD-xmlschema11-1-20040716/","source":"./data/w3c-specs.txt"},"20050224":{"status":"WD","rawDate":"2005-02-24","href":"https://www.w3.org/TR/2005/WD-xmlschema11-1-20050224/","source":"./data/w3c-specs.txt"},"20060330":{"status":"WD","rawDate":"2006-03-30","href":"https://www.w3.org/TR/2006/WD-xmlschema11-1-20060330/","source":"./data/w3c-specs.txt"},"20060831":{"status":"WD","rawDate":"2006-08-31","href":"https://www.w3.org/TR/2006/WD-xmlschema11-1-20060831/","source":"./data/w3c-specs.txt"},"20070830":{"status":"WD","rawDate":"2007-08-30","href":"https://www.w3.org/TR/2007/WD-xmlschema11-1-20070830/","source":"./data/w3c-specs.txt"},"20080620":{"status":"WD","rawDate":"2008-06-20","href":"https://www.w3.org/TR/2008/WD-xmlschema11-1-20080620/","source":"./data/w3c-specs.txt"},"20090130":{"status":"WD","rawDate":"2009-01-30","href":"https://www.w3.org/TR/2009/WD-xmlschema11-1-20090130/","source":"./data/w3c-specs.txt"},"20090430":{"status":"CR","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/CR-xmlschema11-1-20090430/","source":"./data/w3c-specs.txt"},"20091203":{"status":"WD","rawDate":"2009-12-03","href":"https://www.w3.org/TR/2009/WD-xmlschema11-1-20091203/","source":"./data/w3c-specs.txt"},"20110721":{"status":"CR","rawDate":"2011-07-21","href":"https://www.w3.org/TR/2011/CR-xmlschema11-1-20110721/","source":"./data/w3c-specs.txt"},"20120119":{"status":"PR","rawDate":"2012-01-19","href":"https://www.w3.org/TR/2012/PR-xmlschema11-1-20120119/","source":"./data/w3c-specs.txt"},"20120405":{"authors":["Sandy Gao","Michael Sperberg-McQueen","Henry Thompson","Noah Mendelsohn","David Beech","Murray Maloney"],"href":"https://www.w3.org/TR/2012/REC-xmlschema11-1-20120405/","title":"W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures","rawDate":"2012-04-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/XML/XMLSchema/v1.1/1e/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-04-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlschema11-2":{"authors":["David Peterson","Sandy Gao","Ashok Malhotra","Michael Sperberg-McQueen","Henry Thompson","Paul V. Biron"],"etAl":true,"href":"https://www.w3.org/TR/xmlschema11-2/","title":"W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/XML/XMLSchema/v1.1/1e/errata.html","versions":{"20040716":{"status":"WD","rawDate":"2004-07-16","href":"https://www.w3.org/TR/2004/WD-xmlschema11-2-20040716/","source":"./data/w3c-specs.txt"},"20050224":{"status":"WD","rawDate":"2005-02-24","href":"https://www.w3.org/TR/2005/WD-xmlschema11-2-20050224/","source":"./data/w3c-specs.txt"},"20060116":{"status":"WD","rawDate":"2006-01-16","href":"https://www.w3.org/TR/2006/WD-xmlschema11-2-20060116/","source":"./data/w3c-specs.txt"},"20060217":{"status":"WD","rawDate":"2006-02-17","href":"https://www.w3.org/TR/2006/WD-xmlschema11-2-20060217/","source":"./data/w3c-specs.txt"},"20080620":{"status":"WD","rawDate":"2008-06-20","href":"https://www.w3.org/TR/2008/WD-xmlschema11-2-20080620/","source":"./data/w3c-specs.txt"},"20090130":{"status":"WD","rawDate":"2009-01-30","href":"https://www.w3.org/TR/2009/WD-xmlschema11-2-20090130/","source":"./data/w3c-specs.txt"},"20090430":{"status":"CR","rawDate":"2009-04-30","href":"https://www.w3.org/TR/2009/CR-xmlschema11-2-20090430/","source":"./data/w3c-specs.txt"},"20091203":{"status":"WD","rawDate":"2009-12-03","href":"https://www.w3.org/TR/2009/WD-xmlschema11-2-20091203/","source":"./data/w3c-specs.txt"},"20110721":{"status":"CR","rawDate":"2011-07-21","href":"https://www.w3.org/TR/2011/CR-xmlschema11-2-20110721/","source":"./data/w3c-specs.txt"},"20120119":{"status":"PR","rawDate":"2012-01-19","href":"https://www.w3.org/TR/2012/PR-xmlschema11-2-20120119/","source":"./data/w3c-specs.txt"},"20120405":{"authors":["David Peterson","Sandy Gao","Ashok Malhotra","Michael Sperberg-McQueen","Henry Thompson","Paul V. Biron"],"href":"https://www.w3.org/TR/2012/REC-xmlschema11-2-20120405/","title":"W3C XML Schema Definition Language (XSD) 1.1 Part 2: Datatypes","rawDate":"2012-04-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"hasErrata":"https://www.w3.org/XML/XMLSchema/v1.1/1e/errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2012-04-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlsec-algorithms":{"authors":["Frederick Hirsch","Thomas Roessler","Kelvin Yiu"],"href":"https://www.w3.org/TR/xmlsec-algorithms/","title":"XML Security Algorithm Cross-Reference","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmlsec-algorithms-20090226/","source":"./data/w3c-specs.txt"},"20090730":{"status":"WD","rawDate":"2009-07-30","href":"https://www.w3.org/TR/2009/WD-xmlsec-algorithms-20090730/","source":"./data/w3c-specs.txt"},"20100316":{"status":"WD","rawDate":"2010-03-16","href":"https://www.w3.org/TR/2010/WD-xmlsec-algorithms-20100316/","source":"./data/w3c-specs.txt"},"20100513":{"status":"WD","rawDate":"2010-05-13","href":"https://www.w3.org/TR/2010/WD-xmlsec-algorithms-20100513/","source":"./data/w3c-specs.txt"},"20110421":{"status":"WD","rawDate":"2011-04-21","href":"https://www.w3.org/TR/2011/WD-xmlsec-algorithms-20110421/","source":"./data/w3c-specs.txt"},"20120105":{"status":"WD","rawDate":"2012-01-05","href":"https://www.w3.org/TR/2012/WD-xmlsec-algorithms-20120105/","source":"./data/w3c-specs.txt"},"20130124":{"status":"NOTE","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/NOTE-xmlsec-algorithms-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch","Thomas Roessler","Kelvin Yiu"],"href":"https://www.w3.org/TR/2013/NOTE-xmlsec-algorithms-20130411/","title":"XML Security Algorithm Cross-Reference","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlsec-derivedkeys":{"authors":["Magnus Nyström"],"href":"https://www.w3.org/TR/xmlsec-derivedkeys/","title":"XML Security Derived Keys","status":"NOTE","publisher":"W3C","versions":{"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmlsec-derivedkeys-20090226/","source":"./data/w3c-specs.txt"},"20090730":{"authors":["Magnus Nyström"],"href":"https://www.w3.org/TR/2009/NOTE-xmlsec-derivedkeys-20090730/","title":"XML Security Derived Keys","rawDate":"2009-07-30","status":"NOTE","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true}},"rawDate":"2009-07-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","isRetired":true},"xmlsec-generic-hybrid":{"authors":["Magnus Nyström","Frederick Hirsch"],"href":"https://www.w3.org/TR/xmlsec-generic-hybrid/","title":"XML Security Generic Hybrid Ciphers","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20090730":{"status":"WD","rawDate":"2009-07-30","href":"https://www.w3.org/TR/2009/WD-xmlsec-generic-hybrid-20090730/","source":"./data/w3c-specs.txt"},"20100316":{"status":"WD","rawDate":"2010-03-16","href":"https://www.w3.org/TR/2010/WD-xmlsec-generic-hybrid-20100316/","source":"./data/w3c-specs.txt"},"20100513":{"status":"WD","rawDate":"2010-05-13","href":"https://www.w3.org/TR/2010/WD-xmlsec-generic-hybrid-20100513/","source":"./data/w3c-specs.txt"},"20110303":{"status":"CR","rawDate":"2011-03-03","href":"https://www.w3.org/TR/2011/CR-xmlsec-generic-hybrid-20110303/","source":"./data/w3c-specs.txt"},"20130124":{"status":"NOTE","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/NOTE-xmlsec-generic-hybrid-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Magnus Nyström","Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xmlsec-generic-hybrid-20130411/","title":"XML Security Generic Hybrid Ciphers","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlsec-reqs":{"authors":["Frederick Hirsch","Thomas Roessler"],"href":"https://www.w3.org/TR/xmlsec-reqs/","title":"XML Security 1.1 Requirements and Design Considerations","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20090226":{"status":"WD","rawDate":"2009-02-26","href":"https://www.w3.org/TR/2009/WD-xmlsec-reqs-20090226/","source":"./data/w3c-specs.txt"},"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xmlsec-reqs-20100204/","source":"./data/w3c-specs.txt"},"20110303":{"status":"WD","rawDate":"2011-03-03","href":"https://www.w3.org/TR/2011/WD-xmlsec-reqs-20110303/","source":"./data/w3c-specs.txt"},"20130124":{"status":"NOTE","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/NOTE-xmlsec-reqs-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch","Thomas Roessler"],"href":"https://www.w3.org/TR/2013/NOTE-xmlsec-reqs-20130411/","title":"XML Security 1.1 Requirements and Design Considerations","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlsec-reqs2":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/xmlsec-reqs2/","title":"XML Security 2.0 Requirements and Design Considerations","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xmlsec-reqs2-20100204/","source":"./data/w3c-specs.txt"},"20110421":{"status":"WD","rawDate":"2011-04-21","href":"https://www.w3.org/TR/2011/WD-xmlsec-reqs2-20110421/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Frederick Hirsch","Pratik Datta"],"href":"https://www.w3.org/TR/2013/NOTE-xmlsec-reqs2-20130411/","title":"XML Security 2.0 Requirements and Design Considerations","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmlsec-rngschema":{"authors":["Murata Makoto","Frederick Hirsch"],"href":"https://www.w3.org/TR/xmlsec-rngschema/","title":"XML Security RELAX NG Schemas","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"versions":{"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xmlsec-rngschema-20100204/","source":"./data/w3c-specs.txt"},"20100316":{"status":"WD","rawDate":"2010-03-16","href":"https://www.w3.org/TR/2010/WD-xmlsec-rngschema-20100316/","source":"./data/w3c-specs.txt"},"20100831":{"status":"WD","rawDate":"2010-08-31","href":"https://www.w3.org/TR/2010/WD-xmlsec-rngschema-20100831/","source":"./data/w3c-specs.txt"},"20110303":{"status":"WD","rawDate":"2011-03-03","href":"https://www.w3.org/TR/2011/WD-xmlsec-rngschema-20110303/","source":"./data/w3c-specs.txt"},"20110421":{"status":"WD","rawDate":"2011-04-21","href":"https://www.w3.org/TR/2011/WD-xmlsec-rngschema-20110421/","source":"./data/w3c-specs.txt"},"20110830":{"status":"WD","rawDate":"2011-08-30","href":"https://www.w3.org/TR/2011/WD-xmlsec-rngschema-20110830/","source":"./data/w3c-specs.txt"},"20120124":{"status":"NOTE","rawDate":"2012-01-24","href":"https://www.w3.org/TR/2012/NOTE-xmlsec-rngschema-20120124/","source":"./data/w3c-specs.txt"},"20130124":{"status":"NOTE","rawDate":"2013-01-24","href":"https://www.w3.org/TR/2013/NOTE-xmlsec-rngschema-20130124/","source":"./data/w3c-specs.txt"},"20130411":{"authors":["Murata Makoto","Frederick Hirsch"],"href":"https://www.w3.org/TR/2013/NOTE-xmlsec-rngschema-20130411/","title":"XML Security RELAX NG Schemas","rawDate":"2013-04-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/xmlsec/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2013-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xmsg":{"versions":{"20001013":{"status":"NOTE","rawDate":"2000-10-13","href":"https://www.w3.org/TR/2000/NOTE-xmsg-20001013","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xmsg/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-10-13","title":"XMSG - XML Messaging Specification"},"xop10":{"authors":["Martin Gudgin","Noah Mendelsohn","Mark Nottingham","Hervé Ruellan"],"etAl":true,"href":"https://www.w3.org/TR/xop10/","title":"XML-binary Optimized Packaging","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2005/01/xop10-errata","versions":{"20040209":{"status":"WD","rawDate":"2004-02-09","href":"https://www.w3.org/TR/2004/WD-xop10-20040209/","source":"./data/w3c-specs.txt"},"20040608":{"status":"WD","rawDate":"2004-06-08","href":"https://www.w3.org/TR/2004/WD-xop10-20040608/","source":"./data/w3c-specs.txt"},"20040826":{"status":"CR","rawDate":"2004-08-26","href":"https://www.w3.org/TR/2004/CR-xop10-20040826/","source":"./data/w3c-specs.txt"},"20041116":{"status":"PR","rawDate":"2004-11-16","href":"https://www.w3.org/TR/2004/PR-xop10-20041116/","source":"./data/w3c-specs.txt"},"20050125":{"authors":["Martin Gudgin","Noah Mendelsohn","Mark Nottingham","Hervé Ruellan"],"href":"https://www.w3.org/TR/2005/REC-xop10-20050125/","title":"XML-binary Optimized Packaging","rawDate":"2005-01-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"hasErrata":"https://www.w3.org/2005/01/xop10-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2005-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xopinc-FAQ":{"authors":["Michael Mahan"],"href":"https://www.w3.org/TR/xopinc-FAQ/","title":"XOP Inclusion Mechanism - Frequently Asked Questions","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"versions":{"20040608":{"authors":["Michael Mahan"],"href":"https://www.w3.org/TR/2004/NOTE-xopinc-FAQ-20040608/","title":"XOP Inclusion Mechanism - Frequently Asked Questions","rawDate":"2004-06-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/2000/xp/Group/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2004-06-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath":{"authors":["James Clark","Steven DeRose"],"href":"https://www.w3.org/TR/xpath-10/","title":"XML Path Language (XPath) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/1999/11/REC-xpath-19991116-errata","versions":{"19980818":{"status":"WD","rawDate":"1998-08-18","href":"https://www.w3.org/TR/1998/WD-xsl-19980818","source":"./data/w3c-specs.txt"},"19981216":{"status":"WD","rawDate":"1998-12-16","href":"https://www.w3.org/TR/1998/WD-xsl-19981216","source":"./data/w3c-specs.txt"},"19990421":{"status":"WD","rawDate":"1999-04-21","href":"https://www.w3.org/TR/1999/WD-xslt-19990421","source":"./data/w3c-specs.txt"},"19990709":{"status":"WD","rawDate":"1999-07-09","href":"https://www.w3.org/1999/07/WD-xpath-19990709","source":"./data/w3c-specs.txt"},"19990813":{"status":"WD","rawDate":"1999-08-13","href":"https://www.w3.org/1999/08/WD-xpath-19990813","source":"./data/w3c-specs.txt"},"19991008":{"status":"PR","rawDate":"1999-10-08","href":"https://www.w3.org/TR/1999/PR-xpath-19991008","source":"./data/w3c-specs.txt"},"19991116":{"authors":["James Clark","Steven DeRose"],"href":"https://www.w3.org/TR/1999/REC-xpath-19991116/","title":"XML Path Language (XPath) Version 1.0","rawDate":"1999-11-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/1999/11/REC-xpath-19991116-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-11-16","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath-21":{"aliasOf":"xpath-30"},"xpath-30":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/xpath-30/","title":"XML Path Language (XPath) 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xpath-21-20091215/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xpath-30-20101214/","source":"./data/w3c-specs.txt"},"20110614":{"status":"WD","rawDate":"2011-06-14","href":"https://www.w3.org/TR/2011/WD-xpath-30-20110614/","source":"./data/w3c-specs.txt"},"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xpath-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2013/CR-xpath-30-20130108/","title":"XML Path Language (XPath) 3.0","rawDate":"2013-01-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2013/PR-xpath-30-20131022/","title":"XML Path Language (XPath) 3.0","rawDate":"2013-10-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2014/REC-xpath-30-20140408/","title":"XML Path Language (XPath) 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xpath-31":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/xpath-31/","title":"XML Path Language (XPath) 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Jonathan Robie","Michael Dyck"],"href":"https://www.w3.org/TR/2014/WD-xpath-31-20140424/","title":"XML Path Language (XPath) 3.1","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Jonathan Robie","Michael Dyck"],"href":"https://www.w3.org/TR/2014/WD-xpath-31-20141007/","title":"XML Path Language (XPath) 3.1","rawDate":"2014-10-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141218":{"authors":["Jonathan Robie","Michael Dyck"],"href":"https://www.w3.org/TR/2014/CR-xpath-31-20141218/","title":"XML Path Language (XPath) 3.1","rawDate":"2014-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2015/CR-xpath-31-20151217/","title":"XML Path Language (XPath) 3.1","rawDate":"2015-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2016/CR-xpath-31-20161213/","title":"XML Path Language (XPath) 3.1","rawDate":"2016-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2017/PR-xpath-31-20170117/","title":"XML Path Language (XPath) 3.1","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2017/REC-xpath-31-20170321/","title":"XML Path Language (XPath) 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xpath-31-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xpath-31-errata.html"},"xpath-datamodel":{"authors":["Anders Berglund","Mary Fernandez","Ashok Malhotra","Jonathan Marsh","Marton Nagy","Norman Walsh"],"etAl":true,"href":"https://www.w3.org/TR/xpath-datamodel/","title":"XQuery 1.0 and XPath 2.0 Data Model (XDM) (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xpath-datamodel-errata2e.html","versions":{"20000511":{"status":"WD","rawDate":"2000-05-11","href":"https://www.w3.org/TR/2000/WD-query-datamodel-20000511","source":"./data/w3c-specs.txt"},"20010215":{"status":"WD","rawDate":"2001-02-15","href":"https://www.w3.org/TR/2001/WD-query-datamodel-20010215/","source":"./data/w3c-specs.txt"},"20010607":{"status":"WD","rawDate":"2001-06-07","href":"https://www.w3.org/TR/2001/WD-query-datamodel-20010607/","source":"./data/w3c-specs.txt"},"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-query-datamodel-20011220/","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-query-datamodel-20020430/","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-query-datamodel-20020816/","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-query-datamodel-20021115/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xpath-datamodel-20030502/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xpath-datamodel-20031112/","source":"./data/w3c-specs.txt"},"20040723":{"status":"WD","rawDate":"2004-07-23","href":"https://www.w3.org/TR/2004/WD-xpath-datamodel-20040723/","source":"./data/w3c-specs.txt"},"20041029":{"status":"WD","rawDate":"2004-10-29","href":"https://www.w3.org/TR/2004/WD-xpath-datamodel-20041029/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xpath-datamodel-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xpath-datamodel-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xpath-datamodel-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xpath-datamodel-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xpath-datamodel-20060608/","source":"./data/w3c-specs.txt"},"20060711":{"status":"CR","rawDate":"2006-07-11","href":"https://www.w3.org/TR/2006/CR-xpath-datamodel-20060711/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xpath-datamodel-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Mary Fernandez","Ashok Malhotra","Jonathan Marsh","Marton Nagy","Norman Walsh"],"href":"https://www.w3.org/TR/2007/REC-xpath-datamodel-20070123/","title":"XQuery 1.0 and XPath 2.0 Data Model (XDM)","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xpath-datamodel-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xpath-datamodel-20090421/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Anders Berglund","Mary Fernandez","Ashok Malhotra","Jonathan Marsh","Marton Nagy","Norman Walsh"],"href":"https://www.w3.org/TR/2010/REC-xpath-datamodel-20101214/","title":"XQuery 1.0 and XPath 2.0 Data Model (XDM) (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xpath-datamodel-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath-datamodel-11":{"aliasOf":"xpath-datamodel-30"},"xpath-datamodel-30":{"authors":["Norman Walsh","Anders Berglund","John Snelson"],"href":"https://www.w3.org/TR/xpath-datamodel-30/","title":"XQuery and XPath Data Model 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xpath-datamodel-11-20091215/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xpath-datamodel-30-20101214/","source":"./data/w3c-specs.txt"},"20110614":{"status":"WD","rawDate":"2011-06-14","href":"https://www.w3.org/TR/2011/WD-xpath-datamodel-30-20110614/","source":"./data/w3c-specs.txt"},"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xpath-datamodel-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Norman Walsh","Anders Berglund","John Snelson"],"href":"https://www.w3.org/TR/2013/CR-xpath-datamodel-30-20130108/","title":"XQuery and XPath Data Model 3.0","rawDate":"2013-01-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["Norman Walsh","Anders Berglund","John Snelson"],"href":"https://www.w3.org/TR/2013/PR-xpath-datamodel-30-20131022/","title":"XQuery and XPath Data Model 3.0","rawDate":"2013-10-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Norman Walsh","Anders Berglund","John Snelson"],"href":"https://www.w3.org/TR/2014/REC-xpath-datamodel-30-20140408/","title":"XQuery and XPath Data Model 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xpath-datamodel-31":{"authors":["Norman Walsh","John Snelson","Andrew Coleman"],"href":"https://www.w3.org/TR/xpath-datamodel-31/","title":"XQuery and XPath Data Model 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Norman Walsh","John Snelson"],"href":"https://www.w3.org/TR/2014/WD-xpath-datamodel-31-20140424/","title":"XQuery and XPath Data Model 3.1","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Norman Walsh","John Snelson"],"href":"https://www.w3.org/TR/2014/WD-xpath-datamodel-31-20141007/","title":"XQuery and XPath Data Model 3.1","rawDate":"2014-10-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141218":{"authors":["Norman Walsh","John Snelson"],"href":"https://www.w3.org/TR/2014/CR-xpath-datamodel-31-20141218/","title":"XQuery and XPath Data Model 3.1","rawDate":"2014-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Norman Walsh","John Snelson","Andrew Coleman"],"href":"https://www.w3.org/TR/2016/CR-xpath-datamodel-31-20161213/","title":"XQuery and XPath Data Model 3.1","rawDate":"2016-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Norman Walsh","John Snelson","Andrew Coleman"],"href":"https://www.w3.org/TR/2017/PR-xpath-datamodel-31-20170117/","title":"XQuery and XPath Data Model 3.1","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Norman Walsh","John Snelson","Andrew Coleman"],"href":"https://www.w3.org/TR/2017/REC-xpath-datamodel-31-20170321/","title":"XQuery and XPath Data Model 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xpath-datamodel-31-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xpath-datamodel-31-errata.html"},"xpath-dm":{"aliasOf":"scxml-xpath-dm"},"xpath-full-text-10":{"authors":["Pat Case","Michael Dyck","Mary Holstege","Sihem Amer-Yahia","Chavdar Botev","Stephen Buxton","Jochen Dörre","Jim Melton","Michael Rys","Jayavel Shanmugasundaram"],"etAl":true,"href":"https://www.w3.org/TR/xpath-full-text-10/","title":"XQuery and XPath Full Text 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2012/qt-errata/xpath-full-text-10-errata.html","versions":{"20040709":{"status":"WD","rawDate":"2004-07-09","href":"https://www.w3.org/TR/2004/WD-xquery-full-text-20040709/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xquery-full-text-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xquery-full-text-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"WD","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/WD-xquery-full-text-20051103/","source":"./data/w3c-specs.txt"},"20060501":{"status":"WD","rawDate":"2006-05-01","href":"https://www.w3.org/TR/2006/WD-xquery-full-text-20060501/","source":"./data/w3c-specs.txt"},"20070518":{"status":"WD","rawDate":"2007-05-18","href":"https://www.w3.org/TR/2007/WD-xpath-full-text-10-20070518/","source":"./data/w3c-specs.txt"},"20080516":{"status":"CR","rawDate":"2008-05-16","href":"https://www.w3.org/TR/2008/CR-xpath-full-text-10-20080516/","source":"./data/w3c-specs.txt"},"20090709":{"status":"CR","rawDate":"2009-07-09","href":"https://www.w3.org/TR/2009/CR-xpath-full-text-10-20090709/","source":"./data/w3c-specs.txt"},"20100128":{"status":"CR","rawDate":"2010-01-28","href":"https://www.w3.org/TR/2010/CR-xpath-full-text-10-20100128/","source":"./data/w3c-specs.txt"},"20110125":{"status":"PR","rawDate":"2011-01-25","href":"https://www.w3.org/TR/2011/PR-xpath-full-text-10-20110125/","source":"./data/w3c-specs.txt"},"20110317":{"authors":["Pat Case","Michael Dyck","Mary Holstege","Sihem Amer-Yahia","Chavdar Botev","Stephen Buxton","Jochen Dörre","Jim Melton","Michael Rys","Jayavel Shanmugasundaram"],"href":"https://www.w3.org/TR/2011/REC-xpath-full-text-10-20110317/","title":"XQuery and XPath Full Text 1.0","rawDate":"2011-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2012/qt-errata/xpath-full-text-10-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-03-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath-full-text-10-requirements":{"authors":["Stephen Buxton","Pat Case","Michael Rys"],"href":"https://www.w3.org/TR/xpath-full-text-10-requirements/","title":"XQuery and XPath Full Text 1.0 Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"versions":{"20030214":{"status":"WD","rawDate":"2003-02-14","href":"https://www.w3.org/TR/2003/WD-xmlquery-full-text-requirements-20030214/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xquery-full-text-requirements-20030502/","source":"./data/w3c-specs.txt"},"20070518":{"status":"WD","rawDate":"2007-05-18","href":"https://www.w3.org/TR/2007/WD-xpath-full-text-10-requirements-20070518/","source":"./data/w3c-specs.txt"},"20080516":{"status":"WD","rawDate":"2008-05-16","href":"https://www.w3.org/TR/2008/WD-xpath-full-text-10-requirements-20080516/","source":"./data/w3c-specs.txt"},"20110125":{"authors":["Stephen Buxton","Pat Case","Michael Rys"],"href":"https://www.w3.org/TR/2011/NOTE-xpath-full-text-10-requirements-20110125/","title":"XQuery and XPath Full Text 1.0 Requirements","rawDate":"2011-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath-full-text-10-use-cases":{"authors":["Pat Case","Sihem Amer-Yahia"],"href":"https://www.w3.org/TR/xpath-full-text-10-use-cases/","title":"XQuery and XPath Full Text 1.0 Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"versions":{"20030214":{"status":"WD","rawDate":"2003-02-14","href":"https://www.w3.org/TR/2003/WD-xmlquery-full-text-use-cases-20030214/","source":"./data/w3c-specs.txt"},"20040709":{"status":"WD","rawDate":"2004-07-09","href":"https://www.w3.org/TR/2004/WD-xmlquery-full-text-use-cases-20040709/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xmlquery-full-text-use-cases-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xmlquery-full-text-use-cases-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"WD","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/WD-xmlquery-full-text-use-cases-20051103/","source":"./data/w3c-specs.txt"},"20060501":{"status":"WD","rawDate":"2006-05-01","href":"https://www.w3.org/TR/2006/WD-xmlquery-full-text-use-cases-20060501/","source":"./data/w3c-specs.txt"},"20070518":{"status":"WD","rawDate":"2007-05-18","href":"https://www.w3.org/TR/2007/WD-xpath-full-text-10-use-cases-20070518/","source":"./data/w3c-specs.txt"},"20080516":{"status":"WD","rawDate":"2008-05-16","href":"https://www.w3.org/TR/2008/WD-xpath-full-text-10-use-cases-20080516/","source":"./data/w3c-specs.txt"},"20090709":{"status":"WD","rawDate":"2009-07-09","href":"https://www.w3.org/TR/2009/WD-xpath-full-text-10-use-cases-20090709/","source":"./data/w3c-specs.txt"},"20100128":{"status":"WD","rawDate":"2010-01-28","href":"https://www.w3.org/TR/2010/WD-xpath-full-text-10-use-cases-20100128/","source":"./data/w3c-specs.txt"},"20110125":{"authors":["Pat Case","Sihem Amer-Yahia"],"href":"https://www.w3.org/TR/2011/NOTE-xpath-full-text-10-use-cases-20110125/","title":"XQuery and XPath Full Text 1.0 Use Cases","rawDate":"2011-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath-full-text-30":{"authors":["Mary Holstege","Jim Melton"],"href":"https://www.w3.org/TR/xpath-full-text-30/","title":"XQuery and XPath Full Text 3.0","rawDate":"2015-11-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xpath-full-text-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Mary Holstege"],"href":"https://www.w3.org/TR/2013/WD-xpath-full-text-30-20130108/","title":"XQuery and XPath Full Text 3.0","rawDate":"2013-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140918":{"authors":["Mary Holstege","Jim Melton"],"href":"https://www.w3.org/TR/2014/WD-xpath-full-text-30-20140918/","title":"XQuery and XPath Full Text 3.0","rawDate":"2014-09-18","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150312":{"authors":["Mary Holstege","Jim Melton"],"href":"https://www.w3.org/TR/2015/CR-xpath-full-text-30-20150312/","title":"XQuery and XPath Full Text 3.0","rawDate":"2015-03-12","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150806":{"authors":["Mary Holstege","Jim Melton"],"href":"https://www.w3.org/TR/2015/PR-xpath-full-text-30-20150806/","title":"XQuery and XPath Full Text 3.0","rawDate":"2015-08-06","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151124":{"authors":["Mary Holstege","Jim Melton"],"href":"https://www.w3.org/TR/2015/REC-xpath-full-text-30-20151124/","title":"XQuery and XPath Full Text 3.0","rawDate":"2015-11-24","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xpath-full-text-30-requirements-use-cases":{"authors":["Pat Case"],"href":"https://www.w3.org/TR/xpath-full-text-30-requirements-use-cases/","title":"XQuery and XPath Full Text 3.0 Requirements and Use Cases","rawDate":"2015-12-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120327":{"authors":["Pat Case"],"href":"https://www.w3.org/TR/2012/WD-xpath-full-text-30-requirements-use-cases-20120327/","title":"XQuery and XPath Full Text 3.0 Requirements and Use Cases","rawDate":"2012-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150312":{"authors":["Pat Case"],"href":"https://www.w3.org/TR/2015/WD-xpath-full-text-30-requirements-use-cases-20150312/","title":"XQuery and XPath Full Text 3.0 Requirements and Use Cases","rawDate":"2015-03-12","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151210":{"authors":["Pat Case"],"href":"https://www.w3.org/TR/2015/NOTE-xpath-full-text-30-requirements-use-cases-20151210/","title":"XQuery and XPath Full Text 3.0 Requirements and Use Cases","rawDate":"2015-12-10","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xpath-functions":{"authors":["Ashok Malhotra","Jim Melton","Norman Walsh","Michael Kay"],"href":"https://www.w3.org/TR/xpath-functions/","title":"XQuery 1.0 and XPath 2.0 Functions and Operators (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xpath-functions-errata2e.html","versions":{"20010827":{"status":"WD","rawDate":"2001-08-27","href":"https://www.w3.org/TR/2001/WD-xquery-operators-20010827/","source":"./data/w3c-specs.txt"},"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-xquery-operators-20011220/","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-xquery-operators-20020430/","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-xquery-operators-20020816/","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-xquery-operators-20021115/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xpath-functions-20030502/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xpath-functions-20031112/","source":"./data/w3c-specs.txt"},"20040723":{"status":"WD","rawDate":"2004-07-23","href":"https://www.w3.org/TR/2004/WD-xpath-functions-20040723/","source":"./data/w3c-specs.txt"},"20041029":{"status":"WD","rawDate":"2004-10-29","href":"https://www.w3.org/TR/2004/WD-xpath-functions-20041029/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xpath-functions-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xpath-functions-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xpath-functions-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xpath-functions-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xpath-functions-20060608/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xpath-functions-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Ashok Malhotra","Jim Melton","Norman Walsh"],"href":"https://www.w3.org/TR/2007/REC-xpath-functions-20070123/","title":"XQuery 1.0 and XPath 2.0 Functions and Operators","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xpath-functions-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xpath-functions-20090421/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Ashok Malhotra","Jim Melton","Norman Walsh","Michael Kay"],"href":"https://www.w3.org/TR/2010/REC-xpath-functions-20101214/","title":"XQuery 1.0 and XPath 2.0 Functions and Operators (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xpath-functions-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath-functions-11":{"aliasOf":"xpath-functions-30"},"xpath-functions-30":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/xpath-functions-30/","title":"XPath and XQuery Functions and Operators 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xpath-functions-11-20091215/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xpath-functions-30-20101214/","source":"./data/w3c-specs.txt"},"20110614":{"status":"WD","rawDate":"2011-06-14","href":"https://www.w3.org/TR/2011/WD-xpath-functions-30-20110614/","source":"./data/w3c-specs.txt"},"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xpath-functions-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"status":"CR","rawDate":"2013-01-08","href":"https://www.w3.org/TR/2013/CR-xpath-functions-30-20130108/","source":"./data/w3c-specs.txt"},"20130521":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2013/CR-xpath-functions-30-20130521/","title":"XPath and XQuery Functions and Operators 3.0","rawDate":"2013-05-21","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2013/PR-xpath-functions-30-20131022/","title":"XPath and XQuery Functions and Operators 3.0","rawDate":"2013-10-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2014/REC-xpath-functions-30-20140408/","title":"XPath and XQuery Functions and Operators 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xpath-functions-31":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/xpath-functions-31/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2014/WD-xpath-functions-31-20140424/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2014/WD-xpath-functions-31-20141007/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2014-10-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141218":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2014/CR-xpath-functions-31-20141218/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2014-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2016/CR-xpath-functions-31-20161213/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2016-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2017/PR-xpath-functions-31-20170117/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2017/REC-xpath-functions-31-20170321/","title":"XPath and XQuery Functions and Operators 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xpath-functions-31-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xpath-functions-31-errata.html"},"xpath20":{"authors":["Anders Berglund","Scott Boag","Don Chamberlin","Mary Fernandez","Michael Kay","Jonathan Robie","Jerome Simeon"],"etAl":true,"href":"https://www.w3.org/TR/xpath20/","title":"XML Path Language (XPath) 2.0 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xpath20-errata2e.html","versions":{"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-xpath20-20011220/","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-xpath20-20020430","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-xpath20-20020816","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-xpath20-20021115","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xpath20-20030502","source":"./data/w3c-specs.txt"},"20030822":{"status":"WD","rawDate":"2003-08-22","href":"https://www.w3.org/TR/2003/WD-xpath20-20030822","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xpath20-20031112","source":"./data/w3c-specs.txt"},"20040723":{"status":"WD","rawDate":"2004-07-23","href":"https://www.w3.org/TR/2004/WD-xpath20-20040723","source":"./data/w3c-specs.txt"},"20041029":{"status":"WD","rawDate":"2004-10-29","href":"https://www.w3.org/TR/2004/WD-xpath20-20041029","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xpath20-20050211","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xpath20-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xpath20-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xpath20-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xpath20-20060608/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xpath20-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Anders Berglund","Scott Boag","Don Chamberlin","Mary Fernandez","Michael Kay","Jonathan Robie","Jerome Simeon"],"href":"https://www.w3.org/TR/2007/REC-xpath20-20070123/","title":"XML Path Language (XPath) 2.0","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xpath20-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xpath20-20090421/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Anders Berglund","Scott Boag","Don Chamberlin","Mary Fernandez","Michael Kay","Jonathan Robie","Jerome Simeon"],"href":"https://www.w3.org/TR/2010/REC-xpath20-20101214/","title":"XML Path Language (XPath) 2.0 (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xpath20-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xpath20req":{"authors":["Mary Fernandez","K Karun","Mark Scardina"],"href":"https://www.w3.org/TR/xpath20req/","title":"XPath Requirements Version 2.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"versions":{"20010214":{"status":"WD","rawDate":"2001-02-14","href":"https://www.w3.org/TR/2001/WD-xpath20req-20010214","source":"./data/w3c-specs.txt"},"20030822":{"status":"WD","rawDate":"2003-08-22","href":"https://www.w3.org/TR/2003/WD-xpath20req-20030822","source":"./data/w3c-specs.txt"},"20050603":{"authors":["Mary Fernandez","K Karun","Mark Scardina"],"href":"https://www.w3.org/TR/2005/WD-xpath20req-20050603/","title":"XPath Requirements Version 2.0","rawDate":"2005-06-03","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-06-03","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xproc":{"authors":["Norman Walsh","Alex Miłowski","Henry Thompson"],"href":"https://www.w3.org/TR/xproc/","title":"XProc: An XML Pipeline Language","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"hasErrata":"https://www.w3.org/XML/2010/xproc-errata.html","versions":{"20060928":{"status":"WD","rawDate":"2006-09-28","href":"https://www.w3.org/TR/2006/WD-xproc-20060928/","source":"./data/w3c-specs.txt"},"20061117":{"status":"WD","rawDate":"2006-11-17","href":"https://www.w3.org/TR/2006/WD-xproc-20061117/","source":"./data/w3c-specs.txt"},"20070405":{"status":"WD","rawDate":"2007-04-05","href":"https://www.w3.org/TR/2007/WD-xproc-20070405/","source":"./data/w3c-specs.txt"},"20070706":{"status":"WD","rawDate":"2007-07-06","href":"https://www.w3.org/TR/2007/WD-xproc-20070706/","source":"./data/w3c-specs.txt"},"20070920":{"status":"WD","rawDate":"2007-09-20","href":"https://www.w3.org/TR/2007/WD-xproc-20070920/","source":"./data/w3c-specs.txt"},"20071129":{"status":"WD","rawDate":"2007-11-29","href":"https://www.w3.org/TR/2007/WD-xproc-20071129/","source":"./data/w3c-specs.txt"},"20080501":{"status":"WD","rawDate":"2008-05-01","href":"https://www.w3.org/TR/2008/WD-xproc-20080501/","source":"./data/w3c-specs.txt"},"20080814":{"status":"WD","rawDate":"2008-08-14","href":"https://www.w3.org/TR/2008/WD-xproc-20080814/","source":"./data/w3c-specs.txt"},"20081126":{"status":"CR","rawDate":"2008-11-26","href":"https://www.w3.org/TR/2008/CR-xproc-20081126/","source":"./data/w3c-specs.txt"},"20090528":{"status":"CR","rawDate":"2009-05-28","href":"https://www.w3.org/TR/2009/CR-xproc-20090528/","source":"./data/w3c-specs.txt"},"20100105":{"status":"WD","rawDate":"2010-01-05","href":"https://www.w3.org/TR/2010/WD-xproc-20100105/","source":"./data/w3c-specs.txt"},"20100309":{"status":"PR","rawDate":"2010-03-09","href":"https://www.w3.org/TR/2010/PR-xproc-20100309/","source":"./data/w3c-specs.txt"},"20100511":{"authors":["Norman Walsh","Alex Miłowski","Henry Thompson"],"href":"https://www.w3.org/TR/2010/REC-xproc-20100511/","title":"XProc: An XML Pipeline Language","rawDate":"2010-05-11","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"hasErrata":"https://www.w3.org/XML/2010/xproc-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-05-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xproc-requirements":{"authors":["Alex Miłowski"],"href":"https://www.w3.org/TR/xproc-requirements/","title":"XML Processing Model Requirements and Use Cases","status":"WD","publisher":"W3C","versions":{"20060411":{"authors":["Alex Miłowski"],"href":"https://www.w3.org/TR/2006/WD-xproc-requirements-20060411/","title":"XML Processing Model Requirements and Use Cases","rawDate":"2006-04-11","status":"WD","publisher":"W3C","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-04-11","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xproc-template":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/xproc-template/","title":"Document Templating Steps for XProc","rawDate":"2011-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110125":{"authors":["Norman Walsh"],"href":"https://www.w3.org/TR/2011/NOTE-xproc-template-20110125/","title":"Document Templating Steps for XProc","rawDate":"2011-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xproc-v2-req":{"authors":["Alex Miłowski","James Fuller","Norman Walsh"],"href":"https://www.w3.org/TR/xproc-v2-req/","title":"XProc V2.0 Requirements","rawDate":"2013-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20131105":{"authors":["Alex Miłowski","James Fuller","Norman Walsh"],"href":"https://www.w3.org/TR/2013/WD-xproc-v2-req-20131105/","title":"XProc V2.0 Requirements","rawDate":"2013-11-05","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xproc20":{"authors":["Norman Walsh","Alex Miłowski","Henry Thompson"],"href":"https://www.w3.org/TR/xproc20/","title":"XProc 2.0: An XML Pipeline Language","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141218":{"authors":["Norman Walsh","Alex Milowski","Henry Thompson"],"href":"https://www.w3.org/TR/2014/WD-xproc20-20141218/","title":"XProc 2.0: An XML Pipeline Language","rawDate":"2014-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"authors":["Norman Walsh","Alex Miłowski","Henry Thompson"],"href":"https://www.w3.org/TR/2016/NOTE-xproc20-20160721/","title":"XProc 2.0: An XML Pipeline Language","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xproc20-steps":{"authors":["Norman Walsh","Alex Miłowski","Henry Thompson"],"href":"https://www.w3.org/TR/xproc20-steps/","title":"XProc 2.0: Standard Step Library","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20141218":{"authors":["Norman Walsh","Alex Milowski","Henry Thompson"],"href":"https://www.w3.org/TR/2014/WD-xproc20-steps-20141218/","title":"XProc 2.0: Standard Step Library","rawDate":"2014-12-18","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160721":{"authors":["Norman Walsh","Alex Miłowski","Henry Thompson"],"href":"https://www.w3.org/TR/2016/NOTE-xproc20-steps-20160721/","title":"XProc 2.0: Standard Step Library","rawDate":"2016-07-21","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Processing/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xptr":{"authors":["Steven DeRose","Ron Daniel","Paul Grosso","Eve Maler","Jonathan Marsh","Norman Walsh"],"href":"https://www.w3.org/TR/xptr/","title":"XML Pointer Language (XPointer)","status":"WD","publisher":"W3C","versions":{"20020816":{"authors":["Steven DeRose","Ron Daniel","Paul Grosso","Eve Maler","Jonathan Marsh","Norman Walsh"],"href":"https://www.w3.org/TR/2002/WD-xptr-20020816/","title":"XML Pointer Language (XPointer)","rawDate":"2002-08-16","publisher":"W3C","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-08-16","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletedBy":["xptr-xpointer"]},"xptr-element":{"authors":["Paul Grosso","Eve Maler","Jonathan Marsh","Norman Walsh"],"etAl":true,"href":"https://www.w3.org/TR/xptr-element/","title":"XPointer element() Scheme","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2003/03/REC-xptr-20030325-errata","versions":{"19990709":{"status":"WD","rawDate":"1999-07-09","href":"https://www.w3.org/1999/07/WD-xptr-19990709","source":"./data/w3c-specs.txt"},"19991206":{"status":"WD","rawDate":"1999-12-06","href":"https://www.w3.org/TR/1999/WD-xptr-19991206","source":"./data/w3c-specs.txt"},"20000607":{"status":"WD","rawDate":"2000-06-07","href":"https://www.w3.org/TR/2000/WD-xptr-20000607","source":"./data/w3c-specs.txt"},"20010108":{"status":"WD","rawDate":"2001-01-08","href":"https://www.w3.org/TR/2001/WD-xptr-20010108/","source":"./data/w3c-specs.txt"},"20010911":{"status":"CR","rawDate":"2001-09-11","href":"https://www.w3.org/TR/2001/CR-xptr-20010911/","source":"./data/w3c-specs.txt"},"20020710":{"status":"WD","rawDate":"2002-07-10","href":"https://www.w3.org/TR/2002/WD-xptr-element-20020710/","source":"./data/w3c-specs.txt"},"20021113":{"status":"PR","rawDate":"2002-11-13","href":"https://www.w3.org/TR/2002/PR-xptr-element-20021113/","source":"./data/w3c-specs.txt"},"20030325":{"authors":["Paul Grosso","Eve Maler","Jonathan Marsh","Norman Walsh"],"href":"https://www.w3.org/TR/2003/REC-xptr-element-20030325/","title":"XPointer element() Scheme","rawDate":"2003-03-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2003/03/REC-xptr-20030325-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-03-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["xptr"]},"xptr-framework":{"authors":["Paul Grosso","Eve Maler","Jonathan Marsh","Norman Walsh"],"etAl":true,"href":"https://www.w3.org/TR/xptr-framework/","title":"XPointer Framework","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2003/03/REC-xptr-20030325-errata","versions":{"20020710":{"status":"WD","rawDate":"2002-07-10","href":"https://www.w3.org/TR/2002/WD-xptr-framework-20020710/","source":"./data/w3c-specs.txt"},"20021113":{"status":"PR","rawDate":"2002-11-13","href":"https://www.w3.org/TR/2002/PR-xptr-framework-20021113/","source":"./data/w3c-specs.txt"},"20030325":{"authors":["Paul Grosso","Eve Maler","Jonathan Marsh","Norman Walsh"],"href":"https://www.w3.org/TR/2003/REC-xptr-framework-20030325/","title":"XPointer Framework","rawDate":"2003-03-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2003/03/REC-xptr-20030325-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-03-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["xptr"]},"xptr-infoset-liaison":{"authors":["Steven DeRose"],"href":"https://www.w3.org/TR/NOTE-xptr-infoset-liaison","title":"XPointer-Information Set Liaison Statement Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"versions":{"19990224":{"authors":["Steven DeRose"],"href":"https://www.w3.org/TR/1999/NOTE-xptr-infoset-liaison-19990224","title":"XPointer-Information Set Liaison Statement Version 1.0","rawDate":"1999-02-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-02-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xptr-req":{"authors":["Steven DeRose"],"href":"https://www.w3.org/TR/NOTE-xptr-req","title":"XML XPointer Requirements Version 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"versions":{"19990224":{"authors":["Steven DeRose"],"href":"https://www.w3.org/TR/1999/NOTE-xptr-req-19990224","title":"XML XPointer Requirements Version 1.0","rawDate":"1999-02-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"1999-02-24","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xptr-xmlns":{"authors":["Steven DeRose","Ron Daniel","Eve Maler","Jonathan Marsh"],"etAl":true,"href":"https://www.w3.org/TR/xptr-xmlns/","title":"XPointer xmlns() Scheme","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2003/03/REC-xptr-20030325-errata","versions":{"20020710":{"status":"WD","rawDate":"2002-07-10","href":"https://www.w3.org/TR/2002/WD-xptr-xmlns-20020710/","source":"./data/w3c-specs.txt"},"20021113":{"status":"PR","rawDate":"2002-11-13","href":"https://www.w3.org/TR/2002/PR-xptr-xmlns-20021113/","source":"./data/w3c-specs.txt"},"20030325":{"authors":["Steven DeRose","Ron Daniel","Eve Maler","Jonathan Marsh"],"href":"https://www.w3.org/TR/2003/REC-xptr-xmlns-20030325/","title":"XPointer xmlns() Scheme","rawDate":"2003-03-25","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"hasErrata":"https://www.w3.org/2003/03/REC-xptr-20030325-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2003-03-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["xptr"]},"xptr-xpointer":{"authors":["Steven DeRose","Eve Maler","Ron Daniel"],"href":"https://www.w3.org/TR/xptr-xpointer/","title":"XPointer xpointer() Scheme","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Group/Linking"],"versions":{"20020710":{"status":"WD","rawDate":"2002-07-10","href":"https://www.w3.org/TR/2002/WD-xptr-xpointer-20020710/","source":"./data/w3c-specs.txt"},"20021219":{"authors":["Steven DeRose","Eve Maler","Ron Daniel"],"href":"https://www.w3.org/TR/2002/WD-xptr-xpointer-20021219/","title":"XPointer xpointer() Scheme","rawDate":"2002-12-19","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Group/Linking"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2002-12-19","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","obsoletes":["xptr"]},"xquery":{"authors":["Scott Boag","Don Chamberlin","Mary Fernandez","Daniela Florescu","Jonathan Robie","Jerome Simeon"],"etAl":true,"href":"https://www.w3.org/TR/xquery/","title":"XQuery 1.0: An XML Query Language (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xquery-errata2e.html","versions":{"20010215":{"status":"WD","rawDate":"2001-02-15","href":"https://www.w3.org/TR/2001/WD-xquery-20010215/","source":"./data/w3c-specs.txt"},"20010607":{"status":"WD","rawDate":"2001-06-07","href":"https://www.w3.org/TR/2001/WD-xquery-20010607","source":"./data/w3c-specs.txt"},"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-xquery-20011220/","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-xquery-20020430","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-xquery-20020816/","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-xquery-20021115/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xquery-20030502/","source":"./data/w3c-specs.txt"},"20030822":{"status":"WD","rawDate":"2003-08-22","href":"https://www.w3.org/TR/2003/WD-xquery-20030822/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xquery-20031112/","source":"./data/w3c-specs.txt"},"20040723":{"status":"WD","rawDate":"2004-07-23","href":"https://www.w3.org/TR/2004/WD-xquery-20040723/","source":"./data/w3c-specs.txt"},"20041029":{"status":"WD","rawDate":"2004-10-29","href":"https://www.w3.org/TR/2004/WD-xquery-20041029/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xquery-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xquery-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xquery-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xquery-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xquery-20060608/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xquery-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Scott Boag","Don Chamberlin","Mary Fernandez","Daniela Florescu","Jonathan Robie","Jerome Simeon"],"href":"https://www.w3.org/TR/2007/REC-xquery-20070123/","title":"XQuery 1.0: An XML Query Language","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xquery-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xquery-20090421/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Scott Boag","Don Chamberlin","Mary Fernandez","Daniela Florescu","Jonathan Robie","Jerome Simeon"],"href":"https://www.w3.org/TR/2010/REC-xquery-20101214/","title":"XQuery 1.0: An XML Query Language (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xquery-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-11":{"aliasOf":"xquery-30"},"xquery-11-requirements":{"aliasOf":"xquery-30-requirements"},"xquery-11-use-cases":{"aliasOf":"xquery-30-use-cases"},"xquery-30":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/xquery-30/","title":"XQuery 3.0: An XML Query Language","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20080711":{"status":"WD","rawDate":"2008-07-11","href":"https://www.w3.org/TR/2008/WD-xquery-11-20080711/","source":"./data/w3c-specs.txt"},"20081203":{"status":"WD","rawDate":"2008-12-03","href":"https://www.w3.org/TR/2008/WD-xquery-11-20081203/","source":"./data/w3c-specs.txt"},"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xquery-11-20091215/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xquery-30-20101214/","source":"./data/w3c-specs.txt"},"20110614":{"status":"WD","rawDate":"2011-06-14","href":"https://www.w3.org/TR/2011/WD-xquery-30-20110614/","source":"./data/w3c-specs.txt"},"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xquery-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2013/CR-xquery-30-20130108/","title":"XQuery 3.0: An XML Query Language","rawDate":"2013-01-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20130723":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2013/WD-xquery-30-20130723/","title":"XQuery 3.0: An XML Query Language","rawDate":"2013-07-23","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2013/PR-xquery-30-20131022/","title":"XQuery 3.0: An XML Query Language","rawDate":"2013-10-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Jonathan Robie","Don Chamberlin","Michael Dyck","John Snelson"],"href":"https://www.w3.org/TR/2014/REC-xquery-30-20140408/","title":"XQuery 3.0: An XML Query Language","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-04-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-30-requirements":{"authors":["Jonathan Robie","Daniel Engovatov"],"href":"https://www.w3.org/TR/xquery-30-requirements/","title":"XQuery 3.0 Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20070323":{"status":"WD","rawDate":"2007-03-23","href":"https://www.w3.org/TR/2007/WD-xquery-11-requirements-20070323","source":"./data/w3c-specs.txt"},"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xquery-11-requirements-20091215/","source":"./data/w3c-specs.txt"},"20100916":{"status":"WD","rawDate":"2010-09-16","href":"https://www.w3.org/TR/2010/WD-xquery-30-requirements-20100916/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Jonathan Robie","Daniel Engovatov"],"href":"https://www.w3.org/TR/2013/WD-xquery-30-requirements-20130108/","title":"XQuery 3.0 Requirements","rawDate":"2013-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Jonathan Robie","Daniel Engovatov"],"href":"https://www.w3.org/TR/2014/NOTE-xquery-30-requirements-20140408/","title":"XQuery 3.0 Requirements","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-04-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-30-use-cases":{"authors":["Jonathan Robie","Tim Kraska"],"href":"https://www.w3.org/TR/xquery-30-use-cases/","title":"XQuery 3.0 Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20080327":{"status":"WD","rawDate":"2008-03-27","href":"https://www.w3.org/TR/2008/WD-xquery-11-use-cases-20080327/","source":"./data/w3c-specs.txt"},"20080711":{"status":"WD","rawDate":"2008-07-11","href":"https://www.w3.org/TR/2008/WD-xquery-11-use-cases-20080711/","source":"./data/w3c-specs.txt"},"20081203":{"status":"WD","rawDate":"2008-12-03","href":"https://www.w3.org/TR/2008/WD-xquery-11-use-cases-20081203/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xquery-30-use-cases-20101214/","source":"./data/w3c-specs.txt"},"20120327":{"status":"WD","rawDate":"2012-03-27","href":"https://www.w3.org/TR/2012/WD-xquery-30-use-cases-20120327/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Jonathan Robie","Tim Kraska"],"href":"https://www.w3.org/TR/2013/WD-xquery-30-use-cases-20130108/","title":"XQuery 3.0 Use Cases","rawDate":"2013-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Jonathan Robie","Tim Kraska"],"href":"https://www.w3.org/TR/2014/NOTE-xquery-30-use-cases-20140408/","title":"XQuery 3.0 Use Cases","rawDate":"2014-04-08","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-04-08","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-31":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/xquery-31/","title":"XQuery 3.1: An XML Query Language","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Jonathan Robie","Michael Dyck"],"href":"https://www.w3.org/TR/2014/WD-xquery-31-20140424/","title":"XQuery 3.1: An XML Query Language","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Jonathan Robie","Michael Dyck"],"href":"https://www.w3.org/TR/2014/WD-xquery-31-20141007/","title":"XQuery 3.1: An XML Query Language","rawDate":"2014-10-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141218":{"authors":["Jonathan Robie","Michael Dyck"],"href":"https://www.w3.org/TR/2014/CR-xquery-31-20141218/","title":"XQuery 3.1: An XML Query Language","rawDate":"2014-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2015/CR-xquery-31-20151217/","title":"XQuery 3.1: An XML Query Language","rawDate":"2015-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2016/CR-xquery-31-20161213/","title":"XQuery 3.1: An XML Query Language","rawDate":"2016-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2017/PR-xquery-31-20170117/","title":"XQuery 3.1: An XML Query Language","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Jonathan Robie","Michael Dyck","Josh Spiegel"],"href":"https://www.w3.org/TR/2017/REC-xquery-31-20170321/","title":"XQuery 3.1: An XML Query Language","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xquery-31-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xquery-31-errata.html"},"xquery-31-requirements":{"authors":["Jonathan Robie"],"href":"https://www.w3.org/TR/xquery-31-requirements/","title":"XQuery 3.1 Requirements and Use Cases","rawDate":"2016-12-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Jonathan Robie"],"href":"https://www.w3.org/TR/2014/WD-xquery-31-requirements-20140424/","title":"XQuery 3.1 Requirements and Use Cases","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150811":{"authors":["Jonathan Robie"],"href":"https://www.w3.org/TR/2015/NOTE-xquery-31-requirements-20150811/","title":"XQuery 3.1 Requirements and Use Cases","rawDate":"2015-08-11","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Jonathan Robie"],"href":"https://www.w3.org/TR/2016/NOTE-xquery-31-requirements-20161213/","title":"XQuery 3.1 Requirements and Use Cases","rawDate":"2016-12-13","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xquery-full-text":{"aliasOf":"xpath-full-text-10"},"xquery-full-text-requirements":{"aliasOf":"xpath-full-text-10-requirements"},"xquery-operators":{"aliasOf":"xpath-functions"},"xquery-requirements":{"authors":["Don Chamberlin","Peter Fankhauser","Massimo Marchiori","Jonathan Robie"],"etAl":true,"href":"https://www.w3.org/TR/xquery-requirements/","title":"XML Query (XQuery) Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20000131":{"status":"WD","rawDate":"2000-01-31","href":"https://www.w3.org/TR/2000/WD-xmlquery-req-20000131","source":"./data/w3c-specs.txt"},"20000815":{"status":"WD","rawDate":"2000-08-15","href":"https://www.w3.org/TR/2000/WD-xmlquery-req-20000815","source":"./data/w3c-specs.txt"},"20010215":{"status":"WD","rawDate":"2001-02-15","href":"https://www.w3.org/TR/2001/WD-xmlquery-req-20010215","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xquery-requirements-20030502","source":"./data/w3c-specs.txt"},"20030627":{"status":"WD","rawDate":"2003-06-27","href":"https://www.w3.org/TR/2003/WD-xquery-requirements-20030627","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xquery-requirements-20031112","source":"./data/w3c-specs.txt"},"20050603":{"status":"WD","rawDate":"2005-06-03","href":"https://www.w3.org/TR/2005/WD-xquery-requirements-20050603","source":"./data/w3c-specs.txt"},"20070323":{"authors":["Don Chamberlin","Peter Fankhauser","Massimo Marchiori","Jonathan Robie"],"href":"https://www.w3.org/TR/2007/NOTE-xquery-requirements-20070323/","title":"XML Query (XQuery) Requirements","rawDate":"2007-03-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-03-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-semantics":{"authors":["Denise Draper","Michael Dyck","Peter Fankhauser","Mary Fernandez","Ashok Malhotra","Kristoffer Rose","Michael Rys","Jerome Simeon","Philip Wadler"],"etAl":true,"href":"https://www.w3.org/TR/xquery-semantics/","title":"XQuery 1.0 and XPath 2.0 Formal Semantics (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xquery-semantics-errata2e.html","versions":{"20001204":{"status":"WD","rawDate":"2000-12-04","href":"https://www.w3.org/TR/2000/WD-query-algebra-20001204","source":"./data/w3c-specs.txt"},"20010215":{"status":"WD","rawDate":"2001-02-15","href":"https://www.w3.org/TR/2001/WD-query-algebra-20010215/","source":"./data/w3c-specs.txt"},"20010607":{"status":"WD","rawDate":"2001-06-07","href":"https://www.w3.org/TR/2001/WD-query-semantics-20010607/","source":"./data/w3c-specs.txt"},"20020326":{"status":"WD","rawDate":"2002-03-26","href":"https://www.w3.org/TR/2002/WD-query-semantics-20020326/","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-query-semantics-20020816/","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-query-semantics-20021115/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xquery-semantics-20030502/","source":"./data/w3c-specs.txt"},"20030822":{"status":"WD","rawDate":"2003-08-22","href":"https://www.w3.org/TR/2003/WD-xquery-semantics-20030822/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xquery-semantics-20031112/","source":"./data/w3c-specs.txt"},"20040220":{"status":"WD","rawDate":"2004-02-20","href":"https://www.w3.org/TR/2004/WD-xquery-semantics-20040220/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xquery-semantics-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xquery-semantics-20050404/","source":"./data/w3c-specs.txt"},"20050603":{"status":"WD","rawDate":"2005-06-03","href":"https://www.w3.org/TR/2005/WD-xquery-semantics-20050603/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xquery-semantics-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xquery-semantics-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xquery-semantics-20060608/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xquery-semantics-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Denise Draper","Peter Fankhauser","Mary Fernandez","Ashok Malhotra","Kristoffer Rose","Michael Rys","Jerome Simeon","Philip Wadler"],"href":"https://www.w3.org/TR/2007/REC-xquery-semantics-20070123/","title":"XQuery 1.0 and XPath 2.0 Formal Semantics","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xquery-semantics-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xquery-semantics-20090421/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Denise Draper","Michael Dyck","Peter Fankhauser","Mary Fernandez","Ashok Malhotra","Kristoffer Rose","Michael Rys","Jerome Simeon","Philip Wadler"],"href":"https://www.w3.org/TR/2010/REC-xquery-semantics-20101214/","title":"XQuery 1.0 and XPath 2.0 Formal Semantics (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xquery-semantics-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-sx-10":{"authors":["John Snelson","Don Chamberlin","Daniel Engovatov","Dana Florescu","Giorgio Ghelli","Jim Melton","Jerome Simeon"],"etAl":true,"href":"https://www.w3.org/TR/xquery-sx-10/","title":"XQuery Scripting Extension 1.0","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20080328":{"status":"WD","rawDate":"2008-03-28","href":"https://www.w3.org/TR/2008/WD-xquery-sx-10-20080328/","source":"./data/w3c-specs.txt"},"20081203":{"status":"WD","rawDate":"2008-12-03","href":"https://www.w3.org/TR/2008/WD-xquery-sx-10-20081203/","source":"./data/w3c-specs.txt"},"20100408":{"authors":["John Snelson","Don Chamberlin","Daniel Engovatov","Dana Florescu","Giorgio Ghelli","Jim Melton","Jerome Simeon"],"href":"https://www.w3.org/TR/2010/WD-xquery-sx-10-20100408","title":"XQuery Scripting Extension 1.0","rawDate":"2010-04-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140918":{"authors":["John Snelson","Don Chamberlin","Daniel Engovatov","Dana Florescu","Giorgio Ghelli","Jim Melton","Jerome Simeon"],"href":"https://www.w3.org/TR/2014/NOTE-xquery-sx-10-20140918/","title":"XQuery Scripting Extension 1.0","rawDate":"2014-09-18","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2014-09-18","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-sx-10-requirements":{"authors":["Daniel Engovatov","Daniela Florescu","Giorgio Ghelli"],"etAl":true,"href":"https://www.w3.org/TR/xquery-sx-10-requirements/","title":"XQuery Scripting Extension 1.0 Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20070323":{"authors":["Daniel Engovatov","Daniela Florescu","Giorgio Ghelli"],"href":"https://www.w3.org/TR/2007/WD-xquery-sx-10-requirements-20070323","title":"XQuery Scripting Extension 1.0 Requirements","rawDate":"2007-03-23","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170620":{"authors":["Daniel Engovatov","Daniela Florescu","Giorgio Ghelli"],"href":"https://www.w3.org/TR/2017/NOTE-xquery-sx-10-requirements-20170620/","title":"XQuery Scripting Extension 1.0 Requirements","rawDate":"2017-06-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2017-06-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-sx-10-use-cases":{"authors":["John Snelson"],"href":"https://www.w3.org/TR/xquery-sx-10-use-cases/","title":"XQuery Scripting Extension 1.0 Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20080328":{"status":"WD","rawDate":"2008-03-28","href":"https://www.w3.org/TR/2008/WD-xquery-sx-10-use-cases-20080328/","source":"./data/w3c-specs.txt"},"20081203":{"authors":["John Snelson"],"href":"https://www.w3.org/TR/2008/WD-xquery-sx-10-use-cases-20081203/","title":"XQuery Scripting Extension 1.0 Use Cases","rawDate":"2008-12-03","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170620":{"authors":["John Snelson"],"href":"https://www.w3.org/TR/2017/NOTE-xquery-sx-10-use-cases-20170620/","title":"XQuery Scripting Extension 1.0 Use Cases","rawDate":"2017-06-20","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2017-06-20","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-update-10":{"authors":["Don Chamberlin","Jonathan Robie","Michael Dyck","Daniela Florescu","Jim Melton","Jerome Simeon"],"etAl":true,"href":"https://www.w3.org/TR/xquery-update-10/","title":"XQuery Update Facility 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2012/qt-errata/xquery-update-10-errata.html","versions":{"20060127":{"status":"WD","rawDate":"2006-01-27","href":"https://www.w3.org/TR/2006/WD-xqupdate-20060127/","source":"./data/w3c-specs.txt"},"20060508":{"status":"WD","rawDate":"2006-05-08","href":"https://www.w3.org/TR/2006/WD-xqupdate-20060508/","source":"./data/w3c-specs.txt"},"20060711":{"status":"WD","rawDate":"2006-07-11","href":"https://www.w3.org/TR/2006/WD-xqupdate-20060711/","source":"./data/w3c-specs.txt"},"20070828":{"status":"WD","rawDate":"2007-08-28","href":"https://www.w3.org/TR/2007/WD-xquery-update-10-20070828/","source":"./data/w3c-specs.txt"},"20080314":{"status":"CR","rawDate":"2008-03-14","href":"https://www.w3.org/TR/2008/CR-xquery-update-10-20080314/","source":"./data/w3c-specs.txt"},"20080801":{"status":"CR","rawDate":"2008-08-01","href":"https://www.w3.org/TR/2008/CR-xquery-update-10-20080801/","source":"./data/w3c-specs.txt"},"20090609":{"status":"CR","rawDate":"2009-06-09","href":"https://www.w3.org/TR/2009/CR-xquery-update-10-20090609/","source":"./data/w3c-specs.txt"},"20110125":{"status":"PR","rawDate":"2011-01-25","href":"https://www.w3.org/TR/2011/PR-xquery-update-10-20110125/","source":"./data/w3c-specs.txt"},"20110317":{"authors":["Don Chamberlin","Jonathan Robie","Michael Dyck","Daniela Florescu","Jim Melton","Jerome Simeon"],"href":"https://www.w3.org/TR/2011/REC-xquery-update-10-20110317/","title":"XQuery Update Facility 1.0","rawDate":"2011-03-17","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2012/qt-errata/xquery-update-10-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-03-17","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-update-10-requirements":{"authors":["Don Chamberlin","Jonathan Robie"],"href":"https://www.w3.org/TR/xquery-update-10-requirements/","title":"XQuery Update Facility 1.0 Requirements","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xquery-update-requirements-20050211/","source":"./data/w3c-specs.txt"},"20050603":{"status":"WD","rawDate":"2005-06-03","href":"https://www.w3.org/TR/2005/WD-xquery-update-requirements-20050603/","source":"./data/w3c-specs.txt"},"20070828":{"status":"WD","rawDate":"2007-08-28","href":"https://www.w3.org/TR/2007/WD-xquery-update-10-requirements-20070828/","source":"./data/w3c-specs.txt"},"20080314":{"status":"CR","rawDate":"2008-03-14","href":"https://www.w3.org/TR/2008/CR-xquery-update-10-requirements-20080314/","source":"./data/w3c-specs.txt"},"20110125":{"authors":["Don Chamberlin","Jonathan Robie"],"href":"https://www.w3.org/TR/2011/NOTE-xquery-update-10-requirements-20110125/","title":"XQuery Update Facility 1.0 Requirements","rawDate":"2011-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-update-10-use-cases":{"authors":["Ioana Manolescu","Jonathan Robie"],"href":"https://www.w3.org/TR/xquery-update-10-use-cases/","title":"XQuery Update Facility 1.0 Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20060127":{"status":"WD","rawDate":"2006-01-27","href":"https://www.w3.org/TR/2006/WD-xqupdateusecases-20060127/","source":"./data/w3c-specs.txt"},"20060508":{"status":"WD","rawDate":"2006-05-08","href":"https://www.w3.org/TR/2006/WD-xqupdateusecases-20060508/","source":"./data/w3c-specs.txt"},"20070828":{"status":"WD","rawDate":"2007-08-28","href":"https://www.w3.org/TR/2007/WD-xquery-update-10-use-cases-20070828/","source":"./data/w3c-specs.txt"},"20080314":{"status":"CR","rawDate":"2008-03-14","href":"https://www.w3.org/TR/2008/CR-xquery-update-10-use-cases-20080314/","source":"./data/w3c-specs.txt"},"20110125":{"authors":["Ioana Manolescu","Jonathan Robie"],"href":"https://www.w3.org/TR/2011/NOTE-xquery-update-10-use-cases-20110125/","title":"XQuery Update Facility 1.0 Use Cases","rawDate":"2011-01-25","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2011-01-25","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-update-30":{"authors":["John Snelson","Jim Melton"],"href":"https://www.w3.org/TR/xquery-update-30/","title":"XQuery Update Facility 3.0","rawDate":"2017-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xquery-update-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["John Snelson","Jim Melton"],"href":"https://www.w3.org/TR/2013/WD-xquery-update-30-20130108/","title":"XQuery Update Facility 3.0","rawDate":"2013-01-08","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150219":{"authors":["John Snelson","Jim Melton"],"href":"https://www.w3.org/TR/2015/WD-xquery-update-30-20150219/","title":"XQuery Update Facility 3.0","rawDate":"2015-02-19","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170124":{"authors":["John Snelson","Jim Melton"],"href":"https://www.w3.org/TR/2017/NOTE-xquery-update-30-20170124/","title":"XQuery Update Facility 3.0","rawDate":"2017-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xquery-update-30-requirements-use-cases":{"authors":["Andrew Coleman"],"href":"https://www.w3.org/TR/xquery-update-30-requirements-use-cases/","title":"XQuery Update Facility 3.0 Requirements and Use Cases","rawDate":"2017-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20120327":{"authors":["Andrew Coleman"],"href":"https://www.w3.org/TR/2012/WD-xquery-update-30-requirements-use-cases-20120327/","title":"XQuery Update Facility 3.0 Requirements and Use Cases","rawDate":"2012-03-27","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170124":{"authors":["Andrew Coleman"],"href":"https://www.w3.org/TR/2017/NOTE-xquery-update-30-requirements-use-cases-20170124/","title":"XQuery Update Facility 3.0 Requirements and Use Cases","rawDate":"2017-01-24","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xquery-update-requirements":{"aliasOf":"xquery-update-10-requirements"},"xquery-use-cases":{"authors":["Don Chamberlin","Peter Fankhauser","Daniela Florescu","Massimo Marchiori","Jonathan Robie"],"etAl":true,"href":"https://www.w3.org/TR/xquery-use-cases/","title":"XML Query Use Cases","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"versions":{"20010215":{"status":"WD","rawDate":"2001-02-15","href":"https://www.w3.org/TR/2001/WD-xmlquery-use-cases-20010215","source":"./data/w3c-specs.txt"},"20010608":{"status":"WD","rawDate":"2001-06-08","href":"https://www.w3.org/TR/2001/WD-xmlquery-use-cases-20010608","source":"./data/w3c-specs.txt"},"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-xmlquery-use-cases-20011220","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-xmlquery-use-cases-20020430","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-xmlquery-use-cases-20020816","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-xmlquery-use-cases-20021115/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xquery-use-cases-20030502/","source":"./data/w3c-specs.txt"},"20030822":{"status":"WD","rawDate":"2003-08-22","href":"https://www.w3.org/TR/2003/WD-xquery-use-cases-20030822/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xquery-use-cases-20031112/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xquery-use-cases-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xquery-use-cases-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xquery-use-cases-20050915/","source":"./data/w3c-specs.txt"},"20060608":{"status":"WD","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/WD-xquery-use-cases-20060608/","source":"./data/w3c-specs.txt"},"20070323":{"authors":["Don Chamberlin","Peter Fankhauser","Daniela Florescu","Massimo Marchiori","Jonathan Robie"],"href":"https://www.w3.org/TR/2007/NOTE-xquery-use-cases-20070323/","title":"XML Query Use Cases","rawDate":"2007-03-23","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2007-03-23","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xquery-xpath-parsing":{"authors":["Scott Boag"],"href":"https://www.w3.org/TR/xquery-xpath-parsing/","title":"Building a Tokenizer for XPath or XQuery","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"versions":{"20050404":{"authors":["Scott Boag"],"href":"https://www.w3.org/TR/2005/WD-xquery-xpath-parsing-20050404/","title":"Building a Tokenizer for XPath or XQuery","rawDate":"2005-04-04","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2005-04-04","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xqueryx":{"authors":["Jim Melton","Subramanian Muralidhar"],"href":"https://www.w3.org/TR/xqueryx/","title":"XML Syntax for XQuery 1.0 (XQueryX) (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xqueryx-errata2e.html","versions":{"20010607":{"status":"WD","rawDate":"2001-06-07","href":"https://www.w3.org/TR/2001/WD-xqueryx-20010607","source":"./data/w3c-specs.txt"},"20031219":{"status":"WD","rawDate":"2003-12-19","href":"https://www.w3.org/TR/2003/WD-xqueryx-20031219","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xqueryx-20050211","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xqueryx-20050404","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xqueryx-20050915","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xqueryx-20051103","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xqueryx-20060608","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xqueryx-20061121","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Jim Melton","Subramanian Muralidhar"],"href":"https://www.w3.org/TR/2007/REC-xqueryx-20070123/","title":"XML Syntax for XQuery 1.0 (XQueryX)","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xqueryx-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xqueryx-20090421","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Jim Melton","Subramanian Muralidhar"],"href":"https://www.w3.org/TR/2010/REC-xqueryx-20101214/","title":"XML Syntax for XQuery 1.0 (XQueryX) (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xqueryx-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xqueryx-11":{"aliasOf":"xqueryx-30"},"xqueryx-30":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/xqueryx-30/","title":"XQueryX 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20081203":{"status":"WD","rawDate":"2008-12-03","href":"https://www.w3.org/TR/2008/WD-xqueryx-11-20081203/","source":"./data/w3c-specs.txt"},"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xqueryx-11-20091215/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xqueryx-30-20101214/","source":"./data/w3c-specs.txt"},"20110614":{"status":"WD","rawDate":"2011-06-14","href":"https://www.w3.org/TR/2011/WD-xqueryx-30-20110614/","source":"./data/w3c-specs.txt"},"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xqueryx-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2013/CR-xqueryx-30-20130108/","title":"XQueryX 3.0","rawDate":"2013-01-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131001":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2013/WD-xqueryx-30-20131001/","title":"XQueryX 3.0","rawDate":"2013-10-01","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140130":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2014/PR-xqueryx-30-20140130/","title":"XQueryX 3.0","rawDate":"2014-01-30","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2014/REC-xqueryx-30-20140408/","title":"XQueryX 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xqueryx-31":{"authors":["Jim Melton","Josh Spiegel"],"href":"https://www.w3.org/TR/xqueryx-31/","title":"XQueryX 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2014/WD-xqueryx-31-20140424/","title":"XQueryX 3.1","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2014/WD-xqueryx-31-20141007/","title":"XQueryX 3.1","rawDate":"2014-10-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141218":{"authors":["Jim Melton"],"href":"https://www.w3.org/TR/2014/CR-xqueryx-31-20141218/","title":"XQueryX 3.1","rawDate":"2014-12-18","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Jim Melton","Josh Spiegel"],"href":"https://www.w3.org/TR/2016/CR-xqueryx-31-20161213/","title":"XQueryX 3.1","rawDate":"2016-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Jim Melton","Josh Spiegel"],"href":"https://www.w3.org/TR/2017/PR-xqueryx-31-20170117/","title":"XQueryX 3.1","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Jim Melton","Josh Spiegel"],"href":"https://www.w3.org/TR/2017/REC-xqueryx-31-20170321/","title":"XQueryX 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/"],"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xqueryx-31-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xqueryx-31-errata.html"},"xqupdate":{"aliasOf":"xquery-update-10"},"xqupdateusecases":{"aliasOf":"xquery-update-10-use-cases"},"xsd-precisionDecimal":{"authors":["David Peterson","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/xsd-precisionDecimal/","title":"An XSD datatype for IEEE floating-point decimal","rawDate":"2011-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110609":{"authors":["David Peterson","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2011/NOTE-xsd-precisionDecimal-20110609/","title":"An XSD datatype for IEEE floating-point decimal","rawDate":"2011-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xsd-unicode-blocknames":{"authors":["Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/xsd-unicode-blocknames/","title":"Unicode block names for use in XSD regular expressions","rawDate":"2011-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20110609":{"authors":["Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2011/NOTE-xsd-unicode-blocknames-20110609/","title":"Unicode block names for use in XSD regular expressions","rawDate":"2011-06-09","status":"NOTE","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Schema"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xsl":{"authors":["Sharon Adler","Anders Berglund","Jeffrey Caruso","Stephen Deach","Tony Graham","Paul Grosso","Eduardo Gutentag","Alex Miłowski","Scott Parnell","Jeremy Richman","Steve Zilles"],"etAl":true,"href":"https://www.w3.org/TR/xsl/","title":"Extensible Stylesheet Language (XSL) Version 1.0","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/2001/10/REC-XSL-20011015-errata","versions":{"19970910":{"status":"NOTE","rawDate":"1997-09-10","href":"https://www.w3.org/TR/NOTE-XSL-970910","source":"./data/w3c-specs.txt"},"19990421":{"status":"WD","rawDate":"1999-04-21","href":"https://www.w3.org/TR/1999/WD-xsl-19990421/","source":"./data/w3c-specs.txt"},"20000112":{"status":"WD","rawDate":"2000-01-12","href":"https://www.w3.org/TR/2000/WD-xsl-20000112/","source":"./data/w3c-specs.txt"},"20000301":{"status":"WD","rawDate":"2000-03-01","href":"https://www.w3.org/TR/2000/WD-xsl-20000301","source":"./data/w3c-specs.txt"},"20000327":{"status":"WD","rawDate":"2000-03-27","href":"https://www.w3.org/TR/2000/WD-xsl-20000327","source":"./data/w3c-specs.txt"},"20001018":{"status":"WD","rawDate":"2000-10-18","href":"https://www.w3.org/TR/2000/WD-xsl-20001018","source":"./data/w3c-specs.txt"},"20001121":{"status":"CR","rawDate":"2000-11-21","href":"https://www.w3.org/TR/2000/CR-xsl-20001121/","source":"./data/w3c-specs.txt"},"20010828":{"status":"PR","rawDate":"2001-08-28","href":"https://www.w3.org/TR/2001/PR-xsl-20010828/","source":"./data/w3c-specs.txt"},"20011015":{"authors":["Sharon Adler","Anders Berglund","Jeffrey Caruso","Stephen Deach","Tony Graham","Paul Grosso","Eduardo Gutentag","Alex Miłowski","Scott Parnell","Jeremy Richman","Steve Zilles"],"href":"https://www.w3.org/TR/2001/REC-xsl-20011015/","title":"Extensible Stylesheet Language (XSL) Version 1.0","rawDate":"2001-10-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/2001/10/REC-XSL-20011015-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2001-10-15","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xsl11":{"authors":["Anders Berglund"],"href":"https://www.w3.org/TR/xsl11/","title":"Extensible Stylesheet Language (XSL) Version 1.1","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/2006/12/xsl11-errata.html","versions":{"20031217":{"status":"WD","rawDate":"2003-12-17","href":"https://www.w3.org/TR/2003/WD-xsl11-20031217/","source":"./data/w3c-specs.txt"},"20041216":{"status":"WD","rawDate":"2004-12-16","href":"https://www.w3.org/TR/2004/WD-xsl11-20041216/","source":"./data/w3c-specs.txt"},"20050728":{"status":"WD","rawDate":"2005-07-28","href":"https://www.w3.org/TR/2005/WD-xsl11-20050728/","source":"./data/w3c-specs.txt"},"20060220":{"status":"CR","rawDate":"2006-02-20","href":"https://www.w3.org/TR/2006/CR-xsl11-20060220/","source":"./data/w3c-specs.txt"},"20061006":{"status":"PR","rawDate":"2006-10-06","href":"https://www.w3.org/TR/2006/PR-xsl11-20061006/","source":"./data/w3c-specs.txt"},"20061205":{"authors":["Anders Berglund"],"href":"https://www.w3.org/TR/2006/REC-xsl11-20061205/","title":"Extensible Stylesheet Language (XSL) Version 1.1","rawDate":"2006-12-05","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/2006/12/xsl11-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2006-12-05","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xsl11-req":{"authors":["Paul Grosso"],"href":"https://www.w3.org/TR/xsl11-req/","title":"Extensible Stylesheet Language (XSL) Version 1.1 Requirements","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"versions":{"20031217":{"authors":["Paul Grosso"],"href":"https://www.w3.org/TR/2003/WD-xsl11-req-20031217/","title":"Extensible Stylesheet Language (XSL) Version 1.1 Requirements","rawDate":"2003-12-17","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2003-12-17","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xslfo20":{"authors":["Dave Pawson"],"href":"https://www.w3.org/TR/xslfo20/","title":"Extensible Stylesheet Language (XSL) Version 2.0","rawDate":"2012-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/XPPL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20090929":{"status":"WD","rawDate":"2009-09-29","href":"https://www.w3.org/TR/2009/WD-xslfo20-20090929/","source":"./data/w3c-specs.txt"},"20100204":{"status":"WD","rawDate":"2010-02-04","href":"https://www.w3.org/TR/2010/WD-xslfo20-20100204/","source":"./data/w3c-specs.txt"},"20101216":{"status":"WD","rawDate":"2010-12-16","href":"https://www.w3.org/TR/2010/WD-xslfo20-20101216/","source":"./data/w3c-specs.txt"},"20110927":{"status":"WD","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/WD-xslfo20-20110927/","source":"./data/w3c-specs.txt"},"20120117":{"authors":["Dave Pawson"],"href":"https://www.w3.org/TR/2012/WD-xslfo20-20120117/","title":"Extensible Stylesheet Language (XSL) Version 2.0","rawDate":"2012-01-17","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/XPPL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xslfo20-req":{"authors":["Klaas Bals"],"href":"https://www.w3.org/TR/xslfo20-req/","title":"Extensible Stylesheet Language (XSL) Requirements Version 2.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"versions":{"20080326":{"authors":["Klaas Bals"],"href":"https://www.w3.org/TR/2008/WD-xslfo20-req-20080326/","title":"Extensible Stylesheet Language (XSL) Requirements Version 2.0","rawDate":"2008-03-26","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2008-03-26","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xslt":{"aliasOf":"xslt-10"},"xslt-10":{"authors":["James Clark"],"href":"https://www.w3.org/TR/xslt-10/","title":"XSL Transformations (XSLT) Version 1.0","rawDate":"1999-11-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/1999/11/REC-xslt-19991116-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"19990709":{"status":"WD","rawDate":"1999-07-09","href":"https://www.w3.org/1999/07/WD-xslt-19990709","source":"./data/w3c-specs.txt"},"19990813":{"status":"WD","rawDate":"1999-08-13","href":"https://www.w3.org/1999/08/WD-xslt-19990813","source":"./data/w3c-specs.txt"},"19991008":{"status":"PR","rawDate":"1999-10-08","href":"https://www.w3.org/TR/1999/PR-xslt-19991008","source":"./data/w3c-specs.txt"},"19991116":{"authors":["James Clark"],"href":"https://www.w3.org/TR/1999/REC-xslt-19991116","title":"XSL Transformations (XSLT) Version 1.0","rawDate":"1999-11-16","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/1999/11/REC-xslt-19991116-errata","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xslt-21":{"aliasOf":"xslt-30"},"xslt-21-requirements":{"authors":["Petr Cimprich"],"href":"https://www.w3.org/TR/xslt-21-requirements/","title":"Requirements and Use Cases for XSLT 2.1","rawDate":"2010-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100610":{"authors":["Petr Cimprich"],"href":"https://www.w3.org/TR/2010/WD-xslt-21-requirements-20100610/","title":"Requirements and Use Cases for XSLT 2.1","rawDate":"2010-06-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xslt-30":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/xslt-30/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2017-06-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20100511":{"status":"WD","rawDate":"2010-05-11","href":"https://www.w3.org/TR/2010/WD-xslt-21-20100511/","source":"./data/w3c-specs.txt"},"20120710":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2012/WD-xslt-30-20120710/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2012-07-10","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131212":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2013/WD-xslt-30-20131212/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2013-12-12","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141002":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2014/WD-xslt-30-20141002/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2014-10-02","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151119":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2015/CR-xslt-30-20151119/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2015-11-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170207":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2017/CR-xslt-30-20170207/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2017-02-07","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170418":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2017/PR-xslt-30-20170418/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2017-04-18","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170608":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2017/REC-xslt-30-20170608/","title":"XSL Transformations (XSLT) Version 3.0","rawDate":"2017-06-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xslt-xquery-serialization":{"authors":["Scott Boag","Michael Kay","Joanne Tong","Norman Walsh","Henry Zongaro"],"etAl":true,"href":"https://www.w3.org/TR/xslt-xquery-serialization/","title":"XSLT 2.0 and XQuery 1.0 Serialization (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xslt-xquery-serialization-errata2e.html","versions":{"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xslt-xquery-serialization-20030502/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xslt-xquery-serialization-20031112/","source":"./data/w3c-specs.txt"},"20040723":{"status":"WD","rawDate":"2004-07-23","href":"https://www.w3.org/TR/2004/WD-xslt-xquery-serialization-20040723/","source":"./data/w3c-specs.txt"},"20041029":{"status":"WD","rawDate":"2004-10-29","href":"https://www.w3.org/TR/2004/WD-xslt-xquery-serialization-20041029/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xslt-xquery-serialization-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xslt-xquery-serialization-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xslt-xquery-serialization-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xslt-xquery-serialization-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xslt-xquery-serialization-20060608/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xslt-xquery-serialization-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Scott Boag","Michael Kay","Joanne Tong","Norman Walsh","Henry Zongaro"],"href":"https://www.w3.org/TR/2007/REC-xslt-xquery-serialization-20070123/","title":"XSLT 2.0 and XQuery 1.0 Serialization","rawDate":"2007-01-23","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xslt-xquery-serialization-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"REC"},"20090421":{"status":"PER","rawDate":"2009-04-21","href":"https://www.w3.org/TR/2009/PER-xslt-xquery-serialization-20090421/","source":"./data/w3c-specs.txt"},"20101214":{"authors":["Scott Boag","Michael Kay","Joanne Tong","Norman Walsh","Henry Zongaro"],"href":"https://www.w3.org/TR/2010/REC-xslt-xquery-serialization-20101214/","title":"XSLT 2.0 and XQuery 1.0 Serialization (Second Edition)","rawDate":"2010-12-14","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2010/qt-errata/xslt-xquery-serialization-errata2e.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2010-12-14","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xslt-xquery-serialization-11":{"aliasOf":"xslt-xquery-serialization-30"},"xslt-xquery-serialization-30":{"authors":["Henry Zongaro","Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/xslt-xquery-serialization-30/","title":"XSLT and XQuery Serialization 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20091215":{"status":"WD","rawDate":"2009-12-15","href":"https://www.w3.org/TR/2009/WD-xslt-xquery-serialization-11-20091215/","source":"./data/w3c-specs.txt"},"20101214":{"status":"WD","rawDate":"2010-12-14","href":"https://www.w3.org/TR/2010/WD-xslt-xquery-serialization-30-20101214/","source":"./data/w3c-specs.txt"},"20110614":{"status":"WD","rawDate":"2011-06-14","href":"https://www.w3.org/TR/2011/WD-xslt-xquery-serialization-30-20110614/","source":"./data/w3c-specs.txt"},"20111213":{"status":"WD","rawDate":"2011-12-13","href":"https://www.w3.org/TR/2011/WD-xslt-xquery-serialization-30-20111213/","source":"./data/w3c-specs.txt"},"20130108":{"status":"WD","rawDate":"2013-01-08","href":"https://www.w3.org/TR/2013/WD-xslt-xquery-serialization-30-20130108/","source":"./data/w3c-specs.txt"},"20130328":{"authors":["Henry Zongaro"],"href":"https://www.w3.org/TR/2013/CR-xslt-xquery-serialization-30-20130328/","title":"XSLT and XQuery Serialization 3.0","rawDate":"2013-03-28","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20131022":{"authors":["Henry Zongaro","Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2013/PR-xslt-xquery-serialization-30-20131022/","title":"XSLT and XQuery Serialization 3.0","rawDate":"2013-10-22","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20140408":{"authors":["Henry Zongaro","Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2014/REC-xslt-xquery-serialization-30-20140408/","title":"XSLT and XQuery Serialization 3.0","rawDate":"2014-04-08","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}}},"xslt-xquery-serialization-31":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/xslt-xquery-serialization-31/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","versions":{"20140424":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2014/WD-xslt-xquery-serialization-31-20140424/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2014-04-24","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20141007":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2014/WD-xslt-xquery-serialization-31-20141007/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2014-10-07","status":"LCWD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150219":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2015/CR-xslt-xquery-serialization-31-20150219/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2015-02-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20151217":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2015/CR-xslt-xquery-serialization-31-20151217/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2015-12-17","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/","https://www.w3.org/XML/Query/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161213":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2016/CR-xslt-xquery-serialization-31-20161213/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2016-12-13","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170117":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2017/PR-xslt-xquery-serialization-31-20170117/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2017-01-17","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20170321":{"authors":["Andrew Coleman","Michael Sperberg-McQueen"],"href":"https://www.w3.org/TR/2017/REC-xslt-xquery-serialization-31-20170321/","title":"XSLT and XQuery Serialization 3.1","rawDate":"2017-03-21","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/XML/Query/","https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xslt-xquery-serialization-31-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"hasErrata":"https://www.w3.org/XML/2017/qt-errata/xslt-xquery-serialization-31-errata.html"},"xslt11":{"authors":["James Clark"],"href":"https://www.w3.org/TR/xslt11/","title":"XSL Transformations (XSLT) Version 1.1","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"versions":{"20010824":{"authors":["James Clark"],"href":"https://www.w3.org/TR/2001/WD-xslt11-20010824/","title":"XSL Transformations (XSLT) Version 1.1","rawDate":"2001-08-24","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-08-24","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xslt11req":{"authors":["Steve Muench"],"href":"https://www.w3.org/TR/xslt11req/","title":"XSL Transformations Requirements Version 1.1","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"versions":{"20000825":{"authors":["Steve Muench"],"href":"https://www.w3.org/TR/2000/WD-xslt11req-20000825","title":"XSL Transformations Requirements Version 1.1","rawDate":"2000-08-25","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2000-08-25","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xslt20":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/xslt20/","title":"XSL Transformations (XSLT) Version 2.0 (Second Edition)","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"versions":{"20011220":{"status":"WD","rawDate":"2001-12-20","href":"https://www.w3.org/TR/2001/WD-xslt20-20011220/","source":"./data/w3c-specs.txt"},"20020430":{"status":"WD","rawDate":"2002-04-30","href":"https://www.w3.org/TR/2002/WD-xslt20-20020430/","source":"./data/w3c-specs.txt"},"20020816":{"status":"WD","rawDate":"2002-08-16","href":"https://www.w3.org/TR/2002/WD-xslt20-20020816/","source":"./data/w3c-specs.txt"},"20021115":{"status":"WD","rawDate":"2002-11-15","href":"https://www.w3.org/TR/2002/WD-xslt20-20021115/","source":"./data/w3c-specs.txt"},"20030502":{"status":"WD","rawDate":"2003-05-02","href":"https://www.w3.org/TR/2003/WD-xslt20-20030502/","source":"./data/w3c-specs.txt"},"20031112":{"status":"WD","rawDate":"2003-11-12","href":"https://www.w3.org/TR/2003/WD-xslt20-20031112/","source":"./data/w3c-specs.txt"},"20041105":{"status":"WD","rawDate":"2004-11-05","href":"https://www.w3.org/TR/2004/WD-xslt20-20041105/","source":"./data/w3c-specs.txt"},"20050211":{"status":"WD","rawDate":"2005-02-11","href":"https://www.w3.org/TR/2005/WD-xslt20-20050211/","source":"./data/w3c-specs.txt"},"20050404":{"status":"WD","rawDate":"2005-04-04","href":"https://www.w3.org/TR/2005/WD-xslt20-20050404/","source":"./data/w3c-specs.txt"},"20050915":{"status":"WD","rawDate":"2005-09-15","href":"https://www.w3.org/TR/2005/WD-xslt20-20050915/","source":"./data/w3c-specs.txt"},"20051103":{"status":"CR","rawDate":"2005-11-03","href":"https://www.w3.org/TR/2005/CR-xslt20-20051103/","source":"./data/w3c-specs.txt"},"20060608":{"status":"CR","rawDate":"2006-06-08","href":"https://www.w3.org/TR/2006/CR-xslt20-20060608/","source":"./data/w3c-specs.txt"},"20061121":{"status":"PR","rawDate":"2006-11-21","href":"https://www.w3.org/TR/2006/PR-xslt20-20061121/","source":"./data/w3c-specs.txt"},"20070123":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2007/REC-xslt20-20070123/","title":"XSL Transformations (XSLT) Version 2.0","rawDate":"2007-01-23","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"hasErrata":"https://www.w3.org/XML/2007/qt-errata/xslt-errata.html","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20090421":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2009/PER-xslt20-20090421/","title":"XSL Transformations (XSLT) Version 2.0 (Second Edition)","rawDate":"2009-04-21","status":"PER","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210330":{"authors":["Michael Kay"],"href":"https://www.w3.org/TR/2021/REC-xslt20-20210330/","title":"XSL Transformations (XSLT) Version 2.0 (Second Edition)","rawDate":"2021-03-30","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"rawDate":"2021-03-30","source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","hasErrata":"https://www.w3.org/XML/2007/qt-errata/xslt-errata.html"},"xslt20req":{"authors":["Steve Muench","Mark Scardina"],"href":"https://www.w3.org/TR/xslt20req/","title":"XSLT Requirements Version 2.0","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/Style/XSL/"],"versions":{"20010214":{"authors":["Steve Muench","Mark Scardina"],"href":"https://www.w3.org/TR/2001/WD-xslt20req-20010214","title":"XSLT Requirements Version 2.0","rawDate":"2001-02-14","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/Style/XSL/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf","status":"WD"}},"rawDate":"2001-02-14","isRetired":true,"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"xtnd":{"versions":{"20001121":{"status":"NOTE","rawDate":"2000-11-21","href":"https://www.w3.org/TR/2000/NOTE-xtnd-20001121","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xtnd","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2000-11-21","title":"XTND - XML Transition Network Definition"},"xup":{"versions":{"20020528":{"status":"NOTE","rawDate":"2002-05-28","href":"https://www.w3.org/TR/2002/NOTE-xup-20020528","source":"./data/w3c-specs.txt"}},"href":"https://www.w3.org/TR/xup/","publisher":"W3C","source":"./data/w3c-specs.txt","status":"NOTE","rawDate":"2002-05-28","title":"XUP - Extensible User Interface Protocol"},"BOOKS":{"authors":["Håkon Wium Lie"],"href":"https://books.idea.whatwg.org/","title":"CSS Books","status":"Living Idea","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json"},"COMPAT":{"authors":["Mike Taylor"],"href":"https://compat.spec.whatwg.org/","title":"Compatibility Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/compat"},"CONSOLE":{"authors":["Dominic Farolino","Robert Kowalski","Terin Stock"],"href":"https://console.spec.whatwg.org/","title":"Console Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/console"},"DIFFERENCES":{"authors":["Simon Pieters"],"href":"https://html-differences.whatwg.org/","title":"Differences from HTML4","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json"},"DOM":{"authors":["Anne van Kesteren"],"href":"https://dom.spec.whatwg.org/","title":"DOM Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/dom"},"DOMPARSING":{"authors":["Ms2ger"],"href":"https://domparsing.spec.whatwg.org/","title":"DOM Parsing and Serialization Standard","obsoletedBy":["DOM-Parsing"],"status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/domparsing"},"ENCODING":{"authors":["Anne van Kesteren"],"href":"https://encoding.spec.whatwg.org/","title":"Encoding Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/encoding"},"FETCH":{"authors":["Anne van Kesteren"],"href":"https://fetch.spec.whatwg.org/","title":"Fetch Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/fetch"},"FIGURES":{"authors":["Håkon Wium Lie"],"href":"https://figures.idea.whatwg.org/","title":"CSS Figures","status":"Living Idea","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json"},"FS":{"authors":["Austin Sullivan"],"href":"https://fs.spec.whatwg.org/","title":"File System Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/fs"},"FULLSCREEN":{"authors":["Philip Jägenstedt"],"href":"https://fullscreen.spec.whatwg.org/","title":"Fullscreen API Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/fullscreen"},"HTML":{"authors":["Anne van Kesteren","Domenic Denicola","Ian Hickson","Philip Jägenstedt","Simon Pieters"],"href":"https://html.spec.whatwg.org/multipage/","title":"HTML Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/html"},"INFRA":{"authors":["Anne van Kesteren","Domenic Denicola"],"href":"https://infra.spec.whatwg.org/","title":"Infra Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/infra"},"JAVASCRIPT":{"authors":["Mathias Bynens"],"href":"https://javascript.spec.whatwg.org/","title":"JavaScript, a.k.a. Web ECMAScript","obsoletedBy":["ECMASCRIPT"],"status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/javascript"},"LOADER":{"href":"https://whatwg.github.io/loader/","title":"Loader","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/loader"},"MIMESNIFF":{"authors":["Gordon P. Hemsley"],"href":"https://mimesniff.spec.whatwg.org/","title":"MIME Sniffing Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/mimesniff"},"NOTIFICATIONS":{"authors":["Anne van Kesteren"],"href":"https://notifications.spec.whatwg.org/","title":"Notifications API Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/notifications"},"QUIRKS":{"authors":["Simon Pieters"],"href":"https://quirks.spec.whatwg.org/","title":"Quirks Mode Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/quirks"},"SNIFF":{"aliasOf":"WHATWG-MIMESNIFF"},"STORAGE":{"authors":["Anne van Kesteren"],"href":"https://storage.spec.whatwg.org/","title":"Storage Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/storage"},"STREAMS":{"authors":["Adam Rice","Domenic Denicola","Mattias Buelens","吉野剛史 (Takeshi Yoshino)"],"href":"https://streams.spec.whatwg.org/","title":"Streams Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/streams"},"TESTUTILS":{"authors":["James Graham"],"href":"https://testutils.spec.whatwg.org/","title":"Test Utils Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/testutils"},"URL":{"authors":["Anne van Kesteren"],"href":"https://url.spec.whatwg.org/","title":"URL Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/url"},"URLPATTERN":{"authors":["Ben Kelly","Jeremy Roman","宍戸俊哉 (Shunya Shishido)"],"href":"https://urlpattern.spec.whatwg.org/","title":"URL Pattern Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/urlpattern"},"WEBIDL":{"authors":["Edgar Chen","Timothy Gu"],"href":"https://webidl.spec.whatwg.org/","title":"Web IDL Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","versions":{"20071017":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2007-10-17","href":"https://www.w3.org/TR/2007/WD-DOM-Bindings-20071017/","source":"./data/w3c-specs.txt"},"20080410":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2008-04-10","href":"https://www.w3.org/TR/2008/WD-DOM-Bindings-20080410/","source":"./data/w3c-specs.txt"},"20080829":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2008-08-29","href":"https://www.w3.org/TR/2008/WD-WebIDL-20080829/","source":"./data/w3c-specs.txt"},"20081219":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2008-12-19","href":"https://www.w3.org/TR/2008/WD-WebIDL-20081219/","source":"./data/w3c-specs.txt"},"20101021":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2010-10-21","href":"https://www.w3.org/TR/2010/WD-WebIDL-20101021/","source":"./data/w3c-specs.txt"},"20110712":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2011-07-12","href":"https://www.w3.org/TR/2011/WD-WebIDL-20110712/","source":"./data/w3c-specs.txt"},"20110927":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2011-09-27","href":"https://www.w3.org/TR/2011/WD-WebIDL-20110927/","source":"./data/w3c-specs.txt"},"20120207":{"authors":["Cameron McCormack"],"status":"WD","rawDate":"2012-02-07","href":"https://www.w3.org/TR/2012/WD-WebIDL-20120207/","source":"./data/w3c-specs.txt"},"20120419":{"authors":["Cameron McCormack"],"href":"https://www.w3.org/TR/2012/CR-WebIDL-20120419/","title":"Web IDL","rawDate":"2012-04-19","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20150804":{"authors":["Cameron McCormack","Boris Zbarsky"],"href":"https://www.w3.org/TR/2015/WD-WebIDL-1-20150804/","title":"WebIDL Level 1","rawDate":"2015-08-04","status":"WD","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160308":{"authors":["Cameron McCormack","Boris Zbarsky"],"href":"https://www.w3.org/TR/2016/CR-WebIDL-1-20160308/","title":"WebIDL Level 1","rawDate":"2016-03-08","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20160915":{"authors":["Cameron McCormack","Boris Zbarsky"],"href":"https://www.w3.org/TR/2016/PR-WebIDL-1-20160915/","title":"WebIDL Level 1","rawDate":"2016-09-15","status":"PR","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20161215":{"authors":["Cameron McCormack"],"href":"https://www.w3.org/TR/2016/REC-WebIDL-1-20161215/","title":"WebIDL Level 1","rawDate":"2016-12-15","status":"REC","publisher":"W3C","deliveredBy":["https://www.w3.org/WebPlatform/WG/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/whatwg/webidl"},"WEBSOCKETS":{"authors":["Adam Rice"],"href":"https://websockets.spec.whatwg.org/","title":"WebSockets Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","versions":{"20090423":{"authors":["Ian Hickson"],"status":"WD","rawDate":"2009-04-23","href":"https://www.w3.org/TR/2009/WD-websockets-20090423/","source":"./data/w3c-specs.txt"},"20091029":{"authors":["Ian Hickson"],"status":"WD","rawDate":"2009-10-29","href":"https://www.w3.org/TR/2009/WD-websockets-20091029/","source":"./data/w3c-specs.txt"},"20091222":{"authors":["Ian Hickson"],"status":"WD","rawDate":"2009-12-22","href":"https://www.w3.org/TR/2009/WD-websockets-20091222/","source":"./data/w3c-specs.txt"},"20110419":{"authors":["Ian Hickson"],"status":"WD","rawDate":"2011-04-19","href":"https://www.w3.org/TR/2011/WD-websockets-20110419/","source":"./data/w3c-specs.txt"},"20110929":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2011/WD-websockets-20110929/","title":"The WebSocket API","rawDate":"2011-09-29","status":"WD","publisher":"W3C"},"20111208":{"authors":["Ian Hickson"],"status":"CR","rawDate":"2011-12-08","href":"https://www.w3.org/TR/2011/CR-websockets-20111208/","source":"./data/w3c-specs.txt"},"20120524":{"authors":["Ian Hickson"],"status":"WD","rawDate":"2012-05-24","href":"https://www.w3.org/TR/2012/WD-websockets-20120524/","source":"./data/w3c-specs.txt"},"20120809":{"authors":["Ian Hickson"],"status":"WD","rawDate":"2012-08-09","href":"https://www.w3.org/TR/2012/WD-websockets-20120809/","source":"./data/w3c-specs.txt"},"20120920":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2012/CR-websockets-20120920/","title":"The WebSocket API","rawDate":"2012-09-20","status":"CR","publisher":"W3C","deliveredBy":["https://www.w3.org/2008/webapps/"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"},"20210128":{"authors":["Ian Hickson"],"href":"https://www.w3.org/TR/2021/NOTE-websockets-20210128/","title":"The WebSocket API","rawDate":"2021-01-28","status":"NOTE","publisher":"W3C","isRetired":true,"deliveredBy":["https://www.w3.org/groups/wg/htmlwg"],"source":"https://www.w3.org/2002/01/tr-automation/tr.rdf"}},"repository":"https://github.com/whatwg/websockets"},"WHATWG-BOOKS":{"aliasOf":"BOOKS"},"WHATWG-COMPAT":{"aliasOf":"COMPAT"},"WHATWG-CONSOLE":{"aliasOf":"CONSOLE"},"WHATWG-DIFFERENCES":{"aliasOf":"DIFFERENCES"},"WHATWG-DOM":{"aliasOf":"DOM"},"WHATWG-DOMPARSING":{"aliasOf":"DOMPARSING"},"WHATWG-ENCODING":{"aliasOf":"ENCODING"},"WHATWG-FETCH":{"aliasOf":"FETCH"},"WHATWG-FIGURES":{"aliasOf":"FIGURES"},"WHATWG-FS":{"aliasOf":"FS"},"WHATWG-FULLSCREEN":{"aliasOf":"FULLSCREEN"},"WHATWG-HTML":{"aliasOf":"HTML"},"WHATWG-INFRA":{"aliasOf":"INFRA"},"WHATWG-JAVASCRIPT":{"aliasOf":"JAVASCRIPT"},"WHATWG-LOADER":{"aliasOf":"LOADER"},"WHATWG-MEDIASESSION":{"aliasOf":"MEDIASESSION"},"WHATWG-MIMESNIFF":{"aliasOf":"MIMESNIFF"},"WHATWG-NOTIFICATIONS":{"aliasOf":"NOTIFICATIONS"},"WHATWG-QUIRKS":{"aliasOf":"QUIRKS"},"WHATWG-STORAGE":{"aliasOf":"STORAGE"},"WHATWG-STREAMS":{"aliasOf":"STREAMS"},"WHATWG-TESTUTILS":{"aliasOf":"TESTUTILS"},"WHATWG-URL":{"aliasOf":"URL"},"WHATWG-URLPATTERN":{"aliasOf":"URLPATTERN"},"WHATWG-WEBIDL":{"aliasOf":"WEBIDL"},"WHATWG-WEBSOCKETS":{"aliasOf":"WEBSOCKETS"},"WHATWG-XHR":{"aliasOf":"XHR"},"XHR":{"authors":["Anne van Kesteren"],"href":"https://xhr.spec.whatwg.org/","title":"XMLHttpRequest Standard","status":"Living Standard","publisher":"WHATWG","source":"https://resources.whatwg.org/biblio.json","repository":"https://github.com/whatwg/xhr"},"meta-theme-color":{"href":"https://github.com/whatwg/meta-theme-color","publisher":"WHATWG","status":"Living Standard","title":"The 'theme-color' meta extension","obsoletedBy":["HTML"]}} \ No newline at end of file diff --git a/assets/css/chart.css b/assets/css/chart.css new file mode 100644 index 0000000..5e74959 --- /dev/null +++ b/assets/css/chart.css @@ -0,0 +1,47 @@ +/* + * DOM element rendering detection + * https://davidwalsh.name/detect-node-insertion + */ +@keyframes chartjs-render-animation { + from { opacity: 0.99; } + to { opacity: 1; } +} + +.chartjs-render-monitor { + animation: chartjs-render-animation 0.001s; +} + +/* + * DOM element resizing detection + * https://github.com/marcj/css-element-queries + */ +.chartjs-size-monitor, +.chartjs-size-monitor-expand, +.chartjs-size-monitor-shrink { + position: absolute; + direction: ltr; + left: 0; + top: 0; + right: 0; + bottom: 0; + overflow: hidden; + pointer-events: none; + visibility: hidden; + z-index: -1; +} + +.chartjs-size-monitor-expand > div { + position: absolute; + width: 1000000px; + height: 1000000px; + left: 0; + top: 0; +} + +.chartjs-size-monitor-shrink > div { + position: absolute; + width: 200%; + height: 200%; + left: 0; + top: 0; +} diff --git a/assets/css/custom-elements.css b/assets/css/custom-elements.css new file mode 100644 index 0000000..2d1fd71 --- /dev/null +++ b/assets/css/custom-elements.css @@ -0,0 +1,143 @@ + +slide-panels { + position: fixed; + top: 0; + left: 0; + height: 100%; + width: 100%; + pointer-events: none; + z-index: 100; + contain: paint; +} + +slide-panels:before { + content: " "; + display: block; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0,0,0,0.3); + transition: opacity 0.35s ease; + opacity: 0; + cursor: pointer; + pointer-events: none; +} + +slide-panels[open]:before { + opacity: 1; + pointer-events: all; +} + +slide-panel { + display: flex; + flex-direction: column; + box-sizing: border-box; + position: absolute; + top: 0; + left: 0; + bottom: 0; + background: #fff; + box-shadow: 0 0 5px 1px rgba(0,0,0,0.15); + transform: translate3d(-100%, 0%, 0); + transition: transform 0.35s ease; + z-index: 1; + pointer-events: all; +} + +slide-panel[options~="right"] { + left: auto; + right: 0; + transform: translate3d(100%, 0%, 0); +} + +slide-panel[open] { + transform: translate3d(0%, 0%, 0); +} + +detail-box { + display: block; +} + +detail-box > header [detail-box-toggle] { + width: 2em; + height: 2em; + text-align: center; + cursor: pointer; +} + +detail-box > header [detail-box-toggle]:before { + content: " "; + display: inline-block; + width: 0; + height: 0; + border-left: 0.55em solid transparent; + border-right: 0.55em solid transparent; + border-top: 0.8em solid; + vertical-align: sub; + cursor: pointer; +} + +detail-box[open] header [detail-box-toggle]:before { + border-top: none; + border-bottom: 0.8em solid; +} + +detail-box > section { + height: 0; + opacity: 0; + min-width: 100%; + transition: height 0.3s ease, opacity 0.3s; + overflow: hidden; +} + +detail-box[open] > section { + opacity: 1; +} + + +/* TAB-PANELS */ + +tab-panels > nav { + display: flex; +} + +tab-panels > nav > * { + margin-left: -2px; + padding: 0.5em 1em; + background: #e0e0e0; + border: 1px solid #aaa; + border-radius: 0; + cursor: pointer; +} + +tab-panels > nav > *:focus { + outline: none; + background: #ccc; +} + +tab-panels > nav > *:first-child { + border-top-left-radius: 5px; + border-bottom-left-radius: 5px; +} + +tab-panels > nav > *:last-child { + border-top-right-radius: 5px; + border-bottom-right-radius: 5px; +} + +tab-panels > nav > *[selected] { + color: var(--themed-element-text); + background: var(--themed-element-bk); + border: var(--themed-element-border); + opacity: 0.9999; +} + +tab-panels > section { + display: none; +} + +tab-panels > section[selected] { + display: block; +} \ No newline at end of file diff --git a/assets/css/index.css b/assets/css/index.css new file mode 100644 index 0000000..a1973fd --- /dev/null +++ b/assets/css/index.css @@ -0,0 +1,912 @@ + +:root { + + --base-theme-color: 207, 71%; + --themed-element-bk: hsl(var(--base-theme-color), 40%); + --themed-element-text: #fff; + --themed-element-border: 1px solid hsl(var(--base-theme-color), 26%); + --themed-heading-text: hsl(var(--base-theme-color), 30%); + + --no-color: 255,255,255; + --faint-color: 245,245,245; + --dim-color: 225,225,225; + --low-color: 200,200,200; + --mid-color: 100,100,100; + --high-color: 50,50,50; + --full-color: 0,0,0; + --active-color: #3aaaff; + --visited-color: rgb(188, 129, 255); + --green-status: rgb(0, 123, 9); + --light-green-status: rgb(0, 194, 13); + + + --page-bk: rgb(var(--no-color)); + --page-text: rgb(var(--full-color)); + --page-text-hover: rgb(var(--full-color)); + + --element-bk: rgb(var(--no-color)); + --element-bk-hover: rgba(var(--low-color), 0.5); + --element-bk-transparent: rgba(var(--dim-color), 0.92); + --element-border: rgba(var(--high-color), 0.4); + --element-border-focus: rgb(var(--full-color), 0.75); + --element-border-radius: 3px; + --element-shadow-low: 0 1px 3px 0px rgba(0,0,0, 0.25); + --element-shadow-mid: 0 1px 3px 0px rgba(0,0,0, 0.35); + --element-shadow-high: 0 1px 5px 0px rgba(0,0,0, 0.45); + + --code-bk: #1a1e23; + + --input-bk: rgba(var(--dim-color), 0.6); + --input-border: rgba(var(--high-color), 0.4); + + /* --header-height: 3.5em; */ + --header-height: 48px; + --header-bk: rgba(var(--low-color), 0.985); + --header-text: rgb(var(--full-color)); + --header-border: rgba(var(--full-color), 0.1); + --header-border-inverse: rgba(var(--no-color), 0.3); + + --text-shadow: 0 1px 2px rgba(0,0,0,0.8); + + --svg-size: 2vw; + + --font-size: 14px; +} + +*:target { + scroll-margin: calc(var(--header-height) / 0.75) 0 0; +} + +body:not([hashscroll]) *:target { + animation: highlight 1.5s 0.25s ease; +} + +body { + margin: 0; + padding: 0; + font-family: Heebo, san-serif; + line-height: 1.5em; + widows: 2; + orphans: 2; + word-wrap: break-word; + overflow-wrap: break-word; + color: black; + word-spacing: 1px; + counter-reset: h2 toc1; +} + +h1 { + font-size: 2em; + font-weight: bold; + line-height: 1.2em; +} + +h2 { + margin: 1.5em 0 1em; +} + +blockquote { + position: relative; + padding: 0; + margin: 1.75em 0.75em; + color: rgb(var(--mid-color)); + background: rgb(var(--faint-color)); +} + +blockquote:before, blockquote:after { + content: "“"; + position: absolute; + top: 0.065em; + left: 0.065em; + font-size: 3em; + height: 0.34em; + line-height: 100%; + color: rgb(var(--low-color)); +} + +blockquote:after { + content: "”"; + top: auto; + left: auto; + bottom: 0.065em; + right: 0.065em; + text-align: center; +} + +blockquote > p { + padding: 0.6em 1.8em 0.5em 1.8em; +} + +strong strong { + font-size: 0.9em; + color: #b30032; + font-weight: normal; + text-transform: uppercase; +} + +main article > ol, +main article > ul { + padding: 0 0 0 2em; +} + +main article h1, +main article h2, +main article h3, +main article h4, +main article h5, +main article h6 { + color: var(--themed-heading-text); +} + +main article h2, +main article h3, +main article h4 { + display: flex; + font-weight: 500; +} + +main article h2 { + counter-reset: h3 h4; +} + +main article h3 { + counter-reset: h4; +} + +main article h2:after { + counter-increment: h2; + content: counter(h2) "."; + padding: 0 0.4em 0 0.2em; + order: -1; +} + +main article h3:after { + counter-increment: h3; + content: counter(h2) "." counter(h3); + padding: 0 0.45em 0 0.2em; + order: -1; +} + +main article h4:after { + counter-increment: h4; + content: counter(h2) "." counter(h3) "." counter(h4); + padding: 0 0.5em 0 0.2em; + order: -1; +} + + h1 .toc-anchor { + display: none; + } + + .toc-anchor { + margin: -0.1em 0 0; + font-size: 0.875em; + color: inherit; + text-decoration: none; + opacity: 0.35; + order: -1; + transition: opacity 0.3s ease; + } + + .toc-anchor:hover { + opacity: 1; + } + +pre { + overflow: auto; +} + +code { + padding: 0.085em 0.3em 0.1em; + font-size: 1.075em; + color: #c7001c; + vertical-align: middle; + background: #f0f0f0; + border-radius: 4px; +} + +pre code { + background: unset; + padding: unset; + border-radius: unset; +} + +h1 code, +h2 code, +h3 code, +h4 code, +h5 code, +h6 code { + font-size: 1.25em; + margin: -0.11em 0.3em 0 0; + border-radius: 3px; +} + +ol, ul { + margin: 0; + padding: 0 0 0 1.2em; +} + +dt { + font-weight: bold; + margin: 1em 0 0; +} + +dd { + margin-left: 1.5em; +} + +main { + box-sizing: border-box; + float: right; + width: 75%; + min-width: calc(100% - 325px); + max-width: calc(100% - 275px); + padding: 0.5em 2em 1.5em 2em; + background: #fff; + box-shadow: 0px 0px 5px -1px rgba(0,0,0,0.3); +} + +main table { + display: block; + width: -webkit-fill-available; + width: fit-content; + max-width: 100%; + margin: 1.5em 0 1.75em; + border-spacing: 0; + border-collapse: collapse; + overflow-x: auto; + word-wrap: normal; + overflow-wrap: normal; + hyphens: manual; +} + +main thead tr th { + color: var(--themed-element-text); + background: var(--themed-element-bk); + border: var(--themed-element-border); + text-shadow: 0px 1px 1px rgba(0,0,0,0.5); +} + +main tr { + border-top: 1px solid #cccccc; + background-color: white; + margin: 0; + padding: 0; +} + +main tr:nth-child(2n) { + background-color: #f0f0f0; +} + +main tr th { + font-weight: normal; + border: 1px solid #cccccc; + text-align: left; + margin: 0; + padding: 6px 13px; +} + +main td, +main th { + padding: 9px 13px; + border: 1px solid #d8d8d8; +} + +main tr td { + border: 1px solid #ccc; + text-align: left; + margin: 0; + padding: 0.55em 0.75em 0.55em; +} + +main tr th :first-child, +main tr td :first-child { + margin-top: 0; +} + +main tr th :last-child, +main tr td :last-child { + margin-bottom: 0; +} + +table pre[class*="language-"] { + border: none; + border-radius: 0; +} + +table pre[class*="language-"]:before { + display: none; +} + +svg[icon] { + width: 1.25em; + height: 1.25em; + vertical-align: text-top; + pointer-events: none; +} + +article p > img { + max-width: 100%; + margin: 0 auto; +} + +article li { + margin-top: 0.4em; +} + +/* Custom Elements */ + +slide-panel > *:not(header):not(footer) { + flex: 1; +} + +/* Code Examples */ + +:not(pre) > code[class*="language-"], +pre[class*="language-"] { + padding: 0.65em 0.8em 0.8em; + background: var(--code-bk); +} + +/* Tooltips */ + +.tippy-box { + box-shadow: var(--element-shadow-mid); +} + +.tippy-box a { + color: var(--active-color); +} + +.tippy-box a:visited { + color: var(--visited-color); +} + +.tippy-content { + padding: 0.55em 0.55em 0.5em; +} + +.tippy-content header { + margin: 0 0 0.4em; + padding: 0.15em 0.3em 0.1em; + border-radius: 2px; + background: rgba(255,255,255,0.1); + text-shadow: 0 1px rgba(0,0,0, 0.9); +} + +.tippy-content table, +.tippy-content tbody, +.tippy-content tr, +.tippy-content td { + margin: 0; + padding: 0; + border: none; + border-spacing: 0; + border-collapse: collapse; + background: none !important; + background-color: transparent !important; +} + +.tippy-content table { + margin: 0 0.3em; +} + +.tippy-content td { + font-size: 0.9em; + padding: 0.2em 0 0; +} + +.tippy-content td:first-child { + padding-right: 0.5em; +} + + +/*******************/ + +a[path-0$="github.com"]:before { + content: "\f09b"; + color: var(--page-text); + margin: 0 0.25em 0 0; + font-family: 'FontAwesome'; + text-decoration: none; + display: inline-block; + vertical-align: bottom; +} + +a[path-0$="github.com"][path-3="issues"][path-4], +a[path-0$="github.com"][path-3="projects"], +a[path-0$="github.com"][path-3="releases"], +a[path-0$="github.com"][path-3="pull"] { + text-decoration: none; +} + +a[path-0$="github.com"][path-3="issues"][path-4] span, +a[path-0$="github.com"][path-3="projects"] span, +a[path-0$="github.com"][path-3="releases"] span, +a[path-0$="github.com"][path-3="pull"] span { + display: none; +} + +a[path-0$="github.com"][path-3="issues"][path-4]:after { + content: "Issue #" attr(path-4); +} + +a[path-0$="github.com"][path-3="pull"]:after { + content: "Pull Request #" attr(path-4); +} + +a[path-0$="github.com"][path-3="releases"][path-5]:after { + content: "Release " attr(path-5); +} + +a[path-0$="github.com"][path-3="projects"]:after { + content: "Project #" attr(path-4); +} + +[issue-count]:after { + content: "Issues (" attr(issue-count) ")"; + margin: 0 0 0 0.3em; + padding: 0.1em 0 0; +} + +[issue-count=""][animate] { + display: none; + opacity: 0; +} + +[issue-count][animate]:not([issue-count=""]) { + animation: display-show 1s; +} + +[panel-toggle] { + cursor: pointer; +} + +.panel-header { + display: flex; + align-items: center; + height: var(--header-height); +} + +.panel-header > * { + display: flex; + height: 100%; + padding: 0.1em 0.8em 0; + align-items: center; +} + + +.slide-panel { + width: calc(100% - 1em); + max-width: 475px; + transition: transform 0.35s ease; +} + +.slide-panel[panel-open] { + transform: translateX(0%); +} + +.notice { + margin: 1em 0; + padding: 0.5em 0.9em 0.55em 0.65em; + border-left: .5em solid; +} + +.notice p { + margin: 0.4em 0 0; +} + +.note { + background: #E9FBE9; + border-color: #52E052; +} + .note .notice-link { + display: block; + color: #178217; + } + +.issue { + background: rgb(233, 240, 251); + border-color: rgb(82, 127, 224); +} + .issue .notice-link:before { + display: block; + color: rgb(30, 76, 174); + } + +.warning { + background: #FBE9E9; + border-color: #E05252; +} + .warning .notice-link { + display: block; + color: #AE1E1E; + } + +.example { + color: #cebe00; + background: #1a1e23; + border-left: 0.5em solid; +} + + .example .notice-link { + display: block; + color: inherit; + font-size: 1.1em; + font-family: Heebo, san-serif; + } + + .example pre[class*="language-"] { + padding: 0; + border-radius: 0; + } + +.todo { + background: #fbe4ff; + border-color: #9700e2; +} + .todo .notice-link { + display: block; + color: #6d00a2; + } + +.mermaid { + display: flex; + align-items: center; + justify-content: center; + margin: 1.5em 0 1.75em; +} + +/* Spec References */ + +.reference-list { + margin: 0; + padding: 0; + list-style: none; +} + +.reference-list dd a, +.reference-status { + font-style: italic; +} + +.reference-status { + color: var(--green-status); +} + +.tippy-box .reference-status { + color: var(--light-green-status); +} + +/* Terminology References */ + +pre, +code[class*="language-"], +pre[class*="language-"] { + font-size: 0.9em; + margin: 1em 0 1.5em; + border-radius: 3px; +} + +.example pre, +.example code[class*="language-"], +.example pre[class*="language-"] { + margin: 0; +} + +#svg { + display: none; +} + +#header { + position: sticky; + position: -webkit-sticky; + padding: 0; + top: 0; + margin: -0.5em -2em 0em -2em; + background: rgba(255,255,255,0.9); + border-bottom: 1px solid rgba(0,0,0,0.175); + box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.1); + z-index: 2; +} + + #logo { + box-sizing: border-box; + display: flex; + align-items: center; + height: 100%; + padding: 0.5em; + } + + #logo img { + height: 100%; + } + + + #logo + span { + margin-left: auto; + } + +#header #toc_toggle { + display: none; + padding: 0 1em; + border-right: 1px solid rgba(0,0,0,0.15); +} + +#content { + max-width: 800px; +} + +#content h1:first-of-type { + margin: 1em 0 0.5em; +} + +#content h1:first-of-type .markdownIt-Anchor { + display: none; +} + +#repo_issues { + width: calc(100% - 1.5em); + max-width: 450px; + border-left: 1px solid rgba(0,0,0,0.15); +} + +#repo_issues > header { + background: #eee; + border-bottom: 1px solid #ddd; +} + +#repo_issues > header span:first-of-type { + font-weight: bold; + padding-top: 0.1em; +} + +#repo_issues > header .repo-issue-toggle { + margin-left: auto; + color: inherit; + font-weight: bold; + text-decoration: none; +} + +#repo_issue_list { + list-style: none; + margin: 0; + padding: 0 1.25em 1.25em; + font-size: 0.85em; + overflow: auto; + -ms-overflow-style: none; /* Internet Explorer 10+ */ + scrollbar-width: none; /* Firefox */ +} + #repo_issue_list::-webkit-scrollbar { + display: none; /* Safari and Chrome */ + } + + #repo_issue_list:empty:before { + content: "No issues found"; + display: block; + text-align: center; + font-size: 1.1em; + color: #aaa; + margin: 1em 0 0; + } + +.repo-issue detail-box { + display: flex; + flex-direction: column; + padding: 1em 0; + border-bottom: 1px solid #ddd; +} + +.repo-issue detail-box > section { + order: 1; +} + +.repo-issue detail-box > section:empty + .repo-issue-title [detail-box-toggle] { + display: none; +} + +.repo-issue-title { + display: flex; + align-items: center; +} + +.repo-issue-link { + flex: 1; + margin: 0 0 0 0.5em; +} + +.repo-issue-number { + height: 1em; + margin: 0 0.4em 0 0; + padding: 0.3em 0.25em 0; + border-radius: 3px; + font-weight: bold; + background: #eee; + border: 1px solid #ddd; + text-align: center; + line-height: 1em; +} + +.repo-issue-number:before { + content: "#"; + font-weight: normal; + margin: 0 0.1em 0 0; +} + +.repo-issue [detail-box-toggle] { + margin: 0 0 0 1em; + opacity: 0.35; + transition: opacity 0.4s; +} + +.repo-issue [detail-box-toggle]:hover, +.repo-issue detail-box[open] [detail-box-toggle] { + opacity: 1; +} + +#toc { + display: flex; + flex-direction: column; + width: 25%; + max-width: 325px; + min-width: 275px; + background: #eceff1; +} + +#toc header { + color: var(--themed-element-text); + background: var(--themed-element-bk); + box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.3); + border: var(--themed-element-border); + border-top: none; + border-left: none; +} + + #toc header [panel-toggle] { + display: none; + height: var(--header-height); + line-height: var(--header-height); + margin-left: auto; + padding: 0 1em; + color: inherit; + font-weight: bold; + text-decoration: none; + } + +#toc_list { + flex: 1; + padding: 1em 0.8em; + overflow: auto; +} + +.toc { + padding: 0 0 1.75em; + font-size: 0.85em; +} + +.toc, .toc ul { + margin: 0; + list-style: none; +} + +.toc ul { + padding: 0 0 0 1em; +} + +.toc a { + display: block; + padding: 0.4em 0.3em 0.225em; + text-decoration: none; + border-radius: 3px; + color: #333; +} + +.toc a:before { + color: #000; + font-weight: bold; +} + + .toc a:hover { + text-shadow: 0px 1px 1px #fff; + background: rgba(0,0,0,0.1); + } + + .toc > li a:before { + counter-increment: toc1; + content: counter(toc1) "."; + padding: 0 0.4em 0 0.2em; + } + + .toc > li > ul { + counter-reset: toc2; + } + + .toc > li > ul > li a:before { + counter-increment: toc2; + content: counter(toc1) "." counter(toc2); + padding: 0 0.45em 0 0.2em; + } + + .toc > li > ul ul { + counter-reset: toc3; + } + + .toc > li > ul ul li a:before { + counter-increment: toc3; + content: counter(toc1) "." counter(toc2) "." counter(toc3); + padding: 0 0.5em 0 0.2em; + } + +@media (min-width: 900px) { + + slide-panel { + z-index: 2; + } + + #slidepanels[open="sidebar"]:before { + opacity: 0; + transition: none; + pointer-events: none; + } + + #slidepanels:before { + z-index: 1; + } + + #toc { + transition: none; + transform: translate3d(0%, 0%, 0); + box-shadow: 0 0 5px 1px rgba(0,0,0,0.15) inset; + z-index: 0; + } +} + +@media (max-width: 900px) { + + main { + width: 100%; + min-width: auto; + max-width: none; + padding: 0.5em 1.25em 1.5em 1.25em; + } + + #header { + margin: -0.5em -1.25em 0em -1.25em; + } + + #toc header [panel-toggle] { + display: block; + } + + #header #toc_toggle { + display: flex; + } +} + +@media (max-width: 550px) { + + td { + font-size: 0.8em; + } + +} + +@keyframes display-show { + 0% { + display: none; + opacity: 0; + } + 1% { + display: block; + } + 100% { + opacity: 1; + } +} + +@keyframes highlight { + 50% { + background-color: yellow; + } +} \ No newline at end of file diff --git a/assets/css/prism.css b/assets/css/prism.css new file mode 100644 index 0000000..53dfe28 --- /dev/null +++ b/assets/css/prism.css @@ -0,0 +1,134 @@ + + /* PrismJS 1.29.0 +https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+abnf+diff+git+http+js-extras+json+json5+js-templates+regex+yaml&plugins=line-numbers+highlight-keywords */ + +code[class*=language-], +pre[class*=language-] { + color: #ccc; + background: 0 0; + font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace; + font-size: 1em; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + word-wrap: normal; + line-height: 1.5; + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} +pre[class*=language-] { + padding: 1em; + margin: 0.5em 0; + overflow: auto; +} +:not(pre) > code[class*=language-], +pre[class*=language-] { + background: #2d2d2d; +} +:not(pre) > code[class*=language-] { + padding: 0.1em; + border-radius: 0.3em; + white-space: normal; +} +.token.block-comment, +.token.cdata, +.token.comment, +.token.doctype, +.token.prolog { + color: #999; +} +.token.punctuation { + color: #ccc; +} +.token.attr-name, +.token.deleted, +.token.namespace, +.token.tag { + color: #e2777a; +} +.token.function-name { + color: #6196cc; +} +.token.boolean, +.token.function, +.token.number { + color: #f08d49; +} +.token.class-name, +.token.constant, +.token.property, +.token.symbol { + color: #f8c555; +} +.token.atrule, +.token.builtin, +.token.important, +.token.keyword, +.token.selector { + color: #cc99cd; +} +.token.attr-value, +.token.char, +.token.regex, +.token.string, +.token.variable { + color: #7ec699; +} +.token.entity, +.token.operator, +.token.url { + color: #67cdcc; +} +.token.bold, +.token.important { + font-weight: 700; +} +.token.italic { + font-style: italic; +} +.token.entity { + cursor: help; +} +.token.inserted { + color: green; +} +pre[class*=language-].line-numbers { + position: relative; + padding-left: 3.8em; + counter-reset: linenumber; +} +pre[class*=language-].line-numbers > code { + position: relative; + white-space: inherit; +} +.line-numbers .line-numbers-rows { + position: absolute; + pointer-events: none; + top: 0; + font-size: 100%; + left: -3.8em; + width: 3em; + letter-spacing: -1px; + border-right: 1px solid #999; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.line-numbers-rows > span { + display: block; + counter-increment: linenumber; +} +.line-numbers-rows > span:before { + content: counter(linenumber); + color: #999; + display: block; + padding-right: 0.8em; + text-align: right; +} \ No newline at end of file diff --git a/assets/icons.svg b/assets/icons.svg new file mode 100644 index 0000000..42d1734 --- /dev/null +++ b/assets/icons.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/js/chart.js b/assets/js/chart.js new file mode 100644 index 0000000..55d9eb0 --- /dev/null +++ b/assets/js/chart.js @@ -0,0 +1,7 @@ +/*! + * Chart.js v2.9.3 + * https://www.chartjs.org + * (c) 2019 Chart.js Contributors + * Released under the MIT License + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t=t||self).Chart=e()}(this,(function(){"use strict";"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function t(){throw new Error("Dynamic requires are not currently supported by rollup-plugin-commonjs")}function e(t,e){return t(e={exports:{}},e.exports),e.exports}var n={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},i=e((function(t){var e={};for(var i in n)n.hasOwnProperty(i)&&(e[n[i]]=i);var a=t.exports={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};for(var r in a)if(a.hasOwnProperty(r)){if(!("channels"in a[r]))throw new Error("missing channels property: "+r);if(!("labels"in a[r]))throw new Error("missing channel labels property: "+r);if(a[r].labels.length!==a[r].channels)throw new Error("channel and label counts mismatch: "+r);var o=a[r].channels,s=a[r].labels;delete a[r].channels,delete a[r].labels,Object.defineProperty(a[r],"channels",{value:o}),Object.defineProperty(a[r],"labels",{value:s})}a.rgb.hsl=function(t){var e,n,i=t[0]/255,a=t[1]/255,r=t[2]/255,o=Math.min(i,a,r),s=Math.max(i,a,r),l=s-o;return s===o?e=0:i===s?e=(a-r)/l:a===s?e=2+(r-i)/l:r===s&&(e=4+(i-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),n=(o+s)/2,[e,100*(s===o?0:n<=.5?l/(s+o):l/(2-s-o)),100*n]},a.rgb.hsv=function(t){var e,n,i,a,r,o=t[0]/255,s=t[1]/255,l=t[2]/255,u=Math.max(o,s,l),d=u-Math.min(o,s,l),h=function(t){return(u-t)/6/d+.5};return 0===d?a=r=0:(r=d/u,e=h(o),n=h(s),i=h(l),o===u?a=i-n:s===u?a=1/3+e-i:l===u&&(a=2/3+n-e),a<0?a+=1:a>1&&(a-=1)),[360*a,100*r,100*u]},a.rgb.hwb=function(t){var e=t[0],n=t[1],i=t[2];return[a.rgb.hsl(t)[0],100*(1/255*Math.min(e,Math.min(n,i))),100*(i=1-1/255*Math.max(e,Math.max(n,i)))]},a.rgb.cmyk=function(t){var e,n=t[0]/255,i=t[1]/255,a=t[2]/255;return[100*((1-n-(e=Math.min(1-n,1-i,1-a)))/(1-e)||0),100*((1-i-e)/(1-e)||0),100*((1-a-e)/(1-e)||0),100*e]},a.rgb.keyword=function(t){var i=e[t];if(i)return i;var a,r,o,s=1/0;for(var l in n)if(n.hasOwnProperty(l)){var u=n[l],d=(r=t,o=u,Math.pow(r[0]-o[0],2)+Math.pow(r[1]-o[1],2)+Math.pow(r[2]-o[2],2));d.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)+.1805*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)),100*(.2126*e+.7152*n+.0722*i),100*(.0193*e+.1192*n+.9505*i)]},a.rgb.lab=function(t){var e=a.rgb.xyz(t),n=e[0],i=e[1],r=e[2];return i/=100,r/=108.883,n=(n/=95.047)>.008856?Math.pow(n,1/3):7.787*n+16/116,[116*(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116)-16,500*(n-i),200*(i-(r=r>.008856?Math.pow(r,1/3):7.787*r+16/116))]},a.hsl.rgb=function(t){var e,n,i,a,r,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[r=255*l,r,r];e=2*l-(n=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var u=0;u<3;u++)(i=o+1/3*-(u-1))<0&&i++,i>1&&i--,r=6*i<1?e+6*(n-e)*i:2*i<1?n:3*i<2?e+(n-e)*(2/3-i)*6:e,a[u]=255*r;return a},a.hsl.hsv=function(t){var e=t[0],n=t[1]/100,i=t[2]/100,a=n,r=Math.max(i,.01);return n*=(i*=2)<=1?i:2-i,a*=r<=1?r:2-r,[e,100*(0===i?2*a/(r+a):2*n/(i+n)),100*((i+n)/2)]},a.hsv.rgb=function(t){var e=t[0]/60,n=t[1]/100,i=t[2]/100,a=Math.floor(e)%6,r=e-Math.floor(e),o=255*i*(1-n),s=255*i*(1-n*r),l=255*i*(1-n*(1-r));switch(i*=255,a){case 0:return[i,l,o];case 1:return[s,i,o];case 2:return[o,i,l];case 3:return[o,s,i];case 4:return[l,o,i];case 5:return[i,o,s]}},a.hsv.hsl=function(t){var e,n,i,a=t[0],r=t[1]/100,o=t[2]/100,s=Math.max(o,.01);return i=(2-r)*o,n=r*s,[a,100*(n=(n/=(e=(2-r)*s)<=1?e:2-e)||0),100*(i/=2)]},a.hwb.rgb=function(t){var e,n,i,a,r,o,s,l=t[0]/360,u=t[1]/100,d=t[2]/100,h=u+d;switch(h>1&&(u/=h,d/=h),i=6*l-(e=Math.floor(6*l)),0!=(1&e)&&(i=1-i),a=u+i*((n=1-d)-u),e){default:case 6:case 0:r=n,o=a,s=u;break;case 1:r=a,o=n,s=u;break;case 2:r=u,o=n,s=a;break;case 3:r=u,o=a,s=n;break;case 4:r=a,o=u,s=n;break;case 5:r=n,o=u,s=a}return[255*r,255*o,255*s]},a.cmyk.rgb=function(t){var e=t[0]/100,n=t[1]/100,i=t[2]/100,a=t[3]/100;return[255*(1-Math.min(1,e*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a)),255*(1-Math.min(1,i*(1-a)+a))]},a.xyz.rgb=function(t){var e,n,i,a=t[0]/100,r=t[1]/100,o=t[2]/100;return n=-.9689*a+1.8758*r+.0415*o,i=.0557*a+-.204*r+1.057*o,e=(e=3.2406*a+-1.5372*r+-.4986*o)>.0031308?1.055*Math.pow(e,1/2.4)-.055:12.92*e,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:12.92*n,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:12.92*i,[255*(e=Math.min(Math.max(0,e),1)),255*(n=Math.min(Math.max(0,n),1)),255*(i=Math.min(Math.max(0,i),1))]},a.xyz.lab=function(t){var e=t[0],n=t[1],i=t[2];return n/=100,i/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(e-n),200*(n-(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116))]},a.lab.xyz=function(t){var e,n,i,a=t[0];e=t[1]/500+(n=(a+16)/116),i=n-t[2]/200;var r=Math.pow(n,3),o=Math.pow(e,3),s=Math.pow(i,3);return n=r>.008856?r:(n-16/116)/7.787,e=o>.008856?o:(e-16/116)/7.787,i=s>.008856?s:(i-16/116)/7.787,[e*=95.047,n*=100,i*=108.883]},a.lab.lch=function(t){var e,n=t[0],i=t[1],a=t[2];return(e=360*Math.atan2(a,i)/2/Math.PI)<0&&(e+=360),[n,Math.sqrt(i*i+a*a),e]},a.lch.lab=function(t){var e,n=t[0],i=t[1];return e=t[2]/360*2*Math.PI,[n,i*Math.cos(e),i*Math.sin(e)]},a.rgb.ansi16=function(t){var e=t[0],n=t[1],i=t[2],r=1 in arguments?arguments[1]:a.rgb.hsv(t)[2];if(0===(r=Math.round(r/50)))return 30;var o=30+(Math.round(i/255)<<2|Math.round(n/255)<<1|Math.round(e/255));return 2===r&&(o+=60),o},a.hsv.ansi16=function(t){return a.rgb.ansi16(a.hsv.rgb(t),t[2])},a.rgb.ansi256=function(t){var e=t[0],n=t[1],i=t[2];return e===n&&n===i?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(n/255*5)+Math.round(i/255*5)},a.ansi16.rgb=function(t){var e=t%10;if(0===e||7===e)return t>50&&(e+=3.5),[e=e/10.5*255,e,e];var n=.5*(1+~~(t>50));return[(1&e)*n*255,(e>>1&1)*n*255,(e>>2&1)*n*255]},a.ansi256.rgb=function(t){if(t>=232){var e=10*(t-232)+8;return[e,e,e]}var n;return t-=16,[Math.floor(t/36)/5*255,Math.floor((n=t%36)/6)/5*255,n%6/5*255]},a.rgb.hex=function(t){var e=(((255&Math.round(t[0]))<<16)+((255&Math.round(t[1]))<<8)+(255&Math.round(t[2]))).toString(16).toUpperCase();return"000000".substring(e.length)+e},a.hex.rgb=function(t){var e=t.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!e)return[0,0,0];var n=e[0];3===e[0].length&&(n=n.split("").map((function(t){return t+t})).join(""));var i=parseInt(n,16);return[i>>16&255,i>>8&255,255&i]},a.rgb.hcg=function(t){var e,n=t[0]/255,i=t[1]/255,a=t[2]/255,r=Math.max(Math.max(n,i),a),o=Math.min(Math.min(n,i),a),s=r-o;return e=s<=0?0:r===n?(i-a)/s%6:r===i?2+(a-n)/s:4+(n-i)/s+4,e/=6,[360*(e%=1),100*s,100*(s<1?o/(1-s):0)]},a.hsl.hcg=function(t){var e=t[1]/100,n=t[2]/100,i=1,a=0;return(i=n<.5?2*e*n:2*e*(1-n))<1&&(a=(n-.5*i)/(1-i)),[t[0],100*i,100*a]},a.hsv.hcg=function(t){var e=t[1]/100,n=t[2]/100,i=e*n,a=0;return i<1&&(a=(n-i)/(1-i)),[t[0],100*i,100*a]},a.hcg.rgb=function(t){var e=t[0]/360,n=t[1]/100,i=t[2]/100;if(0===n)return[255*i,255*i,255*i];var a,r=[0,0,0],o=e%1*6,s=o%1,l=1-s;switch(Math.floor(o)){case 0:r[0]=1,r[1]=s,r[2]=0;break;case 1:r[0]=l,r[1]=1,r[2]=0;break;case 2:r[0]=0,r[1]=1,r[2]=s;break;case 3:r[0]=0,r[1]=l,r[2]=1;break;case 4:r[0]=s,r[1]=0,r[2]=1;break;default:r[0]=1,r[1]=0,r[2]=l}return a=(1-n)*i,[255*(n*r[0]+a),255*(n*r[1]+a),255*(n*r[2]+a)]},a.hcg.hsv=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e),i=0;return n>0&&(i=e/n),[t[0],100*i,100*n]},a.hcg.hsl=function(t){var e=t[1]/100,n=t[2]/100*(1-e)+.5*e,i=0;return n>0&&n<.5?i=e/(2*n):n>=.5&&n<1&&(i=e/(2*(1-n))),[t[0],100*i,100*n]},a.hcg.hwb=function(t){var e=t[1]/100,n=e+t[2]/100*(1-e);return[t[0],100*(n-e),100*(1-n)]},a.hwb.hcg=function(t){var e=t[1]/100,n=1-t[2]/100,i=n-e,a=0;return i<1&&(a=(n-i)/(1-i)),[t[0],100*i,100*a]},a.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]},a.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]},a.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]},a.gray.hsl=a.gray.hsv=function(t){return[0,0,t[0]]},a.gray.hwb=function(t){return[0,100,t[0]]},a.gray.cmyk=function(t){return[0,0,0,t[0]]},a.gray.lab=function(t){return[t[0],0,0]},a.gray.hex=function(t){var e=255&Math.round(t[0]/100*255),n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".substring(n.length)+n},a.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]}}));i.rgb,i.hsl,i.hsv,i.hwb,i.cmyk,i.xyz,i.lab,i.lch,i.hex,i.keyword,i.ansi16,i.ansi256,i.hcg,i.apple,i.gray;function a(t){var e=function(){for(var t={},e=Object.keys(i),n=e.length,a=0;a1&&(e=Array.prototype.slice.call(arguments));var n=t(e);if("object"==typeof n)for(var i=n.length,a=0;a1&&(e=Array.prototype.slice.call(arguments)),t(e))};return"conversion"in t&&(e.conversion=t.conversion),e}(i)}))}));var l=s,u={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},d={getRgba:h,getHsla:c,getRgb:function(t){var e=h(t);return e&&e.slice(0,3)},getHsl:function(t){var e=c(t);return e&&e.slice(0,3)},getHwb:f,getAlpha:function(t){var e=h(t);if(e)return e[3];if(e=c(t))return e[3];if(e=f(t))return e[3]},hexString:function(t,e){e=void 0!==e&&3===t.length?e:t[3];return"#"+b(t[0])+b(t[1])+b(t[2])+(e>=0&&e<1?b(Math.round(255*e)):"")},rgbString:function(t,e){if(e<1||t[3]&&t[3]<1)return g(t,e);return"rgb("+t[0]+", "+t[1]+", "+t[2]+")"},rgbaString:g,percentString:function(t,e){if(e<1||t[3]&&t[3]<1)return m(t,e);var n=Math.round(t[0]/255*100),i=Math.round(t[1]/255*100),a=Math.round(t[2]/255*100);return"rgb("+n+"%, "+i+"%, "+a+"%)"},percentaString:m,hslString:function(t,e){if(e<1||t[3]&&t[3]<1)return p(t,e);return"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"},hslaString:p,hwbString:function(t,e){void 0===e&&(e=void 0!==t[3]?t[3]:1);return"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"},keyword:function(t){return y[t.slice(0,3)]}};function h(t){if(t){var e=[0,0,0],n=1,i=t.match(/^#([a-fA-F0-9]{3,4})$/i),a="";if(i){a=(i=i[1])[3];for(var r=0;rn?(e+.05)/(n+.05):(n+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,n=(e[0]+t)%360;return e[0]=n<0?360+n:n,this.setValues("hsl",e),this},mix:function(t,e){var n=t,i=void 0===e?.5:e,a=2*i-1,r=this.alpha()-n.alpha(),o=((a*r==-1?a:(a+r)/(1+a*r))+1)/2,s=1-o;return this.rgb(o*this.red()+s*n.red(),o*this.green()+s*n.green(),o*this.blue()+s*n.blue()).alpha(this.alpha()*i+n.alpha()*(1-i))},toJSON:function(){return this.rgb()},clone:function(){var t,e,n=new _,i=this.values,a=n.values;for(var r in i)i.hasOwnProperty(r)&&(t=i[r],"[object Array]"===(e={}.toString.call(t))?a[r]=t.slice(0):"[object Number]"===e?a[r]=t:console.error("unexpected color value:",t));return n}},_.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},_.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},_.prototype.getValues=function(t){for(var e=this.values,n={},i=0;i=0;a--)e.call(n,t[a],a);else for(a=0;a=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:1===t?1:(n||(n=.3),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),-i*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n))},easeOutElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:1===t?1:(n||(n=.3),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),i*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/n)+1)},easeInOutElastic:function(t){var e=1.70158,n=0,i=1;return 0===t?0:2==(t/=.5)?1:(n||(n=.45),i<1?(i=1,e=n/4):e=n/(2*Math.PI)*Math.asin(1/i),t<1?i*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*-.5:i*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/n)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-D.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*D.easeInBounce(2*t):.5*D.easeOutBounce(2*t-1)+.5}},C={effects:D};S.easingEffects=D;var P=Math.PI,T=P/180,O=2*P,A=P/2,F=P/4,I=2*P/3,L={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,n,i,a,r){if(r){var o=Math.min(r,a/2,i/2),s=e+o,l=n+o,u=e+i-o,d=n+a-o;t.moveTo(e,l),se.left-1e-6&&t.xe.top-1e-6&&t.y0&&this.requestAnimationFrame()},advance:function(){for(var t,e,n,i,a=this.animations,r=0;r=n?(H.callback(t.onAnimationComplete,[t],e),e.animating=!1,a.splice(r,1)):++r}},Q=H.options.resolve,tt=["push","pop","shift","splice","unshift"];function et(t,e){var n=t._chartjs;if(n){var i=n.listeners,a=i.indexOf(e);-1!==a&&i.splice(a,1),i.length>0||(tt.forEach((function(e){delete t[e]})),delete t._chartjs)}}var nt=function(t,e){this.initialize(t,e)};H.extend(nt.prototype,{datasetElementType:null,dataElementType:null,_datasetElementOptions:["backgroundColor","borderCapStyle","borderColor","borderDash","borderDashOffset","borderJoinStyle","borderWidth"],_dataElementOptions:["backgroundColor","borderColor","borderWidth","pointStyle"],initialize:function(t,e){var n=this;n.chart=t,n.index=e,n.linkScales(),n.addElements(),n._type=n.getMeta().type},updateIndex:function(t){this.index=t},linkScales:function(){var t=this.getMeta(),e=this.chart,n=e.scales,i=this.getDataset(),a=e.options.scales;null!==t.xAxisID&&t.xAxisID in n&&!i.xAxisID||(t.xAxisID=i.xAxisID||a.xAxes[0].id),null!==t.yAxisID&&t.yAxisID in n&&!i.yAxisID||(t.yAxisID=i.yAxisID||a.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this._update(!0)},destroy:function(){this._data&&et(this._data,this)},createMetaDataset:function(){var t=this.datasetElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(t){var e=this.dataElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index,_index:t})},addElements:function(){var t,e,n=this.getMeta(),i=this.getDataset().data||[],a=n.data;for(t=0,e=i.length;tn&&this.insertElements(n,i-n)},insertElements:function(t,e){for(var n=0;na?(r=a/e.innerRadius,t.arc(o,s,e.innerRadius-a,i+r,n-r,!0)):t.arc(o,s,a,i+Math.PI/2,n-Math.PI/2),t.closePath(),t.clip()}function ot(t,e,n){var i="inner"===e.borderAlign;i?(t.lineWidth=2*e.borderWidth,t.lineJoin="round"):(t.lineWidth=e.borderWidth,t.lineJoin="bevel"),n.fullCircles&&function(t,e,n,i){var a,r=n.endAngle;for(i&&(n.endAngle=n.startAngle+at,rt(t,n),n.endAngle=r,n.endAngle===n.startAngle&&n.fullCircles&&(n.endAngle+=at,n.fullCircles--)),t.beginPath(),t.arc(n.x,n.y,n.innerRadius,n.startAngle+at,n.startAngle,!0),a=0;as;)a-=at;for(;a=o&&a<=s,u=r>=n.innerRadius&&r<=n.outerRadius;return l&&u}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,n=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,n=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*n,y:t.y+Math.sin(e)*n}},draw:function(){var t,e=this._chart.ctx,n=this._view,i="inner"===n.borderAlign?.33:0,a={x:n.x,y:n.y,innerRadius:n.innerRadius,outerRadius:Math.max(n.outerRadius-i,0),pixelMargin:i,startAngle:n.startAngle,endAngle:n.endAngle,fullCircles:Math.floor(n.circumference/at)};if(e.save(),e.fillStyle=n.backgroundColor,e.strokeStyle=n.borderColor,a.fullCircles){for(a.endAngle=a.startAngle+at,e.beginPath(),e.arc(a.x,a.y,a.outerRadius,a.startAngle,a.endAngle),e.arc(a.x,a.y,a.innerRadius,a.endAngle,a.startAngle,!0),e.closePath(),t=0;tt.x&&(e=bt(e,"left","right")):t.basen?n:i,r:l.right||a<0?0:a>e?e:a,b:l.bottom||r<0?0:r>n?n:r,l:l.left||o<0?0:o>e?e:o}}function xt(t,e,n){var i=null===e,a=null===n,r=!(!t||i&&a)&&vt(t);return r&&(i||e>=r.left&&e<=r.right)&&(a||n>=r.top&&n<=r.bottom)}W._set("global",{elements:{rectangle:{backgroundColor:mt,borderColor:mt,borderSkipped:"bottom",borderWidth:0}}});var _t=$.extend({_type:"rectangle",draw:function(){var t=this._chart.ctx,e=this._view,n=function(t){var e=vt(t),n=e.right-e.left,i=e.bottom-e.top,a=yt(t,n/2,i/2);return{outer:{x:e.left,y:e.top,w:n,h:i},inner:{x:e.left+a.l,y:e.top+a.t,w:n-a.l-a.r,h:i-a.t-a.b}}}(e),i=n.outer,a=n.inner;t.fillStyle=e.backgroundColor,t.fillRect(i.x,i.y,i.w,i.h),i.w===a.w&&i.h===a.h||(t.save(),t.beginPath(),t.rect(i.x,i.y,i.w,i.h),t.clip(),t.fillStyle=e.borderColor,t.rect(a.x,a.y,a.w,a.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return xt(this._view,t,e)},inLabelRange:function(t,e){var n=this._view;return pt(n)?xt(n,t,null):xt(n,null,e)},inXRange:function(t){return xt(this._view,t,null)},inYRange:function(t){return xt(this._view,null,t)},getCenterPoint:function(){var t,e,n=this._view;return pt(n)?(t=n.x,e=(n.y+n.base)/2):(t=(n.x+n.base)/2,e=n.y),{x:t,y:e}},getArea:function(){var t=this._view;return pt(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),wt={},kt=st,Mt=dt,St=gt,Dt=_t;wt.Arc=kt,wt.Line=Mt,wt.Point=St,wt.Rectangle=Dt;var Ct=H._deprecated,Pt=H.valueOrDefault;function Tt(t,e,n){var i,a,r=n.barThickness,o=e.stackCount,s=e.pixels[t],l=H.isNullOrUndef(r)?function(t,e){var n,i,a,r,o=t._length;for(a=1,r=e.length;a0?Math.min(o,Math.abs(i-n)):o,n=i;return o}(e.scale,e.pixels):-1;return H.isNullOrUndef(r)?(i=l*n.categoryPercentage,a=n.barPercentage):(i=r*o,a=1),{chunk:i/o,ratio:a,start:s-i/2}}W._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}}),W._set("global",{datasets:{bar:{categoryPercentage:.8,barPercentage:.9}}});var Ot=it.extend({dataElementType:wt.Rectangle,_dataElementOptions:["backgroundColor","borderColor","borderSkipped","borderWidth","barPercentage","barThickness","categoryPercentage","maxBarThickness","minBarLength"],initialize:function(){var t,e,n=this;it.prototype.initialize.apply(n,arguments),(t=n.getMeta()).stack=n.getDataset().stack,t.bar=!0,e=n._getIndexScale().options,Ct("bar chart",e.barPercentage,"scales.[x/y]Axes.barPercentage","dataset.barPercentage"),Ct("bar chart",e.barThickness,"scales.[x/y]Axes.barThickness","dataset.barThickness"),Ct("bar chart",e.categoryPercentage,"scales.[x/y]Axes.categoryPercentage","dataset.categoryPercentage"),Ct("bar chart",n._getValueScale().options.minBarLength,"scales.[x/y]Axes.minBarLength","dataset.minBarLength"),Ct("bar chart",e.maxBarThickness,"scales.[x/y]Axes.maxBarThickness","dataset.maxBarThickness")},update:function(t){var e,n,i=this.getMeta().data;for(this._ruler=this.getRuler(),e=0,n=i.length;e=0&&m.min>=0?m.min:m.max,x=void 0===m.start?m.end:m.max>=0&&m.min>=0?m.max-m.min:m.min-m.max,_=g.length;if(v||void 0===v&&void 0!==b)for(i=0;i<_&&(a=g[i]).index!==t;++i)a.stack===b&&(r=void 0===(u=h._parseValue(f[a.index].data[e])).start?u.end:u.min>=0&&u.max>=0?u.max:u.min,(m.min<0&&r<0||m.max>=0&&r>0)&&(y+=r));return o=h.getPixelForValue(y),l=(s=h.getPixelForValue(y+x))-o,void 0!==p&&Math.abs(l)=0&&!c||x<0&&c?o-p:o+p),{size:l,base:o,head:s,center:s+l/2}},calculateBarIndexPixels:function(t,e,n,i){var a="flex"===i.barThickness?function(t,e,n){var i,a=e.pixels,r=a[t],o=t>0?a[t-1]:null,s=t=Rt?-Nt:b<-Rt?Nt:0)+p,x=Math.cos(b),_=Math.sin(b),w=Math.cos(y),k=Math.sin(y),M=b<=0&&y>=0||y>=Nt,S=b<=Wt&&y>=Wt||y>=Nt+Wt,D=b<=-Wt&&y>=-Wt||y>=Rt+Wt,C=b===-Rt||y>=Rt?-1:Math.min(x,x*m,w,w*m),P=D?-1:Math.min(_,_*m,k,k*m),T=M?1:Math.max(x,x*m,w,w*m),O=S?1:Math.max(_,_*m,k,k*m);u=(T-C)/2,d=(O-P)/2,h=-(T+C)/2,c=-(O+P)/2}for(i=0,a=g.length;i0&&!isNaN(t)?Nt*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,n,i,a,r,o,s,l,u=0,d=this.chart;if(!t)for(e=0,n=d.data.datasets.length;e(u=s>u?s:u)?l:u);return u},setHoverStyle:function(t){var e=t._model,n=t._options,i=H.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=Lt(n.hoverBackgroundColor,i(n.backgroundColor)),e.borderColor=Lt(n.hoverBorderColor,i(n.borderColor)),e.borderWidth=Lt(n.hoverBorderWidth,n.borderWidth)},_getRingWeightOffset:function(t){for(var e=0,n=0;n0&&Ht(l[t-1]._model,s)&&(n.controlPointPreviousX=u(n.controlPointPreviousX,s.left,s.right),n.controlPointPreviousY=u(n.controlPointPreviousY,s.top,s.bottom)),t0&&(r=t.getDatasetMeta(r[0]._datasetIndex).data),r},"x-axis":function(t,e){return ae(t,e,{intersect:!1})},point:function(t,e){return ee(t,Qt(e,t))},nearest:function(t,e,n){var i=Qt(e,t);n.axis=n.axis||"xy";var a=ie(n.axis);return ne(t,i,n.intersect,a)},x:function(t,e,n){var i=Qt(e,t),a=[],r=!1;return te(t,(function(t){t.inXRange(i.x)&&a.push(t),t.inRange(i.x,i.y)&&(r=!0)})),n.intersect&&!r&&(a=[]),a},y:function(t,e,n){var i=Qt(e,t),a=[],r=!1;return te(t,(function(t){t.inYRange(i.y)&&a.push(t),t.inRange(i.x,i.y)&&(r=!0)})),n.intersect&&!r&&(a=[]),a}}},oe=H.extend;function se(t,e){return H.where(t,(function(t){return t.pos===e}))}function le(t,e){return t.sort((function(t,n){var i=e?n:t,a=e?t:n;return i.weight===a.weight?i.index-a.index:i.weight-a.weight}))}function ue(t,e,n,i){return Math.max(t[n],e[n])+Math.max(t[i],e[i])}function de(t,e,n){var i,a,r=n.box,o=t.maxPadding;if(n.size&&(t[n.pos]-=n.size),n.size=n.horizontal?r.height:r.width,t[n.pos]+=n.size,r.getPadding){var s=r.getPadding();o.top=Math.max(o.top,s.top),o.left=Math.max(o.left,s.left),o.bottom=Math.max(o.bottom,s.bottom),o.right=Math.max(o.right,s.right)}if(i=e.outerWidth-ue(o,t,"left","right"),a=e.outerHeight-ue(o,t,"top","bottom"),i!==t.w||a!==t.h)return t.w=i,t.h=a,n.horizontal?i!==t.w:a!==t.h}function he(t,e){var n=e.maxPadding;function i(t){var i={left:0,top:0,right:0,bottom:0};return t.forEach((function(t){i[t]=Math.max(e[t],n[t])})),i}return i(t?["left","right"]:["top","bottom"])}function ce(t,e,n){var i,a,r,o,s,l,u=[];for(i=0,a=t.length;idiv{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}"}))&&ge.default||ge,ve="$chartjs",be="chartjs-size-monitor",ye="chartjs-render-monitor",xe="chartjs-render-animation",_e=["animationstart","webkitAnimationStart"],we={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function ke(t,e){var n=H.getStyle(t,e),i=n&&n.match(/^(\d+)(\.\d+)?px$/);return i?Number(i[1]):void 0}var Me=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};function Se(t,e,n){t.addEventListener(e,n,Me)}function De(t,e,n){t.removeEventListener(e,n,Me)}function Ce(t,e,n,i,a){return{type:t,chart:e,native:a||null,x:void 0!==n?n:null,y:void 0!==i?i:null}}function Pe(t){var e=document.createElement("div");return e.className=t||"",e}function Te(t,e,n){var i,a,r,o,s=t[ve]||(t[ve]={}),l=s.resizer=function(t){var e=Pe(be),n=Pe(be+"-expand"),i=Pe(be+"-shrink");n.appendChild(Pe()),i.appendChild(Pe()),e.appendChild(n),e.appendChild(i),e._reset=function(){n.scrollLeft=1e6,n.scrollTop=1e6,i.scrollLeft=1e6,i.scrollTop=1e6};var a=function(){e._reset(),t()};return Se(n,"scroll",a.bind(n,"expand")),Se(i,"scroll",a.bind(i,"shrink")),e}((i=function(){if(s.resizer){var i=n.options.maintainAspectRatio&&t.parentNode,a=i?i.clientWidth:0;e(Ce("resize",n)),i&&i.clientWidth0){var r=t[0];r.label?n=r.label:r.xLabel?n=r.xLabel:a>0&&r.index-1?t.split("\n"):t}function Ve(t){var e=W.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,rtl:t.rtl,textDirection:t.textDirection,bodyFontColor:t.bodyFontColor,_bodyFontFamily:Ne(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:Ne(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:Ne(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:Ne(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:Ne(t.titleFontStyle,e.defaultFontStyle),titleFontSize:Ne(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:Ne(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:Ne(t.footerFontStyle,e.defaultFontStyle),footerFontSize:Ne(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function He(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Be(t){return ze([],Ee(t))}var je=$.extend({initialize:function(){this._model=Ve(this._options),this._lastActive=[]},getTitle:function(){var t=this,e=t._options,n=e.callbacks,i=n.beforeTitle.apply(t,arguments),a=n.title.apply(t,arguments),r=n.afterTitle.apply(t,arguments),o=[];return o=ze(o,Ee(i)),o=ze(o,Ee(a)),o=ze(o,Ee(r))},getBeforeBody:function(){return Be(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var n=this,i=n._options.callbacks,a=[];return H.each(t,(function(t){var r={before:[],lines:[],after:[]};ze(r.before,Ee(i.beforeLabel.call(n,t,e))),ze(r.lines,i.label.call(n,t,e)),ze(r.after,Ee(i.afterLabel.call(n,t,e))),a.push(r)})),a},getAfterBody:function(){return Be(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this,e=t._options.callbacks,n=e.beforeFooter.apply(t,arguments),i=e.footer.apply(t,arguments),a=e.afterFooter.apply(t,arguments),r=[];return r=ze(r,Ee(n)),r=ze(r,Ee(i)),r=ze(r,Ee(a))},update:function(t){var e,n,i,a,r,o,s,l,u,d,h=this,c=h._options,f=h._model,g=h._model=Ve(c),m=h._active,p=h._data,v={xAlign:f.xAlign,yAlign:f.yAlign},b={x:f.x,y:f.y},y={width:f.width,height:f.height},x={x:f.caretX,y:f.caretY};if(m.length){g.opacity=1;var _=[],w=[];x=Ye[c.position].call(h,m,h._eventPosition);var k=[];for(e=0,n=m.length;ei.width&&(a=i.width-e.width),a<0&&(a=0)),"top"===d?r+=h:r-="bottom"===d?e.height+h:e.height/2,"center"===d?"left"===u?a+=h:"right"===u&&(a-=h):"left"===u?a-=c:"right"===u&&(a+=c),{x:a,y:r}}(g,y,v=function(t,e){var n,i,a,r,o,s=t._model,l=t._chart,u=t._chart.chartArea,d="center",h="center";s.yl.height-e.height&&(h="bottom");var c=(u.left+u.right)/2,f=(u.top+u.bottom)/2;"center"===h?(n=function(t){return t<=c},i=function(t){return t>c}):(n=function(t){return t<=e.width/2},i=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},r=function(t){return t-e.width-s.caretSize-s.caretPadding<0},o=function(t){return t<=f?"top":"bottom"},n(s.x)?(d="left",a(s.x)&&(d="center",h=o(s.y))):i(s.x)&&(d="right",r(s.x)&&(d="center",h=o(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:d,yAlign:g.yAlign?g.yAlign:h}}(this,y),h._chart)}else g.opacity=0;return g.xAlign=v.xAlign,g.yAlign=v.yAlign,g.x=b.x,g.y=b.y,g.width=y.width,g.height=y.height,g.caretX=x.x,g.caretY=x.y,h._model=g,t&&c.custom&&c.custom.call(h,g),h},drawCaret:function(t,e){var n=this._chart.ctx,i=this._view,a=this.getCaretPosition(t,e,i);n.lineTo(a.x1,a.y1),n.lineTo(a.x2,a.y2),n.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,n){var i,a,r,o,s,l,u=n.caretSize,d=n.cornerRadius,h=n.xAlign,c=n.yAlign,f=t.x,g=t.y,m=e.width,p=e.height;if("center"===c)s=g+p/2,"left"===h?(a=(i=f)-u,r=i,o=s+u,l=s-u):(a=(i=f+m)+u,r=i,o=s-u,l=s+u);else if("left"===h?(i=(a=f+d+u)-u,r=a+u):"right"===h?(i=(a=f+m-d-u)-u,r=a+u):(i=(a=n.caretX)-u,r=a+u),"top"===c)s=(o=g)-u,l=o;else{s=(o=g+p)+u,l=o;var v=r;r=i,i=v}return{x1:i,x2:a,x3:r,y1:o,y2:s,y3:l}},drawTitle:function(t,e,n){var i,a,r,o=e.title,s=o.length;if(s){var l=We(e.rtl,e.x,e.width);for(t.x=He(e,e._titleAlign),n.textAlign=l.textAlign(e._titleAlign),n.textBaseline="middle",i=e.titleFontSize,a=e.titleSpacing,n.fillStyle=e.titleFontColor,n.font=H.fontString(i,e._titleFontStyle,e._titleFontFamily),r=0;r0&&n.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var n={width:e.width,height:e.height},i={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,r=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&r&&(t.save(),t.globalAlpha=a,this.drawBackground(i,e,t,n),i.y+=e.yPadding,H.rtl.overrideTextDirection(t,e.textDirection),this.drawTitle(i,e,t),this.drawBody(i,e,t),this.drawFooter(i,e,t),H.rtl.restoreTextDirection(t,e.textDirection),t.restore())}},handleEvent:function(t){var e,n=this,i=n._options;return n._lastActive=n._lastActive||[],"mouseout"===t.type?n._active=[]:(n._active=n._chart.getElementsAtEventForMode(t,i.mode,i),i.reverse&&n._active.reverse()),(e=!H.arrayEquals(n._active,n._lastActive))&&(n._lastActive=n._active,(i.enabled||i.custom)&&(n._eventPosition={x:t.x,y:t.y},n.update(!0),n.pivot())),e}}),Ue=Ye,Ge=je;Ge.positioners=Ue;var qe=H.valueOrDefault;function Ze(){return H.merge({},[].slice.call(arguments),{merger:function(t,e,n,i){if("xAxes"===t||"yAxes"===t){var a,r,o,s=n[t].length;for(e[t]||(e[t]=[]),a=0;a=e[t].length&&e[t].push({}),!e[t][a].type||o.type&&o.type!==e[t][a].type?H.merge(e[t][a],[Re.getScaleDefaults(r),o]):H.merge(e[t][a],o)}else H._merger(t,e,n,i)}})}function $e(){return H.merge({},[].slice.call(arguments),{merger:function(t,e,n,i){var a=e[t]||{},r=n[t];"scales"===t?e[t]=Ze(a,r):"scale"===t?e[t]=H.merge(a,[Re.getScaleDefaults(r.type),r]):H._merger(t,e,n,i)}})}function Xe(t){var e=t.options;H.each(t.scales,(function(e){me.removeBox(t,e)})),e=$e(W.global,W[t.config.type],e),t.options=t.config.options=e,t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.tooltip._options=e.tooltips,t.tooltip.initialize()}function Ke(t,e,n){var i,a=function(t){return t.id===i};do{i=e+n++}while(H.findIndex(t,a)>=0);return i}function Je(t){return"top"===t||"bottom"===t}function Qe(t,e){return function(n,i){return n[t]===i[t]?n[e]-i[e]:n[t]-i[t]}}W._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var tn=function(t,e){return this.construct(t,e),this};H.extend(tn.prototype,{construct:function(t,e){var n=this;e=function(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=$e(W.global,W[t.type],t.options||{}),t}(e);var i=Ie.acquireContext(t,e),a=i&&i.canvas,r=a&&a.height,o=a&&a.width;n.id=H.uid(),n.ctx=i,n.canvas=a,n.config=e,n.width=o,n.height=r,n.aspectRatio=r?o/r:null,n.options=e.options,n._bufferedRender=!1,n._layers=[],n.chart=n,n.controller=n,tn.instances[n.id]=n,Object.defineProperty(n,"data",{get:function(){return n.config.data},set:function(t){n.config.data=t}}),i&&a?(n.initialize(),n.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return Le.notify(t,"beforeInit"),H.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.initToolTip(),Le.notify(t,"afterInit"),t},clear:function(){return H.canvas.clear(this),this},stop:function(){return J.cancelAnimation(this),this},resize:function(t){var e=this,n=e.options,i=e.canvas,a=n.maintainAspectRatio&&e.aspectRatio||null,r=Math.max(0,Math.floor(H.getMaximumWidth(i))),o=Math.max(0,Math.floor(a?r/a:H.getMaximumHeight(i)));if((e.width!==r||e.height!==o)&&(i.width=e.width=r,i.height=e.height=o,i.style.width=r+"px",i.style.height=o+"px",H.retinaScale(e,n.devicePixelRatio),!t)){var s={width:r,height:o};Le.notify(e,"resize",[s]),n.onResize&&n.onResize(e,s),e.stop(),e.update({duration:n.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},n=t.scale;H.each(e.xAxes,(function(t,n){t.id||(t.id=Ke(e.xAxes,"x-axis-",n))})),H.each(e.yAxes,(function(t,n){t.id||(t.id=Ke(e.yAxes,"y-axis-",n))})),n&&(n.id=n.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,n=t.scales||{},i=[],a=Object.keys(n).reduce((function(t,e){return t[e]=!1,t}),{});e.scales&&(i=i.concat((e.scales.xAxes||[]).map((function(t){return{options:t,dtype:"category",dposition:"bottom"}})),(e.scales.yAxes||[]).map((function(t){return{options:t,dtype:"linear",dposition:"left"}})))),e.scale&&i.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),H.each(i,(function(e){var i=e.options,r=i.id,o=qe(i.type,e.dtype);Je(i.position)!==Je(e.dposition)&&(i.position=e.dposition),a[r]=!0;var s=null;if(r in n&&n[r].type===o)(s=n[r]).options=i,s.ctx=t.ctx,s.chart=t;else{var l=Re.getScaleConstructor(o);if(!l)return;s=new l({id:r,type:o,options:i,ctx:t.ctx,chart:t}),n[s.id]=s}s.mergeTicksOptions(),e.isDefault&&(t.scale=s)})),H.each(a,(function(t,e){t||delete n[e]})),t.scales=n,Re.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t,e,n=this,i=[],a=n.data.datasets;for(t=0,e=a.length;t=0;--n)this.drawDataset(e[n],t);Le.notify(this,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var n={meta:t,index:t.index,easingValue:e};!1!==Le.notify(this,"beforeDatasetDraw",[n])&&(t.controller.draw(e),Le.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,n={tooltip:e,easingValue:t};!1!==Le.notify(this,"beforeTooltipDraw",[n])&&(e.draw(),Le.notify(this,"afterTooltipDraw",[n]))},getElementAtEvent:function(t){return re.modes.single(this,t)},getElementsAtEvent:function(t){return re.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return re.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,n){var i=re.modes[e];return"function"==typeof i?i(this,t,n):[]},getDatasetAtEvent:function(t){return re.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var n=e._meta[this.id];return n||(n=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null,order:e.order||0,index:t}),n},getVisibleDatasetCount:function(){for(var t=0,e=0,n=this.data.datasets.length;e3?n[2]-n[1]:n[1]-n[0];Math.abs(i)>1&&t!==Math.floor(t)&&(i=t-Math.floor(t));var a=H.log10(Math.abs(i)),r="";if(0!==t)if(Math.max(Math.abs(n[0]),Math.abs(n[n.length-1]))<1e-4){var o=H.log10(Math.abs(t)),s=Math.floor(o)-Math.floor(a);s=Math.max(Math.min(s,20),0),r=t.toExponential(s)}else{var l=-1*Math.floor(a);l=Math.max(Math.min(l,20),0),r=t.toFixed(l)}else r="0";return r},logarithmic:function(t,e,n){var i=t/Math.pow(10,Math.floor(H.log10(t)));return 0===t?"0":1===i||2===i||5===i||0===e||e===n.length-1?t.toExponential():""}}},sn=H.isArray,ln=H.isNullOrUndef,un=H.valueOrDefault,dn=H.valueAtIndexOrDefault;function hn(t,e,n){var i,a=t.getTicks().length,r=Math.min(e,a-1),o=t.getPixelForTick(r),s=t._startPixel,l=t._endPixel;if(!(n&&(i=1===a?Math.max(o-s,l-o):0===e?(t.getPixelForTick(1)-o)/2:(o-t.getPixelForTick(r-1))/2,(o+=rl+1e-6)))return o}function cn(t,e,n,i){var a,r,o,s,l,u,d,h,c,f,g,m,p,v=n.length,b=[],y=[],x=[];for(a=0;ae){for(n=0;n=c||d<=1||!s.isHorizontal()?s.labelRotation=h:(e=(t=s._getLabelSizes()).widest.width,n=t.highest.height-t.highest.offset,i=Math.min(s.maxWidth,s.chart.width-e),e+6>(a=l.offset?s.maxWidth/d:i/(d-1))&&(a=i/(d-(l.offset?.5:1)),r=s.maxHeight-fn(l.gridLines)-u.padding-gn(l.scaleLabel),o=Math.sqrt(e*e+n*n),f=H.toDegrees(Math.min(Math.asin(Math.min((t.highest.height+6)/a,1)),Math.asin(Math.min(r/o,1))-Math.asin(n/o))),f=Math.max(h,Math.min(c,f))),s.labelRotation=f)},afterCalculateTickRotation:function(){H.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){H.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},n=t.chart,i=t.options,a=i.ticks,r=i.scaleLabel,o=i.gridLines,s=t._isVisible(),l="bottom"===i.position,u=t.isHorizontal();if(u?e.width=t.maxWidth:s&&(e.width=fn(o)+gn(r)),u?s&&(e.height=fn(o)+gn(r)):e.height=t.maxHeight,a.display&&s){var d=pn(a),h=t._getLabelSizes(),c=h.first,f=h.last,g=h.widest,m=h.highest,p=.4*d.minor.lineHeight,v=a.padding;if(u){var b=0!==t.labelRotation,y=H.toRadians(t.labelRotation),x=Math.cos(y),_=Math.sin(y),w=_*g.width+x*(m.height-(b?m.offset:0))+(b?0:p);e.height=Math.min(t.maxHeight,e.height+w+v);var k,M,S=t.getPixelForTick(0)-t.left,D=t.right-t.getPixelForTick(t.getTicks().length-1);b?(k=l?x*c.width+_*c.offset:_*(c.height-c.offset),M=l?_*(f.height-f.offset):x*f.width+_*f.offset):(k=c.width/2,M=f.width/2),t.paddingLeft=Math.max((k-S)*t.width/(t.width-S),0)+3,t.paddingRight=Math.max((M-D)*t.width/(t.width-D),0)+3}else{var C=a.mirror?0:g.width+v+p;e.width=Math.min(t.maxWidth,e.width+C),t.paddingTop=c.height/2,t.paddingBottom=f.height/2}}t.handleMargins(),u?(t.width=t._length=n.width-t.margins.left-t.margins.right,t.height=e.height):(t.width=e.width,t.height=t._length=n.height-t.margins.top-t.margins.bottom)},handleMargins:function(){var t=this;t.margins&&(t.margins.left=Math.max(t.paddingLeft,t.margins.left),t.margins.top=Math.max(t.paddingTop,t.margins.top),t.margins.right=Math.max(t.paddingRight,t.margins.right),t.margins.bottom=Math.max(t.paddingBottom,t.margins.bottom))},afterFit:function(){H.callback(this.options.afterFit,[this])},isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(ln(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},_convertTicksToLabels:function(t){var e,n,i,a=this;for(a.ticks=t.map((function(t){return t.value})),a.beforeTickToLabelConversion(),e=a.convertTicksToLabels(t)||a.ticks,a.afterTickToLabelConversion(),n=0,i=t.length;nn-1?null:this.getPixelForDecimal(t*i+(e?i/2:0))},getPixelForDecimal:function(t){return this._reversePixels&&(t=1-t),this._startPixel+t*this._length},getDecimalForPixel:function(t){var e=(t-this._startPixel)/this._length;return this._reversePixels?1-e:e},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,n,i,a,r=this.options.ticks,o=this._length,s=r.maxTicksLimit||o/this._tickSize()+1,l=r.major.enabled?function(t){var e,n,i=[];for(e=0,n=t.length;es)return function(t,e,n){var i,a,r=0,o=e[0];for(n=Math.ceil(n),i=0;iu)return r;return Math.max(u,1)}(l,t,0,s),u>0){for(e=0,n=u-1;e1?(h-d)/(u-1):null,bn(t,i,H.isNullOrUndef(a)?0:d-a,d),bn(t,i,h,H.isNullOrUndef(a)?t.length:h+a),vn(t)}return bn(t,i),vn(t)},_tickSize:function(){var t=this.options.ticks,e=H.toRadians(this.labelRotation),n=Math.abs(Math.cos(e)),i=Math.abs(Math.sin(e)),a=this._getLabelSizes(),r=t.autoSkipPadding||0,o=a?a.widest.width+r:0,s=a?a.highest.height+r:0;return this.isHorizontal()?s*n>o*i?o/n:s/i:s*i=0&&(o=t),void 0!==r&&(t=n.indexOf(r))>=0&&(s=t),e.minIndex=o,e.maxIndex=s,e.min=n[o],e.max=n[s]},buildTicks:function(){var t=this._getLabels(),e=this.minIndex,n=this.maxIndex;this.ticks=0===e&&n===t.length-1?t:t.slice(e,n+1)},getLabelForIndex:function(t,e){var n=this.chart;return n.getDatasetMeta(e).controller._getValueScaleId()===this.id?this.getRightValue(n.data.datasets[e].data[t]):this._getLabels()[t]},_configure:function(){var t=this,e=t.options.offset,n=t.ticks;xn.prototype._configure.call(t),t.isHorizontal()||(t._reversePixels=!t._reversePixels),n&&(t._startValue=t.minIndex-(e?.5:0),t._valueRange=Math.max(n.length-(e?0:1),1))},getPixelForValue:function(t,e,n){var i,a,r,o=this;return _n(e)||_n(n)||(t=o.chart.data.datasets[n].data[e]),_n(t)||(i=o.isHorizontal()?t.x:t.y),(void 0!==i||void 0!==t&&isNaN(e))&&(a=o._getLabels(),t=H.valueOrDefault(i,t),e=-1!==(r=a.indexOf(t))?r:e,isNaN(e)&&(e=t)),o.getPixelForDecimal((e-o._startValue)/o._valueRange)},getPixelForTick:function(t){var e=this.ticks;return t<0||t>e.length-1?null:this.getPixelForValue(e[t],t+this.minIndex)},getValueForPixel:function(t){var e=Math.round(this._startValue+this.getDecimalForPixel(t)*this._valueRange);return Math.min(Math.max(e,0),this.ticks.length-1)},getBasePixel:function(){return this.bottom}}),kn={position:"bottom"};wn._defaults=kn;var Mn=H.noop,Sn=H.isNullOrUndef;var Dn=xn.extend({getRightValue:function(t){return"string"==typeof t?+t:xn.prototype.getRightValue.call(this,t)},handleTickRangeOptions:function(){var t=this,e=t.options.ticks;if(e.beginAtZero){var n=H.sign(t.min),i=H.sign(t.max);n<0&&i<0?t.max=0:n>0&&i>0&&(t.min=0)}var a=void 0!==e.min||void 0!==e.suggestedMin,r=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),a!==r&&t.min>=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this.options.ticks,n=e.stepSize,i=e.maxTicksLimit;return n?t=Math.ceil(this.max/n)-Math.floor(this.min/n)+1:(t=this._computeTickLimit(),i=i||11),i&&(t=Math.min(i,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:Mn,buildTicks:function(){var t=this,e=t.options.ticks,n=t.getTickLimit(),i={maxTicks:n=Math.max(2,n),min:e.min,max:e.max,precision:e.precision,stepSize:H.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var n,i,a,r,o=[],s=t.stepSize,l=s||1,u=t.maxTicks-1,d=t.min,h=t.max,c=t.precision,f=e.min,g=e.max,m=H.niceNum((g-f)/u/l)*l;if(m<1e-14&&Sn(d)&&Sn(h))return[f,g];(r=Math.ceil(g/m)-Math.floor(f/m))>u&&(m=H.niceNum(r*m/u/l)*l),s||Sn(c)?n=Math.pow(10,H._decimalPlaces(m)):(n=Math.pow(10,c),m=Math.ceil(m*n)/n),i=Math.floor(f/m)*m,a=Math.ceil(g/m)*m,s&&(!Sn(d)&&H.almostWhole(d/m,m/1e3)&&(i=d),!Sn(h)&&H.almostWhole(h/m,m/1e3)&&(a=h)),r=(a-i)/m,r=H.almostEquals(r,Math.round(r),m/1e3)?Math.round(r):Math.ceil(r),i=Math.round(i*n)/n,a=Math.round(a*n)/n,o.push(Sn(d)?i:d);for(var p=1;pe.length-1?null:this.getPixelForValue(e[t])}}),An=Cn;On._defaults=An;var Fn=H.valueOrDefault,In=H.math.log10;var Ln={position:"left",ticks:{callback:on.formatters.logarithmic}};function Rn(t,e){return H.isFinite(t)&&t>=0?t:e}var Nn=xn.extend({determineDataLimits:function(){var t,e,n,i,a,r,o=this,s=o.options,l=o.chart,u=l.data.datasets,d=o.isHorizontal();function h(t){return d?t.xAxisID===o.id:t.yAxisID===o.id}o.min=Number.POSITIVE_INFINITY,o.max=Number.NEGATIVE_INFINITY,o.minNotZero=Number.POSITIVE_INFINITY;var c=s.stacked;if(void 0===c)for(t=0;t0){var e=H.min(t),n=H.max(t);o.min=Math.min(o.min,e),o.max=Math.max(o.max,n)}}))}else for(t=0;t0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(In(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,n=!t.isHorizontal(),i={min:Rn(e.min),max:Rn(e.max)},a=t.ticks=function(t,e){var n,i,a=[],r=Fn(t.min,Math.pow(10,Math.floor(In(e.min)))),o=Math.floor(In(e.max)),s=Math.ceil(e.max/Math.pow(10,o));0===r?(n=Math.floor(In(e.minNotZero)),i=Math.floor(e.minNotZero/Math.pow(10,n)),a.push(r),r=i*Math.pow(10,n)):(n=Math.floor(In(r)),i=Math.floor(r/Math.pow(10,n)));var l=n<0?Math.pow(10,Math.abs(n)):1;do{a.push(r),10===++i&&(i=1,l=++n>=0?1:l),r=Math.round(i*Math.pow(10,n)*l)/l}while(ne.length-1?null:this.getPixelForValue(e[t])},_getFirstTickValue:function(t){var e=Math.floor(In(t));return Math.floor(t/Math.pow(10,e))*Math.pow(10,e)},_configure:function(){var t=this,e=t.min,n=0;xn.prototype._configure.call(t),0===e&&(e=t._getFirstTickValue(t.minNotZero),n=Fn(t.options.ticks.fontSize,W.global.defaultFontSize)/t._length),t._startValue=In(e),t._valueOffset=n,t._valueRange=(In(t.max)-In(e))/(1-n)},getPixelForValue:function(t){var e=this,n=0;return(t=+e.getRightValue(t))>e.min&&t>0&&(n=(In(t)-e._startValue)/e._valueRange+e._valueOffset),e.getPixelForDecimal(n)},getValueForPixel:function(t){var e=this,n=e.getDecimalForPixel(t);return 0===n&&0===e.min?0:Math.pow(10,e._startValue+(n-e._valueOffset)*e._valueRange)}}),Wn=Ln;Nn._defaults=Wn;var Yn=H.valueOrDefault,zn=H.valueAtIndexOrDefault,En=H.options.resolve,Vn={display:!0,animate:!0,position:"chartArea",angleLines:{display:!0,color:"rgba(0,0,0,0.1)",lineWidth:1,borderDash:[],borderDashOffset:0},gridLines:{circular:!1},ticks:{showLabelBackdrop:!0,backdropColor:"rgba(255,255,255,0.75)",backdropPaddingY:2,backdropPaddingX:2,callback:on.formatters.linear},pointLabels:{display:!0,fontSize:10,callback:function(t){return t}}};function Hn(t){var e=t.ticks;return e.display&&t.display?Yn(e.fontSize,W.global.defaultFontSize)+2*e.backdropPaddingY:0}function Bn(t,e,n,i,a){return t===i||t===a?{start:e-n/2,end:e+n/2}:ta?{start:e-n,end:e}:{start:e,end:e+n}}function jn(t){return 0===t||180===t?"center":t<180?"left":"right"}function Un(t,e,n,i){var a,r,o=n.y+i/2;if(H.isArray(e))for(a=0,r=e.length;a270||t<90)&&(n.y-=e.h)}function qn(t){return H.isNumber(t)?t:0}var Zn=Dn.extend({setDimensions:function(){var t=this;t.width=t.maxWidth,t.height=t.maxHeight,t.paddingTop=Hn(t.options)/2,t.xCenter=Math.floor(t.width/2),t.yCenter=Math.floor((t.height-t.paddingTop)/2),t.drawingArea=Math.min(t.height-t.paddingTop,t.width)/2},determineDataLimits:function(){var t=this,e=t.chart,n=Number.POSITIVE_INFINITY,i=Number.NEGATIVE_INFINITY;H.each(e.data.datasets,(function(a,r){if(e.isDatasetVisible(r)){var o=e.getDatasetMeta(r);H.each(a.data,(function(e,a){var r=+t.getRightValue(e);isNaN(r)||o.data[a].hidden||(n=Math.min(r,n),i=Math.max(r,i))}))}})),t.min=n===Number.POSITIVE_INFINITY?0:n,t.max=i===Number.NEGATIVE_INFINITY?0:i,t.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/Hn(this.options))},convertTicksToLabels:function(){var t=this;Dn.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map((function(){var e=H.callback(t.options.pointLabels.callback,arguments,t);return e||0===e?e:""}))},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){var t=this.options;t.display&&t.pointLabels.display?function(t){var e,n,i,a=H.options._parseFont(t.options.pointLabels),r={l:0,r:t.width,t:0,b:t.height-t.paddingTop},o={};t.ctx.font=a.string,t._pointLabelSizes=[];var s,l,u,d=t.chart.data.labels.length;for(e=0;er.r&&(r.r=f.end,o.r=h),g.startr.b&&(r.b=g.end,o.b=h)}t.setReductions(t.drawingArea,r,o)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(t,e,n){var i=this,a=e.l/Math.sin(n.l),r=Math.max(e.r-i.width,0)/Math.sin(n.r),o=-e.t/Math.cos(n.t),s=-Math.max(e.b-(i.height-i.paddingTop),0)/Math.cos(n.b);a=qn(a),r=qn(r),o=qn(o),s=qn(s),i.drawingArea=Math.min(Math.floor(t-(a+r)/2),Math.floor(t-(o+s)/2)),i.setCenterPoint(a,r,o,s)},setCenterPoint:function(t,e,n,i){var a=this,r=a.width-e-a.drawingArea,o=t+a.drawingArea,s=n+a.drawingArea,l=a.height-a.paddingTop-i-a.drawingArea;a.xCenter=Math.floor((o+r)/2+a.left),a.yCenter=Math.floor((s+l)/2+a.top+a.paddingTop)},getIndexAngle:function(t){var e=this.chart,n=(t*(360/e.data.labels.length)+((e.options||{}).startAngle||0))%360;return(n<0?n+360:n)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(H.isNullOrUndef(t))return NaN;var n=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*n:(t-e.min)*n},getPointPosition:function(t,e){var n=this.getIndexAngle(t)-Math.PI/2;return{x:Math.cos(n)*e+this.xCenter,y:Math.sin(n)*e+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(t){var e=this.min,n=this.max;return this.getPointPositionForValue(t||0,this.beginAtZero?0:e<0&&n<0?n:e>0&&n>0?e:0)},_drawGrid:function(){var t,e,n,i=this,a=i.ctx,r=i.options,o=r.gridLines,s=r.angleLines,l=Yn(s.lineWidth,o.lineWidth),u=Yn(s.color,o.color);if(r.pointLabels.display&&function(t){var e=t.ctx,n=t.options,i=n.pointLabels,a=Hn(n),r=t.getDistanceFromCenterForValue(n.ticks.reverse?t.min:t.max),o=H.options._parseFont(i);e.save(),e.font=o.string,e.textBaseline="middle";for(var s=t.chart.data.labels.length-1;s>=0;s--){var l=0===s?a/2:0,u=t.getPointPosition(s,r+l+5),d=zn(i.fontColor,s,W.global.defaultFontColor);e.fillStyle=d;var h=t.getIndexAngle(s),c=H.toDegrees(h);e.textAlign=jn(c),Gn(c,t._pointLabelSizes[s],u),Un(e,t.pointLabels[s],u,o.lineHeight)}e.restore()}(i),o.display&&H.each(i.ticks,(function(t,n){0!==n&&(e=i.getDistanceFromCenterForValue(i.ticksAsNumbers[n]),function(t,e,n,i){var a,r=t.ctx,o=e.circular,s=t.chart.data.labels.length,l=zn(e.color,i-1),u=zn(e.lineWidth,i-1);if((o||s)&&l&&u){if(r.save(),r.strokeStyle=l,r.lineWidth=u,r.setLineDash&&(r.setLineDash(e.borderDash||[]),r.lineDashOffset=e.borderDashOffset||0),r.beginPath(),o)r.arc(t.xCenter,t.yCenter,n,0,2*Math.PI);else{a=t.getPointPosition(0,n),r.moveTo(a.x,a.y);for(var d=1;d=0;t--)e=i.getDistanceFromCenterForValue(r.ticks.reverse?i.min:i.max),n=i.getPointPosition(t,e),a.beginPath(),a.moveTo(i.xCenter,i.yCenter),a.lineTo(n.x,n.y),a.stroke();a.restore()}},_drawLabels:function(){var t=this,e=t.ctx,n=t.options.ticks;if(n.display){var i,a,r=t.getIndexAngle(0),o=H.options._parseFont(n),s=Yn(n.fontColor,W.global.defaultFontColor);e.save(),e.font=o.string,e.translate(t.xCenter,t.yCenter),e.rotate(r),e.textAlign="center",e.textBaseline="middle",H.each(t.ticks,(function(r,l){(0!==l||n.reverse)&&(i=t.getDistanceFromCenterForValue(t.ticksAsNumbers[l]),n.showLabelBackdrop&&(a=e.measureText(r).width,e.fillStyle=n.backdropColor,e.fillRect(-a/2-n.backdropPaddingX,-i-o.size/2-n.backdropPaddingY,a+2*n.backdropPaddingX,o.size+2*n.backdropPaddingY)),e.fillStyle=s,e.fillText(r,0,-i))})),e.restore()}},_drawTitle:H.noop}),$n=Vn;Zn._defaults=$n;var Xn=H._deprecated,Kn=H.options.resolve,Jn=H.valueOrDefault,Qn=Number.MIN_SAFE_INTEGER||-9007199254740991,ti=Number.MAX_SAFE_INTEGER||9007199254740991,ei={millisecond:{common:!0,size:1,steps:1e3},second:{common:!0,size:1e3,steps:60},minute:{common:!0,size:6e4,steps:60},hour:{common:!0,size:36e5,steps:24},day:{common:!0,size:864e5,steps:30},week:{common:!1,size:6048e5,steps:4},month:{common:!0,size:2628e6,steps:12},quarter:{common:!1,size:7884e6,steps:4},year:{common:!0,size:3154e7}},ni=Object.keys(ei);function ii(t,e){return t-e}function ai(t){return H.valueOrDefault(t.time.min,t.ticks.min)}function ri(t){return H.valueOrDefault(t.time.max,t.ticks.max)}function oi(t,e,n,i){var a=function(t,e,n){for(var i,a,r,o=0,s=t.length-1;o>=0&&o<=s;){if(a=t[(i=o+s>>1)-1]||null,r=t[i],!a)return{lo:null,hi:r};if(r[e]n))return{lo:a,hi:r};s=i-1}}return{lo:r,hi:null}}(t,e,n),r=a.lo?a.hi?a.lo:t[t.length-2]:t[0],o=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=o[e]-r[e],l=s?(n-r[e])/s:0,u=(o[i]-r[i])*l;return r[i]+u}function si(t,e){var n=t._adapter,i=t.options.time,a=i.parser,r=a||i.format,o=e;return"function"==typeof a&&(o=a(o)),H.isFinite(o)||(o="string"==typeof r?n.parse(o,r):n.parse(o)),null!==o?+o:(a||"function"!=typeof r||(o=r(e),H.isFinite(o)||(o=n.parse(o))),o)}function li(t,e){if(H.isNullOrUndef(e))return null;var n=t.options.time,i=si(t,t.getRightValue(e));return null===i?i:(n.round&&(i=+t._adapter.startOf(i,n.round)),i)}function ui(t,e,n,i){var a,r,o,s=ni.length;for(a=ni.indexOf(t);a=0&&(e[r].major=!0);return e}(t,r,o,n):r}var hi=xn.extend({initialize:function(){this.mergeTicksOptions(),xn.prototype.initialize.call(this)},update:function(){var t=this,e=t.options,n=e.time||(e.time={}),i=t._adapter=new rn._date(e.adapters.date);return Xn("time scale",n.format,"time.format","time.parser"),Xn("time scale",n.min,"time.min","ticks.min"),Xn("time scale",n.max,"time.max","ticks.max"),H.mergeIf(n.displayFormats,i.formats()),xn.prototype.update.apply(t,arguments)},getRightValue:function(t){return t&&void 0!==t.t&&(t=t.t),xn.prototype.getRightValue.call(this,t)},determineDataLimits:function(){var t,e,n,i,a,r,o,s=this,l=s.chart,u=s._adapter,d=s.options,h=d.time.unit||"day",c=ti,f=Qn,g=[],m=[],p=[],v=s._getLabels();for(t=0,n=v.length;t1?function(t){var e,n,i,a={},r=[];for(e=0,n=t.length;e1e5*u)throw e+" and "+n+" are too far apart with stepSize of "+u+" "+l;for(a=h;a=a&&n<=r&&d.push(n);return i.min=a,i.max=r,i._unit=l.unit||(s.autoSkip?ui(l.minUnit,i.min,i.max,h):function(t,e,n,i,a){var r,o;for(r=ni.length-1;r>=ni.indexOf(n);r--)if(o=ni[r],ei[o].common&&t._adapter.diff(a,i,o)>=e-1)return o;return ni[n?ni.indexOf(n):0]}(i,d.length,l.minUnit,i.min,i.max)),i._majorUnit=s.major.enabled&&"year"!==i._unit?function(t){for(var e=ni.indexOf(t)+1,n=ni.length;ee&&s=0&&t0?s:1}}),ci={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};hi._defaults=ci;var fi={category:wn,linear:On,logarithmic:Nn,radialLinear:Zn,time:hi},gi=e((function(e,n){e.exports=function(){var n,i;function a(){return n.apply(null,arguments)}function r(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function o(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function s(t){return void 0===t}function l(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function u(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function d(t,e){var n,i=[];for(n=0;n>>0,i=0;i0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+i}var E=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,V=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,H={},B={};function j(t,e,n,i){var a=i;"string"==typeof i&&(a=function(){return this[i]()}),t&&(B[t]=a),e&&(B[e[0]]=function(){return z(a.apply(this,arguments),e[1],e[2])}),n&&(B[n]=function(){return this.localeData().ordinal(a.apply(this,arguments),t)})}function U(t,e){return t.isValid()?(e=G(e,t.localeData()),H[e]=H[e]||function(t){var e,n,i,a=t.match(E);for(e=0,n=a.length;e=0&&V.test(t);)t=t.replace(V,i),V.lastIndex=0,n-=1;return t}var q=/\d/,Z=/\d\d/,$=/\d{3}/,X=/\d{4}/,K=/[+-]?\d{6}/,J=/\d\d?/,Q=/\d\d\d\d?/,tt=/\d\d\d\d\d\d?/,et=/\d{1,3}/,nt=/\d{1,4}/,it=/[+-]?\d{1,6}/,at=/\d+/,rt=/[+-]?\d+/,ot=/Z|[+-]\d\d:?\d\d/gi,st=/Z|[+-]\d\d(?::?\d\d)?/gi,lt=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,ut={};function dt(t,e,n){ut[t]=O(e)?e:function(t,i){return t&&n?n:e}}function ht(t,e){return h(ut,t)?ut[t](e._strict,e._locale):new RegExp(ct(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(t,e,n,i,a){return e||n||i||a}))))}function ct(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var ft={};function gt(t,e){var n,i=e;for("string"==typeof t&&(t=[t]),l(e)&&(i=function(t,n){n[e]=k(t)}),n=0;n68?1900:2e3)};var Pt,Tt=Ot("FullYear",!0);function Ot(t,e){return function(n){return null!=n?(Ft(this,t,n),a.updateOffset(this,e),this):At(this,t)}}function At(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function Ft(t,e,n){t.isValid()&&!isNaN(n)&&("FullYear"===e&&Ct(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](n,t.month(),It(n,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](n))}function It(t,e){if(isNaN(t)||isNaN(e))return NaN;var n=function(t,e){return(t%e+e)%e}(e,12);return t+=(e-n)/12,1===n?Ct(t)?29:28:31-n%7%2}Pt=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0?(s=new Date(t+400,e,n,i,a,r,o),isFinite(s.getFullYear())&&s.setFullYear(t)):s=new Date(t,e,n,i,a,r,o),s}function jt(t){var e;if(t<100&&t>=0){var n=Array.prototype.slice.call(arguments);n[0]=t+400,e=new Date(Date.UTC.apply(null,n)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Ut(t,e,n){var i=7+e-n;return-(7+jt(t,0,i).getUTCDay()-e)%7+i-1}function Gt(t,e,n,i,a){var r,o,s=1+7*(e-1)+(7+n-i)%7+Ut(t,i,a);return s<=0?o=Dt(r=t-1)+s:s>Dt(t)?(r=t+1,o=s-Dt(t)):(r=t,o=s),{year:r,dayOfYear:o}}function qt(t,e,n){var i,a,r=Ut(t.year(),e,n),o=Math.floor((t.dayOfYear()-r-1)/7)+1;return o<1?i=o+Zt(a=t.year()-1,e,n):o>Zt(t.year(),e,n)?(i=o-Zt(t.year(),e,n),a=t.year()+1):(a=t.year(),i=o),{week:i,year:a}}function Zt(t,e,n){var i=Ut(t,e,n),a=Ut(t+1,e,n);return(Dt(t)-i+a)/7}function $t(t,e){return t.slice(e,7).concat(t.slice(0,e))}j("w",["ww",2],"wo","week"),j("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),Y("week",5),Y("isoWeek",5),dt("w",J),dt("ww",J,Z),dt("W",J),dt("WW",J,Z),mt(["w","ww","W","WW"],(function(t,e,n,i){e[i.substr(0,1)]=k(t)})),j("d",0,"do","day"),j("dd",0,0,(function(t){return this.localeData().weekdaysMin(this,t)})),j("ddd",0,0,(function(t){return this.localeData().weekdaysShort(this,t)})),j("dddd",0,0,(function(t){return this.localeData().weekdays(this,t)})),j("e",0,0,"weekday"),j("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),Y("day",11),Y("weekday",11),Y("isoWeekday",11),dt("d",J),dt("e",J),dt("E",J),dt("dd",(function(t,e){return e.weekdaysMinRegex(t)})),dt("ddd",(function(t,e){return e.weekdaysShortRegex(t)})),dt("dddd",(function(t,e){return e.weekdaysRegex(t)})),mt(["dd","ddd","dddd"],(function(t,e,n,i){var a=n._locale.weekdaysParse(t,i,n._strict);null!=a?e.d=a:g(n).invalidWeekday=t})),mt(["d","e","E"],(function(t,e,n,i){e[i]=k(t)}));var Xt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Kt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Jt="Su_Mo_Tu_We_Th_Fr_Sa".split("_");function Qt(t,e,n){var i,a,r,o=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],i=0;i<7;++i)r=f([2e3,1]).day(i),this._minWeekdaysParse[i]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[i]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[i]=this.weekdays(r,"").toLocaleLowerCase();return n?"dddd"===e?-1!==(a=Pt.call(this._weekdaysParse,o))?a:null:"ddd"===e?-1!==(a=Pt.call(this._shortWeekdaysParse,o))?a:null:-1!==(a=Pt.call(this._minWeekdaysParse,o))?a:null:"dddd"===e?-1!==(a=Pt.call(this._weekdaysParse,o))?a:-1!==(a=Pt.call(this._shortWeekdaysParse,o))?a:-1!==(a=Pt.call(this._minWeekdaysParse,o))?a:null:"ddd"===e?-1!==(a=Pt.call(this._shortWeekdaysParse,o))?a:-1!==(a=Pt.call(this._weekdaysParse,o))?a:-1!==(a=Pt.call(this._minWeekdaysParse,o))?a:null:-1!==(a=Pt.call(this._minWeekdaysParse,o))?a:-1!==(a=Pt.call(this._weekdaysParse,o))?a:-1!==(a=Pt.call(this._shortWeekdaysParse,o))?a:null}var te=lt,ee=lt,ne=lt;function ie(){function t(t,e){return e.length-t.length}var e,n,i,a,r,o=[],s=[],l=[],u=[];for(e=0;e<7;e++)n=f([2e3,1]).day(e),i=this.weekdaysMin(n,""),a=this.weekdaysShort(n,""),r=this.weekdays(n,""),o.push(i),s.push(a),l.push(r),u.push(i),u.push(a),u.push(r);for(o.sort(t),s.sort(t),l.sort(t),u.sort(t),e=0;e<7;e++)s[e]=ct(s[e]),l[e]=ct(l[e]),u[e]=ct(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function ae(){return this.hours()%12||12}function re(t,e){j(t,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)}))}function oe(t,e){return e._meridiemParse}j("H",["HH",2],0,"hour"),j("h",["hh",2],0,ae),j("k",["kk",2],0,(function(){return this.hours()||24})),j("hmm",0,0,(function(){return""+ae.apply(this)+z(this.minutes(),2)})),j("hmmss",0,0,(function(){return""+ae.apply(this)+z(this.minutes(),2)+z(this.seconds(),2)})),j("Hmm",0,0,(function(){return""+this.hours()+z(this.minutes(),2)})),j("Hmmss",0,0,(function(){return""+this.hours()+z(this.minutes(),2)+z(this.seconds(),2)})),re("a",!0),re("A",!1),L("hour","h"),Y("hour",13),dt("a",oe),dt("A",oe),dt("H",J),dt("h",J),dt("k",J),dt("HH",J,Z),dt("hh",J,Z),dt("kk",J,Z),dt("hmm",Q),dt("hmmss",tt),dt("Hmm",Q),dt("Hmmss",tt),gt(["H","HH"],xt),gt(["k","kk"],(function(t,e,n){var i=k(t);e[xt]=24===i?0:i})),gt(["a","A"],(function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t})),gt(["h","hh"],(function(t,e,n){e[xt]=k(t),g(n).bigHour=!0})),gt("hmm",(function(t,e,n){var i=t.length-2;e[xt]=k(t.substr(0,i)),e[_t]=k(t.substr(i)),g(n).bigHour=!0})),gt("hmmss",(function(t,e,n){var i=t.length-4,a=t.length-2;e[xt]=k(t.substr(0,i)),e[_t]=k(t.substr(i,2)),e[wt]=k(t.substr(a)),g(n).bigHour=!0})),gt("Hmm",(function(t,e,n){var i=t.length-2;e[xt]=k(t.substr(0,i)),e[_t]=k(t.substr(i))})),gt("Hmmss",(function(t,e,n){var i=t.length-4,a=t.length-2;e[xt]=k(t.substr(0,i)),e[_t]=k(t.substr(i,2)),e[wt]=k(t.substr(a))}));var se,le=Ot("Hours",!0),ue={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Rt,monthsShort:Nt,week:{dow:0,doy:6},weekdays:Xt,weekdaysMin:Jt,weekdaysShort:Kt,meridiemParse:/[ap]\.?m?\.?/i},de={},he={};function ce(t){return t?t.toLowerCase().replace("_","-"):t}function fe(n){var i=null;if(!de[n]&&e&&e.exports)try{i=se._abbr,t(),ge(i)}catch(t){}return de[n]}function ge(t,e){var n;return t&&((n=s(e)?pe(t):me(t,e))?se=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),se._abbr}function me(t,e){if(null!==e){var n,i=ue;if(e.abbr=t,null!=de[t])T("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=de[t]._config;else if(null!=e.parentLocale)if(null!=de[e.parentLocale])i=de[e.parentLocale]._config;else{if(null==(n=fe(e.parentLocale)))return he[e.parentLocale]||(he[e.parentLocale]=[]),he[e.parentLocale].push({name:t,config:e}),null;i=n._config}return de[t]=new F(A(i,e)),he[t]&&he[t].forEach((function(t){me(t.name,t.config)})),ge(t),de[t]}return delete de[t],null}function pe(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return se;if(!r(t)){if(e=fe(t))return e;t=[t]}return function(t){for(var e,n,i,a,r=0;r0;){if(i=fe(a.slice(0,e).join("-")))return i;if(n&&n.length>=e&&M(a,n,!0)>=e-1)break;e--}r++}return se}(t)}function ve(t){var e,n=t._a;return n&&-2===g(t).overflow&&(e=n[bt]<0||n[bt]>11?bt:n[yt]<1||n[yt]>It(n[vt],n[bt])?yt:n[xt]<0||n[xt]>24||24===n[xt]&&(0!==n[_t]||0!==n[wt]||0!==n[kt])?xt:n[_t]<0||n[_t]>59?_t:n[wt]<0||n[wt]>59?wt:n[kt]<0||n[kt]>999?kt:-1,g(t)._overflowDayOfYear&&(eyt)&&(e=yt),g(t)._overflowWeeks&&-1===e&&(e=Mt),g(t)._overflowWeekday&&-1===e&&(e=St),g(t).overflow=e),t}function be(t,e,n){return null!=t?t:null!=e?e:n}function ye(t){var e,n,i,r,o,s=[];if(!t._d){for(i=function(t){var e=new Date(a.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[yt]&&null==t._a[bt]&&function(t){var e,n,i,a,r,o,s,l;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)r=1,o=4,n=be(e.GG,t._a[vt],qt(Le(),1,4).year),i=be(e.W,1),((a=be(e.E,1))<1||a>7)&&(l=!0);else{r=t._locale._week.dow,o=t._locale._week.doy;var u=qt(Le(),r,o);n=be(e.gg,t._a[vt],u.year),i=be(e.w,u.week),null!=e.d?((a=e.d)<0||a>6)&&(l=!0):null!=e.e?(a=e.e+r,(e.e<0||e.e>6)&&(l=!0)):a=r}i<1||i>Zt(n,r,o)?g(t)._overflowWeeks=!0:null!=l?g(t)._overflowWeekday=!0:(s=Gt(n,i,a,r,o),t._a[vt]=s.year,t._dayOfYear=s.dayOfYear)}(t),null!=t._dayOfYear&&(o=be(t._a[vt],i[vt]),(t._dayOfYear>Dt(o)||0===t._dayOfYear)&&(g(t)._overflowDayOfYear=!0),n=jt(o,0,t._dayOfYear),t._a[bt]=n.getUTCMonth(),t._a[yt]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=i[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[xt]&&0===t._a[_t]&&0===t._a[wt]&&0===t._a[kt]&&(t._nextDay=!0,t._a[xt]=0),t._d=(t._useUTC?jt:Bt).apply(null,s),r=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[xt]=24),t._w&&void 0!==t._w.d&&t._w.d!==r&&(g(t).weekdayMismatch=!0)}}var xe=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,_e=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,we=/Z|[+-]\d\d(?::?\d\d)?/,ke=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Me=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Se=/^\/?Date\((\-?\d+)/i;function De(t){var e,n,i,a,r,o,s=t._i,l=xe.exec(s)||_e.exec(s);if(l){for(g(t).iso=!0,e=0,n=ke.length;e0&&g(t).unusedInput.push(o),s=s.slice(s.indexOf(n)+n.length),u+=n.length),B[r]?(n?g(t).empty=!1:g(t).unusedTokens.push(r),pt(r,n,t)):t._strict&&!n&&g(t).unusedTokens.push(r);g(t).charsLeftOver=l-u,s.length>0&&g(t).unusedInput.push(s),t._a[xt]<=12&&!0===g(t).bigHour&&t._a[xt]>0&&(g(t).bigHour=void 0),g(t).parsedDateParts=t._a.slice(0),g(t).meridiem=t._meridiem,t._a[xt]=function(t,e,n){var i;return null==n?e:null!=t.meridiemHour?t.meridiemHour(e,n):null!=t.isPM?((i=t.isPM(n))&&e<12&&(e+=12),i||12!==e||(e=0),e):e}(t._locale,t._a[xt],t._meridiem),ye(t),ve(t)}else Oe(t);else De(t)}function Fe(t){var e=t._i,n=t._f;return t._locale=t._locale||pe(t._l),null===e||void 0===n&&""===e?p({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),_(e)?new x(ve(e)):(u(e)?t._d=e:r(n)?function(t){var e,n,i,a,r;if(0===t._f.length)return g(t).invalidFormat=!0,void(t._d=new Date(NaN));for(a=0;athis?this:t:p()}));function We(t,e){var n,i;if(1===e.length&&r(e[0])&&(e=e[0]),!e.length)return Le();for(n=e[0],i=1;i=0?new Date(t+400,e,n)-hn:new Date(t,e,n).valueOf()}function gn(t,e,n){return t<100&&t>=0?Date.UTC(t+400,e,n)-hn:Date.UTC(t,e,n)}function mn(t,e){j(0,[t,t.length],0,e)}function pn(t,e,n,i,a){var r;return null==t?qt(this,i,a).year:(e>(r=Zt(t,i,a))&&(e=r),vn.call(this,t,e,n,i,a))}function vn(t,e,n,i,a){var r=Gt(t,e,n,i,a),o=jt(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}j(0,["gg",2],0,(function(){return this.weekYear()%100})),j(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),mn("gggg","weekYear"),mn("ggggg","weekYear"),mn("GGGG","isoWeekYear"),mn("GGGGG","isoWeekYear"),L("weekYear","gg"),L("isoWeekYear","GG"),Y("weekYear",1),Y("isoWeekYear",1),dt("G",rt),dt("g",rt),dt("GG",J,Z),dt("gg",J,Z),dt("GGGG",nt,X),dt("gggg",nt,X),dt("GGGGG",it,K),dt("ggggg",it,K),mt(["gggg","ggggg","GGGG","GGGGG"],(function(t,e,n,i){e[i.substr(0,2)]=k(t)})),mt(["gg","GG"],(function(t,e,n,i){e[i]=a.parseTwoDigitYear(t)})),j("Q",0,"Qo","quarter"),L("quarter","Q"),Y("quarter",7),dt("Q",q),gt("Q",(function(t,e){e[bt]=3*(k(t)-1)})),j("D",["DD",2],"Do","date"),L("date","D"),Y("date",9),dt("D",J),dt("DD",J,Z),dt("Do",(function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient})),gt(["D","DD"],yt),gt("Do",(function(t,e){e[yt]=k(t.match(J)[0])}));var bn=Ot("Date",!0);j("DDD",["DDDD",3],"DDDo","dayOfYear"),L("dayOfYear","DDD"),Y("dayOfYear",4),dt("DDD",et),dt("DDDD",$),gt(["DDD","DDDD"],(function(t,e,n){n._dayOfYear=k(t)})),j("m",["mm",2],0,"minute"),L("minute","m"),Y("minute",14),dt("m",J),dt("mm",J,Z),gt(["m","mm"],_t);var yn=Ot("Minutes",!1);j("s",["ss",2],0,"second"),L("second","s"),Y("second",15),dt("s",J),dt("ss",J,Z),gt(["s","ss"],wt);var xn,_n=Ot("Seconds",!1);for(j("S",0,0,(function(){return~~(this.millisecond()/100)})),j(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),j(0,["SSS",3],0,"millisecond"),j(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),j(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),j(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),j(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),j(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),j(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),L("millisecond","ms"),Y("millisecond",16),dt("S",et,q),dt("SS",et,Z),dt("SSS",et,$),xn="SSSS";xn.length<=9;xn+="S")dt(xn,at);function wn(t,e){e[kt]=k(1e3*("0."+t))}for(xn="S";xn.length<=9;xn+="S")gt(xn,wn);var kn=Ot("Milliseconds",!1);j("z",0,0,"zoneAbbr"),j("zz",0,0,"zoneName");var Mn=x.prototype;function Sn(t){return t}Mn.add=en,Mn.calendar=function(t,e){var n=t||Le(),i=Ue(n,this).startOf("day"),r=a.calendarFormat(this,i)||"sameElse",o=e&&(O(e[r])?e[r].call(this,n):e[r]);return this.format(o||this.localeData().calendar(r,this,Le(n)))},Mn.clone=function(){return new x(this)},Mn.diff=function(t,e,n){var i,a,r;if(!this.isValid())return NaN;if(!(i=Ue(t,this)).isValid())return NaN;switch(a=6e4*(i.utcOffset()-this.utcOffset()),e=R(e)){case"year":r=an(this,i)/12;break;case"month":r=an(this,i);break;case"quarter":r=an(this,i)/3;break;case"second":r=(this-i)/1e3;break;case"minute":r=(this-i)/6e4;break;case"hour":r=(this-i)/36e5;break;case"day":r=(this-i-a)/864e5;break;case"week":r=(this-i-a)/6048e5;break;default:r=this-i}return n?r:w(r)},Mn.endOf=function(t){var e;if(void 0===(t=R(t))||"millisecond"===t||!this.isValid())return this;var n=this._isUTC?gn:fn;switch(t){case"year":e=n(this.year()+1,0,1)-1;break;case"quarter":e=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=n(this.year(),this.month()+1,1)-1;break;case"week":e=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=dn-cn(e+(this._isUTC?0:this.utcOffset()*un),dn)-1;break;case"minute":e=this._d.valueOf(),e+=un-cn(e,un)-1;break;case"second":e=this._d.valueOf(),e+=ln-cn(e,ln)-1}return this._d.setTime(e),a.updateOffset(this,!0),this},Mn.format=function(t){t||(t=this.isUtc()?a.defaultFormatUtc:a.defaultFormat);var e=U(this,t);return this.localeData().postformat(e)},Mn.from=function(t,e){return this.isValid()&&(_(t)&&t.isValid()||Le(t).isValid())?Xe({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},Mn.fromNow=function(t){return this.from(Le(),t)},Mn.to=function(t,e){return this.isValid()&&(_(t)&&t.isValid()||Le(t).isValid())?Xe({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},Mn.toNow=function(t){return this.to(Le(),t)},Mn.get=function(t){return O(this[t=R(t)])?this[t]():this},Mn.invalidAt=function(){return g(this).overflow},Mn.isAfter=function(t,e){var n=_(t)?t:Le(t);return!(!this.isValid()||!n.isValid())&&("millisecond"===(e=R(e)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?U(n,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):O(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(n,"Z")):U(n,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},Mn.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var n="["+t+'("]',i=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",a=e+'[")]';return this.format(n+i+"-MM-DD[T]HH:mm:ss.SSS"+a)},Mn.toJSON=function(){return this.isValid()?this.toISOString():null},Mn.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},Mn.unix=function(){return Math.floor(this.valueOf()/1e3)},Mn.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},Mn.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},Mn.year=Tt,Mn.isLeapYear=function(){return Ct(this.year())},Mn.weekYear=function(t){return pn.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},Mn.isoWeekYear=function(t){return pn.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},Mn.quarter=Mn.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},Mn.month=zt,Mn.daysInMonth=function(){return It(this.year(),this.month())},Mn.week=Mn.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},Mn.isoWeek=Mn.isoWeeks=function(t){var e=qt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},Mn.weeksInYear=function(){var t=this.localeData()._week;return Zt(this.year(),t.dow,t.doy)},Mn.isoWeeksInYear=function(){return Zt(this.year(),1,4)},Mn.date=bn,Mn.day=Mn.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},Mn.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},Mn.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},Mn.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},Mn.hour=Mn.hours=le,Mn.minute=Mn.minutes=yn,Mn.second=Mn.seconds=_n,Mn.millisecond=Mn.milliseconds=kn,Mn.utcOffset=function(t,e,n){var i,r=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=je(st,t)))return this}else Math.abs(t)<16&&!n&&(t*=60);return!this._isUTC&&e&&(i=Ge(this)),this._offset=t,this._isUTC=!0,null!=i&&this.add(i,"m"),r!==t&&(!e||this._changeInProgress?tn(this,Xe(t-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,a.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Ge(this)},Mn.utc=function(t){return this.utcOffset(0,t)},Mn.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Ge(this),"m")),this},Mn.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=je(ot,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},Mn.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Le(t).utcOffset():0,(this.utcOffset()-t)%60==0)},Mn.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},Mn.isLocal=function(){return!!this.isValid()&&!this._isUTC},Mn.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},Mn.isUtc=qe,Mn.isUTC=qe,Mn.zoneAbbr=function(){return this._isUTC?"UTC":""},Mn.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},Mn.dates=D("dates accessor is deprecated. Use date instead.",bn),Mn.months=D("months accessor is deprecated. Use month instead",zt),Mn.years=D("years accessor is deprecated. Use year instead",Tt),Mn.zone=D("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()})),Mn.isDSTShifted=D("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var t={};if(b(t,this),(t=Fe(t))._a){var e=t._isUTC?f(t._a):Le(t._a);this._isDSTShifted=this.isValid()&&M(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var Dn=F.prototype;function Cn(t,e,n,i){var a=pe(),r=f().set(i,e);return a[n](r,t)}function Pn(t,e,n){if(l(t)&&(e=t,t=void 0),t=t||"",null!=e)return Cn(t,e,n,"month");var i,a=[];for(i=0;i<12;i++)a[i]=Cn(t,i,n,"month");return a}function Tn(t,e,n,i){"boolean"==typeof t?(l(e)&&(n=e,e=void 0),e=e||""):(n=e=t,t=!1,l(e)&&(n=e,e=void 0),e=e||"");var a,r=pe(),o=t?r._week.dow:0;if(null!=n)return Cn(e,(n+o)%7,i,"day");var s=[];for(a=0;a<7;a++)s[a]=Cn(e,(a+o)%7,i,"day");return s}Dn.calendar=function(t,e,n){var i=this._calendar[t]||this._calendar.sameElse;return O(i)?i.call(e,n):i},Dn.longDateFormat=function(t){var e=this._longDateFormat[t],n=this._longDateFormat[t.toUpperCase()];return e||!n?e:(this._longDateFormat[t]=n.replace(/MMMM|MM|DD|dddd/g,(function(t){return t.slice(1)})),this._longDateFormat[t])},Dn.invalidDate=function(){return this._invalidDate},Dn.ordinal=function(t){return this._ordinal.replace("%d",t)},Dn.preparse=Sn,Dn.postformat=Sn,Dn.relativeTime=function(t,e,n,i){var a=this._relativeTime[n];return O(a)?a(t,e,n,i):a.replace(/%d/i,t)},Dn.pastFuture=function(t,e){var n=this._relativeTime[t>0?"future":"past"];return O(n)?n(e):n.replace(/%s/i,e)},Dn.set=function(t){var e,n;for(n in t)O(e=t[n])?this[n]=e:this["_"+n]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},Dn.months=function(t,e){return t?r(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Lt).test(e)?"format":"standalone"][t.month()]:r(this._months)?this._months:this._months.standalone},Dn.monthsShort=function(t,e){return t?r(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Lt.test(e)?"format":"standalone"][t.month()]:r(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},Dn.monthsParse=function(t,e,n){var i,a,r;if(this._monthsParseExact)return Wt.call(this,t,e,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),i=0;i<12;i++){if(a=f([2e3,i]),n&&!this._longMonthsParse[i]&&(this._longMonthsParse[i]=new RegExp("^"+this.months(a,"").replace(".","")+"$","i"),this._shortMonthsParse[i]=new RegExp("^"+this.monthsShort(a,"").replace(".","")+"$","i")),n||this._monthsParse[i]||(r="^"+this.months(a,"")+"|^"+this.monthsShort(a,""),this._monthsParse[i]=new RegExp(r.replace(".",""),"i")),n&&"MMMM"===e&&this._longMonthsParse[i].test(t))return i;if(n&&"MMM"===e&&this._shortMonthsParse[i].test(t))return i;if(!n&&this._monthsParse[i].test(t))return i}},Dn.monthsRegex=function(t){return this._monthsParseExact?(h(this,"_monthsRegex")||Ht.call(this),t?this._monthsStrictRegex:this._monthsRegex):(h(this,"_monthsRegex")||(this._monthsRegex=Vt),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},Dn.monthsShortRegex=function(t){return this._monthsParseExact?(h(this,"_monthsRegex")||Ht.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(h(this,"_monthsShortRegex")||(this._monthsShortRegex=Et),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},Dn.week=function(t){return qt(t,this._week.dow,this._week.doy).week},Dn.firstDayOfYear=function(){return this._week.doy},Dn.firstDayOfWeek=function(){return this._week.dow},Dn.weekdays=function(t,e){var n=r(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?$t(n,this._week.dow):t?n[t.day()]:n},Dn.weekdaysMin=function(t){return!0===t?$t(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},Dn.weekdaysShort=function(t){return!0===t?$t(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},Dn.weekdaysParse=function(t,e,n){var i,a,r;if(this._weekdaysParseExact)return Qt.call(this,t,e,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),i=0;i<7;i++){if(a=f([2e3,1]).day(i),n&&!this._fullWeekdaysParse[i]&&(this._fullWeekdaysParse[i]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[i]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[i]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[i]||(r="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[i]=new RegExp(r.replace(".",""),"i")),n&&"dddd"===e&&this._fullWeekdaysParse[i].test(t))return i;if(n&&"ddd"===e&&this._shortWeekdaysParse[i].test(t))return i;if(n&&"dd"===e&&this._minWeekdaysParse[i].test(t))return i;if(!n&&this._weekdaysParse[i].test(t))return i}},Dn.weekdaysRegex=function(t){return this._weekdaysParseExact?(h(this,"_weekdaysRegex")||ie.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(h(this,"_weekdaysRegex")||(this._weekdaysRegex=te),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},Dn.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(h(this,"_weekdaysRegex")||ie.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(h(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ee),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},Dn.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(h(this,"_weekdaysRegex")||ie.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(h(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=ne),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},Dn.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},Dn.meridiem=function(t,e,n){return t>11?n?"pm":"PM":n?"am":"AM"},ge("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===k(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),a.lang=D("moment.lang is deprecated. Use moment.locale instead.",ge),a.langData=D("moment.langData is deprecated. Use moment.localeData instead.",pe);var On=Math.abs;function An(t,e,n,i){var a=Xe(e,n);return t._milliseconds+=i*a._milliseconds,t._days+=i*a._days,t._months+=i*a._months,t._bubble()}function Fn(t){return t<0?Math.floor(t):Math.ceil(t)}function In(t){return 4800*t/146097}function Ln(t){return 146097*t/4800}function Rn(t){return function(){return this.as(t)}}var Nn=Rn("ms"),Wn=Rn("s"),Yn=Rn("m"),zn=Rn("h"),En=Rn("d"),Vn=Rn("w"),Hn=Rn("M"),Bn=Rn("Q"),jn=Rn("y");function Un(t){return function(){return this.isValid()?this._data[t]:NaN}}var Gn=Un("milliseconds"),qn=Un("seconds"),Zn=Un("minutes"),$n=Un("hours"),Xn=Un("days"),Kn=Un("months"),Jn=Un("years"),Qn=Math.round,ti={ss:44,s:45,m:45,h:22,d:26,M:11};function ei(t,e,n,i,a){return a.relativeTime(e||1,!!n,t,i)}var ni=Math.abs;function ii(t){return(t>0)-(t<0)||+t}function ai(){if(!this.isValid())return this.localeData().invalidDate();var t,e,n=ni(this._milliseconds)/1e3,i=ni(this._days),a=ni(this._months);t=w(n/60),e=w(t/60),n%=60,t%=60;var r=w(a/12),o=a%=12,s=i,l=e,u=t,d=n?n.toFixed(3).replace(/\.?0+$/,""):"",h=this.asSeconds();if(!h)return"P0D";var c=h<0?"-":"",f=ii(this._months)!==ii(h)?"-":"",g=ii(this._days)!==ii(h)?"-":"",m=ii(this._milliseconds)!==ii(h)?"-":"";return c+"P"+(r?f+r+"Y":"")+(o?f+o+"M":"")+(s?g+s+"D":"")+(l||u||d?"T":"")+(l?m+l+"H":"")+(u?m+u+"M":"")+(d?m+d+"S":"")}var ri=ze.prototype;return ri.isValid=function(){return this._isValid},ri.abs=function(){var t=this._data;return this._milliseconds=On(this._milliseconds),this._days=On(this._days),this._months=On(this._months),t.milliseconds=On(t.milliseconds),t.seconds=On(t.seconds),t.minutes=On(t.minutes),t.hours=On(t.hours),t.months=On(t.months),t.years=On(t.years),this},ri.add=function(t,e){return An(this,t,e,1)},ri.subtract=function(t,e){return An(this,t,e,-1)},ri.as=function(t){if(!this.isValid())return NaN;var e,n,i=this._milliseconds;if("month"===(t=R(t))||"quarter"===t||"year"===t)switch(e=this._days+i/864e5,n=this._months+In(e),t){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(e=this._days+Math.round(Ln(this._months)),t){case"week":return e/7+i/6048e5;case"day":return e+i/864e5;case"hour":return 24*e+i/36e5;case"minute":return 1440*e+i/6e4;case"second":return 86400*e+i/1e3;case"millisecond":return Math.floor(864e5*e)+i;default:throw new Error("Unknown unit "+t)}},ri.asMilliseconds=Nn,ri.asSeconds=Wn,ri.asMinutes=Yn,ri.asHours=zn,ri.asDays=En,ri.asWeeks=Vn,ri.asMonths=Hn,ri.asQuarters=Bn,ri.asYears=jn,ri.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},ri._bubble=function(){var t,e,n,i,a,r=this._milliseconds,o=this._days,s=this._months,l=this._data;return r>=0&&o>=0&&s>=0||r<=0&&o<=0&&s<=0||(r+=864e5*Fn(Ln(s)+o),o=0,s=0),l.milliseconds=r%1e3,t=w(r/1e3),l.seconds=t%60,e=w(t/60),l.minutes=e%60,n=w(e/60),l.hours=n%24,o+=w(n/24),a=w(In(o)),s+=a,o-=Fn(Ln(a)),i=w(s/12),s%=12,l.days=o,l.months=s,l.years=i,this},ri.clone=function(){return Xe(this)},ri.get=function(t){return t=R(t),this.isValid()?this[t+"s"]():NaN},ri.milliseconds=Gn,ri.seconds=qn,ri.minutes=Zn,ri.hours=$n,ri.days=Xn,ri.weeks=function(){return w(this.days()/7)},ri.months=Kn,ri.years=Jn,ri.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),n=function(t,e,n){var i=Xe(t).abs(),a=Qn(i.as("s")),r=Qn(i.as("m")),o=Qn(i.as("h")),s=Qn(i.as("d")),l=Qn(i.as("M")),u=Qn(i.as("y")),d=a<=ti.ss&&["s",a]||a0,d[4]=n,ei.apply(null,d)}(this,!t,e);return t&&(n=e.pastFuture(+this,n)),e.postformat(n)},ri.toISOString=ai,ri.toString=ai,ri.toJSON=ai,ri.locale=rn,ri.localeData=sn,ri.toIsoString=D("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ai),ri.lang=on,j("X",0,0,"unix"),j("x",0,0,"valueOf"),dt("x",rt),dt("X",/[+-]?\d+(\.\d{1,3})?/),gt("X",(function(t,e,n){n._d=new Date(1e3*parseFloat(t,10))})),gt("x",(function(t,e,n){n._d=new Date(k(t))})),a.version="2.24.0",n=Le,a.fn=Mn,a.min=function(){return We("isBefore",[].slice.call(arguments,0))},a.max=function(){return We("isAfter",[].slice.call(arguments,0))},a.now=function(){return Date.now?Date.now():+new Date},a.utc=f,a.unix=function(t){return Le(1e3*t)},a.months=function(t,e){return Pn(t,e,"months")},a.isDate=u,a.locale=ge,a.invalid=p,a.duration=Xe,a.isMoment=_,a.weekdays=function(t,e,n){return Tn(t,e,n,"weekdays")},a.parseZone=function(){return Le.apply(null,arguments).parseZone()},a.localeData=pe,a.isDuration=Ee,a.monthsShort=function(t,e){return Pn(t,e,"monthsShort")},a.weekdaysMin=function(t,e,n){return Tn(t,e,n,"weekdaysMin")},a.defineLocale=me,a.updateLocale=function(t,e){if(null!=e){var n,i,a=ue;null!=(i=fe(t))&&(a=i._config),e=A(a,e),(n=new F(e)).parentLocale=de[t],de[t]=n,ge(t)}else null!=de[t]&&(null!=de[t].parentLocale?de[t]=de[t].parentLocale:null!=de[t]&&delete de[t]);return de[t]},a.locales=function(){return C(de)},a.weekdaysShort=function(t,e,n){return Tn(t,e,n,"weekdaysShort")},a.normalizeUnits=R,a.relativeTimeRounding=function(t){return void 0===t?Qn:"function"==typeof t&&(Qn=t,!0)},a.relativeTimeThreshold=function(t,e){return void 0!==ti[t]&&(void 0===e?ti[t]:(ti[t]=e,"s"===t&&(ti.ss=e-1),!0))},a.calendarFormat=function(t,e){var n=t.diff(e,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},a.prototype=Mn,a.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},a}()})),mi={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};rn._date.override("function"==typeof gi?{_id:"moment",formats:function(){return mi},parse:function(t,e){return"string"==typeof t&&"string"==typeof e?t=gi(t,e):t instanceof gi||(t=gi(t)),t.isValid()?t.valueOf():null},format:function(t,e){return gi(t).format(e)},add:function(t,e,n){return gi(t).add(e,n).valueOf()},diff:function(t,e,n){return gi(t).diff(gi(e),n)},startOf:function(t,e,n){return t=gi(t),"isoWeek"===e?t.isoWeekday(n).valueOf():t.startOf(e).valueOf()},endOf:function(t,e){return gi(t).endOf(e).valueOf()},_create:function(t){return gi(t)}}:{}),W._set("global",{plugins:{filler:{propagate:!0}}});var pi={dataset:function(t){var e=t.fill,n=t.chart,i=n.getDatasetMeta(e),a=i&&n.isDatasetVisible(e)&&i.dataset._children||[],r=a.length||0;return r?function(t,e){return e=n)&&i;switch(r){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return r;default:return!1}}function bi(t){return(t.el._scale||{}).getPointPositionForValue?function(t){var e,n,i,a,r,o=t.el._scale,s=o.options,l=o.chart.data.labels.length,u=t.fill,d=[];if(!l)return null;for(e=s.ticks.reverse?o.max:o.min,n=s.ticks.reverse?o.min:o.max,i=o.getPointPositionForValue(0,e),a=0;a0;--r)H.canvas.lineTo(t,n[r],n[r-1],!0);else for(o=n[0].cx,s=n[0].cy,l=Math.sqrt(Math.pow(n[0].x-o,2)+Math.pow(n[0].y-s,2)),r=a-1;r>0;--r)t.arc(o,s,l,n[r].angle,n[r-1].angle,!0)}}function ki(t,e,n,i,a,r){var o,s,l,u,d,h,c,f,g=e.length,m=i.spanGaps,p=[],v=[],b=0,y=0;for(t.beginPath(),o=0,s=g;o=0;--n)(e=l[n].$filler)&&e.visible&&(a=(i=e.el)._view,r=i._children||[],o=e.mapper,s=a.backgroundColor||W.global.defaultColor,o&&s&&r.length&&(H.canvas.clipArea(u,t.chartArea),ki(u,r,o,a,s,i._loop),H.canvas.unclipArea(u)))}},Si=H.rtl.getRtlAdapter,Di=H.noop,Ci=H.valueOrDefault;function Pi(t,e){return t.usePointStyle&&t.boxWidth>e?e:t.boxWidth}W._set("global",{legend:{display:!0,position:"top",align:"center",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var n=e.datasetIndex,i=this.chart,a=i.getDatasetMeta(n);a.hidden=null===a.hidden?!i.data.datasets[n].hidden:null,i.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data.datasets,n=t.options.legend||{},i=n.labels&&n.labels.usePointStyle;return t._getSortedDatasetMetas().map((function(n){var a=n.controller.getStyle(i?0:void 0);return{text:e[n.index].label,fillStyle:a.backgroundColor,hidden:!t.isDatasetVisible(n.index),lineCap:a.borderCapStyle,lineDash:a.borderDash,lineDashOffset:a.borderDashOffset,lineJoin:a.borderJoinStyle,lineWidth:a.borderWidth,strokeStyle:a.borderColor,pointStyle:a.pointStyle,rotation:a.rotation,datasetIndex:n.index}}),this)}}},legendCallback:function(t){var e,n,i,a=document.createElement("ul"),r=t.data.datasets;for(a.setAttribute("class",t.id+"-legend"),e=0,n=r.length;el.width)&&(h+=o+n.padding,d[d.length-(e>0?0:1)]=0),s[e]={left:0,top:0,width:i,height:o},d[d.length-1]+=i+n.padding})),l.height+=h}else{var c=n.padding,f=t.columnWidths=[],g=t.columnHeights=[],m=n.padding,p=0,v=0;H.each(t.legendItems,(function(t,e){var i=Pi(n,o)+o/2+a.measureText(t.text).width;e>0&&v+o+2*c>l.height&&(m+=p+n.padding,f.push(p),g.push(v),p=0,v=0),p=Math.max(p,i),v+=o+c,s[e]={left:0,top:0,width:i,height:o}})),m+=p,f.push(p),g.push(v),l.width+=m}t.width=l.width,t.height=l.height}else t.width=l.width=t.height=l.height=0},afterFit:Di,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,n=e.labels,i=W.global,a=i.defaultColor,r=i.elements.line,o=t.height,s=t.columnHeights,l=t.width,u=t.lineWidths;if(e.display){var d,h=Si(e.rtl,t.left,t.minSize.width),c=t.ctx,f=Ci(n.fontColor,i.defaultFontColor),g=H.options._parseFont(n),m=g.size;c.textAlign=h.textAlign("left"),c.textBaseline="middle",c.lineWidth=.5,c.strokeStyle=f,c.fillStyle=f,c.font=g.string;var p=Pi(n,m),v=t.legendHitBoxes,b=function(t,i){switch(e.align){case"start":return n.padding;case"end":return t-i;default:return(t-i+n.padding)/2}},y=t.isHorizontal();d=y?{x:t.left+b(l,u[0]),y:t.top+n.padding,line:0}:{x:t.left+n.padding,y:t.top+b(o,s[0]),line:0},H.rtl.overrideTextDirection(t.ctx,e.textDirection);var x=m+n.padding;H.each(t.legendItems,(function(e,i){var f=c.measureText(e.text).width,g=p+m/2+f,_=d.x,w=d.y;h.setWidth(t.minSize.width),y?i>0&&_+g+n.padding>t.left+t.minSize.width&&(w=d.y+=x,d.line++,_=d.x=t.left+b(l,u[d.line])):i>0&&w+x>t.top+t.minSize.height&&(_=d.x=_+t.columnWidths[d.line]+n.padding,d.line++,w=d.y=t.top+b(o,s[d.line]));var k=h.x(_);!function(t,e,i){if(!(isNaN(p)||p<=0)){c.save();var o=Ci(i.lineWidth,r.borderWidth);if(c.fillStyle=Ci(i.fillStyle,a),c.lineCap=Ci(i.lineCap,r.borderCapStyle),c.lineDashOffset=Ci(i.lineDashOffset,r.borderDashOffset),c.lineJoin=Ci(i.lineJoin,r.borderJoinStyle),c.lineWidth=o,c.strokeStyle=Ci(i.strokeStyle,a),c.setLineDash&&c.setLineDash(Ci(i.lineDash,r.borderDash)),n&&n.usePointStyle){var s=p*Math.SQRT2/2,l=h.xPlus(t,p/2),u=e+m/2;H.canvas.drawPoint(c,i.pointStyle,s,l,u,i.rotation)}else c.fillRect(h.leftForLtr(t,p),e,p,m),0!==o&&c.strokeRect(h.leftForLtr(t,p),e,p,m);c.restore()}}(k,w,e),v[i].left=h.leftForLtr(k,v[i].width),v[i].top=w,function(t,e,n,i){var a=m/2,r=h.xPlus(t,p+a),o=e+a;c.fillText(n.text,r,o),n.hidden&&(c.beginPath(),c.lineWidth=2,c.moveTo(r,o),c.lineTo(h.xPlus(r,i),o),c.stroke())}(k,w,e,f),y?d.x+=g+n.padding:d.y+=x})),H.rtl.restoreTextDirection(t.ctx,e.textDirection)}},_getLegendItemAt:function(t,e){var n,i,a,r=this;if(t>=r.left&&t<=r.right&&e>=r.top&&e<=r.bottom)for(a=r.legendHitBoxes,n=0;n=(i=a[n]).left&&t<=i.left+i.width&&e>=i.top&&e<=i.top+i.height)return r.legendItems[n];return null},handleEvent:function(t){var e,n=this,i=n.options,a="mouseup"===t.type?"click":t.type;if("mousemove"===a){if(!i.onHover&&!i.onLeave)return}else{if("click"!==a)return;if(!i.onClick)return}e=n._getLegendItemAt(t.x,t.y),"click"===a?e&&i.onClick&&i.onClick.call(n,t.native,e):(i.onLeave&&e!==n._hoveredItem&&(n._hoveredItem&&i.onLeave.call(n,t.native,n._hoveredItem),n._hoveredItem=e),i.onHover&&e&&i.onHover.call(n,t.native,e))}});function Oi(t,e){var n=new Ti({ctx:t.ctx,options:e,chart:t});me.configure(t,n,e),me.addBox(t,n),t.legend=n}var Ai={id:"legend",_element:Ti,beforeInit:function(t){var e=t.options.legend;e&&Oi(t,e)},beforeUpdate:function(t){var e=t.options.legend,n=t.legend;e?(H.mergeIf(e,W.global.legend),n?(me.configure(t,n,e),n.options=e):Oi(t,e)):n&&(me.removeBox(t,n),delete t.legend)},afterEvent:function(t,e){var n=t.legend;n&&n.handleEvent(e)}},Fi=H.noop;W._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var Ii=$.extend({initialize:function(t){H.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:Fi,update:function(t,e,n){var i=this;return i.beforeUpdate(),i.maxWidth=t,i.maxHeight=e,i.margins=n,i.beforeSetDimensions(),i.setDimensions(),i.afterSetDimensions(),i.beforeBuildLabels(),i.buildLabels(),i.afterBuildLabels(),i.beforeFit(),i.fit(),i.afterFit(),i.afterUpdate(),i.minSize},afterUpdate:Fi,beforeSetDimensions:Fi,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:Fi,beforeBuildLabels:Fi,buildLabels:Fi,afterBuildLabels:Fi,beforeFit:Fi,fit:function(){var t,e=this,n=e.options,i=e.minSize={},a=e.isHorizontal();n.display?(t=(H.isArray(n.text)?n.text.length:1)*H.options._parseFont(n).lineHeight+2*n.padding,e.width=i.width=a?e.maxWidth:t,e.height=i.height=a?t:e.maxHeight):e.width=i.width=e.height=i.height=0},afterFit:Fi,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,n=t.options;if(n.display){var i,a,r,o=H.options._parseFont(n),s=o.lineHeight,l=s/2+n.padding,u=0,d=t.top,h=t.left,c=t.bottom,f=t.right;e.fillStyle=H.valueOrDefault(n.fontColor,W.global.defaultFontColor),e.font=o.string,t.isHorizontal()?(a=h+(f-h)/2,r=d+l,i=f-h):(a="left"===n.position?h+l:f-l,r=d+(c-d)/2,i=c-d,u=Math.PI*("left"===n.position?-.5:.5)),e.save(),e.translate(a,r),e.rotate(u),e.textAlign="center",e.textBaseline="middle";var g=n.text;if(H.isArray(g))for(var m=0,p=0;p=0;i--){var a=t[i];if(e(a))return a}},H.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},H.almostEquals=function(t,e,n){return Math.abs(t-e)=t},H.max=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.max(t,e)}),Number.NEGATIVE_INFINITY)},H.min=function(t){return t.reduce((function(t,e){return isNaN(e)?t:Math.min(t,e)}),Number.POSITIVE_INFINITY)},H.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0===(t=+t)||isNaN(t)?t:t>0?1:-1},H.toRadians=function(t){return t*(Math.PI/180)},H.toDegrees=function(t){return t*(180/Math.PI)},H._decimalPlaces=function(t){if(H.isFinite(t)){for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}},H.getAngleFromPoint=function(t,e){var n=e.x-t.x,i=e.y-t.y,a=Math.sqrt(n*n+i*i),r=Math.atan2(i,n);return r<-.5*Math.PI&&(r+=2*Math.PI),{angle:r,distance:a}},H.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},H.aliasPixel=function(t){return t%2==0?0:.5},H._alignPixel=function(t,e,n){var i=t.currentDevicePixelRatio,a=n/2;return Math.round((e-a)*i)/i+a},H.splineCurve=function(t,e,n,i){var a=t.skip?e:t,r=e,o=n.skip?e:n,s=Math.sqrt(Math.pow(r.x-a.x,2)+Math.pow(r.y-a.y,2)),l=Math.sqrt(Math.pow(o.x-r.x,2)+Math.pow(o.y-r.y,2)),u=s/(s+l),d=l/(s+l),h=i*(u=isNaN(u)?0:u),c=i*(d=isNaN(d)?0:d);return{previous:{x:r.x-h*(o.x-a.x),y:r.y-h*(o.y-a.y)},next:{x:r.x+c*(o.x-a.x),y:r.y+c*(o.y-a.y)}}},H.EPSILON=Number.EPSILON||1e-14,H.splineCurveMonotone=function(t){var e,n,i,a,r,o,s,l,u,d=(t||[]).map((function(t){return{model:t._model,deltaK:0,mK:0}})),h=d.length;for(e=0;e0?d[e-1]:null,(a=e0?d[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},H.previousItem=function(t,e,n){return n?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},H.niceNum=function(t,e){var n=Math.floor(H.log10(t)),i=t/Math.pow(10,n);return(e?i<1.5?1:i<3?2:i<7?5:10:i<=1?1:i<=2?2:i<=5?5:10)*Math.pow(10,n)},H.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},H.getRelativePosition=function(t,e){var n,i,a=t.originalEvent||t,r=t.target||t.srcElement,o=r.getBoundingClientRect(),s=a.touches;s&&s.length>0?(n=s[0].clientX,i=s[0].clientY):(n=a.clientX,i=a.clientY);var l=parseFloat(H.getStyle(r,"padding-left")),u=parseFloat(H.getStyle(r,"padding-top")),d=parseFloat(H.getStyle(r,"padding-right")),h=parseFloat(H.getStyle(r,"padding-bottom")),c=o.right-o.left-l-d,f=o.bottom-o.top-u-h;return{x:n=Math.round((n-o.left-l)/c*r.width/e.currentDevicePixelRatio),y:i=Math.round((i-o.top-u)/f*r.height/e.currentDevicePixelRatio)}},H.getConstraintWidth=function(t){return n(t,"max-width","clientWidth")},H.getConstraintHeight=function(t){return n(t,"max-height","clientHeight")},H._calculatePadding=function(t,e,n){return(e=H.getStyle(t,e)).indexOf("%")>-1?n*parseInt(e,10)/100:parseInt(e,10)},H._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},H.getMaximumWidth=function(t){var e=H._getParentNode(t);if(!e)return t.clientWidth;var n=e.clientWidth,i=n-H._calculatePadding(e,"padding-left",n)-H._calculatePadding(e,"padding-right",n),a=H.getConstraintWidth(t);return isNaN(a)?i:Math.min(i,a)},H.getMaximumHeight=function(t){var e=H._getParentNode(t);if(!e)return t.clientHeight;var n=e.clientHeight,i=n-H._calculatePadding(e,"padding-top",n)-H._calculatePadding(e,"padding-bottom",n),a=H.getConstraintHeight(t);return isNaN(a)?i:Math.min(i,a)},H.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},H.retinaScale=function(t,e){var n=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==n){var i=t.canvas,a=t.height,r=t.width;i.height=a*n,i.width=r*n,t.ctx.scale(n,n),i.style.height||i.style.width||(i.style.height=a+"px",i.style.width=r+"px")}},H.fontString=function(t,e,n){return e+" "+t+"px "+n},H.longestText=function(t,e,n,i){var a=(i=i||{}).data=i.data||{},r=i.garbageCollect=i.garbageCollect||[];i.font!==e&&(a=i.data={},r=i.garbageCollect=[],i.font=e),t.font=e;var o,s,l,u,d,h=0,c=n.length;for(o=0;on.length){for(o=0;oi&&(i=r),i},H.numberOfLabelLines=function(t){var e=1;return H.each(t,(function(t){H.isArray(t)&&t.length>e&&(e=t.length)})),e},H.color=k?function(t){return t instanceof CanvasGradient&&(t=W.global.defaultColor),k(t)}:function(t){return console.error("Color.js not found!"),t},H.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:H.color(t).saturate(.5).darken(.1).rgbString()}}(),en._adapters=rn,en.Animation=K,en.animationService=J,en.controllers=Jt,en.DatasetController=it,en.defaults=W,en.Element=$,en.elements=wt,en.Interaction=re,en.layouts=me,en.platform=Ie,en.plugins=Le,en.Scale=xn,en.scaleService=Re,en.Ticks=on,en.Tooltip=Ge,en.helpers.each(fi,(function(t,e){en.scaleService.registerScaleType(e,t,t._defaults)})),Ri)Ri.hasOwnProperty(zi)&&en.plugins.register(Ri[zi]);en.platform.initialize();var Ei=en;return"undefined"!=typeof window&&(window.Chart=en),en.Chart=en,en.Legend=Ri.legend._element,en.Title=Ri.title._element,en.pluginService=en.plugins,en.PluginBase=en.Element.extend({}),en.canvasHelpers=en.helpers.canvas,en.layoutService=en.layouts,en.LinearScaleBase=Dn,en.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],(function(t){en[t]=function(e,n){return new en(e,en.helpers.merge(n||{},{type:t.charAt(0).toLowerCase()+t.slice(1)}))}})),Ei})); diff --git a/assets/js/custom-elements.js b/assets/js/custom-elements.js new file mode 100644 index 0000000..26c793f --- /dev/null +++ b/assets/js/custom-elements.js @@ -0,0 +1,120 @@ + + + +customElements.define('slide-panels', class SidePanels extends HTMLElement { + static get observedAttributes() { + return ['open']; + } + constructor() { + super(); + + this.addEventListener('pointerup', e => { + if (e.target === this) this.close(); + }) + } + get active (){ + return this.getAttribute('open'); + } + toggle(panel){ + this.active === panel ? this.close() : this.open(panel) + } + open (panel){ + this.setAttribute('open', panel); + } + close (){ + this.removeAttribute('open'); + } + attributeChangedCallback(attr, last, current) { + switch(attr) { + case 'open': for (let child of this.children) { + if (child.id === current) child.setAttribute('open', ''); + else child.removeAttribute('open', ''); + } + break; + } + } +}); + +customElements.define('detail-box', class DetailBox extends HTMLElement { + static get observedAttributes() { + return ['open']; + } + constructor() { + super(); + + this.addEventListener('pointerup', e => { + if (e.target.hasAttribute('detail-box-toggle')) { + e.stopPropagation(); + this.toggle(); + } + }); + + this.addEventListener('transitionend', e => { + let node = e.target; + if (node.parentElement === this && node.tagName === 'SECTION' && e.propertyName === 'height') { + node.style.height = this.hasAttribute('open') ? 'auto' : null; + } + }); + } + toggle(){ + this.toggleAttribute('open'); + } + attributeChangedCallback(attr, last, current) { + switch(attr) { + case 'open': + for (let node of this.children) { + if (node.tagName === 'SECTION') { + if (current !== null) { + if (node.offsetHeight < node.scrollHeight) { + node.style.height = node.scrollHeight + 'px'; + } + } + else if (node.offsetHeight > 0) { + node.style.height = node.offsetHeight + 'px'; + let scroll = this.scrollHeight; + node.style.height = 0; + } + break; + } + } + } + } +}); + +customElements.define('tab-panels', class TabPanels extends HTMLElement { + constructor() { + super(); + delegateEvent('click', 'tab-panels > nav > *', (e, delegate) => { + let nav = delegate.parentElement; + if (nav.parentElement === this) { + this.setAttribute('selected-index', Array.prototype.indexOf.call(nav.children, delegate)) + } + }, { container: this, passive: true }); + } + static get observedAttributes() { + return ['selected-index']; + } + attributeChangedCallback(attr, last, current) { + domReady.then(() => { + switch(attr) { + case 'selected-index': + let index = current || 0; + let nav = this.querySelector('nav'); + if (nav.parentElement === this) { + let tabs = nav.children; + let selected = tabs[index]; + for (let tab of tabs) tab.removeAttribute('selected'); + if (selected) selected.setAttribute('selected', ''); + let panel = Array.prototype.filter.call(this.children, node => { + if (node.tagName === 'SECTION') { + node.removeAttribute('selected'); + return true; + } + })[index]; + if (panel) panel.setAttribute('selected', ''); + } + break; + } + }); + } +}); \ No newline at end of file diff --git a/assets/js/font-awesome.js b/assets/js/font-awesome.js new file mode 100644 index 0000000..199c63b --- /dev/null +++ b/assets/js/font-awesome.js @@ -0,0 +1,2 @@ +window.FontAwesomeKitConfig = {"asyncLoading":{"enabled":true},"autoA11y":{"enabled":true},"baseUrl":"https://kit-free.fontawesome.com","detectConflictsUntil":null,"license":"free","method":"css","minify":{"enabled":true},"v4FontFaceShim":{"enabled":true},"v4shim":{"enabled":false},"version":"latest"}; +!function(){function r(e){var t,n=[],i=document,o=i.documentElement.doScroll,r="DOMContentLoaded",a=(o?/^loaded|^c/:/^loaded|^i|^c/).test(i.readyState);a||i.addEventListener(r,t=function(){for(i.removeEventListener(r,t),a=1;t=n.shift();)t()}),a?setTimeout(e,0):n.push(e)}!function(){if(!(void 0===window.Element||"classList"in document.documentElement)){var e,t,n,i=Array.prototype,o=i.push,r=i.splice,a=i.join;d.prototype={add:function(e){this.contains(e)||(o.call(this,e),this.el.className=this.toString())},contains:function(e){return-1!=this.el.className.indexOf(e)},item:function(e){return this[e]||null},remove:function(e){if(this.contains(e)){for(var t=0;t { + slidepanels.toggle(delegate.getAttribute('panel-toggle')); +}, { passive: true }); + +window.addEventListener('hashchange', (e) => slidepanels.close()); + +/* GitHub Issues */ + + let source = specConfig.source; + if (source) { + if (source.host === 'github') { + fetch(`https://api.github.com/repos/${ source.account + '/' + source.repo }/issues`) + .then(response => response.json()) + .then(issues => { + let count = issues.length; + document.querySelectorAll('[issue-count]').forEach(node => { + node.setAttribute('issue-count', count) + }); + repo_issue_list.innerHTML = issues.map(issue => { + return `
  • + +
    ${markdown.render(issue.body || '')}
    +
    + ${issue.number} + + ${issue.title} + + +
    +
    +
  • ` + }).join(''); + Prism.highlightAllUnder(repo_issue_list); + }) + } + } + //${markdown.render(issue.body)} + +/* Mermaid Diagrams */ + +mermaid.initialize({ + startOnLoad: true, + theme: 'neutral' +}); + +/* Charts */ + +document.querySelectorAll('.chartjs').forEach(chart => { + new Chart(chart, JSON.parse(chart.textContent)); +}); + +/* Tooltips */ +let tipMap = new WeakMap(); +delegateEvent('pointerover', '.term-reference, .spec-reference', (e, anchor) => { + const id = anchor.getAttribute('data-local-href') || anchor.getAttribute('href') || ''; + let term = document.getElementById(id.replace('#', '')); + if (!term || tipMap.has(anchor)) return; + let container = term.closest('dt, td:first-child'); + if (!container) return; + let tip = { + allowHTML: true, + inlinePositioning: true + } + switch (container.tagName) { + case 'DT': + tip.content = container.nextElementSibling.textContent; + break; + case 'TD': + let table = container.closest('table'); + let tds = Array.from(container.closest('tr').children); + tds.shift(); + if (table) { + let headings = Array.from(table.querySelectorAll('thead th')); + headings.shift(); + if (headings.length) { + tip.content = ` +
    ${container.textContent}
    + + ${headings.map((th, i) => { + return `` + }).join('')} +
    ${th.textContent}:${tds[i] ? tds[i].textContent : ''}
    `; + } + } + break; + } + if (tip.content) tipMap.set(anchor, tippy(anchor, tip)); +}, { passive: true }); + +})(); diff --git a/assets/js/mermaid.js b/assets/js/mermaid.js new file mode 100644 index 0000000..dac1869 --- /dev/null +++ b/assets/js/mermaid.js @@ -0,0 +1,32 @@ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.mermaid=e():t.mermaid=e()}("undefined"!=typeof self?self:this,(function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=383)}([function(t,e,n){"use strict";n.r(e);var r=function(t,e){return te?1:t>=e?0:NaN},i=function(t){var e;return 1===t.length&&(e=t,t=function(t,n){return r(e(t),n)}),{left:function(e,n,r,i){for(null==r&&(r=0),null==i&&(i=e.length);r>>1;t(e[a],n)<0?r=a+1:i=a}return r},right:function(e,n,r,i){for(null==r&&(r=0),null==i&&(i=e.length);r>>1;t(e[a],n)>0?i=a:r=a+1}return r}}};var a=i(r),o=a.right,s=a.left,c=o,u=function(t,e){null==e&&(e=l);for(var n=0,r=t.length-1,i=t[0],a=new Array(r<0?0:r);nt?1:e>=t?0:NaN},d=function(t){return null===t?NaN:+t},p=function(t,e){var n,r,i=t.length,a=0,o=-1,s=0,c=0;if(null==e)for(;++o1)return c/(a-1)},g=function(t,e){var n=p(t,e);return n?Math.sqrt(n):n},y=function(t,e){var n,r,i,a=t.length,o=-1;if(null==e){for(;++o=n)for(r=i=n;++on&&(r=n),i=n)for(r=i=n;++on&&(r=n),i0)return[t];if((r=e0)for(t=Math.ceil(t/o),e=Math.floor(e/o),a=new Array(i=Math.ceil(e-t+1));++s=0?(a>=w?10:a>=E?5:a>=T?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(a>=w?10:a>=E?5:a>=T?2:1)}function S(t,e,n){var r=Math.abs(e-t)/Math.max(0,n),i=Math.pow(10,Math.floor(Math.log(r)/Math.LN10)),a=r/i;return a>=w?i*=10:a>=E?i*=5:a>=T&&(i*=2),eh;)f.pop(),--d;var p,g=new Array(d+1);for(i=0;i<=d;++i)(p=g[i]=[]).x0=i>0?f[i-1]:l,p.x1=i=1)return+n(t[r-1],r-1,t);var r,i=(r-1)*e,a=Math.floor(i),o=+n(t[a],a,t);return o+(+n(t[a+1],a+1,t)-o)*(i-a)}},N=function(t,e,n){return t=b.call(t,d).sort(r),Math.ceil((n-e)/(2*(D(t,.75)-D(t,.25))*Math.pow(t.length,-1/3)))},B=function(t,e,n){return Math.ceil((n-e)/(3.5*g(t)*Math.pow(t.length,-1/3)))},L=function(t,e){var n,r,i=t.length,a=-1;if(null==e){for(;++a=n)for(r=n;++ar&&(r=n)}else for(;++a=n)for(r=n;++ar&&(r=n);return r},F=function(t,e){var n,r=t.length,i=r,a=-1,o=0;if(null==e)for(;++a=0;)for(e=(r=t[i]).length;--e>=0;)n[--o]=r[e];return n},j=function(t,e){var n,r,i=t.length,a=-1;if(null==e){for(;++a=n)for(r=n;++an&&(r=n)}else for(;++a=n)for(r=n;++an&&(r=n);return r},R=function(t,e){for(var n=e.length,r=new Array(n);n--;)r[n]=t[e[n]];return r},Y=function(t,e){if(n=t.length){var n,i,a=0,o=0,s=t[o];for(null==e&&(e=r);++a=0&&(n=t.slice(r+1),t=t.slice(0,r)),t&&!e.hasOwnProperty(t))throw new Error("unknown type: "+t);return{type:t,name:n}}))}function ct(t,e){for(var n,r=0,i=t.length;r0)for(var n,r,i=new Array(n),a=0;ae?1:t>=e?0:NaN}var _t="http://www.w3.org/1999/xhtml",kt={svg:"http://www.w3.org/2000/svg",xhtml:_t,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},wt=function(t){var e=t+="",n=e.indexOf(":");return n>=0&&"xmlns"!==(e=t.slice(0,n))&&(t=t.slice(n+1)),kt.hasOwnProperty(e)?{space:kt[e],local:t}:t};function Et(t){return function(){this.removeAttribute(t)}}function Tt(t){return function(){this.removeAttributeNS(t.space,t.local)}}function Ct(t,e){return function(){this.setAttribute(t,e)}}function At(t,e){return function(){this.setAttributeNS(t.space,t.local,e)}}function St(t,e){return function(){var n=e.apply(this,arguments);null==n?this.removeAttribute(t):this.setAttribute(t,n)}}function Mt(t,e){return function(){var n=e.apply(this,arguments);null==n?this.removeAttributeNS(t.space,t.local):this.setAttributeNS(t.space,t.local,n)}}var Ot=function(t){return t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView};function Dt(t){return function(){this.style.removeProperty(t)}}function Nt(t,e,n){return function(){this.style.setProperty(t,e,n)}}function Bt(t,e,n){return function(){var r=e.apply(this,arguments);null==r?this.style.removeProperty(t):this.style.setProperty(t,r,n)}}function Lt(t,e){return t.style.getPropertyValue(e)||Ot(t).getComputedStyle(t,null).getPropertyValue(e)}function Ft(t){return function(){delete this[t]}}function Pt(t,e){return function(){this[t]=e}}function It(t,e){return function(){var n=e.apply(this,arguments);null==n?delete this[t]:this[t]=n}}function jt(t){return t.trim().split(/^|\s+/)}function Rt(t){return t.classList||new Yt(t)}function Yt(t){this._node=t,this._names=jt(t.getAttribute("class")||"")}function zt(t,e){for(var n=Rt(t),r=-1,i=e.length;++r=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(t){return this._names.indexOf(t)>=0}};function Ht(){this.textContent=""}function Gt(t){return function(){this.textContent=t}}function qt(t){return function(){var e=t.apply(this,arguments);this.textContent=null==e?"":e}}function Xt(){this.innerHTML=""}function Zt(t){return function(){this.innerHTML=t}}function Jt(t){return function(){var e=t.apply(this,arguments);this.innerHTML=null==e?"":e}}function Qt(){this.nextSibling&&this.parentNode.appendChild(this)}function Kt(){this.previousSibling&&this.parentNode.insertBefore(this,this.parentNode.firstChild)}function te(t){return function(){var e=this.ownerDocument,n=this.namespaceURI;return n===_t&&e.documentElement.namespaceURI===_t?e.createElement(t):e.createElementNS(n,t)}}function ee(t){return function(){return this.ownerDocument.createElementNS(t.space,t.local)}}var ne=function(t){var e=wt(t);return(e.local?ee:te)(e)};function re(){return null}function ie(){var t=this.parentNode;t&&t.removeChild(this)}function ae(){var t=this.cloneNode(!1),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}function oe(){var t=this.cloneNode(!0),e=this.parentNode;return e?e.insertBefore(t,this.nextSibling):t}var se={},ce=null;"undefined"!=typeof document&&("onmouseenter"in document.documentElement||(se={mouseenter:"mouseover",mouseleave:"mouseout"}));function ue(t,e,n){return t=le(t,e,n),function(e){var n=e.relatedTarget;n&&(n===this||8&n.compareDocumentPosition(this))||t.call(this,e)}}function le(t,e,n){return function(r){var i=ce;ce=r;try{t.call(this,this.__data__,e,n)}finally{ce=i}}}function he(t){return t.trim().split(/^|\s+/).map((function(t){var e="",n=t.indexOf(".");return n>=0&&(e=t.slice(n+1),t=t.slice(0,n)),{type:t,name:e}}))}function fe(t){return function(){var e=this.__on;if(e){for(var n,r=0,i=-1,a=e.length;r=_&&(_=x+1);!(b=v[_])&&++_=0;)(r=i[a])&&(o&&4^r.compareDocumentPosition(o)&&o.parentNode.insertBefore(r,o),o=r);return this},sort:function(t){function e(e,n){return e&&n?t(e.__data__,n.__data__):!e-!n}t||(t=xt);for(var n=this._groups,r=n.length,i=new Array(r),a=0;a1?this.each((null==e?Dt:"function"==typeof e?Bt:Nt)(t,e,null==n?"":n)):Lt(this.node(),t)},property:function(t,e){return arguments.length>1?this.each((null==e?Ft:"function"==typeof e?It:Pt)(t,e)):this.node()[t]},classed:function(t,e){var n=jt(t+"");if(arguments.length<2){for(var r=Rt(this.node()),i=-1,a=n.length;++i>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===n?new qe(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===n?new qe(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=Le.exec(t))?new qe(e[1],e[2],e[3],1):(e=Fe.exec(t))?new qe(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=Pe.exec(t))?Ve(e[1],e[2],e[3],e[4]):(e=Ie.exec(t))?Ve(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=je.exec(t))?Qe(e[1],e[2]/100,e[3]/100,1):(e=Re.exec(t))?Qe(e[1],e[2]/100,e[3]/100,e[4]):Ye.hasOwnProperty(t)?We(Ye[t]):"transparent"===t?new qe(NaN,NaN,NaN,0):null}function We(t){return new qe(t>>16&255,t>>8&255,255&t,1)}function Ve(t,e,n,r){return r<=0&&(t=e=n=NaN),new qe(t,e,n,r)}function He(t){return t instanceof Me||(t=$e(t)),t?new qe((t=t.rgb()).r,t.g,t.b,t.opacity):new qe}function Ge(t,e,n,r){return 1===arguments.length?He(t):new qe(t,e,n,null==r?1:r)}function qe(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}function Xe(){return"#"+Je(this.r)+Je(this.g)+Je(this.b)}function Ze(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"rgb(":"rgba(")+Math.max(0,Math.min(255,Math.round(this.r)||0))+", "+Math.max(0,Math.min(255,Math.round(this.g)||0))+", "+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?")":", "+t+")")}function Je(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?"0":"")+t.toString(16)}function Qe(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new en(t,e,n,r)}function Ke(t){if(t instanceof en)return new en(t.h,t.s,t.l,t.opacity);if(t instanceof Me||(t=$e(t)),!t)return new en;if(t instanceof en)return t;var e=(t=t.rgb()).r/255,n=t.g/255,r=t.b/255,i=Math.min(e,n,r),a=Math.max(e,n,r),o=NaN,s=a-i,c=(a+i)/2;return s?(o=e===a?(n-r)/s+6*(n0&&c<1?0:o,new en(o,s,c,t.opacity)}function tn(t,e,n,r){return 1===arguments.length?Ke(t):new en(t,e,n,null==r?1:r)}function en(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function nn(t,e,n){return 255*(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)}function rn(t,e,n,r,i){var a=t*t,o=a*t;return((1-3*t+3*a-o)*e+(4-6*a+3*o)*n+(1+3*t+3*a-3*o)*r+o*i)/6}Ae(Me,$e,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:ze,formatHex:ze,formatHsl:function(){return Ke(this).formatHsl()},formatRgb:Ue,toString:Ue}),Ae(qe,Ge,Se(Me,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new qe(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new qe(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Xe,formatHex:Xe,formatRgb:Ze,toString:Ze})),Ae(en,tn,Se(Me,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new en(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new en(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,i=2*n-r;return new qe(nn(t>=240?t-240:t+120,i,r),nn(t,i,r),nn(t<120?t+240:t-120,i,r),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?"hsl(":"hsla(")+(this.h||0)+", "+100*(this.s||0)+"%, "+100*(this.l||0)+"%"+(1===t?")":", "+t+")")}}));var an=function(t){var e=t.length-1;return function(n){var r=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),i=t[r],a=t[r+1],o=r>0?t[r-1]:2*i-a,s=r180||n<-180?n-360*Math.round(n/360):n):sn(isNaN(t)?e:t)}function ln(t){return 1==(t=+t)?hn:function(e,n){return n-e?function(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(r){return Math.pow(t+r*e,n)}}(e,n,t):sn(isNaN(e)?n:e)}}function hn(t,e){var n=e-t;return n?cn(t,n):sn(isNaN(t)?e:t)}var fn=function t(e){var n=ln(e);function r(t,e){var r=n((t=Ge(t)).r,(e=Ge(e)).r),i=n(t.g,e.g),a=n(t.b,e.b),o=hn(t.opacity,e.opacity);return function(e){return t.r=r(e),t.g=i(e),t.b=a(e),t.opacity=o(e),t+""}}return r.gamma=t,r}(1);function dn(t){return function(e){var n,r,i=e.length,a=new Array(i),o=new Array(i),s=new Array(i);for(n=0;na&&(i=e.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(n=n[0])===(r=r[0])?s[o]?s[o]+=r:s[++o]=r:(s[++o]=null,c.push({i:o,x:_n(n,r)})),a=En.lastIndex;return a=0&&e._call.call(null,t),e=e._next;--Bn}function Hn(){In=(Pn=Rn.now())+jn,Bn=Ln=0;try{Vn()}finally{Bn=0,function(){var t,e,n=Tn,r=1/0;for(;n;)n._call?(r>n._time&&(r=n._time),t=n,n=n._next):(e=n._next,n._next=null,n=t?t._next=e:Tn=e);Cn=t,qn(r)}(),In=0}}function Gn(){var t=Rn.now(),e=t-Pn;e>1e3&&(jn-=e,Pn=t)}function qn(t){Bn||(Ln&&(Ln=clearTimeout(Ln)),t-In>24?(t<1/0&&(Ln=setTimeout(Hn,t-Rn.now()-jn)),Fn&&(Fn=clearInterval(Fn))):(Fn||(Pn=Rn.now(),Fn=setInterval(Gn,1e3)),Bn=1,Yn(Hn)))}$n.prototype=Wn.prototype={constructor:$n,restart:function(t,e,n){if("function"!=typeof t)throw new TypeError("callback is not a function");n=(null==n?zn():+n)+(null==e?0:+e),this._next||Cn===this||(Cn?Cn._next=this:Tn=this,Cn=this),this._call=t,this._time=n,qn()},stop:function(){this._call&&(this._call=null,this._time=1/0,qn())}};var Xn=function(t,e,n){var r=new $n;return e=null==e?0:+e,r.restart((function(n){r.stop(),t(n+e)}),e,n),r},Zn=lt("start","end","cancel","interrupt"),Jn=[],Qn=function(t,e,n,r,i,a){var o=t.__transition;if(o){if(n in o)return}else t.__transition={};!function(t,e,n){var r,i=t.__transition;function a(c){var u,l,h,f;if(1!==n.state)return s();for(u in i)if((f=i[u]).name===n.name){if(3===f.state)return Xn(a);4===f.state?(f.state=6,f.timer.stop(),f.on.call("interrupt",t,t.__data__,f.index,f.group),delete i[u]):+u0)throw new Error("too late; already scheduled");return n}function tr(t,e){var n=er(t,e);if(n.state>3)throw new Error("too late; already running");return n}function er(t,e){var n=t.__transition;if(!n||!(n=n[e]))throw new Error("transition not found");return n}var nr,rr,ir,ar,or=function(t,e){var n,r,i,a=t.__transition,o=!0;if(a){for(i in e=null==e?null:e+"",a)(n=a[i]).name===e?(r=n.state>2&&n.state<5,n.state=6,n.timer.stop(),n.on.call(r?"interrupt":"cancel",t,t.__data__,n.index,n.group),delete a[i]):o=!1;o&&delete t.__transition}},sr=180/Math.PI,cr={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1},ur=function(t,e,n,r,i,a){var o,s,c;return(o=Math.sqrt(t*t+e*e))&&(t/=o,e/=o),(c=t*n+e*r)&&(n-=t*c,r-=e*c),(s=Math.sqrt(n*n+r*r))&&(n/=s,r/=s,c/=s),t*r180?e+=360:e-t>180&&(t+=360),a.push({i:n.push(i(n)+"rotate(",null,r)-2,x:_n(t,e)})):e&&n.push(i(n)+"rotate("+e+r)}(a.rotate,o.rotate,s,c),function(t,e,n,a){t!==e?a.push({i:n.push(i(n)+"skewX(",null,r)-2,x:_n(t,e)}):e&&n.push(i(n)+"skewX("+e+r)}(a.skewX,o.skewX,s,c),function(t,e,n,r,a,o){if(t!==n||e!==r){var s=a.push(i(a)+"scale(",null,",",null,")");o.push({i:s-4,x:_n(t,n)},{i:s-2,x:_n(e,r)})}else 1===n&&1===r||a.push(i(a)+"scale("+n+","+r+")")}(a.scaleX,a.scaleY,o.scaleX,o.scaleY,s,c),a=o=null,function(t){for(var e,n=-1,r=c.length;++n=0&&(t=t.slice(0,e)),!t||"start"===t}))}(e)?Kn:tr;return function(){var o=a(this,t),s=o.on;s!==r&&(i=(r=s).copy()).on(e,n),o.on=i}}var Br=_e.prototype.constructor;function Lr(t){return function(){this.style.removeProperty(t)}}function Fr(t,e,n){return function(r){this.style.setProperty(t,e.call(this,r),n)}}function Pr(t,e,n){var r,i;function a(){var a=e.apply(this,arguments);return a!==i&&(r=(i=a)&&Fr(t,a,n)),r}return a._value=e,a}function Ir(t){return function(e){this.textContent=t.call(this,e)}}function jr(t){var e,n;function r(){var r=t.apply(this,arguments);return r!==n&&(e=(n=r)&&Ir(r)),e}return r._value=t,r}var Rr=0;function Yr(t,e,n,r){this._groups=t,this._parents=e,this._name=n,this._id=r}function zr(t){return _e().transition(t)}function Ur(){return++Rr}var $r=_e.prototype;function Wr(t){return t*t*t}function Vr(t){return--t*t*t+1}function Hr(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}Yr.prototype=zr.prototype={constructor:Yr,select:function(t){var e=this._name,n=this._id;"function"!=typeof t&&(t=ft(t));for(var r=this._groups,i=r.length,a=new Array(i),o=0;o1&&n.name===e)return new Yr([[t]],Xr,e,+r);return null},Jr=function(t){return function(){return t}},Qr=function(t,e,n){this.target=t,this.type=e,this.selection=n};function Kr(){ce.stopImmediatePropagation()}var ti=function(){ce.preventDefault(),ce.stopImmediatePropagation()},ei={name:"drag"},ni={name:"space"},ri={name:"handle"},ii={name:"center"};function ai(t){return[+t[0],+t[1]]}function oi(t){return[ai(t[0]),ai(t[1])]}function si(t){return function(e){return Dn(e,ce.touches,t)}}var ci={name:"x",handles:["w","e"].map(yi),input:function(t,e){return null==t?null:[[+t[0],e[0][1]],[+t[1],e[1][1]]]},output:function(t){return t&&[t[0][0],t[1][0]]}},ui={name:"y",handles:["n","s"].map(yi),input:function(t,e){return null==t?null:[[e[0][0],+t[0]],[e[1][0],+t[1]]]},output:function(t){return t&&[t[0][1],t[1][1]]}},li={name:"xy",handles:["n","w","e","s","nw","ne","sw","se"].map(yi),input:function(t){return null==t?null:oi(t)},output:function(t){return t}},hi={overlay:"crosshair",selection:"move",n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},fi={e:"w",w:"e",nw:"ne",ne:"nw",se:"sw",sw:"se"},di={n:"s",s:"n",nw:"sw",ne:"se",se:"ne",sw:"nw"},pi={overlay:1,selection:1,n:null,e:1,s:null,w:-1,nw:-1,ne:1,se:1,sw:-1},gi={overlay:1,selection:1,n:-1,e:null,s:1,w:null,nw:-1,ne:-1,se:1,sw:1};function yi(t){return{type:t}}function vi(){return!ce.ctrlKey&&!ce.button}function mi(){var t=this.ownerSVGElement||this;return t.hasAttribute("viewBox")?[[(t=t.viewBox.baseVal).x,t.y],[t.x+t.width,t.y+t.height]]:[[0,0],[t.width.baseVal.value,t.height.baseVal.value]]}function bi(){return navigator.maxTouchPoints||"ontouchstart"in this}function xi(t){for(;!t.__brush;)if(!(t=t.parentNode))return;return t.__brush}function _i(t){return t[0][0]===t[1][0]||t[0][1]===t[1][1]}function ki(t){var e=t.__brush;return e?e.dim.output(e.selection):null}function wi(){return Ci(ci)}function Ei(){return Ci(ui)}var Ti=function(){return Ci(li)};function Ci(t){var e,n=mi,r=vi,i=bi,a=!0,o=lt("start","brush","end"),s=6;function c(e){var n=e.property("__brush",g).selectAll(".overlay").data([yi("overlay")]);n.enter().append("rect").attr("class","overlay").attr("pointer-events","all").attr("cursor",hi.overlay).merge(n).each((function(){var t=xi(this).extent;ke(this).attr("x",t[0][0]).attr("y",t[0][1]).attr("width",t[1][0]-t[0][0]).attr("height",t[1][1]-t[0][1])})),e.selectAll(".selection").data([yi("selection")]).enter().append("rect").attr("class","selection").attr("cursor",hi.selection).attr("fill","#777").attr("fill-opacity",.3).attr("stroke","#fff").attr("shape-rendering","crispEdges");var r=e.selectAll(".handle").data(t.handles,(function(t){return t.type}));r.exit().remove(),r.enter().append("rect").attr("class",(function(t){return"handle handle--"+t.type})).attr("cursor",(function(t){return hi[t.type]})),e.each(u).attr("fill","none").attr("pointer-events","all").on("mousedown.brush",f).filter(i).on("touchstart.brush",f).on("touchmove.brush",d).on("touchend.brush touchcancel.brush",p).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function u(){var t=ke(this),e=xi(this).selection;e?(t.selectAll(".selection").style("display",null).attr("x",e[0][0]).attr("y",e[0][1]).attr("width",e[1][0]-e[0][0]).attr("height",e[1][1]-e[0][1]),t.selectAll(".handle").style("display",null).attr("x",(function(t){return"e"===t.type[t.type.length-1]?e[1][0]-s/2:e[0][0]-s/2})).attr("y",(function(t){return"s"===t.type[0]?e[1][1]-s/2:e[0][1]-s/2})).attr("width",(function(t){return"n"===t.type||"s"===t.type?e[1][0]-e[0][0]+s:s})).attr("height",(function(t){return"e"===t.type||"w"===t.type?e[1][1]-e[0][1]+s:s}))):t.selectAll(".selection,.handle").style("display","none").attr("x",null).attr("y",null).attr("width",null).attr("height",null)}function l(t,e,n){return!n&&t.__brush.emitter||new h(t,e)}function h(t,e){this.that=t,this.args=e,this.state=t.__brush,this.active=0}function f(){if((!e||ce.touches)&&r.apply(this,arguments)){var n,i,o,s,c,h,f,d,p,g,y,v=this,m=ce.target.__data__.type,b="selection"===(a&&ce.metaKey?m="overlay":m)?ei:a&&ce.altKey?ii:ri,x=t===ui?null:pi[m],_=t===ci?null:gi[m],k=xi(v),w=k.extent,E=k.selection,T=w[0][0],C=w[0][1],A=w[1][0],S=w[1][1],M=0,O=0,D=x&&_&&a&&ce.shiftKey,N=ce.touches?si(ce.changedTouches[0].identifier):Nn,B=N(v),L=B,F=l(v,arguments,!0).beforestart();"overlay"===m?(E&&(p=!0),k.selection=E=[[n=t===ui?T:B[0],o=t===ci?C:B[1]],[c=t===ui?A:n,f=t===ci?S:o]]):(n=E[0][0],o=E[0][1],c=E[1][0],f=E[1][1]),i=n,s=o,h=c,d=f;var P=ke(v).attr("pointer-events","none"),I=P.selectAll(".overlay").attr("cursor",hi[m]);if(ce.touches)F.moved=R,F.ended=z;else{var j=ke(ce.view).on("mousemove.brush",R,!0).on("mouseup.brush",z,!0);a&&j.on("keydown.brush",U,!0).on("keyup.brush",$,!0),Te(ce.view)}Kr(),or(v),u.call(v),F.start()}function R(){var t=N(v);!D||g||y||(Math.abs(t[0]-L[0])>Math.abs(t[1]-L[1])?y=!0:g=!0),L=t,p=!0,ti(),Y()}function Y(){var t;switch(M=L[0]-B[0],O=L[1]-B[1],b){case ni:case ei:x&&(M=Math.max(T-n,Math.min(A-c,M)),i=n+M,h=c+M),_&&(O=Math.max(C-o,Math.min(S-f,O)),s=o+O,d=f+O);break;case ri:x<0?(M=Math.max(T-n,Math.min(A-n,M)),i=n+M,h=c):x>0&&(M=Math.max(T-c,Math.min(A-c,M)),i=n,h=c+M),_<0?(O=Math.max(C-o,Math.min(S-o,O)),s=o+O,d=f):_>0&&(O=Math.max(C-f,Math.min(S-f,O)),s=o,d=f+O);break;case ii:x&&(i=Math.max(T,Math.min(A,n-M*x)),h=Math.max(T,Math.min(A,c+M*x))),_&&(s=Math.max(C,Math.min(S,o-O*_)),d=Math.max(C,Math.min(S,f+O*_)))}h0&&(n=i-M),_<0?f=d-O:_>0&&(o=s-O),b=ni,I.attr("cursor",hi.selection),Y());break;default:return}ti()}function $(){switch(ce.keyCode){case 16:D&&(g=y=D=!1,Y());break;case 18:b===ii&&(x<0?c=h:x>0&&(n=i),_<0?f=d:_>0&&(o=s),b=ri,Y());break;case 32:b===ni&&(ce.altKey?(x&&(c=h-M*x,n=i+M*x),_&&(f=d-O*_,o=s+O*_),b=ii):(x<0?c=h:x>0&&(n=i),_<0?f=d:_>0&&(o=s),b=ri),I.attr("cursor",hi[m]),Y());break;default:return}ti()}}function d(){l(this,arguments).moved()}function p(){l(this,arguments).ended()}function g(){var e=this.__brush||{selection:null};return e.extent=oi(n.apply(this,arguments)),e.dim=t,e}return c.move=function(e,n){e.selection?e.on("start.brush",(function(){l(this,arguments).beforestart().start()})).on("interrupt.brush end.brush",(function(){l(this,arguments).end()})).tween("brush",(function(){var e=this,r=e.__brush,i=l(e,arguments),a=r.selection,o=t.input("function"==typeof n?n.apply(this,arguments):n,r.extent),s=Sn(a,o);function c(t){r.selection=1===t&&null===o?null:s(t),u.call(e),i.brush()}return null!==a&&null!==o?c:c(1)})):e.each((function(){var e=this,r=arguments,i=e.__brush,a=t.input("function"==typeof n?n.apply(e,r):n,i.extent),o=l(e,r).beforestart();or(e),i.selection=null===a?null:a,u.call(e),o.start().brush().end()}))},c.clear=function(t){c.move(t,null)},h.prototype={beforestart:function(){return 1==++this.active&&(this.state.emitter=this,this.starting=!0),this},start:function(){return this.starting?(this.starting=!1,this.emit("start")):this.emit("brush"),this},brush:function(){return this.emit("brush"),this},end:function(){return 0==--this.active&&(delete this.state.emitter,this.emit("end")),this},emit:function(e){pe(new Qr(c,e,t.output(this.state.selection)),o.apply,o,[e,this.that,this.args])}},c.extent=function(t){return arguments.length?(n="function"==typeof t?t:Jr(oi(t)),c):n},c.filter=function(t){return arguments.length?(r="function"==typeof t?t:Jr(!!t),c):r},c.touchable=function(t){return arguments.length?(i="function"==typeof t?t:Jr(!!t),c):i},c.handleSize=function(t){return arguments.length?(s=+t,c):s},c.keyModifiers=function(t){return arguments.length?(a=!!t,c):a},c.on=function(){var t=o.on.apply(o,arguments);return t===o?c:t},c}var Ai=Math.cos,Si=Math.sin,Mi=Math.PI,Oi=Mi/2,Di=2*Mi,Ni=Math.max;function Bi(t){return function(e,n){return t(e.source.value+e.target.value,n.source.value+n.target.value)}}var Li=function(){var t=0,e=null,n=null,r=null;function i(i){var a,o,s,c,u,l,h=i.length,f=[],d=k(h),p=[],g=[],y=g.groups=new Array(h),v=new Array(h*h);for(a=0,u=-1;++u1e-6)if(Math.abs(l*s-c*u)>1e-6&&i){var f=n-a,d=r-o,p=s*s+c*c,g=f*f+d*d,y=Math.sqrt(p),v=Math.sqrt(h),m=i*Math.tan((Ii-Math.acos((p+h-g)/(2*y*v)))/2),b=m/v,x=m/y;Math.abs(b-1)>1e-6&&(this._+="L"+(t+b*u)+","+(e+b*l)),this._+="A"+i+","+i+",0,0,"+ +(l*f>u*d)+","+(this._x1=t+x*s)+","+(this._y1=e+x*c)}else this._+="L"+(this._x1=t)+","+(this._y1=e);else;},arc:function(t,e,n,r,i,a){t=+t,e=+e,a=!!a;var o=(n=+n)*Math.cos(r),s=n*Math.sin(r),c=t+o,u=e+s,l=1^a,h=a?r-i:i-r;if(n<0)throw new Error("negative radius: "+n);null===this._x1?this._+="M"+c+","+u:(Math.abs(this._x1-c)>1e-6||Math.abs(this._y1-u)>1e-6)&&(this._+="L"+c+","+u),n&&(h<0&&(h=h%ji+ji),h>Ri?this._+="A"+n+","+n+",0,1,"+l+","+(t-o)+","+(e-s)+"A"+n+","+n+",0,1,"+l+","+(this._x1=c)+","+(this._y1=u):h>1e-6&&(this._+="A"+n+","+n+",0,"+ +(h>=Ii)+","+l+","+(this._x1=t+n*Math.cos(i))+","+(this._y1=e+n*Math.sin(i))))},rect:function(t,e,n,r){this._+="M"+(this._x0=this._x1=+t)+","+(this._y0=this._y1=+e)+"h"+ +n+"v"+ +r+"h"+-n+"Z"},toString:function(){return this._}};var Ui=zi;function $i(t){return t.source}function Wi(t){return t.target}function Vi(t){return t.radius}function Hi(t){return t.startAngle}function Gi(t){return t.endAngle}var qi=function(){var t=$i,e=Wi,n=Vi,r=Hi,i=Gi,a=null;function o(){var o,s=Fi.call(arguments),c=t.apply(this,s),u=e.apply(this,s),l=+n.apply(this,(s[0]=c,s)),h=r.apply(this,s)-Oi,f=i.apply(this,s)-Oi,d=l*Ai(h),p=l*Si(h),g=+n.apply(this,(s[0]=u,s)),y=r.apply(this,s)-Oi,v=i.apply(this,s)-Oi;if(a||(a=o=Ui()),a.moveTo(d,p),a.arc(0,0,l,h,f),h===y&&f===v||(a.quadraticCurveTo(0,0,g*Ai(y),g*Si(y)),a.arc(0,0,g,y,v)),a.quadraticCurveTo(0,0,d,p),a.closePath(),o)return a=null,o+""||null}return o.radius=function(t){return arguments.length?(n="function"==typeof t?t:Pi(+t),o):n},o.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:Pi(+t),o):r},o.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:Pi(+t),o):i},o.source=function(e){return arguments.length?(t=e,o):t},o.target=function(t){return arguments.length?(e=t,o):e},o.context=function(t){return arguments.length?(a=null==t?null:t,o):a},o};function Xi(){}function Zi(t,e){var n=new Xi;if(t instanceof Xi)t.each((function(t,e){n.set(e,t)}));else if(Array.isArray(t)){var r,i=-1,a=t.length;if(null==e)for(;++i=r.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var c,u,l,h=-1,f=n.length,d=r[i++],p=Ji(),g=o();++hr.length)return n;var o,s=i[a-1];return null!=e&&a>=r.length?o=n.entries():(o=[],n.each((function(e,n){o.push({key:n,values:t(e,a)})}))),null!=s?o.sort((function(t,e){return s(t.key,e.key)})):o}(a(t,0,ea,na),0)},key:function(t){return r.push(t),n},sortKeys:function(t){return i[r.length-1]=t,n},sortValues:function(e){return t=e,n},rollup:function(t){return e=t,n}}};function Ki(){return{}}function ta(t,e,n){t[e]=n}function ea(){return Ji()}function na(t,e,n){t.set(e,n)}function ra(){}var ia=Ji.prototype;function aa(t,e){var n=new ra;if(t instanceof ra)t.each((function(t){n.add(t)}));else if(t){var r=-1,i=t.length;if(null==e)for(;++r6/29*(6/29)*(6/29)?Math.pow(t,1/3):t/(6/29*3*(6/29))+4/29}function va(t){return t>6/29?t*t*t:6/29*3*(6/29)*(t-4/29)}function ma(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function ba(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function xa(t){if(t instanceof wa)return new wa(t.h,t.c,t.l,t.opacity);if(t instanceof ga||(t=fa(t)),0===t.a&&0===t.b)return new wa(NaN,0r!=d>r&&n<(f-u)*(r-l)/(d-l)+u&&(i=-i)}return i}function Ia(t,e,n){var r,i,a,o;return function(t,e,n){return(e[0]-t[0])*(n[1]-t[1])==(n[0]-t[0])*(e[1]-t[1])}(t,e,n)&&(i=t[r=+(t[0]===e[0])],a=n[r],o=e[r],i<=a&&a<=o||o<=a&&a<=i)}var ja=function(){},Ra=[[],[[[1,1.5],[.5,1]]],[[[1.5,1],[1,1.5]]],[[[1.5,1],[.5,1]]],[[[1,.5],[1.5,1]]],[[[1,1.5],[.5,1]],[[1,.5],[1.5,1]]],[[[1,.5],[1,1.5]]],[[[1,.5],[.5,1]]],[[[.5,1],[1,.5]]],[[[1,1.5],[1,.5]]],[[[.5,1],[1,.5]],[[1.5,1],[1,1.5]]],[[[1.5,1],[1,.5]]],[[[.5,1],[1.5,1]]],[[[1,1.5],[1.5,1]]],[[[.5,1],[1,1.5]]],[]],Ya=function(){var t=1,e=1,n=M,r=s;function i(t){var e=n(t);if(Array.isArray(e))e=e.slice().sort(Ba);else{var r=y(t),i=r[0],o=r[1];e=S(i,o,e),e=k(Math.floor(i/e)*e,Math.floor(o/e)*e,e)}return e.map((function(e){return a(t,e)}))}function a(n,i){var a=[],s=[];return function(n,r,i){var a,s,c,u,l,h,f=new Array,d=new Array;a=s=-1,u=n[0]>=r,Ra[u<<1].forEach(p);for(;++a=r,Ra[c|u<<1].forEach(p);Ra[u<<0].forEach(p);for(;++s=r,l=n[s*t]>=r,Ra[u<<1|l<<2].forEach(p);++a=r,h=l,l=n[s*t+a+1]>=r,Ra[c|u<<1|l<<2|h<<3].forEach(p);Ra[u|l<<3].forEach(p)}a=-1,l=n[s*t]>=r,Ra[l<<2].forEach(p);for(;++a=r,Ra[l<<2|h<<3].forEach(p);function p(t){var e,n,r=[t[0][0]+a,t[0][1]+s],c=[t[1][0]+a,t[1][1]+s],u=o(r),l=o(c);(e=d[u])?(n=f[l])?(delete d[e.end],delete f[n.start],e===n?(e.ring.push(c),i(e.ring)):f[e.start]=d[n.end]={start:e.start,end:n.end,ring:e.ring.concat(n.ring)}):(delete d[e.end],e.ring.push(c),d[e.end=l]=e):(e=f[l])?(n=d[u])?(delete f[e.start],delete d[n.end],e===n?(e.ring.push(c),i(e.ring)):f[n.start]=d[e.end]={start:n.start,end:e.end,ring:n.ring.concat(e.ring)}):(delete f[e.start],e.ring.unshift(r),f[e.start=u]=e):f[u]=d[l]={start:u,end:l,ring:[r,c]}}Ra[l<<3].forEach(p)}(n,i,(function(t){r(t,n,i),function(t){for(var e=0,n=t.length,r=t[n-1][1]*t[0][0]-t[n-1][0]*t[0][1];++e0?a.push([t]):s.push(t)})),s.forEach((function(t){for(var e,n=0,r=a.length;n0&&o0&&s0&&a>0))throw new Error("invalid size");return t=r,e=a,i},i.thresholds=function(t){return arguments.length?(n="function"==typeof t?t:Array.isArray(t)?La(Na.call(t)):La(t),i):n},i.smooth=function(t){return arguments.length?(r=t?s:ja,i):r===s},i};function za(t,e,n){for(var r=t.width,i=t.height,a=1+(n<<1),o=0;o=n&&(s>=a&&(c-=t.data[s-a+o*r]),e.data[s-n+o*r]=c/Math.min(s+1,r-1+a-s,a))}function Ua(t,e,n){for(var r=t.width,i=t.height,a=1+(n<<1),o=0;o=n&&(s>=a&&(c-=t.data[o+(s-a)*r]),e.data[o+(s-n)*r]=c/Math.min(s+1,i-1+a-s,a))}function $a(t){return t[0]}function Wa(t){return t[1]}function Va(){return 1}var Ha=function(){var t=$a,e=Wa,n=Va,r=960,i=500,a=20,o=2,s=3*a,c=r+2*s>>o,u=i+2*s>>o,l=La(20);function h(r){var i=new Float32Array(c*u),h=new Float32Array(c*u);r.forEach((function(r,a,l){var h=+t(r,a,l)+s>>o,f=+e(r,a,l)+s>>o,d=+n(r,a,l);h>=0&&h=0&&f>o),Ua({width:c,height:u,data:h},{width:c,height:u,data:i},a>>o),za({width:c,height:u,data:i},{width:c,height:u,data:h},a>>o),Ua({width:c,height:u,data:h},{width:c,height:u,data:i},a>>o),za({width:c,height:u,data:i},{width:c,height:u,data:h},a>>o),Ua({width:c,height:u,data:h},{width:c,height:u,data:i},a>>o);var d=l(i);if(!Array.isArray(d)){var p=L(i);d=S(0,p,d),(d=k(0,Math.floor(p/d)*d,d)).shift()}return Ya().thresholds(d).size([c,u])(i).map(f)}function f(t){return t.value*=Math.pow(2,-2*o),t.coordinates.forEach(d),t}function d(t){t.forEach(p)}function p(t){t.forEach(g)}function g(t){t[0]=t[0]*Math.pow(2,o)-s,t[1]=t[1]*Math.pow(2,o)-s}function y(){return c=r+2*(s=3*a)>>o,u=i+2*s>>o,h}return h.x=function(e){return arguments.length?(t="function"==typeof e?e:La(+e),h):t},h.y=function(t){return arguments.length?(e="function"==typeof t?t:La(+t),h):e},h.weight=function(t){return arguments.length?(n="function"==typeof t?t:La(+t),h):n},h.size=function(t){if(!arguments.length)return[r,i];var e=Math.ceil(t[0]),n=Math.ceil(t[1]);if(!(e>=0||e>=0))throw new Error("invalid size");return r=e,i=n,y()},h.cellSize=function(t){if(!arguments.length)return 1<=1))throw new Error("invalid cell size");return o=Math.floor(Math.log(t)/Math.LN2),y()},h.thresholds=function(t){return arguments.length?(l="function"==typeof t?t:Array.isArray(t)?La(Na.call(t)):La(t),h):l},h.bandwidth=function(t){if(!arguments.length)return Math.sqrt(a*(a+1));if(!((t=+t)>=0))throw new Error("invalid bandwidth");return a=Math.round((Math.sqrt(4*t*t+1)-1)/2),y()},h},Ga=function(t){return function(){return t}};function qa(t,e,n,r,i,a,o,s,c,u){this.target=t,this.type=e,this.subject=n,this.identifier=r,this.active=i,this.x=a,this.y=o,this.dx=s,this.dy=c,this._=u}function Xa(){return!ce.ctrlKey&&!ce.button}function Za(){return this.parentNode}function Ja(t){return null==t?{x:ce.x,y:ce.y}:t}function Qa(){return navigator.maxTouchPoints||"ontouchstart"in this}qa.prototype.on=function(){var t=this._.on.apply(this._,arguments);return t===this._?this:t};var Ka=function(){var t,e,n,r,i=Xa,a=Za,o=Ja,s=Qa,c={},u=lt("start","drag","end"),l=0,h=0;function f(t){t.on("mousedown.drag",d).filter(s).on("touchstart.drag",y).on("touchmove.drag",v).on("touchend.drag touchcancel.drag",m).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function d(){if(!r&&i.apply(this,arguments)){var o=b("mouse",a.apply(this,arguments),Nn,this,arguments);o&&(ke(ce.view).on("mousemove.drag",p,!0).on("mouseup.drag",g,!0),Te(ce.view),we(),n=!1,t=ce.clientX,e=ce.clientY,o("start"))}}function p(){if(Ee(),!n){var r=ce.clientX-t,i=ce.clientY-e;n=r*r+i*i>h}c.mouse("drag")}function g(){ke(ce.view).on("mousemove.drag mouseup.drag",null),Ce(ce.view,n),Ee(),c.mouse("end")}function y(){if(i.apply(this,arguments)){var t,e,n=ce.changedTouches,r=a.apply(this,arguments),o=n.length;for(t=0;t9999?"+"+io(e,6):io(e,4))+"-"+io(t.getUTCMonth()+1,2)+"-"+io(t.getUTCDate(),2)+(a?"T"+io(n,2)+":"+io(r,2)+":"+io(i,2)+"."+io(a,3)+"Z":i?"T"+io(n,2)+":"+io(r,2)+":"+io(i,2)+"Z":r||n?"T"+io(n,2)+":"+io(r,2)+"Z":"")}var oo=function(t){var e=new RegExp('["'+t+"\n\r]"),n=t.charCodeAt(0);function r(t,e){var r,i=[],a=t.length,o=0,s=0,c=a<=0,u=!1;function l(){if(c)return eo;if(u)return u=!1,to;var e,r,i=o;if(34===t.charCodeAt(i)){for(;o++=a?c=!0:10===(r=t.charCodeAt(o++))?u=!0:13===r&&(u=!0,10===t.charCodeAt(o)&&++o),t.slice(i+1,e-1).replace(/""/g,'"')}for(;o=(a=(g+v)/2))?g=a:v=a,(l=n>=(o=(y+m)/2))?y=o:m=o,i=d,!(d=d[h=l<<1|u]))return i[h]=p,t;if(s=+t._x.call(null,d.data),c=+t._y.call(null,d.data),e===s&&n===c)return p.next=d,i?i[h]=p:t._root=p,t;do{i=i?i[h]=new Array(4):t._root=new Array(4),(u=e>=(a=(g+v)/2))?g=a:v=a,(l=n>=(o=(y+m)/2))?y=o:m=o}while((h=l<<1|u)==(f=(c>=o)<<1|s>=a));return i[f]=d,i[h]=p,t}var _s=function(t,e,n,r,i){this.node=t,this.x0=e,this.y0=n,this.x1=r,this.y1=i};function ks(t){return t[0]}function ws(t){return t[1]}function Es(t,e,n){var r=new Ts(null==e?ks:e,null==n?ws:n,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function Ts(t,e,n,r,i,a){this._x=t,this._y=e,this._x0=n,this._y0=r,this._x1=i,this._y1=a,this._root=void 0}function Cs(t){for(var e={data:t.data},n=e;t=t.next;)n=n.next={data:t.data};return e}var As=Es.prototype=Ts.prototype;function Ss(t){return t.x+t.vx}function Ms(t){return t.y+t.vy}As.copy=function(){var t,e,n=new Ts(this._x,this._y,this._x0,this._y0,this._x1,this._y1),r=this._root;if(!r)return n;if(!r.length)return n._root=Cs(r),n;for(t=[{source:r,target:n._root=new Array(4)}];r=t.pop();)for(var i=0;i<4;++i)(e=r.source[i])&&(e.length?t.push({source:e,target:r.target[i]=new Array(4)}):r.target[i]=Cs(e));return n},As.add=function(t){var e=+this._x.call(null,t),n=+this._y.call(null,t);return xs(this.cover(e,n),e,n,t)},As.addAll=function(t){var e,n,r,i,a=t.length,o=new Array(a),s=new Array(a),c=1/0,u=1/0,l=-1/0,h=-1/0;for(n=0;nl&&(l=r),ih&&(h=i));if(c>l||u>h)return this;for(this.cover(c,u).cover(l,h),n=0;nt||t>=i||r>e||e>=a;)switch(s=(ef||(a=c.y0)>d||(o=c.x1)=v)<<1|t>=y)&&(c=p[p.length-1],p[p.length-1]=p[p.length-1-u],p[p.length-1-u]=c)}else{var m=t-+this._x.call(null,g.data),b=e-+this._y.call(null,g.data),x=m*m+b*b;if(x=(s=(p+y)/2))?p=s:y=s,(l=o>=(c=(g+v)/2))?g=c:v=c,e=d,!(d=d[h=l<<1|u]))return this;if(!d.length)break;(e[h+1&3]||e[h+2&3]||e[h+3&3])&&(n=e,f=h)}for(;d.data!==t;)if(r=d,!(d=d.next))return this;return(i=d.next)&&delete d.next,r?(i?r.next=i:delete r.next,this):e?(i?e[h]=i:delete e[h],(d=e[0]||e[1]||e[2]||e[3])&&d===(e[3]||e[2]||e[1]||e[0])&&!d.length&&(n?n[f]=d:this._root=d),this):(this._root=i,this)},As.removeAll=function(t){for(var e=0,n=t.length;ec+d||iu+d||as.index){var p=c-o.x-o.vx,g=u-o.y-o.vy,y=p*p+g*g;yt.r&&(t.r=t[e].r)}function s(){if(e){var r,i,a=e.length;for(n=new Array(a),r=0;r1?(null==n?s.remove(t):s.set(t,d(n)),e):s.get(t)},find:function(e,n,r){var i,a,o,s,c,u=0,l=t.length;for(null==r?r=1/0:r*=r,u=0;u1?(u.on(t,n),e):u.on(t)}}},js=function(){var t,e,n,r,i=ms(-30),a=1,o=1/0,s=.81;function c(r){var i,a=t.length,o=Es(t,Ls,Fs).visitAfter(l);for(n=r,i=0;i=o)){(t.data!==e||t.next)&&(0===l&&(d+=(l=bs())*l),0===h&&(d+=(h=bs())*h),d1?r[0]+r.slice(2):r,+t.slice(n+1)]},$s=function(t){return(t=Us(Math.abs(t)))?t[1]:NaN},Ws=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Vs(t){if(!(e=Ws.exec(t)))throw new Error("invalid format: "+t);var e;return new Hs({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function Hs(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}Vs.prototype=Hs.prototype,Hs.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var Gs,qs,Xs,Zs,Js=function(t,e){var n=Us(t,e);if(!n)return t+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")},Qs={"%":function(t,e){return(100*t).toFixed(e)},b:function(t){return Math.round(t).toString(2)},c:function(t){return t+""},d:function(t){return Math.round(t).toString(10)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},g:function(t,e){return t.toPrecision(e)},o:function(t){return Math.round(t).toString(8)},p:function(t,e){return Js(100*t,e)},r:Js,s:function(t,e){var n=Us(t,e);if(!n)return t+"";var r=n[0],i=n[1],a=i-(Gs=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,o=r.length;return a===o?r:a>o?r+new Array(a-o+1).join("0"):a>0?r.slice(0,a)+"."+r.slice(a):"0."+new Array(1-a).join("0")+Us(t,Math.max(0,e+a-1))[0]},X:function(t){return Math.round(t).toString(16).toUpperCase()},x:function(t){return Math.round(t).toString(16)}},Ks=function(t){return t},tc=Array.prototype.map,ec=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"],nc=function(t){var e,n,r=void 0===t.grouping||void 0===t.thousands?Ks:(e=tc.call(t.grouping,Number),n=t.thousands+"",function(t,r){for(var i=t.length,a=[],o=0,s=e[0],c=0;i>0&&s>0&&(c+s+1>r&&(s=Math.max(1,r-c)),a.push(t.substring(i-=s,i+s)),!((c+=s+1)>r));)s=e[o=(o+1)%e.length];return a.reverse().join(n)}),i=void 0===t.currency?"":t.currency[0]+"",a=void 0===t.currency?"":t.currency[1]+"",o=void 0===t.decimal?".":t.decimal+"",s=void 0===t.numerals?Ks:function(t){return function(e){return e.replace(/[0-9]/g,(function(e){return t[+e]}))}}(tc.call(t.numerals,String)),c=void 0===t.percent?"%":t.percent+"",u=void 0===t.minus?"-":t.minus+"",l=void 0===t.nan?"NaN":t.nan+"";function h(t){var e=(t=Vs(t)).fill,n=t.align,h=t.sign,f=t.symbol,d=t.zero,p=t.width,g=t.comma,y=t.precision,v=t.trim,m=t.type;"n"===m?(g=!0,m="g"):Qs[m]||(void 0===y&&(y=12),v=!0,m="g"),(d||"0"===e&&"="===n)&&(d=!0,e="0",n="=");var b="$"===f?i:"#"===f&&/[boxX]/.test(m)?"0"+m.toLowerCase():"",x="$"===f?a:/[%p]/.test(m)?c:"",_=Qs[m],k=/[defgprs%]/.test(m);function w(t){var i,a,c,f=b,w=x;if("c"===m)w=_(t)+w,t="";else{var E=(t=+t)<0;if(t=isNaN(t)?l:_(Math.abs(t),y),v&&(t=function(t){t:for(var e,n=t.length,r=1,i=-1;r0&&(i=0)}return i>0?t.slice(0,i)+t.slice(e+1):t}(t)),E&&0==+t&&(E=!1),f=(E?"("===h?h:u:"-"===h||"("===h?"":h)+f,w=("s"===m?ec[8+Gs/3]:"")+w+(E&&"("===h?")":""),k)for(i=-1,a=t.length;++i(c=t.charCodeAt(i))||c>57){w=(46===c?o+t.slice(i+1):t.slice(i))+w,t=t.slice(0,i);break}}g&&!d&&(t=r(t,1/0));var T=f.length+t.length+w.length,C=T>1)+f+t+w+C.slice(T);break;default:t=C+f+t+w}return s(t)}return y=void 0===y?6:/[gprs]/.test(m)?Math.max(1,Math.min(21,y)):Math.max(0,Math.min(20,y)),w.toString=function(){return t+""},w}return{format:h,formatPrefix:function(t,e){var n=h(((t=Vs(t)).type="f",t)),r=3*Math.max(-8,Math.min(8,Math.floor($s(e)/3))),i=Math.pow(10,-r),a=ec[8+r/3];return function(t){return n(i*t)+a}}}};function rc(t){return qs=nc(t),Xs=qs.format,Zs=qs.formatPrefix,qs}rc({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"});var ic=function(t){return Math.max(0,-$s(Math.abs(t)))},ac=function(t,e){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor($s(e)/3)))-$s(Math.abs(t)))},oc=function(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,$s(e)-$s(t))+1},sc=function(){return new cc};function cc(){this.reset()}cc.prototype={constructor:cc,reset:function(){this.s=this.t=0},add:function(t){lc(uc,t,this.t),lc(this,uc.s,this.s),this.s?this.t+=uc.t:this.s=uc.t},valueOf:function(){return this.s}};var uc=new cc;function lc(t,e,n){var r=t.s=e+n,i=r-e,a=r-i;t.t=e-a+(n-i)}var hc=Math.PI,fc=hc/2,dc=hc/4,pc=2*hc,gc=180/hc,yc=hc/180,vc=Math.abs,mc=Math.atan,bc=Math.atan2,xc=Math.cos,_c=Math.ceil,kc=Math.exp,wc=(Math.floor,Math.log),Ec=Math.pow,Tc=Math.sin,Cc=Math.sign||function(t){return t>0?1:t<0?-1:0},Ac=Math.sqrt,Sc=Math.tan;function Mc(t){return t>1?0:t<-1?hc:Math.acos(t)}function Oc(t){return t>1?fc:t<-1?-fc:Math.asin(t)}function Dc(t){return(t=Tc(t/2))*t}function Nc(){}function Bc(t,e){t&&Fc.hasOwnProperty(t.type)&&Fc[t.type](t,e)}var Lc={Feature:function(t,e){Bc(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r=0?1:-1,i=r*n,a=xc(e=(e*=yc)/2+dc),o=Tc(e),s=Uc*o,c=zc*a+s*xc(i),u=s*r*Tc(i);Wc.add(bc(u,c)),Yc=t,zc=a,Uc=o}var Jc=function(t){return Vc.reset(),$c(t,Hc),2*Vc};function Qc(t){return[bc(t[1],t[0]),Oc(t[2])]}function Kc(t){var e=t[0],n=t[1],r=xc(n);return[r*xc(e),r*Tc(e),Tc(n)]}function tu(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function eu(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function nu(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function ru(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function iu(t){var e=Ac(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}var au,ou,su,cu,uu,lu,hu,fu,du,pu,gu=sc(),yu={point:vu,lineStart:bu,lineEnd:xu,polygonStart:function(){yu.point=_u,yu.lineStart=ku,yu.lineEnd=wu,gu.reset(),Hc.polygonStart()},polygonEnd:function(){Hc.polygonEnd(),yu.point=vu,yu.lineStart=bu,yu.lineEnd=xu,Wc<0?(au=-(su=180),ou=-(cu=90)):gu>1e-6?cu=90:gu<-1e-6&&(ou=-90),pu[0]=au,pu[1]=su},sphere:function(){au=-(su=180),ou=-(cu=90)}};function vu(t,e){du.push(pu=[au=t,su=t]),ecu&&(cu=e)}function mu(t,e){var n=Kc([t*yc,e*yc]);if(fu){var r=eu(fu,n),i=eu([r[1],-r[0],0],r);iu(i),i=Qc(i);var a,o=t-uu,s=o>0?1:-1,c=i[0]*gc*s,u=vc(o)>180;u^(s*uucu&&(cu=a):u^(s*uu<(c=(c+360)%360-180)&&ccu&&(cu=e)),u?tEu(au,su)&&(su=t):Eu(t,su)>Eu(au,su)&&(au=t):su>=au?(tsu&&(su=t)):t>uu?Eu(au,t)>Eu(au,su)&&(su=t):Eu(t,su)>Eu(au,su)&&(au=t)}else du.push(pu=[au=t,su=t]);ecu&&(cu=e),fu=n,uu=t}function bu(){yu.point=mu}function xu(){pu[0]=au,pu[1]=su,yu.point=vu,fu=null}function _u(t,e){if(fu){var n=t-uu;gu.add(vc(n)>180?n+(n>0?360:-360):n)}else lu=t,hu=e;Hc.point(t,e),mu(t,e)}function ku(){Hc.lineStart()}function wu(){_u(lu,hu),Hc.lineEnd(),vc(gu)>1e-6&&(au=-(su=180)),pu[0]=au,pu[1]=su,fu=null}function Eu(t,e){return(e-=t)<0?e+360:e}function Tu(t,e){return t[0]-e[0]}function Cu(t,e){return t[0]<=t[1]?t[0]<=e&&e<=t[1]:eEu(r[0],r[1])&&(r[1]=i[1]),Eu(i[0],r[1])>Eu(r[0],r[1])&&(r[0]=i[0])):a.push(r=i);for(o=-1/0,e=0,r=a[n=a.length-1];e<=n;r=i,++e)i=a[e],(s=Eu(r[1],i[0]))>o&&(o=s,au=i[0],su=r[1])}return du=pu=null,au===1/0||ou===1/0?[[NaN,NaN],[NaN,NaN]]:[[au,ou],[su,cu]]},Wu={sphere:Nc,point:Vu,lineStart:Gu,lineEnd:Zu,polygonStart:function(){Wu.lineStart=Ju,Wu.lineEnd=Qu},polygonEnd:function(){Wu.lineStart=Gu,Wu.lineEnd=Zu}};function Vu(t,e){t*=yc;var n=xc(e*=yc);Hu(n*xc(t),n*Tc(t),Tc(e))}function Hu(t,e,n){++Au,Mu+=(t-Mu)/Au,Ou+=(e-Ou)/Au,Du+=(n-Du)/Au}function Gu(){Wu.point=qu}function qu(t,e){t*=yc;var n=xc(e*=yc);Yu=n*xc(t),zu=n*Tc(t),Uu=Tc(e),Wu.point=Xu,Hu(Yu,zu,Uu)}function Xu(t,e){t*=yc;var n=xc(e*=yc),r=n*xc(t),i=n*Tc(t),a=Tc(e),o=bc(Ac((o=zu*a-Uu*i)*o+(o=Uu*r-Yu*a)*o+(o=Yu*i-zu*r)*o),Yu*r+zu*i+Uu*a);Su+=o,Nu+=o*(Yu+(Yu=r)),Bu+=o*(zu+(zu=i)),Lu+=o*(Uu+(Uu=a)),Hu(Yu,zu,Uu)}function Zu(){Wu.point=Vu}function Ju(){Wu.point=Ku}function Qu(){tl(ju,Ru),Wu.point=Vu}function Ku(t,e){ju=t,Ru=e,t*=yc,e*=yc,Wu.point=tl;var n=xc(e);Yu=n*xc(t),zu=n*Tc(t),Uu=Tc(e),Hu(Yu,zu,Uu)}function tl(t,e){t*=yc;var n=xc(e*=yc),r=n*xc(t),i=n*Tc(t),a=Tc(e),o=zu*a-Uu*i,s=Uu*r-Yu*a,c=Yu*i-zu*r,u=Ac(o*o+s*s+c*c),l=Oc(u),h=u&&-l/u;Fu+=h*o,Pu+=h*s,Iu+=h*c,Su+=l,Nu+=l*(Yu+(Yu=r)),Bu+=l*(zu+(zu=i)),Lu+=l*(Uu+(Uu=a)),Hu(Yu,zu,Uu)}var el=function(t){Au=Su=Mu=Ou=Du=Nu=Bu=Lu=Fu=Pu=Iu=0,$c(t,Wu);var e=Fu,n=Pu,r=Iu,i=e*e+n*n+r*r;return i<1e-12&&(e=Nu,n=Bu,r=Lu,Su<1e-6&&(e=Mu,n=Ou,r=Du),(i=e*e+n*n+r*r)<1e-12)?[NaN,NaN]:[bc(n,e)*gc,Oc(r/Ac(i))*gc]},nl=function(t){return function(){return t}},rl=function(t,e){function n(n,r){return n=t(n,r),e(n[0],n[1])}return t.invert&&e.invert&&(n.invert=function(n,r){return(n=e.invert(n,r))&&t.invert(n[0],n[1])}),n};function il(t,e){return[vc(t)>hc?t+Math.round(-t/pc)*pc:t,e]}function al(t,e,n){return(t%=pc)?e||n?rl(sl(t),cl(e,n)):sl(t):e||n?cl(e,n):il}function ol(t){return function(e,n){return[(e+=t)>hc?e-pc:e<-hc?e+pc:e,n]}}function sl(t){var e=ol(t);return e.invert=ol(-t),e}function cl(t,e){var n=xc(t),r=Tc(t),i=xc(e),a=Tc(e);function o(t,e){var o=xc(e),s=xc(t)*o,c=Tc(t)*o,u=Tc(e),l=u*n+s*r;return[bc(c*i-l*a,s*n-u*r),Oc(l*i+c*a)]}return o.invert=function(t,e){var o=xc(e),s=xc(t)*o,c=Tc(t)*o,u=Tc(e),l=u*i-c*a;return[bc(c*i+u*a,s*n+l*r),Oc(l*n-s*r)]},o}il.invert=il;var ul=function(t){function e(e){return(e=t(e[0]*yc,e[1]*yc))[0]*=gc,e[1]*=gc,e}return t=al(t[0]*yc,t[1]*yc,t.length>2?t[2]*yc:0),e.invert=function(e){return(e=t.invert(e[0]*yc,e[1]*yc))[0]*=gc,e[1]*=gc,e},e};function ll(t,e,n,r,i,a){if(n){var o=xc(e),s=Tc(e),c=r*n;null==i?(i=e+r*pc,a=e-c/2):(i=hl(o,i),a=hl(o,a),(r>0?ia)&&(i+=r*pc));for(var u,l=i;r>0?l>a:l1&&e.push(e.pop().concat(e.shift()))},result:function(){var n=e;return e=[],t=null,n}}},pl=function(t,e){return vc(t[0]-e[0])<1e-6&&vc(t[1]-e[1])<1e-6};function gl(t,e,n,r){this.x=t,this.z=e,this.o=n,this.e=r,this.v=!1,this.n=this.p=null}var yl=function(t,e,n,r,i){var a,o,s=[],c=[];if(t.forEach((function(t){if(!((e=t.length-1)<=0)){var e,n,r=t[0],o=t[e];if(pl(r,o)){for(i.lineStart(),a=0;a=0;--a)i.point((l=u[a])[0],l[1]);else r(f.x,f.p.x,-1,i);f=f.p}u=(f=f.o).z,d=!d}while(!f.v);i.lineEnd()}}};function vl(t){if(e=t.length){for(var e,n,r=0,i=t[0];++r=0?1:-1,T=E*w,C=T>hc,A=g*_;if(ml.add(bc(A*E*Tc(T),y*k+A*xc(T))),o+=C?w+E*pc:w,C^d>=n^b>=n){var S=eu(Kc(f),Kc(m));iu(S);var M=eu(a,S);iu(M);var O=(C^w>=0?-1:1)*Oc(M[2]);(r>O||r===O&&(S[0]||S[1]))&&(s+=C^w>=0?1:-1)}}return(o<-1e-6||o<1e-6&&ml<-1e-6)^1&s},_l=function(t,e,n,r){return function(i){var a,o,s,c=e(i),u=dl(),l=e(u),h=!1,f={point:d,lineStart:g,lineEnd:y,polygonStart:function(){f.point=v,f.lineStart=m,f.lineEnd=b,o=[],a=[]},polygonEnd:function(){f.point=d,f.lineStart=g,f.lineEnd=y,o=I(o);var t=xl(a,r);o.length?(h||(i.polygonStart(),h=!0),yl(o,wl,t,n,i)):t&&(h||(i.polygonStart(),h=!0),i.lineStart(),n(null,null,1,i),i.lineEnd()),h&&(i.polygonEnd(),h=!1),o=a=null},sphere:function(){i.polygonStart(),i.lineStart(),n(null,null,1,i),i.lineEnd(),i.polygonEnd()}};function d(e,n){t(e,n)&&i.point(e,n)}function p(t,e){c.point(t,e)}function g(){f.point=p,c.lineStart()}function y(){f.point=d,c.lineEnd()}function v(t,e){s.push([t,e]),l.point(t,e)}function m(){l.lineStart(),s=[]}function b(){v(s[0][0],s[0][1]),l.lineEnd();var t,e,n,r,c=l.clean(),f=u.result(),d=f.length;if(s.pop(),a.push(s),s=null,d)if(1&c){if((e=(n=f[0]).length-1)>0){for(h||(i.polygonStart(),h=!0),i.lineStart(),t=0;t1&&2&c&&f.push(f.pop().concat(f.shift())),o.push(f.filter(kl))}return f}};function kl(t){return t.length>1}function wl(t,e){return((t=t.x)[0]<0?t[1]-fc-1e-6:fc-t[1])-((e=e.x)[0]<0?e[1]-fc-1e-6:fc-e[1])}var El=_l((function(){return!0}),(function(t){var e,n=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(a,o){var s=a>0?hc:-hc,c=vc(a-n);vc(c-hc)<1e-6?(t.point(n,r=(r+o)/2>0?fc:-fc),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(s,r),t.point(a,r),e=0):i!==s&&c>=hc&&(vc(n-i)<1e-6&&(n-=1e-6*i),vc(a-s)<1e-6&&(a-=1e-6*s),r=function(t,e,n,r){var i,a,o=Tc(t-n);return vc(o)>1e-6?mc((Tc(e)*(a=xc(r))*Tc(n)-Tc(r)*(i=xc(e))*Tc(t))/(i*a*o)):(e+r)/2}(n,r,a,o),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(s,r),e=0),t.point(n=a,r=o),i=s},lineEnd:function(){t.lineEnd(),n=r=NaN},clean:function(){return 2-e}}}),(function(t,e,n,r){var i;if(null==t)i=n*fc,r.point(-hc,i),r.point(0,i),r.point(hc,i),r.point(hc,0),r.point(hc,-i),r.point(0,-i),r.point(-hc,-i),r.point(-hc,0),r.point(-hc,i);else if(vc(t[0]-e[0])>1e-6){var a=t[0]0,i=vc(e)>1e-6;function a(t,n){return xc(t)*xc(n)>e}function o(t,n,r){var i=[1,0,0],a=eu(Kc(t),Kc(n)),o=tu(a,a),s=a[0],c=o-s*s;if(!c)return!r&&t;var u=e*o/c,l=-e*s/c,h=eu(i,a),f=ru(i,u);nu(f,ru(a,l));var d=h,p=tu(f,d),g=tu(d,d),y=p*p-g*(tu(f,f)-1);if(!(y<0)){var v=Ac(y),m=ru(d,(-p-v)/g);if(nu(m,f),m=Qc(m),!r)return m;var b,x=t[0],_=n[0],k=t[1],w=n[1];_0^m[1]<(vc(m[0]-x)<1e-6?k:w):k<=m[1]&&m[1]<=w:E>hc^(x<=m[0]&&m[0]<=_)){var C=ru(d,(-p+v)/g);return nu(C,f),[m,Qc(C)]}}}function s(e,n){var i=r?t:hc-t,a=0;return e<-i?a|=1:e>i&&(a|=2),n<-i?a|=4:n>i&&(a|=8),a}return _l(a,(function(t){var e,n,c,u,l;return{lineStart:function(){u=c=!1,l=1},point:function(h,f){var d,p=[h,f],g=a(h,f),y=r?g?0:s(h,f):g?s(h+(h<0?hc:-hc),f):0;if(!e&&(u=c=g)&&t.lineStart(),g!==c&&(!(d=o(e,p))||pl(e,d)||pl(p,d))&&(p[0]+=1e-6,p[1]+=1e-6,g=a(p[0],p[1])),g!==c)l=0,g?(t.lineStart(),d=o(p,e),t.point(d[0],d[1])):(d=o(e,p),t.point(d[0],d[1]),t.lineEnd()),e=d;else if(i&&e&&r^g){var v;y&n||!(v=o(p,e,!0))||(l=0,r?(t.lineStart(),t.point(v[0][0],v[0][1]),t.point(v[1][0],v[1][1]),t.lineEnd()):(t.point(v[1][0],v[1][1]),t.lineEnd(),t.lineStart(),t.point(v[0][0],v[0][1])))}!g||e&&pl(e,p)||t.point(p[0],p[1]),e=p,c=g,n=y},lineEnd:function(){c&&t.lineEnd(),e=null},clean:function(){return l|(u&&c)<<1}}}),(function(e,r,i,a){ll(a,t,n,i,e,r)}),r?[0,-t]:[-hc,t-hc])};function Cl(t,e,n,r){function i(i,a){return t<=i&&i<=n&&e<=a&&a<=r}function a(i,a,s,u){var l=0,h=0;if(null==i||(l=o(i,s))!==(h=o(a,s))||c(i,a)<0^s>0)do{u.point(0===l||3===l?t:n,l>1?r:e)}while((l=(l+s+4)%4)!==h);else u.point(a[0],a[1])}function o(r,i){return vc(r[0]-t)<1e-6?i>0?0:3:vc(r[0]-n)<1e-6?i>0?2:1:vc(r[1]-e)<1e-6?i>0?1:0:i>0?3:2}function s(t,e){return c(t.x,e.x)}function c(t,e){var n=o(t,1),r=o(e,1);return n!==r?n-r:0===n?e[1]-t[1]:1===n?t[0]-e[0]:2===n?t[1]-e[1]:e[0]-t[0]}return function(o){var c,u,l,h,f,d,p,g,y,v,m,b=o,x=dl(),_={point:k,lineStart:function(){_.point=w,u&&u.push(l=[]);v=!0,y=!1,p=g=NaN},lineEnd:function(){c&&(w(h,f),d&&y&&x.rejoin(),c.push(x.result()));_.point=k,y&&b.lineEnd()},polygonStart:function(){b=x,c=[],u=[],m=!0},polygonEnd:function(){var e=function(){for(var e=0,n=0,i=u.length;nr&&(f-a)*(r-o)>(d-o)*(t-a)&&++e:d<=r&&(f-a)*(r-o)<(d-o)*(t-a)&&--e;return e}(),n=m&&e,i=(c=I(c)).length;(n||i)&&(o.polygonStart(),n&&(o.lineStart(),a(null,null,1,o),o.lineEnd()),i&&yl(c,s,e,a,o),o.polygonEnd());b=o,c=u=l=null}};function k(t,e){i(t,e)&&b.point(t,e)}function w(a,o){var s=i(a,o);if(u&&l.push([a,o]),v)h=a,f=o,d=s,v=!1,s&&(b.lineStart(),b.point(a,o));else if(s&&y)b.point(a,o);else{var c=[p=Math.max(-1e9,Math.min(1e9,p)),g=Math.max(-1e9,Math.min(1e9,g))],x=[a=Math.max(-1e9,Math.min(1e9,a)),o=Math.max(-1e9,Math.min(1e9,o))];!function(t,e,n,r,i,a){var o,s=t[0],c=t[1],u=0,l=1,h=e[0]-s,f=e[1]-c;if(o=n-s,h||!(o>0)){if(o/=h,h<0){if(o0){if(o>l)return;o>u&&(u=o)}if(o=i-s,h||!(o<0)){if(o/=h,h<0){if(o>l)return;o>u&&(u=o)}else if(h>0){if(o0)){if(o/=f,f<0){if(o0){if(o>l)return;o>u&&(u=o)}if(o=a-c,f||!(o<0)){if(o/=f,f<0){if(o>l)return;o>u&&(u=o)}else if(f>0){if(o0&&(t[0]=s+u*h,t[1]=c+u*f),l<1&&(e[0]=s+l*h,e[1]=c+l*f),!0}}}}}(c,x,t,e,n,r)?s&&(b.lineStart(),b.point(a,o),m=!1):(y||(b.lineStart(),b.point(c[0],c[1])),b.point(x[0],x[1]),s||b.lineEnd(),m=!1)}p=a,g=o,y=s}return _}}var Al,Sl,Ml,Ol=function(){var t,e,n,r=0,i=0,a=960,o=500;return n={stream:function(n){return t&&e===n?t:t=Cl(r,i,a,o)(e=n)},extent:function(s){return arguments.length?(r=+s[0][0],i=+s[0][1],a=+s[1][0],o=+s[1][1],t=e=null,n):[[r,i],[a,o]]}}},Dl=sc(),Nl={sphere:Nc,point:Nc,lineStart:function(){Nl.point=Ll,Nl.lineEnd=Bl},lineEnd:Nc,polygonStart:Nc,polygonEnd:Nc};function Bl(){Nl.point=Nl.lineEnd=Nc}function Ll(t,e){Al=t*=yc,Sl=Tc(e*=yc),Ml=xc(e),Nl.point=Fl}function Fl(t,e){t*=yc;var n=Tc(e*=yc),r=xc(e),i=vc(t-Al),a=xc(i),o=r*Tc(i),s=Ml*n-Sl*r*a,c=Sl*n+Ml*r*a;Dl.add(bc(Ac(o*o+s*s),c)),Al=t,Sl=n,Ml=r}var Pl=function(t){return Dl.reset(),$c(t,Nl),+Dl},Il=[null,null],jl={type:"LineString",coordinates:Il},Rl=function(t,e){return Il[0]=t,Il[1]=e,Pl(jl)},Yl={Feature:function(t,e){return Ul(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r0&&(i=Rl(t[a],t[a-1]))>0&&n<=i&&r<=i&&(n+r-i)*(1-Math.pow((n-r)/i,2))<1e-12*i)return!0;n=r}return!1}function Vl(t,e){return!!xl(t.map(Hl),Gl(e))}function Hl(t){return(t=t.map(Gl)).pop(),t}function Gl(t){return[t[0]*yc,t[1]*yc]}var ql=function(t,e){return(t&&Yl.hasOwnProperty(t.type)?Yl[t.type]:Ul)(t,e)};function Xl(t,e,n){var r=k(t,e-1e-6,n).concat(e);return function(t){return r.map((function(e){return[t,e]}))}}function Zl(t,e,n){var r=k(t,e-1e-6,n).concat(e);return function(t){return r.map((function(e){return[e,t]}))}}function Jl(){var t,e,n,r,i,a,o,s,c,u,l,h,f=10,d=f,p=90,g=360,y=2.5;function v(){return{type:"MultiLineString",coordinates:m()}}function m(){return k(_c(r/p)*p,n,p).map(l).concat(k(_c(s/g)*g,o,g).map(h)).concat(k(_c(e/f)*f,t,f).filter((function(t){return vc(t%p)>1e-6})).map(c)).concat(k(_c(a/d)*d,i,d).filter((function(t){return vc(t%g)>1e-6})).map(u))}return v.lines=function(){return m().map((function(t){return{type:"LineString",coordinates:t}}))},v.outline=function(){return{type:"Polygon",coordinates:[l(r).concat(h(o).slice(1),l(n).reverse().slice(1),h(s).reverse().slice(1))]}},v.extent=function(t){return arguments.length?v.extentMajor(t).extentMinor(t):v.extentMinor()},v.extentMajor=function(t){return arguments.length?(r=+t[0][0],n=+t[1][0],s=+t[0][1],o=+t[1][1],r>n&&(t=r,r=n,n=t),s>o&&(t=s,s=o,o=t),v.precision(y)):[[r,s],[n,o]]},v.extentMinor=function(n){return arguments.length?(e=+n[0][0],t=+n[1][0],a=+n[0][1],i=+n[1][1],e>t&&(n=e,e=t,t=n),a>i&&(n=a,a=i,i=n),v.precision(y)):[[e,a],[t,i]]},v.step=function(t){return arguments.length?v.stepMajor(t).stepMinor(t):v.stepMinor()},v.stepMajor=function(t){return arguments.length?(p=+t[0],g=+t[1],v):[p,g]},v.stepMinor=function(t){return arguments.length?(f=+t[0],d=+t[1],v):[f,d]},v.precision=function(f){return arguments.length?(y=+f,c=Xl(a,i,90),u=Zl(e,t,y),l=Xl(s,o,90),h=Zl(r,n,y),v):y},v.extentMajor([[-180,1e-6-90],[180,90-1e-6]]).extentMinor([[-180,-80-1e-6],[180,80+1e-6]])}function Ql(){return Jl()()}var Kl,th,eh,nh,rh=function(t,e){var n=t[0]*yc,r=t[1]*yc,i=e[0]*yc,a=e[1]*yc,o=xc(r),s=Tc(r),c=xc(a),u=Tc(a),l=o*xc(n),h=o*Tc(n),f=c*xc(i),d=c*Tc(i),p=2*Oc(Ac(Dc(a-r)+o*c*Dc(i-n))),g=Tc(p),y=p?function(t){var e=Tc(t*=p)/g,n=Tc(p-t)/g,r=n*l+e*f,i=n*h+e*d,a=n*s+e*u;return[bc(i,r)*gc,bc(a,Ac(r*r+i*i))*gc]}:function(){return[n*gc,r*gc]};return y.distance=p,y},ih=function(t){return t},ah=sc(),oh=sc(),sh={point:Nc,lineStart:Nc,lineEnd:Nc,polygonStart:function(){sh.lineStart=ch,sh.lineEnd=hh},polygonEnd:function(){sh.lineStart=sh.lineEnd=sh.point=Nc,ah.add(vc(oh)),oh.reset()},result:function(){var t=ah/2;return ah.reset(),t}};function ch(){sh.point=uh}function uh(t,e){sh.point=lh,Kl=eh=t,th=nh=e}function lh(t,e){oh.add(nh*t-eh*e),eh=t,nh=e}function hh(){lh(Kl,th)}var fh=sh,dh=1/0,ph=dh,gh=-dh,yh=gh;var vh,mh,bh,xh,_h={point:function(t,e){tgh&&(gh=t);eyh&&(yh=e)},lineStart:Nc,lineEnd:Nc,polygonStart:Nc,polygonEnd:Nc,result:function(){var t=[[dh,ph],[gh,yh]];return gh=yh=-(ph=dh=1/0),t}},kh=0,wh=0,Eh=0,Th=0,Ch=0,Ah=0,Sh=0,Mh=0,Oh=0,Dh={point:Nh,lineStart:Bh,lineEnd:Ph,polygonStart:function(){Dh.lineStart=Ih,Dh.lineEnd=jh},polygonEnd:function(){Dh.point=Nh,Dh.lineStart=Bh,Dh.lineEnd=Ph},result:function(){var t=Oh?[Sh/Oh,Mh/Oh]:Ah?[Th/Ah,Ch/Ah]:Eh?[kh/Eh,wh/Eh]:[NaN,NaN];return kh=wh=Eh=Th=Ch=Ah=Sh=Mh=Oh=0,t}};function Nh(t,e){kh+=t,wh+=e,++Eh}function Bh(){Dh.point=Lh}function Lh(t,e){Dh.point=Fh,Nh(bh=t,xh=e)}function Fh(t,e){var n=t-bh,r=e-xh,i=Ac(n*n+r*r);Th+=i*(bh+t)/2,Ch+=i*(xh+e)/2,Ah+=i,Nh(bh=t,xh=e)}function Ph(){Dh.point=Nh}function Ih(){Dh.point=Rh}function jh(){Yh(vh,mh)}function Rh(t,e){Dh.point=Yh,Nh(vh=bh=t,mh=xh=e)}function Yh(t,e){var n=t-bh,r=e-xh,i=Ac(n*n+r*r);Th+=i*(bh+t)/2,Ch+=i*(xh+e)/2,Ah+=i,Sh+=(i=xh*t-bh*e)*(bh+t),Mh+=i*(xh+e),Oh+=3*i,Nh(bh=t,xh=e)}var zh=Dh;function Uh(t){this._context=t}Uh.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._context.moveTo(t,e),this._point=1;break;case 1:this._context.lineTo(t,e);break;default:this._context.moveTo(t+this._radius,e),this._context.arc(t,e,this._radius,0,pc)}},result:Nc};var $h,Wh,Vh,Hh,Gh,qh=sc(),Xh={point:Nc,lineStart:function(){Xh.point=Zh},lineEnd:function(){$h&&Jh(Wh,Vh),Xh.point=Nc},polygonStart:function(){$h=!0},polygonEnd:function(){$h=null},result:function(){var t=+qh;return qh.reset(),t}};function Zh(t,e){Xh.point=Jh,Wh=Hh=t,Vh=Gh=e}function Jh(t,e){Hh-=t,Gh-=e,qh.add(Ac(Hh*Hh+Gh*Gh)),Hh=t,Gh=e}var Qh=Xh;function Kh(){this._string=[]}function tf(t){return"m0,"+t+"a"+t+","+t+" 0 1,1 0,"+-2*t+"a"+t+","+t+" 0 1,1 0,"+2*t+"z"}Kh.prototype={_radius:4.5,_circle:tf(4.5),pointRadius:function(t){return(t=+t)!==this._radius&&(this._radius=t,this._circle=null),this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._string.push("Z"),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._string.push("M",t,",",e),this._point=1;break;case 1:this._string.push("L",t,",",e);break;default:null==this._circle&&(this._circle=tf(this._radius)),this._string.push("M",t,",",e,this._circle)}},result:function(){if(this._string.length){var t=this._string.join("");return this._string=[],t}return null}};var ef=function(t,e){var n,r,i=4.5;function a(t){return t&&("function"==typeof i&&r.pointRadius(+i.apply(this,arguments)),$c(t,n(r))),r.result()}return a.area=function(t){return $c(t,n(fh)),fh.result()},a.measure=function(t){return $c(t,n(Qh)),Qh.result()},a.bounds=function(t){return $c(t,n(_h)),_h.result()},a.centroid=function(t){return $c(t,n(zh)),zh.result()},a.projection=function(e){return arguments.length?(n=null==e?(t=null,ih):(t=e).stream,a):t},a.context=function(t){return arguments.length?(r=null==t?(e=null,new Kh):new Uh(e=t),"function"!=typeof i&&r.pointRadius(i),a):e},a.pointRadius=function(t){return arguments.length?(i="function"==typeof t?t:(r.pointRadius(+t),+t),a):i},a.projection(t).context(e)},nf=function(t){return{stream:rf(t)}};function rf(t){return function(e){var n=new af;for(var r in t)n[r]=t[r];return n.stream=e,n}}function af(){}function of(t,e,n){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),$c(n,t.stream(_h)),e(_h.result()),null!=r&&t.clipExtent(r),t}function sf(t,e,n){return of(t,(function(n){var r=e[1][0]-e[0][0],i=e[1][1]-e[0][1],a=Math.min(r/(n[1][0]-n[0][0]),i/(n[1][1]-n[0][1])),o=+e[0][0]+(r-a*(n[1][0]+n[0][0]))/2,s=+e[0][1]+(i-a*(n[1][1]+n[0][1]))/2;t.scale(150*a).translate([o,s])}),n)}function cf(t,e,n){return sf(t,[[0,0],e],n)}function uf(t,e,n){return of(t,(function(n){var r=+e,i=r/(n[1][0]-n[0][0]),a=(r-i*(n[1][0]+n[0][0]))/2,o=-i*n[0][1];t.scale(150*i).translate([a,o])}),n)}function lf(t,e,n){return of(t,(function(n){var r=+e,i=r/(n[1][1]-n[0][1]),a=-i*n[0][0],o=(r-i*(n[1][1]+n[0][1]))/2;t.scale(150*i).translate([a,o])}),n)}af.prototype={constructor:af,point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var hf=xc(30*yc),ff=function(t,e){return+e?function(t,e){function n(r,i,a,o,s,c,u,l,h,f,d,p,g,y){var v=u-r,m=l-i,b=v*v+m*m;if(b>4*e&&g--){var x=o+f,_=s+d,k=c+p,w=Ac(x*x+_*_+k*k),E=Oc(k/=w),T=vc(vc(k)-1)<1e-6||vc(a-h)<1e-6?(a+h)/2:bc(_,x),C=t(T,E),A=C[0],S=C[1],M=A-r,O=S-i,D=m*M-v*O;(D*D/b>e||vc((v*M+m*O)/b-.5)>.3||o*f+s*d+c*p2?t[2]%360*yc:0,A()):[y*gc,v*gc,m*gc]},T.angle=function(t){return arguments.length?(b=t%360*yc,A()):b*gc},T.precision=function(t){return arguments.length?(o=ff(s,E=t*t),S()):Ac(E)},T.fitExtent=function(t,e){return sf(T,t,e)},T.fitSize=function(t,e){return cf(T,t,e)},T.fitWidth=function(t,e){return uf(T,t,e)},T.fitHeight=function(t,e){return lf(T,t,e)},function(){return e=t.apply(this,arguments),T.invert=e.invert&&C,A()}}function mf(t){var e=0,n=hc/3,r=vf(t),i=r(e,n);return i.parallels=function(t){return arguments.length?r(e=t[0]*yc,n=t[1]*yc):[e*gc,n*gc]},i}function bf(t,e){var n=Tc(t),r=(n+Tc(e))/2;if(vc(r)<1e-6)return function(t){var e=xc(t);function n(t,n){return[t*e,Tc(n)/e]}return n.invert=function(t,n){return[t/e,Oc(n*e)]},n}(t);var i=1+n*(2*r-n),a=Ac(i)/r;function o(t,e){var n=Ac(i-2*r*Tc(e))/r;return[n*Tc(t*=r),a-n*xc(t)]}return o.invert=function(t,e){var n=a-e;return[bc(t,vc(n))/r*Cc(n),Oc((i-(t*t+n*n)*r*r)/(2*r))]},o}var xf=function(){return mf(bf).scale(155.424).center([0,33.6442])},_f=function(){return xf().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])};var kf=function(){var t,e,n,r,i,a,o=_f(),s=xf().rotate([154,0]).center([-2,58.5]).parallels([55,65]),c=xf().rotate([157,0]).center([-3,19.9]).parallels([8,18]),u={point:function(t,e){a=[t,e]}};function l(t){var e=t[0],o=t[1];return a=null,n.point(e,o),a||(r.point(e,o),a)||(i.point(e,o),a)}function h(){return t=e=null,l}return l.invert=function(t){var e=o.scale(),n=o.translate(),r=(t[0]-n[0])/e,i=(t[1]-n[1])/e;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?s:i>=.166&&i<.234&&r>=-.214&&r<-.115?c:o).invert(t)},l.stream=function(n){return t&&e===n?t:(r=[o.stream(e=n),s.stream(n),c.stream(n)],i=r.length,t={point:function(t,e){for(var n=-1;++n0?e<1e-6-fc&&(e=1e-6-fc):e>fc-1e-6&&(e=fc-1e-6);var n=i/Ec(Nf(e),r);return[n*Tc(r*t),i-n*xc(r*t)]}return a.invert=function(t,e){var n=i-e,a=Cc(r)*Ac(t*t+n*n);return[bc(t,vc(n))/r*Cc(n),2*mc(Ec(i/a,1/r))-fc]},a}var Lf=function(){return mf(Bf).scale(109.5).parallels([30,30])};function Ff(t,e){return[t,e]}Ff.invert=Ff;var Pf=function(){return yf(Ff).scale(152.63)};function If(t,e){var n=xc(t),r=t===e?Tc(t):(n-xc(e))/(e-t),i=n/r+t;if(vc(r)<1e-6)return Ff;function a(t,e){var n=i-e,a=r*t;return[n*Tc(a),i-n*xc(a)]}return a.invert=function(t,e){var n=i-e;return[bc(t,vc(n))/r*Cc(n),i-Cc(r)*Ac(t*t+n*n)]},a}var jf=function(){return mf(If).scale(131.154).center([0,13.9389])},Rf=1.340264,Yf=-.081106,zf=893e-6,Uf=.003796,$f=Ac(3)/2;function Wf(t,e){var n=Oc($f*Tc(e)),r=n*n,i=r*r*r;return[t*xc(n)/($f*(Rf+3*Yf*r+i*(7*zf+9*Uf*r))),n*(Rf+Yf*r+i*(zf+Uf*r))]}Wf.invert=function(t,e){for(var n,r=e,i=r*r,a=i*i*i,o=0;o<12&&(a=(i=(r-=n=(r*(Rf+Yf*i+a*(zf+Uf*i))-e)/(Rf+3*Yf*i+a*(7*zf+9*Uf*i)))*r)*i*i,!(vc(n)<1e-12));++o);return[$f*t*(Rf+3*Yf*i+a*(7*zf+9*Uf*i))/xc(r),Oc(Tc(r)/$f)]};var Vf=function(){return yf(Wf).scale(177.158)};function Hf(t,e){var n=xc(e),r=xc(t)*n;return[n*Tc(t)/r,Tc(e)/r]}Hf.invert=Ef(mc);var Gf=function(){return yf(Hf).scale(144.049).clipAngle(60)};function qf(t,e,n,r){return 1===t&&1===e&&0===n&&0===r?ih:rf({point:function(i,a){this.stream.point(i*t+n,a*e+r)}})}var Xf=function(){var t,e,n,r,i,a,o=1,s=0,c=0,u=1,l=1,h=ih,f=null,d=ih;function p(){return r=i=null,a}return a={stream:function(t){return r&&i===t?r:r=h(d(i=t))},postclip:function(r){return arguments.length?(d=r,f=t=e=n=null,p()):d},clipExtent:function(r){return arguments.length?(d=null==r?(f=t=e=n=null,ih):Cl(f=+r[0][0],t=+r[0][1],e=+r[1][0],n=+r[1][1]),p()):null==f?null:[[f,t],[e,n]]},scale:function(t){return arguments.length?(h=qf((o=+t)*u,o*l,s,c),p()):o},translate:function(t){return arguments.length?(h=qf(o*u,o*l,s=+t[0],c=+t[1]),p()):[s,c]},reflectX:function(t){return arguments.length?(h=qf(o*(u=t?-1:1),o*l,s,c),p()):u<0},reflectY:function(t){return arguments.length?(h=qf(o*u,o*(l=t?-1:1),s,c),p()):l<0},fitExtent:function(t,e){return sf(a,t,e)},fitSize:function(t,e){return cf(a,t,e)},fitWidth:function(t,e){return uf(a,t,e)},fitHeight:function(t,e){return lf(a,t,e)}}};function Zf(t,e){var n=e*e,r=n*n;return[t*(.8707-.131979*n+r*(r*(.003971*n-.001529*r)-.013791)),e*(1.007226+n*(.015085+r*(.028874*n-.044475-.005916*r)))]}Zf.invert=function(t,e){var n,r=e,i=25;do{var a=r*r,o=a*a;r-=n=(r*(1.007226+a*(.015085+o*(.028874*a-.044475-.005916*o)))-e)/(1.007226+a*(.045255+o*(.259866*a-.311325-.005916*11*o)))}while(vc(n)>1e-6&&--i>0);return[t/(.8707+(a=r*r)*(a*(a*a*a*(.003971-.001529*a)-.013791)-.131979)),r]};var Jf=function(){return yf(Zf).scale(175.295)};function Qf(t,e){return[xc(e)*Tc(t),Tc(e)]}Qf.invert=Ef(Oc);var Kf=function(){return yf(Qf).scale(249.5).clipAngle(90+1e-6)};function td(t,e){var n=xc(e),r=1+xc(t)*n;return[n*Tc(t)/r,Tc(e)/r]}td.invert=Ef((function(t){return 2*mc(t)}));var ed=function(){return yf(td).scale(250).clipAngle(142)};function nd(t,e){return[wc(Sc((fc+e)/2)),-t]}nd.invert=function(t,e){return[-e,2*mc(kc(t))-fc]};var rd=function(){var t=Df(nd),e=t.center,n=t.rotate;return t.center=function(t){return arguments.length?e([-t[1],t[0]]):[(t=e())[1],-t[0]]},t.rotate=function(t){return arguments.length?n([t[0],t[1],t.length>2?t[2]+90:90]):[(t=n())[0],t[1],t[2]-90]},n([0,0,90]).scale(159.155)};function id(t,e){return t.parent===e.parent?1:2}function ad(t,e){return t+e.x}function od(t,e){return Math.max(t,e.y)}var sd=function(){var t=id,e=1,n=1,r=!1;function i(i){var a,o=0;i.eachAfter((function(e){var n=e.children;n?(e.x=function(t){return t.reduce(ad,0)/t.length}(n),e.y=function(t){return 1+t.reduce(od,0)}(n)):(e.x=a?o+=t(e,a):0,e.y=0,a=e)}));var s=function(t){for(var e;e=t.children;)t=e[0];return t}(i),c=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(i),u=s.x-t(s,c)/2,l=c.x+t(c,s)/2;return i.eachAfter(r?function(t){t.x=(t.x-i.x)*e,t.y=(i.y-t.y)*n}:function(t){t.x=(t.x-u)/(l-u)*e,t.y=(1-(i.y?t.y/i.y:1))*n})}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(r=!1,e=+t[0],n=+t[1],i):r?null:[e,n]},i.nodeSize=function(t){return arguments.length?(r=!0,e=+t[0],n=+t[1],i):r?[e,n]:null},i};function cd(t){var e=0,n=t.children,r=n&&n.length;if(r)for(;--r>=0;)e+=n[r].value;else e=1;t.value=e}function ud(t,e){var n,r,i,a,o,s=new dd(t),c=+t.value&&(s.value=t.value),u=[s];for(null==e&&(e=ld);n=u.pop();)if(c&&(n.value=+n.data.value),(i=e(n.data))&&(o=i.length))for(n.children=new Array(o),a=o-1;a>=0;--a)u.push(r=n.children[a]=new dd(i[a])),r.parent=n,r.depth=n.depth+1;return s.eachBefore(fd)}function ld(t){return t.children}function hd(t){t.data=t.data.data}function fd(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function dd(t){this.data=t,this.depth=this.height=0,this.parent=null}dd.prototype=ud.prototype={constructor:dd,count:function(){return this.eachAfter(cd)},each:function(t){var e,n,r,i,a=this,o=[a];do{for(e=o.reverse(),o=[];a=e.pop();)if(t(a),n=a.children)for(r=0,i=n.length;r=0;--n)i.push(e[n]);return this},sum:function(t){return this.eachAfter((function(e){for(var n=+t(e.data)||0,r=e.children,i=r&&r.length;--i>=0;)n+=r[i].value;e.value=n}))},sort:function(t){return this.eachBefore((function(e){e.children&&e.children.sort(t)}))},path:function(t){for(var e=this,n=function(t,e){if(t===e)return t;var n=t.ancestors(),r=e.ancestors(),i=null;t=n.pop(),e=r.pop();for(;t===e;)i=t,t=n.pop(),e=r.pop();return i}(e,t),r=[e];e!==n;)e=e.parent,r.push(e);for(var i=r.length;t!==n;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each((function(e){t.push(e)})),t},leaves:function(){var t=[];return this.eachBefore((function(e){e.children||t.push(e)})),t},links:function(){var t=this,e=[];return t.each((function(n){n!==t&&e.push({source:n.parent,target:n})})),e},copy:function(){return ud(this).eachBefore(hd)}};var pd=Array.prototype.slice;var gd=function(t){for(var e,n,r=0,i=(t=function(t){for(var e,n,r=t.length;r;)n=Math.random()*r--|0,e=t[r],t[r]=t[n],t[n]=e;return t}(pd.call(t))).length,a=[];r0&&n*n>r*r+i*i}function bd(t,e){for(var n=0;n(o*=o)?(r=(u+o-i)/(2*u),a=Math.sqrt(Math.max(0,o/u-r*r)),n.x=t.x-r*s-a*c,n.y=t.y-r*c+a*s):(r=(u+i-o)/(2*u),a=Math.sqrt(Math.max(0,i/u-r*r)),n.x=e.x+r*s-a*c,n.y=e.y+r*c+a*s)):(n.x=e.x+n.r,n.y=e.y)}function Ed(t,e){var n=t.r+e.r-1e-6,r=e.x-t.x,i=e.y-t.y;return n>0&&n*n>r*r+i*i}function Td(t){var e=t._,n=t.next._,r=e.r+n.r,i=(e.x*n.r+n.x*e.r)/r,a=(e.y*n.r+n.y*e.r)/r;return i*i+a*a}function Cd(t){this._=t,this.next=null,this.previous=null}function Ad(t){if(!(i=t.length))return 0;var e,n,r,i,a,o,s,c,u,l,h;if((e=t[0]).x=0,e.y=0,!(i>1))return e.r;if(n=t[1],e.x=-n.r,n.x=e.r,n.y=0,!(i>2))return e.r+n.r;wd(n,e,r=t[2]),e=new Cd(e),n=new Cd(n),r=new Cd(r),e.next=r.previous=n,n.next=e.previous=r,r.next=n.previous=e;t:for(s=3;s0)throw new Error("cycle");return a}return n.id=function(e){return arguments.length?(t=Od(e),n):t},n.parentId=function(t){return arguments.length?(e=Od(t),n):e},n};function Hd(t,e){return t.parent===e.parent?1:2}function Gd(t){var e=t.children;return e?e[0]:t.t}function qd(t){var e=t.children;return e?e[e.length-1]:t.t}function Xd(t,e,n){var r=n/(e.i-t.i);e.c-=r,e.s+=n,t.c+=r,e.z+=n,e.m+=n}function Zd(t,e,n){return t.a.parent===e.parent?t.a:n}function Jd(t,e){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=e}Jd.prototype=Object.create(dd.prototype);var Qd=function(){var t=Hd,e=1,n=1,r=null;function i(i){var c=function(t){for(var e,n,r,i,a,o=new Jd(t,0),s=[o];e=s.pop();)if(r=e._.children)for(e.children=new Array(a=r.length),i=a-1;i>=0;--i)s.push(n=e.children[i]=new Jd(r[i],i)),n.parent=e;return(o.parent=new Jd(null,0)).children=[o],o}(i);if(c.eachAfter(a),c.parent.m=-c.z,c.eachBefore(o),r)i.eachBefore(s);else{var u=i,l=i,h=i;i.eachBefore((function(t){t.xl.x&&(l=t),t.depth>h.depth&&(h=t)}));var f=u===l?1:t(u,l)/2,d=f-u.x,p=e/(l.x+f+d),g=n/(h.depth||1);i.eachBefore((function(t){t.x=(t.x+d)*p,t.y=t.depth*g}))}return i}function a(e){var n=e.children,r=e.parent.children,i=e.i?r[e.i-1]:null;if(n){!function(t){for(var e,n=0,r=0,i=t.children,a=i.length;--a>=0;)(e=i[a]).z+=n,e.m+=n,n+=e.s+(r+=e.c)}(e);var a=(n[0].z+n[n.length-1].z)/2;i?(e.z=i.z+t(e._,i._),e.m=e.z-a):e.z=a}else i&&(e.z=i.z+t(e._,i._));e.parent.A=function(e,n,r){if(n){for(var i,a=e,o=e,s=n,c=a.parent.children[0],u=a.m,l=o.m,h=s.m,f=c.m;s=qd(s),a=Gd(a),s&&a;)c=Gd(c),(o=qd(o)).a=e,(i=s.z+h-a.z-u+t(s._,a._))>0&&(Xd(Zd(s,e,r),e,i),u+=i,l+=i),h+=s.m,u+=a.m,f+=c.m,l+=o.m;s&&!qd(o)&&(o.t=s,o.m+=h-l),a&&!Gd(c)&&(c.t=a,c.m+=u-f,r=e)}return r}(e,i,e.parent.A||r[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*n}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(r=!1,e=+t[0],n=+t[1],i):r?null:[e,n]},i.nodeSize=function(t){return arguments.length?(r=!0,e=+t[0],n=+t[1],i):r?[e,n]:null},i},Kd=function(t,e,n,r,i){for(var a,o=t.children,s=-1,c=o.length,u=t.value&&(i-n)/t.value;++sf&&(f=s),y=l*l*g,(d=Math.max(f/y,y/h))>p){l-=s;break}p=d}v.push(o={value:l,dice:c1?e:1)},n}(tp),rp=function(){var t=np,e=!1,n=1,r=1,i=[0],a=Dd,o=Dd,s=Dd,c=Dd,u=Dd;function l(t){return t.x0=t.y0=0,t.x1=n,t.y1=r,t.eachBefore(h),i=[0],e&&t.eachBefore(jd),t}function h(e){var n=i[e.depth],r=e.x0+n,l=e.y0+n,h=e.x1-n,f=e.y1-n;h=n-1){var l=s[e];return l.x0=i,l.y0=a,l.x1=o,void(l.y1=c)}var h=u[e],f=r/2+h,d=e+1,p=n-1;for(;d>>1;u[g]c-a){var m=(i*v+o*y)/r;t(e,d,y,i,a,m,c),t(d,n,v,m,a,o,c)}else{var b=(a*v+c*y)/r;t(e,d,y,i,a,o,b),t(d,n,v,i,b,o,c)}}(0,c,t.value,e,n,r,i)},ap=function(t,e,n,r,i){(1&t.depth?Kd:Rd)(t,e,n,r,i)},op=function t(e){function n(t,n,r,i,a){if((o=t._squarify)&&o.ratio===e)for(var o,s,c,u,l,h=-1,f=o.length,d=t.value;++h1?e:1)},n}(tp),sp=function(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}},cp=function(t,e){var n=un(+t,+e);return function(t){var e=n(t);return e-360*Math.floor(e/360)}},up=function(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}},lp=Math.SQRT2;function hp(t){return((t=Math.exp(t))+1/t)/2}var fp=function(t,e){var n,r,i=t[0],a=t[1],o=t[2],s=e[0],c=e[1],u=e[2],l=s-i,h=c-a,f=l*l+h*h;if(f<1e-12)r=Math.log(u/o)/lp,n=function(t){return[i+t*l,a+t*h,o*Math.exp(lp*t*r)]};else{var d=Math.sqrt(f),p=(u*u-o*o+4*f)/(2*o*2*d),g=(u*u-o*o-4*f)/(2*u*2*d),y=Math.log(Math.sqrt(p*p+1)-p),v=Math.log(Math.sqrt(g*g+1)-g);r=(v-y)/lp,n=function(t){var e,n=t*r,s=hp(y),c=o/(2*d)*(s*(e=lp*n+y,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(y));return[i+c*l,a+c*h,o*s/hp(lp*n+y)]}}return n.duration=1e3*r,n};function dp(t){return function(e,n){var r=t((e=tn(e)).h,(n=tn(n)).h),i=hn(e.s,n.s),a=hn(e.l,n.l),o=hn(e.opacity,n.opacity);return function(t){return e.h=r(t),e.s=i(t),e.l=a(t),e.opacity=o(t),e+""}}}var pp=dp(un),gp=dp(hn);function yp(t,e){var n=hn((t=pa(t)).l,(e=pa(e)).l),r=hn(t.a,e.a),i=hn(t.b,e.b),a=hn(t.opacity,e.opacity);return function(e){return t.l=n(e),t.a=r(e),t.b=i(e),t.opacity=a(e),t+""}}function vp(t){return function(e,n){var r=t((e=ka(e)).h,(n=ka(n)).h),i=hn(e.c,n.c),a=hn(e.l,n.l),o=hn(e.opacity,n.opacity);return function(t){return e.h=r(t),e.c=i(t),e.l=a(t),e.opacity=o(t),e+""}}}var mp=vp(un),bp=vp(hn);function xp(t){return function e(n){function r(e,r){var i=t((e=Oa(e)).h,(r=Oa(r)).h),a=hn(e.s,r.s),o=hn(e.l,r.l),s=hn(e.opacity,r.opacity);return function(t){return e.h=i(t),e.s=a(t),e.l=o(Math.pow(t,n)),e.opacity=s(t),e+""}}return n=+n,r.gamma=e,r}(1)}var _p=xp(un),kp=xp(hn);function wp(t,e){for(var n=0,r=e.length-1,i=e[0],a=new Array(r<0?0:r);n1&&(e=t[a[o-2]],n=t[a[o-1]],r=t[s],(n[0]-e[0])*(r[1]-e[1])-(n[1]-e[1])*(r[0]-e[0])<=0);)--o;a[o++]=s}return a.slice(0,o)}var Mp=function(t){if((n=t.length)<3)return null;var e,n,r=new Array(n),i=new Array(n);for(e=0;e=0;--e)u.push(t[r[a[e]][2]]);for(e=+s;es!=u>s&&o<(c-n)*(s-r)/(u-r)+n&&(l=!l),c=n,u=r;return l},Dp=function(t){for(var e,n,r=-1,i=t.length,a=t[i-1],o=a[0],s=a[1],c=0;++r1);return t+n*a*Math.sqrt(-2*Math.log(i)/i)}}return n.source=t,n}(Np),Fp=function t(e){function n(){var t=Lp.source(e).apply(this,arguments);return function(){return Math.exp(t())}}return n.source=t,n}(Np),Pp=function t(e){function n(t){return function(){for(var n=0,r=0;rr&&(e=n,n=r,r=e),function(t){return Math.max(n,Math.min(r,t))}}function tg(t,e,n){var r=t[0],i=t[1],a=e[0],o=e[1];return i2?eg:tg,i=a=null,h}function h(e){return isNaN(e=+e)?n:(i||(i=r(o.map(t),s,c)))(t(u(e)))}return h.invert=function(n){return u(e((a||(a=r(s,o.map(t),_n)))(n)))},h.domain=function(t){return arguments.length?(o=Up.call(t,Xp),u===Jp||(u=Kp(o)),l()):o.slice()},h.range=function(t){return arguments.length?(s=$p.call(t),l()):s.slice()},h.rangeRound=function(t){return s=$p.call(t),c=up,l()},h.clamp=function(t){return arguments.length?(u=t?Kp(o):Jp,h):u!==Jp},h.interpolate=function(t){return arguments.length?(c=t,l()):c},h.unknown=function(t){return arguments.length?(n=t,h):n},function(n,r){return t=n,e=r,l()}}function ig(t,e){return rg()(t,e)}var ag=function(t,e,n,r){var i,a=S(t,e,n);switch((r=Vs(null==r?",f":r)).type){case"s":var o=Math.max(Math.abs(t),Math.abs(e));return null!=r.precision||isNaN(i=ac(a,o))||(r.precision=i),Zs(r,o);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=oc(a,Math.max(Math.abs(t),Math.abs(e))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=ic(a))||(r.precision=i-2*("%"===r.type))}return Xs(r)};function og(t){var e=t.domain;return t.ticks=function(t){var n=e();return C(n[0],n[n.length-1],null==t?10:t)},t.tickFormat=function(t,n){var r=e();return ag(r[0],r[r.length-1],null==t?10:t,n)},t.nice=function(n){null==n&&(n=10);var r,i=e(),a=0,o=i.length-1,s=i[a],c=i[o];return c0?r=A(s=Math.floor(s/r)*r,c=Math.ceil(c/r)*r,n):r<0&&(r=A(s=Math.ceil(s*r)/r,c=Math.floor(c*r)/r,n)),r>0?(i[a]=Math.floor(s/r)*r,i[o]=Math.ceil(c/r)*r,e(i)):r<0&&(i[a]=Math.ceil(s*r)/r,i[o]=Math.floor(c*r)/r,e(i)),t},t}function sg(){var t=ig(Jp,Jp);return t.copy=function(){return ng(t,sg())},Rp.apply(t,arguments),og(t)}function cg(t){var e;function n(t){return isNaN(t=+t)?e:t}return n.invert=n,n.domain=n.range=function(e){return arguments.length?(t=Up.call(e,Xp),n):t.slice()},n.unknown=function(t){return arguments.length?(e=t,n):e},n.copy=function(){return cg(t).unknown(e)},t=arguments.length?Up.call(t,Xp):[0,1],og(n)}var ug=function(t,e){var n,r=0,i=(t=t.slice()).length-1,a=t[r],o=t[i];return o0){for(;fc)break;g.push(h)}}else for(;f=1;--l)if(!((h=u*l)c)break;g.push(h)}}else g=C(f,d,Math.min(d-f,p)).map(n);return r?g.reverse():g},r.tickFormat=function(t,i){if(null==i&&(i=10===a?".0e":","),"function"!=typeof i&&(i=Xs(i)),t===1/0)return i;null==t&&(t=10);var o=Math.max(1,a*t/r.ticks().length);return function(t){var r=t/n(Math.round(e(t)));return r*a0?i[r-1]:e[0],r=r?[i[r-1],n]:[i[o-1],i[o]]},o.unknown=function(e){return arguments.length?(t=e,o):o},o.thresholds=function(){return i.slice()},o.copy=function(){return Mg().domain([e,n]).range(a).unknown(t)},Rp.apply(og(o),arguments)}function Og(){var t,e=[.5],n=[0,1],r=1;function i(i){return i<=i?n[c(e,i,0,r)]:t}return i.domain=function(t){return arguments.length?(e=$p.call(t),r=Math.min(e.length,n.length-1),i):e.slice()},i.range=function(t){return arguments.length?(n=$p.call(t),r=Math.min(e.length,n.length-1),i):n.slice()},i.invertExtent=function(t){var r=n.indexOf(t);return[e[r-1],e[r]]},i.unknown=function(e){return arguments.length?(t=e,i):t},i.copy=function(){return Og().domain(e).range(n).unknown(t)},Rp.apply(i,arguments)}var Dg=new Date,Ng=new Date;function Bg(t,e,n,r){function i(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return i.floor=function(e){return t(e=new Date(+e)),e},i.ceil=function(n){return t(n=new Date(n-1)),e(n,1),t(n),n},i.round=function(t){var e=i(t),n=i.ceil(t);return t-e0))return s;do{s.push(o=new Date(+n)),e(n,a),t(n)}while(o=e)for(;t(e),!n(e);)e.setTime(e-1)}),(function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;e(t,-1),!n(t););else for(;--r>=0;)for(;e(t,1),!n(t););}))},n&&(i.count=function(e,r){return Dg.setTime(+e),Ng.setTime(+r),t(Dg),t(Ng),Math.floor(n(Dg,Ng))},i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?i.filter(r?function(e){return r(e)%t==0}:function(e){return i.count(0,e)%t==0}):i:null}),i}var Lg=Bg((function(t){t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,e){t.setFullYear(t.getFullYear()+e)}),(function(t,e){return e.getFullYear()-t.getFullYear()}),(function(t){return t.getFullYear()}));Lg.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Bg((function(e){e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,n){e.setFullYear(e.getFullYear()+n*t)})):null};var Fg=Lg,Pg=Lg.range,Ig=Bg((function(t){t.setDate(1),t.setHours(0,0,0,0)}),(function(t,e){t.setMonth(t.getMonth()+e)}),(function(t,e){return e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())}),(function(t){return t.getMonth()})),jg=Ig,Rg=Ig.range;function Yg(t){return Bg((function(e){e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+7*e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/6048e5}))}var zg=Yg(0),Ug=Yg(1),$g=Yg(2),Wg=Yg(3),Vg=Yg(4),Hg=Yg(5),Gg=Yg(6),qg=zg.range,Xg=Ug.range,Zg=$g.range,Jg=Wg.range,Qg=Vg.range,Kg=Hg.range,ty=Gg.range,ey=Bg((function(t){t.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/864e5}),(function(t){return t.getDate()-1})),ny=ey,ry=ey.range,iy=Bg((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds()-6e4*t.getMinutes())}),(function(t,e){t.setTime(+t+36e5*e)}),(function(t,e){return(e-t)/36e5}),(function(t){return t.getHours()})),ay=iy,oy=iy.range,sy=Bg((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds())}),(function(t,e){t.setTime(+t+6e4*e)}),(function(t,e){return(e-t)/6e4}),(function(t){return t.getMinutes()})),cy=sy,uy=sy.range,ly=Bg((function(t){t.setTime(t-t.getMilliseconds())}),(function(t,e){t.setTime(+t+1e3*e)}),(function(t,e){return(e-t)/1e3}),(function(t){return t.getUTCSeconds()})),hy=ly,fy=ly.range,dy=Bg((function(){}),(function(t,e){t.setTime(+t+e)}),(function(t,e){return e-t}));dy.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?Bg((function(e){e.setTime(Math.floor(e/t)*t)}),(function(e,n){e.setTime(+e+n*t)}),(function(e,n){return(n-e)/t})):dy:null};var py=dy,gy=dy.range;function yy(t){return Bg((function(e){e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+7*e)}),(function(t,e){return(e-t)/6048e5}))}var vy=yy(0),my=yy(1),by=yy(2),xy=yy(3),_y=yy(4),ky=yy(5),wy=yy(6),Ey=vy.range,Ty=my.range,Cy=by.range,Ay=xy.range,Sy=_y.range,My=ky.range,Oy=wy.range,Dy=Bg((function(t){t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+e)}),(function(t,e){return(e-t)/864e5}),(function(t){return t.getUTCDate()-1})),Ny=Dy,By=Dy.range,Ly=Bg((function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCFullYear(t.getUTCFullYear()+e)}),(function(t,e){return e.getUTCFullYear()-t.getUTCFullYear()}),(function(t){return t.getUTCFullYear()}));Ly.every=function(t){return isFinite(t=Math.floor(t))&&t>0?Bg((function(e){e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,n){e.setUTCFullYear(e.getUTCFullYear()+n*t)})):null};var Fy=Ly,Py=Ly.range;function Iy(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function jy(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function Ry(t,e,n){return{y:t,m:e,d:n,H:0,M:0,S:0,L:0}}function Yy(t){var e=t.dateTime,n=t.date,r=t.time,i=t.periods,a=t.days,o=t.shortDays,s=t.months,c=t.shortMonths,u=Qy(i),l=Ky(i),h=Qy(a),f=Ky(a),d=Qy(o),p=Ky(o),g=Qy(s),y=Ky(s),v=Qy(c),m=Ky(c),b={a:function(t){return o[t.getDay()]},A:function(t){return a[t.getDay()]},b:function(t){return c[t.getMonth()]},B:function(t){return s[t.getMonth()]},c:null,d:xv,e:xv,f:Tv,H:_v,I:kv,j:wv,L:Ev,m:Cv,M:Av,p:function(t){return i[+(t.getHours()>=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:em,s:nm,S:Sv,u:Mv,U:Ov,V:Dv,w:Nv,W:Bv,x:null,X:null,y:Lv,Y:Fv,Z:Pv,"%":tm},x={a:function(t){return o[t.getUTCDay()]},A:function(t){return a[t.getUTCDay()]},b:function(t){return c[t.getUTCMonth()]},B:function(t){return s[t.getUTCMonth()]},c:null,d:Iv,e:Iv,f:Uv,H:jv,I:Rv,j:Yv,L:zv,m:$v,M:Wv,p:function(t){return i[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:em,s:nm,S:Vv,u:Hv,U:Gv,V:qv,w:Xv,W:Zv,x:null,X:null,y:Jv,Y:Qv,Z:Kv,"%":tm},_={a:function(t,e,n){var r=d.exec(e.slice(n));return r?(t.w=p[r[0].toLowerCase()],n+r[0].length):-1},A:function(t,e,n){var r=h.exec(e.slice(n));return r?(t.w=f[r[0].toLowerCase()],n+r[0].length):-1},b:function(t,e,n){var r=v.exec(e.slice(n));return r?(t.m=m[r[0].toLowerCase()],n+r[0].length):-1},B:function(t,e,n){var r=g.exec(e.slice(n));return r?(t.m=y[r[0].toLowerCase()],n+r[0].length):-1},c:function(t,n,r){return E(t,e,n,r)},d:lv,e:lv,f:yv,H:fv,I:fv,j:hv,L:gv,m:uv,M:dv,p:function(t,e,n){var r=u.exec(e.slice(n));return r?(t.p=l[r[0].toLowerCase()],n+r[0].length):-1},q:cv,Q:mv,s:bv,S:pv,u:ev,U:nv,V:rv,w:tv,W:iv,x:function(t,e,r){return E(t,n,e,r)},X:function(t,e,n){return E(t,r,e,n)},y:ov,Y:av,Z:sv,"%":vv};function k(t,e){return function(n){var r,i,a,o=[],s=-1,c=0,u=t.length;for(n instanceof Date||(n=new Date(+n));++s53)return null;"w"in a||(a.w=1),"Z"in a?(i=(r=jy(Ry(a.y,0,1))).getUTCDay(),r=i>4||0===i?my.ceil(r):my(r),r=Ny.offset(r,7*(a.V-1)),a.y=r.getUTCFullYear(),a.m=r.getUTCMonth(),a.d=r.getUTCDate()+(a.w+6)%7):(i=(r=Iy(Ry(a.y,0,1))).getDay(),r=i>4||0===i?Ug.ceil(r):Ug(r),r=ny.offset(r,7*(a.V-1)),a.y=r.getFullYear(),a.m=r.getMonth(),a.d=r.getDate()+(a.w+6)%7)}else("W"in a||"U"in a)&&("w"in a||(a.w="u"in a?a.u%7:"W"in a?1:0),i="Z"in a?jy(Ry(a.y,0,1)).getUTCDay():Iy(Ry(a.y,0,1)).getDay(),a.m=0,a.d="W"in a?(a.w+6)%7+7*a.W-(i+5)%7:a.w+7*a.U-(i+6)%7);return"Z"in a?(a.H+=a.Z/100|0,a.M+=a.Z%100,jy(a)):Iy(a)}}function E(t,e,n,r){for(var i,a,o=0,s=e.length,c=n.length;o=c)return-1;if(37===(i=e.charCodeAt(o++))){if(i=e.charAt(o++),!(a=_[i in Hy?e.charAt(o++):i])||(r=a(t,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}return(b.x=k(n,b),b.X=k(r,b),b.c=k(e,b),x.x=k(n,x),x.X=k(r,x),x.c=k(e,x),{format:function(t){var e=k(t+="",b);return e.toString=function(){return t},e},parse:function(t){var e=w(t+="",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=k(t+="",x);return e.toString=function(){return t},e},utcParse:function(t){var e=w(t+="",!0);return e.toString=function(){return t},e}})}var zy,Uy,$y,Wy,Vy,Hy={"-":"",_:" ",0:"0"},Gy=/^\s*\d+/,qy=/^%/,Xy=/[\\^$*+?|[\]().{}]/g;function Zy(t,e,n){var r=t<0?"-":"",i=(r?-t:t)+"",a=i.length;return r+(a68?1900:2e3),n+r[0].length):-1}function sv(t,e,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return r?(t.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function cv(t,e,n){var r=Gy.exec(e.slice(n,n+1));return r?(t.q=3*r[0]-3,n+r[0].length):-1}function uv(t,e,n){var r=Gy.exec(e.slice(n,n+2));return r?(t.m=r[0]-1,n+r[0].length):-1}function lv(t,e,n){var r=Gy.exec(e.slice(n,n+2));return r?(t.d=+r[0],n+r[0].length):-1}function hv(t,e,n){var r=Gy.exec(e.slice(n,n+3));return r?(t.m=0,t.d=+r[0],n+r[0].length):-1}function fv(t,e,n){var r=Gy.exec(e.slice(n,n+2));return r?(t.H=+r[0],n+r[0].length):-1}function dv(t,e,n){var r=Gy.exec(e.slice(n,n+2));return r?(t.M=+r[0],n+r[0].length):-1}function pv(t,e,n){var r=Gy.exec(e.slice(n,n+2));return r?(t.S=+r[0],n+r[0].length):-1}function gv(t,e,n){var r=Gy.exec(e.slice(n,n+3));return r?(t.L=+r[0],n+r[0].length):-1}function yv(t,e,n){var r=Gy.exec(e.slice(n,n+6));return r?(t.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function vv(t,e,n){var r=qy.exec(e.slice(n,n+1));return r?n+r[0].length:-1}function mv(t,e,n){var r=Gy.exec(e.slice(n));return r?(t.Q=+r[0],n+r[0].length):-1}function bv(t,e,n){var r=Gy.exec(e.slice(n));return r?(t.s=+r[0],n+r[0].length):-1}function xv(t,e){return Zy(t.getDate(),e,2)}function _v(t,e){return Zy(t.getHours(),e,2)}function kv(t,e){return Zy(t.getHours()%12||12,e,2)}function wv(t,e){return Zy(1+ny.count(Fg(t),t),e,3)}function Ev(t,e){return Zy(t.getMilliseconds(),e,3)}function Tv(t,e){return Ev(t,e)+"000"}function Cv(t,e){return Zy(t.getMonth()+1,e,2)}function Av(t,e){return Zy(t.getMinutes(),e,2)}function Sv(t,e){return Zy(t.getSeconds(),e,2)}function Mv(t){var e=t.getDay();return 0===e?7:e}function Ov(t,e){return Zy(zg.count(Fg(t)-1,t),e,2)}function Dv(t,e){var n=t.getDay();return t=n>=4||0===n?Vg(t):Vg.ceil(t),Zy(Vg.count(Fg(t),t)+(4===Fg(t).getDay()),e,2)}function Nv(t){return t.getDay()}function Bv(t,e){return Zy(Ug.count(Fg(t)-1,t),e,2)}function Lv(t,e){return Zy(t.getFullYear()%100,e,2)}function Fv(t,e){return Zy(t.getFullYear()%1e4,e,4)}function Pv(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+Zy(e/60|0,"0",2)+Zy(e%60,"0",2)}function Iv(t,e){return Zy(t.getUTCDate(),e,2)}function jv(t,e){return Zy(t.getUTCHours(),e,2)}function Rv(t,e){return Zy(t.getUTCHours()%12||12,e,2)}function Yv(t,e){return Zy(1+Ny.count(Fy(t),t),e,3)}function zv(t,e){return Zy(t.getUTCMilliseconds(),e,3)}function Uv(t,e){return zv(t,e)+"000"}function $v(t,e){return Zy(t.getUTCMonth()+1,e,2)}function Wv(t,e){return Zy(t.getUTCMinutes(),e,2)}function Vv(t,e){return Zy(t.getUTCSeconds(),e,2)}function Hv(t){var e=t.getUTCDay();return 0===e?7:e}function Gv(t,e){return Zy(vy.count(Fy(t)-1,t),e,2)}function qv(t,e){var n=t.getUTCDay();return t=n>=4||0===n?_y(t):_y.ceil(t),Zy(_y.count(Fy(t),t)+(4===Fy(t).getUTCDay()),e,2)}function Xv(t){return t.getUTCDay()}function Zv(t,e){return Zy(my.count(Fy(t)-1,t),e,2)}function Jv(t,e){return Zy(t.getUTCFullYear()%100,e,2)}function Qv(t,e){return Zy(t.getUTCFullYear()%1e4,e,4)}function Kv(){return"+0000"}function tm(){return"%"}function em(t){return+t}function nm(t){return Math.floor(+t/1e3)}function rm(t){return zy=Yy(t),Uy=zy.format,$y=zy.parse,Wy=zy.utcFormat,Vy=zy.utcParse,zy}rm({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});function im(t){return new Date(t)}function am(t){return t instanceof Date?+t:+new Date(+t)}function om(t,e,n,r,a,o,s,c,u){var l=ig(Jp,Jp),h=l.invert,f=l.domain,d=u(".%L"),p=u(":%S"),g=u("%I:%M"),y=u("%I %p"),v=u("%a %d"),m=u("%b %d"),b=u("%B"),x=u("%Y"),_=[[s,1,1e3],[s,5,5e3],[s,15,15e3],[s,30,3e4],[o,1,6e4],[o,5,3e5],[o,15,9e5],[o,30,18e5],[a,1,36e5],[a,3,108e5],[a,6,216e5],[a,12,432e5],[r,1,864e5],[r,2,1728e5],[n,1,6048e5],[e,1,2592e6],[e,3,7776e6],[t,1,31536e6]];function k(i){return(s(i)1)&&(t-=Math.floor(t));var e=Math.abs(t-.5);return qb.h=360*t-100,qb.s=1.5-1.5*e,qb.l=.8-.9*e,qb+""},Zb=Ge(),Jb=Math.PI/3,Qb=2*Math.PI/3,Kb=function(t){var e;return t=(.5-t)*Math.PI,Zb.r=255*(e=Math.sin(t))*e,Zb.g=255*(e=Math.sin(t+Jb))*e,Zb.b=255*(e=Math.sin(t+Qb))*e,Zb+""},tx=function(t){return t=Math.max(0,Math.min(1,t)),"rgb("+Math.max(0,Math.min(255,Math.round(34.61+t*(1172.33-t*(10793.56-t*(33300.12-t*(38394.49-14825.05*t)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+t*(557.33+t*(1225.33-t*(3574.96-t*(1073.77+707.56*t)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+t*(3211.1-t*(15327.97-t*(27814-t*(22569.18-6838.66*t)))))))+")"};function ex(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}var nx=ex(Nm("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),rx=ex(Nm("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),ix=ex(Nm("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),ax=ex(Nm("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),ox=function(t){return ke(ne(t).call(document.documentElement))},sx=0;function cx(){return new ux}function ux(){this._="@"+(++sx).toString(36)}ux.prototype=cx.prototype={constructor:ux,get:function(t){for(var e=this._;!(e in t);)if(!(t=t.parentNode))return;return t[e]},set:function(t,e){return t[this._]=e},remove:function(t){return this._ in t&&delete t[this._]},toString:function(){return this._}};var lx=function(t){return"string"==typeof t?new be([document.querySelectorAll(t)],[document.documentElement]):new be([null==t?[]:t],me)},hx=function(t,e){null==e&&(e=Mn().touches);for(var n=0,r=e?e.length:0,i=new Array(r);n1?0:t<-1?xx:Math.acos(t)}function Ex(t){return t>=1?_x:t<=-1?-_x:Math.asin(t)}function Tx(t){return t.innerRadius}function Cx(t){return t.outerRadius}function Ax(t){return t.startAngle}function Sx(t){return t.endAngle}function Mx(t){return t&&t.padAngle}function Ox(t,e,n,r,i,a,o,s){var c=n-t,u=r-e,l=o-i,h=s-a,f=h*c-l*u;if(!(f*f<1e-12))return[t+(f=(l*(e-a)-h*(t-i))/f)*c,e+f*u]}function Dx(t,e,n,r,i,a,o){var s=t-n,c=e-r,u=(o?a:-a)/bx(s*s+c*c),l=u*c,h=-u*s,f=t+l,d=e+h,p=n+l,g=r+h,y=(f+p)/2,v=(d+g)/2,m=p-f,b=g-d,x=m*m+b*b,_=i-a,k=f*g-p*d,w=(b<0?-1:1)*bx(yx(0,_*_*x-k*k)),E=(k*b-m*w)/x,T=(-k*m-b*w)/x,C=(k*b+m*w)/x,A=(-k*m+b*w)/x,S=E-y,M=T-v,O=C-y,D=A-v;return S*S+M*M>O*O+D*D&&(E=C,T=A),{cx:E,cy:T,x01:-l,y01:-h,x11:E*(i/_-1),y11:T*(i/_-1)}}var Nx=function(){var t=Tx,e=Cx,n=fx(0),r=null,i=Ax,a=Sx,o=Mx,s=null;function c(){var c,u,l=+t.apply(this,arguments),h=+e.apply(this,arguments),f=i.apply(this,arguments)-_x,d=a.apply(this,arguments)-_x,p=dx(d-f),g=d>f;if(s||(s=c=Ui()),h1e-12)if(p>kx-1e-12)s.moveTo(h*gx(f),h*mx(f)),s.arc(0,0,h,f,d,!g),l>1e-12&&(s.moveTo(l*gx(d),l*mx(d)),s.arc(0,0,l,d,f,g));else{var y,v,m=f,b=d,x=f,_=d,k=p,w=p,E=o.apply(this,arguments)/2,T=E>1e-12&&(r?+r.apply(this,arguments):bx(l*l+h*h)),C=vx(dx(h-l)/2,+n.apply(this,arguments)),A=C,S=C;if(T>1e-12){var M=Ex(T/l*mx(E)),O=Ex(T/h*mx(E));(k-=2*M)>1e-12?(x+=M*=g?1:-1,_-=M):(k=0,x=_=(f+d)/2),(w-=2*O)>1e-12?(m+=O*=g?1:-1,b-=O):(w=0,m=b=(f+d)/2)}var D=h*gx(m),N=h*mx(m),B=l*gx(_),L=l*mx(_);if(C>1e-12){var F,P=h*gx(b),I=h*mx(b),j=l*gx(x),R=l*mx(x);if(p1e-12?S>1e-12?(y=Dx(j,R,D,N,h,S,g),v=Dx(P,I,B,L,h,S,g),s.moveTo(y.cx+y.x01,y.cy+y.y01),S1e-12&&k>1e-12?A>1e-12?(y=Dx(B,L,P,I,l,-A,g),v=Dx(D,N,j,R,l,-A,g),s.lineTo(y.cx+y.x01,y.cy+y.y01),A=l;--h)s.point(y[h],v[h]);s.lineEnd(),s.areaEnd()}g&&(y[u]=+t(f,u,c),v[u]=+n(f,u,c),s.point(e?+e(f,u,c):y[u],r?+r(f,u,c):v[u]))}if(d)return s=null,d+""||null}function u(){return Ix().defined(i).curve(o).context(a)}return c.x=function(n){return arguments.length?(t="function"==typeof n?n:fx(+n),e=null,c):t},c.x0=function(e){return arguments.length?(t="function"==typeof e?e:fx(+e),c):t},c.x1=function(t){return arguments.length?(e=null==t?null:"function"==typeof t?t:fx(+t),c):e},c.y=function(t){return arguments.length?(n="function"==typeof t?t:fx(+t),r=null,c):n},c.y0=function(t){return arguments.length?(n="function"==typeof t?t:fx(+t),c):n},c.y1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:fx(+t),c):r},c.lineX0=c.lineY0=function(){return u().x(t).y(n)},c.lineY1=function(){return u().x(t).y(r)},c.lineX1=function(){return u().x(e).y(n)},c.defined=function(t){return arguments.length?(i="function"==typeof t?t:fx(!!t),c):i},c.curve=function(t){return arguments.length?(o=t,null!=a&&(s=o(a)),c):o},c.context=function(t){return arguments.length?(null==t?a=s=null:s=o(a=t),c):a},c},Rx=function(t,e){return et?1:e>=t?0:NaN},Yx=function(t){return t},zx=function(){var t=Yx,e=Rx,n=null,r=fx(0),i=fx(kx),a=fx(0);function o(o){var s,c,u,l,h,f=o.length,d=0,p=new Array(f),g=new Array(f),y=+r.apply(this,arguments),v=Math.min(kx,Math.max(-kx,i.apply(this,arguments)-y)),m=Math.min(Math.abs(v)/f,a.apply(this,arguments)),b=m*(v<0?-1:1);for(s=0;s0&&(d+=h);for(null!=e?p.sort((function(t,n){return e(g[t],g[n])})):null!=n&&p.sort((function(t,e){return n(o[t],o[e])})),s=0,u=d?(v-f*b)/d:0;s0?h*u:0)+b,g[c]={data:o[c],index:s,value:h,startAngle:y,endAngle:l,padAngle:m};return g}return o.value=function(e){return arguments.length?(t="function"==typeof e?e:fx(+e),o):t},o.sortValues=function(t){return arguments.length?(e=t,n=null,o):e},o.sort=function(t){return arguments.length?(n=t,e=null,o):n},o.startAngle=function(t){return arguments.length?(r="function"==typeof t?t:fx(+t),o):r},o.endAngle=function(t){return arguments.length?(i="function"==typeof t?t:fx(+t),o):i},o.padAngle=function(t){return arguments.length?(a="function"==typeof t?t:fx(+t),o):a},o},Ux=Wx(Lx);function $x(t){this._curve=t}function Wx(t){function e(e){return new $x(t(e))}return e._curve=t,e}function Vx(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(Wx(t)):e()._curve},t}$x.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var Hx=function(){return Vx(Ix().curve(Ux))},Gx=function(){var t=jx().curve(Ux),e=t.curve,n=t.lineX0,r=t.lineX1,i=t.lineY0,a=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return Vx(n())},delete t.lineX0,t.lineEndAngle=function(){return Vx(r())},delete t.lineX1,t.lineInnerRadius=function(){return Vx(i())},delete t.lineY0,t.lineOuterRadius=function(){return Vx(a())},delete t.lineY1,t.curve=function(t){return arguments.length?e(Wx(t)):e()._curve},t},qx=function(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]},Xx=Array.prototype.slice;function Zx(t){return t.source}function Jx(t){return t.target}function Qx(t){var e=Zx,n=Jx,r=Fx,i=Px,a=null;function o(){var o,s=Xx.call(arguments),c=e.apply(this,s),u=n.apply(this,s);if(a||(a=o=Ui()),t(a,+r.apply(this,(s[0]=c,s)),+i.apply(this,s),+r.apply(this,(s[0]=u,s)),+i.apply(this,s)),o)return a=null,o+""||null}return o.source=function(t){return arguments.length?(e=t,o):e},o.target=function(t){return arguments.length?(n=t,o):n},o.x=function(t){return arguments.length?(r="function"==typeof t?t:fx(+t),o):r},o.y=function(t){return arguments.length?(i="function"==typeof t?t:fx(+t),o):i},o.context=function(t){return arguments.length?(a=null==t?null:t,o):a},o}function Kx(t,e,n,r,i){t.moveTo(e,n),t.bezierCurveTo(e=(e+r)/2,n,e,i,r,i)}function t_(t,e,n,r,i){t.moveTo(e,n),t.bezierCurveTo(e,n=(n+i)/2,r,n,r,i)}function e_(t,e,n,r,i){var a=qx(e,n),o=qx(e,n=(n+i)/2),s=qx(r,n),c=qx(r,i);t.moveTo(a[0],a[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],c[0],c[1])}function n_(){return Qx(Kx)}function r_(){return Qx(t_)}function i_(){var t=Qx(e_);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t}var a_={draw:function(t,e){var n=Math.sqrt(e/xx);t.moveTo(n,0),t.arc(0,0,n,0,kx)}},o_={draw:function(t,e){var n=Math.sqrt(e/5)/2;t.moveTo(-3*n,-n),t.lineTo(-n,-n),t.lineTo(-n,-3*n),t.lineTo(n,-3*n),t.lineTo(n,-n),t.lineTo(3*n,-n),t.lineTo(3*n,n),t.lineTo(n,n),t.lineTo(n,3*n),t.lineTo(-n,3*n),t.lineTo(-n,n),t.lineTo(-3*n,n),t.closePath()}},s_=Math.sqrt(1/3),c_=2*s_,u_={draw:function(t,e){var n=Math.sqrt(e/c_),r=n*s_;t.moveTo(0,-n),t.lineTo(r,0),t.lineTo(0,n),t.lineTo(-r,0),t.closePath()}},l_=Math.sin(xx/10)/Math.sin(7*xx/10),h_=Math.sin(kx/10)*l_,f_=-Math.cos(kx/10)*l_,d_={draw:function(t,e){var n=Math.sqrt(.8908130915292852*e),r=h_*n,i=f_*n;t.moveTo(0,-n),t.lineTo(r,i);for(var a=1;a<5;++a){var o=kx*a/5,s=Math.cos(o),c=Math.sin(o);t.lineTo(c*n,-s*n),t.lineTo(s*r-c*i,c*r+s*i)}t.closePath()}},p_={draw:function(t,e){var n=Math.sqrt(e),r=-n/2;t.rect(r,r,n,n)}},g_=Math.sqrt(3),y_={draw:function(t,e){var n=-Math.sqrt(e/(3*g_));t.moveTo(0,2*n),t.lineTo(-g_*n,-n),t.lineTo(g_*n,-n),t.closePath()}},v_=Math.sqrt(3)/2,m_=1/Math.sqrt(12),b_=3*(m_/2+1),x_={draw:function(t,e){var n=Math.sqrt(e/b_),r=n/2,i=n*m_,a=r,o=n*m_+n,s=-a,c=o;t.moveTo(r,i),t.lineTo(a,o),t.lineTo(s,c),t.lineTo(-.5*r-v_*i,v_*r+-.5*i),t.lineTo(-.5*a-v_*o,v_*a+-.5*o),t.lineTo(-.5*s-v_*c,v_*s+-.5*c),t.lineTo(-.5*r+v_*i,-.5*i-v_*r),t.lineTo(-.5*a+v_*o,-.5*o-v_*a),t.lineTo(-.5*s+v_*c,-.5*c-v_*s),t.closePath()}},__=[a_,o_,u_,p_,d_,y_,x_],k_=function(){var t=fx(a_),e=fx(64),n=null;function r(){var r;if(n||(n=r=Ui()),t.apply(this,arguments).draw(n,+e.apply(this,arguments)),r)return n=null,r+""||null}return r.type=function(e){return arguments.length?(t="function"==typeof e?e:fx(e),r):t},r.size=function(t){return arguments.length?(e="function"==typeof t?t:fx(+t),r):e},r.context=function(t){return arguments.length?(n=null==t?null:t,r):n},r},w_=function(){};function E_(t,e,n){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+n)/6)}function T_(t){this._context=t}T_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:E_(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:E_(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};var C_=function(t){return new T_(t)};function A_(t){this._context=t}A_.prototype={areaStart:w_,areaEnd:w_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:E_(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};var S_=function(t){return new A_(t)};function M_(t){this._context=t}M_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var n=(this._x0+4*this._x1+t)/6,r=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(n,r):this._context.moveTo(n,r);break;case 3:this._point=4;default:E_(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}};var O_=function(t){return new M_(t)};function D_(t,e){this._basis=new T_(t),this._beta=e}D_.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,n=t.length-1;if(n>0)for(var r,i=t[0],a=e[0],o=t[n]-i,s=e[n]-a,c=-1;++c<=n;)r=c/n,this._basis.point(this._beta*t[c]+(1-this._beta)*(i+r*o),this._beta*e[c]+(1-this._beta)*(a+r*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var N_=function t(e){function n(t){return 1===e?new T_(t):new D_(t,e)}return n.beta=function(e){return t(+e)},n}(.85);function B_(t,e,n){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-n),t._x2,t._y2)}function L_(t,e){this._context=t,this._k=(1-e)/6}L_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:B_(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:B_(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var F_=function t(e){function n(t){return new L_(t,e)}return n.tension=function(e){return t(+e)},n}(0);function P_(t,e){this._context=t,this._k=(1-e)/6}P_.prototype={areaStart:w_,areaEnd:w_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:B_(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var I_=function t(e){function n(t){return new P_(t,e)}return n.tension=function(e){return t(+e)},n}(0);function j_(t,e){this._context=t,this._k=(1-e)/6}j_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:B_(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var R_=function t(e){function n(t){return new j_(t,e)}return n.tension=function(e){return t(+e)},n}(0);function Y_(t,e,n){var r=t._x1,i=t._y1,a=t._x2,o=t._y2;if(t._l01_a>1e-12){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,c=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/c,i=(i*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/c}if(t._l23_a>1e-12){var u=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,l=3*t._l23_a*(t._l23_a+t._l12_a);a=(a*u+t._x1*t._l23_2a-e*t._l12_2a)/l,o=(o*u+t._y1*t._l23_2a-n*t._l12_2a)/l}t._context.bezierCurveTo(r,i,a,o,t._x2,t._y2)}function z_(t,e){this._context=t,this._alpha=e}z_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:Y_(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var U_=function t(e){function n(t){return e?new z_(t,e):new L_(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function $_(t,e){this._context=t,this._alpha=e}$_.prototype={areaStart:w_,areaEnd:w_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:Y_(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var W_=function t(e){function n(t){return e?new $_(t,e):new P_(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function V_(t,e){this._context=t,this._alpha=e}V_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:Y_(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var H_=function t(e){function n(t){return e?new V_(t,e):new j_(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function G_(t){this._context=t}G_.prototype={areaStart:w_,areaEnd:w_,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}};var q_=function(t){return new G_(t)};function X_(t){return t<0?-1:1}function Z_(t,e,n){var r=t._x1-t._x0,i=e-t._x1,a=(t._y1-t._y0)/(r||i<0&&-0),o=(n-t._y1)/(i||r<0&&-0),s=(a*i+o*r)/(r+i);return(X_(a)+X_(o))*Math.min(Math.abs(a),Math.abs(o),.5*Math.abs(s))||0}function J_(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function Q_(t,e,n){var r=t._x0,i=t._y0,a=t._x1,o=t._y1,s=(a-r)/3;t._context.bezierCurveTo(r+s,i+s*e,a-s,o-s*n,a,o)}function K_(t){this._context=t}function tk(t){this._context=new ek(t)}function ek(t){this._context=t}function nk(t){return new K_(t)}function rk(t){return new tk(t)}function ik(t){this._context=t}function ak(t){var e,n,r=t.length-1,i=new Array(r),a=new Array(r),o=new Array(r);for(i[0]=0,a[0]=2,o[0]=t[0]+2*t[1],e=1;e=0;--e)i[e]=(o[e]-i[e+1])/a[e];for(a[r-1]=(t[r]+i[r-1])/2,e=0;e=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var n=this._x*(1-this._t)+t*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,e)}}this._x=t,this._y=e}};var ck=function(t){return new sk(t,.5)};function uk(t){return new sk(t,0)}function lk(t){return new sk(t,1)}var hk=function(t,e){if((i=t.length)>1)for(var n,r,i,a=1,o=t[e[0]],s=o.length;a=0;)n[e]=e;return n};function dk(t,e){return t[e]}var pk=function(){var t=fx([]),e=fk,n=hk,r=dk;function i(i){var a,o,s=t.apply(this,arguments),c=i.length,u=s.length,l=new Array(u);for(a=0;a0){for(var n,r,i,a=0,o=t[0].length;a0)for(var n,r,i,a,o,s,c=0,u=t[e[0]].length;c0?(r[0]=a,r[1]=a+=i):i<0?(r[1]=o,r[0]=o+=i):(r[0]=0,r[1]=i)},vk=function(t,e){if((n=t.length)>0){for(var n,r=0,i=t[e[0]],a=i.length;r0&&(r=(n=t[e[0]]).length)>0){for(var n,r,i,a=0,o=1;oa&&(a=e,r=n);return r}var _k=function(t){var e=t.map(kk);return fk(t).sort((function(t,n){return e[t]-e[n]}))};function kk(t){for(var e,n=0,r=-1,i=t.length;++r0)){if(a/=f,f<0){if(a0){if(a>h)return;a>l&&(l=a)}if(a=r-c,f||!(a<0)){if(a/=f,f<0){if(a>h)return;a>l&&(l=a)}else if(f>0){if(a0)){if(a/=d,d<0){if(a0){if(a>h)return;a>l&&(l=a)}if(a=i-u,d||!(a<0)){if(a/=d,d<0){if(a>h)return;a>l&&(l=a)}else if(d>0){if(a0||h<1)||(l>0&&(t[0]=[c+l*f,u+l*d]),h<1&&(t[1]=[c+h*f,u+h*d]),!0)}}}}}function Uk(t,e,n,r,i){var a=t[1];if(a)return!0;var o,s,c=t[0],u=t.left,l=t.right,h=u[0],f=u[1],d=l[0],p=l[1],g=(h+d)/2,y=(f+p)/2;if(p===f){if(g=r)return;if(h>d){if(c){if(c[1]>=i)return}else c=[g,n];a=[g,i]}else{if(c){if(c[1]1)if(h>d){if(c){if(c[1]>=i)return}else c=[(n-s)/o,n];a=[(i-s)/o,i]}else{if(c){if(c[1]=r)return}else c=[e,o*e+s];a=[r,o*r+s]}else{if(c){if(c[0]=-lw)){var d=c*c+u*u,p=l*l+h*h,g=(h*d-u*p)/f,y=(c*p-l*d)/f,v=Gk.pop()||new qk;v.arc=t,v.site=i,v.x=g+o,v.y=(v.cy=y+s)+Math.sqrt(g*g+y*y),t.circle=v;for(var m=null,b=sw._;b;)if(v.yuw)s=s.L;else{if(!((i=a-iw(s,o))>uw)){r>-uw?(e=s.P,n=s):i>-uw?(e=s,n=s.N):e=n=s;break}if(!s.R){e=s;break}s=s.R}!function(t){ow[t.index]={site:t,halfedges:[]}}(t);var c=Kk(t);if(aw.insert(e,c),e||n){if(e===n)return Zk(e),n=Kk(e.site),aw.insert(c,n),c.edge=n.edge=jk(e.site,c.site),Xk(e),void Xk(n);if(n){Zk(e),Zk(n);var u=e.site,l=u[0],h=u[1],f=t[0]-l,d=t[1]-h,p=n.site,g=p[0]-l,y=p[1]-h,v=2*(f*y-d*g),m=f*f+d*d,b=g*g+y*y,x=[(y*m-d*b)/v+l,(f*b-g*m)/v+h];Yk(n.edge,u,p,x),c.edge=jk(u,t,null,x),n.edge=jk(t,p,null,x),Xk(e),Xk(n)}else c.edge=jk(e.site,c.site)}}function rw(t,e){var n=t.site,r=n[0],i=n[1],a=i-e;if(!a)return r;var o=t.P;if(!o)return-1/0;var s=(n=o.site)[0],c=n[1],u=c-e;if(!u)return s;var l=s-r,h=1/a-1/u,f=l/u;return h?(-f+Math.sqrt(f*f-2*h*(l*l/(-2*u)-c+u/2+i-a/2)))/h+r:(r+s)/2}function iw(t,e){var n=t.N;if(n)return rw(n,e);var r=t.site;return r[1]===e?r[0]:1/0}var aw,ow,sw,cw,uw=1e-6,lw=1e-12;function hw(t,e){return e[1]-t[1]||e[0]-t[0]}function fw(t,e){var n,r,i,a=t.sort(hw).pop();for(cw=[],ow=new Array(t.length),aw=new Ik,sw=new Ik;;)if(i=Hk,a&&(!i||a[1]uw||Math.abs(i[0][1]-i[1][1])>uw)||delete cw[a]}(o,s,c,u),function(t,e,n,r){var i,a,o,s,c,u,l,h,f,d,p,g,y=ow.length,v=!0;for(i=0;iuw||Math.abs(g-f)>uw)&&(c.splice(s,0,cw.push(Rk(o,d,Math.abs(p-t)uw?[t,Math.abs(h-t)uw?[Math.abs(f-r)uw?[n,Math.abs(h-n)uw?[Math.abs(f-e)=s)return null;var c=t-i.site[0],u=e-i.site[1],l=c*c+u*u;do{i=a.cells[r=o],o=null,i.halfedges.forEach((function(n){var r=a.edges[n],s=r.left;if(s!==i.site&&s||(s=r.right)){var c=t-s[0],u=e-s[1],h=c*c+u*u;hr?(r+i)/2:Math.min(0,r)||Math.max(0,i),o>a?(a+o)/2:Math.min(0,a)||Math.max(0,o))}var Aw=function(){var t,e,n=_w,r=kw,i=Cw,a=Ew,o=Tw,s=[0,1/0],c=[[-1/0,-1/0],[1/0,1/0]],u=250,l=fp,h=lt("start","zoom","end"),f=0;function d(t){t.property("__zoom",ww).on("wheel.zoom",x).on("mousedown.zoom",_).on("dblclick.zoom",k).filter(o).on("touchstart.zoom",w).on("touchmove.zoom",E).on("touchend.zoom touchcancel.zoom",T).style("touch-action","none").style("-webkit-tap-highlight-color","rgba(0,0,0,0)")}function p(t,e){return(e=Math.max(s[0],Math.min(s[1],e)))===t.k?t:new yw(e,t.x,t.y)}function g(t,e,n){var r=e[0]-n[0]*t.k,i=e[1]-n[1]*t.k;return r===t.x&&i===t.y?t:new yw(t.k,r,i)}function y(t){return[(+t[0][0]+ +t[1][0])/2,(+t[0][1]+ +t[1][1])/2]}function v(t,e,n){t.on("start.zoom",(function(){m(this,arguments).start()})).on("interrupt.zoom end.zoom",(function(){m(this,arguments).end()})).tween("zoom",(function(){var t=this,i=arguments,a=m(t,i),o=r.apply(t,i),s=null==n?y(o):"function"==typeof n?n.apply(t,i):n,c=Math.max(o[1][0]-o[0][0],o[1][1]-o[0][1]),u=t.__zoom,h="function"==typeof e?e.apply(t,i):e,f=l(u.invert(s).concat(c/u.k),h.invert(s).concat(c/h.k));return function(t){if(1===t)t=h;else{var e=f(t),n=c/e[2];t=new yw(n,s[0]-e[0]*n,s[1]-e[1]*n)}a.zoom(null,t)}}))}function m(t,e,n){return!n&&t.__zooming||new b(t,e)}function b(t,e){this.that=t,this.args=e,this.active=0,this.extent=r.apply(t,e),this.taps=0}function x(){if(n.apply(this,arguments)){var t=m(this,arguments),e=this.__zoom,r=Math.max(s[0],Math.min(s[1],e.k*Math.pow(2,a.apply(this,arguments)))),o=Nn(this);if(t.wheel)t.mouse[0][0]===o[0]&&t.mouse[0][1]===o[1]||(t.mouse[1]=e.invert(t.mouse[0]=o)),clearTimeout(t.wheel);else{if(e.k===r)return;t.mouse=[o,e.invert(o)],or(this),t.start()}xw(),t.wheel=setTimeout(u,150),t.zoom("mouse",i(g(p(e,r),t.mouse[0],t.mouse[1]),t.extent,c))}function u(){t.wheel=null,t.end()}}function _(){if(!e&&n.apply(this,arguments)){var t=m(this,arguments,!0),r=ke(ce.view).on("mousemove.zoom",u,!0).on("mouseup.zoom",l,!0),a=Nn(this),o=ce.clientX,s=ce.clientY;Te(ce.view),bw(),t.mouse=[a,this.__zoom.invert(a)],or(this),t.start()}function u(){if(xw(),!t.moved){var e=ce.clientX-o,n=ce.clientY-s;t.moved=e*e+n*n>f}t.zoom("mouse",i(g(t.that.__zoom,t.mouse[0]=Nn(t.that),t.mouse[1]),t.extent,c))}function l(){r.on("mousemove.zoom mouseup.zoom",null),Ce(ce.view,t.moved),xw(),t.end()}}function k(){if(n.apply(this,arguments)){var t=this.__zoom,e=Nn(this),a=t.invert(e),o=t.k*(ce.shiftKey?.5:2),s=i(g(p(t,o),e,a),r.apply(this,arguments),c);xw(),u>0?ke(this).transition().duration(u).call(v,s,e):ke(this).call(d.transform,s)}}function w(){if(n.apply(this,arguments)){var e,r,i,a,o=ce.touches,s=o.length,c=m(this,arguments,ce.changedTouches.length===s);for(bw(),r=0;rh&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},M={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),56;case 1:return this.begin("type_directive"),57;case 2:return this.popState(),this.begin("arg_directive"),14;case 3:return this.popState(),this.popState(),59;case 4:return 58;case 5:return 5;case 6:case 7:case 8:case 9:case 10:break;case 11:return this.begin("ID"),16;case 12:return e.yytext=e.yytext.trim(),this.begin("ALIAS"),48;case 13:return this.popState(),this.popState(),this.begin("LINE"),18;case 14:return this.popState(),this.popState(),5;case 15:return this.begin("LINE"),27;case 16:return this.begin("LINE"),29;case 17:return this.begin("LINE"),30;case 18:return this.begin("LINE"),31;case 19:return this.begin("LINE"),36;case 20:return this.begin("LINE"),33;case 21:return this.begin("LINE"),35;case 22:return this.popState(),19;case 23:return 28;case 24:return 43;case 25:return 44;case 26:return 39;case 27:return 37;case 28:return this.begin("ID"),22;case 29:return this.begin("ID"),23;case 30:return 25;case 31:return 7;case 32:return 21;case 33:return 42;case 34:return 5;case 35:return e.yytext=e.yytext.trim(),48;case 36:return 51;case 37:return 52;case 38:return 49;case 39:return 50;case 40:return 53;case 41:return 54;case 42:return 55;case 43:return 46;case 44:return 47;case 45:return 5;case 46:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:participant\b)/i,/^(?:[^\->:\n,;]+?(?=((?!\n)\s)+as(?!\n)\s|[#\n;]|$))/i,/^(?:as\b)/i,/^(?:(?:))/i,/^(?:loop\b)/i,/^(?:rect\b)/i,/^(?:opt\b)/i,/^(?:alt\b)/i,/^(?:else\b)/i,/^(?:par\b)/i,/^(?:and\b)/i,/^(?:(?:[:]?(?:no)?wrap)?[^#\n;]*)/i,/^(?:end\b)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:over\b)/i,/^(?:note\b)/i,/^(?:activate\b)/i,/^(?:deactivate\b)/i,/^(?:title\b)/i,/^(?:sequenceDiagram\b)/i,/^(?:autonumber\b)/i,/^(?:,)/i,/^(?:;)/i,/^(?:[^\+\->:\n,;]+((?!(-x|--x))[\-]*[^\+\->:\n,;]+)*)/i,/^(?:->>)/i,/^(?:-->>)/i,/^(?:->)/i,/^(?:-->)/i,/^(?:-[x])/i,/^(?:--[x])/i,/^(?::(?:(?:no)?wrap)?[^#\n;]+)/i,/^(?:\+)/i,/^(?:-)/i,/^(?:$)/i,/^(?:.)/i],conditions:{open_directive:{rules:[1,8],inclusive:!1},type_directive:{rules:[2,3,8],inclusive:!1},arg_directive:{rules:[3,4,8],inclusive:!1},ID:{rules:[7,8,12],inclusive:!1},ALIAS:{rules:[7,8,13,14],inclusive:!1},LINE:{rules:[7,8,22],inclusive:!1},INITIAL:{rules:[0,5,6,8,9,10,11,15,16,17,18,19,20,21,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46],inclusive:!0}}};function O(){this.yy={}}return S.lexer=M,O.prototype=S,S.Parser=O,new O}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){var r=n(198);t.exports={Graph:r.Graph,json:n(301),alg:n(302),version:r.version}},function(t,e,n){var r;try{r={cloneDeep:n(313),constant:n(86),defaults:n(154),each:n(87),filter:n(128),find:n(314),flatten:n(156),forEach:n(126),forIn:n(319),has:n(93),isUndefined:n(139),last:n(320),map:n(140),mapValues:n(321),max:n(322),merge:n(324),min:n(329),minBy:n(330),now:n(331),pick:n(161),range:n(162),reduce:n(142),sortBy:n(338),uniqueId:n(163),values:n(147),zipObject:n(343)}}catch(t){}r||(r=window._),t.exports=r},function(t,e){var n=Array.isArray;t.exports=n},function(t,e,n){ +/** + * @license + * Copyright (c) 2012-2013 Chris Pettitt + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ +t.exports={graphlib:n(311),dagre:n(153),intersect:n(368),render:n(370),util:n(12),version:n(382)}},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e,n){"use strict";var r=n(4),i=n(17).Graph;function a(t,e,n,i){var a;do{a=r.uniqueId(i)}while(t.hasNode(a));return n.dummy=e,t.setNode(a,n),a}function o(t){return r.max(r.map(t.nodes(),(function(e){var n=t.node(e).rank;if(!r.isUndefined(n))return n})))}t.exports={addDummyNode:a,simplify:function(t){var e=(new i).setGraph(t.graph());return r.forEach(t.nodes(),(function(n){e.setNode(n,t.node(n))})),r.forEach(t.edges(),(function(n){var r=e.edge(n.v,n.w)||{weight:0,minlen:1},i=t.edge(n);e.setEdge(n.v,n.w,{weight:r.weight+i.weight,minlen:Math.max(r.minlen,i.minlen)})})),e},asNonCompoundGraph:function(t){var e=new i({multigraph:t.isMultigraph()}).setGraph(t.graph());return r.forEach(t.nodes(),(function(n){t.children(n).length||e.setNode(n,t.node(n))})),r.forEach(t.edges(),(function(n){e.setEdge(n,t.edge(n))})),e},successorWeights:function(t){var e=r.map(t.nodes(),(function(e){var n={};return r.forEach(t.outEdges(e),(function(e){n[e.w]=(n[e.w]||0)+t.edge(e).weight})),n}));return r.zipObject(t.nodes(),e)},predecessorWeights:function(t){var e=r.map(t.nodes(),(function(e){var n={};return r.forEach(t.inEdges(e),(function(e){n[e.v]=(n[e.v]||0)+t.edge(e).weight})),n}));return r.zipObject(t.nodes(),e)},intersectRect:function(t,e){var n,r,i=t.x,a=t.y,o=e.x-i,s=e.y-a,c=t.width/2,u=t.height/2;if(!o&&!s)throw new Error("Not possible to find intersection inside of the rectangle");Math.abs(s)*c>Math.abs(o)*u?(s<0&&(u=-u),n=u*o/s,r=u):(o<0&&(c=-c),n=c,r=c*s/o);return{x:i+n,y:a+r}},buildLayerMatrix:function(t){var e=r.map(r.range(o(t)+1),(function(){return[]}));return r.forEach(t.nodes(),(function(n){var i=t.node(n),a=i.rank;r.isUndefined(a)||(e[a][i.order]=n)})),e},normalizeRanks:function(t){var e=r.min(r.map(t.nodes(),(function(e){return t.node(e).rank})));r.forEach(t.nodes(),(function(n){var i=t.node(n);r.has(i,"rank")&&(i.rank-=e)}))},removeEmptyRanks:function(t){var e=r.min(r.map(t.nodes(),(function(e){return t.node(e).rank}))),n=[];r.forEach(t.nodes(),(function(r){var i=t.node(r).rank-e;n[i]||(n[i]=[]),n[i].push(r)}));var i=0,a=t.graph().nodeRankFactor;r.forEach(n,(function(e,n){r.isUndefined(e)&&n%a!=0?--i:i&&r.forEach(e,(function(e){t.node(e).rank+=i}))}))},addBorderNode:function(t,e,n,r){var i={width:0,height:0};arguments.length>=4&&(i.rank=n,i.order=r);return a(t,"border",i,e)},maxRank:o,partition:function(t,e){var n={lhs:[],rhs:[]};return r.forEach(t,(function(t){e(t)?n.lhs.push(t):n.rhs.push(t)})),n},time:function(t,e){var n=r.now();try{return e()}finally{console.log(t+" time: "+(r.now()-n)+"ms")}},notime:function(t,e){return e()}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(173),i=n(174),a=n(175),o={channel:r.default,lang:i.default,unit:a.default};e.default=o},function(t,e,n){var r;try{r={clone:n(199),constant:n(86),each:n(87),filter:n(128),has:n(93),isArray:n(5),isEmpty:n(276),isFunction:n(37),isUndefined:n(139),keys:n(30),map:n(140),reduce:n(142),size:n(279),transform:n(285),union:n(286),values:n(147)}}catch(t){}r||(r=window._),t.exports=r},function(t,e){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},function(t,e,n){var r=n(43);t.exports={isSubgraph:function(t,e){return!!t.children(e).length},edgeToId:function(t){return a(t.v)+":"+a(t.w)+":"+a(t.name)},applyStyle:function(t,e){e&&t.attr("style",e)},applyClass:function(t,e,n){e&&t.attr("class",e).attr("class",n+" "+t.attr("class"))},applyTransition:function(t,e){var n=e.graph();if(r.isPlainObject(n)){var i=n.transition;if(r.isFunction(i))return i(t)}return t}};var i=/:/g;function a(t){return t?String(t).replace(i,"\\:"):""}},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,7],n=[1,6],r=[1,14],i=[1,25],a=[1,28],o=[1,26],s=[1,27],c=[1,29],u=[1,30],l=[1,31],h=[1,33],f=[1,34],d=[1,35],p=[10,19],g=[1,47],y=[1,48],v=[1,49],m=[1,50],b=[1,51],x=[1,52],_=[10,19,25,32,33,41,44,45,46,47,48,49],k=[10,19,23,25,32,33,37,41,44,45,46,47,48,49,66,67,68],w=[10,13,17,19],E=[41,66,67,68],T=[41,48,49,66,67,68],C=[41,44,45,46,47,66,67,68],A=[10,19,25],S=[1,81],M={trace:function(){},yy:{},symbols_:{error:2,start:3,mermaidDoc:4,directive:5,graphConfig:6,openDirective:7,typeDirective:8,closeDirective:9,NEWLINE:10,":":11,argDirective:12,open_directive:13,type_directive:14,arg_directive:15,close_directive:16,CLASS_DIAGRAM:17,statements:18,EOF:19,statement:20,className:21,alphaNumToken:22,GENERICTYPE:23,relationStatement:24,LABEL:25,classStatement:26,methodStatement:27,annotationStatement:28,clickStatement:29,cssClassStatement:30,CLASS:31,STYLE_SEPARATOR:32,STRUCT_START:33,members:34,STRUCT_STOP:35,ANNOTATION_START:36,ANNOTATION_END:37,MEMBER:38,SEPARATOR:39,relation:40,STR:41,relationType:42,lineType:43,AGGREGATION:44,EXTENSION:45,COMPOSITION:46,DEPENDENCY:47,LINE:48,DOTTED_LINE:49,CALLBACK:50,LINK:51,CSSCLASS:52,commentToken:53,textToken:54,graphCodeTokens:55,textNoTagsToken:56,TAGSTART:57,TAGEND:58,"==":59,"--":60,PCT:61,DEFAULT:62,SPACE:63,MINUS:64,keywords:65,UNICODE_TEXT:66,NUM:67,ALPHA:68,$accept:0,$end:1},terminals_:{2:"error",10:"NEWLINE",11:":",13:"open_directive",14:"type_directive",15:"arg_directive",16:"close_directive",17:"CLASS_DIAGRAM",19:"EOF",23:"GENERICTYPE",25:"LABEL",31:"CLASS",32:"STYLE_SEPARATOR",33:"STRUCT_START",35:"STRUCT_STOP",36:"ANNOTATION_START",37:"ANNOTATION_END",38:"MEMBER",39:"SEPARATOR",41:"STR",44:"AGGREGATION",45:"EXTENSION",46:"COMPOSITION",47:"DEPENDENCY",48:"LINE",49:"DOTTED_LINE",50:"CALLBACK",51:"LINK",52:"CSSCLASS",55:"graphCodeTokens",57:"TAGSTART",58:"TAGEND",59:"==",60:"--",61:"PCT",62:"DEFAULT",63:"SPACE",64:"MINUS",65:"keywords",66:"UNICODE_TEXT",67:"NUM",68:"ALPHA"},productions_:[0,[3,1],[3,2],[4,1],[5,4],[5,6],[7,1],[8,1],[12,1],[9,1],[6,4],[18,1],[18,2],[18,3],[21,1],[21,2],[21,3],[21,2],[20,1],[20,2],[20,1],[20,1],[20,1],[20,1],[20,1],[20,1],[26,2],[26,4],[26,5],[26,7],[28,4],[34,1],[34,2],[27,1],[27,2],[27,1],[27,1],[24,3],[24,4],[24,4],[24,5],[40,3],[40,2],[40,2],[40,1],[42,1],[42,1],[42,1],[42,1],[43,1],[43,1],[29,3],[29,4],[29,3],[29,4],[30,3],[53,1],[53,1],[54,1],[54,1],[54,1],[54,1],[54,1],[54,1],[54,1],[56,1],[56,1],[56,1],[56,1],[22,1],[22,1],[22,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 6:r.parseDirective("%%{","open_directive");break;case 7:r.parseDirective(a[s],"type_directive");break;case 8:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 9:r.parseDirective("}%%","close_directive","class");break;case 14:this.$=a[s];break;case 15:this.$=a[s-1]+a[s];break;case 16:this.$=a[s-2]+"~"+a[s-1]+a[s];break;case 17:this.$=a[s-1]+"~"+a[s];break;case 18:r.addRelation(a[s]);break;case 19:a[s-1].title=r.cleanupLabel(a[s]),r.addRelation(a[s-1]);break;case 26:r.addClass(a[s]);break;case 27:r.addClass(a[s-2]),r.setCssClass(a[s-2],a[s]);break;case 28:r.addClass(a[s-3]),r.addMembers(a[s-3],a[s-1]);break;case 29:r.addClass(a[s-5]),r.setCssClass(a[s-5],a[s-3]),r.addMembers(a[s-5],a[s-1]);break;case 30:r.addAnnotation(a[s],a[s-2]);break;case 31:this.$=[a[s]];break;case 32:a[s].push(a[s-1]),this.$=a[s];break;case 33:break;case 34:r.addMember(a[s-1],r.cleanupLabel(a[s]));break;case 35:case 36:break;case 37:this.$={id1:a[s-2],id2:a[s],relation:a[s-1],relationTitle1:"none",relationTitle2:"none"};break;case 38:this.$={id1:a[s-3],id2:a[s],relation:a[s-1],relationTitle1:a[s-2],relationTitle2:"none"};break;case 39:this.$={id1:a[s-3],id2:a[s],relation:a[s-2],relationTitle1:"none",relationTitle2:a[s-1]};break;case 40:this.$={id1:a[s-4],id2:a[s],relation:a[s-2],relationTitle1:a[s-3],relationTitle2:a[s-1]};break;case 41:this.$={type1:a[s-2],type2:a[s],lineType:a[s-1]};break;case 42:this.$={type1:"none",type2:a[s],lineType:a[s-1]};break;case 43:this.$={type1:a[s-1],type2:"none",lineType:a[s]};break;case 44:this.$={type1:"none",type2:"none",lineType:a[s]};break;case 45:this.$=r.relationType.AGGREGATION;break;case 46:this.$=r.relationType.EXTENSION;break;case 47:this.$=r.relationType.COMPOSITION;break;case 48:this.$=r.relationType.DEPENDENCY;break;case 49:this.$=r.lineType.LINE;break;case 50:this.$=r.lineType.DOTTED_LINE;break;case 51:this.$=a[s-2],r.setClickEvent(a[s-1],a[s],void 0);break;case 52:this.$=a[s-3],r.setClickEvent(a[s-2],a[s-1],a[s]);break;case 53:this.$=a[s-2],r.setLink(a[s-1],a[s],void 0);break;case 54:this.$=a[s-3],r.setLink(a[s-2],a[s-1],a[s]);break;case 55:r.setCssClass(a[s-1],a[s])}},table:[{3:1,4:2,5:3,6:4,7:5,13:e,17:n},{1:[3]},{1:[2,1]},{3:8,4:2,5:3,6:4,7:5,13:e,17:n},{1:[2,3]},{8:9,14:[1,10]},{10:[1,11]},{14:[2,6]},{1:[2,2]},{9:12,11:[1,13],16:r},t([11,16],[2,7]),{5:23,7:5,13:e,18:15,20:16,21:24,22:32,24:17,26:18,27:19,28:20,29:21,30:22,31:i,36:a,38:o,39:s,50:c,51:u,52:l,66:h,67:f,68:d},{10:[1,36]},{12:37,15:[1,38]},{10:[2,9]},{19:[1,39]},{10:[1,40],19:[2,11]},t(p,[2,18],{25:[1,41]}),t(p,[2,20]),t(p,[2,21]),t(p,[2,22]),t(p,[2,23]),t(p,[2,24]),t(p,[2,25]),t(p,[2,33],{40:42,42:45,43:46,25:[1,44],41:[1,43],44:g,45:y,46:v,47:m,48:b,49:x}),{21:53,22:32,66:h,67:f,68:d},t(p,[2,35]),t(p,[2,36]),{22:54,66:h,67:f,68:d},{21:55,22:32,66:h,67:f,68:d},{21:56,22:32,66:h,67:f,68:d},{41:[1,57]},t(_,[2,14],{22:32,21:58,23:[1,59],66:h,67:f,68:d}),t(k,[2,69]),t(k,[2,70]),t(k,[2,71]),t(w,[2,4]),{9:60,16:r},{16:[2,8]},{1:[2,10]},{5:23,7:5,13:e,18:61,19:[2,12],20:16,21:24,22:32,24:17,26:18,27:19,28:20,29:21,30:22,31:i,36:a,38:o,39:s,50:c,51:u,52:l,66:h,67:f,68:d},t(p,[2,19]),{21:62,22:32,41:[1,63],66:h,67:f,68:d},{40:64,42:45,43:46,44:g,45:y,46:v,47:m,48:b,49:x},t(p,[2,34]),{43:65,48:b,49:x},t(E,[2,44],{42:66,44:g,45:y,46:v,47:m}),t(T,[2,45]),t(T,[2,46]),t(T,[2,47]),t(T,[2,48]),t(C,[2,49]),t(C,[2,50]),t(p,[2,26],{32:[1,67],33:[1,68]}),{37:[1,69]},{41:[1,70]},{41:[1,71]},{22:72,66:h,67:f,68:d},t(_,[2,15]),t(_,[2,17],{22:32,21:73,66:h,67:f,68:d}),{10:[1,74]},{19:[2,13]},t(A,[2,37]),{21:75,22:32,66:h,67:f,68:d},{21:76,22:32,41:[1,77],66:h,67:f,68:d},t(E,[2,43],{42:78,44:g,45:y,46:v,47:m}),t(E,[2,42]),{22:79,66:h,67:f,68:d},{34:80,38:S},{21:82,22:32,66:h,67:f,68:d},t(p,[2,51],{41:[1,83]}),t(p,[2,53],{41:[1,84]}),t(p,[2,55]),t(_,[2,16]),t(w,[2,5]),t(A,[2,39]),t(A,[2,38]),{21:85,22:32,66:h,67:f,68:d},t(E,[2,41]),t(p,[2,27],{33:[1,86]}),{35:[1,87]},{34:88,35:[2,31],38:S},t(p,[2,30]),t(p,[2,52]),t(p,[2,54]),t(A,[2,40]),{34:89,38:S},t(p,[2,28]),{35:[2,32]},{35:[1,90]},t(p,[2,29])],defaultActions:{2:[2,1],4:[2,3],7:[2,6],8:[2,2],14:[2,9],38:[2,8],39:[2,10],61:[2,13],88:[2,32]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},O={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),13;case 1:return this.begin("type_directive"),14;case 2:return this.popState(),this.begin("arg_directive"),11;case 3:return this.popState(),this.popState(),16;case 4:return 15;case 5:case 6:break;case 7:return 10;case 8:break;case 9:case 10:return 17;case 11:return this.begin("struct"),33;case 12:return"EOF_IN_STRUCT";case 13:return"OPEN_IN_STRUCT";case 14:return this.popState(),35;case 15:break;case 16:return"MEMBER";case 17:return 31;case 18:return 52;case 19:return 50;case 20:return 51;case 21:return 36;case 22:return 37;case 23:this.begin("generic");break;case 24:this.popState();break;case 25:return"GENERICTYPE";case 26:this.begin("string");break;case 27:this.popState();break;case 28:return"STR";case 29:case 30:return 45;case 31:case 32:return 47;case 33:return 46;case 34:return 44;case 35:return 48;case 36:return 49;case 37:return 25;case 38:return 32;case 39:return 64;case 40:return"DOT";case 41:return"PLUS";case 42:return 61;case 43:case 44:return"EQUALS";case 45:return 68;case 46:return"PUNCTUATION";case 47:return 67;case 48:return 66;case 49:return 63;case 50:return 19}},rules:[/^(?:%%\{)/,/^(?:((?:(?!\}%%)[^:.])*))/,/^(?::)/,/^(?:\}%%)/,/^(?:((?:(?!\}%%).|\n)*))/,/^(?:%%(?!\{)*[^\n]*(\r?\n?)+)/,/^(?:%%[^\n]*(\r?\n)*)/,/^(?:(\r?\n)+)/,/^(?:\s+)/,/^(?:classDiagram-v2\b)/,/^(?:classDiagram\b)/,/^(?:[{])/,/^(?:$)/,/^(?:[{])/,/^(?:[}])/,/^(?:[\n])/,/^(?:[^{}\n]*)/,/^(?:class\b)/,/^(?:cssClass\b)/,/^(?:callback\b)/,/^(?:link\b)/,/^(?:<<)/,/^(?:>>)/,/^(?:[~])/,/^(?:[~])/,/^(?:[^~]*)/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:\s*<\|)/,/^(?:\s*\|>)/,/^(?:\s*>)/,/^(?:\s*<)/,/^(?:\s*\*)/,/^(?:\s*o\b)/,/^(?:--)/,/^(?:\.\.)/,/^(?::{1}[^:\n;]+)/,/^(?::{3})/,/^(?:-)/,/^(?:\.)/,/^(?:\+)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:\w+)/,/^(?:[!"#$%&'*+,-.`?\\/])/,/^(?:[0-9]+)/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\s)/,/^(?:$)/],conditions:{string:{rules:[27,28],inclusive:!1},generic:{rules:[24,25],inclusive:!1},struct:{rules:[12,13,14,15,16],inclusive:!1},open_directive:{rules:[1],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,17,18,19,20,21,22,23,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50],inclusive:!0}}};function D(){this.yy={}}return M.lexer=O,D.prototype=M,M.Parser=D,new D}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e){var n,r,i=t.exports={};function a(){throw new Error("setTimeout has not been defined")}function o(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch(t){n=a}try{r="function"==typeof clearTimeout?clearTimeout:o}catch(t){r=o}}();var c,u=[],l=!1,h=-1;function f(){l&&c&&(l=!1,c.length?u=c.concat(u):h=-1,u.length&&d())}function d(){if(!l){var t=s(f);l=!0;for(var e=u.length;e;){for(c=u,u=[];++h1)for(var n=1;n=0;r--){var i=t[r];"."===i?t.splice(r,1):".."===i?(t.splice(r,1),n++):n&&(t.splice(r,1),n--)}if(e)for(;n--;n)t.unshift("..");return t}function r(t,e){if(t.filter)return t.filter(e);for(var n=[],r=0;r=-1&&!i;a--){var o=a>=0?arguments[a]:t.cwd();if("string"!=typeof o)throw new TypeError("Arguments to path.resolve must be strings");o&&(e=o+"/"+e,i="/"===o.charAt(0))}return(i?"/":"")+(e=n(r(e.split("/"),(function(t){return!!t})),!i).join("/"))||"."},e.normalize=function(t){var a=e.isAbsolute(t),o="/"===i(t,-1);return(t=n(r(t.split("/"),(function(t){return!!t})),!a).join("/"))||a||(t="."),t&&o&&(t+="/"),(a?"/":"")+t},e.isAbsolute=function(t){return"/"===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(r(t,(function(t,e){if("string"!=typeof t)throw new TypeError("Arguments to path.join must be strings");return t})).join("/"))},e.relative=function(t,n){function r(t){for(var e=0;e=0&&""===t[n];n--);return e>n?[]:t.slice(e,n-e+1)}t=e.resolve(t).substr(1),n=e.resolve(n).substr(1);for(var i=r(t.split("/")),a=r(n.split("/")),o=Math.min(i.length,a.length),s=o,c=0;c=1;--a)if(47===(e=t.charCodeAt(a))){if(!i){r=a;break}}else i=!1;return-1===r?n?"/":".":n&&1===r?"/":t.slice(0,r)},e.basename=function(t,e){var n=function(t){"string"!=typeof t&&(t+="");var e,n=0,r=-1,i=!0;for(e=t.length-1;e>=0;--e)if(47===t.charCodeAt(e)){if(!i){n=e+1;break}}else-1===r&&(i=!1,r=e+1);return-1===r?"":t.slice(n,r)}(t);return e&&n.substr(-1*e.length)===e&&(n=n.substr(0,n.length-e.length)),n},e.extname=function(t){"string"!=typeof t&&(t+="");for(var e=-1,n=0,r=-1,i=!0,a=0,o=t.length-1;o>=0;--o){var s=t.charCodeAt(o);if(47!==s)-1===r&&(i=!1,r=o+1),46===s?-1===e?e=o:1!==a&&(a=1):-1!==e&&(a=-1);else if(!i){n=o+1;break}}return-1===e||-1===r||0===a||1===a&&e===r-1&&e===n+1?"":t.slice(e,r)};var i="b"==="ab".substr(-1)?function(t,e,n){return t.substr(e,n)}:function(t,e,n){return e<0&&(e=t.length+e),t.substr(e,n)}}).call(this,n(14))},function(t,e){t.exports=function(t){return null!=t&&"object"==typeof t}},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,2],n=[1,3],r=[1,5],i=[1,7],a=[2,5],o=[1,15],s=[1,17],c=[1,19],u=[1,20],l=[1,21],h=[1,22],f=[1,28],d=[1,23],p=[1,24],g=[1,25],y=[1,26],v=[1,29],m=[1,32],b=[1,4,5,14,15,17,19,20,22,23,24,25,26,36,39],x=[1,4,5,12,13,14,15,17,19,20,22,23,24,25,26,36,39],_=[1,4,5,7,14,15,17,19,20,22,23,24,25,26,36,39],k=[4,5,14,15,17,19,20,22,23,24,25,26,36,39],w={trace:function(){},yy:{},symbols_:{error:2,start:3,SPACE:4,NL:5,directive:6,SD:7,document:8,line:9,statement:10,idStatement:11,DESCR:12,"--\x3e":13,HIDE_EMPTY:14,scale:15,WIDTH:16,COMPOSIT_STATE:17,STRUCT_START:18,STRUCT_STOP:19,STATE_DESCR:20,AS:21,ID:22,FORK:23,JOIN:24,CONCURRENT:25,note:26,notePosition:27,NOTE_TEXT:28,openDirective:29,typeDirective:30,closeDirective:31,":":32,argDirective:33,eol:34,";":35,EDGE_STATE:36,left_of:37,right_of:38,open_directive:39,type_directive:40,arg_directive:41,close_directive:42,$accept:0,$end:1},terminals_:{2:"error",4:"SPACE",5:"NL",7:"SD",12:"DESCR",13:"--\x3e",14:"HIDE_EMPTY",15:"scale",16:"WIDTH",17:"COMPOSIT_STATE",18:"STRUCT_START",19:"STRUCT_STOP",20:"STATE_DESCR",21:"AS",22:"ID",23:"FORK",24:"JOIN",25:"CONCURRENT",26:"note",28:"NOTE_TEXT",32:":",35:";",36:"EDGE_STATE",37:"left_of",38:"right_of",39:"open_directive",40:"type_directive",41:"arg_directive",42:"close_directive"},productions_:[0,[3,2],[3,2],[3,2],[3,2],[8,0],[8,2],[9,2],[9,1],[9,1],[10,1],[10,2],[10,3],[10,4],[10,1],[10,2],[10,1],[10,4],[10,3],[10,6],[10,1],[10,1],[10,1],[10,4],[10,4],[10,1],[6,3],[6,5],[34,1],[34,1],[11,1],[11,1],[27,1],[27,1],[29,1],[30,1],[33,1],[31,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 4:return r.setRootDoc(a[s]),a[s];case 5:this.$=[];break;case 6:"nl"!=a[s]&&(a[s-1].push(a[s]),this.$=a[s-1]);break;case 7:case 8:this.$=a[s];break;case 9:this.$="nl";break;case 10:this.$={stmt:"state",id:a[s],type:"default",description:""};break;case 11:this.$={stmt:"state",id:a[s-1],type:"default",description:r.trimColon(a[s])};break;case 12:this.$={stmt:"relation",state1:{stmt:"state",id:a[s-2],type:"default",description:""},state2:{stmt:"state",id:a[s],type:"default",description:""}};break;case 13:this.$={stmt:"relation",state1:{stmt:"state",id:a[s-3],type:"default",description:""},state2:{stmt:"state",id:a[s-1],type:"default",description:""},description:a[s].substr(1).trim()};break;case 17:this.$={stmt:"state",id:a[s-3],type:"default",description:"",doc:a[s-1]};break;case 18:var c=a[s],u=a[s-2].trim();if(a[s].match(":")){var l=a[s].split(":");c=l[0],u=[u,l[1]]}this.$={stmt:"state",id:c,type:"default",description:u};break;case 19:this.$={stmt:"state",id:a[s-3],type:"default",description:a[s-5],doc:a[s-1]};break;case 20:this.$={stmt:"state",id:a[s],type:"fork"};break;case 21:this.$={stmt:"state",id:a[s],type:"join"};break;case 22:this.$={stmt:"state",id:r.getDividerId(),type:"divider"};break;case 23:this.$={stmt:"state",id:a[s-1].trim(),note:{position:a[s-2].trim(),text:a[s].trim()}};break;case 30:case 31:this.$=a[s];break;case 34:r.parseDirective("%%{","open_directive");break;case 35:r.parseDirective(a[s],"type_directive");break;case 36:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 37:r.parseDirective("}%%","close_directive","state")}},table:[{3:1,4:e,5:n,6:4,7:r,29:6,39:i},{1:[3]},{3:8,4:e,5:n,6:4,7:r,29:6,39:i},{3:9,4:e,5:n,6:4,7:r,29:6,39:i},{3:10,4:e,5:n,6:4,7:r,29:6,39:i},t([1,4,5,14,15,17,20,22,23,24,25,26,36,39],a,{8:11}),{30:12,40:[1,13]},{40:[2,34]},{1:[2,1]},{1:[2,2]},{1:[2,3]},{1:[2,4],4:o,5:s,6:27,9:14,10:16,11:18,14:c,15:u,17:l,20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},{31:30,32:[1,31],42:m},t([32,42],[2,35]),t(b,[2,6]),{6:27,10:33,11:18,14:c,15:u,17:l,20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},t(b,[2,8]),t(b,[2,9]),t(b,[2,10],{12:[1,34],13:[1,35]}),t(b,[2,14]),{16:[1,36]},t(b,[2,16],{18:[1,37]}),{21:[1,38]},t(b,[2,20]),t(b,[2,21]),t(b,[2,22]),{27:39,28:[1,40],37:[1,41],38:[1,42]},t(b,[2,25]),t(x,[2,30]),t(x,[2,31]),t(_,[2,26]),{33:43,41:[1,44]},t(_,[2,37]),t(b,[2,7]),t(b,[2,11]),{11:45,22:f,36:v},t(b,[2,15]),t(k,a,{8:46}),{22:[1,47]},{22:[1,48]},{21:[1,49]},{22:[2,32]},{22:[2,33]},{31:50,42:m},{42:[2,36]},t(b,[2,12],{12:[1,51]}),{4:o,5:s,6:27,9:14,10:16,11:18,14:c,15:u,17:l,19:[1,52],20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},t(b,[2,18],{18:[1,53]}),{28:[1,54]},{22:[1,55]},t(_,[2,27]),t(b,[2,13]),t(b,[2,17]),t(k,a,{8:56}),t(b,[2,23]),t(b,[2,24]),{4:o,5:s,6:27,9:14,10:16,11:18,14:c,15:u,17:l,19:[1,57],20:h,22:f,23:d,24:p,25:g,26:y,29:6,36:v,39:i},t(b,[2,19])],defaultActions:{7:[2,34],8:[2,1],9:[2,2],10:[2,3],41:[2,32],42:[2,33],44:[2,36]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},E={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),39;case 1:return this.begin("type_directive"),40;case 2:return this.popState(),this.begin("arg_directive"),32;case 3:return this.popState(),this.popState(),42;case 4:return 41;case 5:break;case 6:console.log("Crap after close");break;case 7:return 5;case 8:case 9:case 10:case 11:break;case 12:return this.pushState("SCALE"),15;case 13:return 16;case 14:this.popState();break;case 15:this.pushState("STATE");break;case 16:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),23;case 17:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),24;case 18:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),23;case 19:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),24;case 20:this.begin("STATE_STRING");break;case 21:return this.popState(),this.pushState("STATE_ID"),"AS";case 22:return this.popState(),"ID";case 23:this.popState();break;case 24:return"STATE_DESCR";case 25:return 17;case 26:this.popState();break;case 27:return this.popState(),this.pushState("struct"),18;case 28:return this.popState(),19;case 29:break;case 30:return this.begin("NOTE"),26;case 31:return this.popState(),this.pushState("NOTE_ID"),37;case 32:return this.popState(),this.pushState("NOTE_ID"),38;case 33:this.popState(),this.pushState("FLOATING_NOTE");break;case 34:return this.popState(),this.pushState("FLOATING_NOTE_ID"),"AS";case 35:break;case 36:return"NOTE_TEXT";case 37:return this.popState(),"ID";case 38:return this.popState(),this.pushState("NOTE_TEXT"),22;case 39:return this.popState(),e.yytext=e.yytext.substr(2).trim(),28;case 40:return this.popState(),e.yytext=e.yytext.slice(0,-8).trim(),28;case 41:case 42:return 7;case 43:return 14;case 44:return 36;case 45:return 22;case 46:return e.yytext=e.yytext.trim(),12;case 47:return 13;case 48:return 25;case 49:return 5;case 50:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:[\s]+)/i,/^(?:((?!\n)\s)+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:scale\s+)/i,/^(?:\d+)/i,/^(?:\s+width\b)/i,/^(?:state\s+)/i,/^(?:.*<>)/i,/^(?:.*<>)/i,/^(?:.*\[\[fork\]\])/i,/^(?:.*\[\[join\]\])/i,/^(?:["])/i,/^(?:\s*as\s+)/i,/^(?:[^\n\{]*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n\s\{]+)/i,/^(?:\n)/i,/^(?:\{)/i,/^(?:\})/i,/^(?:[\n])/i,/^(?:note\s+)/i,/^(?:left of\b)/i,/^(?:right of\b)/i,/^(?:")/i,/^(?:\s*as\s*)/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[^\n]*)/i,/^(?:\s*[^:\n\s\-]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:\s*[^:;]+end note\b)/i,/^(?:stateDiagram\s+)/i,/^(?:stateDiagram-v2\s+)/i,/^(?:hide empty description\b)/i,/^(?:\[\*\])/i,/^(?:[^:\n\s\-\{]+)/i,/^(?:\s*:[^:\n;]+)/i,/^(?:-->)/i,/^(?:--)/i,/^(?:$)/i,/^(?:.)/i],conditions:{LINE:{rules:[9,10],inclusive:!1},close_directive:{rules:[9,10],inclusive:!1},arg_directive:{rules:[3,4,9,10],inclusive:!1},type_directive:{rules:[2,3,9,10],inclusive:!1},open_directive:{rules:[1,9,10],inclusive:!1},struct:{rules:[9,10,15,28,29,30,44,45,46,47,48],inclusive:!1},FLOATING_NOTE_ID:{rules:[37],inclusive:!1},FLOATING_NOTE:{rules:[34,35,36],inclusive:!1},NOTE_TEXT:{rules:[39,40],inclusive:!1},NOTE_ID:{rules:[38],inclusive:!1},NOTE:{rules:[31,32,33],inclusive:!1},SCALE:{rules:[13,14],inclusive:!1},ALIAS:{rules:[],inclusive:!1},STATE_ID:{rules:[22],inclusive:!1},STATE_STRING:{rules:[23,24],inclusive:!1},FORK_STATE:{rules:[],inclusive:!1},STATE:{rules:[9,10,16,17,18,19,20,21,25,26,27],inclusive:!1},ID:{rules:[9,10],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,10,11,12,15,27,30,41,42,43,44,45,46,47,49,50],inclusive:!0}}};function T(){this.yy={}}return w.lexer=E,T.prototype=w,w.Parser=T,new T}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t){t.exports=function(){"use strict";var e,r;function i(){return e.apply(null,arguments)}function a(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function o(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function s(t){return void 0===t}function c(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function u(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function l(t,e){var n,r=[];for(n=0;n>>0,r=0;ryt(t)?(a=t+1,s-yt(t)):(a=t,s),{year:a,dayOfYear:o}}function Ft(t,e,n){var r,i,a=Bt(t.year(),e,n),o=Math.floor((t.dayOfYear()-a-1)/7)+1;return o<1?r=o+Pt(i=t.year()-1,e,n):o>Pt(t.year(),e,n)?(r=o-Pt(t.year(),e,n),i=t.year()+1):(i=t.year(),r=o),{week:r,year:i}}function Pt(t,e,n){var r=Bt(t,e,n),i=Bt(t+1,e,n);return(yt(t)-r+i)/7}function It(t,e){return t.slice(e,7).concat(t.slice(0,e))}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),j("week",5),j("isoWeek",5),lt("w",Q),lt("ww",Q,q),lt("W",Q),lt("WW",Q,q),gt(["w","ww","W","WW"],(function(t,e,n,r){e[r.substr(0,1)]=w(t)})),W("d",0,"do","day"),W("dd",0,0,(function(t){return this.localeData().weekdaysMin(this,t)})),W("ddd",0,0,(function(t){return this.localeData().weekdaysShort(this,t)})),W("dddd",0,0,(function(t){return this.localeData().weekdays(this,t)})),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),j("day",11),j("weekday",11),j("isoWeekday",11),lt("d",Q),lt("e",Q),lt("E",Q),lt("dd",(function(t,e){return e.weekdaysMinRegex(t)})),lt("ddd",(function(t,e){return e.weekdaysShortRegex(t)})),lt("dddd",(function(t,e){return e.weekdaysRegex(t)})),gt(["dd","ddd","dddd"],(function(t,e,n,r){var i=n._locale.weekdaysParse(t,r,n._strict);null!=i?e.d=i:p(n).invalidWeekday=t})),gt(["d","e","E"],(function(t,e,n,r){e[r]=w(t)}));var jt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Rt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Yt="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),zt=ct,Ut=ct,$t=ct;function Wt(){function t(t,e){return e.length-t.length}var e,n,r,i,a,o=[],s=[],c=[],u=[];for(e=0;e<7;e++)n=d([2e3,1]).day(e),r=this.weekdaysMin(n,""),i=this.weekdaysShort(n,""),a=this.weekdays(n,""),o.push(r),s.push(i),c.push(a),u.push(r),u.push(i),u.push(a);for(o.sort(t),s.sort(t),c.sort(t),u.sort(t),e=0;e<7;e++)s[e]=ft(s[e]),c[e]=ft(c[e]),u[e]=ft(u[e]);this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Vt(){return this.hours()%12||12}function Ht(t,e){W(t,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)}))}function Gt(t,e){return e._meridiemParse}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,Vt),W("k",["kk",2],0,(function(){return this.hours()||24})),W("hmm",0,0,(function(){return""+Vt.apply(this)+R(this.minutes(),2)})),W("hmmss",0,0,(function(){return""+Vt.apply(this)+R(this.minutes(),2)+R(this.seconds(),2)})),W("Hmm",0,0,(function(){return""+this.hours()+R(this.minutes(),2)})),W("Hmmss",0,0,(function(){return""+this.hours()+R(this.minutes(),2)+R(this.seconds(),2)})),Ht("a",!0),Ht("A",!1),L("hour","h"),j("hour",13),lt("a",Gt),lt("A",Gt),lt("H",Q),lt("h",Q),lt("k",Q),lt("HH",Q,q),lt("hh",Q,q),lt("kk",Q,q),lt("hmm",K),lt("hmmss",tt),lt("Hmm",K),lt("Hmmss",tt),pt(["H","HH"],3),pt(["k","kk"],(function(t,e,n){var r=w(t);e[3]=24===r?0:r})),pt(["a","A"],(function(t,e,n){n._isPm=n._locale.isPM(t),n._meridiem=t})),pt(["h","hh"],(function(t,e,n){e[3]=w(t),p(n).bigHour=!0})),pt("hmm",(function(t,e,n){var r=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r)),p(n).bigHour=!0})),pt("hmmss",(function(t,e,n){var r=t.length-4,i=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r,2)),e[5]=w(t.substr(i)),p(n).bigHour=!0})),pt("Hmm",(function(t,e,n){var r=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r))})),pt("Hmmss",(function(t,e,n){var r=t.length-4,i=t.length-2;e[3]=w(t.substr(0,r)),e[4]=w(t.substr(r,2)),e[5]=w(t.substr(i))}));var qt,Xt=xt("Hours",!0),Zt={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Tt,monthsShort:Ct,week:{dow:0,doy:6},weekdays:jt,weekdaysMin:Yt,weekdaysShort:Rt,meridiemParse:/[ap]\.?m?\.?/i},Jt={},Qt={};function Kt(t){return t?t.toLowerCase().replace("_","-"):t}function te(e){var r=null;if(!Jt[e]&&void 0!==t&&t&&t.exports)try{r=qt._abbr,n(171)("./"+e),ee(r)}catch(e){}return Jt[e]}function ee(t,e){var n;return t&&((n=s(e)?re(t):ne(t,e))?qt=n:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),qt._abbr}function ne(t,e){if(null===e)return delete Jt[t],null;var n,r=Zt;if(e.abbr=t,null!=Jt[t])M("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=Jt[t]._config;else if(null!=e.parentLocale)if(null!=Jt[e.parentLocale])r=Jt[e.parentLocale]._config;else{if(null==(n=te(e.parentLocale)))return Qt[e.parentLocale]||(Qt[e.parentLocale]=[]),Qt[e.parentLocale].push({name:t,config:e}),null;r=n._config}return Jt[t]=new N(D(r,e)),Qt[t]&&Qt[t].forEach((function(t){ne(t.name,t.config)})),ee(t),Jt[t]}function re(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return qt;if(!a(t)){if(e=te(t))return e;t=[t]}return function(t){for(var e,n,r,i,a=0;a=e&&E(i,n,!0)>=e-1)break;e--}a++}return qt}(t)}function ie(t){var e,n=t._a;return n&&-2===p(t).overflow&&(e=n[1]<0||11wt(n[0],n[1])?2:n[3]<0||24Pt(n,a,o)?p(t)._overflowWeeks=!0:null!=c?p(t)._overflowWeekday=!0:(s=Lt(n,r,i,a,o),t._a[0]=s.year,t._dayOfYear=s.dayOfYear)}(t),null!=t._dayOfYear&&(o=ae(t._a[0],r[0]),(t._dayOfYear>yt(o)||0===t._dayOfYear)&&(p(t)._overflowDayOfYear=!0),n=Nt(o,0,t._dayOfYear),t._a[1]=n.getUTCMonth(),t._a[2]=n.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=r[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[3]&&0===t._a[4]&&0===t._a[5]&&0===t._a[6]&&(t._nextDay=!0,t._a[3]=0),t._d=(t._useUTC?Nt:function(t,e,n,r,i,a,o){var s;return t<100&&0<=t?(s=new Date(t+400,e,n,r,i,a,o),isFinite(s.getFullYear())&&s.setFullYear(t)):s=new Date(t,e,n,r,i,a,o),s}).apply(null,s),a=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[3]=24),t._w&&void 0!==t._w.d&&t._w.d!==a&&(p(t).weekdayMismatch=!0)}}var se=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ce=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ue=/Z|[+-]\d\d(?::?\d\d)?/,le=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],he=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],fe=/^\/?Date\((\-?\d+)/i;function de(t){var e,n,r,i,a,o,s=t._i,c=se.exec(s)||ce.exec(s);if(c){for(p(t).iso=!0,e=0,n=le.length;en.valueOf():n.valueOf()this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},on.isLocal=function(){return!!this.isValid()&&!this._isUTC},on.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},on.isUtc=Be,on.isUTC=Be,on.zoneAbbr=function(){return this._isUTC?"UTC":""},on.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},on.dates=C("dates accessor is deprecated. Use date instead.",Ke),on.months=C("months accessor is deprecated. Use month instead",St),on.years=C("years accessor is deprecated. Use year instead",bt),on.zone=C("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()})),on.isDSTShifted=C("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!s(this._isDSTShifted))return this._isDSTShifted;var t={};if(m(t,this),(t=me(t))._a){var e=t._isUTC?d(t._a):xe(t._a);this._isDSTShifted=this.isValid()&&0h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},qt={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),12;case 1:return this.begin("type_directive"),13;case 2:return this.popState(),this.begin("arg_directive"),10;case 3:return this.popState(),this.popState(),15;case 4:return 14;case 5:case 6:break;case 7:this.begin("string");break;case 8:this.popState();break;case 9:return"STR";case 10:return 75;case 11:return 84;case 12:return 76;case 13:return 90;case 14:return 77;case 15:return 78;case 16:return 79;case 17:case 18:return t.lex.firstGraph()&&this.begin("dir"),24;case 19:return 38;case 20:return 42;case 21:case 22:case 23:case 24:return 87;case 25:return this.popState(),25;case 26:case 27:case 28:case 29:case 30:case 31:case 32:case 33:case 34:case 35:return this.popState(),26;case 36:return 91;case 37:return 99;case 38:return 47;case 39:return 96;case 40:return 46;case 41:return 20;case 42:return 92;case 43:return 110;case 44:case 45:case 46:return 70;case 47:case 48:case 49:return 69;case 50:return 51;case 51:return 52;case 52:return 53;case 53:return 54;case 54:return 55;case 55:return 56;case 56:return 57;case 57:return 58;case 58:return 97;case 59:return 100;case 60:return 111;case 61:return 108;case 62:return 101;case 63:case 64:return 109;case 65:return 102;case 66:return 61;case 67:return 81;case 68:return"SEP";case 69:return 80;case 70:return 95;case 71:return 63;case 72:return 62;case 73:return 65;case 74:return 64;case 75:return 106;case 76:return 107;case 77:return 71;case 78:return 49;case 79:return 50;case 80:return 40;case 81:return 41;case 82:return 59;case 83:return 60;case 84:return 117;case 85:return 21;case 86:return 22;case 87:return 23}},rules:[/^(?:%%\{)/,/^(?:((?:(?!\}%%)[^:.])*))/,/^(?::)/,/^(?:\}%%)/,/^(?:((?:(?!\}%%).|\n)*))/,/^(?:%%(?!\{)[^\n]*)/,/^(?:[^\}]%%[^\n]*)/,/^(?:["])/,/^(?:["])/,/^(?:[^"]*)/,/^(?:style\b)/,/^(?:default\b)/,/^(?:linkStyle\b)/,/^(?:interpolate\b)/,/^(?:classDef\b)/,/^(?:class\b)/,/^(?:click\b)/,/^(?:graph\b)/,/^(?:flowchart\b)/,/^(?:subgraph\b)/,/^(?:end\b\s*)/,/^(?:_self\b)/,/^(?:_blank\b)/,/^(?:_parent\b)/,/^(?:_top\b)/,/^(?:(\r?\n)*\s*\n)/,/^(?:\s*LR\b)/,/^(?:\s*RL\b)/,/^(?:\s*TB\b)/,/^(?:\s*BT\b)/,/^(?:\s*TD\b)/,/^(?:\s*BR\b)/,/^(?:\s*<)/,/^(?:\s*>)/,/^(?:\s*\^)/,/^(?:\s*v\b)/,/^(?:[0-9]+)/,/^(?:#)/,/^(?::::)/,/^(?::)/,/^(?:&)/,/^(?:;)/,/^(?:,)/,/^(?:\*)/,/^(?:\s*[xo<]?--+[-xo>]\s*)/,/^(?:\s*[xo<]?==+[=xo>]\s*)/,/^(?:\s*[xo<]?-?\.+-[xo>]?\s*)/,/^(?:\s*[xo<]?--\s*)/,/^(?:\s*[xo<]?==\s*)/,/^(?:\s*[xo<]?-\.\s*)/,/^(?:\(-)/,/^(?:-\))/,/^(?:\(\[)/,/^(?:\]\))/,/^(?:\[\[)/,/^(?:\]\])/,/^(?:\[\()/,/^(?:\)\])/,/^(?:-)/,/^(?:\.)/,/^(?:[\_])/,/^(?:\+)/,/^(?:%)/,/^(?:=)/,/^(?:=)/,/^(?:<)/,/^(?:>)/,/^(?:\^)/,/^(?:\\\|)/,/^(?:v\b)/,/^(?:[A-Za-z]+)/,/^(?:\\\])/,/^(?:\[\/)/,/^(?:\/\])/,/^(?:\[\\)/,/^(?:[!"#$%&'*+,-.`?\\_/])/,/^(?:[\u00AA\u00B5\u00BA\u00C0-\u00D6\u00D8-\u00F6]|[\u00F8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377]|[\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5]|[\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA]|[\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE]|[\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA]|[\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0]|[\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977]|[\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2]|[\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A]|[\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39]|[\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8]|[\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C]|[\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C]|[\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99]|[\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0]|[\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D]|[\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3]|[\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10]|[\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1]|[\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81]|[\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3]|[\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6]|[\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A]|[\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081]|[\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D]|[\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0]|[\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310]|[\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C]|[\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u1700-\u170C\u170E-\u1711]|[\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7]|[\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C]|[\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16]|[\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF]|[\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC]|[\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D]|[\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D]|[\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3]|[\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F]|[\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128]|[\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184]|[\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3]|[\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6]|[\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE]|[\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C]|[\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D]|[\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC]|[\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B]|[\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788]|[\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805]|[\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB]|[\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28]|[\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5]|[\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4]|[\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E]|[\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D]|[\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36]|[\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D]|[\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC]|[\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF]|[\uFFD2-\uFFD7\uFFDA-\uFFDC])/,/^(?:\|)/,/^(?:\()/,/^(?:\))/,/^(?:\[)/,/^(?:\])/,/^(?:\{)/,/^(?:\})/,/^(?:")/,/^(?:(\r?\n)+)/,/^(?:\s)/,/^(?:$)/],conditions:{close_directive:{rules:[],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},open_directive:{rules:[1],inclusive:!1},vertex:{rules:[],inclusive:!1},dir:{rules:[25,26,27,28,29,30,31,32,33,34,35],inclusive:!1},string:{rules:[8,9],inclusive:!1},INITIAL:{rules:[0,5,6,7,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87],inclusive:!0}}};function Xt(){this.yy={}}return Gt.lexer=qt,Xt.prototype=Gt,Gt.Parser=Xt,new Xt}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,3],n=[1,5],r=[7,9,11,12,13,14,15,16,17,18,20,27,32],i=[1,15],a=[1,16],o=[1,17],s=[1,18],c=[1,19],u=[1,20],l=[1,21],h=[1,23],f=[1,25],d=[1,28],p=[5,7,9,11,12,13,14,15,16,17,18,20,27,32],g={trace:function(){},yy:{},symbols_:{error:2,start:3,directive:4,gantt:5,document:6,EOF:7,line:8,SPACE:9,statement:10,NL:11,dateFormat:12,inclusiveEndDates:13,axisFormat:14,excludes:15,todayMarker:16,title:17,section:18,clickStatement:19,taskTxt:20,taskData:21,openDirective:22,typeDirective:23,closeDirective:24,":":25,argDirective:26,click:27,callbackname:28,callbackargs:29,href:30,clickStatementDebug:31,open_directive:32,type_directive:33,arg_directive:34,close_directive:35,$accept:0,$end:1},terminals_:{2:"error",5:"gantt",7:"EOF",9:"SPACE",11:"NL",12:"dateFormat",13:"inclusiveEndDates",14:"axisFormat",15:"excludes",16:"todayMarker",17:"title",18:"section",20:"taskTxt",21:"taskData",25:":",27:"click",28:"callbackname",29:"callbackargs",30:"href",32:"open_directive",33:"type_directive",34:"arg_directive",35:"close_directive"},productions_:[0,[3,2],[3,3],[6,0],[6,2],[8,2],[8,1],[8,1],[8,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,1],[10,2],[10,1],[4,4],[4,6],[19,2],[19,3],[19,3],[19,4],[19,3],[19,4],[19,2],[31,2],[31,3],[31,3],[31,4],[31,3],[31,4],[31,2],[22,1],[23,1],[26,1],[24,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 2:return a[s-1];case 3:this.$=[];break;case 4:a[s-1].push(a[s]),this.$=a[s-1];break;case 5:case 6:this.$=a[s];break;case 7:case 8:this.$=[];break;case 9:r.setDateFormat(a[s].substr(11)),this.$=a[s].substr(11);break;case 10:r.enableInclusiveEndDates(),this.$=a[s].substr(18);break;case 11:r.setAxisFormat(a[s].substr(11)),this.$=a[s].substr(11);break;case 12:r.setExcludes(a[s].substr(9)),this.$=a[s].substr(9);break;case 13:r.setTodayMarker(a[s].substr(12)),this.$=a[s].substr(12);break;case 14:r.setTitle(a[s].substr(6)),this.$=a[s].substr(6);break;case 15:r.addSection(a[s].substr(8)),this.$=a[s].substr(8);break;case 17:r.addTask(a[s-1],a[s]),this.$="task";break;case 21:this.$=a[s-1],r.setClickEvent(a[s-1],a[s],null);break;case 22:this.$=a[s-2],r.setClickEvent(a[s-2],a[s-1],a[s]);break;case 23:this.$=a[s-2],r.setClickEvent(a[s-2],a[s-1],null),r.setLink(a[s-2],a[s]);break;case 24:this.$=a[s-3],r.setClickEvent(a[s-3],a[s-2],a[s-1]),r.setLink(a[s-3],a[s]);break;case 25:this.$=a[s-2],r.setClickEvent(a[s-2],a[s],null),r.setLink(a[s-2],a[s-1]);break;case 26:this.$=a[s-3],r.setClickEvent(a[s-3],a[s-1],a[s]),r.setLink(a[s-3],a[s-2]);break;case 27:this.$=a[s-1],r.setLink(a[s-1],a[s]);break;case 28:case 34:this.$=a[s-1]+" "+a[s];break;case 29:case 30:case 32:this.$=a[s-2]+" "+a[s-1]+" "+a[s];break;case 31:case 33:this.$=a[s-3]+" "+a[s-2]+" "+a[s-1]+" "+a[s];break;case 35:r.parseDirective("%%{","open_directive");break;case 36:r.parseDirective(a[s],"type_directive");break;case 37:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 38:r.parseDirective("}%%","close_directive","gantt")}},table:[{3:1,4:2,5:e,22:4,32:n},{1:[3]},{3:6,4:2,5:e,22:4,32:n},t(r,[2,3],{6:7}),{23:8,33:[1,9]},{33:[2,35]},{1:[2,1]},{4:24,7:[1,10],8:11,9:[1,12],10:13,11:[1,14],12:i,13:a,14:o,15:s,16:c,17:u,18:l,19:22,20:h,22:4,27:f,32:n},{24:26,25:[1,27],35:d},t([25,35],[2,36]),t(r,[2,8],{1:[2,2]}),t(r,[2,4]),{4:24,10:29,12:i,13:a,14:o,15:s,16:c,17:u,18:l,19:22,20:h,22:4,27:f,32:n},t(r,[2,6]),t(r,[2,7]),t(r,[2,9]),t(r,[2,10]),t(r,[2,11]),t(r,[2,12]),t(r,[2,13]),t(r,[2,14]),t(r,[2,15]),t(r,[2,16]),{21:[1,30]},t(r,[2,18]),{28:[1,31],30:[1,32]},{11:[1,33]},{26:34,34:[1,35]},{11:[2,38]},t(r,[2,5]),t(r,[2,17]),t(r,[2,21],{29:[1,36],30:[1,37]}),t(r,[2,27],{28:[1,38]}),t(p,[2,19]),{24:39,35:d},{35:[2,37]},t(r,[2,22],{30:[1,40]}),t(r,[2,23]),t(r,[2,25],{29:[1,41]}),{11:[1,42]},t(r,[2,24]),t(r,[2,26]),t(p,[2,20])],defaultActions:{5:[2,35],6:[2,1],28:[2,38],35:[2,37]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},y={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),32;case 1:return this.begin("type_directive"),33;case 2:return this.popState(),this.begin("arg_directive"),25;case 3:return this.popState(),this.popState(),35;case 4:return 34;case 5:case 6:case 7:break;case 8:return 11;case 9:case 10:case 11:break;case 12:this.begin("href");break;case 13:this.popState();break;case 14:return 30;case 15:this.begin("callbackname");break;case 16:this.popState();break;case 17:this.popState(),this.begin("callbackargs");break;case 18:return 28;case 19:this.popState();break;case 20:return 29;case 21:this.begin("click");break;case 22:this.popState();break;case 23:return 27;case 24:return 5;case 25:return 12;case 26:return 13;case 27:return 14;case 28:return 15;case 29:return 16;case 30:return"date";case 31:return 17;case 32:return 18;case 33:return 20;case 34:return 21;case 35:return 25;case 36:return 7;case 37:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%%(?!\{)*[^\n]*)/i,/^(?:[^\}]%%*[^\n]*)/i,/^(?:%%*[^\n]*[\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:href[\s]+["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:call[\s]+)/i,/^(?:\([\s]*\))/i,/^(?:\()/i,/^(?:[^(]*)/i,/^(?:\))/i,/^(?:[^)]*)/i,/^(?:click[\s]+)/i,/^(?:[\s\n])/i,/^(?:[^\s\n]*)/i,/^(?:gantt\b)/i,/^(?:dateFormat\s[^#\n;]+)/i,/^(?:inclusiveEndDates\b)/i,/^(?:axisFormat\s[^#\n;]+)/i,/^(?:excludes\s[^#\n;]+)/i,/^(?:todayMarker\s[^\n;]+)/i,/^(?:\d\d\d\d-\d\d-\d\d\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{close_directive:{rules:[],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},open_directive:{rules:[1],inclusive:!1},callbackargs:{rules:[19,20],inclusive:!1},callbackname:{rules:[16,17,18],inclusive:!1},href:{rules:[13,14],inclusive:!1},click:{rules:[22,23],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,12,15,21,24,25,26,27,28,29,30,31,32,33,34,35,36,37],inclusive:!0}}};function v(){this.yy={}}return g.lexer=y,v.prototype=g,g.Parser=v,new v}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,2],n=[1,5],r=[6,9,11,17,18,19,21],i=[1,15],a=[1,16],o=[1,17],s=[1,21],c=[4,6,9,11,17,18,19,21],u={trace:function(){},yy:{},symbols_:{error:2,start:3,journey:4,document:5,EOF:6,directive:7,line:8,SPACE:9,statement:10,NEWLINE:11,openDirective:12,typeDirective:13,closeDirective:14,":":15,argDirective:16,title:17,section:18,taskName:19,taskData:20,open_directive:21,type_directive:22,arg_directive:23,close_directive:24,$accept:0,$end:1},terminals_:{2:"error",4:"journey",6:"EOF",9:"SPACE",11:"NEWLINE",15:":",17:"title",18:"section",19:"taskName",20:"taskData",21:"open_directive",22:"type_directive",23:"arg_directive",24:"close_directive"},productions_:[0,[3,3],[3,2],[5,0],[5,2],[8,2],[8,1],[8,1],[8,1],[7,4],[7,6],[10,1],[10,1],[10,2],[10,1],[12,1],[13,1],[16,1],[14,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 1:return a[s-1];case 3:this.$=[];break;case 4:a[s-1].push(a[s]),this.$=a[s-1];break;case 5:case 6:this.$=a[s];break;case 7:case 8:this.$=[];break;case 11:r.setTitle(a[s].substr(6)),this.$=a[s].substr(6);break;case 12:r.addSection(a[s].substr(8)),this.$=a[s].substr(8);break;case 13:r.addTask(a[s-1],a[s]),this.$="task";break;case 15:r.parseDirective("%%{","open_directive");break;case 16:r.parseDirective(a[s],"type_directive");break;case 17:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 18:r.parseDirective("}%%","close_directive","journey")}},table:[{3:1,4:e,7:3,12:4,21:n},{1:[3]},t(r,[2,3],{5:6}),{3:7,4:e,7:3,12:4,21:n},{13:8,22:[1,9]},{22:[2,15]},{6:[1,10],7:18,8:11,9:[1,12],10:13,11:[1,14],12:4,17:i,18:a,19:o,21:n},{1:[2,2]},{14:19,15:[1,20],24:s},t([15,24],[2,16]),t(r,[2,8],{1:[2,1]}),t(r,[2,4]),{7:18,10:22,12:4,17:i,18:a,19:o,21:n},t(r,[2,6]),t(r,[2,7]),t(r,[2,11]),t(r,[2,12]),{20:[1,23]},t(r,[2,14]),{11:[1,24]},{16:25,23:[1,26]},{11:[2,18]},t(r,[2,5]),t(r,[2,13]),t(c,[2,9]),{14:27,24:s},{24:[2,17]},{11:[1,28]},t(c,[2,10])],defaultActions:{5:[2,15],7:[2,2],21:[2,18],26:[2,17]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},l={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),21;case 1:return this.begin("type_directive"),22;case 2:return this.popState(),this.begin("arg_directive"),15;case 3:return this.popState(),this.popState(),24;case 4:return 23;case 5:case 6:break;case 7:return 11;case 8:case 9:break;case 10:return 4;case 11:return 17;case 12:return 18;case 13:return 19;case 14:return 20;case 15:return 15;case 16:return 6;case 17:return"INVALID"}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:journey\b)/i,/^(?:title\s[^#\n;]+)/i,/^(?:section\s[^#:\n;]+)/i,/^(?:[^#:\n;]+)/i,/^(?::[^#\n;]+)/i,/^(?::)/i,/^(?:$)/i,/^(?:.)/i],conditions:{open_directive:{rules:[1],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,12,13,14,15,16,17],inclusive:!0}}};function h(){this.yy={}}return u.lexer=l,h.prototype=u,u.Parser=h,new h}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15);e.default=function(t,e){return r.default.lang.round(i.default.parse(t)[e])}},function(t,e,n){var r=n(112),i=n(82),a=n(24);t.exports=function(t){return a(t)?r(t):i(t)}},function(t,e,n){var r;if(!r)try{r=n(0)}catch(t){}r||(r=window.d3),t.exports=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15);e.default=function(t,e,n){var a=i.default.parse(t),o=a[e],s=r.default.channel.clamp[e](o+n);return o!==s&&(a[e]=s),i.default.stringify(a)}},function(t,e,n){var r=n(210),i=n(216);t.exports=function(t,e){var n=i(t,e);return r(n)?n:void 0}},function(t,e,n){var r=n(38),i=n(212),a=n(213),o=r?r.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":o&&o in Object(t)?i(t):a(t)}},function(t,e){t.exports=function(t){return t}},function(t,e){t.exports=function(t,e){return t===e||t!=t&&e!=e}},function(t,e,n){var r=n(34),i=n(11);t.exports=function(t){if(!i(t))return!1;var e=r(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e}},function(t,e,n){var r=n(16).Symbol;t.exports=r},function(t,e,n){(function(t){var r=n(16),i=n(232),a=e&&!e.nodeType&&e,o=a&&"object"==typeof t&&t&&!t.nodeType&&t,s=o&&o.exports===a?r.Buffer:void 0,c=(s?s.isBuffer:void 0)||i;t.exports=c}).call(this,n(7)(t))},function(t,e,n){var r=n(112),i=n(236),a=n(24);t.exports=function(t){return a(t)?r(t,!0):i(t)}},function(t,e,n){var r=n(241),i=n(77),a=n(242),o=n(121),s=n(243),c=n(34),u=n(110),l=u(r),h=u(i),f=u(a),d=u(o),p=u(s),g=c;(r&&"[object DataView]"!=g(new r(new ArrayBuffer(1)))||i&&"[object Map]"!=g(new i)||a&&"[object Promise]"!=g(a.resolve())||o&&"[object Set]"!=g(new o)||s&&"[object WeakMap]"!=g(new s))&&(g=function(t){var e=c(t),n="[object Object]"==e?t.constructor:void 0,r=n?u(n):"";if(r)switch(r){case l:return"[object DataView]";case h:return"[object Map]";case f:return"[object Promise]";case d:return"[object Set]";case p:return"[object WeakMap]"}return e}),t.exports=g},function(t,e,n){var r=n(34),i=n(21);t.exports=function(t){return"symbol"==typeof t||i(t)&&"[object Symbol]"==r(t)}},function(t,e,n){var r;try{r={defaults:n(154),each:n(87),isFunction:n(37),isPlainObject:n(158),pick:n(161),has:n(93),range:n(162),uniqueId:n(163)}}catch(t){}r||(r=window._),t.exports=r},function(t){t.exports=JSON.parse('{"name":"mermaid","version":"8.8.0","description":"Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.","main":"dist/mermaid.core.js","keywords":["diagram","markdown","flowchart","sequence diagram","gantt","class diagram","git graph"],"scripts":{"build:development":"webpack --progress --colors","build:production":"yarn build:development -p --config webpack.config.prod.babel.js","build":"yarn build:development && yarn build:production","postbuild":"documentation build src/mermaidAPI.js src/config.js --shallow -f md --markdown-toc false | gsed \'1i---\\\\nsort: 3\\\\ntitle: Configurations\\\\n---\\\\n\' > docs/getting-started/Setup.md","build:watch":"yarn build --watch","minify":"minify ./dist/mermaid.js > ./dist/mermaid.min.js","release":"yarn build","lint":"eslint src","e2e:depr":"yarn lint && jest e2e --config e2e/jest.config.js","cypress":"percy exec -- cypress run","e2e":"start-server-and-test dev http://localhost:9000/ cypress","e2e-upd":"yarn lint && jest e2e -u --config e2e/jest.config.js","dev":"webpack-dev-server --config webpack.config.e2e.js","test":"yarn lint && jest src/.*","test:watch":"jest --watch src","prepublishOnly":"yarn build && yarn test && yarn e2e","prepare":"yarn build"},"repository":{"type":"git","url":"https://github.com/knsv/mermaid"},"author":"Knut Sveidqvist","license":"MIT","standard":{"ignore":["**/parser/*.js","dist/**/*.js","cypress/**/*.js"],"globals":["page"]},"dependencies":{"@braintree/sanitize-url":"^3.1.0","babel-eslint":"^10.1.0","d3":"^5.7.0","dagre":"^0.8.4","dagre-d3":"^0.6.4","entity-decode":"^2.0.2","graphlib":"^2.1.7","he":"^1.2.0","khroma":"^1.1.0","minify":"^4.1.1","moment-mini":"^2.22.1","stylis":"^3.5.2"},"devDependencies":{"@babel/core":"^7.2.2","@babel/preset-env":"^7.8.4","@babel/register":"^7.0.0","@percy/cypress":"*","babel-core":"7.0.0-bridge.0","babel-jest":"^24.9.0","babel-loader":"^8.0.4","coveralls":"^3.0.2","css-loader":"^2.0.1","css-to-string-loader":"^0.1.3","cypress":"4.0.1","documentation":"^12.0.1","eslint":"^6.3.0","eslint-config-prettier":"^6.3.0","eslint-plugin-prettier":"^3.1.0","husky":"^1.2.1","identity-obj-proxy":"^3.0.0","jest":"^24.9.0","jison":"^0.4.18","moment":"^2.23.0","node-sass":"^4.12.0","prettier":"^1.18.2","puppeteer":"^1.17.0","sass-loader":"^7.1.0","start-server-and-test":"^1.10.6","terser-webpack-plugin":"^2.2.2","webpack":"^4.41.2","webpack-bundle-analyzer":"^3.7.0","webpack-cli":"^3.1.2","webpack-dev-server":"^3.4.1","webpack-node-externals":"^1.7.2","yarn-upgrade-all":"^0.5.0"},"files":["dist"],"yarn-upgrade-all":{"ignore":["babel-core"]},"sideEffects":["**/*.css","**/*.scss"],"husky":{"hooks":{"pre-push":"yarn test"}}}')},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=new(n(176).default)({r:0,g:0,b:0,a:0},"transparent");e.default=r},function(t,e,n){var r=n(58),i=n(59);t.exports=function(t,e,n,a){var o=!n;n||(n={});for(var s=-1,c=e.length;++s-1&&t%1==0&&t-1}(s)?s:(n=s.match(a))?(e=n[0],r.test(e)?"about:blank":s):"about:blank"}}},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[2,3],n=[1,7],r=[7,12,15,17,19,20,21],i=[7,11,12,15,17,19,20,21],a=[2,20],o=[1,32],s={trace:function(){},yy:{},symbols_:{error:2,start:3,GG:4,":":5,document:6,EOF:7,DIR:8,options:9,body:10,OPT:11,NL:12,line:13,statement:14,COMMIT:15,commit_arg:16,BRANCH:17,ID:18,CHECKOUT:19,MERGE:20,RESET:21,reset_arg:22,STR:23,HEAD:24,reset_parents:25,CARET:26,$accept:0,$end:1},terminals_:{2:"error",4:"GG",5:":",7:"EOF",8:"DIR",11:"OPT",12:"NL",15:"COMMIT",17:"BRANCH",18:"ID",19:"CHECKOUT",20:"MERGE",21:"RESET",23:"STR",24:"HEAD",26:"CARET"},productions_:[0,[3,4],[3,5],[6,0],[6,2],[9,2],[9,1],[10,0],[10,2],[13,2],[13,1],[14,2],[14,2],[14,2],[14,2],[14,2],[16,0],[16,1],[22,2],[22,2],[25,0],[25,2]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 1:return a[s-1];case 2:return r.setDirection(a[s-3]),a[s-1];case 4:r.setOptions(a[s-1]),this.$=a[s];break;case 5:a[s-1]+=a[s],this.$=a[s-1];break;case 7:this.$=[];break;case 8:a[s-1].push(a[s]),this.$=a[s-1];break;case 9:this.$=a[s-1];break;case 11:r.commit(a[s]);break;case 12:r.branch(a[s]);break;case 13:r.checkout(a[s]);break;case 14:r.merge(a[s]);break;case 15:r.reset(a[s]);break;case 16:this.$="";break;case 17:this.$=a[s];break;case 18:this.$=a[s-1]+":"+a[s];break;case 19:this.$=a[s-1]+":"+r.count,r.count=0;break;case 20:r.count=0;break;case 21:r.count+=1}},table:[{3:1,4:[1,2]},{1:[3]},{5:[1,3],8:[1,4]},{6:5,7:e,9:6,12:n},{5:[1,8]},{7:[1,9]},t(r,[2,7],{10:10,11:[1,11]}),t(i,[2,6]),{6:12,7:e,9:6,12:n},{1:[2,1]},{7:[2,4],12:[1,15],13:13,14:14,15:[1,16],17:[1,17],19:[1,18],20:[1,19],21:[1,20]},t(i,[2,5]),{7:[1,21]},t(r,[2,8]),{12:[1,22]},t(r,[2,10]),{12:[2,16],16:23,23:[1,24]},{18:[1,25]},{18:[1,26]},{18:[1,27]},{18:[1,30],22:28,24:[1,29]},{1:[2,2]},t(r,[2,9]),{12:[2,11]},{12:[2,17]},{12:[2,12]},{12:[2,13]},{12:[2,14]},{12:[2,15]},{12:a,25:31,26:o},{12:a,25:33,26:o},{12:[2,18]},{12:a,25:34,26:o},{12:[2,19]},{12:[2,21]}],defaultActions:{9:[2,1],21:[2,2],23:[2,11],24:[2,17],25:[2,12],26:[2,13],27:[2,14],28:[2,15],31:[2,18],33:[2,19],34:[2,21]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},c={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return 12;case 1:case 2:case 3:break;case 4:return 4;case 5:return 15;case 6:return 17;case 7:return 20;case 8:return 21;case 9:return 19;case 10:case 11:return 8;case 12:return 5;case 13:return 26;case 14:this.begin("options");break;case 15:this.popState();break;case 16:return 11;case 17:this.begin("string");break;case 18:this.popState();break;case 19:return 23;case 20:return 18;case 21:return 7}},rules:[/^(?:(\r?\n)+)/i,/^(?:\s+)/i,/^(?:#[^\n]*)/i,/^(?:%[^\n]*)/i,/^(?:gitGraph\b)/i,/^(?:commit\b)/i,/^(?:branch\b)/i,/^(?:merge\b)/i,/^(?:reset\b)/i,/^(?:checkout\b)/i,/^(?:LR\b)/i,/^(?:BT\b)/i,/^(?::)/i,/^(?:\^)/i,/^(?:options\r?\n)/i,/^(?:end\r?\n)/i,/^(?:[^\n]+\r?\n)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:[a-zA-Z][-_\.a-zA-Z0-9]*[-_a-zA-Z0-9])/i,/^(?:$)/i],conditions:{options:{rules:[15,16],inclusive:!1},string:{rules:[18,19],inclusive:!1},INITIAL:{rules:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,17,20,21],inclusive:!0}}};function u(){this.yy={}}return s.lexer=c,u.prototype=s,s.Parser=u,new u}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[6,9,10],n={trace:function(){},yy:{},symbols_:{error:2,start:3,info:4,document:5,EOF:6,line:7,statement:8,NL:9,showInfo:10,$accept:0,$end:1},terminals_:{2:"error",4:"info",6:"EOF",9:"NL",10:"showInfo"},productions_:[0,[3,3],[5,0],[5,2],[7,1],[7,1],[8,1]],performAction:function(t,e,n,r,i,a,o){a.length;switch(i){case 1:return r;case 4:break;case 6:r.setInfo(!0)}},table:[{3:1,4:[1,2]},{1:[3]},t(e,[2,2],{5:3}),{6:[1,4],7:5,8:6,9:[1,7],10:[1,8]},{1:[2,1]},t(e,[2,3]),t(e,[2,4]),t(e,[2,5]),t(e,[2,6])],defaultActions:{4:[2,1]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},r={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return 4;case 1:return 9;case 2:return"space";case 3:return 10;case 4:return 6;case 5:return"TXT"}},rules:[/^(?:info\b)/i,/^(?:[\s\n\r]+)/i,/^(?:[\s]+)/i,/^(?:showInfo\b)/i,/^(?:$)/i,/^(?:.)/i],conditions:{INITIAL:{rules:[0,1,2,3,4,5],inclusive:!0}}};function i(){this.yy={}}return n.lexer=r,i.prototype=n,n.Parser=i,new i}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,4],n=[1,5],r=[1,6],i=[1,7],a=[1,9],o=[1,10,12,19,20,21,22],s=[1,6,10,12,19,20,21,22],c=[19,20,21],u=[1,22],l=[6,19,20,21,22],h={trace:function(){},yy:{},symbols_:{error:2,start:3,eol:4,directive:5,PIE:6,document:7,line:8,statement:9,txt:10,value:11,title:12,title_value:13,openDirective:14,typeDirective:15,closeDirective:16,":":17,argDirective:18,NEWLINE:19,";":20,EOF:21,open_directive:22,type_directive:23,arg_directive:24,close_directive:25,$accept:0,$end:1},terminals_:{2:"error",6:"PIE",10:"txt",11:"value",12:"title",13:"title_value",17:":",19:"NEWLINE",20:";",21:"EOF",22:"open_directive",23:"type_directive",24:"arg_directive",25:"close_directive"},productions_:[0,[3,2],[3,2],[3,2],[7,0],[7,2],[8,2],[9,0],[9,2],[9,2],[9,1],[5,3],[5,5],[4,1],[4,1],[4,1],[14,1],[15,1],[18,1],[16,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 6:this.$=a[s-1];break;case 8:r.addSection(a[s-1],r.cleanupValue(a[s]));break;case 9:this.$=a[s].trim(),r.setTitle(this.$);break;case 16:r.parseDirective("%%{","open_directive");break;case 17:r.parseDirective(a[s],"type_directive");break;case 18:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 19:r.parseDirective("}%%","close_directive","pie")}},table:[{3:1,4:2,5:3,6:e,14:8,19:n,20:r,21:i,22:a},{1:[3]},{3:10,4:2,5:3,6:e,14:8,19:n,20:r,21:i,22:a},{3:11,4:2,5:3,6:e,14:8,19:n,20:r,21:i,22:a},t(o,[2,4],{7:12}),t(s,[2,13]),t(s,[2,14]),t(s,[2,15]),{15:13,23:[1,14]},{23:[2,16]},{1:[2,1]},{1:[2,2]},t(c,[2,7],{14:8,8:15,9:16,5:19,1:[2,3],10:[1,17],12:[1,18],22:a}),{16:20,17:[1,21],25:u},t([17,25],[2,17]),t(o,[2,5]),{4:23,19:n,20:r,21:i},{11:[1,24]},{13:[1,25]},t(c,[2,10]),t(l,[2,11]),{18:26,24:[1,27]},t(l,[2,19]),t(o,[2,6]),t(c,[2,8]),t(c,[2,9]),{16:28,25:u},{25:[2,18]},t(l,[2,12])],defaultActions:{9:[2,16],10:[2,1],11:[2,2],27:[2,18]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},f={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),22;case 1:return this.begin("type_directive"),23;case 2:return this.popState(),this.begin("arg_directive"),17;case 3:return this.popState(),this.popState(),25;case 4:return 24;case 5:break;case 6:console.log("Crap after close");break;case 7:return 19;case 8:case 9:break;case 10:return this.begin("title"),12;case 11:return this.popState(),"title_value";case 12:this.begin("string");break;case 13:this.popState();break;case 14:return"txt";case 15:return 6;case 16:return"value";case 17:return 21}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n\r]+)/i,/^(?:%%[^\n]*)/i,/^(?:[\s]+)/i,/^(?:title\b)/i,/^(?:(?!\n||)*[^\n]*)/i,/^(?:["])/i,/^(?:["])/i,/^(?:[^"]*)/i,/^(?:pie\b)/i,/^(?::[\s]*[\d]+(?:\.[\d]+)?)/i,/^(?:$)/i],conditions:{close_directive:{rules:[],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},open_directive:{rules:[1],inclusive:!1},title:{rules:[11],inclusive:!1},string:{rules:[13,14],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,12,15,16,17],inclusive:!0}}};function d(){this.yy={}}return h.lexer=f,d.prototype=h,h.Parser=d,new d}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){(function(t,r){var i=function(){var t=function(t,e,n,r){for(n=n||{},r=t.length;r--;n[t[r]]=e);return n},e=[1,2],n=[1,5],r=[6,9,11,20,30],i=[1,17],a=[1,20],o=[1,24],s=[1,25],c=[1,26],u=[1,27],l=[20,27,28],h=[4,6,9,11,20,30],f=[23,24,25,26],d={trace:function(){},yy:{},symbols_:{error:2,start:3,ER_DIAGRAM:4,document:5,EOF:6,directive:7,line:8,SPACE:9,statement:10,NEWLINE:11,openDirective:12,typeDirective:13,closeDirective:14,":":15,argDirective:16,entityName:17,relSpec:18,role:19,ALPHANUM:20,cardinality:21,relType:22,ZERO_OR_ONE:23,ZERO_OR_MORE:24,ONE_OR_MORE:25,ONLY_ONE:26,NON_IDENTIFYING:27,IDENTIFYING:28,WORD:29,open_directive:30,type_directive:31,arg_directive:32,close_directive:33,$accept:0,$end:1},terminals_:{2:"error",4:"ER_DIAGRAM",6:"EOF",9:"SPACE",11:"NEWLINE",15:":",20:"ALPHANUM",23:"ZERO_OR_ONE",24:"ZERO_OR_MORE",25:"ONE_OR_MORE",26:"ONLY_ONE",27:"NON_IDENTIFYING",28:"IDENTIFYING",29:"WORD",30:"open_directive",31:"type_directive",32:"arg_directive",33:"close_directive"},productions_:[0,[3,3],[3,2],[5,0],[5,2],[8,2],[8,1],[8,1],[8,1],[7,4],[7,6],[10,1],[10,5],[17,1],[18,3],[21,1],[21,1],[21,1],[21,1],[22,1],[22,1],[19,1],[19,1],[12,1],[13,1],[16,1],[14,1]],performAction:function(t,e,n,r,i,a,o){var s=a.length-1;switch(i){case 1:break;case 3:this.$=[];break;case 4:a[s-1].push(a[s]),this.$=a[s-1];break;case 5:case 6:this.$=a[s];break;case 7:case 8:this.$=[];break;case 12:r.addEntity(a[s-4]),r.addEntity(a[s-2]),r.addRelationship(a[s-4],a[s],a[s-2],a[s-3]);break;case 13:this.$=a[s];break;case 14:this.$={cardA:a[s],relType:a[s-1],cardB:a[s-2]};break;case 15:this.$=r.Cardinality.ZERO_OR_ONE;break;case 16:this.$=r.Cardinality.ZERO_OR_MORE;break;case 17:this.$=r.Cardinality.ONE_OR_MORE;break;case 18:this.$=r.Cardinality.ONLY_ONE;break;case 19:this.$=r.Identification.NON_IDENTIFYING;break;case 20:this.$=r.Identification.IDENTIFYING;break;case 21:this.$=a[s].replace(/"/g,"");break;case 22:this.$=a[s];break;case 23:r.parseDirective("%%{","open_directive");break;case 24:r.parseDirective(a[s],"type_directive");break;case 25:a[s]=a[s].trim().replace(/'/g,'"'),r.parseDirective(a[s],"arg_directive");break;case 26:r.parseDirective("}%%","close_directive","er")}},table:[{3:1,4:e,7:3,12:4,30:n},{1:[3]},t(r,[2,3],{5:6}),{3:7,4:e,7:3,12:4,30:n},{13:8,31:[1,9]},{31:[2,23]},{6:[1,10],7:15,8:11,9:[1,12],10:13,11:[1,14],12:4,17:16,20:i,30:n},{1:[2,2]},{14:18,15:[1,19],33:a},t([15,33],[2,24]),t(r,[2,8],{1:[2,1]}),t(r,[2,4]),{7:15,10:21,12:4,17:16,20:i,30:n},t(r,[2,6]),t(r,[2,7]),t(r,[2,11]),{18:22,21:23,23:o,24:s,25:c,26:u},t([15,23,24,25,26],[2,13]),{11:[1,28]},{16:29,32:[1,30]},{11:[2,26]},t(r,[2,5]),{17:31,20:i},{22:32,27:[1,33],28:[1,34]},t(l,[2,15]),t(l,[2,16]),t(l,[2,17]),t(l,[2,18]),t(h,[2,9]),{14:35,33:a},{33:[2,25]},{15:[1,36]},{21:37,23:o,24:s,25:c,26:u},t(f,[2,19]),t(f,[2,20]),{11:[1,38]},{19:39,20:[1,41],29:[1,40]},{20:[2,14]},t(h,[2,10]),t(r,[2,12]),t(r,[2,21]),t(r,[2,22])],defaultActions:{5:[2,23],7:[2,2],20:[2,26],30:[2,25],37:[2,14]},parseError:function(t,e){if(!e.recoverable){var n=new Error(t);throw n.hash=e,n}this.trace(t)},parse:function(t){var e=this,n=[0],r=[],i=[null],a=[],o=this.table,s="",c=0,u=0,l=0,h=2,f=1,d=a.slice.call(arguments,1),p=Object.create(this.lexer),g={yy:{}};for(var y in this.yy)Object.prototype.hasOwnProperty.call(this.yy,y)&&(g.yy[y]=this.yy[y]);p.setInput(t,g.yy),g.yy.lexer=p,g.yy.parser=this,void 0===p.yylloc&&(p.yylloc={});var v=p.yylloc;a.push(v);var m=p.options&&p.options.ranges;function b(){var t;return"number"!=typeof(t=r.pop()||p.lex()||f)&&(t instanceof Array&&(t=(r=t).pop()),t=e.symbols_[t]||t),t}"function"==typeof g.yy.parseError?this.parseError=g.yy.parseError:this.parseError=Object.getPrototypeOf(this).parseError;for(var x,_,k,w,E,T,C,A,S,M={};;){if(k=n[n.length-1],this.defaultActions[k]?w=this.defaultActions[k]:(null==x&&(x=b()),w=o[k]&&o[k][x]),void 0===w||!w.length||!w[0]){var O="";for(T in S=[],o[k])this.terminals_[T]&&T>h&&S.push("'"+this.terminals_[T]+"'");O=p.showPosition?"Parse error on line "+(c+1)+":\n"+p.showPosition()+"\nExpecting "+S.join(", ")+", got '"+(this.terminals_[x]||x)+"'":"Parse error on line "+(c+1)+": Unexpected "+(x==f?"end of input":"'"+(this.terminals_[x]||x)+"'"),this.parseError(O,{text:p.match,token:this.terminals_[x]||x,line:p.yylineno,loc:v,expected:S})}if(w[0]instanceof Array&&w.length>1)throw new Error("Parse Error: multiple actions possible at state: "+k+", token: "+x);switch(w[0]){case 1:n.push(x),i.push(p.yytext),a.push(p.yylloc),n.push(w[1]),x=null,_?(x=_,_=null):(u=p.yyleng,s=p.yytext,c=p.yylineno,v=p.yylloc,l>0&&l--);break;case 2:if(C=this.productions_[w[1]][1],M.$=i[i.length-C],M._$={first_line:a[a.length-(C||1)].first_line,last_line:a[a.length-1].last_line,first_column:a[a.length-(C||1)].first_column,last_column:a[a.length-1].last_column},m&&(M._$.range=[a[a.length-(C||1)].range[0],a[a.length-1].range[1]]),void 0!==(E=this.performAction.apply(M,[s,u,c,g.yy,w[1],i,a].concat(d))))return E;C&&(n=n.slice(0,-1*C*2),i=i.slice(0,-1*C),a=a.slice(0,-1*C)),n.push(this.productions_[w[1]][0]),i.push(M.$),a.push(M._$),A=o[n[n.length-2]][n[n.length-1]],n.push(A);break;case 3:return!0}}return!0}},p={EOF:1,parseError:function(t,e){if(!this.yy.parser)throw new Error(t);this.yy.parser.parseError(t,e)},setInput:function(t,e){return this.yy=e||this.yy||{},this._input=t,this._more=this._backtrack=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var t=this._input[0];return this.yytext+=t,this.yyleng++,this.offset++,this.match+=t,this.matched+=t,t.match(/(?:\r\n?|\n).*/g)?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),t},unput:function(t){var e=t.length,n=t.split(/(?:\r\n?|\n)/g);this._input=t+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-e),this.offset-=e;var r=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),n.length-1&&(this.yylineno-=n.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:n?(n.length===r.length?this.yylloc.first_column:0)+r[r.length-n.length].length-n[0].length:this.yylloc.first_column-e},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-e]),this.yyleng=this.yytext.length,this},more:function(){return this._more=!0,this},reject:function(){return this.options.backtrack_lexer?(this._backtrack=!0,this):this.parseError("Lexical error on line "+(this.yylineno+1)+". You can only invoke reject() in the lexer when the lexer is of the backtracking persuasion (options.backtrack_lexer = true).\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},less:function(t){this.unput(this.match.slice(t))},pastInput:function(){var t=this.matched.substr(0,this.matched.length-this.match.length);return(t.length>20?"...":"")+t.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var t=this.match;return t.length<20&&(t+=this._input.substr(0,20-t.length)),(t.substr(0,20)+(t.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var t=this.pastInput(),e=new Array(t.length+1).join("-");return t+this.upcomingInput()+"\n"+e+"^"},test_match:function(t,e){var n,r,i;if(this.options.backtrack_lexer&&(i={yylineno:this.yylineno,yylloc:{first_line:this.yylloc.first_line,last_line:this.last_line,first_column:this.yylloc.first_column,last_column:this.yylloc.last_column},yytext:this.yytext,match:this.match,matches:this.matches,matched:this.matched,yyleng:this.yyleng,offset:this.offset,_more:this._more,_input:this._input,yy:this.yy,conditionStack:this.conditionStack.slice(0),done:this.done},this.options.ranges&&(i.yylloc.range=this.yylloc.range.slice(0))),(r=t[0].match(/(?:\r\n?|\n).*/g))&&(this.yylineno+=r.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:r?r[r.length-1].length-r[r.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+t[0].length},this.yytext+=t[0],this.match+=t[0],this.matches=t,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._backtrack=!1,this._input=this._input.slice(t[0].length),this.matched+=t[0],n=this.performAction.call(this,this.yy,this,e,this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),n)return n;if(this._backtrack){for(var a in i)this[a]=i[a];return!1}return!1},next:function(){if(this.done)return this.EOF;var t,e,n,r;this._input||(this.done=!0),this._more||(this.yytext="",this.match="");for(var i=this._currentRules(),a=0;ae[0].length)){if(e=n,r=a,this.options.backtrack_lexer){if(!1!==(t=this.test_match(n,i[a])))return t;if(this._backtrack){e=!1;continue}return!1}if(!this.options.flex)break}return e?!1!==(t=this.test_match(e,i[r]))&&t:""===this._input?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+". Unrecognized text.\n"+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var t=this.next();return t||this.lex()},begin:function(t){this.conditionStack.push(t)},popState:function(){return this.conditionStack.length-1>0?this.conditionStack.pop():this.conditionStack[0]},_currentRules:function(){return this.conditionStack.length&&this.conditionStack[this.conditionStack.length-1]?this.conditions[this.conditionStack[this.conditionStack.length-1]].rules:this.conditions.INITIAL.rules},topState:function(t){return(t=this.conditionStack.length-1-Math.abs(t||0))>=0?this.conditionStack[t]:"INITIAL"},pushState:function(t){this.begin(t)},stateStackSize:function(){return this.conditionStack.length},options:{"case-insensitive":!0},performAction:function(t,e,n,r){switch(n){case 0:return this.begin("open_directive"),30;case 1:return this.begin("type_directive"),31;case 2:return this.popState(),this.begin("arg_directive"),15;case 3:return this.popState(),this.popState(),33;case 4:return 32;case 5:case 6:break;case 7:return 11;case 8:break;case 9:return 9;case 10:return 29;case 11:return 4;case 12:return 23;case 13:return 24;case 14:return 25;case 15:return 26;case 16:return 23;case 17:return 24;case 18:return 25;case 19:return 27;case 20:return 28;case 21:case 22:return 27;case 23:return 20;case 24:return e.yytext[0];case 25:return 6}},rules:[/^(?:%%\{)/i,/^(?:((?:(?!\}%%)[^:.])*))/i,/^(?::)/i,/^(?:\}%%)/i,/^(?:((?:(?!\}%%).|\n)*))/i,/^(?:%(?!\{)[^\n]*)/i,/^(?:[^\}]%%[^\n]*)/i,/^(?:[\n]+)/i,/^(?:\s+)/i,/^(?:[\s]+)/i,/^(?:"[^"]*")/i,/^(?:erDiagram\b)/i,/^(?:\|o\b)/i,/^(?:\}o\b)/i,/^(?:\}\|)/i,/^(?:\|\|)/i,/^(?:o\|)/i,/^(?:o\{)/i,/^(?:\|\{)/i,/^(?:\.\.)/i,/^(?:--)/i,/^(?:\.-)/i,/^(?:-\.)/i,/^(?:[A-Za-z][A-Za-z0-9\-]*)/i,/^(?:.)/i,/^(?:$)/i],conditions:{open_directive:{rules:[1],inclusive:!1},type_directive:{rules:[2,3],inclusive:!1},arg_directive:{rules:[3,4],inclusive:!1},INITIAL:{rules:[0,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],inclusive:!0}}};function g(){this.yy={}}return d.lexer=p,g.prototype=d,d.Parser=g,new g}();e.parser=i,e.Parser=i.Parser,e.parse=function(){return i.parse.apply(i,arguments)},e.main=function(r){r[1]||(console.log("Usage: "+r[0]+" FILE"),t.exit(1));var i=n(19).readFileSync(n(20).normalize(r[1]),"utf8");return e.parser.parse(i)},n.c[n.s]===r&&e.main(t.argv.slice(1))}).call(this,n(14),n(7)(t))},function(t,e,n){"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),function(t){t[t.ALL=0]="ALL",t[t.RGB=1]="RGB",t[t.HSL=2]="HSL"}(r||(r={})),e.TYPE=r},function(t,e,n){"use strict";var r=n(10);t.exports=i;function i(t){this._isDirected=!r.has(t,"directed")||t.directed,this._isMultigraph=!!r.has(t,"multigraph")&&t.multigraph,this._isCompound=!!r.has(t,"compound")&&t.compound,this._label=void 0,this._defaultNodeLabelFn=r.constant(void 0),this._defaultEdgeLabelFn=r.constant(void 0),this._nodes={},this._isCompound&&(this._parent={},this._children={},this._children["\0"]={}),this._in={},this._preds={},this._out={},this._sucs={},this._edgeObjs={},this._edgeLabels={}}function a(t,e){t[e]?t[e]++:t[e]=1}function o(t,e){--t[e]||delete t[e]}function s(t,e,n,i){var a=""+e,o=""+n;if(!t&&a>o){var s=a;a=o,o=s}return a+""+o+""+(r.isUndefined(i)?"\0":i)}function c(t,e,n,r){var i=""+e,a=""+n;if(!t&&i>a){var o=i;i=a,a=o}var s={v:i,w:a};return r&&(s.name=r),s}function u(t,e){return s(t,e.v,e.w,e.name)}i.prototype._nodeCount=0,i.prototype._edgeCount=0,i.prototype.isDirected=function(){return this._isDirected},i.prototype.isMultigraph=function(){return this._isMultigraph},i.prototype.isCompound=function(){return this._isCompound},i.prototype.setGraph=function(t){return this._label=t,this},i.prototype.graph=function(){return this._label},i.prototype.setDefaultNodeLabel=function(t){return r.isFunction(t)||(t=r.constant(t)),this._defaultNodeLabelFn=t,this},i.prototype.nodeCount=function(){return this._nodeCount},i.prototype.nodes=function(){return r.keys(this._nodes)},i.prototype.sources=function(){var t=this;return r.filter(this.nodes(),(function(e){return r.isEmpty(t._in[e])}))},i.prototype.sinks=function(){var t=this;return r.filter(this.nodes(),(function(e){return r.isEmpty(t._out[e])}))},i.prototype.setNodes=function(t,e){var n=arguments,i=this;return r.each(t,(function(t){n.length>1?i.setNode(t,e):i.setNode(t)})),this},i.prototype.setNode=function(t,e){return r.has(this._nodes,t)?(arguments.length>1&&(this._nodes[t]=e),this):(this._nodes[t]=arguments.length>1?e:this._defaultNodeLabelFn(t),this._isCompound&&(this._parent[t]="\0",this._children[t]={},this._children["\0"][t]=!0),this._in[t]={},this._preds[t]={},this._out[t]={},this._sucs[t]={},++this._nodeCount,this)},i.prototype.node=function(t){return this._nodes[t]},i.prototype.hasNode=function(t){return r.has(this._nodes,t)},i.prototype.removeNode=function(t){var e=this;if(r.has(this._nodes,t)){var n=function(t){e.removeEdge(e._edgeObjs[t])};delete this._nodes[t],this._isCompound&&(this._removeFromParentsChildList(t),delete this._parent[t],r.each(this.children(t),(function(t){e.setParent(t)})),delete this._children[t]),r.each(r.keys(this._in[t]),n),delete this._in[t],delete this._preds[t],r.each(r.keys(this._out[t]),n),delete this._out[t],delete this._sucs[t],--this._nodeCount}return this},i.prototype.setParent=function(t,e){if(!this._isCompound)throw new Error("Cannot set parent in a non-compound graph");if(r.isUndefined(e))e="\0";else{for(var n=e+="";!r.isUndefined(n);n=this.parent(n))if(n===t)throw new Error("Setting "+e+" as parent of "+t+" would create a cycle");this.setNode(e)}return this.setNode(t),this._removeFromParentsChildList(t),this._parent[t]=e,this._children[e][t]=!0,this},i.prototype._removeFromParentsChildList=function(t){delete this._children[this._parent[t]][t]},i.prototype.parent=function(t){if(this._isCompound){var e=this._parent[t];if("\0"!==e)return e}},i.prototype.children=function(t){if(r.isUndefined(t)&&(t="\0"),this._isCompound){var e=this._children[t];if(e)return r.keys(e)}else{if("\0"===t)return this.nodes();if(this.hasNode(t))return[]}},i.prototype.predecessors=function(t){var e=this._preds[t];if(e)return r.keys(e)},i.prototype.successors=function(t){var e=this._sucs[t];if(e)return r.keys(e)},i.prototype.neighbors=function(t){var e=this.predecessors(t);if(e)return r.union(e,this.successors(t))},i.prototype.isLeaf=function(t){return 0===(this.isDirected()?this.successors(t):this.neighbors(t)).length},i.prototype.filterNodes=function(t){var e=new this.constructor({directed:this._isDirected,multigraph:this._isMultigraph,compound:this._isCompound});e.setGraph(this.graph());var n=this;r.each(this._nodes,(function(n,r){t(r)&&e.setNode(r,n)})),r.each(this._edgeObjs,(function(t){e.hasNode(t.v)&&e.hasNode(t.w)&&e.setEdge(t,n.edge(t))}));var i={};return this._isCompound&&r.each(e.nodes(),(function(t){e.setParent(t,function t(r){var a=n.parent(r);return void 0===a||e.hasNode(a)?(i[r]=a,a):a in i?i[a]:t(a)}(t))})),e},i.prototype.setDefaultEdgeLabel=function(t){return r.isFunction(t)||(t=r.constant(t)),this._defaultEdgeLabelFn=t,this},i.prototype.edgeCount=function(){return this._edgeCount},i.prototype.edges=function(){return r.values(this._edgeObjs)},i.prototype.setPath=function(t,e){var n=this,i=arguments;return r.reduce(t,(function(t,r){return i.length>1?n.setEdge(t,r,e):n.setEdge(t,r),r})),this},i.prototype.setEdge=function(){var t,e,n,i,o=!1,u=arguments[0];"object"==typeof u&&null!==u&&"v"in u?(t=u.v,e=u.w,n=u.name,2===arguments.length&&(i=arguments[1],o=!0)):(t=u,e=arguments[1],n=arguments[3],arguments.length>2&&(i=arguments[2],o=!0)),t=""+t,e=""+e,r.isUndefined(n)||(n=""+n);var l=s(this._isDirected,t,e,n);if(r.has(this._edgeLabels,l))return o&&(this._edgeLabels[l]=i),this;if(!r.isUndefined(n)&&!this._isMultigraph)throw new Error("Cannot set a named edge when isMultigraph = false");this.setNode(t),this.setNode(e),this._edgeLabels[l]=o?i:this._defaultEdgeLabelFn(t,e,n);var h=c(this._isDirected,t,e,n);return t=h.v,e=h.w,Object.freeze(h),this._edgeObjs[l]=h,a(this._preds[e],t),a(this._sucs[t],e),this._in[e][l]=h,this._out[t][l]=h,this._edgeCount++,this},i.prototype.edge=function(t,e,n){var r=1===arguments.length?u(this._isDirected,arguments[0]):s(this._isDirected,t,e,n);return this._edgeLabels[r]},i.prototype.hasEdge=function(t,e,n){var i=1===arguments.length?u(this._isDirected,arguments[0]):s(this._isDirected,t,e,n);return r.has(this._edgeLabels,i)},i.prototype.removeEdge=function(t,e,n){var r=1===arguments.length?u(this._isDirected,arguments[0]):s(this._isDirected,t,e,n),i=this._edgeObjs[r];return i&&(t=i.v,e=i.w,delete this._edgeLabels[r],delete this._edgeObjs[r],o(this._preds[e],t),o(this._sucs[t],e),delete this._in[e][r],delete this._out[t][r],this._edgeCount--),this},i.prototype.inEdges=function(t,e){var n=this._in[t];if(n){var i=r.values(n);return e?r.filter(i,(function(t){return t.v===e})):i}},i.prototype.outEdges=function(t,e){var n=this._out[t];if(n){var i=r.values(n);return e?r.filter(i,(function(t){return t.w===e})):i}},i.prototype.nodeEdges=function(t,e){var n=this.inEdges(t,e);if(n)return n.concat(this.outEdges(t,e))}},function(t,e,n){var r=n(33)(n(16),"Map");t.exports=r},function(t,e,n){var r=n(217),i=n(224),a=n(226),o=n(227),s=n(228);function c(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e-1&&t%1==0&&t<=9007199254740991}},function(t,e,n){(function(t){var r=n(109),i=e&&!e.nodeType&&e,a=i&&"object"==typeof t&&t&&!t.nodeType&&t,o=a&&a.exports===i&&r.process,s=function(){try{var t=a&&a.require&&a.require("util").types;return t||o&&o.binding&&o.binding("util")}catch(t){}}();t.exports=s}).call(this,n(7)(t))},function(t,e,n){var r=n(62),i=n(234),a=Object.prototype.hasOwnProperty;t.exports=function(t){if(!r(t))return i(t);var e=[];for(var n in Object(t))a.call(t,n)&&"constructor"!=n&&e.push(n);return e}},function(t,e,n){var r=n(116),i=n(117),a=Object.prototype.propertyIsEnumerable,o=Object.getOwnPropertySymbols,s=o?function(t){return null==t?[]:(t=Object(t),r(o(t),(function(e){return a.call(t,e)})))}:i;t.exports=s},function(t,e){t.exports=function(t,e){for(var n=-1,r=e.length,i=t.length;++n0&&a(l)?n>1?t(l,n-1,a,o,s):r(s,l):o||(s[s.length]=l)}return s}},function(t,e,n){var r=n(42);t.exports=function(t,e,n){for(var i=-1,a=t.length;++i4,u=c?1:17,l=c?8:4,h=s?0:-1,f=c?255:15;return i.default.set({r:(r>>l*(h+3)&f)*u,g:(r>>l*(h+2)&f)*u,b:(r>>l*(h+1)&f)*u,a:s?(r&f)*u/255:1},t)}}},stringify:function(t){return t.a<1?"#"+a.DEC2HEX[Math.round(t.r)]+a.DEC2HEX[Math.round(t.g)]+a.DEC2HEX[Math.round(t.b)]+r.default.unit.frac2hex(t.a):"#"+a.DEC2HEX[Math.round(t.r)]+a.DEC2HEX[Math.round(t.g)]+a.DEC2HEX[Math.round(t.b)]}};e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(45),a=n(15);e.default=function(t,e,n,o){void 0===o&&(o=1);var s=i.default.set({h:r.default.channel.clamp.h(t),s:r.default.channel.clamp.s(e),l:r.default.channel.clamp.l(n),a:r.default.channel.clamp.a(o)});return a.default.stringify(s)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"a")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15);e.default=function(t){var e=i.default.parse(t),n=e.r,a=e.g,o=e.b,s=.2126*r.default.channel.toLinear(n)+.7152*r.default.channel.toLinear(a)+.0722*r.default.channel.toLinear(o);return r.default.lang.round(s)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(102);e.default=function(t){return r.default(t)>=.5}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"a",e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"a",-e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15),i=n(52);e.default=function(t,e){var n=r.default.parse(t),a={};for(var o in e)e[o]&&(a[o]=n[o]+e[o]);return i.default(t,a)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15),i=n(51);e.default=function(t,e,n){void 0===n&&(n=50);var a=r.default.parse(t),o=a.r,s=a.g,c=a.b,u=a.a,l=r.default.parse(e),h=l.r,f=l.g,d=l.b,p=l.a,g=n/100,y=2*g-1,v=u-p,m=((y*v==-1?y:(y+v)/(1+y*v))+1)/2,b=1-m,x=o*m+h*b,_=s*m+f*b,k=c*m+d*b,w=u*g+p*(1-g);return i.default(x,_,k,w)}},function(t,e,n){var r=n(53),i=n(79),a=n(58),o=n(229),s=n(235),c=n(114),u=n(115),l=n(238),h=n(239),f=n(119),d=n(240),p=n(41),g=n(244),y=n(245),v=n(124),m=n(5),b=n(39),x=n(249),_=n(11),k=n(251),w=n(30),E={};E["[object Arguments]"]=E["[object Array]"]=E["[object ArrayBuffer]"]=E["[object DataView]"]=E["[object Boolean]"]=E["[object Date]"]=E["[object Float32Array]"]=E["[object Float64Array]"]=E["[object Int8Array]"]=E["[object Int16Array]"]=E["[object Int32Array]"]=E["[object Map]"]=E["[object Number]"]=E["[object Object]"]=E["[object RegExp]"]=E["[object Set]"]=E["[object String]"]=E["[object Symbol]"]=E["[object Uint8Array]"]=E["[object Uint8ClampedArray]"]=E["[object Uint16Array]"]=E["[object Uint32Array]"]=!0,E["[object Error]"]=E["[object Function]"]=E["[object WeakMap]"]=!1,t.exports=function t(e,n,T,C,A,S){var M,O=1&n,D=2&n,N=4&n;if(T&&(M=A?T(e,C,A,S):T(e)),void 0!==M)return M;if(!_(e))return e;var B=m(e);if(B){if(M=g(e),!O)return u(e,M)}else{var L=p(e),F="[object Function]"==L||"[object GeneratorFunction]"==L;if(b(e))return c(e,O);if("[object Object]"==L||"[object Arguments]"==L||F&&!A){if(M=D||F?{}:v(e),!O)return D?h(e,s(M,e)):l(e,o(M,e))}else{if(!E[L])return A?e:{};M=y(e,L,O)}}S||(S=new r);var P=S.get(e);if(P)return P;S.set(e,M),k(e)?e.forEach((function(r){M.add(t(r,n,T,r,e,S))})):x(e)&&e.forEach((function(r,i){M.set(i,t(r,n,T,i,e,S))}));var I=N?D?d:f:D?keysIn:w,j=B?void 0:I(e);return i(j||e,(function(r,i){j&&(r=e[i=r]),a(M,i,t(r,n,T,i,e,S))})),M}},function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(this,n(211))},function(t,e){var n=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return n.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},function(t,e,n){var r=n(33),i=function(){try{var t=r(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();t.exports=i},function(t,e,n){var r=n(230),i=n(47),a=n(5),o=n(39),s=n(60),c=n(48),u=Object.prototype.hasOwnProperty;t.exports=function(t,e){var n=a(t),l=!n&&i(t),h=!n&&!l&&o(t),f=!n&&!l&&!h&&c(t),d=n||l||h||f,p=d?r(t.length,String):[],g=p.length;for(var y in t)!e&&!u.call(t,y)||d&&("length"==y||h&&("offset"==y||"parent"==y)||f&&("buffer"==y||"byteLength"==y||"byteOffset"==y)||s(y,g))||p.push(y);return p}},function(t,e){t.exports=function(t,e){return function(n){return t(e(n))}}},function(t,e,n){(function(t){var r=n(16),i=e&&!e.nodeType&&e,a=i&&"object"==typeof t&&t&&!t.nodeType&&t,o=a&&a.exports===i?r.Buffer:void 0,s=o?o.allocUnsafe:void 0;t.exports=function(t,e){if(e)return t.slice();var n=t.length,r=s?s(n):new t.constructor(n);return t.copy(r),r}}).call(this,n(7)(t))},function(t,e){t.exports=function(t,e){var n=-1,r=t.length;for(e||(e=Array(r));++nl))return!1;var f=c.get(t);if(f&&c.get(e))return f==e;var d=-1,p=!0,g=2&n?new r:void 0;for(c.set(t,e),c.set(e,t);++d0&&(a=c.removeMin(),(o=s[a]).distance!==Number.POSITIVE_INFINITY);)r(a).forEach(u);return s}(t,String(e),n||a,r||function(e){return t.outEdges(e)})};var a=r.constant(1)},function(t,e,n){var r=n(10);function i(){this._arr=[],this._keyIndices={}}t.exports=i,i.prototype.size=function(){return this._arr.length},i.prototype.keys=function(){return this._arr.map((function(t){return t.key}))},i.prototype.has=function(t){return r.has(this._keyIndices,t)},i.prototype.priority=function(t){var e=this._keyIndices[t];if(void 0!==e)return this._arr[e].priority},i.prototype.min=function(){if(0===this.size())throw new Error("Queue underflow");return this._arr[0].key},i.prototype.add=function(t,e){var n=this._keyIndices;if(t=String(t),!r.has(n,t)){var i=this._arr,a=i.length;return n[t]=a,i.push({key:t,priority:e}),this._decrease(a),!0}return!1},i.prototype.removeMin=function(){this._swap(0,this._arr.length-1);var t=this._arr.pop();return delete this._keyIndices[t.key],this._heapify(0),t.key},i.prototype.decrease=function(t,e){var n=this._keyIndices[t];if(e>this._arr[n].priority)throw new Error("New priority is greater than current priority. Key: "+t+" Old: "+this._arr[n].priority+" New: "+e);this._arr[n].priority=e,this._decrease(n)},i.prototype._heapify=function(t){var e=this._arr,n=2*t,r=n+1,i=t;n>1].priority2?e[2]:void 0;for(u&&a(e[0],e[1],u)&&(r=1);++n1&&o.sort((function(t,e){var r=t.x-n.x,i=t.y-n.y,a=Math.sqrt(r*r+i*i),o=e.x-n.x,s=e.y-n.y,c=Math.sqrt(o*o+s*s);return aMath.abs(o)*u?(s<0&&(u=-u),n=0===s?0:u*o/s,r=u):(o<0&&(c=-c),n=c,r=0===o?0:c*s/o);return{x:i+n,y:a+r}}},function(t,e,n){t.exports=function t(e){"use strict";var n=/^\0+/g,r=/[\0\r\f]/g,i=/: */g,a=/zoo|gra/,o=/([,: ])(transform)/g,s=/,+\s*(?![^(]*[)])/g,c=/ +\s*(?![^(]*[)])/g,u=/ *[\0] */g,l=/,\r+?/g,h=/([\t\r\n ])*\f?&/g,f=/:global\(((?:[^\(\)\[\]]*|\[.*\]|\([^\(\)]*\))*)\)/g,d=/\W+/g,p=/@(k\w+)\s*(\S*)\s*/,g=/::(place)/g,y=/:(read-only)/g,v=/\s+(?=[{\];=:>])/g,m=/([[}=:>])\s+/g,b=/(\{[^{]+?);(?=\})/g,x=/\s{2,}/g,_=/([^\(])(:+) */g,k=/[svh]\w+-[tblr]{2}/,w=/\(\s*(.*)\s*\)/g,E=/([\s\S]*?);/g,T=/-self|flex-/g,C=/[^]*?(:[rp][el]a[\w-]+)[^]*/,A=/stretch|:\s*\w+\-(?:conte|avail)/,S=/([^-])(image-set\()/,M="-webkit-",O="-moz-",D="-ms-",N=1,B=1,L=0,F=1,P=1,I=1,j=0,R=0,Y=0,z=[],U=[],$=0,W=null,V=0,H=1,G="",q="",X="";function Z(t,e,i,a,o){for(var s,c,l=0,h=0,f=0,d=0,v=0,m=0,b=0,x=0,k=0,E=0,T=0,C=0,A=0,S=0,O=0,D=0,j=0,U=0,W=0,Q=i.length,it=Q-1,at="",ot="",st="",ct="",ut="",lt="";O0&&(ot=ot.replace(r,"")),ot.trim().length>0)){switch(b){case 32:case 9:case 59:case 13:case 10:break;default:ot+=i.charAt(O)}b=59}if(1===j)switch(b){case 123:case 125:case 59:case 34:case 39:case 40:case 41:case 44:j=0;case 9:case 13:case 10:case 32:break;default:for(j=0,W=O,v=b,O--,b=59;W0&&(++O,b=v);case 123:W=Q}}switch(b){case 123:for(v=(ot=ot.trim()).charCodeAt(0),T=1,W=++O;O0&&(ot=ot.replace(r,"")),m=ot.charCodeAt(1)){case 100:case 109:case 115:case 45:s=e;break;default:s=z}if(W=(st=Z(e,s,st,m,o+1)).length,Y>0&&0===W&&(W=ot.length),$>0&&(c=nt(3,st,s=J(z,ot,U),e,B,N,W,m,o,a),ot=s.join(""),void 0!==c&&0===(W=(st=c.trim()).length)&&(m=0,st="")),W>0)switch(m){case 115:ot=ot.replace(w,et);case 100:case 109:case 45:st=ot+"{"+st+"}";break;case 107:st=(ot=ot.replace(p,"$1 $2"+(H>0?G:"")))+"{"+st+"}",st=1===P||2===P&&tt("@"+st,3)?"@"+M+st+"@"+st:"@"+st;break;default:st=ot+st,112===a&&(ct+=st,st="")}else st="";break;default:st=Z(e,J(e,ot,U),st,a,o+1)}ut+=st,C=0,j=0,S=0,D=0,U=0,A=0,ot="",st="",b=i.charCodeAt(++O);break;case 125:case 59:if((W=(ot=(D>0?ot.replace(r,""):ot).trim()).length)>1)switch(0===S&&(45===(v=ot.charCodeAt(0))||v>96&&v<123)&&(W=(ot=ot.replace(" ",":")).length),$>0&&void 0!==(c=nt(1,ot,e,t,B,N,ct.length,a,o,a))&&0===(W=(ot=c.trim()).length)&&(ot="\0\0"),v=ot.charCodeAt(0),m=ot.charCodeAt(1),v){case 0:break;case 64:if(105===m||99===m){lt+=ot+i.charAt(O);break}default:if(58===ot.charCodeAt(W-1))break;ct+=K(ot,v,m,ot.charCodeAt(2))}C=0,j=0,S=0,D=0,U=0,ot="",b=i.charCodeAt(++O)}}switch(b){case 13:case 10:if(h+d+f+l+R===0)switch(E){case 41:case 39:case 34:case 64:case 126:case 62:case 42:case 43:case 47:case 45:case 58:case 44:case 59:case 123:case 125:break;default:S>0&&(j=1)}47===h?h=0:F+C===0&&107!==a&&ot.length>0&&(D=1,ot+="\0"),$*V>0&&nt(0,ot,e,t,B,N,ct.length,a,o,a),N=1,B++;break;case 59:case 125:if(h+d+f+l===0){N++;break}default:switch(N++,at=i.charAt(O),b){case 9:case 32:if(d+l+h===0)switch(x){case 44:case 58:case 9:case 32:at="";break;default:32!==b&&(at=" ")}break;case 0:at="\\0";break;case 12:at="\\f";break;case 11:at="\\v";break;case 38:d+h+l===0&&F>0&&(U=1,D=1,at="\f"+at);break;case 108:if(d+h+l+L===0&&S>0)switch(O-S){case 2:112===x&&58===i.charCodeAt(O-3)&&(L=x);case 8:111===k&&(L=k)}break;case 58:d+h+l===0&&(S=O);break;case 44:h+f+d+l===0&&(D=1,at+="\r");break;case 34:case 39:0===h&&(d=d===b?0:0===d?b:d);break;case 91:d+h+f===0&&l++;break;case 93:d+h+f===0&&l--;break;case 41:d+h+l===0&&f--;break;case 40:if(d+h+l===0){if(0===C)switch(2*x+3*k){case 533:break;default:T=0,C=1}f++}break;case 64:h+f+d+l+S+A===0&&(A=1);break;case 42:case 47:if(d+l+f>0)break;switch(h){case 0:switch(2*b+3*i.charCodeAt(O+1)){case 235:h=47;break;case 220:W=O,h=42}break;case 42:47===b&&42===x&&W+2!==O&&(33===i.charCodeAt(W+2)&&(ct+=i.substring(W,O+1)),at="",h=0)}}if(0===h){if(F+d+l+A===0&&107!==a&&59!==b)switch(b){case 44:case 126:case 62:case 43:case 41:case 40:if(0===C){switch(x){case 9:case 32:case 10:case 13:at+="\0";break;default:at="\0"+at+(44===b?"":"\0")}D=1}else switch(b){case 40:S+7===O&&108===x&&(S=0),C=++T;break;case 41:0==(C=--T)&&(D=1,at+="\0")}break;case 9:case 32:switch(x){case 0:case 123:case 125:case 59:case 44:case 12:case 9:case 32:case 10:case 13:break;default:0===C&&(D=1,at+="\0")}}ot+=at,32!==b&&9!==b&&(E=b)}}k=x,x=b,O++}if(W=ct.length,Y>0&&0===W&&0===ut.length&&0===e[0].length==0&&(109!==a||1===e.length&&(F>0?q:X)===e[0])&&(W=e.join(",").length+2),W>0){if(s=0===F&&107!==a?function(t){for(var e,n,i=0,a=t.length,o=Array(a);i1)){if(f=c.charCodeAt(c.length-1),d=n.charCodeAt(0),e="",0!==l)switch(f){case 42:case 126:case 62:case 43:case 32:case 40:break;default:e=" "}switch(d){case 38:n=e+q;case 126:case 62:case 43:case 32:case 41:case 40:break;case 91:n=e+n+q;break;case 58:switch(2*n.charCodeAt(1)+3*n.charCodeAt(2)){case 530:if(I>0){n=e+n.substring(8,h-1);break}default:(l<1||s[l-1].length<1)&&(n=e+q+n)}break;case 44:e="";default:n=h>1&&n.indexOf(":")>0?e+n.replace(_,"$1"+q+"$2"):e+n+q}c+=n}o[i]=c.replace(r,"").trim()}return o}(e):e,$>0&&void 0!==(c=nt(2,ct,s,t,B,N,W,a,o,a))&&0===(ct=c).length)return lt+ct+ut;if(ct=s.join(",")+"{"+ct+"}",P*L!=0){switch(2!==P||tt(ct,2)||(L=0),L){case 111:ct=ct.replace(y,":-moz-$1")+ct;break;case 112:ct=ct.replace(g,"::-webkit-input-$1")+ct.replace(g,"::-moz-$1")+ct.replace(g,":-ms-input-$1")+ct}L=0}}return lt+ct+ut}function J(t,e,n){var r=e.trim().split(l),i=r,a=r.length,o=t.length;switch(o){case 0:case 1:for(var s=0,c=0===o?"":t[0]+" ";s0&&F>0)return i.replace(f,"$1").replace(h,"$1"+X);break;default:return t.trim()+i.replace(h,"$1"+t.trim())}default:if(n*F>0&&i.indexOf("\f")>0)return i.replace(h,(58===t.charCodeAt(0)?"":"$1")+t.trim())}return t+i}function K(t,e,n,r){var u,l=0,h=t+";",f=2*e+3*n+4*r;if(944===f)return function(t){var e=t.length,n=t.indexOf(":",9)+1,r=t.substring(0,n).trim(),i=t.substring(n,e-1).trim();switch(t.charCodeAt(9)*H){case 0:break;case 45:if(110!==t.charCodeAt(10))break;default:var a=i.split((i="",s)),o=0;for(n=0,e=a.length;o64&&h<90||h>96&&h<123||95===h||45===h&&45!==u.charCodeAt(1)))switch(isNaN(parseFloat(u))+(-1!==u.indexOf("("))){case 1:switch(u){case"infinite":case"alternate":case"backwards":case"running":case"normal":case"forwards":case"both":case"none":case"linear":case"ease":case"ease-in":case"ease-out":case"ease-in-out":case"paused":case"reverse":case"alternate-reverse":case"inherit":case"initial":case"unset":case"step-start":case"step-end":break;default:u+=G}}l[n++]=u}i+=(0===o?"":",")+l.join(" ")}}return i=r+i+";",1===P||2===P&&tt(i,1)?M+i+i:i}(h);if(0===P||2===P&&!tt(h,1))return h;switch(f){case 1015:return 97===h.charCodeAt(10)?M+h+h:h;case 951:return 116===h.charCodeAt(3)?M+h+h:h;case 963:return 110===h.charCodeAt(5)?M+h+h:h;case 1009:if(100!==h.charCodeAt(4))break;case 969:case 942:return M+h+h;case 978:return M+h+O+h+h;case 1019:case 983:return M+h+O+h+D+h+h;case 883:return 45===h.charCodeAt(8)?M+h+h:h.indexOf("image-set(",11)>0?h.replace(S,"$1-webkit-$2")+h:h;case 932:if(45===h.charCodeAt(4))switch(h.charCodeAt(5)){case 103:return M+"box-"+h.replace("-grow","")+M+h+D+h.replace("grow","positive")+h;case 115:return M+h+D+h.replace("shrink","negative")+h;case 98:return M+h+D+h.replace("basis","preferred-size")+h}return M+h+D+h+h;case 964:return M+h+D+"flex-"+h+h;case 1023:if(99!==h.charCodeAt(8))break;return u=h.substring(h.indexOf(":",15)).replace("flex-","").replace("space-between","justify"),M+"box-pack"+u+M+h+D+"flex-pack"+u+h;case 1005:return a.test(h)?h.replace(i,":"+M)+h.replace(i,":"+O)+h:h;case 1e3:switch(l=(u=h.substring(13).trim()).indexOf("-")+1,u.charCodeAt(0)+u.charCodeAt(l)){case 226:u=h.replace(k,"tb");break;case 232:u=h.replace(k,"tb-rl");break;case 220:u=h.replace(k,"lr");break;default:return h}return M+h+D+u+h;case 1017:if(-1===h.indexOf("sticky",9))return h;case 975:switch(l=(h=t).length-10,f=(u=(33===h.charCodeAt(l)?h.substring(0,l):h).substring(t.indexOf(":",7)+1).trim()).charCodeAt(0)+(0|u.charCodeAt(7))){case 203:if(u.charCodeAt(8)<111)break;case 115:h=h.replace(u,M+u)+";"+h;break;case 207:case 102:h=h.replace(u,M+(f>102?"inline-":"")+"box")+";"+h.replace(u,M+u)+";"+h.replace(u,D+u+"box")+";"+h}return h+";";case 938:if(45===h.charCodeAt(5))switch(h.charCodeAt(6)){case 105:return u=h.replace("-items",""),M+h+M+"box-"+u+D+"flex-"+u+h;case 115:return M+h+D+"flex-item-"+h.replace(T,"")+h;default:return M+h+D+"flex-line-pack"+h.replace("align-content","").replace(T,"")+h}break;case 973:case 989:if(45!==h.charCodeAt(3)||122===h.charCodeAt(4))break;case 931:case 953:if(!0===A.test(t))return 115===(u=t.substring(t.indexOf(":")+1)).charCodeAt(0)?K(t.replace("stretch","fill-available"),e,n,r).replace(":fill-available",":stretch"):h.replace(u,M+u)+h.replace(u,O+u.replace("fill-",""))+h;break;case 962:if(h=M+h+(102===h.charCodeAt(5)?D+h:"")+h,n+r===211&&105===h.charCodeAt(13)&&h.indexOf("transform",10)>0)return h.substring(0,h.indexOf(";",27)+1).replace(o,"$1-webkit-$2")+h}return h}function tt(t,e){var n=t.indexOf(1===e?":":"{"),r=t.substring(0,3!==e?n:10),i=t.substring(n+1,t.length-1);return W(2!==e?r:r.replace(C,"$1"),i,e)}function et(t,e){var n=K(e,e.charCodeAt(0),e.charCodeAt(1),e.charCodeAt(2));return n!==e+";"?n.replace(E," or ($1)").substring(4):"("+e+")"}function nt(t,e,n,r,i,a,o,s,c,u){for(var l,h=0,f=e;h<$;++h)switch(l=U[h].call(at,t,f,n,r,i,a,o,s,c,u)){case void 0:case!1:case!0:case null:break;default:f=l}if(f!==e)return f}function rt(t,e,n,r){for(var i=e+1;i0&&(G=i.replace(d,91===a?"":"-")),a=1,1===F?X=i:q=i;var o,s=[X];$>0&&void 0!==(o=nt(-1,n,s,s,B,N,0,0,0,0))&&"string"==typeof o&&(n=o);var c=Z(z,s,n,0,0);return $>0&&void 0!==(o=nt(-2,c,s,s,B,N,c.length,0,0,0))&&"string"!=typeof(c=o)&&(a=0),G="",X="",q="",L=0,B=1,N=1,j*a==0?c:function(t){return t.replace(r,"").replace(v,"").replace(m,"$1").replace(b,"$1").replace(x," ")}(c)}return at.use=function t(e){switch(e){case void 0:case null:$=U.length=0;break;default:if("function"==typeof e)U[$++]=e;else if("object"==typeof e)for(var n=0,r=e.length;n=255?255:t<0?0:t},g:function(t){return t>=255?255:t<0?0:t},b:function(t){return t>=255?255:t<0?0:t},h:function(t){return t%360},s:function(t){return t>=100?100:t<0?0:t},l:function(t){return t>=100?100:t<0?0:t},a:function(t){return t>=1?1:t<0?0:t}},toLinear:function(t){var e=t/255;return t>.03928?Math.pow((e+.055)/1.055,2.4):e/12.92},hue2rgb:function(t,e,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?t+6*(e-t)*n:n<.5?e:n<2/3?t+(e-t)*(2/3-n)*6:t},hsl2rgb:function(t,e){var n=t.h,i=t.s,a=t.l;if(100===i)return 2.55*a;n/=360,i/=100;var o=(a/=100)<.5?a*(1+i):a+i-a*i,s=2*a-o;switch(e){case"r":return 255*r.hue2rgb(s,o,n+1/3);case"g":return 255*r.hue2rgb(s,o,n);case"b":return 255*r.hue2rgb(s,o,n-1/3)}},rgb2hsl:function(t,e){var n=t.r,r=t.g,i=t.b;n/=255,r/=255,i/=255;var a=Math.max(n,r,i),o=Math.min(n,r,i),s=(a+o)/2;if("l"===e)return 100*s;if(a===o)return 0;var c=a-o;if("s"===e)return 100*(s>.5?c/(2-a-o):c/(a+o));switch(a){case n:return 60*((r-i)/c+(r1?e:"0"+e},dec2hex:function(t){var e=Math.round(t).toString(16);return e.length>1?e:"0"+e}};e.default=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(75),a=n(177),o=function(){function t(t,e){this.color=e,this.changed=!1,this.data=t,this.type=new a.default}return t.prototype.set=function(t,e){return this.color=e,this.changed=!1,this.data=t,this.type.type=i.TYPE.ALL,this},t.prototype._ensureHSL=function(){void 0===this.data.h&&(this.data.h=r.default.channel.rgb2hsl(this.data,"h")),void 0===this.data.s&&(this.data.s=r.default.channel.rgb2hsl(this.data,"s")),void 0===this.data.l&&(this.data.l=r.default.channel.rgb2hsl(this.data,"l"))},t.prototype._ensureRGB=function(){void 0===this.data.r&&(this.data.r=r.default.channel.hsl2rgb(this.data,"r")),void 0===this.data.g&&(this.data.g=r.default.channel.hsl2rgb(this.data,"g")),void 0===this.data.b&&(this.data.b=r.default.channel.hsl2rgb(this.data,"b"))},Object.defineProperty(t.prototype,"r",{get:function(){return this.type.is(i.TYPE.HSL)||void 0===this.data.r?(this._ensureHSL(),r.default.channel.hsl2rgb(this.data,"r")):this.data.r},set:function(t){this.type.set(i.TYPE.RGB),this.changed=!0,this.data.r=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"g",{get:function(){return this.type.is(i.TYPE.HSL)||void 0===this.data.g?(this._ensureHSL(),r.default.channel.hsl2rgb(this.data,"g")):this.data.g},set:function(t){this.type.set(i.TYPE.RGB),this.changed=!0,this.data.g=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"b",{get:function(){return this.type.is(i.TYPE.HSL)||void 0===this.data.b?(this._ensureHSL(),r.default.channel.hsl2rgb(this.data,"b")):this.data.b},set:function(t){this.type.set(i.TYPE.RGB),this.changed=!0,this.data.b=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"h",{get:function(){return this.type.is(i.TYPE.RGB)||void 0===this.data.h?(this._ensureRGB(),r.default.channel.rgb2hsl(this.data,"h")):this.data.h},set:function(t){this.type.set(i.TYPE.HSL),this.changed=!0,this.data.h=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"s",{get:function(){return this.type.is(i.TYPE.RGB)||void 0===this.data.s?(this._ensureRGB(),r.default.channel.rgb2hsl(this.data,"s")):this.data.s},set:function(t){this.type.set(i.TYPE.HSL),this.changed=!0,this.data.s=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"l",{get:function(){return this.type.is(i.TYPE.RGB)||void 0===this.data.l?(this._ensureRGB(),r.default.channel.rgb2hsl(this.data,"l")):this.data.l},set:function(t){this.type.set(i.TYPE.HSL),this.changed=!0,this.data.l=t},enumerable:!0,configurable:!0}),Object.defineProperty(t.prototype,"a",{get:function(){return this.data.a},set:function(t){this.changed=!0,this.data.a=t},enumerable:!0,configurable:!0}),t}();e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(75),i=function(){function t(){this.type=r.TYPE.ALL}return t.prototype.get=function(){return this.type},t.prototype.set=function(t){if(this.type&&this.type!==t)throw new Error("Cannot change both RGB and HSL channels at the same time");this.type=t},t.prototype.reset=function(){this.type=r.TYPE.ALL},t.prototype.is=function(t){return this.type===t},t}();e.default=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i={};e.DEC2HEX=i;for(var a=0;a<=255;a++)i[a]=r.default.unit.dec2hex(a)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(99),i={colors:{aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyanaqua:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",transparent:"#00000000",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},parse:function(t){t=t.toLowerCase();var e=i.colors[t];if(e)return r.default.parse(e)},stringify:function(t){var e=r.default.stringify(t);for(var n in i.colors)if(i.colors[n]===e)return n}};e.default=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(45),a={re:/^rgba?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?))(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e\d+)?(%?)))?\s*?\)$/i,parse:function(t){var e=t.charCodeAt(0);if(114===e||82===e){var n=t.match(a.re);if(n){var o=n[1],s=n[2],c=n[3],u=n[4],l=n[5],h=n[6],f=n[7],d=n[8];return i.default.set({r:r.default.channel.clamp.r(s?2.55*parseFloat(o):parseFloat(o)),g:r.default.channel.clamp.g(u?2.55*parseFloat(c):parseFloat(c)),b:r.default.channel.clamp.b(h?2.55*parseFloat(l):parseFloat(l)),a:f?r.default.channel.clamp.a(d?parseFloat(f)/100:parseFloat(f)):1},t)}}},stringify:function(t){return t.a<1?"rgba("+r.default.lang.round(t.r)+", "+r.default.lang.round(t.g)+", "+r.default.lang.round(t.b)+", "+r.default.lang.round(t.a)+")":"rgb("+r.default.lang.round(t.r)+", "+r.default.lang.round(t.g)+", "+r.default.lang.round(t.b)+")"}};e.default=a},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(45),a={re:/^hsla?\(\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(?:deg|grad|rad|turn)?)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)\s*?(?:,|\s)\s*?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?%)(?:\s*?(?:,|\/)\s*?\+?(-?(?:\d+(?:\.\d+)?|(?:\.\d+))(?:e-?\d+)?(%)?))?\s*?\)$/i,hueRe:/^(.+?)(deg|grad|rad|turn)$/i,_hue2deg:function(t){var e=t.match(a.hueRe);if(e){var n=e[1];switch(e[2]){case"grad":return r.default.channel.clamp.h(.9*parseFloat(n));case"rad":return r.default.channel.clamp.h(180*parseFloat(n)/Math.PI);case"turn":return r.default.channel.clamp.h(360*parseFloat(n))}}return r.default.channel.clamp.h(parseFloat(t))},parse:function(t){var e=t.charCodeAt(0);if(104===e||72===e){var n=t.match(a.re);if(n){var o=n[1],s=n[2],c=n[3],u=n[4],l=n[5];return i.default.set({h:a._hue2deg(o),s:r.default.channel.clamp.s(parseFloat(s)),l:r.default.channel.clamp.l(parseFloat(c)),a:u?r.default.channel.clamp.a(l?parseFloat(u)/100:parseFloat(u)):1},t)}}},stringify:function(t){return t.a<1?"hsla("+r.default.lang.round(t.h)+", "+r.default.lang.round(t.s)+"%, "+r.default.lang.round(t.l)+"%, "+t.a+")":"hsl("+r.default.lang.round(t.h)+", "+r.default.lang.round(t.s)+"%, "+r.default.lang.round(t.l)+"%)"}};e.default=a},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"r")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"g")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"b")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"h")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"s")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(29);e.default=function(t){return r.default(t,"l")}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(103);e.default=function(t){return!r.default(t)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15);e.default=function(t){try{return r.default.parse(t),!0}catch(t){return!1}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"s",e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"s",-e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"l",e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t,e){return r.default(t,"l",-e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(32);e.default=function(t){return r.default(t,"h",180)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(52);e.default=function(t){return r.default(t,{s:0})}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(15),i=n(107);e.default=function(t,e){void 0===e&&(e=100);var n=r.default.parse(t);return n.r=255-n.r,n.g=255-n.g,n.b=255-n.b,i.default(n,t,e)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(9),i=n(15),a=n(106);e.default=function(t,e){var n,o,s,c=i.default.parse(t),u={};for(var l in e)u[l]=(n=c[l],o=e[l],s=r.default.channel.max[l],o>0?(s-n)*o/100:n*o/100);return a.default(t,u)}},function(t,e,n){t.exports={Graph:n(76),version:n(300)}},function(t,e,n){var r=n(108);t.exports=function(t){return r(t,4)}},function(t,e){t.exports=function(){this.__data__=[],this.size=0}},function(t,e,n){var r=n(55),i=Array.prototype.splice;t.exports=function(t){var e=this.__data__,n=r(e,t);return!(n<0)&&(n==e.length-1?e.pop():i.call(e,n,1),--this.size,!0)}},function(t,e,n){var r=n(55);t.exports=function(t){var e=this.__data__,n=r(e,t);return n<0?void 0:e[n][1]}},function(t,e,n){var r=n(55);t.exports=function(t){return r(this.__data__,t)>-1}},function(t,e,n){var r=n(55);t.exports=function(t,e){var n=this.__data__,i=r(n,t);return i<0?(++this.size,n.push([t,e])):n[i][1]=e,this}},function(t,e,n){var r=n(54);t.exports=function(){this.__data__=new r,this.size=0}},function(t,e){t.exports=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}},function(t,e){t.exports=function(t){return this.__data__.get(t)}},function(t,e){t.exports=function(t){return this.__data__.has(t)}},function(t,e,n){var r=n(54),i=n(77),a=n(78);t.exports=function(t,e){var n=this.__data__;if(n instanceof r){var o=n.__data__;if(!i||o.length<199)return o.push([t,e]),this.size=++n.size,this;n=this.__data__=new a(o)}return n.set(t,e),this.size=n.size,this}},function(t,e,n){var r=n(37),i=n(214),a=n(11),o=n(110),s=/^\[object .+?Constructor\]$/,c=Function.prototype,u=Object.prototype,l=c.toString,h=u.hasOwnProperty,f=RegExp("^"+l.call(h).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=function(t){return!(!a(t)||i(t))&&(r(t)?f:s).test(o(t))}},function(t,e){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){var r=n(38),i=Object.prototype,a=i.hasOwnProperty,o=i.toString,s=r?r.toStringTag:void 0;t.exports=function(t){var e=a.call(t,s),n=t[s];try{t[s]=void 0;var r=!0}catch(t){}var i=o.call(t);return r&&(e?t[s]=n:delete t[s]),i}},function(t,e){var n=Object.prototype.toString;t.exports=function(t){return n.call(t)}},function(t,e,n){var r,i=n(215),a=(r=/[^.]+$/.exec(i&&i.keys&&i.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"";t.exports=function(t){return!!a&&a in t}},function(t,e,n){var r=n(16)["__core-js_shared__"];t.exports=r},function(t,e){t.exports=function(t,e){return null==t?void 0:t[e]}},function(t,e,n){var r=n(218),i=n(54),a=n(77);t.exports=function(){this.size=0,this.__data__={hash:new r,map:new(a||i),string:new r}}},function(t,e,n){var r=n(219),i=n(220),a=n(221),o=n(222),s=n(223);function c(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}},function(t,e,n){var r=n(131),i=n(292),a=n(296),o=n(132),s=n(297),c=n(90);t.exports=function(t,e,n){var u=-1,l=i,h=t.length,f=!0,d=[],p=d;if(n)f=!1,l=a;else if(h>=200){var g=e?null:s(t);if(g)return c(g);f=!1,l=o,p=new r}else p=e?[]:d;t:for(;++u-1}},function(t,e,n){var r=n(145),i=n(294),a=n(295);t.exports=function(t,e,n){return e==e?a(t,e,n):r(t,i,n)}},function(t,e){t.exports=function(t){return t!=t}},function(t,e){t.exports=function(t,e,n){for(var r=n-1,i=t.length;++r1||1===e.length&&t.hasEdge(e[0],e[0])}))}},function(t,e,n){var r=n(10);t.exports=function(t,e,n){return function(t,e,n){var r={},i=t.nodes();return i.forEach((function(t){r[t]={},r[t][t]={distance:0},i.forEach((function(e){t!==e&&(r[t][e]={distance:Number.POSITIVE_INFINITY})})),n(t).forEach((function(n){var i=n.v===t?n.w:n.v,a=e(n);r[t][i]={distance:a,predecessor:t}}))})),i.forEach((function(t){var e=r[t];i.forEach((function(n){var a=r[n];i.forEach((function(n){var r=a[t],i=e[n],o=a[n],s=r.distance+i.distance;s0;){if(n=c.removeMin(),r.has(s,n))o.setEdge(n,s[n]);else{if(l)throw new Error("Input graph is not connected: "+t);l=!0}t.nodeEdges(n).forEach(u)}return o}},function(t,e,n){var r;try{r=n(3)}catch(t){}r||(r=window.graphlib),t.exports=r},function(t,e,n){"use strict";var r=n(4),i=n(345),a=n(348),o=n(349),s=n(8).normalizeRanks,c=n(351),u=n(8).removeEmptyRanks,l=n(352),h=n(353),f=n(354),d=n(355),p=n(364),g=n(8),y=n(17).Graph;t.exports=function(t,e){var n=e&&e.debugTiming?g.time:g.notime;n("layout",(function(){var e=n(" buildLayoutGraph",(function(){return function(t){var e=new y({multigraph:!0,compound:!0}),n=C(t.graph());return e.setGraph(r.merge({},m,T(n,v),r.pick(n,b))),r.forEach(t.nodes(),(function(n){var i=C(t.node(n));e.setNode(n,r.defaults(T(i,x),_)),e.setParent(n,t.parent(n))})),r.forEach(t.edges(),(function(n){var i=C(t.edge(n));e.setEdge(n,r.merge({},w,T(i,k),r.pick(i,E)))})),e}(t)}));n(" runLayout",(function(){!function(t,e){e(" makeSpaceForEdgeLabels",(function(){!function(t){var e=t.graph();e.ranksep/=2,r.forEach(t.edges(),(function(n){var r=t.edge(n);r.minlen*=2,"c"!==r.labelpos.toLowerCase()&&("TB"===e.rankdir||"BT"===e.rankdir?r.width+=r.labeloffset:r.height+=r.labeloffset)}))}(t)})),e(" removeSelfEdges",(function(){!function(t){r.forEach(t.edges(),(function(e){if(e.v===e.w){var n=t.node(e.v);n.selfEdges||(n.selfEdges=[]),n.selfEdges.push({e:e,label:t.edge(e)}),t.removeEdge(e)}}))}(t)})),e(" acyclic",(function(){i.run(t)})),e(" nestingGraph.run",(function(){l.run(t)})),e(" rank",(function(){o(g.asNonCompoundGraph(t))})),e(" injectEdgeLabelProxies",(function(){!function(t){r.forEach(t.edges(),(function(e){var n=t.edge(e);if(n.width&&n.height){var r=t.node(e.v),i={rank:(t.node(e.w).rank-r.rank)/2+r.rank,e:e};g.addDummyNode(t,"edge-proxy",i,"_ep")}}))}(t)})),e(" removeEmptyRanks",(function(){u(t)})),e(" nestingGraph.cleanup",(function(){l.cleanup(t)})),e(" normalizeRanks",(function(){s(t)})),e(" assignRankMinMax",(function(){!function(t){var e=0;r.forEach(t.nodes(),(function(n){var i=t.node(n);i.borderTop&&(i.minRank=t.node(i.borderTop).rank,i.maxRank=t.node(i.borderBottom).rank,e=r.max(e,i.maxRank))})),t.graph().maxRank=e}(t)})),e(" removeEdgeLabelProxies",(function(){!function(t){r.forEach(t.nodes(),(function(e){var n=t.node(e);"edge-proxy"===n.dummy&&(t.edge(n.e).labelRank=n.rank,t.removeNode(e))}))}(t)})),e(" normalize.run",(function(){a.run(t)})),e(" parentDummyChains",(function(){c(t)})),e(" addBorderSegments",(function(){h(t)})),e(" order",(function(){d(t)})),e(" insertSelfEdges",(function(){!function(t){var e=g.buildLayerMatrix(t);r.forEach(e,(function(e){var n=0;r.forEach(e,(function(e,i){var a=t.node(e);a.order=i+n,r.forEach(a.selfEdges,(function(e){g.addDummyNode(t,"selfedge",{width:e.label.width,height:e.label.height,rank:a.rank,order:i+ ++n,e:e.e,label:e.label},"_se")})),delete a.selfEdges}))}))}(t)})),e(" adjustCoordinateSystem",(function(){f.adjust(t)})),e(" position",(function(){p(t)})),e(" positionSelfEdges",(function(){!function(t){r.forEach(t.nodes(),(function(e){var n=t.node(e);if("selfedge"===n.dummy){var r=t.node(n.e.v),i=r.x+r.width/2,a=r.y,o=n.x-i,s=r.height/2;t.setEdge(n.e,n.label),t.removeNode(e),n.label.points=[{x:i+2*o/3,y:a-s},{x:i+5*o/6,y:a-s},{x:i+o,y:a},{x:i+5*o/6,y:a+s},{x:i+2*o/3,y:a+s}],n.label.x=n.x,n.label.y=n.y}}))}(t)})),e(" removeBorderNodes",(function(){!function(t){r.forEach(t.nodes(),(function(e){if(t.children(e).length){var n=t.node(e),i=t.node(n.borderTop),a=t.node(n.borderBottom),o=t.node(r.last(n.borderLeft)),s=t.node(r.last(n.borderRight));n.width=Math.abs(s.x-o.x),n.height=Math.abs(a.y-i.y),n.x=o.x+n.width/2,n.y=i.y+n.height/2}})),r.forEach(t.nodes(),(function(e){"border"===t.node(e).dummy&&t.removeNode(e)}))}(t)})),e(" normalize.undo",(function(){a.undo(t)})),e(" fixupEdgeLabelCoords",(function(){!function(t){r.forEach(t.edges(),(function(e){var n=t.edge(e);if(r.has(n,"x"))switch("l"!==n.labelpos&&"r"!==n.labelpos||(n.width-=n.labeloffset),n.labelpos){case"l":n.x-=n.width/2+n.labeloffset;break;case"r":n.x+=n.width/2+n.labeloffset}}))}(t)})),e(" undoCoordinateSystem",(function(){f.undo(t)})),e(" translateGraph",(function(){!function(t){var e=Number.POSITIVE_INFINITY,n=0,i=Number.POSITIVE_INFINITY,a=0,o=t.graph(),s=o.marginx||0,c=o.marginy||0;function u(t){var r=t.x,o=t.y,s=t.width,c=t.height;e=Math.min(e,r-s/2),n=Math.max(n,r+s/2),i=Math.min(i,o-c/2),a=Math.max(a,o+c/2)}r.forEach(t.nodes(),(function(e){u(t.node(e))})),r.forEach(t.edges(),(function(e){var n=t.edge(e);r.has(n,"x")&&u(n)})),e-=s,i-=c,r.forEach(t.nodes(),(function(n){var r=t.node(n);r.x-=e,r.y-=i})),r.forEach(t.edges(),(function(n){var a=t.edge(n);r.forEach(a.points,(function(t){t.x-=e,t.y-=i})),r.has(a,"x")&&(a.x-=e),r.has(a,"y")&&(a.y-=i)})),o.width=n-e+s,o.height=a-i+c}(t)})),e(" assignNodeIntersects",(function(){!function(t){r.forEach(t.edges(),(function(e){var n,r,i=t.edge(e),a=t.node(e.v),o=t.node(e.w);i.points?(n=i.points[0],r=i.points[i.points.length-1]):(i.points=[],n=o,r=a),i.points.unshift(g.intersectRect(a,n)),i.points.push(g.intersectRect(o,r))}))}(t)})),e(" reversePoints",(function(){!function(t){r.forEach(t.edges(),(function(e){var n=t.edge(e);n.reversed&&n.points.reverse()}))}(t)})),e(" acyclic.undo",(function(){i.undo(t)}))}(e,n)})),n(" updateInputGraph",(function(){!function(t,e){r.forEach(t.nodes(),(function(n){var r=t.node(n),i=e.node(n);r&&(r.x=i.x,r.y=i.y,e.children(n).length&&(r.width=i.width,r.height=i.height))})),r.forEach(t.edges(),(function(n){var i=t.edge(n),a=e.edge(n);i.points=a.points,r.has(a,"x")&&(i.x=a.x,i.y=a.y)})),t.graph().width=e.graph().width,t.graph().height=e.graph().height}(t,e)}))}))};var v=["nodesep","edgesep","ranksep","marginx","marginy"],m={ranksep:50,edgesep:20,nodesep:50,rankdir:"tb"},b=["acyclicer","ranker","rankdir","align"],x=["width","height"],_={width:0,height:0},k=["minlen","weight","width","height","labeloffset"],w={minlen:1,weight:1,width:0,height:0,labeloffset:10,labelpos:"r"},E=["labelpos"];function T(t,e){return r.mapValues(r.pick(t,e),Number)}function C(t){var e={};return r.forEach(t,(function(t,n){e[n.toLowerCase()]=t})),e}},function(t,e,n){var r=n(108);t.exports=function(t){return r(t,5)}},function(t,e,n){var r=n(315)(n(316));t.exports=r},function(t,e,n){var r=n(25),i=n(24),a=n(30);t.exports=function(t){return function(e,n,o){var s=Object(e);if(!i(e)){var c=r(n,3);e=a(e),n=function(t){return c(s[t],t,s)}}var u=t(e,n,o);return u>-1?s[c?e[u]:u]:void 0}}},function(t,e,n){var r=n(145),i=n(25),a=n(317),o=Math.max;t.exports=function(t,e,n){var s=null==t?0:t.length;if(!s)return-1;var c=null==n?0:a(n);return c<0&&(c=o(s+c,0)),r(t,i(e,3),c)}},function(t,e,n){var r=n(155);t.exports=function(t){var e=r(t),n=e%1;return e==e?n?e-n:e:0}},function(t,e,n){var r=n(11),i=n(42),a=/^\s+|\s+$/g,o=/^[-+]0x[0-9a-f]+$/i,s=/^0b[01]+$/i,c=/^0o[0-7]+$/i,u=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return NaN;if(r(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=r(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(a,"");var n=s.test(t);return n||c.test(t)?u(t.slice(2),n?2:8):o.test(t)?NaN:+t}},function(t,e,n){var r=n(89),i=n(127),a=n(40);t.exports=function(t,e){return null==t?t:r(t,i(e),a)}},function(t,e){t.exports=function(t){var e=null==t?0:t.length;return e?t[e-1]:void 0}},function(t,e,n){var r=n(59),i=n(88),a=n(25);t.exports=function(t,e){var n={};return e=a(e,3),i(t,(function(t,i,a){r(n,i,e(t,i,a))})),n}},function(t,e,n){var r=n(95),i=n(323),a=n(35);t.exports=function(t){return t&&t.length?r(t,a,i):void 0}},function(t,e){t.exports=function(t,e){return t>e}},function(t,e,n){var r=n(325),i=n(328)((function(t,e,n){r(t,e,n)}));t.exports=i},function(t,e,n){var r=n(53),i=n(157),a=n(89),o=n(326),s=n(11),c=n(40),u=n(159);t.exports=function t(e,n,l,h,f){e!==n&&a(n,(function(a,c){if(f||(f=new r),s(a))o(e,n,c,l,t,h,f);else{var d=h?h(u(e,c),a,c+"",e,n,f):void 0;void 0===d&&(d=a),i(e,c,d)}}),c)}},function(t,e,n){var r=n(157),i=n(114),a=n(123),o=n(115),s=n(124),c=n(47),u=n(5),l=n(146),h=n(39),f=n(37),d=n(11),p=n(158),g=n(48),y=n(159),v=n(327);t.exports=function(t,e,n,m,b,x,_){var k=y(t,n),w=y(e,n),E=_.get(w);if(E)r(t,n,E);else{var T=x?x(k,w,n+"",t,e,_):void 0,C=void 0===T;if(C){var A=u(w),S=!A&&h(w),M=!A&&!S&&g(w);T=w,A||S||M?u(k)?T=k:l(k)?T=o(k):S?(C=!1,T=i(w,!0)):M?(C=!1,T=a(w,!0)):T=[]:p(w)||c(w)?(T=k,c(k)?T=v(k):d(k)&&!f(k)||(T=s(w))):C=!1}C&&(_.set(w,T),b(T,w,m,x,_),_.delete(w)),r(t,n,T)}}},function(t,e,n){var r=n(46),i=n(40);t.exports=function(t){return r(t,i(t))}},function(t,e,n){var r=n(67),i=n(68);t.exports=function(t){return r((function(e,n){var r=-1,a=n.length,o=a>1?n[a-1]:void 0,s=a>2?n[2]:void 0;for(o=t.length>3&&"function"==typeof o?(a--,o):void 0,s&&i(n[0],n[1],s)&&(o=a<3?void 0:o,a=1),e=Object(e);++r1&&o(t,e[0],e[1])?e=[]:n>2&&o(e[0],e[1],e[2])&&(e=[e[0]]),i(t,r(e,1),[])}));t.exports=s},function(t,e,n){var r=n(66),i=n(25),a=n(141),o=n(340),s=n(61),c=n(341),u=n(35);t.exports=function(t,e,n){var l=-1;e=r(e.length?e:[u],s(i));var h=a(t,(function(t,n,i){return{criteria:r(e,(function(e){return e(t)})),index:++l,value:t}}));return o(h,(function(t,e){return c(t,e,n)}))}},function(t,e){t.exports=function(t,e){var n=t.length;for(t.sort(e);n--;)t[n]=t[n].value;return t}},function(t,e,n){var r=n(342);t.exports=function(t,e,n){for(var i=-1,a=t.criteria,o=e.criteria,s=a.length,c=n.length;++i=c?u:u*("desc"==n[i]?-1:1)}return t.index-e.index}},function(t,e,n){var r=n(42);t.exports=function(t,e){if(t!==e){var n=void 0!==t,i=null===t,a=t==t,o=r(t),s=void 0!==e,c=null===e,u=e==e,l=r(e);if(!c&&!l&&!o&&t>e||o&&s&&u&&!c&&!l||i&&s&&u||!n&&u||!a)return 1;if(!i&&!o&&!l&&t0;--c)if(r=e[c].dequeue()){i=i.concat(s(t,e,n,r,!0));break}}return i}(n.graph,n.buckets,n.zeroIdx);return r.flatten(r.map(u,(function(e){return t.outEdges(e.v,e.w)})),!0)};var o=r.constant(1);function s(t,e,n,i,a){var o=a?[]:void 0;return r.forEach(t.inEdges(i.v),(function(r){var i=t.edge(r),s=t.node(r.v);a&&o.push({v:r.v,w:r.w}),s.out-=i,c(e,n,s)})),r.forEach(t.outEdges(i.v),(function(r){var i=t.edge(r),a=r.w,o=t.node(a);o.in-=i,c(e,n,o)})),t.removeNode(i.v),o}function c(t,e,n){n.out?n.in?t[n.out-n.in+e].enqueue(n):t[t.length-1].enqueue(n):t[0].enqueue(n)}},function(t,e){function n(){var t={};t._next=t._prev=t,this._sentinel=t}function r(t){t._prev._next=t._next,t._next._prev=t._prev,delete t._next,delete t._prev}function i(t,e){if("_next"!==t&&"_prev"!==t)return e}t.exports=n,n.prototype.dequeue=function(){var t=this._sentinel,e=t._prev;if(e!==t)return r(e),e},n.prototype.enqueue=function(t){var e=this._sentinel;t._prev&&t._next&&r(t),t._next=e._next,e._next._prev=t,e._next=t,t._prev=e},n.prototype.toString=function(){for(var t=[],e=this._sentinel,n=e._prev;n!==e;)t.push(JSON.stringify(n,i)),n=n._prev;return"["+t.join(", ")+"]"}},function(t,e,n){"use strict";var r=n(4),i=n(8);t.exports={run:function(t){t.graph().dummyChains=[],r.forEach(t.edges(),(function(e){!function(t,e){var n,r,a,o=e.v,s=t.node(o).rank,c=e.w,u=t.node(c).rank,l=e.name,h=t.edge(e),f=h.labelRank;if(u===s+1)return;for(t.removeEdge(e),a=0,++s;sc.lim&&(u=c,l=!0);var h=r.filter(e.edges(),(function(e){return l===m(t,t.node(e.v),u)&&l!==m(t,t.node(e.w),u)}));return r.minBy(h,(function(t){return a(e,t)}))}function v(t,e,n,i){var a=n.v,o=n.w;t.removeEdge(a,o),t.setEdge(i.v,i.w,{}),d(t),h(t,e),function(t,e){var n=r.find(t.nodes(),(function(t){return!e.node(t).parent})),i=s(t,n);i=i.slice(1),r.forEach(i,(function(n){var r=t.node(n).parent,i=e.edge(n,r),a=!1;i||(i=e.edge(r,n),a=!0),e.node(n).rank=e.node(r).rank+(a?i.minlen:-i.minlen)}))}(t,e)}function m(t,e,n){return n.low<=e.lim&&e.lim<=n.lim}t.exports=l,l.initLowLimValues=d,l.initCutValues=h,l.calcCutValue=f,l.leaveEdge=g,l.enterEdge=y,l.exchangeEdges=v},function(t,e,n){var r=n(4);t.exports=function(t){var e=function(t){var e={},n=0;function i(a){var o=n;r.forEach(t.children(a),i),e[a]={low:o,lim:n++}}return r.forEach(t.children(),i),e}(t);r.forEach(t.graph().dummyChains,(function(n){for(var r=t.node(n),i=r.edgeObj,a=function(t,e,n,r){var i,a,o=[],s=[],c=Math.min(e[n].low,e[r].low),u=Math.max(e[n].lim,e[r].lim);i=n;do{i=t.parent(i),o.push(i)}while(i&&(e[i].low>c||u>e[i].lim));a=i,i=r;for(;(i=t.parent(i))!==a;)s.push(i);return{path:o.concat(s.reverse()),lca:a}}(t,e,i.v,i.w),o=a.path,s=a.lca,c=0,u=o[c],l=!0;n!==i.w;){if(r=t.node(n),l){for(;(u=o[c])!==s&&t.node(u).maxRank=2),s=l.buildLayerMatrix(t);var y=a(t,s);y0;)e%2&&(n+=c[e+1]),c[e=e-1>>1]+=t.weight;u+=t.weight*n}))),u}t.exports=function(t,e){for(var n=0,r=1;r=t.barycenter)&&function(t,e){var n=0,r=0;t.weight&&(n+=t.barycenter*t.weight,r+=t.weight);e.weight&&(n+=e.barycenter*e.weight,r+=e.weight);t.vs=e.vs.concat(t.vs),t.barycenter=n/r,t.weight=r,t.i=Math.min(e.i,t.i),e.merged=!0}(t,e)}}function i(e){return function(n){n.in.push(e),0==--n.indegree&&t.push(n)}}for(;t.length;){var a=t.pop();e.push(a),r.forEach(a.in.reverse(),n(a)),r.forEach(a.out,i(a))}return r.map(r.filter(e,(function(t){return!t.merged})),(function(t){return r.pick(t,["vs","i","barycenter","weight"])}))}(r.filter(n,(function(t){return!t.indegree})))}},function(t,e,n){var r=n(4),i=n(8);function a(t,e,n){for(var i;e.length&&(i=r.last(e)).i<=n;)e.pop(),t.push(i.vs),n++;return n}t.exports=function(t,e){var n=i.partition(t,(function(t){return r.has(t,"barycenter")})),o=n.lhs,s=r.sortBy(n.rhs,(function(t){return-t.i})),c=[],u=0,l=0,h=0;o.sort((f=!!e,function(t,e){return t.barycentere.barycenter?1:f?e.i-t.i:t.i-e.i})),h=a(c,s,h),r.forEach(o,(function(t){h+=t.vs.length,c.push(t.vs),u+=t.barycenter*t.weight,l+=t.weight,h=a(c,s,h)}));var f;var d={vs:r.flatten(c,!0)};l&&(d.barycenter=u/l,d.weight=l);return d}},function(t,e,n){var r=n(4),i=n(17).Graph;t.exports=function(t,e,n){var a=function(t){var e;for(;t.hasNode(e=r.uniqueId("_root")););return e}(t),o=new i({compound:!0}).setGraph({root:a}).setDefaultNodeLabel((function(e){return t.node(e)}));return r.forEach(t.nodes(),(function(i){var s=t.node(i),c=t.parent(i);(s.rank===e||s.minRank<=e&&e<=s.maxRank)&&(o.setNode(i),o.setParent(i,c||a),r.forEach(t[n](i),(function(e){var n=e.v===i?e.w:e.v,a=o.edge(n,i),s=r.isUndefined(a)?0:a.weight;o.setEdge(n,i,{weight:t.edge(e).weight+s})})),r.has(s,"minRank")&&o.setNode(i,{borderLeft:s.borderLeft[e],borderRight:s.borderRight[e]}))})),o}},function(t,e,n){var r=n(4);t.exports=function(t,e,n){var i,a={};r.forEach(n,(function(n){for(var r,o,s=t.parent(n);s;){if((r=t.parent(s))?(o=a[r],a[r]=s):(o=i,i=s),o&&o!==s)return void e.setEdge(o,s);s=r}}))}},function(t,e,n){"use strict";var r=n(4),i=n(8),a=n(365).positionX;t.exports=function(t){(function(t){var e=i.buildLayerMatrix(t),n=t.graph().ranksep,a=0;r.forEach(e,(function(e){var i=r.max(r.map(e,(function(e){return t.node(e).height})));r.forEach(e,(function(e){t.node(e).y=a+i/2})),a+=i+n}))})(t=i.asNonCompoundGraph(t)),r.forEach(a(t),(function(e,n){t.node(n).x=e}))}},function(t,e,n){"use strict";var r=n(4),i=n(17).Graph,a=n(8);function o(t,e){var n={};return r.reduce(e,(function(e,i){var a=0,o=0,s=e.length,u=r.last(i);return r.forEach(i,(function(e,l){var h=function(t,e){if(t.node(e).dummy)return r.find(t.predecessors(e),(function(e){return t.node(e).dummy}))}(t,e),f=h?t.node(h).order:s;(h||e===u)&&(r.forEach(i.slice(o,l+1),(function(e){r.forEach(t.predecessors(e),(function(r){var i=t.node(r),o=i.order;!(os)&&c(n,e,u)}))}))}return r.reduce(e,(function(e,n){var a,o=-1,s=0;return r.forEach(n,(function(r,c){if("border"===t.node(r).dummy){var u=t.predecessors(r);u.length&&(a=t.node(u[0]).order,i(n,s,c,o,a),s=c,o=a)}i(n,s,n.length,a,e.length)})),n})),n}function c(t,e,n){if(e>n){var r=e;e=n,n=r}var i=t[e];i||(t[e]=i={}),i[n]=!0}function u(t,e,n){if(e>n){var i=e;e=n,n=i}return r.has(t[e],n)}function l(t,e,n,i){var a={},o={},s={};return r.forEach(e,(function(t){r.forEach(t,(function(t,e){a[t]=t,o[t]=t,s[t]=e}))})),r.forEach(e,(function(t){var e=-1;r.forEach(t,(function(t){var c=i(t);if(c.length)for(var l=((c=r.sortBy(c,(function(t){return s[t]}))).length-1)/2,h=Math.floor(l),f=Math.ceil(l);h<=f;++h){var d=c[h];o[t]===t&&e0}t.exports=function(t,e,r,i){var a,o,s,c,u,l,h,f,d,p,g,y,v;if(a=e.y-t.y,s=t.x-e.x,u=e.x*t.y-t.x*e.y,d=a*r.x+s*r.y+u,p=a*i.x+s*i.y+u,0!==d&&0!==p&&n(d,p))return;if(o=i.y-r.y,c=r.x-i.x,l=i.x*r.y-r.x*i.y,h=o*t.x+c*t.y+l,f=o*e.x+c*e.y+l,0!==h&&0!==f&&n(h,f))return;if(0===(g=a*c-o*s))return;return y=Math.abs(g/2),{x:(v=s*l-c*u)<0?(v-y)/g:(v+y)/g,y:(v=o*u-a*l)<0?(v-y)/g:(v+y)/g}}},function(t,e,n){var r=n(43),i=n(31),a=n(153).layout;t.exports=function(){var t=n(371),e=n(374),i=n(375),u=n(376),l=n(377),h=n(378),f=n(379),d=n(380),p=n(381),g=function(n,g){!function(t){t.nodes().forEach((function(e){var n=t.node(e);r.has(n,"label")||t.children(e).length||(n.label=e),r.has(n,"paddingX")&&r.defaults(n,{paddingLeft:n.paddingX,paddingRight:n.paddingX}),r.has(n,"paddingY")&&r.defaults(n,{paddingTop:n.paddingY,paddingBottom:n.paddingY}),r.has(n,"padding")&&r.defaults(n,{paddingLeft:n.padding,paddingRight:n.padding,paddingTop:n.padding,paddingBottom:n.padding}),r.defaults(n,o),r.each(["paddingLeft","paddingRight","paddingTop","paddingBottom"],(function(t){n[t]=Number(n[t])})),r.has(n,"width")&&(n._prevWidth=n.width),r.has(n,"height")&&(n._prevHeight=n.height)})),t.edges().forEach((function(e){var n=t.edge(e);r.has(n,"label")||(n.label=""),r.defaults(n,s)}))}(g);var y=c(n,"output"),v=c(y,"clusters"),m=c(y,"edgePaths"),b=i(c(y,"edgeLabels"),g),x=t(c(y,"nodes"),g,d);a(g),l(x,g),h(b,g),u(m,g,p);var _=e(v,g);f(_,g),function(t){r.each(t.nodes(),(function(e){var n=t.node(e);r.has(n,"_prevWidth")?n.width=n._prevWidth:delete n.width,r.has(n,"_prevHeight")?n.height=n._prevHeight:delete n.height,delete n._prevWidth,delete n._prevHeight}))}(g)};return g.createNodes=function(e){return arguments.length?(t=e,g):t},g.createClusters=function(t){return arguments.length?(e=t,g):e},g.createEdgeLabels=function(t){return arguments.length?(i=t,g):i},g.createEdgePaths=function(t){return arguments.length?(u=t,g):u},g.shapes=function(t){return arguments.length?(d=t,g):d},g.arrows=function(t){return arguments.length?(p=t,g):p},g};var o={paddingLeft:10,paddingRight:10,paddingTop:10,paddingBottom:10,rx:0,ry:0,shape:"rect"},s={arrowhead:"normal",curve:i.curveLinear};function c(t,e){var n=t.select("g."+e);return n.empty()&&(n=t.append("g").attr("class",e)),n}},function(t,e,n){"use strict";var r=n(43),i=n(97),a=n(12),o=n(31);t.exports=function(t,e,n){var s,c=e.nodes().filter((function(t){return!a.isSubgraph(e,t)})),u=t.selectAll("g.node").data(c,(function(t){return t})).classed("update",!0);u.exit().remove(),u.enter().append("g").attr("class","node").style("opacity",0),(u=t.selectAll("g.node")).each((function(t){var s=e.node(t),c=o.select(this);a.applyClass(c,s.class,(c.classed("update")?"update ":"")+"node"),c.select("g.label").remove();var u=c.append("g").attr("class","label"),l=i(u,s),h=n[s.shape],f=r.pick(l.node().getBBox(),"width","height");s.elem=this,s.id&&c.attr("id",s.id),s.labelId&&u.attr("id",s.labelId),r.has(s,"width")&&(f.width=s.width),r.has(s,"height")&&(f.height=s.height),f.width+=s.paddingLeft+s.paddingRight,f.height+=s.paddingTop+s.paddingBottom,u.attr("transform","translate("+(s.paddingLeft-s.paddingRight)/2+","+(s.paddingTop-s.paddingBottom)/2+")");var d=o.select(this);d.select(".label-container").remove();var p=h(d,f,s).classed("label-container",!0);a.applyStyle(p,s.style);var g=p.node().getBBox();s.width=g.width,s.height=g.height})),s=u.exit?u.exit():u.selectAll(null);return a.applyTransition(s,e).style("opacity",0).remove(),u}},function(t,e,n){var r=n(12);t.exports=function(t,e){for(var n=t.append("text"),i=function(t){for(var e,n="",r=!1,i=0;i0&&void 0!==arguments[0]?arguments[0]:"fatal";isNaN(t)&&(t=t.toLowerCase(),void 0!==h[t]&&(t=h[t])),f.trace=function(){},f.debug=function(){},f.info=function(){},f.warn=function(){},f.error=function(){},f.fatal=function(){},t<=h.fatal&&(f.fatal=console.error?console.error.bind(console,p("FATAL"),"color: orange"):console.log.bind(console,"",p("FATAL"))),t<=h.error&&(f.error=console.error?console.error.bind(console,p("ERROR"),"color: orange"):console.log.bind(console,"",p("ERROR"))),t<=h.warn&&(f.warn=console.warn?console.warn.bind(console,p("WARN"),"color: orange"):console.log.bind(console,"",p("WARN"))),t<=h.info&&(f.info=console.info?console.info.bind(console,p("INFO"),"color: lightblue"):console.log.bind(console,"",p("INFO"))),t<=h.debug&&(f.debug=console.debug?console.debug.bind(console,p("DEBUG"),"color: lightgreen"):console.log.bind(console,"",p("DEBUG")))},p=function(t){var e=l()().format("ss.SSS");return"%c".concat(e," : ").concat(t," : ")},g=n(70),y=function(t){for(var e="",n=0;n>=0;){if(!((n=t.indexOf("=0)){e+=t,n=-1;break}e+=t.substr(0,n),(n=(t=t.substr(n+1)).indexOf("<\/script>"))>=0&&(n+=9,t=t.substr(n))}return e},v=//gi,m=function(t){return t.replace(v,"#br#")},b=function(t){return t.replace(/#br#/g,"
    ")},x={getRows:function(t){if(!t)return 1;var e=m(t);return(e=e.replace(/\\n/g,"#br#")).split("#br#")},sanitizeText:function(t,e){var n=t,r=!0;if(!e.flowchart||!1!==e.flowchart.htmlLabels&&"false"!==e.flowchart.htmlLabels||(r=!1),r){var i=e.securityLevel;"antiscript"===i?n=y(n):"loose"!==i&&(n=(n=(n=m(n)).replace(//g,">")).replace(/=/g,"="),n=b(n))}return n},hasBreaks:function(t){return//gi.test(t)},splitBreaks:function(t){return t.split(//gi)},lineBreakRegex:v,removeScript:y};function _(t){return(_="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function k(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e1&&void 0!==arguments[1]?arguments[1]:null;try{var n=new RegExp("[%]{2}(?![{]".concat(T.source,")(?=[}][%]{2}).*\n"),"ig");t=t.trim().replace(n,"").replace(/'/gm,'"'),f.debug("Detecting diagram directive".concat(null!==e?" type:"+e:""," based on the text:").concat(t));for(var r,i=[];null!==(r=E.exec(t));)if(r.index===E.lastIndex&&E.lastIndex++,r&&!e||e&&r[1]&&r[1].match(e)||e&&r[2]&&r[2].match(e)){var a=r[1]?r[1]:r[2],o=r[3]?r[3].trim():r[4]?JSON.parse(r[4].trim()):null;i.push({type:a,args:o})}return 0===i.length&&i.push({type:t,args:null}),1===i.length?i[0]:i}catch(n){return f.error("ERROR: ".concat(n.message," - Unable to parse directive").concat(null!==e?" type:"+e:""," based on the text:").concat(t)),{type:null,args:null}}},S=function(t){return t=t.replace(E,"").replace(C,"\n"),f.debug("Detecting diagram type based on the text "+t),t.match(/^\s*sequenceDiagram/)?"sequence":t.match(/^\s*gantt/)?"gantt":t.match(/^\s*classDiagram-v2/)?"classDiagram":t.match(/^\s*classDiagram/)?"class":t.match(/^\s*stateDiagram-v2/)?"stateDiagram":t.match(/^\s*stateDiagram/)?"state":t.match(/^\s*gitGraph/)?"git":t.match(/^\s*flowchart/)?"flowchart-v2":t.match(/^\s*info/)?"info":t.match(/^\s*pie/)?"pie":t.match(/^\s*erDiagram/)?"er":t.match(/^\s*journey/)?"journey":"flowchart"},M=function(t,e){var n={};return function(){for(var r=arguments.length,i=new Array(r),a=0;a"},n),x.lineBreakRegex.test(t))return t;var r=t.split(" "),i=[],a="";return r.forEach((function(t,o){var s=Y("".concat(t," "),n),c=Y(a,n);if(s>e){var u=R(t,e,"-",n),l=u.hyphenatedStrings,h=u.remainingWord;i.push.apply(i,[a].concat(k(l))),a=h}else c+s>=e?(i.push(a),a=t):a=[a,t].filter(Boolean).join(" ");o+1===r.length&&i.push(a)})),i.filter((function(t){return""!==t})).join(n.joinWith)}),(function(t,e,n){return"".concat(t,"-").concat(e,"-").concat(n.fontSize,"-").concat(n.fontWeight,"-").concat(n.fontFamily,"-").concat(n.joinWith)})),R=M((function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"-",r=arguments.length>3?arguments[3]:void 0;r=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:0},r);var i=t.split(""),a=[],o="";return i.forEach((function(t,s){var c="".concat(o).concat(t);if(Y(c,r)>=e){var u=s+1,l=i.length===u,h="".concat(c).concat(n);a.push(l?c:h),o=""}else o=c})),{hyphenatedStrings:a,remainingWord:o}}),(function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"-",r=arguments.length>3?arguments[3]:void 0;return"".concat(t,"-").concat(e,"-").concat(n,"-").concat(r.fontSize,"-").concat(r.fontWeight,"-").concat(r.fontFamily)})),Y=function(t,e){return e=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial"},e),z(t,e).width},z=M((function(t,e){var n=e=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial"},e),r=n.fontSize,i=n.fontFamily,a=n.fontWeight;if(!t)return{width:0,height:0};var o=["sans-serif",i],c=t.split(x.lineBreakRegex),u=[],l=Object(s.select)("body");if(!l.remove)return{width:0,height:0,lineHeight:0};for(var h=l.append("svg"),f=0,d=o;fu[1].height&&u[0].width>u[1].width&&u[0].lineHeight>u[1].lineHeight?0:1]}),(function(t,e){return"".concat(t,"-").concat(e.fontSize,"-").concat(e.fontWeight,"-").concat(e.fontFamily)})),U={assignWithDepth:P,wrapLabel:j,calculateTextHeight:function(t,e){return e=Object.assign({fontSize:12,fontWeight:400,fontFamily:"Arial",margin:15},e),z(t,e).height},calculateTextWidth:Y,calculateTextDimensions:z,detectInit:function(t){var e=A(t,/(?:init\b)|(?:initialize\b)/),n={};if(Array.isArray(e)){var r=e.map((function(t){return t.args}));n=P(n,k(r))}else n=e.args;if(n){var i=S(t);["config"].forEach((function(t){void 0!==n[t]&&("flowchart-v2"===i&&(i="flowchart"),n[i]=n[t],delete n[t])}))}return n},detectDirective:A,detectType:S,isSubstringInArray:function(t,e){for(var n=0;n=1&&(i={x:t.x,y:t.y}),a>0&&a<1&&(i={x:(1-a)*e.x+a*t.x,y:(1-a)*e.y+a*t.y})}}e=t})),i}(t)},calcCardinalityPosition:function(t,e,n){var r;e[0]!==n&&(e=e.reverse()),e.forEach((function(t){D(t,r),r=t}));var i,a=25;r=void 0,e.forEach((function(t){if(r&&!i){var e=D(t,r);if(e=1&&(i={x:t.x,y:t.y}),n>0&&n<1&&(i={x:(1-n)*r.x+n*t.x,y:(1-n)*r.y+n*t.y})}}r=t}));var o=t?10:5,s=Math.atan2(e[0].y-i.y,e[0].x-i.x),c={x:0,y:0};return c.x=Math.sin(s)*o+(e[0].x+i.x)/2,c.y=-Math.cos(s)*o+(e[0].y+i.y)/2,c},formatUrl:function(t,e){var n=t.trim();if(n)return"loose"!==e.securityLevel?Object(g.sanitizeUrl)(n):n},getStylesFromArray:N,generateId:L,random:F,memoize:M,runFunc:function(t){for(var e,n=t.split("."),r=n.length-1,i=n[r],a=window,o=0;o1?s-1:0),u=1;u/)&&(wt="LR"),wt.match(/.*v/)&&(wt="TB")},setClass:Ft,getTooltip:function(t){return Ot[t]},setClickEvent:function(t,e,n){t.split(",").forEach((function(t){!function(t,e){var n=t;t[0].match(/\d/)&&(n=""+n),"loose"===mt().securityLevel&&void 0!==e&&void 0!==Tt[n]&&Bt.push((function(){var t=document.querySelector('[id="'.concat(n,'"]'));null!==t&&t.addEventListener("click",(function(){U.runFunc(e,n)}),!1)}))}(t,e)})),Pt(t,n),Ft(t,"clickable")},setLink:function(t,e,n,r){t.split(",").forEach((function(t){var n=t;t[0].match(/\d/)&&(n=""+n),void 0!==Tt[n]&&(Tt[n].link=U.formatUrl(e,Et),Tt[n].linkTarget=r)})),Pt(t,n),Ft(t,"clickable")},bindFunctions:function(t){Bt.forEach((function(e){e(t)}))},getDirection:function(){return wt.trim()},getVertices:function(){return Tt},getEdges:function(){return Ct},getClasses:function(){return At},clear:function(){Tt={},At={},Ct=[],(Bt=[]).push(It),St=[],Mt={},Dt=0,Ot=[],Nt=!0},defaultStyle:function(){return"fill:#ffa;stroke: #f66; stroke-width: 3px; stroke-dasharray: 5, 5;fill:#ffa;stroke: #666;"},addSubGraph:function(t,e,n){var r=t.trim(),i=n;t===n&&n.match(/\s/)&&(r=void 0);var a,o,s,c=[];a=c.concat.apply(c,e),o={boolean:{},number:{},string:{}},s=[],c=a.filter((function(t){var e=kt(t);return""!==t.trim()&&(e in o?!o[e].hasOwnProperty(t)&&(o[e][t]=!0):!(s.indexOf(t)>=0)&&s.push(t))}));for(var u=0;u0&&function t(e,n){var r=St[n].nodes;if(!((Rt+=1)>2e3)){if(Yt[Rt]=n,St[n].id===e)return{result:!0,count:0};for(var i=0,a=1;i=0){var s=t(e,o);if(s.result)return{result:!0,count:a+s.count};a+=s.count}i+=1}return{result:!1,count:a}}}("none",St.length-1)},getSubGraphs:function(){return St},destructLink:function(t,e){var n,r=function(t){var e=t.trim(),n=e.slice(0,-1),r="arrow_open";switch(e.slice(-1)){case"x":r="arrow_cross","x"===e[0]&&(r="double_"+r,n=n.slice(1));break;case">":r="arrow_point","<"===e[0]&&(r="double_"+r,n=n.slice(1));break;case"o":r="arrow_circle","o"===e[0]&&(r="double_"+r,n=n.slice(1))}var i="normal",a=n.length-1;"="===n[0]&&(i="thick");var o=function(t,e){for(var n=e.length,r=0,i=0;in.height/2-a)){var o=a*a*(1-r*r/(i*i));0!=o&&(o=Math.sqrt(o)),o=a-o,t.y-n.y>0&&(o=-o),e.y+=o}return e},c}function ae(t,e,n,r){return t.insert("polygon",":first-child").attr("points",r.map((function(t){return t.x+","+t.y})).join(" ")).attr("transform","translate("+-e/2+","+n/2+")")}var oe={addToRender:function(t){t.shapes().question=qt,t.shapes().hexagon=Xt,t.shapes().stadium=ne,t.shapes().subroutine=re,t.shapes().cylinder=ie,t.shapes().rect_left_inv_arrow=Zt,t.shapes().lean_right=Jt,t.shapes().lean_left=Qt,t.shapes().trapezoid=Kt,t.shapes().inv_trapezoid=te,t.shapes().rect_right_inv_arrow=ee},addToRenderV2:function(t){t({question:qt}),t({hexagon:Xt}),t({stadium:ne}),t({subroutine:re}),t({cylinder:ie}),t({rect_left_inv_arrow:Zt}),t({lean_right:Jt}),t({lean_left:Qt}),t({trapezoid:Kt}),t({inv_trapezoid:te}),t({rect_right_inv_arrow:ee})}},se={},ce=function(t,e,n){var r=Object(s.select)('[id="'.concat(n,'"]'));Object.keys(t).forEach((function(n){var i=t[n],a="default";i.classes.length>0&&(a=i.classes.join(" "));var o,s=N(i.styles),c=void 0!==i.text?i.text:i.id;if(mt().flowchart.htmlLabels){var u={label:c.replace(/fa[lrsb]?:fa-[\w-]+/g,(function(t){return"")}))};(o=Gt()(r,u).node()).parentNode.removeChild(o)}else{var l=document.createElementNS("http://www.w3.org/2000/svg","text");l.setAttribute("style",s.labelStyle.replace("color:","fill:"));for(var h=c.split(x.lineBreakRegex),f=0;f').concat(a.text,"")):(l.labelType="text",l.label=a.text.replace(x.lineBreakRegex,"\n"),void 0===a.style&&(l.style=l.style||"stroke: #333; stroke-width: 1.5px;fill:none"),l.labelStyle=l.labelStyle.replace("color:","fill:"))),l.id=o,l.class=c+" "+u,l.minlen=a.length||1,e.setEdge(a.start,a.end,l,i)}))},le=function(t){for(var e=Object.keys(t),n=0;n=0;h--)i=l[h],zt.addVertex(i.id,i.title,"group",void 0,i.classes);var d=zt.getVertices(),p=zt.getEdges(),g=0;for(g=l.length-1;g>=0;g--){i=l[g],Object(s.selectAll)("cluster").append("text");for(var y=0;y"),f.info("vertexText"+i),function(t){var e,n,r=Object(s.select)(document.createElementNS("http://www.w3.org/2000/svg","foreignObject")),i=r.append("xhtml:div"),a=t.label,o=t.isNode?"nodeLabel":"edgeLabel";return i.html(''+a+""),e=i,(n=t.labelStyle)&&e.attr("style",n),i.style("display","inline-block"),i.style("white-space","nowrap"),i.attr("xmlns","http://www.w3.org/1999/xhtml"),r.node()}({isNode:r,label:i.replace(/fa[lrsb]?:fa-[\w-]+/g,(function(t){return"")}))});var a=document.createElementNS("http://www.w3.org/2000/svg","text");a.setAttribute("style",e.replace("color:","fill:"));var o=[];o="string"==typeof i?i.split(/\\n|\n|/gi):Array.isArray(i)?i:[];for(var c=0;c0)t(a,n,r,i);else{var o=n.node(a);f.info("cp ",a," to ",i," with parent ",e),r.setNode(a,o),f.debug("Setting parent",a,n.parent(a)),i!==n.parent(a)&&r.setParent(a,n.parent(a)),e!==i&&a!==e?(f.debug("Setting parent",a,e),r.setParent(a,e)):(f.info("In copy ",e,"root",i,"data",n.node(e),i),f.debug("Not Setting parent for node=",a,"cluster!==rootId",e!==i,"node!==clusterId",a!==e));var s=n.edges(a);f.debug("Copying Edges",s),s.forEach((function(t){f.info("Edge",t);var a=n.edge(t.v,t.w,t.name);f.info("Edge data",a,i);try{!function(t,e){return f.info("Decendants of ",e," is ",ke[e]),f.info("Edge is ",t),t.v!==e&&(t.w!==e&&(ke[e]?(f.info("Here "),ke[e].indexOf(t.v)>=0||(!!Ee(t.v,e)||(!!Ee(t.w,e)||ke[e].indexOf(t.w)>=0))):(f.debug("Tilt, ",e,",not in decendants"),!1)))}(t,i)?f.info("Skipping copy of edge ",t.v,"--\x3e",t.w," rootId: ",i," clusterId:",e):(f.info("Copying as ",t.v,t.w,a,t.name),r.setEdge(t.v,t.w,a,t.name),f.info("newGraph edges ",r.edges(),r.edge(r.edges()[0])))}catch(t){f.error(t)}}))}f.debug("Removing node",a),n.removeNode(a)}))},Ce=function t(e,n){f.trace("Searching",e);var r=n.children(e);if(f.trace("Searching children of id ",e,r),r.length<1)return f.trace("This is a valid node",e),e;for(var i=0;i ",a),a}},Ae=function(t){return _e[t]&&_e[t].externalConnections&&_e[t]?_e[t].id:t},Se=function(t,e){!t||e>10?f.debug("Opting out, no graph "):(f.debug("Opting in, graph "),t.nodes().forEach((function(e){t.children(e).length>0&&(f.warn("Cluster identified",e," Replacement id in edges: ",Ce(e,t)),ke[e]=function t(e,n){for(var r=n.children(e),i=[].concat(r),a=0;a0&&(f.debug("Cluster identified",e,ke),r.forEach((function(t){t.v!==e&&t.w!==e&&(Ee(t.v,e)^Ee(t.w,e)&&(f.debug("Edge: ",t," leaves cluster ",e),f.debug("Decendants of ",e,": ",ke[e]),_e[e].externalConnections=!0))})))})),Me(t,0),t.edges().forEach((function(e){var n=t.edge(e);f.trace("Edge "+e.v+" -> "+e.w+": "+JSON.stringify(e)),f.trace("Edge "+e.v+" -> "+e.w+": "+JSON.stringify(t.edge(e)));var r=e.v,i=e.w;f.trace("Fix",_e,"ids:",e.v,e.w,"Translateing: ",_e[e.v],_e[e.w]),(_e[e.v]||_e[e.w])&&(f.warn("Fixing and trixing - removing",e.v,e.w,e.name),r=Ae(e.v),i=Ae(e.w),t.removeEdge(e.v,e.w,e.name),r!==e.v&&(n.fromCluster=e.v),i!==e.w&&(n.toCluster=e.w),f.warn("Replacing with",r,i,e.name),t.setEdge(r,i,n,e.name))})),f.warn("Adjusted Graph",W.a.json.write(t)),f.trace(_e))},Me=function t(e,n){if(f.debug("extractor - ",n,W.a.json.write(e),e.children("D")),n>10)f.error("Bailing out");else{for(var r=e.nodes(),i=!1,a=0;a0}if(i){f.debug("Nodes = ",r,n);for(var c=0;c0){f.debug("Cluster without external connections, without a parent and with children",u,n);var l=e.graph(),h=new W.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:"TB"===l.rankdir?"LR":"TB",nodesep:50,ranksep:50,marginx:8,marginy:8}).setDefaultEdgeLabel((function(){return{}}));f.debug("Old graph before copy",W.a.json.write(e)),Te(u,e,h,u),e.setNode(u,{clusterNode:!0,id:u,clusterData:_e[u].clusterData,labelText:_e[u].labelText,graph:h}),f.debug("New graph after copy",W.a.json.write(h)),f.debug("Old graph after copy",W.a.json.write(e))}else f.debug("Cluster ** ",u," **not meeting the criteria !externalConnections:",!_e[u].externalConnections," no parent: ",!e.parent(u)," children ",e.children(u)&&e.children(u).length>0,e.children("D"),n),f.debug(_e);else f.debug("Not a cluster",u,n)}r=e.nodes(),f.debug("New list of nodes",r);for(var d=0;d0}var Le=function(t,e,n,r){var i,a,o,s,c,u,l,h,f,d,p,g,y;if(i=e.y-t.y,o=t.x-e.x,c=e.x*t.y-t.x*e.y,f=i*n.x+o*n.y+c,d=i*r.x+o*r.y+c,!(0!==f&&0!==d&&Be(f,d)||(a=r.y-n.y,s=n.x-r.x,u=r.x*n.y-n.x*r.y,l=a*t.x+s*t.y+u,h=a*e.x+s*e.y+u,0!==l&&0!==h&&Be(l,h)||0==(p=i*s-a*o))))return g=Math.abs(p/2),{x:(y=o*u-s*c)<0?(y-g)/p:(y+g)/p,y:(y=a*c-i*u)<0?(y-g)/p:(y+g)/p}},Fe=function(t,e,n){var r=t.x,i=t.y,a=[],o=Number.POSITIVE_INFINITY,s=Number.POSITIVE_INFINITY;"function"==typeof e.forEach?e.forEach((function(t){o=Math.min(o,t.x),s=Math.min(s,t.y)})):(o=Math.min(o,e.x),s=Math.min(s,e.y));for(var c=r-t.width/2-o,u=i-t.height/2-s,l=0;l1&&a.sort((function(t,e){var r=t.x-n.x,i=t.y-n.y,a=Math.sqrt(r*r+i*i),o=e.x-n.x,s=e.y-n.y,c=Math.sqrt(o*o+s*s);return aMath.abs(o)*u?(s<0&&(u=-u),n=0===s?0:u*o/s,r=u):(o<0&&(c=-c),n=c,r=0===o?0:c*s/o),{x:i+n,y:a+r}},Ie={node:n.n(Oe).a,circle:Ne,ellipse:De,polygon:Fe,rect:Pe},je=function(t,e,n){var r=t.insert("g").attr("class","node default").attr("id",e.id),i=70,a=10;"LR"===n&&(i=10,a=70);var o=r.append("rect").style("stroke","black").style("fill","black").attr("x",-1*i/2).attr("y",-1*a/2).attr("width",i).attr("height",a).attr("class","fork-join");return be(e,o),e.height=e.height+e.padding/2,e.width=e.width+e.padding/2,e.intersect=function(t){return Ie.rect(e,t)},r},Re={question:function(t,e){var n=me(t,e,void 0,!0),r=n.shapeSvg,i=n.bbox,a=i.width+e.padding+(i.height+e.padding),o=[{x:a/2,y:0},{x:a,y:-a/2},{x:a/2,y:-a},{x:0,y:-a/2}];f.info("Question main (Circle)");var s=xe(r,a,a,o);return be(e,s),e.intersect=function(t){return f.warn("Intersect called"),Ie.polygon(e,o,t)},r},rect:function(t,e){var n=me(t,e,"node "+e.classes,!0),r=n.shapeSvg,i=n.bbox,a=n.halfPadding;f.trace("Classes = ",e.classes);var o=r.insert("rect",":first-child");return o.attr("class","basic label-container").attr("rx",e.rx).attr("ry",e.ry).attr("x",-i.width/2-a).attr("y",-i.height/2-a).attr("width",i.width+e.padding).attr("height",i.height+e.padding),be(e,o),e.intersect=function(t){return Ie.rect(e,t)},r},rectWithTitle:function(t,e){var n;n=e.classes?"node "+e.classes:"node default";var r=t.insert("g").attr("class",n).attr("id",e.id),i=r.insert("rect",":first-child"),a=r.insert("line"),o=r.insert("g").attr("class","label"),c=e.labelText.flat();f.info("Label text",c[0]);var u,l=o.node().appendChild(ve(c[0],e.labelStyle,!0,!0));if(mt().flowchart.htmlLabels){var h=l.children[0],d=Object(s.select)(l);u=h.getBoundingClientRect(),d.attr("width",u.width),d.attr("height",u.height)}f.info("Text 2",c);var p=c.slice(1,c.length),g=l.getBBox(),y=o.node().appendChild(ve(p.join("
    "),e.labelStyle,!0,!0));if(mt().flowchart.htmlLabels){var v=y.children[0],m=Object(s.select)(y);u=v.getBoundingClientRect(),m.attr("width",u.width),m.attr("height",u.height)}var b=e.padding/2;return Object(s.select)(y).attr("transform","translate( "+(u.width>g.width?0:(g.width-u.width)/2)+", "+(g.height+b+5)+")"),Object(s.select)(l).attr("transform","translate( "+(u.widthe.height/2-s)){var i=s*s*(1-r*r/(o*o));0!=i&&(i=Math.sqrt(i)),i=s-i,t.y-e.y>0&&(i=-i),n.y+=i}return n},r},start:function(t,e){var n=t.insert("g").attr("class","node default").attr("id",e.id),r=n.insert("circle",":first-child");return r.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),be(e,r),e.intersect=function(t){return Ie.circle(e,7,t)},n},end:function(t,e){var n=t.insert("g").attr("class","node default").attr("id",e.id),r=n.insert("circle",":first-child"),i=n.insert("circle",":first-child");return i.attr("class","state-start").attr("r",7).attr("width",14).attr("height",14),r.attr("class","state-end").attr("r",5).attr("width",10).attr("height",10),be(e,i),e.intersect=function(t){return Ie.circle(e,7,t)},n},note:function(t,e){var n=me(t,e,"node "+e.classes,!0),r=n.shapeSvg,i=n.bbox,a=n.halfPadding;f.info("Classes = ",e.classes);var o=r.insert("rect",":first-child");return o.attr("rx",e.rx).attr("ry",e.ry).attr("x",-i.width/2-a).attr("y",-i.height/2-a).attr("width",i.width+e.padding).attr("height",i.height+e.padding),be(e,o),e.intersect=function(t){return Ie.rect(e,t)},r},subroutine:function(t,e){var n=me(t,e,void 0,!0),r=n.shapeSvg,i=n.bbox,a=i.width+e.padding,o=i.height+e.padding,s=xe(r,a,o,[{x:0,y:0},{x:a,y:0},{x:a,y:-o},{x:0,y:-o},{x:0,y:0},{x:-8,y:0},{x:a+8,y:0},{x:a+8,y:-o},{x:-8,y:-o},{x:-8,y:0}]);return be(e,s),e.intersect=function(t){return Ie.polygon(e,t)},r},fork:je,join:je,class_box:function(t,e){var n,r=e.padding/2;n=e.classes?"node "+e.classes:"node default";var i=t.insert("g").attr("class",n).attr("id",e.id),a=i.insert("rect",":first-child"),o=i.insert("line"),c=i.insert("line"),u=0,l=4,h=i.insert("g").attr("class","label"),f=0,d=e.classData.annotations&&e.classData.annotations[0],p=h.node().appendChild(ve(e.classData.annotations[0],e.labelStyle,!0,!0)),g=p.getBBox();e.classData.annotations[0]&&(l+=g.height+4,u+=g.width);var y=h.node().appendChild(ve(e.labelText,e.labelStyle,!0,!0)),v=y.getBBox();l+=v.height+4,v.width>u&&(u=v.width);var m=[];e.classData.members.forEach((function(t){var n=h.node().appendChild(ve(t,e.labelStyle,!0,!0)),r=n.getBBox();r.width>u&&(u=r.width),l+=r.height+4,m.push(n)}));var b=[];e.classData.methods.forEach((function(t){var n=h.node().appendChild(ve(t,e.labelStyle,!0,!0)),r=n.getBBox();r.width>u&&(u=r.width),l+=r.height+4,b.push(n)})),l+=8,d&&(Object(s.select)(p).attr("transform","translate( "+-(u+e.padding-g.width/2)/2+", "+-1*l/2+")"),f=g.height+4);var x,_=(u-v.width)/2;if(Object(s.select)(y).attr("transform","translate( "+(-1*u/2+_)+", "+(-1*l/2+f)+")"),f+=v.height+4,o.attr("class","divider").attr("x1",-u/2-r).attr("x2",u/2+r).attr("y1",-l/2-r+8+f).attr("y2",-l/2-r+8+f),f+=8,m.forEach((function(t){Object(s.select)(t).attr("transform","translate( "+-u/2+", "+(-1*l/2+f+4)+")"),f+=v.height+4})),c.attr("class","divider").attr("x1",-u/2-r).attr("x2",u/2+r).attr("y1",-l/2-r+8+f).attr("y2",-l/2-r+8+f),f+=8,b.forEach((function(t){Object(s.select)(t).attr("transform","translate( "+-u/2+", "+(-1*l/2+f)+")"),f+=v.height+4})),mt().flowchart.htmlLabels){var k=p.children[0],w=Object(s.select)(p);x=k.getBoundingClientRect(),w.attr("width",x.width),w.attr("height",x.height)}return a.attr("class","outer title-state").attr("x",-u/2-r).attr("y",-l/2-r).attr("width",u+e.padding).attr("height",l+e.padding),be(e,a),e.intersect=function(t){return Ie.rect(e,t)},i}},Ye={},ze=function(t){var e=Ye[t.id];f.trace("Transforming node",t,"translate("+(t.x-t.width/2-5)+", "+(t.y-t.height/2-5)+")");t.clusterNode?e.attr("transform","translate("+(t.x-t.width/2-8)+", "+(t.y-t.height/2-8)+")"):e.attr("transform","translate("+t.x+", "+t.y+")")},Ue={rect:function(t,e){f.trace("Creating subgraph rect for ",e.id,e);var n=t.insert("g").attr("class","cluster").attr("id",e.id),r=n.insert("rect",":first-child"),i=n.insert("g").attr("class","cluster-label"),a=i.node().appendChild(ve(e.labelText,e.labelStyle,void 0,!0)),o=a.getBBox();if(mt().flowchart.htmlLabels){var c=a.children[0],u=Object(s.select)(a);o=c.getBoundingClientRect(),u.attr("width",o.width),u.attr("height",o.height)}var l=0*e.padding,h=l/2;f.trace("Data ",e,JSON.stringify(e)),r.attr("rx",e.rx).attr("ry",e.ry).attr("x",e.x-e.width/2-h).attr("y",e.y-e.height/2-h).attr("width",e.width+l).attr("height",e.height+l),i.attr("transform","translate("+(e.x-o.width/2)+", "+(e.y-e.height/2-e.padding/3+3)+")");var d=r.node().getBBox();return e.width=d.width,e.height=d.height,e.intersect=function(t){return Pe(e,t)},n},roundedWithTitle:function(t,e){var n=t.insert("g").attr("class",e.classes).attr("id",e.id),r=n.insert("rect",":first-child"),i=n.insert("g").attr("class","cluster-label"),a=n.append("rect"),o=i.node().appendChild(ve(e.labelText,e.labelStyle,void 0,!0)),c=o.getBBox();if(mt().flowchart.htmlLabels){var u=o.children[0],l=Object(s.select)(o);c=u.getBoundingClientRect(),l.attr("width",c.width),l.attr("height",c.height)}c=o.getBBox();var h=0*e.padding,f=h/2;r.attr("class","outer").attr("x",e.x-e.width/2-f).attr("y",e.y-e.height/2-f).attr("width",e.width+h).attr("height",e.height+h),a.attr("class","inner").attr("x",e.x-e.width/2-f).attr("y",e.y-e.height/2-f+c.height-1).attr("width",e.width+h).attr("height",e.height+h-c.height-3),i.attr("transform","translate("+(e.x-c.width/2)+", "+(e.y-e.height/2-e.padding/3+(mt().flowchart.htmlLabels?5:3))+")");var d=r.node().getBBox();return e.width=d.width,e.height=d.height,e.intersect=function(t){return Pe(e,t)},n},noteGroup:function(t,e){var n=t.insert("g").attr("class","note-cluster").attr("id",e.id),r=n.insert("rect",":first-child"),i=0*e.padding,a=i/2;r.attr("rx",e.rx).attr("ry",e.ry).attr("x",e.x-e.width/2-a).attr("y",e.y-e.height/2-a).attr("width",e.width+i).attr("height",e.height+i).attr("fill","none");var o=r.node().getBBox();return e.width=o.width,e.height=o.height,e.intersect=function(t){return Pe(e,t)},n},divider:function(t,e){var n=t.insert("g").attr("class",e.classes).attr("id",e.id),r=n.insert("rect",":first-child"),i=0*e.padding,a=i/2;r.attr("class","divider").attr("x",e.x-e.width/2-a).attr("y",e.y-e.height/2).attr("width",e.width+i).attr("height",e.height+i);var o=r.node().getBBox();return e.width=o.width,e.height=o.height,e.intersect=function(t){return Pe(e,t)},n}},$e={},We={},Ve=function(t,e){var n=t.x,r=t.y,i=Math.abs(e.x-n),a=Math.abs(e.y-r),o=t.width/2,s=t.height/2;return i>=o||a>=s},He=function(t,e,n){f.warn("intersection calc o:",e," i:",n,t);var r=t.x,i=t.y,a=Math.abs(r-n.x),o=t.width/2,s=n.xMath.abs(r-e.x)*c){var y=n.y0&&f.info("Recursive edges",n.edge(n.edges()[0]));var c=o.insert("g").attr("class","clusters"),u=o.insert("g").attr("class","edgePaths"),l=o.insert("g").attr("class","edgeLabels"),h=o.insert("g").attr("class","nodes");return n.nodes().forEach((function(e){var o=n.node(e);if(void 0!==i){var s=JSON.parse(JSON.stringify(i.clusterData));f.info("Setting data for cluster",s),n.setNode(i.id,s),n.setParent(e,i.id,s)}if(f.info("(Insert) Node "+e+": "+JSON.stringify(n.node(e))),o&&o.clusterNode){f.info("Cluster identified",e,o,n.node(e));var c=t(h,o.graph,r,n.node(e));be(o,c),function(t,e){Ye[e.id]=t}(c,o),f.warn("Recursive render complete",c,o)}else n.children(e).length>0?(f.info("Cluster - the non recursive path",e,o.id,o,n),f.info(Ce(o.id,n)),_e[o.id]={id:Ce(o.id,n),node:o}):(f.info("Node - the non recursive path",e,o.id,o),function(t,e,n){Ye[e.id]=Re[e.shape](t,e,n)}(h,n.node(e),a))})),n.edges().forEach((function(t){var e=n.edge(t.v,t.w,t.name);f.info("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(t)),f.info("Edge "+t.v+" -> "+t.w+": ",t," ",JSON.stringify(n.edge(t))),f.info("Fix",_e,"ids:",t.v,t.w,"Translateing: ",_e[t.v],_e[t.w]),function(t,e){var n=ve(e.label,e.labelStyle),r=t.insert("g").attr("class","edgeLabel"),i=r.insert("g").attr("class","label");i.node().appendChild(n);var a=n.getBBox();if(mt().flowchart.htmlLabels){var o=n.children[0],c=Object(s.select)(n);a=o.getBoundingClientRect(),c.attr("width",a.width),c.attr("height",a.height)}i.attr("transform","translate("+-a.width/2+", "+-a.height/2+")"),We[e.id]=r,e.width=a.width,e.height=a.height}(l,e)})),n.edges().forEach((function(t){f.info("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(t))})),f.info("#############################################"),f.info("### Layout ###"),f.info("#############################################"),f.info(n),pe.a.layout(n),f.info("Graph after layout:",W.a.json.write(n)),n.nodes().forEach((function(t){var e=n.node(t);f.info("Position "+t+": "+JSON.stringify(n.node(t))),f.info("Position "+t+": ("+e.x,","+e.y,") width: ",e.width," height: ",e.height),e&&e.clusterNode?ze(e):n.children(t).length>0?(!function(t,e){f.trace("Inserting cluster");var n=e.shape||"rect";$e[e.id]=Ue[n](t,e)}(c,e),_e[e.id].node=e):ze(e)})),n.edges().forEach((function(t){var e=n.edge(t);f.info("Edge "+t.v+" -> "+t.w+": "+JSON.stringify(e),e);var i=function(t,e,n,r,i,a){var o=n.points,c=!1,u=a.node(e.v),l=a.node(e.w);if(l.intersect&&u.intersect&&((o=o.slice(1,n.points.length-1)).unshift(u.intersect(o[0])),f.info("Last point",o[o.length-1],l,l.intersect(o[o.length-1])),o.push(l.intersect(o[o.length-1]))),n.toCluster){var h;f.trace("edge",n),f.trace("to cluster",r[n.toCluster]),o=[];var d=!1;n.points.forEach((function(t){var e=r[n.toCluster].node;if(Ve(e,t)||d)d||o.push(t);else{f.trace("inside",n.toCluster,t,h);var i=He(e,h,t),a=!1;o.forEach((function(t){a=a||t.x===i.x&&t.y===i.y})),o.find((function(t){return t.x===i.x&&t.y===i.y}))?f.warn("no intersect",i,o):o.push(i),d=!0}h=t})),c=!0}if(n.fromCluster){f.trace("edge",n),f.warn("from cluster",r[n.fromCluster]);for(var p,g=[],y=!1,v=o.length-1;v>=0;v--){var m=o[v],b=r[n.fromCluster].node;if(Ve(b,m)||y)f.trace("Outside point",m),y||g.unshift(m);else{f.warn("inside",n.fromCluster,m,b);var x=He(b,p,m);g.unshift(x),y=!0}p=m}o=g,c=!0}var _,k=o.filter((function(t){return!Number.isNaN(t.y)})),w=Object(s.line)().x((function(t){return t.x})).y((function(t){return t.y})).curve(s.curveBasis);switch(n.thickness){case"normal":_="edge-thickness-normal";break;case"thick":_="edge-thickness-thick";break;default:_=""}switch(n.pattern){case"solid":_+=" edge-pattern-solid";break;case"dotted":_+=" edge-pattern-dotted";break;case"dashed":_+=" edge-pattern-dashed"}var E=t.append("path").attr("d",w(k)).attr("id",n.id).attr("class"," "+_+(n.classes?" "+n.classes:"")),T="";switch(mt().state.arrowMarkerAbsolute&&(T=(T=(T=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),f.info("arrowTypeStart",n.arrowTypeStart),f.info("arrowTypeEnd",n.arrowTypeEnd),n.arrowTypeStart){case"arrow_cross":E.attr("marker-start","url("+T+"#"+i+"-crossStart)");break;case"arrow_point":E.attr("marker-start","url("+T+"#"+i+"-pointStart)");break;case"arrow_barb":E.attr("marker-start","url("+T+"#"+i+"-barbStart)");break;case"arrow_circle":E.attr("marker-start","url("+T+"#"+i+"-circleStart)");break;case"aggregation":E.attr("marker-start","url("+T+"#"+i+"-aggregationStart)");break;case"extension":E.attr("marker-start","url("+T+"#"+i+"-extensionStart)");break;case"composition":E.attr("marker-start","url("+T+"#"+i+"-compositionStart)");break;case"dependency":E.attr("marker-start","url("+T+"#"+i+"-dependencyStart)")}switch(n.arrowTypeEnd){case"arrow_cross":E.attr("marker-end","url("+T+"#"+i+"-crossEnd)");break;case"arrow_point":E.attr("marker-end","url("+T+"#"+i+"-pointEnd)");break;case"arrow_barb":E.attr("marker-end","url("+T+"#"+i+"-barbEnd)");break;case"arrow_circle":E.attr("marker-end","url("+T+"#"+i+"-circleEnd)");break;case"aggregation":E.attr("marker-end","url("+T+"#"+i+"-aggregationEnd)");break;case"extension":E.attr("marker-end","url("+T+"#"+i+"-extensionEnd)");break;case"composition":E.attr("marker-end","url("+T+"#"+i+"-compositionEnd)");break;case"dependency":E.attr("marker-end","url("+T+"#"+i+"-dependencyEnd)")}if(c)return o}(u,t,e,_e,r,n);!function(t,e){if(f.info("Moving label",t.id,t.label,We[t.id]),t.label){var n=We[t.id],r=t.x,i=t.y;if(e){var a=U.calcLabelPosition(e);r=a.x,i=a.y}n.attr("transform","translate("+r+", "+i+")")}}(e,i)})),o},qe=function(t,e,n,r,i){ye(t,n,r,i),Ye={},We={},$e={},ke={},we={},_e={},f.warn("Graph before:",W.a.json.write(e)),Se(e),f.warn("Graph after:",W.a.json.write(e)),f.warn("Graph ever after:",e.graph()),Ge(t,e,r)},Xe={},Ze=function(t,e,n){var r=Object(s.select)('[id="'.concat(n,'"]'));Object.keys(t).forEach((function(n){var i=t[n],a="default";i.classes.length>0&&(a=i.classes.join(" "));var o,s=N(i.styles),c=void 0!==i.text?i.text:i.id;if(mt().flowchart.htmlLabels){var u={label:c.replace(/fa[lrsb]?:fa-[\w-]+/g,(function(t){return"")}))};(o=Gt()(r,u).node()).parentNode.removeChild(o)}else{var l=document.createElementNS("http://www.w3.org/2000/svg","text");l.setAttribute("style",s.labelStyle.replace("color:","fill:"));for(var h=c.split(x.lineBreakRegex),d=0;d=0;h--)i=l[h],f.info("Subgraph - ",i),zt.addVertex(i.id,i.title,"group",void 0,i.classes);var d=zt.getVertices(),p=zt.getEdges();f.info(p);var g=0;for(g=l.length-1;g>=0;g--){i=l[g],Object(s.selectAll)("cluster").append("text");for(var y=0;y0)switch(e.valign){case"top":case"start":s=function(){return Math.round(e.y+e.textMargin)};break;case"middle":case"center":s=function(){return Math.round(e.y+(n+r+e.textMargin)/2)};break;case"bottom":case"end":s=function(){return Math.round(e.y+(n+r+2*e.textMargin)-e.textMargin)}}if(void 0!==e.anchor&&void 0!==e.textMargin&&void 0!==e.width)switch(e.anchor){case"left":case"start":e.x=Math.round(e.x+e.textMargin),e.anchor="start",e.dominantBaseline="text-after-edge",e.alignmentBaseline="middle";break;case"middle":case"center":e.x=Math.round(e.x+e.width/2),e.anchor="middle",e.dominantBaseline="middle",e.alignmentBaseline="middle";break;case"right":case"end":e.x=Math.round(e.x+e.width-e.textMargin),e.anchor="end",e.dominantBaseline="text-before-edge",e.alignmentBaseline="middle"}for(var c=0;c0&&(r+=(l._groups||l)[0][0].getBBox().height,n=r),a.push(l)}return a},nn=function(t,e){var n,r,i,a,o,s=t.append("polygon");return s.attr("points",(n=e.x,r=e.y,i=e.width,a=e.height,n+","+r+" "+(n+i)+","+r+" "+(n+i)+","+(r+a-(o=7))+" "+(n+i-1.2*o)+","+(r+a)+" "+n+","+(r+a))),s.attr("class","labelBox"),e.y=e.y+e.height/2,en(t,e),s},rn=-1,an=function(){return{x:0,y:0,fill:void 0,anchor:void 0,style:"#666",width:void 0,height:void 0,textMargin:0,rx:0,ry:0,tspan:!0,valign:void 0}},on=function(){return{x:0,y:0,fill:"#EDF2AE",stroke:"#666",width:100,anchor:"start",height:100,rx:0,ry:0}},sn=function(){function t(t,e,n,i,a,o,s){r(e.append("text").attr("x",n+a/2).attr("y",i+o/2+5).style("text-anchor","middle").text(t),s)}function e(t,e,n,i,a,o,s,c){for(var u=c.actorFontSize,l=c.actorFontFamily,h=c.actorFontWeight,f=t.split(x.lineBreakRegex),d=0;d2&&void 0!==arguments[2]?arguments[2]:{text:void 0,wrap:void 0},r=arguments.length>3?arguments[3]:void 0;if(r===wn.ACTIVE_END){var i=xn(t.actor);if(i<1){var a=new Error("Trying to inactivate an inactive participant ("+t.actor+")");throw a.hash={text:"->>-",token:"->>-",line:"1",loc:{first_line:1,last_line:1,first_column:1,last_column:1},expected:["'ACTIVE_PARTICIPANT'"]},a}}return dn.push({from:t,to:e,message:n.text,wrap:void 0===n.wrap&&kn()||!!n.wrap,type:r}),!0},kn=function(){return mn},wn={SOLID:0,DOTTED:1,NOTE:2,SOLID_CROSS:3,DOTTED_CROSS:4,SOLID_OPEN:5,DOTTED_OPEN:6,LOOP_START:10,LOOP_END:11,ALT_START:12,ALT_ELSE:13,ALT_END:14,OPT_START:15,OPT_END:16,ACTIVE_START:17,ACTIVE_END:18,PAR_START:19,PAR_AND:20,PAR_END:21,RECT_START:22,RECT_END:23},En=function(t,e,n){var r={actor:t,placement:e,message:n.text,wrap:void 0===n.wrap&&kn()||!!n.wrap},i=[].concat(t,t);pn.push(r),dn.push({from:i[0],to:i[1],message:n.text,wrap:void 0===n.wrap&&kn()||!!n.wrap,type:wn.NOTE,placement:e})},Tn=function(t){gn=t.text,yn=void 0===t.wrap&&kn()||!!t.wrap},Cn={addActor:bn,addMessage:function(t,e,n,r){dn.push({from:t,to:e,message:n.text,wrap:void 0===n.wrap&&kn()||!!n.wrap,answer:r})},addSignal:_n,autoWrap:kn,setWrap:function(t){mn=t},enableSequenceNumbers:function(){vn=!0},showSequenceNumbers:function(){return vn},getMessages:function(){return dn},getActors:function(){return fn},getActor:function(t){return fn[t]},getActorKeys:function(){return Object.keys(fn)},getTitle:function(){return gn},parseDirective:function(t,e,n){Lo.parseDirective(this,t,e,n)},getConfig:function(){return mt().sequence},getTitleWrapped:function(){return yn},clear:function(){fn={},dn=[]},parseMessage:function(t){var e=t.trim(),n={text:e.replace(/^[:]?(?:no)?wrap:/,"").trim(),wrap:null===e.match(/^[:]?(?:no)?wrap:/)?x.hasBreaks(e)||void 0:null!==e.match(/^[:]?wrap:/)||null===e.match(/^[:]?nowrap:/)&&void 0};return f.debug("parseMessage:",n),n},LINETYPE:wn,ARROWTYPE:{FILLED:0,OPEN:1},PLACEMENT:{LEFTOF:0,RIGHTOF:1,OVER:2},addNote:En,setTitle:Tn,apply:function t(e){if(e instanceof Array)e.forEach((function(e){t(e)}));else switch(e.type){case"addActor":bn(e.actor,e.actor,e.description);break;case"activeStart":case"activeEnd":_n(e.actor,void 0,void 0,e.signalType);break;case"addNote":En(e.actor,e.placement,e.text);break;case"addMessage":_n(e.from,e.to,e.msg,e.signalType);break;case"loopStart":_n(void 0,void 0,e.loopText,e.signalType);break;case"loopEnd":_n(void 0,void 0,void 0,e.signalType);break;case"rectStart":_n(void 0,void 0,e.color,e.signalType);break;case"rectEnd":_n(void 0,void 0,void 0,e.signalType);break;case"optStart":_n(void 0,void 0,e.optText,e.signalType);break;case"optEnd":_n(void 0,void 0,void 0,e.signalType);break;case"altStart":case"else":_n(void 0,void 0,e.altText,e.signalType);break;case"altEnd":_n(void 0,void 0,void 0,e.signalType);break;case"setTitle":Tn(e.text);break;case"parStart":case"and":_n(void 0,void 0,e.parText,e.signalType);break;case"parEnd":_n(void 0,void 0,void 0,e.signalType)}}};un.parser.yy=Cn;var An={},Sn={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],activations:[],models:{getHeight:function(){return Math.max.apply(null,0===this.actors.length?[0]:this.actors.map((function(t){return t.height||0})))+(0===this.loops.length?0:this.loops.map((function(t){return t.height||0})).reduce((function(t,e){return t+e})))+(0===this.messages.length?0:this.messages.map((function(t){return t.height||0})).reduce((function(t,e){return t+e})))+(0===this.notes.length?0:this.notes.map((function(t){return t.height||0})).reduce((function(t,e){return t+e})))},clear:function(){this.actors=[],this.loops=[],this.messages=[],this.notes=[]},addActor:function(t){this.actors.push(t)},addLoop:function(t){this.loops.push(t)},addMessage:function(t){this.messages.push(t)},addNote:function(t){this.notes.push(t)},lastActor:function(){return this.actors[this.actors.length-1]},lastLoop:function(){return this.loops[this.loops.length-1]},lastMessage:function(){return this.messages[this.messages.length-1]},lastNote:function(){return this.notes[this.notes.length-1]},actors:[],loops:[],messages:[],notes:[]},init:function(){this.sequenceItems=[],this.activations=[],this.models.clear(),this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0,Bn(un.parser.yy.getConfig())},updateVal:function(t,e,n,r){void 0===t[e]?t[e]=n:t[e]=r(n,t[e])},updateBounds:function(t,e,n,r){var i=this,a=0;function o(o){return function(s){a++;var c=i.sequenceItems.length-a+1;i.updateVal(s,"starty",e-c*An.boxMargin,Math.min),i.updateVal(s,"stopy",r+c*An.boxMargin,Math.max),i.updateVal(Sn.data,"startx",t-c*An.boxMargin,Math.min),i.updateVal(Sn.data,"stopx",n+c*An.boxMargin,Math.max),"activation"!==o&&(i.updateVal(s,"startx",t-c*An.boxMargin,Math.min),i.updateVal(s,"stopx",n+c*An.boxMargin,Math.max),i.updateVal(Sn.data,"starty",e-c*An.boxMargin,Math.min),i.updateVal(Sn.data,"stopy",r+c*An.boxMargin,Math.max))}}this.sequenceItems.forEach(o()),this.activations.forEach(o("activation"))},insert:function(t,e,n,r){var i=Math.min(t,n),a=Math.max(t,n),o=Math.min(e,r),s=Math.max(e,r);this.updateVal(Sn.data,"startx",i,Math.min),this.updateVal(Sn.data,"starty",o,Math.min),this.updateVal(Sn.data,"stopx",a,Math.max),this.updateVal(Sn.data,"stopy",s,Math.max),this.updateBounds(i,o,a,s)},newActivation:function(t,e,n){var r=n[t.from.actor],i=Ln(t.from.actor).length||0,a=r.x+r.width/2+(i-1)*An.activationWidth/2;this.activations.push({startx:a,starty:this.verticalPos+2,stopx:a+An.activationWidth,stopy:void 0,actor:t.from.actor,anchored:cn.anchorElement(e)})},endActivation:function(t){var e=this.activations.map((function(t){return t.actor})).lastIndexOf(t.from.actor);return this.activations.splice(e,1)[0]},createLoop:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{message:void 0,wrap:!1,width:void 0},e=arguments.length>1?arguments[1]:void 0;return{startx:void 0,starty:this.verticalPos,stopx:void 0,stopy:void 0,title:t.message,wrap:t.wrap,width:t.width,height:0,fill:e}},newLoop:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{message:void 0,wrap:!1,width:void 0},e=arguments.length>1?arguments[1]:void 0;this.sequenceItems.push(this.createLoop(t,e))},endLoop:function(){return this.sequenceItems.pop()},addSectionToLoop:function(t){var e=this.sequenceItems.pop();e.sections=e.sections||[],e.sectionTitles=e.sectionTitles||[],e.sections.push({y:Sn.getVerticalPos(),height:0}),e.sectionTitles.push(t),this.sequenceItems.push(e)},bumpVerticalPos:function(t){this.verticalPos=this.verticalPos+t,this.data.stopy=this.verticalPos},getVerticalPos:function(){return this.verticalPos},getBounds:function(){return console.log("here",this.data),{bounds:this.data,models:this.models}}},Mn=function(t){return{fontFamily:t.messageFontFamily,fontSize:t.messageFontSize,fontWeight:t.messageFontWeight}},On=function(t){return{fontFamily:t.noteFontFamily,fontSize:t.noteFontSize,fontWeight:t.noteFontWeight}},Dn=function(t){return{fontFamily:t.actorFontFamily,fontSize:t.actorFontSize,fontWeight:t.actorFontWeight}},Nn=function(t,e,n,r){for(var i=0,a=0,o=0;o0&&o.forEach((function(r){if(n=r,i.startx===i.stopx){var a=e[t.from],o=e[t.to];n.from=Math.min(a.x-i.width/2,a.x-a.width/2,n.from),n.to=Math.max(o.x+i.width/2,o.x+a.width/2,n.to),n.width=Math.max(n.width,Math.abs(n.to-n.from))-An.labelBoxWidth}else n.from=Math.min(i.startx,n.from),n.to=Math.max(i.stopx,n.to),n.width=Math.max(n.width,i.width)-An.labelBoxWidth})))})),Sn.activations=[],f.debug("Loop type widths:",a),a},Yn={bounds:Sn,drawActors:Nn,setConf:Bn,draw:function(t,e){An=mt().sequence,console.log("there ",An),un.parser.yy.clear(),un.parser.yy.setWrap(An.wrap),un.parser.parse(t+"\n"),Sn.init(),f.debug("C:".concat(JSON.stringify(An,null,2)));var n=Object(s.select)('[id="'.concat(e,'"]')),r=un.parser.yy.getActors(),i=un.parser.yy.getActorKeys(),a=un.parser.yy.getMessages(),o=un.parser.yy.getTitle(),c=In(r,a);An.height=jn(r,c),Nn(n,r,i,0);var u=Rn(a,r,c);cn.insertArrowHead(n),cn.insertArrowCrossHead(n),cn.insertSequenceNumber(n);var l=1;a.forEach((function(t){var e,i,a;switch(t.type){case un.parser.yy.LINETYPE.NOTE:i=t.noteModel,function(t,e){Sn.bumpVerticalPos(An.boxMargin),e.height=An.boxMargin,e.starty=Sn.getVerticalPos();var n=cn.getNoteRect();n.x=e.startx,n.y=e.starty,n.width=e.width||An.width,n.class="note";var r=t.append("g"),i=cn.drawRect(r,n),a=cn.getTextObj();a.x=e.startx,a.y=e.starty,a.width=n.width,a.dy="1em",a.text=e.message,a.class="noteText",a.fontFamily=An.noteFontFamily,a.fontSize=An.noteFontSize,a.fontWeight=An.noteFontWeight,a.anchor=An.noteAlign,a.textMargin=An.noteMargin,a.valign=An.noteAlign,a.wrap=!0;var o=en(r,a),s=Math.round(o.map((function(t){return(t._groups||t)[0][0].getBBox().height})).reduce((function(t,e){return t+e})));i.attr("height",s+2*An.noteMargin),e.height+=s+2*An.noteMargin,Sn.bumpVerticalPos(s+2*An.noteMargin),e.stopy=e.starty+s+2*An.noteMargin,e.stopx=e.startx+n.width,Sn.insert(e.startx,e.starty,e.stopx,e.stopy),Sn.models.addNote(e)}(n,i);break;case un.parser.yy.LINETYPE.ACTIVE_START:Sn.newActivation(t,n,r);break;case un.parser.yy.LINETYPE.ACTIVE_END:!function(t,e){var r=Sn.endActivation(t);r.starty+18>e&&(r.starty=e-6,e+=12),cn.drawActivation(n,r,e,An,Ln(t.from.actor).length),Sn.insert(r.startx,e-10,r.stopx,e)}(t,Sn.getVerticalPos());break;case un.parser.yy.LINETYPE.LOOP_START:Pn(u,t,An.boxMargin,An.boxMargin+An.boxTextMargin,(function(t){return Sn.newLoop(t)}));break;case un.parser.yy.LINETYPE.LOOP_END:e=Sn.endLoop(),cn.drawLoop(n,e,"loop",An),Sn.bumpVerticalPos(e.stopy-Sn.getVerticalPos()),Sn.models.addLoop(e);break;case un.parser.yy.LINETYPE.RECT_START:Pn(u,t,An.boxMargin,An.boxMargin,(function(t){return Sn.newLoop(void 0,t.message)}));break;case un.parser.yy.LINETYPE.RECT_END:e=Sn.endLoop(),cn.drawBackgroundRect(n,e),Sn.models.addLoop(e),Sn.bumpVerticalPos(e.stopy-Sn.getVerticalPos());break;case un.parser.yy.LINETYPE.OPT_START:Pn(u,t,An.boxMargin,An.boxMargin+An.boxTextMargin,(function(t){return Sn.newLoop(t)}));break;case un.parser.yy.LINETYPE.OPT_END:e=Sn.endLoop(),cn.drawLoop(n,e,"opt",An),Sn.bumpVerticalPos(e.stopy-Sn.getVerticalPos()),Sn.models.addLoop(e);break;case un.parser.yy.LINETYPE.ALT_START:Pn(u,t,An.boxMargin,An.boxMargin+An.boxTextMargin,(function(t){return Sn.newLoop(t)}));break;case un.parser.yy.LINETYPE.ALT_ELSE:Pn(u,t,An.boxMargin+An.boxTextMargin,An.boxMargin,(function(t){return Sn.addSectionToLoop(t)}));break;case un.parser.yy.LINETYPE.ALT_END:e=Sn.endLoop(),cn.drawLoop(n,e,"alt",An),Sn.bumpVerticalPos(e.stopy-Sn.getVerticalPos()),Sn.models.addLoop(e);break;case un.parser.yy.LINETYPE.PAR_START:Pn(u,t,An.boxMargin,An.boxMargin+An.boxTextMargin,(function(t){return Sn.newLoop(t)}));break;case un.parser.yy.LINETYPE.PAR_AND:Pn(u,t,An.boxMargin+An.boxTextMargin,An.boxMargin,(function(t){return Sn.addSectionToLoop(t)}));break;case un.parser.yy.LINETYPE.PAR_END:e=Sn.endLoop(),cn.drawLoop(n,e,"par",An),Sn.bumpVerticalPos(e.stopy-Sn.getVerticalPos()),Sn.models.addLoop(e);break;default:try{(a=t.msgModel).starty=Sn.getVerticalPos(),a.sequenceIndex=l,function(t,e){Sn.bumpVerticalPos(10);var n=e.startx,r=e.stopx,i=e.starty,a=e.message,o=e.type,s=e.sequenceIndex,c=e.wrap,u=x.splitBreaks(a).length,l=U.calculateTextDimensions(a,Mn(An)),h=l.height/u;e.height+=h,Sn.bumpVerticalPos(h);var f=cn.getTextObj();f.x=n,f.y=i+10,f.width=r-n,f.class="messageText",f.dy="1em",f.text=a,f.fontFamily=An.messageFontFamily,f.fontSize=An.messageFontSize,f.fontWeight=An.messageFontWeight,f.anchor=An.messageAlign,f.valign=An.messageAlign,f.textMargin=An.wrapPadding,f.tspan=!1,f.wrap=c,en(t,f);var d,p,g=l.height-10,y=l.width;if(n===r){p=Sn.getVerticalPos()+g,An.rightAngles?d=t.append("path").attr("d","M ".concat(n,",").concat(p," H ").concat(n+Math.max(An.width/2,y/2)," V ").concat(p+25," H ").concat(n)):(g+=An.boxMargin,p=Sn.getVerticalPos()+g,d=t.append("path").attr("d","M "+n+","+p+" C "+(n+60)+","+(p-10)+" "+(n+60)+","+(p+30)+" "+n+","+(p+20))),g+=30;var v=Math.max(y/2,An.width/2);Sn.insert(n-v,Sn.getVerticalPos()-10+g,r+v,Sn.getVerticalPos()+30+g)}else g+=An.boxMargin,p=Sn.getVerticalPos()+g,(d=t.append("line")).attr("x1",n),d.attr("y1",p),d.attr("x2",r),d.attr("y2",p),Sn.insert(n,p-10,r,p);o===un.parser.yy.LINETYPE.DOTTED||o===un.parser.yy.LINETYPE.DOTTED_CROSS||o===un.parser.yy.LINETYPE.DOTTED_OPEN?(d.style("stroke-dasharray","3, 3"),d.attr("class","messageLine1")):d.attr("class","messageLine0");var m="";An.arrowMarkerAbsolute&&(m=(m=(m=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),d.attr("stroke-width",2),d.attr("stroke","none"),d.style("fill","none"),o!==un.parser.yy.LINETYPE.SOLID&&o!==un.parser.yy.LINETYPE.DOTTED||d.attr("marker-end","url("+m+"#arrowhead)"),o!==un.parser.yy.LINETYPE.SOLID_CROSS&&o!==un.parser.yy.LINETYPE.DOTTED_CROSS||d.attr("marker-end","url("+m+"#crosshead)"),(Cn.showSequenceNumbers()||An.showSequenceNumbers)&&(d.attr("marker-start","url("+m+"#sequencenumber)"),t.append("text").attr("x",n).attr("y",p+4).attr("font-family","sans-serif").attr("font-size","12px").attr("text-anchor","middle").attr("textLength","16px").attr("class","sequenceNumber").text(s)),Sn.bumpVerticalPos(g),e.height+=g,e.stopy=e.starty+e.height,Sn.insert(e.fromBounds,e.starty,e.toBounds,e.stopy)}(n,a),Sn.models.addMessage(a)}catch(t){f.error("error while drawing message",t)}}[un.parser.yy.LINETYPE.SOLID_OPEN,un.parser.yy.LINETYPE.DOTTED_OPEN,un.parser.yy.LINETYPE.SOLID,un.parser.yy.LINETYPE.DOTTED,un.parser.yy.LINETYPE.SOLID_CROSS,un.parser.yy.LINETYPE.DOTTED_CROSS].includes(t.type)&&l++})),An.mirrorActors&&(Sn.bumpVerticalPos(2*An.boxMargin),Nn(n,r,i,Sn.getVerticalPos()));var h=Sn.getBounds().bounds;f.debug("For line height fix Querying: #"+e+" .actor-line"),Object(s.selectAll)("#"+e+" .actor-line").attr("y2",h.stopy);var d=h.stopy-h.starty+2*An.diagramMarginY;An.mirrorActors&&(d=d-An.boxMargin+An.bottomMarginAdj);var p=h.stopx-h.startx+2*An.diagramMarginX;o&&n.append("text").text(o).attr("x",(h.stopx-h.startx)/2-2*An.diagramMarginX).attr("y",-25),An.useMaxWidth?(n.attr("height","100%"),n.attr("width","100%"),n.attr("style","max-width:"+p+"px;")):(n.attr("height",d),n.attr("width",p));var g=o?40:0;n.attr("viewBox",h.startx-An.diagramMarginX+" -"+(An.diagramMarginY+g)+" "+p+" "+(d+g)),f.debug("models:",Sn.models)}},zn=n(27),Un=n.n(zn);function $n(t){return function(t){if(Array.isArray(t)){for(var e=0,n=new Array(t.length);e=6&&n.indexOf("weekends")>=0||(n.indexOf(t.format("dddd").toLowerCase())>=0||n.indexOf(t.format(e.trim()))>=0)},ar=function(t,e,n){if(n.length&&!t.manualEndTime){var r=l()(t.startTime,e,!0);r.add(1,"d");var i=l()(t.endTime,e,!0),a=or(r,i,e,n);t.endTime=i.toDate(),t.renderEndTime=a}},or=function(t,e,n,r){for(var i=!1,a=null;t<=e;)i||(a=e.toDate()),(i=ir(t,n,r))&&e.add(1,"d"),t.add(1,"d");return a},sr=function(t,e,n){n=n.trim();var r=/^after\s+([\d\w- ]+)/.exec(n.trim());if(null!==r){var i=null;if(r[1].split(" ").forEach((function(t){var e=pr(t);void 0!==e&&(i?e.endTime>i.endTime&&(i=e):i=e)})),i)return i.endTime;var a=new Date;return a.setHours(0,0,0,0),a}var o=l()(n,e.trim(),!0);return o.isValid()?o.toDate():(f.debug("Invalid date:"+n),f.debug("With date format:"+e.trim()),new Date)},cr=function(t,e){if(null!==t)switch(t[2]){case"s":e.add(t[1],"seconds");break;case"m":e.add(t[1],"minutes");break;case"h":e.add(t[1],"hours");break;case"d":e.add(t[1],"days");break;case"w":e.add(t[1],"weeks")}return e.toDate()},ur=function(t,e,n,r){r=r||!1,n=n.trim();var i=l()(n,e.trim(),!0);return i.isValid()?(r&&i.add(1,"d"),i.toDate()):cr(/^([\d]+)([wdhms])/.exec(n.trim()),l()(t))},lr=0,hr=function(t){return void 0===t?"task"+(lr+=1):t},fr=[],dr={},pr=function(t){var e=dr[t];return fr[e]},gr=function(){for(var t=function(t){var e=fr[t],n="";switch(fr[t].raw.startTime.type){case"prevTaskEnd":var r=pr(e.prevTaskId);e.startTime=r.endTime;break;case"getStartDate":(n=sr(0,Hn,fr[t].raw.startTime.startData))&&(fr[t].startTime=n)}return fr[t].startTime&&(fr[t].endTime=ur(fr[t].startTime,Hn,fr[t].raw.endTime.data,nr),fr[t].endTime&&(fr[t].processed=!0,fr[t].manualEndTime=l()(fr[t].raw.endTime.data,"YYYY-MM-DD",!0).isValid(),ar(fr[t],Hn,Xn))),fr[t].processed},e=!0,n=0;nr?i=1:n0&&(e=t.classes.join(" "));for(var n=0,r=0;rn-e?n+a+1.5*_r.leftPadding>u?e+r-5:n+r+5:(n-e)/2+e+r})).attr("y",(function(t,r){return t.order*e+_r.barHeight/2+(_r.fontSize/2-2)+n})).attr("text-height",i).attr("class",(function(t){var e=o(t.startTime),n=o(t.endTime);t.milestone&&(n=e+i);var r=this.getBBox().width,a="";t.classes.length>0&&(a=t.classes.join(" "));var s=0;console.log(_r);for(var l=0;ln-e?n+r+1.5*_r.leftPadding>u?a+" taskTextOutsideLeft taskTextOutside"+s+" "+h:a+" taskTextOutsideRight taskTextOutside"+s+" "+h+" width-"+r:a+" taskText taskText"+s+" "+h+" width-"+r}))}(t,i,u,f,r,0,e),function(t,e){for(var n=[],r=0,i=0;i0&&a.setAttribute("dy","1em"),a.textContent=e[i],r.appendChild(a)}return r})).attr("x",10).attr("y",(function(i,a){if(!(a>0))return i[1]*t/2+e;for(var o=0;o0){var r=t.split("~");n=r[0],e=r[1]}return{className:n,type:e}},Or=function(t){var e=Mr(t);void 0===Cr[e.className]&&(Cr[e.className]={id:e.className,type:e.type,cssClasses:[],methods:[],members:[],annotations:[],domId:"classid-"+e.className+"-"+Ar},Ar++)},Dr=function(t){for(var e=Object.keys(Cr),n=0;n>")?r.annotations.push(i.substring(2,i.length-2)):i.indexOf(")")>0?r.methods.push(i):i&&r.members.push(i)}},Br=function(t,e){t.split(",").forEach((function(t){var n=t;t[0].match(/\d/)&&(n="classid-"+n),void 0!==Cr[n]&&Cr[n].cssClasses.push(e)}))},Lr=function(t,e,n){var r=t,i=Dr(r);"loose"===Er.securityLevel&&void 0!==e&&void 0!==Cr[r]&&(n&&(Cr[r].tooltip=x.sanitizeText(n,Er)),Sr.push((function(){var t=document.querySelector('[id="'.concat(i,'"]'));null!==t&&t.addEventListener("click",(function(){U.runFunc(e,i)}),!1)})))},Fr={AGGREGATION:0,EXTENSION:1,COMPOSITION:2,DEPENDENCY:3},Pr=function(t){var e=Object(s.select)(".mermaidTooltip");null===(e._groups||e)[0][0]&&(e=Object(s.select)("body").append("div").attr("class","mermaidTooltip").style("opacity",0)),Object(s.select)(t).select("svg").selectAll("g.node").on("mouseover",(function(){var t=Object(s.select)(this);if(null!==t.attr("title")){var n=this.getBoundingClientRect();e.transition().duration(200).style("opacity",".9"),e.html(t.attr("title")).style("left",window.scrollX+n.left+(n.right-n.left)/2+"px").style("top",window.scrollY+n.top-14+document.body.scrollTop+"px"),t.classed("hover",!0)}})).on("mouseout",(function(){e.transition().duration(500).style("opacity",0),Object(s.select)(this).classed("hover",!1)}))};Sr.push(Pr);var Ir={parseDirective:function(t,e,n){Lo.parseDirective(this,t,e,n)},getConfig:function(){return mt().class},addClass:Or,bindFunctions:function(t){Sr.forEach((function(e){e(t)}))},clear:function(){Tr=[],Cr={},(Sr=[]).push(Pr)},getClass:function(t){return Cr[t]},getClasses:function(){return Cr},addAnnotation:function(t,e){var n=Mr(t).className;Cr[n].annotations.push(e)},getRelations:function(){return Tr},addRelation:function(t){f.debug("Adding relation: "+JSON.stringify(t)),Or(t.id1),Or(t.id2),t.id1=Mr(t.id1).className,t.id2=Mr(t.id2).className,Tr.push(t)},addMember:Nr,addMembers:function(t,e){Array.isArray(e)&&(e.reverse(),e.forEach((function(e){return Nr(t,e)})))},cleanupLabel:function(t){return":"===t.substring(0,1)?t.substr(1).trim():t.trim()},lineType:{LINE:0,DOTTED_LINE:1},relationType:Fr,setClickEvent:function(t,e,n){t.split(",").forEach((function(t){Lr(t,e,n)})),Br(t,"clickable")},setCssClass:Br,setLink:function(t,e,n){t.split(",").forEach((function(t){var r=t;t[0].match(/\d/)&&(r="classid-"+r),void 0!==Cr[r]&&(Cr[r].link=U.formatUrl(e,Er),n&&(Cr[r].tooltip=x.sanitizeText(n,Er)))})),Br(t,"clickable")},lookUpDomId:Dr},jr=n(13),Rr=n.n(jr),Yr=0,zr=function(t){var e=t.match(/(\+|-|~|#)?(\w+)(~\w+~|\[\])?\s+(\w+)/),n=t.match(/^([+|\-|~|#])?(\w+) *\( *(.*)\) *(\*|\$)? *(\w*[~|[\]]*\s*\w*~?)$/);return e&&!n?Ur(e):n?$r(n):Wr(t)},Ur=function(t){var e="";try{e=(t[1]?t[1].trim():"")+(t[2]?t[2].trim():"")+(t[3]?Hr(t[3].trim()):"")+" "+(t[4]?t[4].trim():"")}catch(n){e=t}return{displayText:e,cssStyle:""}},$r=function(t){var e="",n="";try{var r=t[1]?t[1].trim():"",i=t[2]?t[2].trim():"",a=t[3]?Hr(t[3].trim()):"",o=t[4]?t[4].trim():"";n=r+i+"("+a+")"+(t[5]?" : "+Hr(t[5]).trim():""),e=Gr(o)}catch(e){n=t}return{displayText:n,cssStyle:e}},Wr=function(t){var e="",n="",r="",i=t.indexOf("("),a=t.indexOf(")");if(i>1&&a>i&&a<=t.length){var o="",s="",c=t.substring(0,1);c.match(/\w/)?s=t.substring(0,i).trim():(c.match(/\+|-|~|#/)&&(o=c),s=t.substring(1,i).trim());var u=t.substring(i+1,a),l=t.substring(a+1,1);n=Gr(l),e=o+s+"("+Hr(u.trim())+")",a<"".length&&""!==(r=t.substring(a+2).trim())&&(r=" : "+Hr(r))}else e=Hr(t);return{displayText:e,cssStyle:n}},Vr=function(t,e,n,r){var i=zr(e),a=t.append("tspan").attr("x",r.padding).text(i.displayText);""!==i.cssStyle&&a.attr("style",i.cssStyle),n||a.attr("dy",r.textHeight)},Hr=function t(e){var n=e;return-1!=e.indexOf("~")?t(n=(n=n.replace("~","<")).replace("~",">")):n},Gr=function(t){switch(t){case"*":return"font-style:italic;";case"$":return"text-decoration:underline;";default:return""}},qr=function(t,e,n){f.info("Rendering class "+e);var r,i=e.id,a={id:i,label:e.id,width:0,height:0},o=t.append("g").attr("id",Dr(i)).attr("class","classGroup");r=e.link?o.append("svg:a").attr("xlink:href",e.link).attr("target","_blank").append("text").attr("y",n.textHeight+n.padding).attr("x",0):o.append("text").attr("y",n.textHeight+n.padding).attr("x",0);var s=!0;e.annotations.forEach((function(t){var e=r.append("tspan").text("«"+t+"»");s||e.attr("dy",n.textHeight),s=!1}));var c=e.id;void 0!==e.type&&""!==e.type&&(c+="<"+e.type+">");var u=r.append("tspan").text(c).attr("class","title");s||u.attr("dy",n.textHeight);var l=r.node().getBBox().height,h=o.append("line").attr("x1",0).attr("y1",n.padding+l+n.dividerMargin/2).attr("y2",n.padding+l+n.dividerMargin/2),d=o.append("text").attr("x",n.padding).attr("y",l+n.dividerMargin+n.textHeight).attr("fill","white").attr("class","classText");s=!0,e.members.forEach((function(t){Vr(d,t,s,n),s=!1}));var p=d.node().getBBox(),g=o.append("line").attr("x1",0).attr("y1",n.padding+l+n.dividerMargin+p.height).attr("y2",n.padding+l+n.dividerMargin+p.height),y=o.append("text").attr("x",n.padding).attr("y",l+2*n.dividerMargin+p.height+n.textHeight).attr("fill","white").attr("class","classText");s=!0,e.methods.forEach((function(t){Vr(y,t,s,n),s=!1}));var v=o.node().getBBox(),m=" ";e.cssClasses.length>0&&(m+=e.cssClasses.join(" "));var b=o.insert("rect",":first-child").attr("x",0).attr("y",0).attr("width",v.width+2*n.padding).attr("height",v.height+n.padding+.5*n.dividerMargin).attr("class",m).node().getBBox().width;return r.node().childNodes.forEach((function(t){t.setAttribute("x",(b-t.getBBox().width)/2)})),e.tooltip&&r.insert("title").text(e.tooltip),h.attr("x2",b),g.attr("x2",b),a.width=b,a.height=v.height+n.padding+.5*n.dividerMargin,a},Xr=function(t,e,n,r){var i=function(t){switch(t){case Fr.AGGREGATION:return"aggregation";case Fr.EXTENSION:return"extension";case Fr.COMPOSITION:return"composition";case Fr.DEPENDENCY:return"dependency"}};e.points=e.points.filter((function(t){return!Number.isNaN(t.y)}));var a,o,c=e.points,u=Object(s.line)().x((function(t){return t.x})).y((function(t){return t.y})).curve(s.curveBasis),l=t.append("path").attr("d",u(c)).attr("id","edge"+Yr).attr("class","relation"),h="";r.arrowMarkerAbsolute&&(h=(h=(h=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),1==n.relation.lineType&&l.attr("class","relation dashed-line"),"none"!==n.relation.type1&&l.attr("marker-start","url("+h+"#"+i(n.relation.type1)+"Start)"),"none"!==n.relation.type2&&l.attr("marker-end","url("+h+"#"+i(n.relation.type2)+"End)");var d,p,g,y,v=e.points.length,m=U.calcLabelPosition(e.points);if(a=m.x,o=m.y,v%2!=0&&v>1){var b=U.calcCardinalityPosition("none"!==n.relation.type1,e.points,e.points[0]),x=U.calcCardinalityPosition("none"!==n.relation.type2,e.points,e.points[v-1]);f.debug("cardinality_1_point "+JSON.stringify(b)),f.debug("cardinality_2_point "+JSON.stringify(x)),d=b.x,p=b.y,g=x.x,y=x.y}if(void 0!==n.title){var _=t.append("g").attr("class","classLabel"),k=_.append("text").attr("class","label").attr("x",a).attr("y",o).attr("fill","red").attr("text-anchor","middle").text(n.title);window.label=k;var w=k.node().getBBox();_.insert("rect",":first-child").attr("class","box").attr("x",w.x-r.padding/2).attr("y",w.y-r.padding/2).attr("width",w.width+r.padding).attr("height",w.height+r.padding)}(f.info("Rendering relation "+JSON.stringify(n)),void 0!==n.relationTitle1&&"none"!==n.relationTitle1)&&t.append("g").attr("class","cardinality").append("text").attr("class","type1").attr("x",d).attr("y",p).attr("fill","black").attr("font-size","6").text(n.relationTitle1);void 0!==n.relationTitle2&&"none"!==n.relationTitle2&&t.append("g").attr("class","cardinality").append("text").attr("class","type2").attr("x",g).attr("y",y).attr("fill","black").attr("font-size","6").text(n.relationTitle2);Yr++};jr.parser.yy=Ir;var Zr={},Jr={dividerMargin:10,padding:5,textHeight:10},Qr=function(t){for(var e=Object.keys(Zr),n=0;n "+t.w+": "+JSON.stringify(i.edge(t))),Xr(r,i.edge(t),i.edge(t).relation,Jr))}));var h=r.node().getBBox(),d=h.width+40,p=h.height+40;Jr.useMaxWidth?(r.attr("width","100%"),r.attr("style","max-width: ".concat(d,"px;"))):(r.attr("height",p),r.attr("width",d));var g="".concat(h.x-20," ").concat(h.y-20," ").concat(d," ").concat(p);f.debug("viewBox ".concat(g)),r.attr("viewBox",g)};jr.parser.yy=Ir;var ei={dividerMargin:10,padding:5,textHeight:10},ni=function(t){Object.keys(t).forEach((function(e){ei[e]=t[e]}))},ri=function(t,e){f.info("Drawing class"),Ir.clear(),jr.parser.parse(t);var n=mt().flowchart;f.info("config:",n);var r=n.nodeSpacing||50,i=n.rankSpacing||50,a=new W.a.Graph({multigraph:!0,compound:!0}).setGraph({rankdir:"TD",nodesep:r,ranksep:i,marginx:8,marginy:8}).setDefaultEdgeLabel((function(){return{}})),o=Ir.getClasses(),c=Ir.getRelations();f.info(c),function(t,e){var n=Object.keys(t);f.info("keys:",n),f.info(t),n.forEach((function(n){var r=t[n],i={labelStyle:""},a=void 0!==r.text?r.text:r.id,o="";switch(r.type){case"class":o="class_box";break;default:o="class_box"}e.setNode(r.id,{labelStyle:i.labelStyle,shape:o,labelText:a,classData:r,rx:0,ry:0,class:"default",style:i.style,id:r.id,width:"group"===r.type?500:void 0,type:r.type,padding:mt().flowchart.padding}),f.info("setNode",{labelStyle:i.labelStyle,shape:o,labelText:a,rx:0,ry:0,class:"default",style:i.style,id:r.id,width:"group"===r.type?500:void 0,type:r.type,padding:mt().flowchart.padding})}))}(o,a),function(t,e){var n=0;t.forEach((function(r){n++;var i={classes:"relation"};i.pattern=1==r.relation.lineType?"dashed":"solid",i.id="id"+n,"arrow_open"===r.type?i.arrowhead="none":i.arrowhead="normal",f.info(i,r),i.arrowTypeStart=ii(r.relation.type1),i.arrowTypeEnd=ii(r.relation.type2);var a="",o="";if(void 0!==r.style){var c=N(r.style);a=c.style,o=c.labelStyle}else a="fill:none";i.style=a,i.labelStyle=o,void 0!==r.interpolate?i.curve=O(r.interpolate,s.curveLinear):void 0!==t.defaultInterpolate?i.curve=O(t.defaultInterpolate,s.curveLinear):i.curve=O(ei.curve,s.curveLinear),r.text=r.title,void 0===r.text?void 0!==r.style&&(i.arrowheadStyle="fill: #333"):(i.arrowheadStyle="fill: #333",i.labelpos="c",mt().flowchart.htmlLabels,i.labelType="text",i.label=r.text.replace(x.lineBreakRegex,"\n"),void 0===r.style&&(i.style=i.style||"stroke: #333; stroke-width: 1.5px;fill:none"),i.labelStyle=i.labelStyle.replace("color:","fill:")),e.setEdge(r.id1,r.id2,i,n)}))}(c,a);var u=Object(s.select)('[id="'.concat(e,'"]'));u.attr("xmlns:xlink","http://www.w3.org/1999/xlink");var l=Object(s.select)("#"+e+" g");qe(l,a,["aggregation","extension","composition","dependency"],"classDiagram",e);var h=u.node().getBBox(),d=h.width+16,p=h.height+16;if(f.debug("new ViewBox 0 0 ".concat(d," ").concat(p),"translate(".concat(8-a._label.marginx,", ").concat(8-a._label.marginy,")")),n.useMaxWidth?(u.attr("width","100%"),u.attr("style","max-width: ".concat(d,"px;"))):(u.attr("height",p),u.attr("width",d)),u.attr("viewBox","0 0 ".concat(d," ").concat(p)),u.select("g").attr("transform","translate(".concat(8-a._label.marginx,", ").concat(8-h.y,")")),!n.htmlLabels)for(var g=document.querySelectorAll('[id="'+e+'"] .edgeLabel .label'),y=0;y0&&o.length>0){var c={stmt:"state",id:L(),type:"divider",doc:si(o)};i.push(si(c)),n.doc=i}n.doc.forEach((function(e){return t(n,e,!0)}))}}({id:"root"},{id:"root",doc:ci},!0),{id:"root",doc:ci}},extract:function(t){var e;e=t.doc?t.doc:t,f.info(e),di(),f.info("Extract",e),e.forEach((function(t){"state"===t.stmt&&fi(t.id,t.type,t.doc,t.description,t.note),"relation"===t.stmt&&pi(t.state1.id,t.state2.id,t.description)}))},trimColon:function(t){return t&&":"===t[0]?t.substr(1).trim():t.trim()}},bi=n(22),xi=n.n(bi),_i={},ki=function(t,e){_i[t]=e},wi=function(t,e){var n=t.append("text").attr("x",2*mt().state.padding).attr("y",mt().state.textHeight+1.3*mt().state.padding).attr("font-size",mt().state.fontSize).attr("class","state-title").text(e.descriptions[0]).node().getBBox(),r=n.height,i=t.append("text").attr("x",mt().state.padding).attr("y",r+.4*mt().state.padding+mt().state.dividerMargin+mt().state.textHeight).attr("class","state-description"),a=!0,o=!0;e.descriptions.forEach((function(t){a||(!function(t,e,n){var r=t.append("tspan").attr("x",2*mt().state.padding).text(e);n||r.attr("dy",mt().state.textHeight)}(i,t,o),o=!1),a=!1}));var s=t.append("line").attr("x1",mt().state.padding).attr("y1",mt().state.padding+r+mt().state.dividerMargin/2).attr("y2",mt().state.padding+r+mt().state.dividerMargin/2).attr("class","descr-divider"),c=i.node().getBBox(),u=Math.max(c.width,n.width);return s.attr("x2",u+3*mt().state.padding),t.insert("rect",":first-child").attr("x",mt().state.padding).attr("y",mt().state.padding).attr("width",u+2*mt().state.padding).attr("height",c.height+r+2*mt().state.padding).attr("rx",mt().state.radius),t},Ei=function(t,e,n){var r,i=mt().state.padding,a=2*mt().state.padding,o=t.node().getBBox(),s=o.width,c=o.x,u=t.append("text").attr("x",0).attr("y",mt().state.titleShift).attr("font-size",mt().state.fontSize).attr("class","state-title").text(e.id),l=u.node().getBBox().width+a,h=Math.max(l,s);h===s&&(h+=a);var f=t.node().getBBox();e.doc,r=c-i,l>s&&(r=(s-h)/2+i),Math.abs(c-f.x)s&&(r=c-(l-s)/2);var d=1-mt().state.textHeight;return t.insert("rect",":first-child").attr("x",r).attr("y",d).attr("class",n?"alt-composit":"composit").attr("width",h).attr("height",f.height+mt().state.textHeight+mt().state.titleShift+1).attr("rx","0"),u.attr("x",r+i),l<=s&&u.attr("x",c+(h-a)/2-l/2+i),t.insert("rect",":first-child").attr("x",r).attr("y",mt().state.titleShift-mt().state.textHeight-mt().state.padding).attr("width",h).attr("height",3*mt().state.textHeight).attr("rx",mt().state.radius),t.insert("rect",":first-child").attr("x",r).attr("y",mt().state.titleShift-mt().state.textHeight-mt().state.padding).attr("width",h).attr("height",f.height+3+2*mt().state.textHeight).attr("rx",mt().state.radius),t},Ti=function(t,e){e.attr("class","state-note");var n=e.append("rect").attr("x",0).attr("y",mt().state.padding),r=function(t,e,n,r){var i=0,a=r.append("text");a.style("text-anchor","start"),a.attr("class","noteText");var o=t.replace(/\r\n/g,"
    "),s=(o=o.replace(/\n/g,"
    ")).split(x.lineBreakRegex),c=1.25*mt().state.noteMargin,u=!0,l=!1,h=void 0;try{for(var f,d=s[Symbol.iterator]();!(u=(f=d.next()).done);u=!0){var p=f.value.trim();if(p.length>0){var g=a.append("tspan");if(g.text(p),0===c)c+=g.node().getBBox().height;i+=c,g.attr("x",e+mt().state.noteMargin),g.attr("y",n+i+1.25*mt().state.noteMargin)}}}catch(t){l=!0,h=t}finally{try{u||null==d.return||d.return()}finally{if(l)throw h}}return{textWidth:a.node().getBBox().width,textHeight:i}}(t,0,0,e.append("g")),i=r.textWidth,a=r.textHeight;return n.attr("height",a+2*mt().state.noteMargin),n.attr("width",i+2*mt().state.noteMargin),n},Ci=function(t,e){var n=e.id,r={id:n,label:e.id,width:0,height:0},i=t.append("g").attr("id",n).attr("class","stateGroup");"start"===e.type&&function(t){t.append("circle").attr("class","start-state").attr("r",mt().state.sizeUnit).attr("cx",mt().state.padding+mt().state.sizeUnit).attr("cy",mt().state.padding+mt().state.sizeUnit)}(i),"end"===e.type&&function(t){t.append("circle").attr("class","end-state-outer").attr("r",mt().state.sizeUnit+mt().state.miniPadding).attr("cx",mt().state.padding+mt().state.sizeUnit+mt().state.miniPadding).attr("cy",mt().state.padding+mt().state.sizeUnit+mt().state.miniPadding),t.append("circle").attr("class","end-state-inner").attr("r",mt().state.sizeUnit).attr("cx",mt().state.padding+mt().state.sizeUnit+2).attr("cy",mt().state.padding+mt().state.sizeUnit+2)}(i),"fork"!==e.type&&"join"!==e.type||function(t,e){var n=mt().state.forkWidth,r=mt().state.forkHeight;if(e.parentId){var i=n;n=r,r=i}t.append("rect").style("stroke","black").style("fill","black").attr("width",n).attr("height",r).attr("x",mt().state.padding).attr("y",mt().state.padding)}(i,e),"note"===e.type&&Ti(e.note.text,i),"divider"===e.type&&function(t){t.append("line").style("stroke","grey").style("stroke-dasharray","3").attr("x1",mt().state.textHeight).attr("class","divider").attr("x2",2*mt().state.textHeight).attr("y1",0).attr("y2",0)}(i),"default"===e.type&&0===e.descriptions.length&&function(t,e){var n=t.append("text").attr("x",2*mt().state.padding).attr("y",mt().state.textHeight+2*mt().state.padding).attr("font-size",mt().state.fontSize).attr("class","state-title").text(e.id),r=n.node().getBBox();t.insert("rect",":first-child").attr("x",mt().state.padding).attr("y",mt().state.padding).attr("width",r.width+2*mt().state.padding).attr("height",r.height+2*mt().state.padding).attr("rx",mt().state.radius)}(i,e),"default"===e.type&&e.descriptions.length>0&&wi(i,e);var a=i.node().getBBox();return r.width=a.width+2*mt().state.padding,r.height=a.height+2*mt().state.padding,ki(n,r),r},Ai=0;bi.parser.yy=mi;var Si={},Mi=function t(e,n,r,i){var a,o=new W.a.Graph({compound:!0,multigraph:!0}),c=!0;for(a=0;a "+t.w+": "+JSON.stringify(o.edge(t))),function(t,e,n){e.points=e.points.filter((function(t){return!Number.isNaN(t.y)}));var r=e.points,i=Object(s.line)().x((function(t){return t.x})).y((function(t){return t.y})).curve(s.curveBasis),a=t.append("path").attr("d",i(r)).attr("id","edge"+Ai).attr("class","transition"),o="";if(mt().state.arrowMarkerAbsolute&&(o=(o=(o=window.location.protocol+"//"+window.location.host+window.location.pathname+window.location.search).replace(/\(/g,"\\(")).replace(/\)/g,"\\)")),a.attr("marker-end","url("+o+"#"+function(t){switch(t){case mi.relationType.AGGREGATION:return"aggregation";case mi.relationType.EXTENSION:return"extension";case mi.relationType.COMPOSITION:return"composition";case mi.relationType.DEPENDENCY:return"dependency"}}(mi.relationType.DEPENDENCY)+"End)"),void 0!==n.title){for(var c=t.append("g").attr("class","stateLabel"),u=U.calcLabelPosition(e.points),l=u.x,h=u.y,d=x.getRows(n.title),p=0,g=[],y=0,v=0,m=0;m<=d.length;m++){var b=c.append("text").attr("text-anchor","middle").text(d[m]).attr("x",l).attr("y",h+p),_=b.node().getBBox();if(y=Math.max(y,_.width),v=Math.min(v,_.x),f.info(_.x,l,h+p),0===p){var k=b.node().getBBox();p=k.height,f.info("Title height",p,h)}g.push(b)}var w=p*d.length;if(d.length>1){var E=(d.length-1)*p*.5;g.forEach((function(t,e){return t.attr("y",h+e*p-E)})),w=p*d.length}var T=c.node().getBBox();c.insert("rect",":first-child").attr("class","box").attr("x",l-y/2-mt().state.padding/2).attr("y",h-w/2-mt().state.padding/2-3.5).attr("width",y+mt().state.padding).attr("height",w+mt().state.padding),f.info(T)}Ai++}(n,o.edge(t),o.edge(t).relation))})),w=k.getBBox();var E={id:r||"root",label:r||"root",width:0,height:0};return E.width=w.width+2*oi.padding,E.height=w.height+2*oi.padding,f.debug("Doc rendered",E,o),E},Oi=function(){},Di=function(t,e){oi=mt().state,bi.parser.yy.clear(),bi.parser.parse(t),f.debug("Rendering diagram "+t);var n=Object(s.select)("[id='".concat(e,"']"));n.append("defs").append("marker").attr("id","dependencyEnd").attr("refX",19).attr("refY",7).attr("markerWidth",20).attr("markerHeight",28).attr("orient","auto").append("path").attr("d","M 19,7 L9,13 L14,7 L9,1 Z"),new W.a.Graph({multigraph:!0,compound:!0,rankdir:"RL"}).setDefaultEdgeLabel((function(){return{}}));var r=mi.getRootDoc();Mi(r,n,void 0,!1);var i=oi.padding,a=n.node().getBBox(),o=a.width+2*i,c=a.height+2*i;oi.useMaxWidth?(n.attr("width","100%"),n.attr("style","max-width: ".concat(1.75*o,"px;"))):n.attr("width",1.75*o),n.attr("viewBox","".concat(a.x-oi.padding," ").concat(a.y-oi.padding," ")+o+" "+c)},Ni={},Bi={},Li=function(t,e,n,r){if("root"!==n.id){var i="rect";!0===n.start&&(i="start"),!1===n.start&&(i="end"),"default"!==n.type&&(i=n.type),Bi[n.id]||(Bi[n.id]={id:n.id,shape:i,description:n.id,classes:"statediagram-state"}),n.description&&(Array.isArray(Bi[n.id].description)?(Bi[n.id].shape="rectWithTitle",Bi[n.id].description.push(n.description)):Bi[n.id].description.length>0?(Bi[n.id].shape="rectWithTitle",Bi[n.id].description===n.id?Bi[n.id].description=[n.description]:Bi[n.id].description=[Bi[n.id].description,n.description]):(Bi[n.id].shape="rect",Bi[n.id].description=n.description)),!Bi[n.id].type&&n.doc&&(f.info("Setting cluser for ",n.id),Bi[n.id].type="group",Bi[n.id].shape="divider"===n.type?"divider":"roundedWithTitle",Bi[n.id].classes=Bi[n.id].classes+" "+(r?"statediagram-cluster statediagram-cluster-alt":"statediagram-cluster"));var a={labelStyle:"",shape:Bi[n.id].shape,labelText:Bi[n.id].description,classes:Bi[n.id].classes,style:"",id:n.id,type:Bi[n.id].type,padding:15};if(n.note){var o={labelStyle:"",shape:"note",labelText:n.note.text,classes:"statediagram-note",style:"",id:n.id+"----note",type:Bi[n.id].type,padding:15},s={labelStyle:"",shape:"noteGroup",labelText:n.note.text,classes:Bi[n.id].classes,style:"",id:n.id+"----parent",type:"group",padding:0};t.setNode(n.id+"----parent",s),t.setNode(o.id,o),t.setNode(n.id,a),t.setParent(n.id,n.id+"----parent"),t.setParent(o.id,n.id+"----parent");var c=n.id,u=o.id;"left of"===n.note.position&&(c=o.id,u=n.id),t.setEdge(c,u,{arrowhead:"none",arrowType:"",style:"fill:none",labelStyle:"",classes:"transition note-edge",arrowheadStyle:"fill: #333",labelpos:"c",labelType:"text",thickness:"normal"})}else t.setNode(n.id,a)}e&&"root"!==e.id&&(f.info("Setting node ",n.id," to be child of its parent ",e.id),t.setParent(n.id,e.id)),n.doc&&(f.info("Adding nodes children "),Pi(t,n,n.doc,!r))},Fi=0,Pi=function(t,e,n,r){f.trace("items",n),n.forEach((function(n){if("state"===n.stmt||"default"===n.stmt)Li(t,e,n,r);else if("relation"===n.stmt){Li(t,e,n.state1,r),Li(t,e,n.state2,r);var i={id:"edge"+Fi,arrowhead:"normal",arrowTypeEnd:"arrow_barb",style:"fill:none",labelStyle:"",label:n.description,arrowheadStyle:"fill: #333",labelpos:"c",labelType:"text",thickness:"normal",classes:"transition"},a=n.state1.id,o=n.state2.id;t.setEdge(a,o,i,Fi),Fi++}}))},Ii=function(t){for(var e=Object.keys(t),n=0;ne.seq?t:e}),t[0]),n="";t.forEach((function(t){n+=t===e?"\t*":"\t|"}));var r,i,a,o=[n,e.id,e.seq];for(var s in zi)zi[s]===e.id&&o.push(s);if(f.debug(o.join(" ")),Array.isArray(e.parent)){var c=Ri[e.parent[0]];qi(t,e,c),t.push(Ri[e.parent[1]])}else{if(null==e.parent)return;var u=Ri[e.parent];qi(t,e,u)}r=t,i=function(t){return t.id},a=Object.create(null),Xi(t=r.reduce((function(t,e){var n=i(e);return a[n]||(a[n]=!0,t.push(e)),t}),[]))}var Zi,Ji=function(){var t=Object.keys(Ri).map((function(t){return Ri[t]}));return t.forEach((function(t){f.debug(t.id)})),t.sort((function(t,e){return e.seq-t.seq})),t},Qi={setDirection:function(t){$i=t},setOptions:function(t){f.debug("options str",t),t=(t=t&&t.trim())||"{}";try{Gi=JSON.parse(t)}catch(t){f.error("error while parsing gitGraph options",t.message)}},getOptions:function(){return Gi},commit:function(t){var e={id:Vi(),message:t,seq:Wi++,parent:null==Yi?null:Yi.id};Yi=e,Ri[e.id]=e,zi[Ui]=e.id,f.debug("in pushCommit "+e.id)},branch:function(t){zi[t]=null!=Yi?Yi.id:null,f.debug("in createBranch")},merge:function(t){var e=Ri[zi[Ui]],n=Ri[zi[t]];if(function(t,e){return t.seq>e.seq&&Hi(e,t)}(e,n))f.debug("Already merged");else{if(Hi(e,n))zi[Ui]=zi[t],Yi=Ri[zi[Ui]];else{var r={id:Vi(),message:"merged branch "+t+" into "+Ui,seq:Wi++,parent:[null==Yi?null:Yi.id,zi[t]]};Yi=r,Ri[r.id]=r,zi[Ui]=r.id}f.debug(zi),f.debug("in mergeBranch")}},checkout:function(t){f.debug("in checkout");var e=zi[Ui=t];Yi=Ri[e]},reset:function(t){f.debug("in reset",t);var e=t.split(":")[0],n=parseInt(t.split(":")[1]),r="HEAD"===e?Yi:Ri[zi[e]];for(f.debug(r,n);n>0;)if(n--,!(r=Ri[r.parent])){var i="Critical error - unique parent commit not found during reset";throw f.error(i),i}Yi=r,zi[Ui]=r.id},prettyPrint:function(){f.debug(Ri),Xi([Ji()[0]])},clear:function(){Ri={},zi={master:Yi=null},Ui="master",Wi=0},getBranchesAsObjArray:function(){var t=[];for(var e in zi)t.push({name:e,commit:Ri[zi[e]]});return t},getBranches:function(){return zi},getCommits:function(){return Ri},getCommitsArray:Ji,getCurrentBranch:function(){return Ui},getDirection:function(){return $i},getHead:function(){return Yi}},Ki=n(71),ta=n.n(Ki),ea={},na={nodeSpacing:150,nodeFillColor:"yellow",nodeStrokeWidth:2,nodeStrokeColor:"grey",lineStrokeWidth:4,branchOffset:50,lineColor:"grey",leftMargin:50,branchColors:["#442f74","#983351","#609732","#AA9A39"],nodeRadius:10,nodeLabel:{width:75,height:100,x:-25,y:0}},ra={};function ia(t,e,n,r){var i=O(r,s.curveBasis),a=na.branchColors[n%na.branchColors.length],o=Object(s.line)().x((function(t){return Math.round(t.x)})).y((function(t){return Math.round(t.y)})).curve(i);t.append("svg:path").attr("d",o(e)).style("stroke",a).style("stroke-width",na.lineStrokeWidth).style("fill","none")}function aa(t,e){e=e||t.node().getBBox();var n=t.node().getCTM();return{left:n.e+e.x*n.a,top:n.f+e.y*n.d,width:e.width,height:e.height}}function oa(t,e,n,r,i){f.debug("svgDrawLineForCommits: ",e,n);var a=aa(t.select("#node-"+e+" circle")),o=aa(t.select("#node-"+n+" circle"));switch(r){case"LR":if(a.left-o.left>na.nodeSpacing){var s={x:a.left-na.nodeSpacing,y:o.top+o.height/2};ia(t,[s,{x:o.left+o.width,y:o.top+o.height/2}],i,"linear"),ia(t,[{x:a.left,y:a.top+a.height/2},{x:a.left-na.nodeSpacing/2,y:a.top+a.height/2},{x:a.left-na.nodeSpacing/2,y:s.y},s],i)}else ia(t,[{x:a.left,y:a.top+a.height/2},{x:a.left-na.nodeSpacing/2,y:a.top+a.height/2},{x:a.left-na.nodeSpacing/2,y:o.top+o.height/2},{x:o.left+o.width,y:o.top+o.height/2}],i);break;case"BT":if(o.top-a.top>na.nodeSpacing){var c={x:o.left+o.width/2,y:a.top+a.height+na.nodeSpacing};ia(t,[c,{x:o.left+o.width/2,y:o.top}],i,"linear"),ia(t,[{x:a.left+a.width/2,y:a.top+a.height},{x:a.left+a.width/2,y:a.top+a.height+na.nodeSpacing/2},{x:o.left+o.width/2,y:c.y-na.nodeSpacing/2},c],i)}else ia(t,[{x:a.left+a.width/2,y:a.top+a.height},{x:a.left+a.width/2,y:a.top+na.nodeSpacing/2},{x:o.left+o.width/2,y:o.top-na.nodeSpacing/2},{x:o.left+o.width/2,y:o.top}],i)}}function sa(t,e){return t.select(e).node().cloneNode(!0)}function ca(t,e,n,r){var i,a=Object.keys(ea).length;if("string"==typeof e)do{if(i=ea[e],f.debug("in renderCommitHistory",i.id,i.seq),t.select("#node-"+e).size()>0)return;t.append((function(){return sa(t,"#def-commit")})).attr("class","commit").attr("id",(function(){return"node-"+i.id})).attr("transform",(function(){switch(r){case"LR":return"translate("+(i.seq*na.nodeSpacing+na.leftMargin)+", "+Zi*na.branchOffset+")";case"BT":return"translate("+(Zi*na.branchOffset+na.leftMargin)+", "+(a-i.seq)*na.nodeSpacing+")"}})).attr("fill",na.nodeFillColor).attr("stroke",na.nodeStrokeColor).attr("stroke-width",na.nodeStrokeWidth);var o=void 0;for(var s in n)if(n[s].commit===i){o=n[s];break}o&&(f.debug("found branch ",o.name),t.select("#node-"+i.id+" p").append("xhtml:span").attr("class","branch-label").text(o.name+", ")),t.select("#node-"+i.id+" p").append("xhtml:span").attr("class","commit-id").text(i.id),""!==i.message&&"BT"===r&&t.select("#node-"+i.id+" p").append("xhtml:span").attr("class","commit-msg").text(", "+i.message),e=i.parent}while(e&&ea[e]);Array.isArray(e)&&(f.debug("found merge commmit",e),ca(t,e[0],n,r),Zi++,ca(t,e[1],n,r),Zi--)}function ua(t,e,n,r){for(r=r||0;e.seq>0&&!e.lineDrawn;)"string"==typeof e.parent?(oa(t,e.id,e.parent,n,r),e.lineDrawn=!0,e=ea[e.parent]):Array.isArray(e.parent)&&(oa(t,e.id,e.parent[0],n,r),oa(t,e.id,e.parent[1],n,r+1),ua(t,ea[e.parent[1]],n,r+1),e.lineDrawn=!0,e=ea[e.parent[0]])}var la,ha=function(t){ra=t},fa=function(t,e,n){try{var r=ta.a.parser;r.yy=Qi,r.yy.clear(),f.debug("in gitgraph renderer",t+"\n","id:",e,n),r.parse(t+"\n"),na=Object.assign(na,ra,Qi.getOptions()),f.debug("effective options",na);var i=Qi.getDirection();ea=Qi.getCommits();var a=Qi.getBranchesAsObjArray();"BT"===i&&(na.nodeLabel.x=a.length*na.branchOffset,na.nodeLabel.width="100%",na.nodeLabel.y=-2*na.nodeRadius);var o=Object(s.select)('[id="'.concat(e,'"]'));for(var c in function(t){t.append("defs").append("g").attr("id","def-commit").append("circle").attr("r",na.nodeRadius).attr("cx",0).attr("cy",0),t.select("#def-commit").append("foreignObject").attr("width",na.nodeLabel.width).attr("height",na.nodeLabel.height).attr("x",na.nodeLabel.x).attr("y",na.nodeLabel.y).attr("class","node-label").attr("requiredFeatures","http://www.w3.org/TR/SVG11/feature#Extensibility").append("p").html("")}(o),Zi=1,a){var u=a[c];ca(o,u.commit.id,a,i),ua(o,u.commit,i),Zi++}o.attr("height",(function(){return"BT"===i?Object.keys(ea).length*na.nodeSpacing:(a.length+1)*na.branchOffset}))}catch(t){f.error("Error while rendering gitgraph"),f.error(t.message)}},da="",pa=!1,ga={setMessage:function(t){f.debug("Setting message to: "+t),da=t},getMessage:function(){return da},setInfo:function(t){pa=t},getInfo:function(){return pa}},ya=n(72),va=n.n(ya),ma={},ba=function(t){Object.keys(t).forEach((function(e){ma[e]=t[e]}))},xa=function(t,e,n){try{var r=va.a.parser;r.yy=ga,f.debug("Renering info diagram\n"+t),r.parse(t),f.debug("Parsed info diagram");var i=Object(s.select)("#"+e);i.append("g").append("text").attr("x",100).attr("y",40).attr("class","version").attr("font-size","32px").style("text-anchor","middle").text("v "+n),i.attr("height",100),i.attr("width",400)}catch(t){f.error("Error while rendering info diagram"),f.error(t.message)}},_a={},ka=function(t){Object.keys(t).forEach((function(e){_a[e]=t[e]}))},wa=function(t,e){try{f.debug("Renering svg for syntax error\n");var n=Object(s.select)("#"+t),r=n.append("g");r.append("path").attr("class","error-icon").attr("d","m411.313,123.313c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32-9.375,9.375-20.688-20.688c-12.484-12.5-32.766-12.5-45.25,0l-16,16c-1.261,1.261-2.304,2.648-3.31,4.051-21.739-8.561-45.324-13.426-70.065-13.426-105.867,0-192,86.133-192,192s86.133,192 192,192 192-86.133 192-192c0-24.741-4.864-48.327-13.426-70.065 1.402-1.007 2.79-2.049 4.051-3.31l16-16c12.5-12.492 12.5-32.758 0-45.25l-20.688-20.688 9.375-9.375 32.001-31.999zm-219.313,100.687c-52.938,0-96,43.063-96,96 0,8.836-7.164,16-16,16s-16-7.164-16-16c0-70.578 57.422-128 128-128 8.836,0 16,7.164 16,16s-7.164,16-16,16z"),r.append("path").attr("class","error-icon").attr("d","m459.02,148.98c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l16,16c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16.001-16z"),r.append("path").attr("class","error-icon").attr("d","m340.395,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688 6.25-6.25 6.25-16.375 0-22.625l-16-16c-6.25-6.25-16.375-6.25-22.625,0s-6.25,16.375 0,22.625l15.999,16z"),r.append("path").attr("class","error-icon").attr("d","m400,64c8.844,0 16-7.164 16-16v-32c0-8.836-7.156-16-16-16-8.844,0-16,7.164-16,16v32c0,8.836 7.156,16 16,16z"),r.append("path").attr("class","error-icon").attr("d","m496,96.586h-32c-8.844,0-16,7.164-16,16 0,8.836 7.156,16 16,16h32c8.844,0 16-7.164 16-16 0-8.836-7.156-16-16-16z"),r.append("path").attr("class","error-icon").attr("d","m436.98,75.605c3.125,3.125 7.219,4.688 11.313,4.688 4.094,0 8.188-1.563 11.313-4.688l32-32c6.25-6.25 6.25-16.375 0-22.625s-16.375-6.25-22.625,0l-32,32c-6.251,6.25-6.251,16.375-0.001,22.625z"),r.append("text").attr("class","error-text").attr("x",1240).attr("y",250).attr("font-size","150px").style("text-anchor","middle").text("Syntax error in graph"),r.append("text").attr("class","error-text").attr("x",1050).attr("y",400).attr("font-size","100px").style("text-anchor","middle").text("mermaid version "+e),n.attr("height",100),n.attr("width",400),n.attr("viewBox","768 0 512 512")}catch(t){f.error("Error while rendering info diagram"),f.error(t.message)}},Ea={},Ta="",Ca={parseDirective:function(t,e,n){Lo.parseDirective(this,t,e,n)},getConfig:function(){return mt().pie},addSection:function(t,e){void 0===Ea[t]&&(Ea[t]=e,f.debug("Added new section :",t))},getSections:function(){return Ea},cleanupValue:function(t){return":"===t.substring(0,1)?(t=t.substring(1).trim(),Number(t.trim())):Number(t.trim())},clear:function(){Ea={},Ta=""},setTitle:function(t){Ta=t},getTitle:function(){return Ta}},Aa=n(73),Sa=n.n(Aa),Ma={},Oa=function(t){Object.keys(t).forEach((function(e){Ma[e]=t[e]}))},Da=function(t,e){try{var n=Sa.a.parser;n.yy=Ca,f.debug("Rendering info diagram\n"+t),n.yy.clear(),n.parse(t),f.debug("Parsed info diagram");var r=document.getElementById(e);void 0===(la=r.parentElement.offsetWidth)&&(la=1200),void 0!==Ma.useWidth&&(la=Ma.useWidth);r.setAttribute("height","100%"),r.setAttribute("viewBox","0 0 "+la+" 450");var i=la,a=Math.min(i,450)/2-40,o=Object(s.select)("#"+e).append("svg").attr("width",i).attr("height",450).append("g").attr("transform","translate("+i/2+",225)"),c=Ca.getSections(),u=0;Object.keys(c).forEach((function(t){u+=c[t]})),f.info(c);var l=Object(s.scaleOrdinal)().domain(c).range(s.schemeSet2),h=Object(s.pie)().value((function(t){return t.value}))(Object(s.entries)(c)),d=Object(s.arc)().innerRadius(0).outerRadius(a);o.selectAll("mySlices").data(h).enter().append("path").attr("d",d).attr("fill",(function(t){return l(t.data.key)})).attr("stroke","black").style("stroke-width","2px").style("opacity",.7),o.selectAll("mySlices").data(h).enter().append("text").text((function(t){return(t.data.value/u*100).toFixed(0)+"%"})).attr("transform",(function(t){return"translate("+d.centroid(t)+")"})).style("text-anchor","middle").attr("class","slice").style("font-size",17),o.append("text").text(n.yy.getTitle()).attr("x",0).attr("y",-200).attr("class","pieTitleText");var p=o.selectAll(".legend").data(l.domain()).enter().append("g").attr("class","legend").attr("transform",(function(t,e){return"translate(216,"+(22*e-22*l.domain().length/2)+")"}));p.append("rect").attr("width",18).attr("height",18).style("fill",l).style("stroke",l),p.append("text").attr("x",22).attr("y",14).text((function(t){return t}))}catch(t){f.error("Error while rendering info diagram"),f.error(t)}},Na={},Ba=[],La="",Fa={Cardinality:{ZERO_OR_ONE:"ZERO_OR_ONE",ZERO_OR_MORE:"ZERO_OR_MORE",ONE_OR_MORE:"ONE_OR_MORE",ONLY_ONE:"ONLY_ONE"},Identification:{NON_IDENTIFYING:"NON_IDENTIFYING",IDENTIFYING:"IDENTIFYING"},parseDirective:function(t,e,n){Lo.parseDirective(this,t,e,n)},getConfig:function(){return mt().er},addEntity:function(t){void 0===Na[t]&&(Na[t]=t,f.debug("Added new entity :",t))},getEntities:function(){return Na},addRelationship:function(t,e,n,r){var i={entityA:t,roleA:e,entityB:n,relSpec:r};Ba.push(i),f.debug("Added new relationship :",i)},getRelationships:function(){return Ba},clear:function(){Na={},Ba=[],La=""},setTitle:function(t){La=t},getTitle:function(){return La}},Pa=n(74),Ia=n.n(Pa),ja={ONLY_ONE_START:"ONLY_ONE_START",ONLY_ONE_END:"ONLY_ONE_END",ZERO_OR_ONE_START:"ZERO_OR_ONE_START",ZERO_OR_ONE_END:"ZERO_OR_ONE_END",ONE_OR_MORE_START:"ONE_OR_MORE_START",ONE_OR_MORE_END:"ONE_OR_MORE_END",ZERO_OR_MORE_START:"ZERO_OR_MORE_START",ZERO_OR_MORE_END:"ZERO_OR_MORE_END"},Ra=ja,Ya=function(t,e){var n;t.append("defs").append("marker").attr("id",ja.ONLY_ONE_START).attr("refX",0).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M9,0 L9,18 M15,0 L15,18"),t.append("defs").append("marker").attr("id",ja.ONLY_ONE_END).attr("refX",18).attr("refY",9).attr("markerWidth",18).attr("markerHeight",18).attr("orient","auto").append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M3,0 L3,18 M9,0 L9,18"),(n=t.append("defs").append("marker").attr("id",ja.ZERO_OR_ONE_START).attr("refX",0).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto")).append("circle").attr("stroke",e.stroke).attr("fill","white").attr("cx",21).attr("cy",9).attr("r",6),n.append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M9,0 L9,18"),(n=t.append("defs").append("marker").attr("id",ja.ZERO_OR_ONE_END).attr("refX",30).attr("refY",9).attr("markerWidth",30).attr("markerHeight",18).attr("orient","auto")).append("circle").attr("stroke",e.stroke).attr("fill","white").attr("cx",9).attr("cy",9).attr("r",6),n.append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M21,0 L21,18"),t.append("defs").append("marker").attr("id",ja.ONE_OR_MORE_START).attr("refX",18).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M0,18 Q 18,0 36,18 Q 18,36 0,18 M42,9 L42,27"),t.append("defs").append("marker").attr("id",ja.ONE_OR_MORE_END).attr("refX",27).attr("refY",18).attr("markerWidth",45).attr("markerHeight",36).attr("orient","auto").append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M3,9 L3,27 M9,18 Q27,0 45,18 Q27,36 9,18"),(n=t.append("defs").append("marker").attr("id",ja.ZERO_OR_MORE_START).attr("refX",18).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto")).append("circle").attr("stroke",e.stroke).attr("fill","white").attr("cx",48).attr("cy",18).attr("r",6),n.append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M0,18 Q18,0 36,18 Q18,36 0,18"),(n=t.append("defs").append("marker").attr("id",ja.ZERO_OR_MORE_END).attr("refX",39).attr("refY",18).attr("markerWidth",57).attr("markerHeight",36).attr("orient","auto")).append("circle").attr("stroke",e.stroke).attr("fill","white").attr("cx",9).attr("cy",18).attr("r",6),n.append("path").attr("stroke",e.stroke).attr("fill","none").attr("d","M21,18 Q39,0 57,18 Q39,36 21,18")},za={},Ua=function(t){return(t.entityA+t.roleA+t.entityB).replace(/\s/g,"")},$a=0,Wa=function(t){for(var e=Object.keys(t),n=0;n/gi," "),r=t.append("text");r.attr("x",e.x),r.attr("y",e.y),r.attr("class","legend"),r.style("text-anchor",e.anchor),void 0!==e.class&&r.attr("class",e.class);var i=r.append("tspan");return i.attr("x",e.x+2*e.textMargin),i.text(n),r},ao=-1,oo=function(){return{x:0,y:0,width:100,anchor:"start",height:100,rx:0,ry:0}},so=function(){function t(t,e,n,i,a,o,s,c){r(e.append("text").attr("x",n+a/2).attr("y",i+o/2+5).style("font-color",c).style("text-anchor","middle").text(t),s)}function e(t,e,n,i,a,o,s,c,u){for(var l=c.taskFontSize,h=c.taskFontFamily,f=t.split(//gi),d=0;d3?function(t){var e=Object(s.arc)().startAngle(Math.PI/2).endAngle(Math.PI/2*3).innerRadius(7.5).outerRadius(15/2.2);t.append("path").attr("class","mouth").attr("d",e).attr("transform","translate("+o.cx+","+(o.cy+2)+")")}(c):o.score<3?function(t){var e=Object(s.arc)().startAngle(3*Math.PI/2).endAngle(Math.PI/2*5).innerRadius(7.5).outerRadius(15/2.2);t.append("path").attr("class","mouth").attr("d",e).attr("transform","translate("+o.cx+","+(o.cy+7)+")")}(c):function(t){t.append("line").attr("class","mouth").attr("stroke",2).attr("x1",o.cx-5).attr("y1",o.cy+7).attr("x2",o.cx+5).attr("y2",o.cy+7).attr("class","mouth").attr("stroke-width","1px").attr("stroke","#666")}(c);var u=oo();u.x=e.x,u.y=e.y,u.fill=e.fill,u.width=n.width,u.height=n.height,u.class="task task-type-"+e.num,u.rx=3,u.ry=3,no(i,u);var l=e.x+14;e.people.forEach((function(t){var n=e.actors[t],r={cx:l,cy:e.y,r:7,fill:n,stroke:"#000",title:t};ro(i,r),l+=10})),so(n)(e.task,i,u.x,u.y,u.width,u.height,{class:"task"},n,e.colour)},fo=function(t){t.append("defs").append("marker").attr("id","arrowhead").attr("refX",5).attr("refY",2).attr("markerWidth",6).attr("markerHeight",4).attr("orient","auto").append("path").attr("d","M 0,0 V 4 L6,2 Z")};Ha.parser.yy=eo;var po={leftMargin:150,diagramMarginX:50,diagramMarginY:20,taskMargin:50,width:150,height:50,taskFontSize:14,taskFontFamily:'"Open-Sans", "sans-serif"',boxMargin:10,boxTextMargin:5,noteMargin:10,messageMargin:35,messageAlign:"center",bottomMarginAdj:1,activationWidth:10,textPlacement:"fo",actorColours:["#8FBC8F","#7CFC00","#00FFFF","#20B2AA","#B0E0E6","#FFFFE0"],sectionFills:["#191970","#8B008B","#4B0082","#2F4F4F","#800000","#8B4513","#00008B"],sectionColours:["#fff"]},go={};var yo=po.leftMargin,vo={data:{startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},verticalPos:0,sequenceItems:[],init:function(){this.sequenceItems=[],this.data={startx:void 0,stopx:void 0,starty:void 0,stopy:void 0},this.verticalPos=0},updateVal:function(t,e,n,r){void 0===t[e]?t[e]=n:t[e]=r(n,t[e])},updateBounds:function(t,e,n,r){var i,a=this,o=0;this.sequenceItems.forEach((function(s){o++;var c=a.sequenceItems.length-o+1;a.updateVal(s,"starty",e-c*po.boxMargin,Math.min),a.updateVal(s,"stopy",r+c*po.boxMargin,Math.max),a.updateVal(vo.data,"startx",t-c*po.boxMargin,Math.min),a.updateVal(vo.data,"stopx",n+c*po.boxMargin,Math.max),"activation"!==i&&(a.updateVal(s,"startx",t-c*po.boxMargin,Math.min),a.updateVal(s,"stopx",n+c*po.boxMargin,Math.max),a.updateVal(vo.data,"starty",e-c*po.boxMargin,Math.min),a.updateVal(vo.data,"stopy",r+c*po.boxMargin,Math.max))}))},insert:function(t,e,n,r){var i=Math.min(t,n),a=Math.max(t,n),o=Math.min(e,r),s=Math.max(e,r);this.updateVal(vo.data,"startx",i,Math.min),this.updateVal(vo.data,"starty",o,Math.min),this.updateVal(vo.data,"stopx",a,Math.max),this.updateVal(vo.data,"stopy",s,Math.max),this.updateBounds(i,o,a,s)},bumpVerticalPos:function(t){this.verticalPos=this.verticalPos+t,this.data.stopy=this.verticalPos},getVerticalPos:function(){return this.verticalPos},getBounds:function(){return this.data}},mo=po.sectionFills,bo=po.sectionColours,xo=function(t,e,n){for(var r="",i=n+(2*po.height+po.diagramMarginY),a=0,o="#CCC",s="black",c=0,u=0;u tspan {\n fill: ").concat(t.actorTextColor,";\n stroke: none;\n }\n\n .actor-line {\n stroke: ").concat(t.actorLineColor,";\n }\n\n .messageLine0 {\n stroke-width: 1.5;\n stroke-dasharray: none;\n stroke: ").concat(t.signalColor,";\n }\n\n .messageLine1 {\n stroke-width: 1.5;\n stroke-dasharray: 2, 2;\n stroke: ").concat(t.signalColor,";\n }\n\n #arrowhead path {\n fill: ").concat(t.signalColor,";\n stroke: ").concat(t.signalColor,";\n }\n\n .sequenceNumber {\n fill: ").concat(t.sequenceNumberColor,";\n }\n\n #sequencenumber {\n fill: ").concat(t.signalColor,";\n }\n\n #crosshead path {\n fill: ").concat(t.signalColor,";\n stroke: ").concat(t.signalColor,";\n }\n\n .messageText {\n fill: ").concat(t.signalTextColor,";\n stroke: ").concat(t.signalTextColor,";\n }\n\n .labelBox {\n stroke: ").concat(t.labelBoxBorderColor,";\n fill: ").concat(t.labelBoxBkgColor,";\n }\n\n .labelText, .labelText > tspan {\n fill: ").concat(t.labelTextColor,";\n stroke: none;\n }\n\n .loopText, .loopText > tspan {\n fill: ").concat(t.loopTextColor,";\n stroke: none;\n }\n\n .loopLine {\n stroke-width: 2px;\n stroke-dasharray: 2, 2;\n stroke: ").concat(t.labelBoxBorderColor,";\n fill: ").concat(t.labelBoxBorderColor,";\n }\n\n .note {\n //stroke: #decc93;\n stroke: ").concat(t.noteBorderColor,";\n fill: ").concat(t.noteBkgColor,";\n }\n\n .noteText, .noteText > tspan {\n fill: ").concat(t.noteTextColor,";\n stroke: none;\n }\n\n .activation0 {\n fill: ").concat(t.activationBkgColor,";\n stroke: ").concat(t.activationBorderColor,";\n }\n\n .activation1 {\n fill: ").concat(t.activationBkgColor,";\n stroke: ").concat(t.activationBorderColor,";\n }\n\n .activation2 {\n fill: ").concat(t.activationBkgColor,";\n stroke: ").concat(t.activationBorderColor,";\n }\n")},gantt:function(t){return'\n .mermaid-main-font {\n font-family: "trebuchet ms", verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n\n .section {\n stroke: none;\n opacity: 0.2;\n }\n\n .section0 {\n fill: '.concat(t.sectionBkgColor,";\n }\n\n .section2 {\n fill: ").concat(t.sectionBkgColor2,";\n }\n\n .section1,\n .section3 {\n fill: ").concat(t.altSectionBkgColor,";\n opacity: 0.2;\n }\n\n .sectionTitle0 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle1 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle2 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle3 {\n fill: ").concat(t.titleColor,";\n }\n\n .sectionTitle {\n text-anchor: start;\n font-size: 11px;\n text-height: 14px;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n\n }\n\n\n /* Grid and axis */\n\n .grid .tick {\n stroke: ").concat(t.gridColor,";\n opacity: 0.8;\n shape-rendering: crispEdges;\n text {\n font-family: ").concat(t.fontFamily,";\n fill: ").concat(t.textColor,";\n }\n }\n\n .grid path {\n stroke-width: 0;\n }\n\n\n /* Today line */\n\n .today {\n fill: none;\n stroke: ").concat(t.todayLineColor,";\n stroke-width: 2px;\n }\n\n\n /* Task styling */\n\n /* Default task */\n\n .task {\n stroke-width: 2;\n }\n\n .taskText {\n text-anchor: middle;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n\n .taskText:not([font-size]) {\n font-size: 11px;\n }\n\n .taskTextOutsideRight {\n fill: ").concat(t.taskTextDarkColor,";\n text-anchor: start;\n font-size: 11px;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n\n }\n\n .taskTextOutsideLeft {\n fill: ").concat(t.taskTextDarkColor,";\n text-anchor: end;\n font-size: 11px;\n }\n\n /* Special case clickable */\n .task.clickable {\n cursor: pointer;\n }\n .taskText.clickable {\n cursor: pointer;\n fill: ").concat(t.taskTextClickableColor," !important;\n font-weight: bold;\n }\n\n .taskTextOutsideLeft.clickable {\n cursor: pointer;\n fill: ").concat(t.taskTextClickableColor," !important;\n font-weight: bold;\n }\n\n .taskTextOutsideRight.clickable {\n cursor: pointer;\n fill: ").concat(t.taskTextClickableColor," !important;\n font-weight: bold;\n }\n\n /* Specific task settings for the sections*/\n\n .taskText0,\n .taskText1,\n .taskText2,\n .taskText3 {\n fill: ").concat(t.taskTextColor,";\n }\n\n .task0,\n .task1,\n .task2,\n .task3 {\n fill: ").concat(t.taskBkgColor,";\n stroke: ").concat(t.taskBorderColor,";\n }\n\n .taskTextOutside0,\n .taskTextOutside2\n {\n fill: ").concat(t.taskTextOutsideColor,";\n }\n\n .taskTextOutside1,\n .taskTextOutside3 {\n fill: ").concat(t.taskTextOutsideColor,";\n }\n\n\n /* Active task */\n\n .active0,\n .active1,\n .active2,\n .active3 {\n fill: ").concat(t.activeTaskBkgColor,";\n stroke: ").concat(t.activeTaskBorderColor,";\n }\n\n .activeText0,\n .activeText1,\n .activeText2,\n .activeText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n\n /* Completed task */\n\n .done0,\n .done1,\n .done2,\n .done3 {\n stroke: ").concat(t.doneTaskBorderColor,";\n fill: ").concat(t.doneTaskBkgColor,";\n stroke-width: 2;\n }\n\n .doneText0,\n .doneText1,\n .doneText2,\n .doneText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n\n /* Tasks on the critical line */\n\n .crit0,\n .crit1,\n .crit2,\n .crit3 {\n stroke: ").concat(t.critBorderColor,";\n fill: ").concat(t.critBkgColor,";\n stroke-width: 2;\n }\n\n .activeCrit0,\n .activeCrit1,\n .activeCrit2,\n .activeCrit3 {\n stroke: ").concat(t.critBorderColor,";\n fill: ").concat(t.activeTaskBkgColor,";\n stroke-width: 2;\n }\n\n .doneCrit0,\n .doneCrit1,\n .doneCrit2,\n .doneCrit3 {\n stroke: ").concat(t.critBorderColor,";\n fill: ").concat(t.doneTaskBkgColor,";\n stroke-width: 2;\n cursor: pointer;\n shape-rendering: crispEdges;\n }\n\n .milestone {\n transform: rotate(45deg) scale(0.8,0.8);\n }\n\n .milestoneText {\n font-style: italic;\n }\n .doneCritText0,\n .doneCritText1,\n .doneCritText2,\n .doneCritText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n .activeCritText0,\n .activeCritText1,\n .activeCritText2,\n .activeCritText3 {\n fill: ").concat(t.taskTextDarkColor," !important;\n }\n\n .titleText {\n text-anchor: middle;\n font-size: 18px;\n fill: ").concat(t.textColor," ;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n")},classDiagram:wo,"classDiagram-v2":wo,class:wo,stateDiagram:To,state:To,git:function(){return"\n .commit-id,\n .commit-msg,\n .branch-label {\n fill: lightgrey;\n color: lightgrey;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n }\n"},info:function(){return""},pie:function(t){return".pieTitleText {\n text-anchor: middle;\n font-size: 25px;\n fill: ".concat(t.taskTextDarkColor,";\n font-family: ").concat(t.fontFamily,";\n }\n .slice {\n font-family: ").concat(t.fontFamily,";\n fill: ").concat(t.textColor,";\n // fill: white;\n }\n .legend text {\n fill: ").concat(t.taskTextDarkColor,";\n font-family: ").concat(t.fontFamily,";\n font-size: 17px;\n }\n")},er:function(t){return"\n .entityBox {\n fill: ".concat(t.mainBkg,";\n stroke: ").concat(t.nodeBorder,";\n }\n\n .relationshipLabelBox {\n fill: ").concat(t.tertiaryColor,";\n opacity: 0.7;\n background-color: ").concat(t.tertiaryColor,";\n rect {\n opacity: 0.5;\n }\n }\n\n .relationshipLine {\n stroke: ").concat(t.lineColor,";\n }\n")},journey:function(t){return".label {\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n color: ".concat(t.textColor,";\n }\n .mouth {\n stroke: #666;\n }\n\n line {\n stroke: ").concat(t.textColor,"\n }\n\n .legend {\n fill: ").concat(t.textColor,";\n }\n\n .label text {\n fill: #333;\n }\n .label {\n color: ").concat(t.textColor,"\n }\n\n .face {\n fill: #FFF8DC;\n stroke: #999;\n }\n\n .node rect,\n .node circle,\n .node ellipse,\n .node polygon,\n .node path {\n fill: ").concat(t.mainBkg,";\n stroke: ").concat(t.nodeBorder,";\n stroke-width: 1px;\n }\n\n .node .label {\n text-align: center;\n }\n .node.clickable {\n cursor: pointer;\n }\n\n .arrowheadPath {\n fill: ").concat(t.arrowheadColor,";\n }\n\n .edgePath .path {\n stroke: ").concat(t.lineColor,";\n stroke-width: 1.5px;\n }\n\n .flowchart-link {\n stroke: ").concat(t.lineColor,";\n fill: none;\n }\n\n .edgeLabel {\n background-color: ").concat(t.edgeLabelBackground,";\n rect {\n opacity: 0.5;\n }\n text-align: center;\n }\n\n .cluster rect {\n }\n\n .cluster text {\n fill: ").concat(t.titleColor,";\n }\n\n div.mermaidTooltip {\n position: absolute;\n text-align: center;\n max-width: 200px;\n padding: 2px;\n font-family: 'trebuchet ms', verdana, arial;\n font-family: var(--mermaid-font-family);\n font-size: 12px;\n background: ").concat(t.tertiaryColor,";\n border: 1px solid ").concat(t.border2,";\n border-radius: 2px;\n pointer-events: none;\n z-index: 100;\n }\n\n .task-type-0, .section-type-0 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType0):"",";\n }\n .task-type-1, .section-type-1 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType1):"",";\n }\n .task-type-2, .section-type-2 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType2):"",";\n }\n .task-type-3, .section-type-3 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType3):"",";\n }\n .task-type-4, .section-type-4 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType4):"",";\n }\n .task-type-5, .section-type-5 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType5):"",";\n }\n .task-type-6, .section-type-6 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType6):"",";\n }\n .task-type-7, .section-type-7 {\n ").concat(t.fillType0?"fill: ".concat(t.fillType7):"",";\n }\n")}},Ao=function(t,e,n){return" {\n font-family: ".concat(n.fontFamily,";\n font-size: ").concat(n.fontSize,";\n fill: ").concat(n.textColor,"\n }\n\n /* Classes common for multiple diagrams */\n\n .error-icon {\n fill: ").concat(n.errorBkgColor,";\n }\n .error-text {\n fill: ").concat(n.errorTextColor,";\n stroke: ").concat(n.errorTextColor,";\n }\n\n .edge-thickness-normal {\n stroke-width: 2px;\n }\n .edge-thickness-thick {\n stroke-width: 3.5px\n }\n .edge-pattern-solid {\n stroke-dasharray: 0;\n }\n\n .edge-pattern-dashed{\n stroke-dasharray: 3;\n }\n .edge-pattern-dotted {\n stroke-dasharray: 2;\n }\n\n .marker {\n fill: ").concat(n.lineColor,";\n }\n .marker.cross {\n stroke: ").concat(n.lineColor,";\n }\n\n svg {\n font-family: ").concat(n.fontFamily,";\n font-size: ").concat(n.fontSize,";\n }\n\n ").concat(Co[t](n),"\n\n ").concat(e,"\n\n ").concat(t," { fill: apa;}\n")};function So(t){return(So="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var Mo={},Oo=function(t,e,n){switch(f.debug("Directive type=".concat(e.type," with args:"),e.args),e.type){case"init":case"initialize":["config"].forEach((function(t){void 0!==e.args[t]&&("flowchart-v2"===n&&(n="flowchart"),e.args[n]=e.args[t],delete e.args[t])})),e.args,xt(e.args);break;case"wrap":case"nowrap":t&&t.setWrap&&t.setWrap("wrap"===e.type);break;default:f.warn("Unhandled directive: source: '%%{".concat(e.type,": ").concat(JSON.stringify(e.args?e.args:{}),"}%%"),e)}};function Do(t){ha(t.git),le(t.flowchart),Qe(t.flowchart),void 0!==t.sequenceDiagram&&Yn.setConf(P(t.sequence,t.sequenceDiagram)),Yn.setConf(t.sequence),kr(t.gantt),Kr(t.class),Oi(t.state),Ii(t.state),ba(t.class),Oa(t.class),Wa(t.er),_o(t.journey),ka(t.class)}function No(){}var Bo=Object.freeze({render:function(t,e,n,r){_t();var i=e,a=U.detectInit(i);a&&xt(a);var u=mt();if(console.warn("Render with config after adding new directives",u.sequence),e.length>u.maxTextSize&&(i="graph TB;a[Maximum text size in diagram exceeded];style a fill:#faa"),void 0!==r)r.innerHTML="",Object(s.select)(r).append("div").attr("id","d"+t).attr("style","font-family: "+u.fontFamily).append("svg").attr("id",t).attr("width","100%").attr("xmlns","http://www.w3.org/2000/svg").append("g");else{var l=document.getElementById(t);l&&l.remove();var h=document.querySelector("#d"+t);h&&h.remove(),Object(s.select)("body").append("div").attr("id","d"+t).append("svg").attr("id",t).attr("width","100%").attr("xmlns","http://www.w3.org/2000/svg").append("g")}window.txt=i,i=function(t){var e=t;return e=(e=(e=e.replace(/style.*:\S*#.*;/g,(function(t){return t.substring(0,t.length-1)}))).replace(/classDef.*:\S*#.*;/g,(function(t){return t.substring(0,t.length-1)}))).replace(/#\w+;/g,(function(t){var e=t.substring(1,t.length-1);return/^\+?\d+$/.test(e)?"fl°°"+e+"¶ß":"fl°"+e+"¶ß"}))}(i);var d=Object(s.select)("#d"+t).node(),p=U.detectType(i),g=d.firstChild,y=g.firstChild,v="";if(void 0!==u.themeCSS&&(v+="\n".concat(u.themeCSS)),void 0!==u.fontFamily&&(v+="\n:root { --mermaid-font-family: ".concat(u.fontFamily,"}")),void 0!==u.altFontFamily&&(v+="\n:root { --mermaid-alt-font-family: ".concat(u.altFontFamily,"}")),"flowchart"===p||"flowchart-v2"===p||"graph"===p){var m=he(i);for(var b in m)v+="\n.".concat(b," > * { ").concat(m[b].styles.join(" !important; ")," !important; }"),m[b].textStyles&&(v+="\n.".concat(b," tspan { ").concat(m[b].textStyles.join(" !important; ")," !important; }"))}var x=(new o.a)("#".concat(t),Ao(p,v,u.themeVariables)),_=document.createElement("style");_.innerHTML=x,g.insertBefore(_,y);try{switch(p){case"git":u.flowchart.arrowMarkerAbsolute=u.arrowMarkerAbsolute,ha(u.git),fa(i,t,!1);break;case"flowchart":u.flowchart.arrowMarkerAbsolute=u.arrowMarkerAbsolute,le(u.flowchart),fe(i,t,!1);break;case"flowchart-v2":u.flowchart.arrowMarkerAbsolute=u.arrowMarkerAbsolute,Qe(u.flowchart),Ke(i,t,!1);break;case"sequence":u.sequence.arrowMarkerAbsolute=u.arrowMarkerAbsolute,u.sequenceDiagram?(Yn.setConf(Object.assign(u.sequence,u.sequenceDiagram)),console.error("`mermaid config.sequenceDiagram` has been renamed to `config.sequence`. Please update your mermaid config.")):Yn.setConf(u.sequence),Yn.draw(i,t);break;case"gantt":u.gantt.arrowMarkerAbsolute=u.arrowMarkerAbsolute,kr(u.gantt),wr(i,t);break;case"class":u.class.arrowMarkerAbsolute=u.arrowMarkerAbsolute,Kr(u.class),ti(i,t);break;case"classDiagram":u.class.arrowMarkerAbsolute=u.arrowMarkerAbsolute,ni(u.class),ri(i,t);break;case"state":u.class.arrowMarkerAbsolute=u.arrowMarkerAbsolute,Oi(u.state),Di(i,t);break;case"stateDiagram":u.class.arrowMarkerAbsolute=u.arrowMarkerAbsolute,Ii(u.state),ji(i,t);break;case"info":u.class.arrowMarkerAbsolute=u.arrowMarkerAbsolute,ba(u.class),xa(i,t,c.version);break;case"pie":u.class.arrowMarkerAbsolute=u.arrowMarkerAbsolute,Oa(u.class),Da(i,t,c.version);break;case"er":Wa(u.er),Va(i,t,c.version);break;case"journey":_o(u.journey),ko(i,t,c.version)}}catch(e){throw wa(t,c.version),e}Object(s.select)('[id="'.concat(t,'"]')).selectAll("foreignobject > *").attr("xmlns","http://www.w3.org/1999/xhtml");var k=Object(s.select)("#d"+t).node().innerHTML;if(f.debug("cnf.arrowMarkerAbsolute",u.arrowMarkerAbsolute),u.arrowMarkerAbsolute&&"false"!==u.arrowMarkerAbsolute||(k=k.replace(/marker-end="url\(.*?#/g,'marker-end="url(#',"g")),k=function(t){var e=t;return e=(e=(e=e.replace(/fl°°/g,(function(){return"&#"}))).replace(/fl°/g,(function(){return"&"}))).replace(/¶ß/g,(function(){return";"}))}(k),void 0!==n)switch(p){case"flowchart":case"flowchart-v2":n(k,zt.bindFunctions);break;case"gantt":n(k,mr.bindFunctions);break;case"class":n(k,Ir.bindFunctions);break;default:n(k)}else f.debug("CB = undefined!");var w=Object(s.select)("#d"+t).node();return null!==w&&"function"==typeof w.remove&&Object(s.select)("#d"+t).node().remove(),k},parse:function(t){var e=U.detectInit(t);e&&f.debug("reinit ",e);var n,r=U.detectType(t);switch(f.debug("Type "+r),r){case"git":(n=ta.a).parser.yy=Qi;break;case"flowchart":case"flowchart-v2":zt.clear(),(n=$t.a).parser.yy=zt;break;case"sequence":(n=ln.a).parser.yy=Cn;break;case"gantt":(n=Un.a).parser.yy=mr;break;case"class":case"classDiagram":(n=Rr.a).parser.yy=Ir;break;case"state":case"stateDiagram":(n=xi.a).parser.yy=mi;break;case"info":f.debug("info info info"),(n=va.a).parser.yy=ga;break;case"pie":f.debug("pie"),(n=Sa.a).parser.yy=Ca;break;case"er":f.debug("er"),(n=Ia.a).parser.yy=Fa;break;case"journey":f.debug("Journey"),(n=Ga.a).parser.yy=eo}return n.parser.yy.graphType=r,n.parser.yy.parseError=function(t,e){throw{str:t,hash:e}},n.parse(t),n},parseDirective:function(t,e,n,r){try{if(void 0!==e)switch(e=e.trim(),n){case"open_directive":Mo={};break;case"type_directive":Mo.type=e.toLowerCase();break;case"arg_directive":Mo.args=JSON.parse(e);break;case"close_directive":Oo(t,Mo,r),Mo=null}}catch(t){f.error("Error while rendering sequenceDiagram directive: ".concat(e," jison context: ").concat(n)),f.error(t.message)}},initialize:function(t){t&&t.fontFamily&&(t.themeVariables&&t.themeVariables.fontFamily||(t.themeVariables={fontFamily:t.fontFamily})),lt=P({},t),t&&t.theme&&ct[t.theme]?t.themeVariables=ct[t.theme].getThemeVariables(t.themeVariables):t&&(t.themeVariables=ct.default.getThemeVariables(t.themeVariables));var e="object"===So(t)?function(t){return dt=P({},ft),dt=P(dt,t),t.theme&&(dt.themeVariables=ct[t.theme].getThemeVariables(t.themeVariables)),gt=yt(dt,pt),dt}(t):vt();Do(e),d(e.logLevel)},reinitialize:No,getConfig:mt,setConfig:function(t){return P(gt,t),mt()},getSiteConfig:vt,updateSiteConfig:function(t){return dt=P(dt,t),yt(dt,pt),dt},reset:function(){_t()},globalReset:function(){_t(),Do(mt())},defaultConfig:ft});d(mt().logLevel),_t(mt());var Lo=Bo,Fo=function(){Po.startOnLoad?Lo.getConfig().startOnLoad&&Po.init():void 0===Po.startOnLoad&&(f.debug("In start, no config"),Lo.getConfig().startOnLoad&&Po.init())};"undefined"!=typeof document&& +/*! + * Wait for document loaded before starting the execution + */ +window.addEventListener("load",(function(){Fo()}),!1);var Po={startOnLoad:!0,htmlLabels:!0,mermaidAPI:Lo,parse:Lo.parse,render:Lo.render,init:function(){var t,e,n,r=this,a=Lo.getConfig();arguments.length>=2?( +/*! sequence config was passed as #1 */ +void 0!==arguments[0]&&(Po.sequenceConfig=arguments[0]),t=arguments[1]):t=arguments[0],"function"==typeof arguments[arguments.length-1]?(e=arguments[arguments.length-1],f.debug("Callback function found")):void 0!==a.mermaid&&("function"==typeof a.mermaid.callback?(e=a.mermaid.callback,f.debug("Callback function found")):f.debug("No Callback function found")),t=void 0===t?document.querySelectorAll(".mermaid"):"string"==typeof t?document.querySelectorAll(t):t instanceof window.Node?[t]:t,f.debug("Start On Load before: "+Po.startOnLoad),void 0!==Po.startOnLoad&&(f.debug("Start On Load inner: "+Po.startOnLoad),Lo.updateSiteConfig({startOnLoad:Po.startOnLoad})),void 0!==Po.ganttConfig&&Lo.updateSiteConfig({gantt:Po.ganttConfig});for(var o=function(a){var o=t[a]; +/*! Check if previously processed */if(o.getAttribute("data-processed"))return"continue";o.setAttribute("data-processed",!0);var s="mermaid-".concat(Date.now());n=i(n=o.innerHTML).trim().replace(//gi,"
    ");var c=U.detectInit(n);c&&f.debug("Detected early reinit: ",c);try{Lo.render(s,n,(function(t,n){o.innerHTML=t,void 0!==e&&e(s),n&&n(o)}),o)}catch(t){f.warn("Syntax Error rendering"),f.warn(t),r.parseError&&r.parseError(t)}},s=0;s["html","body"].indexOf(a(e));){if("none"!==(r=c(e)).transform||"none"!==r.perspective||r.willChange&&"auto"!==r.willChange){r=e;break e}e=e.parentNode}r=null}return r||t}function v(e){var t=new Map,n=new Set,r=[];return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||function e(o){n.add(o.name),[].concat(o.requires||[],o.requiresIfExists||[]).forEach((function(r){n.has(r)||(r=t.get(r))&&e(r)})),r.push(o)}(e)})),r}function b(e){var t;return function(){return t||(t=new Promise((function(n){Promise.resolve().then((function(){t=void 0,n(e())}))}))),t}}function y(e){return e.split("-")[0]}function O(e,t){var r=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(r instanceof n(r).ShadowRoot||r instanceof ShadowRoot)do{if(t&&e.isSameNode(t))return!0;t=t.parentNode||t.host}while(t);return!1}function w(e){return Object.assign(Object.assign({},e),{},{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function x(e,o){if("viewport"===o){o=n(e);var a=s(e);o=o.visualViewport;var p=a.clientWidth;a=a.clientHeight;var l=0,u=0;o&&(p=o.width,a=o.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(l=o.offsetLeft,u=o.offsetTop)),e=w(e={width:p,height:a,x:l+f(e),y:u})}else i(o)?((e=t(o)).top+=o.clientTop,e.left+=o.clientLeft,e.bottom=e.top+o.clientHeight,e.right=e.left+o.clientWidth,e.width=o.clientWidth,e.height=o.clientHeight,e.x=e.left,e.y=e.top):(u=s(e),e=s(u),l=r(u),o=u.ownerDocument.body,p=Math.max(e.scrollWidth,e.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),a=Math.max(e.scrollHeight,e.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),u=-l.scrollLeft+f(u),l=-l.scrollTop,"rtl"===c(o||e).direction&&(u+=Math.max(e.clientWidth,o?o.clientWidth:0)-p),e=w({width:p,height:a,x:u,y:l}));return e}function j(e,t,n){return t="clippingParents"===t?function(e){var t=m(d(e)),n=0<=["absolute","fixed"].indexOf(c(e).position)&&i(e)?g(e):e;return o(n)?t.filter((function(e){return o(e)&&O(e,n)&&"body"!==a(e)})):[]}(e):[].concat(t),(n=(n=[].concat(t,[n])).reduce((function(t,n){return n=x(e,n),t.top=Math.max(n.top,t.top),t.right=Math.min(n.right,t.right),t.bottom=Math.min(n.bottom,t.bottom),t.left=Math.max(n.left,t.left),t}),x(e,n[0]))).width=n.right-n.left,n.height=n.bottom-n.top,n.x=n.left,n.y=n.top,n}function M(e){return 0<=["top","bottom"].indexOf(e)?"x":"y"}function E(e){var t=e.reference,n=e.element,r=(e=e.placement)?y(e):null;e=e?e.split("-")[1]:null;var o=t.x+t.width/2-n.width/2,i=t.y+t.height/2-n.height/2;switch(r){case"top":o={x:o,y:t.y-n.height};break;case"bottom":o={x:o,y:t.y+t.height};break;case"right":o={x:t.x+t.width,y:i};break;case"left":o={x:t.x-n.width,y:i};break;default:o={x:t.x,y:t.y}}if(null!=(r=r?M(r):null))switch(i="y"===r?"height":"width",e){case"start":o[r]=Math.floor(o[r])-Math.floor(t[i]/2-n[i]/2);break;case"end":o[r]=Math.floor(o[r])+Math.ceil(t[i]/2-n[i]/2)}return o}function D(e){return Object.assign(Object.assign({},{top:0,right:0,bottom:0,left:0}),e)}function P(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function L(e,n){void 0===n&&(n={});var r=n;n=void 0===(n=r.placement)?e.placement:n;var i=r.boundary,a=void 0===i?"clippingParents":i,f=void 0===(i=r.rootBoundary)?"viewport":i;i=void 0===(i=r.elementContext)?"popper":i;var c=r.altBoundary,p=void 0!==c&&c;r=D("number"!=typeof(r=void 0===(r=r.padding)?0:r)?r:P(r,T));var l=e.elements.reference;c=e.rects.popper,a=j(o(p=e.elements[p?"popper"===i?"reference":"popper":i])?p:p.contextElement||s(e.elements.popper),a,f),p=E({reference:f=t(l),element:c,strategy:"absolute",placement:n}),c=w(Object.assign(Object.assign({},c),p)),f="popper"===i?c:f;var u={top:a.top-f.top+r.top,bottom:f.bottom-a.bottom+r.bottom,left:a.left-f.left+r.left,right:f.right-a.right+r.right};if(e=e.modifiersData.offset,"popper"===i&&e){var d=e[n];Object.keys(u).forEach((function(e){var t=0<=["right","bottom"].indexOf(e)?1:-1,n=0<=["top","bottom"].indexOf(e)?"y":"x";u[e]+=d[n]*t}))}return u}function k(){for(var e=arguments.length,t=Array(e),n=0;n(v.devicePixelRatio||1)?"translate("+e+"px, "+l+"px)":"translate3d("+e+"px, "+l+"px, 0)",d)):Object.assign(Object.assign({},r),{},((t={})[h]=a?l+"px":"",t[m]=u?e+"px":"",t.transform="",t))}function A(e){return e.replace(/left|right|bottom|top/g,(function(e){return G[e]}))}function H(e){return e.replace(/start|end/g,(function(e){return J[e]}))}function R(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function S(e){return["top","right","bottom","left"].some((function(t){return 0<=e[t]}))}var T=["top","bottom","right","left"],q=T.reduce((function(e,t){return e.concat([t+"-start",t+"-end"])}),[]),C=[].concat(T,["auto"]).reduce((function(e,t){return e.concat([t,t+"-start",t+"-end"])}),[]),N="beforeRead read afterRead beforeMain main afterMain beforeWrite write afterWrite".split(" "),V={placement:"bottom",modifiers:[],strategy:"absolute"},I={passive:!0},_={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,r=e.instance,o=(e=e.options).scroll,i=void 0===o||o,a=void 0===(e=e.resize)||e,s=n(t.elements.popper),f=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&f.forEach((function(e){e.addEventListener("scroll",r.update,I)})),a&&s.addEventListener("resize",r.update,I),function(){i&&f.forEach((function(e){e.removeEventListener("scroll",r.update,I)})),a&&s.removeEventListener("resize",r.update,I)}},data:{}},U={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state;t.modifiersData[e.name]=E({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},z={top:"auto",right:"auto",bottom:"auto",left:"auto"},F={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options;e=void 0===(e=n.gpuAcceleration)||e,n=void 0===(n=n.adaptive)||n,e={placement:y(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:e},null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign(Object.assign({},t.styles.popper),W(Object.assign(Object.assign({},e),{},{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:n})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign(Object.assign({},t.styles.arrow),W(Object.assign(Object.assign({},e),{},{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1})))),t.attributes.popper=Object.assign(Object.assign({},t.attributes.popper),{},{"data-popper-placement":t.placement})},data:{}},X={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},r=t.attributes[e]||{},o=t.elements[e];i(o)&&a(o)&&(Object.assign(o.style,n),Object.keys(r).forEach((function(e){var t=r[e];!1===t?o.removeAttribute(e):o.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var r=t.elements[e],o=t.attributes[e]||{};e=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{}),i(r)&&a(r)&&(Object.assign(r.style,e),Object.keys(o).forEach((function(e){r.removeAttribute(e)})))}))}},requires:["computeStyles"]},Y={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.name,r=void 0===(e=e.options.offset)?[0,0]:e,o=(e=C.reduce((function(e,n){var o=t.rects,i=y(n),a=0<=["left","top"].indexOf(i)?-1:1,s="function"==typeof r?r(Object.assign(Object.assign({},o),{},{placement:n})):r;return o=(o=s[0])||0,s=((s=s[1])||0)*a,i=0<=["left","right"].indexOf(i)?{x:s,y:o}:{x:o,y:s},e[n]=i,e}),{}))[t.placement],i=o.x;o=o.y,null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=i,t.modifiersData.popperOffsets.y+=o),t.modifiersData[n]=e}},G={left:"right",right:"left",bottom:"top",top:"bottom"},J={start:"end",end:"start"},K={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options;if(e=e.name,!t.modifiersData[e]._skip){var r=n.mainAxis;r=void 0===r||r;var o=n.altAxis;o=void 0===o||o;var i=n.fallbackPlacements,a=n.padding,s=n.boundary,f=n.rootBoundary,c=n.altBoundary,p=n.flipVariations,l=void 0===p||p,u=n.allowedAutoPlacements;p=y(n=t.options.placement),i=i||(p!==n&&l?function(e){if("auto"===y(e))return[];var t=A(e);return[H(e),t,H(t)]}(n):[A(n)]);var d=[n].concat(i).reduce((function(e,n){return e.concat("auto"===y(n)?function(e,t){void 0===t&&(t={});var n=t.boundary,r=t.rootBoundary,o=t.padding,i=t.flipVariations,a=t.allowedAutoPlacements,s=void 0===a?C:a,f=t.placement.split("-")[1];0===(i=(t=f?i?q:q.filter((function(e){return e.split("-")[1]===f})):T).filter((function(e){return 0<=s.indexOf(e)}))).length&&(i=t);var c=i.reduce((function(t,i){return t[i]=L(e,{placement:i,boundary:n,rootBoundary:r,padding:o})[y(i)],t}),{});return Object.keys(c).sort((function(e,t){return c[e]-c[t]}))}(t,{placement:n,boundary:s,rootBoundary:f,padding:a,flipVariations:l,allowedAutoPlacements:u}):n)}),[]);n=t.rects.reference,i=t.rects.popper;var m=new Map;p=!0;for(var h=d[0],g=0;gi[x]&&(O=A(O)),x=A(O),w=[],r&&w.push(0>=j[b]),o&&w.push(0>=j[O],0>=j[x]),w.every((function(e){return e}))){h=v,p=!1;break}m.set(v,w)}if(p)for(r=function(e){var t=d.find((function(t){if(t=m.get(t))return t.slice(0,e).every((function(e){return e}))}));if(t)return h=t,"break"},o=l?3:1;0=g.reach);A+=w.value.length,w=w.next){var E=w.value;if(n.length>e.length)return;if(!(E instanceof i)){var P,L=1;if(y){if(!(P=l(b,A,e,m))||P.index>=e.length)break;var S=P.index,O=P.index+P[0].length,j=A;for(j+=w.value.length;S>=j;)j+=(w=w.next).value.length;if(A=j-=w.value.length,w.value instanceof i)continue;for(var C=w;C!==n.tail&&(jg.reach&&(g.reach=W);var z=w.prev;if(_&&(z=u(n,z,_),A+=_.length),c(n,z,L),w=u(n,z,new i(f,p?a.tokenize(N,p):N,k,N)),M&&u(n,w,M),L>1){var I={cause:f+","+d,reach:W};o(e,n,t,w.prev,A,I),g&&I.reach>g.reach&&(g.reach=I.reach)}}}}}}function s(){var e={value:null,prev:null,next:null},n={value:null,prev:e,next:null};e.next=n,this.head=e,this.tail=n,this.length=0}function u(e,n,t){var r=n.next,a={value:t,prev:n,next:r};return n.next=a,r.prev=a,e.length++,a}function c(e,n,t){for(var r=n.next,a=0;a"+i.content+""},!e.document)return e.addEventListener?(a.disableWorkerMessageHandler||e.addEventListener("message",(function(n){var t=JSON.parse(n.data),r=t.language,i=t.code,l=t.immediateClose;e.postMessage(a.highlight(i,a.languages[r],r)),l&&e.close()}),!1),a):a;var g=a.util.currentScript();function f(){a.manual||a.highlightAll()}if(g&&(a.filename=g.src,g.hasAttribute("data-manual")&&(a.manual=!0)),!a.manual){var h=document.readyState;"loading"===h||"interactive"===h&&g&&g.defer?document.addEventListener("DOMContentLoaded",f):window.requestAnimationFrame?window.requestAnimationFrame(f):window.setTimeout(f,16)}return a}(_self);"undefined"!=typeof module&&module.exports&&(module.exports=Prism),"undefined"!=typeof global&&(global.Prism=Prism); +Prism.languages.markup={comment:{pattern://,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern://i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.languages.markup.doctype.inside["internal-subset"].inside=Prism.languages.markup,Prism.hooks.add("wrap",(function(a){"entity"===a.type&&(a.attributes.title=a.content.replace(/&/,"&"))})),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(a,e){var s={};s["language-"+e]={pattern:/(^$)/i,lookbehind:!0,inside:Prism.languages[e]},s.cdata=/^$/i;var t={"included-cdata":{pattern://i,inside:s}};t["language-"+e]={pattern:/[\s\S]+/,inside:Prism.languages[e]};var n={};n[a]={pattern:RegExp("(<__[^>]*>)(?:))*\\]\\]>|(?!)".replace(/__/g,(function(){return a})),"i"),lookbehind:!0,greedy:!0,inside:t},Prism.languages.insertBefore("markup","cdata",n)}}),Object.defineProperty(Prism.languages.markup.tag,"addAttribute",{value:function(a,e){Prism.languages.markup.tag.inside["special-attr"].push({pattern:RegExp("(^|[\"'\\s])(?:"+a+")\\s*=\\s*(?:\"[^\"]*\"|'[^']*'|[^\\s'\">=]+(?=[\\s>]))","i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[e,"language-"+e],inside:Prism.languages[e]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.ssml=Prism.languages.xml,Prism.languages.atom=Prism.languages.xml,Prism.languages.rss=Prism.languages.xml; +!function(s){var e=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;s.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:[^;{\\s\"']|\\s+(?!\\s)|"+e.source+")*?(?:;|(?=\\s*\\{))"),inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+e.source+"|(?:[^\\\\\r\n()\"']|\\\\[^])*)\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+e.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+e.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:e,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},s.languages.css.atrule.inside.rest=s.languages.css;var t=s.languages.markup;t&&(t.tag.addInlined("style","css"),t.tag.addAttribute("style","css"))}(Prism); +Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}; +Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp("(^|[^\\w$])(?:NaN|Infinity|0[bB][01]+(?:_[01]+)*n?|0[oO][0-7]+(?:_[0-7]+)*n?|0[xX][\\dA-Fa-f]+(?:_[\\dA-Fa-f]+)*n?|\\d+(?:_\\d+)*n|(?:\\d+(?:_\\d+)*(?:\\.(?:\\d+(?:_\\d+)*)?)?|\\.\\d+(?:_\\d+)*)(?:[Ee][+-]?\\d+(?:_\\d+)*)?)(?![\\w$])"),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:RegExp("((?:^|[^$\\w\\xA0-\\uFFFF.\"'\\])\\s]|\\b(?:return|yield))\\s*)/(?:(?:\\[(?:[^\\]\\\\\r\n]|\\\\.)*\\]|\\\\.|[^/\\\\\\[\r\n])+/[dgimyus]{0,7}|(?:\\[(?:[^[\\]\\\\\r\n]|\\\\.|\\[(?:[^[\\]\\\\\r\n]|\\\\.|\\[(?:[^[\\]\\\\\r\n]|\\\\.)*\\])*\\])*\\]|\\\\.|[^/\\\\\\[\r\n])+/[dgimyus]{0,7}v[dgimyus]{0,7})(?=(?:\\s|/\\*(?:[^*]|\\*(?!/))*\\*/)*(?:$|[\r\n,.;:})\\]]|//))"),lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:Prism.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),Prism.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),Prism.languages.markup&&(Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.markup.tag.addAttribute("on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)","javascript")),Prism.languages.js=Prism.languages.javascript; +!function(n){var i="(?:ALPHA|BIT|CHAR|CR|CRLF|CTL|DIGIT|DQUOTE|HEXDIG|HTAB|LF|LWSP|OCTET|SP|VCHAR|WSP)";n.languages.abnf={comment:/;.*/,string:{pattern:/(?:%[is])?"[^"\n\r]*"/,greedy:!0,inside:{punctuation:/^%[is]/}},range:{pattern:/%(?:b[01]+-[01]+|d\d+-\d+|x[A-F\d]+-[A-F\d]+)/i,alias:"number"},terminal:{pattern:/%(?:b[01]+(?:\.[01]+)*|d\d+(?:\.\d+)*|x[A-F\d]+(?:\.[A-F\d]+)*)/i,alias:"number"},repetition:{pattern:/(^|[^\w-])(?:\d*\*\d*|\d+)/,lookbehind:!0,alias:"operator"},definition:{pattern:/(^[ \t]*)(?:[a-z][\w-]*|<[^<>\r\n]*>)(?=\s*=)/m,lookbehind:!0,alias:"keyword",inside:{punctuation:/<|>/}},"core-rule":{pattern:RegExp("(?:(^|[^<\\w-])"+i+"|<"+i+">)(?![\\w-])","i"),lookbehind:!0,alias:["rule","constant"],inside:{punctuation:/<|>/}},rule:{pattern:/(^|[^<\w-])[a-z][\w-]*|<[^<>\r\n]*>/i,lookbehind:!0,inside:{punctuation:/<|>/}},operator:/=\/?|\//,punctuation:/[()\[\]]/}}(Prism); +!function(e){e.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d.*$/m]};var n={"deleted-sign":"-","deleted-arrow":"<","inserted-sign":"+","inserted-arrow":">",unchanged:" ",diff:"!"};Object.keys(n).forEach((function(a){var i=n[a],r=[];/^\w+$/.test(a)||r.push(/\w+/.exec(a)[0]),"diff"===a&&r.push("bold"),e.languages.diff[a]={pattern:RegExp("^(?:["+i+"].*(?:\r\n?|\n|(?![\\s\\S])))+","m"),alias:r,inside:{line:{pattern:/(.)(?=[\s\S]).*(?:\r\n?|\n)?/,lookbehind:!0},prefix:{pattern:/[\s\S]/,alias:/\w+/.exec(a)[0]}}}})),Object.defineProperty(e.languages.diff,"PREFIXES",{value:n})}(Prism); +Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s--?\w+/}},coord:/^@@.*@@$/m,"commit-sha1":/^commit \w{40}$/m}; +!function(t){function a(t){return RegExp("(^(?:"+t+"):[ \t]*(?![ \t]))[^]+","i")}t.languages.http={"request-line":{pattern:/^(?:CONNECT|DELETE|GET|HEAD|OPTIONS|PATCH|POST|PRI|PUT|SEARCH|TRACE)\s(?:https?:\/\/|\/)\S*\sHTTP\/[\d.]+/m,inside:{method:{pattern:/^[A-Z]+\b/,alias:"property"},"request-target":{pattern:/^(\s)(?:https?:\/\/|\/)\S*(?=\s)/,lookbehind:!0,alias:"url",inside:t.languages.uri},"http-version":{pattern:/^(\s)HTTP\/[\d.]+/,lookbehind:!0,alias:"property"}}},"response-status":{pattern:/^HTTP\/[\d.]+ \d+ .+/m,inside:{"http-version":{pattern:/^HTTP\/[\d.]+/,alias:"property"},"status-code":{pattern:/^(\s)\d+(?=\s)/,lookbehind:!0,alias:"number"},"reason-phrase":{pattern:/^(\s).+/,lookbehind:!0,alias:"string"}}},header:{pattern:/^[\w-]+:.+(?:(?:\r\n?|\n)[ \t].+)*/m,inside:{"header-value":[{pattern:a("Content-Security-Policy"),lookbehind:!0,alias:["csp","languages-csp"],inside:t.languages.csp},{pattern:a("Public-Key-Pins(?:-Report-Only)?"),lookbehind:!0,alias:["hpkp","languages-hpkp"],inside:t.languages.hpkp},{pattern:a("Strict-Transport-Security"),lookbehind:!0,alias:["hsts","languages-hsts"],inside:t.languages.hsts},{pattern:a("[^:]+"),lookbehind:!0}],"header-name":{pattern:/^[^:]+/,alias:"keyword"},punctuation:/^:/}}};var e,n=t.languages,s={"application/javascript":n.javascript,"application/json":n.json||n.javascript,"application/xml":n.xml,"text/xml":n.xml,"text/html":n.html,"text/css":n.css,"text/plain":n.plain},i={"application/json":!0,"application/xml":!0};function r(t){var a=t.replace(/^[a-z]+\//,"");return"(?:"+t+"|\\w+/(?:[\\w.-]+\\+)+"+a+"(?![+\\w.-]))"}for(var p in s)if(s[p]){e=e||{};var l=i[p]?r(p):p;e[p.replace(/\//g,"-")]={pattern:RegExp("(content-type:\\s*"+l+"(?:(?:\r\n?|\n)[\\w-].*)*(?:\r(?:\n|(?!\n))|\n))[^ \t\\w-][^]*","i"),lookbehind:!0,inside:s[p]}}e&&t.languages.insertBefore("http","header",e)}(Prism); +!function(a){function e(a,e){return RegExp(a.replace(//g,(function(){return"(?!\\s)[_$a-zA-Z\\xA0-\\uFFFF](?:(?!\\s)[$\\w\\xA0-\\uFFFF])*"})),e)}a.languages.insertBefore("javascript","function-variable",{"method-variable":{pattern:RegExp("(\\.\\s*)"+a.languages.javascript["function-variable"].pattern.source),lookbehind:!0,alias:["function-variable","method","function","property-access"]}}),a.languages.insertBefore("javascript","function",{method:{pattern:RegExp("(\\.\\s*)"+a.languages.javascript.function.source),lookbehind:!0,alias:["function","property-access"]}}),a.languages.insertBefore("javascript","constant",{"known-class-name":[{pattern:/\b(?:(?:Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)?Array|ArrayBuffer|BigInt|Boolean|DataView|Date|Error|Function|Intl|JSON|(?:Weak)?(?:Map|Set)|Math|Number|Object|Promise|Proxy|Reflect|RegExp|String|Symbol|WebAssembly)\b/,alias:"class-name"},{pattern:/\b(?:[A-Z]\w*)Error\b/,alias:"class-name"}]}),a.languages.insertBefore("javascript","keyword",{imports:{pattern:e("(\\bimport\\b\\s*)(?:(?:\\s*,\\s*(?:\\*\\s*as\\s+|\\{[^{}]*\\}))?|\\*\\s*as\\s+|\\{[^{}]*\\})(?=\\s*\\bfrom\\b)"),lookbehind:!0,inside:a.languages.javascript},exports:{pattern:e("(\\bexport\\b\\s*)(?:\\*(?:\\s*as\\s+)?(?=\\s*\\bfrom\\b)|\\{[^{}]*\\})"),lookbehind:!0,inside:a.languages.javascript}}),a.languages.javascript.keyword.unshift({pattern:/\b(?:as|default|export|from|import)\b/,alias:"module"},{pattern:/\b(?:await|break|catch|continue|do|else|finally|for|if|return|switch|throw|try|while|yield)\b/,alias:"control-flow"},{pattern:/\bnull\b/,alias:["null","nil"]},{pattern:/\bundefined\b/,alias:"nil"}),a.languages.insertBefore("javascript","operator",{spread:{pattern:/\.{3}/,alias:"operator"},arrow:{pattern:/=>/,alias:"operator"}}),a.languages.insertBefore("javascript","punctuation",{"property-access":{pattern:e("(\\.\\s*)#?"),lookbehind:!0},"maybe-class-name":{pattern:/(^|[^$\w\xA0-\uFFFF])[A-Z][$\w\xA0-\uFFFF]+/,lookbehind:!0},dom:{pattern:/\b(?:document|(?:local|session)Storage|location|navigator|performance|window)\b/,alias:"variable"},console:{pattern:/\bconsole(?=\s*\.)/,alias:"class-name"}});for(var t=["function","function-variable","method","method-variable","property-access"],r=0;r=c.length)return;var r=t[n];if("string"==typeof r||"string"==typeof r.content){var a=c[o],i="string"==typeof r?r:r.content,s=i.indexOf(a);if(-1!==s){++o;var p=i.substring(0,s),u=l(g[a]),f=i.substring(s+a.length),y=[];if(p&&y.push(p),y.push(u),f){var v=[f];e(v),y.push.apply(y,v)}"string"==typeof r?(t.splice.apply(t,[n,1].concat(y)),n+=y.length-1):r.content=y}}else{var d=r.content;Array.isArray(d)?e(d):e([d])}}}(u),new e.Token(r,u,"language-"+r,t)}e.languages.javascript["template-string"]=[o("css","\\b(?:styled(?:\\([^)]*\\))?(?:\\s*\\.\\s*\\w+(?:\\([^)]*\\))*)*|css(?:\\s*\\.\\s*(?:global|resolve))?|createGlobalStyle|keyframes)"),o("html","\\bhtml|\\.\\s*(?:inner|outer)HTML\\s*\\+?="),o("svg","\\bsvg"),o("markdown","\\b(?:markdown|md)"),o("graphql","\\b(?:gql|graphql(?:\\s*\\.\\s*experimental)?)"),o("sql","\\bsql"),t].filter(Boolean);var u={javascript:!0,js:!0,typescript:!0,ts:!0,jsx:!0,tsx:!0};function c(e){return"string"==typeof e?e:Array.isArray(e)?e.map(c).join(""):c(e.content)}e.hooks.add("after-tokenize",(function(t){t.language in u&&function t(n){for(var r=0,a=n.length;r']+(?=[>']$)/,lookbehind:!0,alias:"variable"};a.languages.regex={"char-class":{pattern:/((?:^|[^\\])(?:\\\\)*)\[(?:[^\\\]]|\\[\s\S])*\]/,lookbehind:!0,inside:{"char-class-negation":{pattern:/(^\[)\^/,lookbehind:!0,alias:"operator"},"char-class-punctuation":{pattern:/^\[|\]$/,alias:"punctuation"},range:{pattern:s,inside:{escape:n,"range-punctuation":{pattern:/-/,alias:"operator"}}},"special-escape":e,"char-set":{pattern:/\\[wsd]|\\p\{[^{}]+\}/i,alias:"class-name"},escape:n}},"special-escape":e,"char-set":{pattern:/\.|\\[wsd]|\\p\{[^{}]+\}/i,alias:"class-name"},backreference:[{pattern:/\\(?![123][0-7]{2})[1-9]/,alias:"keyword"},{pattern:/\\k<[^<>']+>/,alias:"keyword",inside:{"group-name":i}}],anchor:{pattern:/[$^]|\\[ABbGZz]/,alias:"function"},escape:n,group:[{pattern:/\((?:\?(?:<[^<>']+>|'[^<>']+'|[>:]||(?:[a-zA-Z\d-]*!)?[\w\-%#;/?:@&=+$.~*'()]+)?/,t="(?:"+r.source+"(?:[ \t]+"+n.source+")?|"+n.source+"(?:[ \t]+"+r.source+")?)",a="(?:[^\\s\\x00-\\x08\\x0e-\\x1f!\"#%&'*,\\-:>?@[\\]`{|}\\x7f-\\x84\\x86-\\x9f\\ud800-\\udfff\\ufffe\\uffff]|[?:-])(?:[ \t]*(?:(?![#:])|:))*".replace(//g,(function(){return"[^\\s\\x00-\\x08\\x0e-\\x1f,[\\]{}\\x7f-\\x84\\x86-\\x9f\\ud800-\\udfff\\ufffe\\uffff]"})),d="\"(?:[^\"\\\\\r\n]|\\\\.)*\"|'(?:[^'\\\\\r\n]|\\\\.)*'";function o(e,n){n=(n||"").replace(/m/g,"")+"m";var r="([:\\-,[{]\\s*(?:\\s<>[ \t]+)?)(?:<>)(?=[ \t]*(?:$|,|\\]|\\}|(?:[\r\n]\\s*)?#))".replace(/<>/g,(function(){return t})).replace(/<>/g,(function(){return e}));return RegExp(r,n)}e.languages.yaml={scalar:{pattern:RegExp("([\\-:]\\s*(?:\\s<>[ \t]+)?[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)\\S[^\r\n]*(?:\\2[^\r\n]+)*)".replace(/<>/g,(function(){return t}))),lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:RegExp("((?:^|[:\\-,[{\r\n?])[ \t]*(?:<>[ \t]+)?)<>(?=\\s*:\\s)".replace(/<>/g,(function(){return t})).replace(/<>/g,(function(){return"(?:"+a+"|"+d+")"}))),lookbehind:!0,greedy:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:o("\\d{4}-\\d\\d?-\\d\\d?(?:[tT]|[ \t]+)\\d\\d?:\\d{2}:\\d{2}(?:\\.\\d*)?(?:[ \t]*(?:Z|[-+]\\d\\d?(?::\\d{2})?))?|\\d{4}-\\d{2}-\\d{2}|\\d\\d?:\\d{2}(?::\\d{2}(?:\\.\\d*)?)?"),lookbehind:!0,alias:"number"},boolean:{pattern:o("false|true","i"),lookbehind:!0,alias:"important"},null:{pattern:o("null|~","i"),lookbehind:!0,alias:"important"},string:{pattern:o(d),lookbehind:!0,greedy:!0},number:{pattern:o("[+-]?(?:0x[\\da-f]+|0o[0-7]+|(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:e[+-]?\\d+)?|\\.inf|\\.nan)","i"),lookbehind:!0},tag:r,important:n,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},e.languages.yml=e.languages.yaml}(Prism); +!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document){var e="line-numbers",n=/\n(?!$)/g,t=Prism.plugins.lineNumbers={getLine:function(n,t){if("PRE"===n.tagName&&n.classList.contains(e)){var i=n.querySelector(".line-numbers-rows");if(i){var r=parseInt(n.getAttribute("data-start"),10)||1,s=r+(i.children.length-1);ts&&(t=s);var l=t-r;return i.children[l]}}},resize:function(e){r([e])},assumeViewportIndependence:!0},i=void 0;window.addEventListener("resize",(function(){t.assumeViewportIndependence&&i===window.innerWidth||(i=window.innerWidth,r(Array.prototype.slice.call(document.querySelectorAll("pre.line-numbers"))))})),Prism.hooks.add("complete",(function(t){if(t.code){var i=t.element,s=i.parentNode;if(s&&/pre/i.test(s.nodeName)&&!i.querySelector(".line-numbers-rows")&&Prism.util.isActive(i,e)){i.classList.remove(e),s.classList.add(e);var l,o=t.code.match(n),a=o?o.length+1:1,u=new Array(a+1).join("");(l=document.createElement("span")).setAttribute("aria-hidden","true"),l.className="line-numbers-rows",l.innerHTML=u,s.hasAttribute("data-start")&&(s.style.counterReset="linenumber "+(parseInt(s.getAttribute("data-start"),10)-1)),t.element.appendChild(l),r([s]),Prism.hooks.run("line-numbers",t)}}})),Prism.hooks.add("line-numbers",(function(e){e.plugins=e.plugins||{},e.plugins.lineNumbers=!0}))}function r(e){if(0!=(e=e.filter((function(e){var n,t=(n=e,n?window.getComputedStyle?getComputedStyle(n):n.currentStyle||null:null)["white-space"];return"pre-wrap"===t||"pre-line"===t}))).length){var t=e.map((function(e){var t=e.querySelector("code"),i=e.querySelector(".line-numbers-rows");if(t&&i){var r=e.querySelector(".line-numbers-sizer"),s=t.textContent.split(n);r||((r=document.createElement("span")).className="line-numbers-sizer",t.appendChild(r)),r.innerHTML="0",r.style.display="block";var l=r.getBoundingClientRect().height;return r.innerHTML="",{element:e,lines:s,lineHeights:[],oneLinerHeight:l,sizer:r}}})).filter(Boolean);t.forEach((function(e){var n=e.sizer,t=e.lines,i=e.lineHeights,r=e.oneLinerHeight;i[t.length-1]=void 0,t.forEach((function(e,t){if(e&&e.length>1){var s=n.appendChild(document.createElement("span"));s.style.display="block",s.textContent=e}else i[t]=r}))})),t.forEach((function(e){for(var n=e.sizer,t=e.lineHeights,i=0,r=0;r-1}function s(t,e){return"function"==typeof t?t.apply(void 0,e):t}function p(t,e){return 0===e?t:function(r){clearTimeout(n),n=setTimeout((function(){t(r)}),e)};var n}function u(t,e){var n=Object.assign({},t);return e.forEach((function(t){delete n[t]})),n}function c(t){return[].concat(t)}function f(t,e){-1===t.indexOf(e)&&t.push(e)}function l(t){return t.split("-")[0]}function d(t){return[].slice.call(t)}function v(){return document.createElement("div")}function m(t){return["Element","Fragment"].some((function(e){return a(t,e)}))}function g(t){return a(t,"MouseEvent")}function h(t){return!(!t||!t._tippy||t._tippy.reference!==t)}function b(t){return m(t)?[t]:function(t){return a(t,"NodeList")}(t)?d(t):Array.isArray(t)?t:d(document.querySelectorAll(t))}function y(t,e){t.forEach((function(t){t&&(t.style.transitionDuration=e+"ms")}))}function x(t,e){t.forEach((function(t){t&&t.setAttribute("data-state",e)}))}function w(t){var e=c(t)[0];return e&&e.ownerDocument||document}function E(t,e,n){var r=e+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(e){t[r](e,n)}))}var T={isTouch:!1},C=0;function A(){T.isTouch||(T.isTouch=!0,window.performance&&document.addEventListener("mousemove",O))}function O(){var t=performance.now();t-C<20&&(T.isTouch=!1,document.removeEventListener("mousemove",O)),C=t}function L(){var t=document.activeElement;if(h(t)){var e=t._tippy;t.blur&&!e.state.isVisible&&t.blur()}}var D=Object.assign({appendTo:function(){return document.body},aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),k=Object.keys(D);function M(t){var e=(t.plugins||[]).reduce((function(e,n){var r=n.name,i=n.defaultValue;return r&&(e[r]=void 0!==t[r]?t[r]:i),e}),{});return Object.assign({},t,{},e)}function V(t,e){var n=Object.assign({},e,{content:s(e.content,[t])},e.ignoreAttributes?{}:function(t,e){return(e?Object.keys(M(Object.assign({},D,{plugins:e}))):k).reduce((function(e,n){var r=(t.getAttribute("data-tippy-"+n)||"").trim();if(!r)return e;if("content"===n)e[n]=r;else try{e[n]=JSON.parse(r)}catch(t){e[n]=r}return e}),{})}(t,e.plugins));return n.aria=Object.assign({},D.aria,{},n.aria),n.aria={expanded:"auto"===n.aria.expanded?e.interactive:n.aria.expanded,content:"auto"===n.aria.content?e.interactive?null:"describedby":n.aria.content},n}function R(t,e){t.innerHTML=e}function j(t){var e=v();return!0===t?e.className="tippy-arrow":(e.className="tippy-svg-arrow",m(t)?e.appendChild(t):R(e,t)),e}function P(t,e){m(e.content)?(R(t,""),t.appendChild(e.content)):"function"!=typeof e.content&&(e.allowHTML?R(t,e.content):t.textContent=e.content)}function I(t){var e=t.firstElementChild,n=d(e.children);return{box:e,content:n.find((function(t){return t.classList.contains("tippy-content")})),arrow:n.find((function(t){return t.classList.contains("tippy-arrow")||t.classList.contains("tippy-svg-arrow")})),backdrop:n.find((function(t){return t.classList.contains("tippy-backdrop")}))}}function S(t){var e=v(),n=v();n.className="tippy-box",n.setAttribute("data-state","hidden"),n.setAttribute("tabindex","-1");var r=v();function i(n,r){var i=I(e),o=i.box,a=i.content,s=i.arrow;r.theme?o.setAttribute("data-theme",r.theme):o.removeAttribute("data-theme"),"string"==typeof r.animation?o.setAttribute("data-animation",r.animation):o.removeAttribute("data-animation"),r.inertia?o.setAttribute("data-inertia",""):o.removeAttribute("data-inertia"),o.style.maxWidth="number"==typeof r.maxWidth?r.maxWidth+"px":r.maxWidth,r.role?o.setAttribute("role",r.role):o.removeAttribute("role"),n.content===r.content&&n.allowHTML===r.allowHTML||P(a,t.props),r.arrow?s?n.arrow!==r.arrow&&(o.removeChild(s),o.appendChild(j(r.arrow))):o.appendChild(j(r.arrow)):s&&o.removeChild(s)}return r.className="tippy-content",r.setAttribute("data-state","hidden"),P(r,t.props),e.appendChild(n),n.appendChild(r),i(t.props,t.props),{popper:e,onUpdate:i}}S.$$tippy=!0;var B=1,H=[],U=[];function N(e,n){var a,u,m,h,b,C,A,O,L,k=V(e,Object.assign({},D,{},M((a=n,Object.keys(a).reduce((function(t,e){return void 0!==a[e]&&(t[e]=a[e]),t}),{}))))),R=!1,j=!1,P=!1,S=!1,N=[],_=p(bt,k.interactiveDebounce),z=w(k.triggerTarget||e),F=B++,W=(L=k.plugins).filter((function(t,e){return L.indexOf(t)===e})),X={id:F,reference:e,popper:v(),popperInstance:null,props:k,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:W,clearDelayTimeouts:function(){clearTimeout(u),clearTimeout(m),cancelAnimationFrame(h)},setProps:function(t){if(X.state.isDestroyed)return;it("onBeforeUpdate",[X,t]),gt();var n=X.props,r=V(e,Object.assign({},X.props,{},t,{ignoreAttributes:!0}));X.props=r,mt(),n.interactiveDebounce!==r.interactiveDebounce&&(st(),_=p(bt,r.interactiveDebounce));n.triggerTarget&&!r.triggerTarget?c(n.triggerTarget).forEach((function(t){t.removeAttribute("aria-expanded")})):r.triggerTarget&&e.removeAttribute("aria-expanded");at(),rt(),$&&$(n,r);X.popperInstance&&(Et(),Ct().forEach((function(t){requestAnimationFrame(t._tippy.popperInstance.forceUpdate)})));it("onAfterUpdate",[X,t])},setContent:function(t){X.setProps({content:t})},show:function(){var t=X.state.isVisible,e=X.state.isDestroyed,n=!X.state.isEnabled,r=T.isTouch&&!X.props.touch,i=o(X.props.duration,0,D.duration);if(t||e||n||r)return;if(tt().hasAttribute("disabled"))return;if(it("onShow",[X],!1),!1===X.props.onShow(X))return;X.state.isVisible=!0,Z()&&(q.style.visibility="visible");rt(),ft(),X.state.isMounted||(q.style.transition="none");if(Z()){var a=et(),p=a.box,u=a.content;y([p,u],0)}A=function(){if(X.state.isVisible&&!S){if(S=!0,q.offsetHeight,q.style.transition=X.props.moveTransition,Z()&&X.props.animation){var t=et(),e=t.box,n=t.content;y([e,n],i),x([e,n],"visible")}ot(),at(),f(U,X),X.state.isMounted=!0,it("onMount",[X]),X.props.animation&&Z()&&function(t,e){dt(t,e)}(i,(function(){X.state.isShown=!0,it("onShown",[X])}))}},function(){var t,e=X.props.appendTo,n=tt();t=X.props.interactive&&e===D.appendTo||"parent"===e?n.parentNode:s(e,[n]);t.contains(q)||t.appendChild(q);Et()}()},hide:function(){var t=!X.state.isVisible,e=X.state.isDestroyed,n=!X.state.isEnabled,r=o(X.props.duration,1,D.duration);if(t||e||n)return;if(it("onHide",[X],!1),!1===X.props.onHide(X))return;X.state.isVisible=!1,X.state.isShown=!1,S=!1,R=!1,Z()&&(q.style.visibility="hidden");if(st(),lt(),rt(),Z()){var i=et(),a=i.box,s=i.content;X.props.animation&&(y([a,s],r),x([a,s],"hidden"))}ot(),at(),X.props.animation?Z()&&function(t,e){dt(t,(function(){!X.state.isVisible&&q.parentNode&&q.parentNode.contains(q)&&e()}))}(r,X.unmount):X.unmount()},hideWithInteractivity:function(t){z.addEventListener("mousemove",_),f(H,_),_(t)},enable:function(){X.state.isEnabled=!0},disable:function(){X.hide(),X.state.isEnabled=!1},unmount:function(){X.state.isVisible&&X.hide();if(!X.state.isMounted)return;Tt(),Ct().forEach((function(t){t._tippy.unmount()})),q.parentNode&&q.parentNode.removeChild(q);U=U.filter((function(t){return t!==X})),X.state.isMounted=!1,it("onHidden",[X])},destroy:function(){if(X.state.isDestroyed)return;X.clearDelayTimeouts(),X.unmount(),gt(),delete e._tippy,X.state.isDestroyed=!0,it("onDestroy",[X])}};if(!k.render)return X;var Y=k.render(X),q=Y.popper,$=Y.onUpdate;q.setAttribute("data-tippy-root",""),q.id="tippy-"+X.id,X.popper=q,e._tippy=X,q._tippy=X;var J=W.map((function(t){return t.fn(X)})),G=e.hasAttribute("aria-expanded");return mt(),at(),rt(),it("onCreate",[X]),k.showOnCreate&&At(),q.addEventListener("mouseenter",(function(){X.props.interactive&&X.state.isVisible&&X.clearDelayTimeouts()})),q.addEventListener("mouseleave",(function(t){X.props.interactive&&X.props.trigger.indexOf("mouseenter")>=0&&(z.addEventListener("mousemove",_),_(t))})),X;function K(){var t=X.props.touch;return Array.isArray(t)?t:[t,0]}function Q(){return"hold"===K()[0]}function Z(){var t;return!!(null==(t=X.props.render)?void 0:t.$$tippy)}function tt(){return O||e}function et(){return I(q)}function nt(t){return X.state.isMounted&&!X.state.isVisible||T.isTouch||b&&"focus"===b.type?0:o(X.props.delay,t?0:1,D.delay)}function rt(){q.style.pointerEvents=X.props.interactive&&X.state.isVisible?"":"none",q.style.zIndex=""+X.props.zIndex}function it(t,e,n){var r;(void 0===n&&(n=!0),J.forEach((function(n){n[t]&&n[t].apply(void 0,e)})),n)&&(r=X.props)[t].apply(r,e)}function ot(){var t=X.props.aria;if(t.content){var n="aria-"+t.content,r=q.id;c(X.props.triggerTarget||e).forEach((function(t){var e=t.getAttribute(n);if(X.state.isVisible)t.setAttribute(n,e?e+" "+r:r);else{var i=e&&e.replace(r,"").trim();i?t.setAttribute(n,i):t.removeAttribute(n)}}))}}function at(){!G&&X.props.aria.expanded&&c(X.props.triggerTarget||e).forEach((function(t){X.props.interactive?t.setAttribute("aria-expanded",X.state.isVisible&&t===tt()?"true":"false"):t.removeAttribute("aria-expanded")}))}function st(){z.removeEventListener("mousemove",_),H=H.filter((function(t){return t!==_}))}function pt(t){if(!(T.isTouch&&(P||"mousedown"===t.type)||X.props.interactive&&q.contains(t.target))){if(tt().contains(t.target)){if(T.isTouch)return;if(X.state.isVisible&&X.props.trigger.indexOf("click")>=0)return}else it("onClickOutside",[X,t]);!0===X.props.hideOnClick&&(X.clearDelayTimeouts(),X.hide(),j=!0,setTimeout((function(){j=!1})),X.state.isMounted||lt())}}function ut(){P=!0}function ct(){P=!1}function ft(){z.addEventListener("mousedown",pt,!0),z.addEventListener("touchend",pt,i),z.addEventListener("touchstart",ct,i),z.addEventListener("touchmove",ut,i)}function lt(){z.removeEventListener("mousedown",pt,!0),z.removeEventListener("touchend",pt,i),z.removeEventListener("touchstart",ct,i),z.removeEventListener("touchmove",ut,i)}function dt(t,e){var n=et().box;function r(t){t.target===n&&(E(n,"remove",r),e())}if(0===t)return e();E(n,"remove",C),E(n,"add",r),C=r}function vt(t,n,r){void 0===r&&(r=!1),c(X.props.triggerTarget||e).forEach((function(e){e.addEventListener(t,n,r),N.push({node:e,eventType:t,handler:n,options:r})}))}function mt(){var t;Q()&&(vt("touchstart",ht,{passive:!0}),vt("touchend",yt,{passive:!0})),(t=X.props.trigger,t.split(/\s+/).filter(Boolean)).forEach((function(t){if("manual"!==t)switch(vt(t,ht),t){case"mouseenter":vt("mouseleave",yt);break;case"focus":vt(r?"focusout":"blur",xt);break;case"focusin":vt("focusout",xt)}}))}function gt(){N.forEach((function(t){var e=t.node,n=t.eventType,r=t.handler,i=t.options;e.removeEventListener(n,r,i)})),N=[]}function ht(t){var e,n=!1;if(X.state.isEnabled&&!wt(t)&&!j){var r="focus"===(null==(e=b)?void 0:e.type);b=t,O=t.currentTarget,at(),!X.state.isVisible&&g(t)&&H.forEach((function(e){return e(t)})),"click"===t.type&&(X.props.trigger.indexOf("mouseenter")<0||R)&&!1!==X.props.hideOnClick&&X.state.isVisible?n=!0:At(t),"click"===t.type&&(R=!n),n&&!r&&Ot(t)}}function bt(t){var e=t.target,n=tt().contains(e)||q.contains(e);"mousemove"===t.type&&n||function(t,e){var n=e.clientX,r=e.clientY;return t.every((function(t){var e=t.popperRect,i=t.popperState,o=t.props.interactiveBorder,a=l(i.placement),s=i.modifiersData.offset;if(!s)return!0;var p="bottom"===a?s.top.y:0,u="top"===a?s.bottom.y:0,c="right"===a?s.left.x:0,f="left"===a?s.right.x:0,d=e.top-r+p>o,v=r-e.bottom-u>o,m=e.left-n+c>o,g=n-e.right-f>o;return d||v||m||g}))}(Ct().concat(q).map((function(t){var e,n=null==(e=t._tippy.popperInstance)?void 0:e.state;return n?{popperRect:t.getBoundingClientRect(),popperState:n,props:k}:null})).filter(Boolean),t)&&(st(),Ot(t))}function yt(t){wt(t)||X.props.trigger.indexOf("click")>=0&&R||(X.props.interactive?X.hideWithInteractivity(t):Ot(t))}function xt(t){X.props.trigger.indexOf("focusin")<0&&t.target!==tt()||X.props.interactive&&t.relatedTarget&&q.contains(t.relatedTarget)||Ot(t)}function wt(t){return!!T.isTouch&&Q()!==t.type.indexOf("touch")>=0}function Et(){Tt();var n=X.props,r=n.popperOptions,i=n.placement,o=n.offset,a=n.getReferenceClientRect,s=n.moveTransition,p=Z()?I(q).arrow:null,u=a?{getBoundingClientRect:a,contextElement:a.contextElement||tt()}:e,c=[{name:"offset",options:{offset:o}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!s}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(t){var e=t.state;if(Z()){var n=et().box;["placement","reference-hidden","escaped"].forEach((function(t){"placement"===t?n.setAttribute("data-placement",e.placement):e.attributes.popper["data-popper-"+t]?n.setAttribute("data-"+t,""):n.removeAttribute("data-"+t)})),e.attributes.popper={}}}}];Z()&&p&&c.push({name:"arrow",options:{element:p,padding:3}}),c.push.apply(c,(null==r?void 0:r.modifiers)||[]),X.popperInstance=t.createPopper(u,q,Object.assign({},r,{placement:i,onFirstUpdate:A,modifiers:c}))}function Tt(){X.popperInstance&&(X.popperInstance.destroy(),X.popperInstance=null)}function Ct(){return d(q.querySelectorAll("[data-tippy-root]"))}function At(t){X.clearDelayTimeouts(),t&&it("onTrigger",[X,t]),ft();var e=nt(!0),n=K(),r=n[0],i=n[1];T.isTouch&&"hold"===r&&i&&(e=i),e?u=setTimeout((function(){X.show()}),e):X.show()}function Ot(t){if(X.clearDelayTimeouts(),it("onUntrigger",[X,t]),X.state.isVisible){if(!(X.props.trigger.indexOf("mouseenter")>=0&&X.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(t.type)>=0&&R)){var e=nt(!1);e?m=setTimeout((function(){X.state.isVisible&&X.hide()}),e):h=requestAnimationFrame((function(){X.hide()}))}}else lt()}}function _(t,e){void 0===e&&(e={});var n=D.plugins.concat(e.plugins||[]);document.addEventListener("touchstart",A,i),window.addEventListener("blur",L);var r=Object.assign({},e,{plugins:n}),o=b(t).reduce((function(t,e){var n=e&&N(e,r);return n&&t.push(n),t}),[]);return m(t)?o[0]:o}_.defaultProps=D,_.setDefaultProps=function(t){Object.keys(t).forEach((function(e){D[e]=t[e]}))},_.currentInput=T;var z={mouseover:"mouseenter",focusin:"focus",click:"click"};var F={name:"animateFill",defaultValue:!1,fn:function(t){var e;if(!(null==(e=t.props.render)?void 0:e.$$tippy))return{};var n=I(t.popper),r=n.box,i=n.content,o=t.props.animateFill?function(){var t=v();return t.className="tippy-backdrop",x([t],"hidden"),t}():null;return{onCreate:function(){o&&(r.insertBefore(o,r.firstElementChild),r.setAttribute("data-animatefill",""),r.style.overflow="hidden",t.setProps({arrow:!1,animation:"shift-away"}))},onMount:function(){if(o){var t=r.style.transitionDuration,e=Number(t.replace("ms",""));i.style.transitionDelay=Math.round(e/10)+"ms",o.style.transitionDuration=t,x([o],"visible")}},onShow:function(){o&&(o.style.transitionDuration="0ms")},onHide:function(){o&&x([o],"hidden")}}}};var W={clientX:0,clientY:0},X=[];function Y(t){var e=t.clientX,n=t.clientY;W={clientX:e,clientY:n}}var q={name:"followCursor",defaultValue:!1,fn:function(t){var e=t.reference,n=w(t.props.triggerTarget||e),r=!1,i=!1,o=!0,a=t.props;function s(){return"initial"===t.props.followCursor&&t.state.isVisible}function p(){n.addEventListener("mousemove",f)}function u(){n.removeEventListener("mousemove",f)}function c(){r=!0,t.setProps({getReferenceClientRect:null}),r=!1}function f(n){var r=!n.target||e.contains(n.target),i=t.props.followCursor,o=n.clientX,a=n.clientY,s=e.getBoundingClientRect(),p=o-s.left,u=a-s.top;!r&&t.props.interactive||t.setProps({getReferenceClientRect:function(){var t=e.getBoundingClientRect(),n=o,r=a;"initial"===i&&(n=t.left+p,r=t.top+u);var s="horizontal"===i?t.top:r,c="vertical"===i?t.right:n,f="horizontal"===i?t.bottom:r,l="vertical"===i?t.left:n;return{width:c-l,height:f-s,top:s,right:c,bottom:f,left:l}}})}function l(){t.props.followCursor&&(X.push({instance:t,doc:n}),function(t){t.addEventListener("mousemove",Y)}(n))}function d(){0===(X=X.filter((function(e){return e.instance!==t}))).filter((function(t){return t.doc===n})).length&&function(t){t.removeEventListener("mousemove",Y)}(n)}return{onCreate:l,onDestroy:d,onBeforeUpdate:function(){a=t.props},onAfterUpdate:function(e,n){var o=n.followCursor;r||void 0!==o&&a.followCursor!==o&&(d(),o?(l(),!t.state.isMounted||i||s()||p()):(u(),c()))},onMount:function(){t.props.followCursor&&!i&&(o&&(f(W),o=!1),s()||p())},onTrigger:function(t,e){g(e)&&(W={clientX:e.clientX,clientY:e.clientY}),i="focus"===e.type},onHidden:function(){t.props.followCursor&&(c(),u(),o=!0)}}}};var $={name:"inlinePositioning",defaultValue:!1,fn:function(t){var e,n=t.reference;var r=-1,i=!1,o={name:"tippyInlinePositioning",enabled:!0,phase:"afterWrite",fn:function(i){var o=i.state;t.props.inlinePositioning&&(e!==o.placement&&t.setProps({getReferenceClientRect:function(){return function(t){return function(t,e,n,r){if(n.length<2||null===t)return e;if(2===n.length&&r>=0&&n[0].left>n[1].right)return n[r]||e;switch(t){case"top":case"bottom":var i=n[0],o=n[n.length-1],a="top"===t,s=i.top,p=o.bottom,u=a?i.left:o.left,c=a?i.right:o.right;return{top:s,bottom:p,left:u,right:c,width:c-u,height:p-s};case"left":case"right":var f=Math.min.apply(Math,n.map((function(t){return t.left}))),l=Math.max.apply(Math,n.map((function(t){return t.right}))),d=n.filter((function(e){return"left"===t?e.left===f:e.right===l})),v=d[0].top,m=d[d.length-1].bottom;return{top:v,bottom:m,left:f,right:l,width:l-f,height:m-v};default:return e}}(l(t),n.getBoundingClientRect(),d(n.getClientRects()),r)}(o.placement)}}),e=o.placement)}};function a(){var e;i||(e=function(t,e){var n;return{popperOptions:Object.assign({},t.popperOptions,{modifiers:[].concat(((null==(n=t.popperOptions)?void 0:n.modifiers)||[]).filter((function(t){return t.name!==e.name})),[e])})}}(t.props,o),i=!0,t.setProps(e),i=!1)}return{onCreate:a,onAfterUpdate:a,onTrigger:function(e,n){if(g(n)){var i=d(t.reference.getClientRects()),o=i.find((function(t){return t.left-2<=n.clientX&&t.right+2>=n.clientX&&t.top-2<=n.clientY&&t.bottom+2>=n.clientY}));r=i.indexOf(o)}},onUntrigger:function(){r=-1}}}};var J={name:"sticky",defaultValue:!1,fn:function(t){var e=t.reference,n=t.popper;function r(e){return!0===t.props.sticky||t.props.sticky===e}var i=null,o=null;function a(){var s=r("reference")?(t.popperInstance?t.popperInstance.state.elements.reference:e).getBoundingClientRect():null,p=r("popper")?n.getBoundingClientRect():null;(s&&G(i,s)||p&&G(o,p))&&t.popperInstance&&t.popperInstance.update(),i=s,o=p,t.state.isMounted&&requestAnimationFrame(a)}return{onMount:function(){t.props.sticky&&a()}}}};function G(t,e){return!t||!e||(t.top!==e.top||t.right!==e.right||t.bottom!==e.bottom||t.left!==e.left)}return e&&function(t){var e=document.createElement("style");e.textContent=t,e.setAttribute("data-tippy-stylesheet","");var n=document.head,r=document.querySelector("head>style,head>link");r?n.insertBefore(e,r):n.appendChild(e)}('.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}'),_.setDefaultProps({plugins:[F,q,$,J],render:S}),_.createSingleton=function(t,e){void 0===e&&(e={});var n,r=t,i=[],o=e.overrides;function a(){i=r.map((function(t){return t.reference}))}function s(t){r.forEach((function(e){t?e.enable():e.disable()}))}s(!1),a();var p={fn:function(){return{onDestroy:function(){s(!0)},onTrigger:function(t,e){var a=e.currentTarget,s=i.indexOf(a);if(a!==n){n=a;var p=(o||[]).concat("content").reduce((function(t,e){return t[e]=r[s].props[e],t}),{});t.setProps(Object.assign({},p,{getReferenceClientRect:function(){return a.getBoundingClientRect()}}))}}}}},c=_(v(),Object.assign({},u(e,["overrides"]),{plugins:[p].concat(e.plugins||[]),triggerTarget:i})),f=c.setProps;return c.setProps=function(t){o=t.overrides||o,f(t)},c.setInstances=function(t){s(!0),r=t,s(!1),a(),c.setProps({triggerTarget:i})},c},_.delegate=function(t,e){var n=[],r=[],i=e.target,o=u(e,["target"]),a=Object.assign({},o,{trigger:"manual",touch:!1}),s=Object.assign({},o,{showOnCreate:!0}),p=_(t,a);function f(t){if(t.target){var n=t.target.closest(i);if(n){var o=n.getAttribute("data-tippy-trigger")||e.trigger||D.trigger;if(!n._tippy&&!("touchstart"===t.type&&"boolean"==typeof s.touch||"touchstart"!==t.type&&o.indexOf(z[t.type])<0)){var a=_(n,s);a&&(r=r.concat(a))}}}}function l(t,e,r,i){void 0===i&&(i=!1),t.addEventListener(e,r,i),n.push({node:t,eventType:e,handler:r,options:i})}return c(p).forEach((function(t){var e=t.destroy;t.destroy=function(t){void 0===t&&(t=!0),t&&r.forEach((function(t){t.destroy()})),r=[],n.forEach((function(t){var e=t.node,n=t.eventType,r=t.handler,i=t.options;e.removeEventListener(n,r,i)})),n=[],e()},function(t){var e=t.reference;l(e,"touchstart",f),l(e,"mouseover",f),l(e,"focusin",f),l(e,"click",f)}(t)})),p},_.hideAll=function(t){var e=void 0===t?{}:t,n=e.exclude,r=e.duration;U.forEach((function(t){var e=!1;if(n&&(e=h(n)?t.reference===n:t.popper===n.popper),!e){var i=t.props.duration;t.setProps({duration:r}),t.hide(),t.state.isDestroyed||t.setProps({duration:i})}}))},_.roundArrow='',_})); +//# sourceMappingURL=tippy-bundle.umd.min.js.map \ No newline at end of file diff --git a/assets/js/utils.js b/assets/js/utils.js new file mode 100644 index 0000000..1e4c029 --- /dev/null +++ b/assets/js/utils.js @@ -0,0 +1,13 @@ + +function delegateEvent(type, selector, fn, options = {}){ + return (options.container || document).addEventListener(type, e => { + let match = e.target.closest(selector); + if (match) fn(e, match); + }, options); +} + +skipAnimationFrame = fn => requestAnimationFrame(() => requestAnimationFrame(fn)); + +var domReady = new Promise(resolve => { + document.addEventListener('DOMContentLoaded', e => resolve()) +}); \ No newline at end of file diff --git a/custom-assets/custom-body.js b/custom-assets/custom-body.js new file mode 100644 index 0000000..889f811 --- /dev/null +++ b/custom-assets/custom-body.js @@ -0,0 +1,5 @@ +import {test } from './module-test.js'; + +console.log('Custom javascript in body') + +test(); \ No newline at end of file diff --git a/custom-assets/custom-head.js b/custom-assets/custom-head.js new file mode 100644 index 0000000..c3c28c8 --- /dev/null +++ b/custom-assets/custom-head.js @@ -0,0 +1 @@ +console.log('Custom javascript in head') \ No newline at end of file diff --git a/custom-assets/custom.css b/custom-assets/custom.css new file mode 100644 index 0000000..5199c89 --- /dev/null +++ b/custom-assets/custom.css @@ -0,0 +1,6 @@ + +body:after { + content: "Custom CSS in body"; + opacity: 0; + pointer-events: none; +} \ No newline at end of file diff --git a/custom-assets/module-test.js b/custom-assets/module-test.js new file mode 100644 index 0000000..0ba60dd --- /dev/null +++ b/custom-assets/module-test.js @@ -0,0 +1,8 @@ + +function test(){ + console.log('module option for custom assets') +} + +export { + test +} \ No newline at end of file diff --git a/fonts/KaTeX_AMS-Regular.ttf b/fonts/KaTeX_AMS-Regular.ttf new file mode 100644 index 0000000..737cf8e Binary files /dev/null and b/fonts/KaTeX_AMS-Regular.ttf differ diff --git a/fonts/KaTeX_AMS-Regular.woff b/fonts/KaTeX_AMS-Regular.woff new file mode 100644 index 0000000..38378bf Binary files /dev/null and b/fonts/KaTeX_AMS-Regular.woff differ diff --git a/fonts/KaTeX_AMS-Regular.woff2 b/fonts/KaTeX_AMS-Regular.woff2 new file mode 100644 index 0000000..a4d1ba6 Binary files /dev/null and b/fonts/KaTeX_AMS-Regular.woff2 differ diff --git a/fonts/KaTeX_Caligraphic-Bold.ttf b/fonts/KaTeX_Caligraphic-Bold.ttf new file mode 100644 index 0000000..04d28ab Binary files /dev/null and b/fonts/KaTeX_Caligraphic-Bold.ttf differ diff --git a/fonts/KaTeX_Caligraphic-Bold.woff b/fonts/KaTeX_Caligraphic-Bold.woff new file mode 100644 index 0000000..a01ce90 Binary files /dev/null and b/fonts/KaTeX_Caligraphic-Bold.woff differ diff --git a/fonts/KaTeX_Caligraphic-Bold.woff2 b/fonts/KaTeX_Caligraphic-Bold.woff2 new file mode 100644 index 0000000..3792727 Binary files /dev/null and b/fonts/KaTeX_Caligraphic-Bold.woff2 differ diff --git a/fonts/KaTeX_Caligraphic-Regular.ttf b/fonts/KaTeX_Caligraphic-Regular.ttf new file mode 100644 index 0000000..b2ce555 Binary files /dev/null and b/fonts/KaTeX_Caligraphic-Regular.ttf differ diff --git a/fonts/KaTeX_Caligraphic-Regular.woff b/fonts/KaTeX_Caligraphic-Regular.woff new file mode 100644 index 0000000..bc169b7 Binary files /dev/null and b/fonts/KaTeX_Caligraphic-Regular.woff differ diff --git a/fonts/KaTeX_Caligraphic-Regular.woff2 b/fonts/KaTeX_Caligraphic-Regular.woff2 new file mode 100644 index 0000000..f1e38bb Binary files /dev/null and b/fonts/KaTeX_Caligraphic-Regular.woff2 differ diff --git a/fonts/KaTeX_Fraktur-Bold.ttf b/fonts/KaTeX_Fraktur-Bold.ttf new file mode 100644 index 0000000..c42d169 Binary files /dev/null and b/fonts/KaTeX_Fraktur-Bold.ttf differ diff --git a/fonts/KaTeX_Fraktur-Bold.woff b/fonts/KaTeX_Fraktur-Bold.woff new file mode 100644 index 0000000..f30b54b Binary files /dev/null and b/fonts/KaTeX_Fraktur-Bold.woff differ diff --git a/fonts/KaTeX_Fraktur-Bold.woff2 b/fonts/KaTeX_Fraktur-Bold.woff2 new file mode 100644 index 0000000..b7a8359 Binary files /dev/null and b/fonts/KaTeX_Fraktur-Bold.woff2 differ diff --git a/fonts/KaTeX_Fraktur-Regular.ttf b/fonts/KaTeX_Fraktur-Regular.ttf new file mode 100644 index 0000000..4133228 Binary files /dev/null and b/fonts/KaTeX_Fraktur-Regular.ttf differ diff --git a/fonts/KaTeX_Fraktur-Regular.woff b/fonts/KaTeX_Fraktur-Regular.woff new file mode 100644 index 0000000..5af51de Binary files /dev/null and b/fonts/KaTeX_Fraktur-Regular.woff differ diff --git a/fonts/KaTeX_Fraktur-Regular.woff2 b/fonts/KaTeX_Fraktur-Regular.woff2 new file mode 100644 index 0000000..3874f93 Binary files /dev/null and b/fonts/KaTeX_Fraktur-Regular.woff2 differ diff --git a/fonts/KaTeX_Main-Bold.ttf b/fonts/KaTeX_Main-Bold.ttf new file mode 100644 index 0000000..14390e0 Binary files /dev/null and b/fonts/KaTeX_Main-Bold.ttf differ diff --git a/fonts/KaTeX_Main-Bold.woff b/fonts/KaTeX_Main-Bold.woff new file mode 100644 index 0000000..33b4199 Binary files /dev/null and b/fonts/KaTeX_Main-Bold.woff differ diff --git a/fonts/KaTeX_Main-Bold.woff2 b/fonts/KaTeX_Main-Bold.woff2 new file mode 100644 index 0000000..f9b71cb Binary files /dev/null and b/fonts/KaTeX_Main-Bold.woff2 differ diff --git a/fonts/KaTeX_Main-BoldItalic.ttf b/fonts/KaTeX_Main-BoldItalic.ttf new file mode 100644 index 0000000..ad0761f Binary files /dev/null and b/fonts/KaTeX_Main-BoldItalic.ttf differ diff --git a/fonts/KaTeX_Main-BoldItalic.woff b/fonts/KaTeX_Main-BoldItalic.woff new file mode 100644 index 0000000..115af4f Binary files /dev/null and b/fonts/KaTeX_Main-BoldItalic.woff differ diff --git a/fonts/KaTeX_Main-BoldItalic.woff2 b/fonts/KaTeX_Main-BoldItalic.woff2 new file mode 100644 index 0000000..5c500c2 Binary files /dev/null and b/fonts/KaTeX_Main-BoldItalic.woff2 differ diff --git a/fonts/KaTeX_Main-Italic.ttf b/fonts/KaTeX_Main-Italic.ttf new file mode 100644 index 0000000..fc8625c Binary files /dev/null and b/fonts/KaTeX_Main-Italic.ttf differ diff --git a/fonts/KaTeX_Main-Italic.woff b/fonts/KaTeX_Main-Italic.woff new file mode 100644 index 0000000..2d3087a Binary files /dev/null and b/fonts/KaTeX_Main-Italic.woff differ diff --git a/fonts/KaTeX_Main-Italic.woff2 b/fonts/KaTeX_Main-Italic.woff2 new file mode 100644 index 0000000..08510d8 Binary files /dev/null and b/fonts/KaTeX_Main-Italic.woff2 differ diff --git a/fonts/KaTeX_Main-Regular.ttf b/fonts/KaTeX_Main-Regular.ttf new file mode 100644 index 0000000..5115a04 Binary files /dev/null and b/fonts/KaTeX_Main-Regular.ttf differ diff --git a/fonts/KaTeX_Main-Regular.woff b/fonts/KaTeX_Main-Regular.woff new file mode 100644 index 0000000..42b74ab Binary files /dev/null and b/fonts/KaTeX_Main-Regular.woff differ diff --git a/fonts/KaTeX_Main-Regular.woff2 b/fonts/KaTeX_Main-Regular.woff2 new file mode 100644 index 0000000..18647fa Binary files /dev/null and b/fonts/KaTeX_Main-Regular.woff2 differ diff --git a/fonts/KaTeX_Math-BoldItalic.ttf b/fonts/KaTeX_Math-BoldItalic.ttf new file mode 100644 index 0000000..326b523 Binary files /dev/null and b/fonts/KaTeX_Math-BoldItalic.ttf differ diff --git a/fonts/KaTeX_Math-BoldItalic.woff b/fonts/KaTeX_Math-BoldItalic.woff new file mode 100644 index 0000000..5b4041a Binary files /dev/null and b/fonts/KaTeX_Math-BoldItalic.woff differ diff --git a/fonts/KaTeX_Math-BoldItalic.woff2 b/fonts/KaTeX_Math-BoldItalic.woff2 new file mode 100644 index 0000000..ba55276 Binary files /dev/null and b/fonts/KaTeX_Math-BoldItalic.woff2 differ diff --git a/fonts/KaTeX_Math-Italic.ttf b/fonts/KaTeX_Math-Italic.ttf new file mode 100644 index 0000000..f148fce Binary files /dev/null and b/fonts/KaTeX_Math-Italic.ttf differ diff --git a/fonts/KaTeX_Math-Italic.woff b/fonts/KaTeX_Math-Italic.woff new file mode 100644 index 0000000..31d0038 Binary files /dev/null and b/fonts/KaTeX_Math-Italic.woff differ diff --git a/fonts/KaTeX_Math-Italic.woff2 b/fonts/KaTeX_Math-Italic.woff2 new file mode 100644 index 0000000..9871ab6 Binary files /dev/null and b/fonts/KaTeX_Math-Italic.woff2 differ diff --git a/fonts/KaTeX_SansSerif-Bold.ttf b/fonts/KaTeX_SansSerif-Bold.ttf new file mode 100644 index 0000000..dce35c8 Binary files /dev/null and b/fonts/KaTeX_SansSerif-Bold.ttf differ diff --git a/fonts/KaTeX_SansSerif-Bold.woff b/fonts/KaTeX_SansSerif-Bold.woff new file mode 100644 index 0000000..992cb3d Binary files /dev/null and b/fonts/KaTeX_SansSerif-Bold.woff differ diff --git a/fonts/KaTeX_SansSerif-Bold.woff2 b/fonts/KaTeX_SansSerif-Bold.woff2 new file mode 100644 index 0000000..6dd1038 Binary files /dev/null and b/fonts/KaTeX_SansSerif-Bold.woff2 differ diff --git a/fonts/KaTeX_SansSerif-Italic.ttf b/fonts/KaTeX_SansSerif-Italic.ttf new file mode 100644 index 0000000..a3eb86c Binary files /dev/null and b/fonts/KaTeX_SansSerif-Italic.ttf differ diff --git a/fonts/KaTeX_SansSerif-Italic.woff b/fonts/KaTeX_SansSerif-Italic.woff new file mode 100644 index 0000000..f4fa252 Binary files /dev/null and b/fonts/KaTeX_SansSerif-Italic.woff differ diff --git a/fonts/KaTeX_SansSerif-Italic.woff2 b/fonts/KaTeX_SansSerif-Italic.woff2 new file mode 100644 index 0000000..9f2501a Binary files /dev/null and b/fonts/KaTeX_SansSerif-Italic.woff2 differ diff --git a/fonts/KaTeX_SansSerif-Regular.ttf b/fonts/KaTeX_SansSerif-Regular.ttf new file mode 100644 index 0000000..3be73ce Binary files /dev/null and b/fonts/KaTeX_SansSerif-Regular.ttf differ diff --git a/fonts/KaTeX_SansSerif-Regular.woff b/fonts/KaTeX_SansSerif-Regular.woff new file mode 100644 index 0000000..ec283f4 Binary files /dev/null and b/fonts/KaTeX_SansSerif-Regular.woff differ diff --git a/fonts/KaTeX_SansSerif-Regular.woff2 b/fonts/KaTeX_SansSerif-Regular.woff2 new file mode 100644 index 0000000..e46094f Binary files /dev/null and b/fonts/KaTeX_SansSerif-Regular.woff2 differ diff --git a/fonts/KaTeX_Script-Regular.ttf b/fonts/KaTeX_Script-Regular.ttf new file mode 100644 index 0000000..40c8a99 Binary files /dev/null and b/fonts/KaTeX_Script-Regular.ttf differ diff --git a/fonts/KaTeX_Script-Regular.woff b/fonts/KaTeX_Script-Regular.woff new file mode 100644 index 0000000..4eafae7 Binary files /dev/null and b/fonts/KaTeX_Script-Regular.woff differ diff --git a/fonts/KaTeX_Script-Regular.woff2 b/fonts/KaTeX_Script-Regular.woff2 new file mode 100644 index 0000000..69b1754 Binary files /dev/null and b/fonts/KaTeX_Script-Regular.woff2 differ diff --git a/fonts/KaTeX_Size1-Regular.ttf b/fonts/KaTeX_Size1-Regular.ttf new file mode 100644 index 0000000..f0aff83 Binary files /dev/null and b/fonts/KaTeX_Size1-Regular.ttf differ diff --git a/fonts/KaTeX_Size1-Regular.woff b/fonts/KaTeX_Size1-Regular.woff new file mode 100644 index 0000000..0358ee4 Binary files /dev/null and b/fonts/KaTeX_Size1-Regular.woff differ diff --git a/fonts/KaTeX_Size1-Regular.woff2 b/fonts/KaTeX_Size1-Regular.woff2 new file mode 100644 index 0000000..f951ed0 Binary files /dev/null and b/fonts/KaTeX_Size1-Regular.woff2 differ diff --git a/fonts/KaTeX_Size2-Regular.ttf b/fonts/KaTeX_Size2-Regular.ttf new file mode 100644 index 0000000..4f72f16 Binary files /dev/null and b/fonts/KaTeX_Size2-Regular.ttf differ diff --git a/fonts/KaTeX_Size2-Regular.woff b/fonts/KaTeX_Size2-Regular.woff new file mode 100644 index 0000000..8a053d2 Binary files /dev/null and b/fonts/KaTeX_Size2-Regular.woff differ diff --git a/fonts/KaTeX_Size2-Regular.woff2 b/fonts/KaTeX_Size2-Regular.woff2 new file mode 100644 index 0000000..181d962 Binary files /dev/null and b/fonts/KaTeX_Size2-Regular.woff2 differ diff --git a/fonts/KaTeX_Size3-Regular.ttf b/fonts/KaTeX_Size3-Regular.ttf new file mode 100644 index 0000000..56d2dc6 Binary files /dev/null and b/fonts/KaTeX_Size3-Regular.ttf differ diff --git a/fonts/KaTeX_Size3-Regular.woff b/fonts/KaTeX_Size3-Regular.woff new file mode 100644 index 0000000..0ec99ad Binary files /dev/null and b/fonts/KaTeX_Size3-Regular.woff differ diff --git a/fonts/KaTeX_Size3-Regular.woff2 b/fonts/KaTeX_Size3-Regular.woff2 new file mode 100644 index 0000000..c2985cd Binary files /dev/null and b/fonts/KaTeX_Size3-Regular.woff2 differ diff --git a/fonts/KaTeX_Size4-Regular.ttf b/fonts/KaTeX_Size4-Regular.ttf new file mode 100644 index 0000000..baf0209 Binary files /dev/null and b/fonts/KaTeX_Size4-Regular.ttf differ diff --git a/fonts/KaTeX_Size4-Regular.woff b/fonts/KaTeX_Size4-Regular.woff new file mode 100644 index 0000000..ff67319 Binary files /dev/null and b/fonts/KaTeX_Size4-Regular.woff differ diff --git a/fonts/KaTeX_Size4-Regular.woff2 b/fonts/KaTeX_Size4-Regular.woff2 new file mode 100644 index 0000000..a4e810d Binary files /dev/null and b/fonts/KaTeX_Size4-Regular.woff2 differ diff --git a/fonts/KaTeX_Typewriter-Regular.ttf b/fonts/KaTeX_Typewriter-Regular.ttf new file mode 100644 index 0000000..e66c218 Binary files /dev/null and b/fonts/KaTeX_Typewriter-Regular.ttf differ diff --git a/fonts/KaTeX_Typewriter-Regular.woff b/fonts/KaTeX_Typewriter-Regular.woff new file mode 100644 index 0000000..c66d149 Binary files /dev/null and b/fonts/KaTeX_Typewriter-Regular.woff differ diff --git a/fonts/KaTeX_Typewriter-Regular.woff2 b/fonts/KaTeX_Typewriter-Regular.woff2 new file mode 100644 index 0000000..e5bf2ce Binary files /dev/null and b/fonts/KaTeX_Typewriter-Regular.woff2 differ diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..60847a1 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,78 @@ + +const yargs = require('yargs/yargs') +const { hideBin } = require('yargs/helpers') +const argv = yargs(hideBin(process.argv)).argv; +const { exec } = require('child_process'); + +const fs = require('fs-extra'); +const gulp = require('gulp'); +const concat = require('gulp-concat'); +const terser = require('gulp-terser'); +const mergeStreams = require('merge-stream'); +const cleanCSS = require('gulp-clean-css'); +const axios = require('axios').default; +const assets = fs.readJsonSync('./src/asset-map.json'); + +let compileLocation = 'assets/compiled'; + +async function fetchSpecRefs(){ + return Promise.all([ + axios.get('https://raw.githubusercontent.com/tobie/specref/master/refs/ietf.json'), + axios.get('https://raw.githubusercontent.com/tobie/specref/master/refs/w3c.json'), + axios.get('https://raw.githubusercontent.com/tobie/specref/master/refs/whatwg.json') + ]).then(async results => { + let json = Object.assign(results[0].data, results[1].data, results[2].data); + return fs.outputFile(compileLocation + '/refs.json', JSON.stringify(json)); + }).catch(e => console.log(e)); +} + +async function compileAssets(){ + await fs.ensureDir(compileLocation); + return new Promise(resolve => { + mergeStreams( + gulp.src(assets.head.css) + .pipe(cleanCSS()) + .pipe(concat('head.css')) + .pipe(gulp.dest(compileLocation)), + gulp.src(assets.head.js) + .pipe(terser()) + .pipe(concat('head.js')) + .pipe(gulp.dest(compileLocation)), + gulp.src(assets.body.js) + .pipe(terser()) + .pipe(concat('body.js')) + .pipe(gulp.dest(compileLocation)) + ).on('finish', function() { + resolve(); + }) + }); +} + +function runCommand(cmd){ + return new Promise((resolve, reject) => { + exec(cmd, {}, error => error ? reject() : resolve()); + }); +} + +async function bumpVersion(){ + return runCommand(`npm version --no-git-tag-version ${ argv.v || 'patch' }`); +} + +async function renderSpecs(){ + return runCommand('npm run render'); +} + +gulp.task('render', renderSpecs); + +gulp.task('refs', fetchSpecRefs); + +gulp.task('compile', compileAssets); + +gulp.task('bump', bumpVersion); + +gulp.task('publish', gulp.series(gulp.parallel(compileAssets, bumpVersion), renderSpecs)); + +gulp.task('watch', () => gulp.watch([ + 'assets/**/*', + '!assets/compiled/*' +], gulp.parallel('compile'))); \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..aa254de --- /dev/null +++ b/index.html @@ -0,0 +1,862 @@ + + + + + + + + + Spec-Up Example + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    +

    § Spec-Up Example

    +

    Specification Status: Draft

    +

    Latest Draft: +https://identity.foundation/spec-up

    +
    +
    Editors:
    +
    Daniel Buchner
    +
    Participate:
    +
    GitHub repo
    +
    File a bug
    +
    Commit history
    +
    +
    +

    § Abstract

    +

    Let’s face it, other tools and generators for writing technical specifications aimed at standards bodies or industry groups are cumbersome, underwhelming, and lack the features you might want in a technical specification document. Spec-Up’s goal is to deliver you a better spec-writing experience with far less effort and tedium than other tools in the ecosystem. Spec-Up is a simple tool that auto-generates great specs from markdown. The version of markdown Spec-up uses contains all the same features you might expect from common implementations, like GitHub, but adds much more, including notice blocks, complex tables, charts, advanced syntax highlighting, UML diagrams, etc.

    +

    § Getting Started

    +

    Using Spec-Up is easy peasy lemon squeezy:

    +
      +
    1. +

      npm install spec-up

      +
    2. +
    3. +

      Create a specs.json file in the root folder of your repository to specify configuration values used in the generation of your spec documents. The values in your specs.json file include things like where your spec’s markdown files are located, where to output the generated spec document, and various metadata values used in rendering, such as the title, logo, and repo links for each of your specs. The following are the required/optional fields supported in the specs.json config file:

      +
        +
      • spec_directory (STRING, required) - You must specify the repo-root-relative location of your spec’s markdown file directory. You MUST name your spec’s markdown file spec.md and locate it in your spec_directory for the tool to automatically find and use it for rendering. If you want to use a different name for the markdown file, or you have multiple markdown files you would like the tool to assemble into one document, you must specify them using the optionalmarkdown_paths field described below. See the “multi-file” example in the spec-up repo.
      • +
      • title (STRING, required) - You must add a title for your spec, which will be rendered in the generated document’s H1 text and page title.
      • +
      • markdown_paths (ARRAY, optional) - If you want to name your spec’s markdown file something other than spec.md, or you have multiple files you would like assembled into a single output document, you must specify their paths as array entries in the order you would like them assembled. The paths in this array are assumed to be based on the spec_directory you specified, so DO NOT repeat the full root relative path.
      • +
      • katex (BOOLEAN, optional) - To enable TeX support via KaTeX, set this property to true. After rendering, be sure to copy the fonts/ subdirectory, containing the necessary web fonts.
      • +
      • output_path (STRING, optional) - If you want the generated spec document to be output to a different location than the spec_directory you specified (e.g. the project root for GitHub Pages publishing) you can specify another root relative path (use ./ for root), and the tool will write the document file there instead.
      • +
      +
    4. +
    5. +

      In your main node.js file, drop in this bad boy: require('spec-up')()

      +
    6. +
    +

    Boom! That’s it. Spec-Up will auto-detect modifications to files in your spec_directory and auto-generate your spec’s updated HTML document every time you save a change.

    +

    Usage

    +

    If your spec.json and package.json and package-lock.json files are in working order and in the root folder of the repo from which it will be deployed, Spec-up can be called by command line (from the root of your repo) in three different modes:

    + + + + + + + + + + + + + + + + + + + + + +
    commandbehavior
    npm run editafter rendering, this will stay running and the gulp library will watch the source files in your spec directory/ies for changes and re-render any time you save a file. Opening these rendered files in a browser and refreshing them will keep you up to date.
    npm run renderthis renders the site once and does not keep a gulpy watch on the underlying files.
    npm run devthis enables debugging features.
    +

    § Table of Contents

    +

    <-- You see that beautiful TOC over there to your left? (tap the header link to slide it out on mobile) Yeah, you don’t need to do a damn thing, that just magically appears based on your use of h2, h3, and h4 headings.

    +

    § Term References

    +

    § Definition Lists

    +

    Many specs may want to include a section for terminology references, and Definition Lists are a great way to do that. Here’s how to leverage Spec-Up’s automatic term reference features via Definition List markup:

    +
    +[[def: Term 1, Term One]]:
    +~ This is the first term we will define.
    +
    +[[def: Term 2, Term Two]]:
    +~ This is the second term, but not the last.
    +
    +[[def: Term 3, Term Three]]:
    +~ This is the last term, because you know what they say: third term's the charm!
    +
    +
    +
    Term 1:
    +
    This is the first term we will define.
    +
    Term 2:
    +
    This is the second term, but not the last.
    +
    Term 3:
    +
    This is the last term, because you know what they say: third term’s the charm!
    +
    +

    Now let’s refer to some of the terms defined above to show how the auto-linking of terms works: Term 1, Term Two, Term 3. Additionally, as long as you define your terms using Definition Lists (as seen in the markdown above), you will be able to hover any reference to a term to see a tooltip with its definition.

    +

    § Table-defined Terms

    +

    You can also reference table-oriented terms and definitions which are decomposed into heading-titled attributes in distinct cells:

    +
    +Variable           | Default Value | Max Value
    +------------------- | -------------- | ---------
    +[[def: Variable 1]] | 123          | 9999
    +
    + + + + + + + + + + + + + + + +
    VariableDefault ValueMax Value
    Variable 11239999
    +

    Anytime you add a definition of a term in the first column of a table, like Variable 1, it will link to the cell and display a tooltip with the entire set of row values when you hover the term.

    +

    § External Term References

    +

    It is possible to include references to terms from external spec-up generated specifications. To include a source you would like to pull references from include an external_specs array in your spec config. The value should be a key/value object where the key is used in the external reference below and the value is the URL of the external spec.

    +
    EXAMPLE
    {
    +  "specs": [
    +    {
    +      ...
    +      "external_specs": [
    +        {"PE": "https://identity.foundation/presentation-exchange"}
    +      ]
    +    }
    +  ]
    +}
    +
    +
    +

    To include an external term reference within your spec use the following format [[xref: {title}, {term}]] where {title} is the title given to the spec in the config and {term} is the term being used. For example using the PE spec given in the example above Holder

    +

    § Blockquote

    +
    +

    To be, or not to be, that is the question: +Whether 'tis nobler in the mind to suffer +The slings and arrows of outrageous fortune, +Or to take arms against a sea of troubles +And by opposing end them. To die—to sleep, +No more;

    +
    +

    § Notices

    +
    +::: note Basic Note
    +  Check this out.
    +:::
    +
    +
    NOTE

    Check this out.

    +
    +
    NOTE

    Here’s another.

    +
    +
    NOTE

    And one more!

    +
    +
    NOTE

    One last note!!!

    +
    +
    +::: issue Issue Notice
    +  I take issue with that, kind sir.
    +:::
    +
    +
    ISSUE

    I take issue with that, kind sir.

    +
    +
    +::: warning Warning Notice
    +  Houston, I think we have a problem
    +:::
    +
    +
    WARNING

    Houston, I think we have a problem

    +
    +
    +::: todo Really Important
    +  Get this done!
    +:::
    +
    +
    TODO

    Get this done!

    +
    +
    +::: example Code Example
    +  Put your code block here
    +:::
    +
    +
    EXAMPLE
    // Some comment in JSON
    +{
    +  "foo": "bar",
    +  "baz": 2
    +}
    +
    +
    +

    § Content Insertion

    +

    Use the following format to pull in content from other files in your project:

    +
    +This text has been inserted here from another file: [[insert: ./single-file-test/assets/test.text]]
    +
    +

    This text has been inserted here from another file: Beam me in, Scotty!

    +

    You can even insert content within more complex blocks, like the JSON object below which is being pulled in and rendered in a syntax-highlighted example block:

    +
    +::: example Code Example
    +```json
    +[[insert: ./single-file-test/assets/test.json]]
    +```
    +:::
    +
    +
    EXAMPLE
    {
    +  "foo": {
    +    "bar": 1
    +  }
    +}
    +
    +
    +

    § Tables

    +
    +Stage | Direct Products | ATP Yields
    +----: | --------------: | ---------:
    +Glycolysis | 2 ATP ||
    +^^ | 2 NADH | 3--5 ATP |
    +Pyruvaye oxidation | 2 NADH | 5 ATP |
    +Citric acid cycle | 2 ATP ||
    +^^ | 6 NADH | 15 ATP |
    +^^ | 2 FADH2 | 3 ATP |
    +**30--32** ATP |||
    +[Net ATP yields per hexose]
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Net ATP yields per hexose
    StageDirect ProductsATP Yields
    Glycolysis2 ATP
    2 NADH3–5 ATP
    Pyruvaye oxidation2 NADH5 ATP
    Citric acid cycle2 ATP
    6 NADH15 ATP
    2 FADH23 ATP
    30–32 ATP
    +
    +|--|--|--|--|--|--|--|--|
    +|♜|  |♝|♛|♚|♝|♞|♜|
    +|  |♟|♟|♟|  |♟|♟|♟|
    +|♟|  |♞|  |  |  |  | |
    +|  |♗|  |  |♟|  |  | |
    +|  |  |  |  |♙|  |  | |
    +|  |  |  |  |  |♘|  | |
    +|♙|♙|♙|♙|  |♙|♙|♙|
    +|♖|♘|♗|♕|♔|  |  |♖|
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    § Sequence Diagrams

    +
    +```mermaid
    +sequenceDiagram
    +  Alice ->> Bob: Hello Bob, how are you?
    +  Bob-->>John: How about you John?
    +  Bob--x Alice: I am good thanks!
    +  Bob-x John: I am good thanks!
    +  Note right of John: Bob thinks a long
    long time, so long
    that the text does
    not fit on a row. + + Bob-->Alice: Checking with John... + Alice->John: Yes... John, how are you? +``` +
    +
    +sequenceDiagram + Alice ->> Bob: Hello Bob, how are you? + Bob-->>John: How about you John? + Bob--x Alice: I am good thanks! + Bob-x John: I am good thanks! + Note right of John: Bob thinks a long
    long time, so long
    that the text does
    not fit on a row. + + Bob-->Alice: Checking with John... + Alice->John: Yes... John, how are you? +
    +

    § Flows

    +
    +```mermaid
    +graph TD
    +  A[Start] --> B{Is it?}
    +  B -->|Yes| C[OK]
    +  C --> D[Rethink]
    +  D --> B
    +  B -->|No| E[End]
    +```
    +
    +
    +graph TD + A[Start] --> B{Is it?} + B -->|Yes| C[OK] + C --> D[Rethink] + D --> B + B -->|No| E[End] +
    +

    § Charts

    +
    +```chart
    +{
    +  "type": "pie",
    +  "data": {
    +    "labels": [
    +      "Red",
    +      "Blue",
    +      "Yellow"
    +    ],
    +    "datasets": [
    +      {
    +        "data": [
    +          300,
    +          50,
    +          100
    +        ],
    +        "backgroundColor": [
    +          "#FF6384",
    +          "#36A2EB",
    +          "#FFCE56"
    +        ],
    +        "hoverBackgroundColor": [
    +          "#FF6384",
    +          "#36A2EB",
    +          "#FFCE56"
    +        ]
    +      }
    +    ]
    +  }
    +}
    +```
    +
    +{"type":"pie","data":{"labels":["Red","Blue","Yellow"],"datasets":[{"data":[300,50,100],"backgroundColor":["#FF6384","#36A2EB","#FFCE56"],"hoverBackgroundColor":["#FF6384","#36A2EB","#FFCE56"]}]}}

    § Syntax Highlighting

    +
    +```json
    +{
    +  "@context": "https://www.w3.org/ns/did/v1",
    +  "id": "did:example:123456789abcdefghi",
    +  "authentication": [{
    +    "id": "did:example:123456789abcdefghi#keys-1",
    +    "type": "RsaVerificationKey2018",
    +    "controller": "did:example:123456789abcdefghi",
    +    "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
    +  }],
    +  "service": [{
    +    "id":"did:example:123456789abcdefghi#vcs",
    +    "type": "VerifiableCredentialService",
    +    "serviceEndpoint": "https://example.com/vc/"
    +  }]
    +}
    +```
    +
    +
    {
    +  "@context": "https://www.w3.org/ns/did/v1",
    +  "id": "did:example:123456789abcdefghi",
    +  "authentication": [{ 
    +    "id": "did:example:123456789abcdefghi#keys-1",
    +    "type": "RsaVerificationKey2018",
    +    "controller": "did:example:123456789abcdefghi",
    +    "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
    +  }],
    +  "service": [{
    +    "id":"did:example:123456789abcdefghi#vcs",
    +    "type": "VerifiableCredentialService",
    +    "serviceEndpoint": "https://example.com/vc/"
    +  }]
    +}
    +
    +

    § TeX Math Equations

    +

    When the katex option is enabled, the KaTeX math engine is used for TeX rendering. You can find a list of supported features and examples here: https://katex.org/docs/supported.html.

    +

    (x2y2)=(ABCD)(x1y1)\begin{pmatrix}x_2 \\ y_2 \end{pmatrix} = +\begin{pmatrix} A & B \\ C & D \end{pmatrix}\cdot +\begin{pmatrix} x_1 \\ y_1 \end{pmatrix}

    +

    abcdefghi\def\arraystretch{1.5} + \begin{array}{c:c:c} + a & b & c \\ \hline + d & e & f \\ + \hdashline + g & h & i +\end{array}

    +

    a+b+cNote: such math, much wow.\underbrace{a+b+c}_{\text{Note: such math, much wow.}} +

    +

    § Tab Panels

    + + +
    +
    {
    +  "foo": "foo",
    +  "baz": 1
    +}
    +
    +
    +
    +
    {
    +  "foo": "bar",
    +  "baz": 2
    +}
    +
    +
    +
    + +

    Spec-Up automatically upgrades the links of certain sites, like GitHub. GitHub is the only supported site with Fancy Links right now, but we’ll be adding more as we go.

    +

    § GitHub

    + +

    § External Spec References

    +

    You can reference external specifications from IETF, W3C, and WHATWG as follows:

    +
      +
    1. Anywhere in your document you want to referece an external specification, use the spec-prefixed custom token format: [[spec:RFC4122]]
    2. +
    3. Wherever in your document you want to print out all your external specification references, use the spec custom token format without any spec name: [[spec]]
    4. +
    +
      +
    • If you want to split up your references into groups (e.g. normative vs informative), just make sure to use dash-delimited unique reference grouping string in your custom tokens: [[spec-norm:RFC4122]], [[spec-inform:RFC4122]], [[spec-foo:RFC4122]], etc.
    • +
    • To print out a custom group’s references, just include the grouping string for a given set of references in a custom token without any spec name: [[spec-norm]], [[spec-inform]], [[spec-foo]].
    • +
    +

    Here are a set of example references that are distributed among the reference groups spec, spec-norm, spec-inform:

    + +

    § Default References

    +

    This is what is printed out when you include the [[spec]] custom token in your Markdown:

    +

    +

    +
    RFC3548
    +
    + The Base16, Base32, and Base64 Data Encodings. + S. Josefsson, Ed.; 2003-07. Status: Informational. +
    + +
    RFC7518
    +
    + JSON Web Algorithms (JWA). + M. Jones; 2015-05. Status: Proposed Standard. +
    + +
    +

    +

    § Normative References

    +

    This is what is printed out when you include the [[spec-norm]] custom token in your Markdown:

    +

    +

    +
    DID-CORE
    +
    + Decentralized Identifiers (DIDs) v1.0. + Manu Sporny; Amy Guy; Markus Sabadello; Drummond Reed; 2022-07-19. Status: REC. +
    + +
    DID-SPEC-REGISTRIES
    +
    + DID Specification Registries. + Orie Steele; Manu Sporny; 2023-09-11. Status: NOTE. +
    + +
    +

    +

    § Informative References

    +

    This is what is printed out when you include the [[spec-inform]] custom token in your Markdown:

    +

    +

    +
    RFC6901
    +
    + JavaScript Object Notation (JSON) Pointer. + P. Bryan, Ed.; K. Zyp; M. Nottingham, Ed.; 2013-04. Status: Proposed Standard. +
    + +
    RFC7230
    +
    + Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing. + R. Fielding, Ed.; J. Reschke, Ed.; 2014-06. Status: Proposed Standard. +
    + +
    +

    + +
    + +
    + + + +
    + + + + + +
    +
      +
      + + +
      + Table of Contents + +
      + +
      + +
      +
      +
      Claim
      An assertion made about a Subject. Used as an umbrella term for +Credential, Assertion, Attestation, etc.
      Claim
      An assertion made about a Subject. Used as an umbrella term for +Credential, Assertion, Attestation, etc.
      Conformant Consumer
      An entity that follows the specified processing rules to consume a +Presentation Definition or Presentation Submission that conforms +to this specification.
      Conformant Consumer
      An entity that follows the specified processing rules to consume a +Presentation Definition or Presentation Submission that conforms +to this specification.
      Conformant Producer
      An entity that produces a Presentation Definition or +Presentation Submission that conforms to this specification.
      Embed Locations
      Embed Locations are the specific paths and indexes per Embed Target +where the Verifier can expect to find the Presentation. See Embed Locations.
      Embed Target
      Embed Targets are data formats used in messaging protocols that may be used +to transport a Presentation Submission. See +Embed Targets.
      Embed Target
      Embed Targets are data formats used in messaging protocols that may be used +to transport a Presentation Submission. See +Embed Targets.
      Feature
      Features enable Verifiers to express, and Holders to support, +extended functionality (relative to the base objects) by defining one or more +properties on one or more objects.
      Feature
      Features enable Verifiers to express, and Holders to support, +extended functionality (relative to the base objects) by defining one or more +properties on one or more objects.
      Holder
      Holders are entities that submit proofs to Verifiers to satisfy the +requirements described in a Presentation Definition. A Holder is a +Conformant Consumer of a Presentation Definition and a +Conformant Producer of a Presentation Submission.
      Holder
      Holders are entities that submit proofs to Verifiers to satisfy the +requirements described in a Presentation Definition. A Holder is a +Conformant Consumer of a Presentation Definition and a +Conformant Producer of a Presentation Submission.
      Holder Binding
      Holder Bindings are requirements of a certain type of relationship between +the Holder and the Claims within the Presentation. See Holder Binding.
      Decentralized Web Node
      Some examples refer to an unfamiliar query protocol, dwn://, as a way of +storing and querying schemata and other resources. While orthogonal to this +specification and not yet on a standards track, the concept of “decentralized web nodes” +proposes an architecture that may be of interest or utility to implementers of +this specification. For more information, see the draft specification +hosted at the decentralized identity foundation +here
      Decentralized Web Node
      Some examples refer to an unfamiliar query protocol, dwn://, as a way of +storing and querying schemata and other resources. While orthogonal to this +specification and not yet on a standards track, the concept of “decentralized web nodes” +proposes an architecture that may be of interest or utility to implementers of +this specification. For more information, see the draft specification +hosted at the decentralized identity foundation +here
      Input Descriptor
      Input Descriptors are used by a Verifier to describe the information required +of a Holder before an interaction can proceed. See +Input Descriptor.
      Input Descriptor
      Input Descriptors are used by a Verifier to describe the information required +of a Holder before an interaction can proceed. See +Input Descriptor.
      Input Descriptor Object
      Input Descriptors Objects are populated with properties describing what type +of input data/Claim, or sub-fields thereof, are required for submission +to the Verifier. See +Input Descriptor Object.
      Input Descriptor Object
      Input Descriptors Objects are populated with properties describing what type +of input data/Claim, or sub-fields thereof, are required for submission +to the Verifier. See +Input Descriptor Object.
      Link Secrets
      Link Secrets are values held by the Holder but hidden from other +parties. They are typically incorporated into cryptographic signatures used in +claims to demonstrate correlation while preventing replay attacks. An Issuer +may ascertain that a Holder possesses a link secret without its disclosure. +See Link Secrets.
      Presentation Definition
      Presentation Definitions are objects that articulate what proofs a Verifier +requires. These help the Verifier to decide how or whether to interact with a +Holder. Presentation Definitions are composed of inputs, which describe +the forms and details of the proofs they require, and optional sets of +selection rules, to allow Holders flexibility in cases where many different +types of proofs may satisfy an input requirement. See +Presentation Definition.
      Presentation Request
      Presentation Requests are transport mechanisms for Presentation. Presentation Requests can take multiple shapes, using a variety +of protocols and signature schemes not refined in this specification. They are +sent by a Verifier to a Holder. Defining Presentation Requests +is outside the scope of this specification. See +Presentation Request.
      Presentation Submission
      Presentation Submissions are objects embedded within target claim negotiation +formats that unify the presentation of proofs to a Verifier in +accordance with the requirements a Verifier specified in a +Presentation Definition. See +Presentation Submission.
      Subject
      Subjects are the entities about which Claims are made. The Subject may +not be the same entity as the Holder
      Subject
      Subjects are the entities about which Claims are made. The Subject may +not be the same entity as the Holder
      Submission Requirement
      Submission Requirements are objects that define what combinations of inputs +must be submitted to comply with the requirements a Verifier has for +proceeding in a flow (e.g. credential issuance, allowing entry, accepting an +application). See Submission Requirements.
      Submission Requirement
      Submission Requirements are objects that define what combinations of inputs +must be submitted to comply with the requirements a Verifier has for +proceeding in a flow (e.g. credential issuance, allowing entry, accepting an +application). See Submission Requirements.
      Submission Requirement Object
      Submission Requirement Objects describe valid combinations of inputs in a +Presentation Submission. See +Submission Requirement Objects.
      Submission Requirement Object
      Submission Requirement Objects describe valid combinations of inputs in a +Presentation Submission. See +Submission Requirement Objects.
      Submission Requirement Rule
      Submission Requirement Rules describe combinatorial rules within a +Submission Requirement Object when processing inputs. They may be +nested. See Submission Requirement Rules.
      Submission Requirement Rule
      Submission Requirement Rules describe combinatorial rules within a +Submission Requirement Object when processing inputs. They may be +nested. See Submission Requirement Rules.
      Verifier
      Verifiers are entities that define what proofs they require from a +Holder (via a Presentation Definition) in order to proceed with +an interaction. A Verifier is a Conformant Producer of a +Presentation Definition and a Conformant Consumer of a +Presentation Submission.
      Verifier
      Verifiers are entities that define what proofs they require from a +Holder (via a Presentation Definition) in order to proceed with +an interaction. A Verifier is a Conformant Producer of a +Presentation Definition and a Conformant Consumer of a +Presentation Submission.
      OIDC
      Open ID Connect. Jones, M., Bradley, J., and N. Sakimura. Status: Approved Specification
      Linked Data Proof
      Data Integrity 1.0. Dave Longley, Manu Sporny. 2022-03. Status: Draft Community Group Report.
      Linked Data Proof
      Data Integrity 1.0. Dave Longley, Manu Sporny. 2022-03. Status: Draft Community Group Report.
      CHAPI
      W3C Credential Handler API 1.0. Dave Longley, Manu Sporny. 2020-2-19. Status: Draft Community Group Report.
      CHAPI
      W3C Credential Handler API 1.0. Dave Longley, Manu Sporny. 2020-2-19. Status: Draft Community Group Report.
      DIDComm
      DIF DIDComm Messaging. Daniel Hardman, Sam Curren. Status: Working Group Draft.
      +
      + + + + + + \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..1e23882 --- /dev/null +++ b/index.js @@ -0,0 +1,366 @@ + +module.exports = function(options = {}) { + + const { + fetchExternalSpecs, + validateReferences, + findExternalSpecByKey + } = require('./references.js'); + const gulp = require('gulp'); + const fs = require('fs-extra'); + const path = require('path'); + const findPkgDir = require('find-pkg-dir'); + const modulePath = findPkgDir(__dirname); + let config = fs.readJsonSync('./specs.json'); + let assets = fs.readJsonSync(modulePath + '/src/asset-map.json'); + let externalReferences; + let references = []; + let definitions = []; + + const katexRules = ['math_block', 'math_inline'] + const replacerRegex = /\[\[\s*([^\s\[\]:]+):?\s*([^\]\n]+)?\]\]/img; + const replacerArgsRegex = /\s*,+\s*/; + const replacers = [ + { + test: 'insert', + transform: function(path){ + if (!path) return ''; + return fs.readFileSync(path, 'utf8'); + } + } + ]; + + function applyReplacers(doc){ + return doc.replace(replacerRegex, function(match, type, args){ + let replacer = replacers.find(r => type.trim().match(r.test)); + return replacer ? replacer.transform(...args.trim().split(replacerArgsRegex)) : match; + }); + } + + function normalizePath(path){ + return path.trim().replace(/\/$/g, '') + '/'; + } + + function renderRefGroup(type){ + let group = specGroups[type]; + if (!group) return ''; + let html = Object.keys(group).sort().reduce((html, name) => { + let ref = group[name]; + return html += ` +
      ${name}
      +
      + ${ref.title}. + ${ref.authors.join('; ')}; ${ref.rawDate}. Status: ${ref.status}. +
      + `; + }, '
      ') + return `\n${html}\n
      \n`; + } + + function findKatexDist(){ + const relpath = "node_modules/katex/dist"; + const paths = [ + path.join(process.cwd(), relpath), + path.join(__dirname, relpath), + ]; + for(const abspath of paths) { + if(fs.existsSync(abspath)) { + return abspath + } + } + throw Error("katex distribution could not be located"); + } + + try { + + var toc; + var specGroups = {}; + const noticeTypes = { + note: 1, + issue: 1, + example: 1, + warning: 1, + todo: 1 + }; + const spaceRegex = /\s+/g; + const specNameRegex = /^spec$|^spec[-]*\w+$/i; + const terminologyRegex = /^def$|^ref$|^xref/i; + const specCorpus = fs.readJsonSync(modulePath + '/assets/compiled/refs.json'); + const containers = require('markdown-it-container'); + const md = require('markdown-it')({ + html: true, + linkify: true, + typographer: true + }) + .use(require('./src/markdown-it-extensions.js'), [ + { + filter: type => type.match(terminologyRegex), + parse(token, type, primary){ + if (!primary) return; + if (type === 'def'){ + definitions.push(token.info.args); + return token.info.args.reduce((acc, syn) => { + return `${acc}`; + }, primary); + } + else if (type === 'xref') { + const url = findExternalSpecByKey(config, token.info.args[0]); + const term = token.info.args[1].replace(spaceRegex, '-').toLowerCase(); + return `${token.info.args[1]}`; + } + else { + references.push(primary); + return `${primary}`; + } + } + }, + { + filter: type => type.match(specNameRegex), + parse(token, type, name){ + if (name) { + let _name = name.replace(spaceRegex, '-').toUpperCase(); + let spec = specCorpus[_name] || + specCorpus[_name.toLowerCase()] || + specCorpus[name.toLowerCase()] || + specCorpus[name]; + if (spec) { + spec._name = _name; + let group = specGroups[type] = specGroups[type] || {}; + token.info.spec = group[_name] = spec; + } + } + }, + render(token, type, name){ + if (name){ + let spec = token.info.spec; + if (spec) return `[${spec._name}]`; + } + else return renderRefGroup(type); + } + } + ]) + .use(require('markdown-it-attrs')) + .use(require('markdown-it-chart').default) + .use(require('markdown-it-deflist')) + .use(require('markdown-it-references')) + .use(require('markdown-it-icons').default, 'font-awesome') + .use(require('markdown-it-ins')) + .use(require('markdown-it-mark')) + .use(require('markdown-it-textual-uml')) + .use(require('markdown-it-sub')) + .use(require('markdown-it-sup')) + .use(require('markdown-it-task-lists')) + .use(require('markdown-it-multimd-table'), { + multiline: true, + rowspan: true, + headerless: true + }) + .use(containers, 'notice', { + validate: function(params) { + let matches = params.match(/(\w+)\s?(.*)?/); + return matches && noticeTypes[matches[1]]; + }, + render: function (tokens, idx) { + let matches = tokens[idx].info.match(/(\w+)\s?(.*)?/); + if (matches && tokens[idx].nesting === 1) { + let id; + let type = matches[1]; + if (matches[2]) { + id = matches[2].trim().replace(/\s+/g , '-').toLowerCase(); + if (noticeTitles[id]) id += '-' + noticeTitles[id]++; + else noticeTitles[id] = 1; + } + else id = type + '-' + noticeTypes[type]++; + return `
      ${type.toUpperCase()}`; + } + else return '
      \n'; + } + }) + .use(require('markdown-it-prism')) + .use(require('markdown-it-toc-and-anchor').default, { + tocClassName: 'toc', + tocFirstLevel: 2, + tocLastLevel: 4, + tocCallback: (_md, _tokens, html) => toc = html, + anchorLinkSymbol: '§', + anchorClassName: 'toc-anchor' + }) + .use(require('@traptitech/markdown-it-katex')) + + async function render(spec, assets) { + try { + noticeTitles = {}; + specGroups = {}; + console.log('Rendering: ' + spec.title); + return new Promise(async (resolve, reject) => { + Promise.all((spec.markdown_paths || ['spec.md']).map(_path => { + return fs.readFile(spec.spec_directory + _path, 'utf8').catch(e => reject(e)) + })).then(async docs => { + const features = (({ source, logo }) => ({ source, logo }))(spec); + if (spec.external_specs && !externalReferences) { + externalReferences = await fetchExternalSpecs(spec); + } + let doc = docs.join("\n"); + doc = applyReplacers(doc); + md[spec.katex ? "enable" : "disable"](katexRules); + const render = md.render(doc); + fs.writeFile(path.join(spec.destination, 'index.html'), ` + + + + + + + + ${spec.title} + + + + ${assets.head} + + + + ${assets.svg} + +
      + + + +
      + ${render} +
      + +
      + + + +
      + + + + + +
      +
        +
        + + +
        + Table of Contents + +
        +
        + ${toc} +
        +
        + +
        +
        + ${externalReferences} +
        + + + ${assets.body} + + `, function(err, data){ + if (err) { + reject(err); + } + else { + resolve(); + } + }); + validateReferences(references, definitions, render); + references = []; + definitions = []; + }); + }); + } + catch(e) { + console.error(e); + } + } + + config.specs.forEach(spec => { + spec.spec_directory = normalizePath(spec.spec_directory); + spec.destination = normalizePath(spec.output_path || spec.spec_directory); + + fs.ensureDirSync(spec.destination); + + let assetTags = { + svg: fs.readFileSync(modulePath + '/assets/icons.svg', 'utf8') || '' + }; + + let customAssets = (spec.assets || []).reduce((assets, asset) => { + let ext = asset.path.split('.').pop(); + if (ext === 'css') { + assets.css += ``; + } + if (ext === 'js') { + assets.js[asset.inject || 'body'] += ``; + } + return assets; + }, { + css: '', + js: { head: '', body: '' } + }); + + if (options.dev) { + assetTags.head = assets.head.css.map(_path => ``).join('') + + customAssets.css + + assets.head.js.map(_path => ``).join('') + + customAssets.js.head; + assetTags.body = assets.body.js.map(_path => ``).join('') + + customAssets.js.body; + } + else { + assetTags.head = ` + + ${ customAssets.css } + + ${ customAssets.js.head } + `; + assetTags.body = ` + ${ customAssets.js.body }`; + } + + if (spec.katex) { + const katexDist = findKatexDist(); + assetTags.body += ``; + assetTags.body += ``; + + fs.copySync(path.join(katexDist, 'fonts'), path.join(spec.destination, 'fonts')); + } + + if (!options.nowatch) { + gulp.watch( + [spec.spec_directory + '**/*', '!' + path.join(spec.destination, 'index.html')], + render.bind(null, spec, assetTags) + ) + } + + render(spec, assetTags).then(() => { + if (options.nowatch) process.exit(0) + }).catch(() => process.exit(1)); + + }); + + } + catch(e) { + console.error(e); + } + +} \ No newline at end of file diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..b040ef3 Binary files /dev/null and b/logo.png differ diff --git a/logo.svg b/logo.svg new file mode 100644 index 0000000..6a652c6 --- /dev/null +++ b/logo.svg @@ -0,0 +1,217 @@ + + + + +Group 2 +Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/multi-file-test/abstract.md b/multi-file-test/abstract.md new file mode 100644 index 0000000..f0c0f3f --- /dev/null +++ b/multi-file-test/abstract.md @@ -0,0 +1,3 @@ +## Abstract + +Let's face it, other tools and generators for writing technical specifications aimed at standards bodies or industry groups are cumbersome, underwhelming, and lack the features you might want in a technical specification document. Spec-Up's goal is to deliver you a better spec-writing experience with far less effort and tedium than other tools in the ecosystem. Spec-Up is a dead simple tool that auto-generates great specs from markdown. The version of markdown Spec-up uses contains all the same features you might expect from common implementations, like GitHub, but adds much more, including notice blocks, complex tables, charts, advanced syntax highlighting, UML diagrams, etc. \ No newline at end of file diff --git a/multi-file-test/features.md b/multi-file-test/features.md new file mode 100644 index 0000000..71950fc --- /dev/null +++ b/multi-file-test/features.md @@ -0,0 +1,132 @@ +## Features + +### Diagrams +
        +```mermaid
        +sequenceDiagram
        +  participant Alice
        +  participant Bob
        +  Alice->>Bob: Hey Bob
        +  Bob-->>Alice: Great!
        +  Alice->>Bob: How about you?
        +  Bob-->>Alice: Doing well!
        +```
        +
        + +```mermaid +sequenceDiagram + participant Alice + participant Bob + Alice->>Bob: Hey Bob + Bob-->>Alice: Great! + Alice->>Bob: How about you? + Bob-->>Alice: Doing well! +``` + +### Charts + +
        +```chart
        +{
        +  "type": "pie",
        +  "data": {
        +    "labels": [
        +      "Red",
        +      "Blue",
        +      "Yellow"
        +    ],
        +    "datasets": [
        +      {
        +        "data": [
        +          300,
        +          50,
        +          100
        +        ],
        +        "backgroundColor": [
        +          "#FF6384",
        +          "#36A2EB",
        +          "#FFCE56"
        +        ],
        +        "hoverBackgroundColor": [
        +          "#FF6384",
        +          "#36A2EB",
        +          "#FFCE56"
        +        ]
        +      }
        +    ]
        +  }
        +}
        +```
        +
        + +```chart +{ + "type": "pie", + "data": { + "labels": [ + "Red", + "Blue", + "Yellow" + ], + "datasets": [ + { + "data": [ + 300, + 50, + 100 + ], + "backgroundColor": [ + "#FF6384", + "#36A2EB", + "#FFCE56" + ], + "hoverBackgroundColor": [ + "#FF6384", + "#36A2EB", + "#FFCE56" + ] + } + ] + } +} +``` + +### Syntax Highlighting + +
        +```json
        +{
        +  "@context": "https://www.w3.org/ns/did/v1",
        +  "id": "did:example:123456789abcdefghi",
        +  "authentication": [{
        +    "id": "did:example:123456789abcdefghi#keys-1",
        +    "type": "RsaVerificationKey2018",
        +    "controller": "did:example:123456789abcdefghi",
        +    "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
        +  }],
        +  "service": [{
        +    "id":"did:example:123456789abcdefghi#vcs",
        +    "type": "VerifiableCredentialService",
        +    "serviceEndpoint": "https://example.com/vc/"
        +  }]
        +}
        +```
        +
        + +```json +{ + "@context": "https://www.w3.org/ns/did/v1", + "id": "did:example:123456789abcdefghi", + "authentication": [{ + "id": "did:example:123456789abcdefghi#keys-1", + "type": "RsaVerificationKey2018", + "controller": "did:example:123456789abcdefghi", + "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n" + }], + "service": [{ + "id":"did:example:123456789abcdefghi#vcs", + "type": "VerifiableCredentialService", + "serviceEndpoint": "https://example.com/vc/" + }] +} +``` \ No newline at end of file diff --git a/multi-file-test/getting-started.md b/multi-file-test/getting-started.md new file mode 100644 index 0000000..f0cf841 --- /dev/null +++ b/multi-file-test/getting-started.md @@ -0,0 +1,21 @@ +## Getting Started + +Using Spec-Up is easy peasy lemon squeezy: + +1. `npm install spec-up` +2. Create a subdirectory in your project with two files: + - `spec.json` - add some basic config values, like your desired HTML page title, etc. + - `spec.md` - write the markdown version of your spec here (duh) +3. In your main node.js file, drop in this bad boy: `require('spec-up')()` + +Boom! That's it. Spec-Up will auto-detect the location of your spec files and auto-generate your spec's HTML version every time you hit save after editing your `spec.md` files. Did I mention you can have multiple specs located at any depth in your project and Spec-Up will crawl up in there and render all those specs like a damn boss? Well it does, because why the hell not. + +**Usage** + +If your `spec.json` and `package.json` and `package-lock.json` files are in working order, Spec-up can be called from the root of your repo in three different modes: + +|command|behavior| +|---|---| +|`npm run edit`|after rendering, this will stay running and the `gulp` library will watch the source files in your spec directory/ies for changes and re-render any time you save a file. Opening these rendered files in a browser and refreshing them will keep you up to date.| +|`npm run render`|this renders the site once and does not keep a gulpy watch on the underlying files.| +|`npm run dev`|this enables debugging features.| \ No newline at end of file diff --git a/multi-file-test/header.md b/multi-file-test/header.md new file mode 100644 index 0000000..7ef12ad --- /dev/null +++ b/multi-file-test/header.md @@ -0,0 +1,17 @@ +Spec-Up Multi-File Example +================== + +**Specification Status:** Strawman + +**Latest Draft:** + [https://github.com/decentralized-identity/spec-up](https://github.com/decentralized-identity/spec-up) + +**Editors:** +~ [Daniel Buchner](https://www.linkedin.com/in/dbuchner/) + +**Participate:** +~ [GitHub repo](https://github.com/csuwildcat/spec-up) +~ [File a bug](https://github.com/csuwildcat/spec-up/issues) +~ [Commit history](https://github.com/csuwildcat/spec-up/commits/master) + +------------------------------------ diff --git a/multi-file-test/index.html b/multi-file-test/index.html new file mode 100644 index 0000000..2d21994 --- /dev/null +++ b/multi-file-test/index.html @@ -0,0 +1,289 @@ + + + + + + + + + Spec-Up Multi-File Example + + + + + + + + + + + + + + + + + + + + + +
        + + + +
        +

        § Spec-Up Multi-File Example

        +

        Specification Status: Strawman

        +

        Latest Draft: +https://github.com/decentralized-identity/spec-up

        +
        +
        Editors:
        +
        Daniel Buchner
        +
        + +
        +
        Participate:
        +
        GitHub repo
        +
        File a bug
        +
        Commit history
        +
        +
        +

        § Abstract

        +

        Let’s face it, other tools and generators for writing technical specifications aimed at standards bodies or industry groups are cumbersome, underwhelming, and lack the features you might want in a technical specification document. Spec-Up’s goal is to deliver you a better spec-writing experience with far less effort and tedium than other tools in the ecosystem. Spec-Up is a dead simple tool that auto-generates great specs from markdown. The version of markdown Spec-up uses contains all the same features you might expect from common implementations, like GitHub, but adds much more, including notice blocks, complex tables, charts, advanced syntax highlighting, UML diagrams, etc.

        +

        § Getting Started

        +

        Using Spec-Up is easy peasy lemon squeezy:

        +
          +
        1. npm install spec-up
        2. +
        3. Create a subdirectory in your project with two files: +
            +
          • spec.json - add some basic config values, like your desired HTML page title, etc.
          • +
          • spec.md - write the markdown version of your spec here (duh)
          • +
          +
        4. +
        5. In your main node.js file, drop in this bad boy: require('spec-up')()
        6. +
        +

        Boom! That’s it. Spec-Up will auto-detect the location of your spec files and auto-generate your spec’s HTML version every time you hit save after editing your spec.md files. Did I mention you can have multiple specs located at any depth in your project and Spec-Up will crawl up in there and render all those specs like a damn boss? Well it does, because why the hell not.

        +

        Usage

        +

        If your spec.json and package.json and package-lock.json files are in working order, Spec-up can be called from the root of your repo in three different modes:

        + + + + + + + + + + + + + + + + + + + + + +
        commandbehavior
        npm run editafter rendering, this will stay running and the gulp library will watch the source files in your spec directory/ies for changes and re-render any time you save a file. Opening these rendered files in a browser and refreshing them will keep you up to date.
        npm run renderthis renders the site once and does not keep a gulpy watch on the underlying files.
        npm run devthis enables debugging features.
        +

        § Features

        +

        § Diagrams

        +
        +```mermaid
        +sequenceDiagram
        +  participant Alice
        +  participant Bob
        +  Alice->>Bob: Hey Bob
        +  Bob-->>Alice: Great!
        +  Alice->>Bob: How about you?
        +  Bob-->>Alice: Doing well!
        +```
        +
        +
        +sequenceDiagram + participant Alice + participant Bob + Alice->>Bob: Hey Bob + Bob-->>Alice: Great! + Alice->>Bob: How about you? + Bob-->>Alice: Doing well! +
        +

        § Charts

        +
        +```chart
        +{
        +  "type": "pie",
        +  "data": {
        +    "labels": [
        +      "Red",
        +      "Blue",
        +      "Yellow"
        +    ],
        +    "datasets": [
        +      {
        +        "data": [
        +          300,
        +          50,
        +          100
        +        ],
        +        "backgroundColor": [
        +          "#FF6384",
        +          "#36A2EB",
        +          "#FFCE56"
        +        ],
        +        "hoverBackgroundColor": [
        +          "#FF6384",
        +          "#36A2EB",
        +          "#FFCE56"
        +        ]
        +      }
        +    ]
        +  }
        +}
        +```
        +
        +{"type":"pie","data":{"labels":["Red","Blue","Yellow"],"datasets":[{"data":[300,50,100],"backgroundColor":["#FF6384","#36A2EB","#FFCE56"],"hoverBackgroundColor":["#FF6384","#36A2EB","#FFCE56"]}]}}

        § Syntax Highlighting

        +
        +```json
        +{
        +  "@context": "https://www.w3.org/ns/did/v1",
        +  "id": "did:example:123456789abcdefghi",
        +  "authentication": [{
        +    "id": "did:example:123456789abcdefghi#keys-1",
        +    "type": "RsaVerificationKey2018",
        +    "controller": "did:example:123456789abcdefghi",
        +    "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
        +  }],
        +  "service": [{
        +    "id":"did:example:123456789abcdefghi#vcs",
        +    "type": "VerifiableCredentialService",
        +    "serviceEndpoint": "https://example.com/vc/"
        +  }]
        +}
        +```
        +
        +
        {
        +  "@context": "https://www.w3.org/ns/did/v1",
        +  "id": "did:example:123456789abcdefghi",
        +  "authentication": [{ 
        +    "id": "did:example:123456789abcdefghi#keys-1",
        +    "type": "RsaVerificationKey2018",
        +    "controller": "did:example:123456789abcdefghi",
        +    "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
        +  }],
        +  "service": [{
        +    "id":"did:example:123456789abcdefghi#vcs",
        +    "type": "VerifiableCredentialService",
        +    "serviceEndpoint": "https://example.com/vc/"
        +  }]
        +}
        +
        + +
        + +
        + + + +
        + + + + + +
        +
          +
          + + +
          + Table of Contents + +
          + +
          + +
          +
          + undefined +
          + + + + + + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..71cf3ea --- /dev/null +++ b/package-lock.json @@ -0,0 +1,4748 @@ +{ + "name": "spec-up", + "version": "0.10.7", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "spec-up", + "version": "0.10.7", + "license": "Apache 2.0", + "dependencies": { + "@traptitech/markdown-it-katex": "3.3.0", + "axios": "0.21.2", + "find-pkg-dir": "2.0.0", + "fs-extra": "8.1.0", + "gulp": "4.0.2", + "gulp-clean-css": "4.3.0", + "gulp-concat": "2.6.1", + "gulp-terser": "1.2.0", + "jsdom": "^24.0.0", + "markdown-it": "13.0.1", + "markdown-it-anchor": "5.2.5", + "markdown-it-attrs": "4.1.4", + "markdown-it-chart": "^0.2.0", + "markdown-it-container": "^2.0.0", + "markdown-it-deflist": "^2.1.0", + "markdown-it-icons": "^0.4.1", + "markdown-it-ins": "^2.0.0", + "markdown-it-mark": "^2.0.0", + "markdown-it-modify-token": "1.0.2", + "markdown-it-multimd-table": "^4.1.3", + "markdown-it-prism": "^2.2.0", + "markdown-it-references": "1.0.0-alpha.10", + "markdown-it-sub": "^1.0.0", + "markdown-it-sup": "^1.0.0", + "markdown-it-task-lists": "2.1.1", + "markdown-it-textual-uml": "0.1.3", + "markdown-it-toc-and-anchor": "4.2.0", + "merge-stream": "2.0.0", + "pkg-dir": "4.2.0", + "prismjs": ">=1.24.0", + "yargs": "16.2.0" + } + }, + "node_modules/@traptitech/markdown-it-katex": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@traptitech/markdown-it-katex/-/markdown-it-katex-3.3.0.tgz", + "integrity": "sha512-9PM7tVjLn+mRYCTd8Aps8yuKOH8aRttZ8sMyVYkKltlLMDxFX1LfclZuRv01kct/Q7Euwe4neY/nB1wZNLjblg==", + "dependencies": { + "katex": "^0.12.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/agent-base/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/agent-base/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dependencies": { + "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dependencies": { + "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dependencies": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dependencies": { + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dependencies": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-sort/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "node_modules/async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dependencies": { + "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/axios": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.2.tgz", + "integrity": "sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dependencies": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/braces/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", + "integrity": "sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==" + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dependencies": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dependencies": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "node_modules/copy-props/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cssstyle": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.0.1.tgz", + "integrity": "sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==", + "dependencies": { + "rrweb-cssom": "^0.6.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/data-urls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "dependencies": { + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dependencies": { + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-compare/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/define-properties": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", + "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dependencies": { + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dependencies": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/emojione": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/emojione/-/emojione-3.1.7.tgz", + "integrity": "sha512-ITb0rrx6iuJKBnThRUE0uiGkwriwnY+919vxsAF+EqBHXhyjCTAcUo/nPNWodHaOJvKGdI1mel2o6TyyxBjjLw==" + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es5-ext": { + "version": "0.10.61", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.61.tgz", + "integrity": "sha512-yFhIqQAzu2Ca2I4SE2Au3rxVfmohU9Y7wqGR+s7+H7krk26NXhIRAZDgqd6xqjCEFUomDEA3/Bo/7fKmIkW1kA==", + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", + "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", + "dependencies": { + "type": "^2.5.0" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.6.0.tgz", + "integrity": "sha512-eiDBDOmkih5pMbo9OqsqPRGMljLodLcwd5XD5JbtNB0o89xZAwynY9EdCDsJU7LtcVCClu9DvM7/0Ep1hYX3EQ==" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==" + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/find-pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-pkg-dir/-/find-pkg-dir-2.0.0.tgz", + "integrity": "sha512-FQSkqcdGa2Rsg2ismCcS5v/mf6ieB0RcOBQhIEWurusYkIZRpKnumugzdbCqKZXsbCUdkni7aoIgpUXRL+HrxQ==", + "dependencies": { + "inspect-with-kind": "^1.0.5" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/font-awesome-icon-chars": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/font-awesome-icon-chars/-/font-awesome-icon-chars-1.3.0.tgz", + "integrity": "sha512-8Jyv4DApOm6OK6hMVgDeymDEBmztLoXU9iUiIadKsS/FfgeRqFQW8PUwG5pLVoz8yNPaRn7JgWralUV6Fms9nA==" + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >= 0.10" + } + }, + "node_modules/fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", + "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dependencies": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dependencies": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dependencies": { + "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dependencies": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-clean-css": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/gulp-clean-css/-/gulp-clean-css-4.3.0.tgz", + "integrity": "sha512-mGyeT3qqFXTy61j0zOIciS4MkYziF2U594t2Vs9rUnpkEHqfu6aDITMp8xOvZcvdX61Uz3y1mVERRYmjzQF5fg==", + "dependencies": { + "clean-css": "4.2.3", + "plugin-error": "1.0.1", + "through2": "3.0.1", + "vinyl-sourcemaps-apply": "0.2.1" + } + }, + "node_modules/gulp-clean-css/node_modules/through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dependencies": { + "readable-stream": "2 || 3" + } + }, + "node_modules/gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dependencies": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli/node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/gulp-cli/node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + }, + "node_modules/gulp-cli/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-cli/node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" + }, + "node_modules/gulp-cli/node_modules/yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dependencies": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "node_modules/gulp-cli/node_modules/yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dependencies": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + }, + "node_modules/gulp-concat": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/gulp-concat/-/gulp-concat-2.6.1.tgz", + "integrity": "sha512-a2scActrQrDBpBbR3WUZGyGS1JEPLg5PZJdIa7/Bi3GuKAmPYDK6SFhy/NZq5R8KsKKFvtfR0fakbUCcKGCCjg==", + "dependencies": { + "concat-with-sourcemaps": "^1.0.0", + "through2": "^2.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-terser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gulp-terser/-/gulp-terser-1.2.0.tgz", + "integrity": "sha512-lf+jE2DALg2w32p0HRiYMlFYRYelKZPNunHp2pZccCYrrdCLOs0ItbZcN63yr2pbz116IyhUG9mD/QbtRO1FKA==", + "dependencies": { + "plugin-error": "^1.0.1", + "terser": "^4.0.0", + "through2": "^3.0.1", + "vinyl-sourcemaps-apply": "^0.2.1" + } + }, + "node_modules/gulp-terser/node_modules/through2": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz", + "integrity": "sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "2 || 3" + } + }, + "node_modules/gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dependencies": { + "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "dependencies": { + "whatwg-encoding": "^3.1.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/http-proxy-agent/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/http-proxy-agent/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/https-proxy-agent": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/https-proxy-agent/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inspect-with-kind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/inspect-with-kind/-/inspect-with-kind-1.0.5.tgz", + "integrity": "sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==", + "dependencies": { + "kind-of": "^6.0.2" + } + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-core-module": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", + "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsdom": { + "version": "24.0.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.0.0.tgz", + "integrity": "sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==", + "dependencies": { + "cssstyle": "^4.0.1", + "data-urls": "^5.0.0", + "decimal.js": "^10.4.3", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.2", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.7", + "parse5": "^7.1.2", + "rrweb-cssom": "^0.6.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.3", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0", + "ws": "^8.16.0", + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "canvas": "^2.11.2" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==" + }, + "node_modules/katex": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/katex/-/katex-0.12.0.tgz", + "integrity": "sha512-y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg==", + "dependencies": { + "commander": "^2.19.0" + }, + "bin": { + "katex": "cli.js" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dependencies": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dependencies": { + "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dependencies": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/linkify-it": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/markdown-it": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "dependencies": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/markdown-it-anchor": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-5.2.5.tgz", + "integrity": "sha512-xLIjLQmtym3QpoY9llBgApknl7pxAcN3WDRc2d3rwpl+/YvDZHPmKscGs+L6E05xf2KrCXPBvosWt7MZukwSpQ==", + "peerDependencies": { + "markdown-it": "*" + } + }, + "node_modules/markdown-it-attrs": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/markdown-it-attrs/-/markdown-it-attrs-4.1.4.tgz", + "integrity": "sha512-53Zfv8PTb6rlVFDlD106xcZHKBSsRZKJ2IW/rTxEJBEVbVaoxaNsmRkG0HXfbHl2SK8kaxZ2QKqdthWy/QBwmA==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "markdown-it": ">= 9.0.0" + } + }, + "node_modules/markdown-it-chart": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/markdown-it-chart/-/markdown-it-chart-0.2.0.tgz", + "integrity": "sha512-BFiWDlQACJlnXDolLxYTg7qHMh+LvJHgSAfNYZbyF3Fy+4aJaJALErvQfDxD/o5SfAOfTyMcxFTYgy8NbehwQQ==" + }, + "node_modules/markdown-it-container": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-it-container/-/markdown-it-container-2.0.0.tgz", + "integrity": "sha512-IxPOaq2LzrGuFGyYq80zaorXReh2ZHGFOB1/Hen429EJL1XkPI3FJTpx9TsJeua+j2qTru4h3W1TiCRdeivMmA==" + }, + "node_modules/markdown-it-deflist": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/markdown-it-deflist/-/markdown-it-deflist-2.1.0.tgz", + "integrity": "sha512-3OuqoRUlSxJiuQYu0cWTLHNhhq2xtoSFqsZK8plANg91+RJQU1ziQ6lA2LzmFAEes18uPBsHZpcX6We5l76Nzg==" + }, + "node_modules/markdown-it-icons": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/markdown-it-icons/-/markdown-it-icons-0.4.1.tgz", + "integrity": "sha512-FFo5pkIq5Ovdq53lJ+lzhVz9wl+JjNv5wDaQM2DPGWmmi4ygfYQjD1zgHdiTUWGxTLEioDlIyPwh8LMeQ74+zg==", + "dependencies": { + "emojione": "^3.1.2", + "font-awesome-icon-chars": "^1.3.0", + "markdown-it-regex": "^0.1.4" + } + }, + "node_modules/markdown-it-ins": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz", + "integrity": "sha512-DhLLxseIg2C7+AULvoyVI+zMeufR0QFvXJ2o0oV013hN5HvBvNh2rbVtTdxZjI959+hgo2AA0aRdtEIUaKPbhg==" + }, + "node_modules/markdown-it-mark": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz", + "integrity": "sha512-iT8ua0Bda8QrVwHDOUNw1eyCuL7irXeYch5n8zGS4tb7wsDIn7EjQZLjihKaijzBiL0ikfWL2zAvL/ECqTvsNA==" + }, + "node_modules/markdown-it-modify-token": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/markdown-it-modify-token/-/markdown-it-modify-token-1.0.2.tgz", + "integrity": "sha512-A1z8SrRYM0NfFwAhTN1NAiodKmP66HsvdZE/pchfWzcIW/UW8c4r7gXcQKxHr+dSzBndRz5Jsa/ApxAQUrzwbA==" + }, + "node_modules/markdown-it-multimd-table": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/markdown-it-multimd-table/-/markdown-it-multimd-table-4.1.3.tgz", + "integrity": "sha512-cXvJ+l8dMRmUZLrn34W/8tfLYjC40R7S0wRwcb95emuvQ3uiWNf9vB/IyeRh6XqEq95eXh70+UDNZ29qcOI+Dg==" + }, + "node_modules/markdown-it-prism": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/markdown-it-prism/-/markdown-it-prism-2.2.4.tgz", + "integrity": "sha512-7oQVppKjiZqVQo7s7eLTIs3o/0hdvqAWDW8lvRel6eUCGD4iXjKbSZjvdHZFA2ZnCkQUF47kbvtWZDVQrv7zyQ==", + "dependencies": { + "prismjs": "1.28.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/markdown-it-references": { + "version": "1.0.0-alpha.10", + "resolved": "https://registry.npmjs.org/markdown-it-references/-/markdown-it-references-1.0.0-alpha.10.tgz", + "integrity": "sha512-SBRt2wDluPDMrkAXPHfAdzNpYMHxijtLwEH4fhNhLsKApU0cwCGe4wzv/f3RnQBqr2xwyx1WDkxaFC4Yb/i8gw==", + "peerDependencies": { + "markdown-it": "*" + } + }, + "node_modules/markdown-it-regex": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/markdown-it-regex/-/markdown-it-regex-0.1.4.tgz", + "integrity": "sha512-EjsH5pYfKJRZ7t3fD1nD/KIk06hWT9ZoycOOc8n04BPgml6HleP/F9gSLWeQaUsPvSk5Yz2fr4iCY0bLp051bA==" + }, + "node_modules/markdown-it-sub": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz", + "integrity": "sha512-z2Rm/LzEE1wzwTSDrI+FlPEveAAbgdAdPhdWarq/ZGJrGW/uCQbKAnhoCsE4hAbc3SEym26+W2z/VQB0cQiA9Q==" + }, + "node_modules/markdown-it-sup": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz", + "integrity": "sha512-E32m0nV9iyhRR7CrhnzL5msqic7rL1juWre6TQNxsnApg7Uf+F97JOKxUijg5YwXz86lZ0mqfOnutoryyNdntQ==" + }, + "node_modules/markdown-it-task-lists": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/markdown-it-task-lists/-/markdown-it-task-lists-2.1.1.tgz", + "integrity": "sha512-TxFAc76Jnhb2OUu+n3yz9RMu4CwGfaT788br6HhEDlvWfdeJcLUsxk1Hgw2yJio0OXsxv7pyIPmvECY7bMbluA==" + }, + "node_modules/markdown-it-textual-uml": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/markdown-it-textual-uml/-/markdown-it-textual-uml-0.1.3.tgz", + "integrity": "sha512-AMOt7HSOMnzJZ6KQq3wRimvTBc70ZxyVO97zHX66YXibykG/w2+iqNuDbjn/GlAyBU1WATdKkLAJNQ3ZsGWOkQ==" + }, + "node_modules/markdown-it-toc-and-anchor": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/markdown-it-toc-and-anchor/-/markdown-it-toc-and-anchor-4.2.0.tgz", + "integrity": "sha512-DusSbKtg8CwZ92ztN7bOojDpP4h0+w7BVOPuA3PHDIaabMsERYpwsazLYSP/UlKedoQjOz21mwlai36TQ04EpA==", + "dependencies": { + "clone": "^2.1.0", + "uslug": "^1.0.4" + } + }, + "node_modules/matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dependencies": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdurl": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dependencies": { + "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", + "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dependencies": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dependencies": { + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dependencies": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/prismjs": { + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.28.0.tgz", + "integrity": "sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dependencies": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dependencies": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dependencies": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", + "dependencies": { + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dependencies": { + "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/rrweb-cssom": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.6.0.tgz", + "integrity": "sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, + "node_modules/semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dependencies": { + "sver-compat": "^1.5.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated" + }, + "node_modules/sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.11", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.11.tgz", + "integrity": "sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==" + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "engines": { + "node": "*" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==" + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dependencies": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dependencies": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "node_modules/time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dependencies": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dependencies": { + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/tough-cookie": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", + "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", + "dependencies": { + "punycode": "^2.3.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dependencies": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dependencies": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unorm": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/unorm/-/unorm-1.6.0.tgz", + "integrity": "sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uslug": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/uslug/-/uslug-1.0.4.tgz", + "integrity": "sha512-Jrbpp/NS3TvIGNjfJT1sn3/BCeykoxR8GbNYW5lF6fUscLkbXFwj1b7m4DvIkHm8k3Qr6Co68lbTmoZTMGk/ow==", + "dependencies": { + "unorm": ">= 1.0.0" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dependencies": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dependencies": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vinyl-sourcemaps-apply": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", + "integrity": "sha512-+oDh3KYZBoZC8hfocrbrxbLUeaYtQK7J5WU5Br9VqWqmCll3tFJqKp97GC9GmMsVIL0qnx2DgEDVxdo5EZ5sSw==", + "dependencies": { + "source-map": "^0.5.1" + } + }, + "node_modules/vinyl-sourcemaps-apply/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vinyl/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", + "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", + "dependencies": { + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-url": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", + "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", + "dependencies": { + "tr46": "^5.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", + "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", + "engines": { + "node": ">=18" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..eaa0b0a --- /dev/null +++ b/package.json @@ -0,0 +1,61 @@ +{ + "name": "spec-up", + "version": "0.10.8", + "description": "Technical specification drafting tool that generates rich specification documents from markdown.", + "main": "./index", + "repository": { + "type": "git", + "url": "git+https://github.com/decentralized-identity/spec-up.git" + }, + "scripts": { + "edit": "node -e \"require('./index')()\"", + "render": "node -e \"require('./index')({ nowatch: true })\"", + "dev": "node -e \"require('./index')({ dev: true })\"" + }, + "keywords": [ + "spec", + "specs", + "markdown", + "editor", + "standards" + ], + "author": "Daniel Buchner", + "license": "Apache 2.0", + "bugs": { + "url": "https://github.com/decentralized-identity/spec-up/issues" + }, + "homepage": "https://github.com/decentralized-identity/spec-up#readme", + "dependencies": { + "@traptitech/markdown-it-katex": "3.3.0", + "axios": "0.21.2", + "find-pkg-dir": "2.0.0", + "fs-extra": "8.1.0", + "gulp": "4.0.2", + "gulp-clean-css": "4.3.0", + "gulp-concat": "2.6.1", + "gulp-terser": "1.2.0", + "jsdom": "^24.0.0", + "markdown-it": "13.0.1", + "markdown-it-anchor": "5.2.5", + "markdown-it-attrs": "4.1.4", + "markdown-it-chart": "^0.2.0", + "markdown-it-container": "^2.0.0", + "markdown-it-deflist": "^2.1.0", + "markdown-it-icons": "^0.4.1", + "markdown-it-ins": "^2.0.0", + "markdown-it-mark": "^2.0.0", + "markdown-it-modify-token": "1.0.2", + "markdown-it-multimd-table": "^4.1.3", + "markdown-it-prism": "^2.2.0", + "markdown-it-references": "1.0.0-alpha.10", + "markdown-it-sub": "^1.0.0", + "markdown-it-sup": "^1.0.0", + "markdown-it-task-lists": "2.1.1", + "markdown-it-textual-uml": "0.1.3", + "markdown-it-toc-and-anchor": "4.2.0", + "merge-stream": "2.0.0", + "pkg-dir": "4.2.0", + "prismjs": ">=1.24.0", + "yargs": "16.2.0" + } +} diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..1d86e07 --- /dev/null +++ b/readme.md @@ -0,0 +1,150 @@ + + +

          + + + +

          Markdown » Spec-Up

          + +

          + + + +Spec-Up is a technical specification development tool that enables you to create rich specification documents for standards bodies and engineering projects by writing in an extended version of markdown that features all the bells and whistles - for example: advanced syntax highlighting, notice blocks, complex tables, charts, UML diagrams, and more. + +## Setup + +Installing Spec-Up is easy peasy lemon squeezy: + +0. Node.JS, i.e. `nvm` and its package manager `npm`, are required to run spec-up. WSL2 users should look [here](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-wsl#install-nvm-nodejs-and-npm) for specific instructions. +1. Run `npm install spec-up` in the root directory of the repo to install all dependencies. +2. Create a `specs.json` file **in the root folder of your repository** to specify configuration values used in the generation of your spec documents. The values in your `specs.json` file include things like where your spec's markdown files are located, where to output the generated spec document, and various metadata values used in rendering, such as the title, logo, and repo links for each of your specs. The following are the required/optional fields supported in the `specs.json` config file: + + - **`public_root`** _(PATH STRING, optional)_ - For some platforms and services where you may want to output your rendered spec, the pathing may differ from the directory structure of your local project. To account for this, you can use the `public_root` property to specify the insertion of a path segment to account for the different in pathing between your local renders and wherever you publish your spec to. + - **`specs`** _(ARRAY, required)_ - the `specs` array contains descriptor objects for each of the specs you are generating in your project, and are composed of the following required and optional properties: + - **`spec_directory`** _(STRING, required)_ - You must specify the **repo-root-relative** location of your spec's markdown file directory. You ****MUST**** name your spec's markdown file `spec.md` and locate it in your `spec_directory` for the tool to automatically find and use it for rendering. If you want to use a different name for the markdown file, or you have multiple markdown files you would like the tool to assemble into one document, you must specify them using the optional`markdown_paths` field described below. See the "multi-file" example in the spec-up repo. + - **`title`** _(STRING, required)_ - You must add a title for your spec, which will be rendered in the generated document's H1 text and page title. + - **`logo`** _(PATH/URI STRING, optional)_ - You may add a reference to a logo asset, either via a path to the asset or a URI + - **`logo_link`** _(URI STRING, optional)_ - The URI you want your logo to point to in the rendered page. + - **`markdown_paths`** _(ARRAY, optional)_ - If you want to name your spec's markdown file something other than `spec.md`, or you have multiple files you would like assembled into a single output document, you must specify their paths as array entries in the order you would like them assembled. The paths in this array are assumed to be based on the `spec_directory` you specified, so _DO NOT_ repeat the full root relative path. + - **`katex`** _(BOOLEAN, optional)_ - To enable TeX support via KaTeX, set this property to `true`. After rendering, be sure to copy the `fonts/` subdirectory, containing the necessary web fonts. + - **`output_path`** _(STRING, optional)_ - If you want the generated spec document to be output to a different location than the `spec_directory` you specified (e.g. the project root for GitHub Pages publishing) you can specify another root relative path (use `./` for root), and the tool will write the document file there instead. + - **`source`** _(OBJECT, optional)_ - this object allows you to configure where repo-specific data is pulled from to power some of the more advanced repo-related features. To do this, specify the code hosting service by adding a service ID string to `host` (currently Spec-Up only supports `"github"`, but this is extensible), add the account/org the repo is located within via the `account` property, and add the repo name under the `repo` property. Here is an example configuration: + + ``` + { + "host": "github", + "account": "decentralized-identity", + "repo": "sidetree" + } + ``` +3. In your main node.js file, or as a package.json script entry, use this invocation call: `require('spec-up')()` + +Boom! That's it. You're ready to start rendering specs as HTML sites locally and/or pushing them to github pages however you see fit to automate. + +## Running the scripts locally + +If your `spec.json` and `package.json` and `package-lock.json` files are in working order and in the root folder of the repo from which it will be deployed, Spec-up can be called by command line (from the root of your repo) in three different modes: + +|command|behavior| +|---|---| +|`npm run edit`|after rendering, this will stay running and the `gulp` library will watch the source files in your spec directory/ies for changes and re-render any time you save a file. Opening these rendered files in a browser and refreshing them will keep you up to date.| +|`npm run render`|this renders the site once and does not keep a gulpy watch on the underlying files.| +|`npm run dev`|this enables debugging features.| + +## Automation + +The above scripts can easily be triggered by github actions. See [this repo's example](https://github.com/decentralized-identity/spec-up/blob/master/.github/workflows/render-specs.yml) + +## Versioning + +The recommended method for hosting multiple historical versions of a given specification at the same URL is simply to duplicate the source file(s) in a subdirectory and to host each version in a fixed subdirectory of the output target (i.e., the GitHub-Pages site). These multiple set-up and output directories can be set by multiple `spec` objects in the `specs` array of the `spec.json` file. For example: + +```json +{ + "specs": [ + { + "title": "Wallet And Credential Interactions", + "spec_directory": "./", + "output_path": "./build", + "logo": "https://rawcdn.githack.com/decentralized-identity/decentralized-identity.github.io/a3ca39717e440302d1fd99a796e7f00e1c42eb2d/images/logo-flat.svg", + "logo_link": "https://identity.foundation", + "source": { + "host": "github", + "account": "decentralized-identity", + "repo": "waci-presentation-exchange" + } + }, + { + "title": "Wallet And Credential Interactions", + "spec_directory": "./v0.1.0", + "output_path": "./build/v0.1.0", + "logo": "https://rawcdn.githack.com/decentralized-identity/decentralized-identity.github.io/a3ca39717e440302d1fd99a796e7f00e1c42eb2d/images/logo-flat.svg", + "logo_link": "https://identity.foundation", + "source": { + "host": "github", + "account": "decentralized-identity", + "repo": "waci-presentation-exchange" + } + } + ] +} +``` +*Note: when copying a version into a subdirectory, relative references, including image links or [[include]] blocks that copy in example files or test vectors, may break; a quick CTRL-F "../" is recommended* + +In the above example, the files in `./v0.1.0` will not be rendered by the build process that searches "./" for markdown files and vice versa-- changing either will not trigger a new build of the other in each PR. + +### Version numbering + +DIF Recommends 3-decimal versions à la SemVer (i.e., v0.1.0 instead of v0.1). + +### Cross-linking across versions + +Links from the currently/nightly/unstable spec to stable/archival versions and vice versa are not automatically generated by the current version of spec-up, so the recommended best practice is to manually add links above the "Editors" section. See: + +
          Examples from Presentation Exchange + +Unstable version: +``` +Presentation Exchange 2.0.0 +================== + +**Specification Status:** Working Group Draft + +**Latest Draft:** + [identity.foundation/presentation-exchange](https://identity.foundation/presentation-exchange) + +**Ratified Versions:** +~ **v1.0.0** - [https://identity.foundation/presentation-exchange/spec/v1.0.0](https://identity.foundation/presentation-exchange/spec/v1.0.0) + +``` + +Stable Version: +``` +Presentation Exchange v1.0.0 +================== + +**Specification Status:** DIF Ratified Specification + +**Latest Draft:** + [identity.foundation/presentation-exchange](https://identity.foundation/presentation-exchange) +``` +
          + +### Archiving stable versions beyond github + +Additionally, some editors may prefer to keep an immutable archive in a system like web.archive.org. For example: + +``` +**Specification Status:** Draft V0.1 (snapshotted and archived on [web.archive.org](https://web.archive.org/web/20211206215823/https://identity.foundation/waci-presentation-exchange/)) +``` + +## Troubleshooting + +- WSL2 users are recommended to use the `bash` option rather than `PowerShell` in the terminal of Visual Studio Code. +- Some users have reported problems using spec-up with node versions 15+; to pin to an older version, simple run: +``` +nvm install 14 +nvm use 14 +npm i npm@6.14.16 -g +``` diff --git a/references.js b/references.js new file mode 100644 index 0000000..de8bbca --- /dev/null +++ b/references.js @@ -0,0 +1,91 @@ +const {JSDOM} = require("jsdom"); +const axios = require('axios').default; + +const spaceRegex = /\s+/g; + +function validateReferences(references, definitions, render) { + const resolvedRefs = []; + const unresolvedRefs = []; + [...new Set(references)].forEach( + ref => { + if(render.includes(`id="term:${ref.replace(spaceRegex, '-').toLowerCase()}"`)) { + resolvedRefs.push(ref); + } else { + unresolvedRefs.push(ref); + } + } + ); + if (unresolvedRefs.length > 0 ) { + console.log('Unresolved References: ', unresolvedRefs) + } + + const danglingDefs = []; + definitions.forEach(defs => { + let found = defs.some(def => render.includes(`href="#term:${def.replace(spaceRegex, '-').toLowerCase()}"`)) + if (!found) { + danglingDefs.push(defs[0]); + } + }) + if(danglingDefs.length > 0) { + console.log('Dangling Definitions: ', danglingDefs) + } +} + +function findExternalSpecByKey(config, key) { + for (const spec of config.specs) { + if (spec.external_specs) { + for (const externalSpec of spec.external_specs) { + if (externalSpec[key]) { + return externalSpec[key]; + } + } + } + } + return null; +} + +async function fetchExternalSpecs(spec){ + try { + let results = await Promise.all( + spec.external_specs.map(s => { + const url = Object.values(s)[0]; + return axios.get(url); + }) + ); + results = results.map((r, index) => (r.status === 200 ? { [Object.keys(spec.external_specs[index])[0]]: r.data } : null)).filter(r_1 => r_1); + return results.map(r_2 => createNewDLWithTerms(Object.keys(r_2)[0], Object.values(r_2)[0])); + } catch (e) { + return console.log(e); + } +} + +function createNewDLWithTerms(title, html) { + const dom = new JSDOM(html); + const document = dom.window.document; + + const newDl = document.createElement('dl'); + newDl.setAttribute('id', title); + + const terms = document.querySelectorAll('dt span[id^="term:"]'); + + terms.forEach(term => { + const modifiedId = `term:${title}:${term.id.split(':')[1]}`; + term.id = modifiedId; + const dt = term.closest('dt'); + const dd = dt.nextElementSibling; + + newDl.appendChild(dt.cloneNode(true)); + if (dd && dd.tagName === 'DD') { + newDl.appendChild(dd.cloneNode(true)); + } + }); + + return newDl.outerHTML; +} + +module.exports = { + findExternalSpecByKey, + validateReferences, + fetchExternalSpecs, + createNewDLWithTerms +} \ No newline at end of file diff --git a/single-file-test/assets/test.json b/single-file-test/assets/test.json new file mode 100644 index 0000000..be60ea2 --- /dev/null +++ b/single-file-test/assets/test.json @@ -0,0 +1,5 @@ +{ + "foo": { + "bar": 1 + } +} \ No newline at end of file diff --git a/single-file-test/assets/test.text b/single-file-test/assets/test.text new file mode 100644 index 0000000..10edfcf --- /dev/null +++ b/single-file-test/assets/test.text @@ -0,0 +1 @@ +Beam me in, Scotty! \ No newline at end of file diff --git a/single-file-test/spec.md b/single-file-test/spec.md new file mode 100644 index 0000000..75695d9 --- /dev/null +++ b/single-file-test/spec.md @@ -0,0 +1,536 @@ +Spec-Up Example +================== + +**Specification Status:** Draft + +**Latest Draft:** + [https://identity.foundation/spec-up](https://identity.foundation/spec-up) + +Editors: +~ [Daniel Buchner](https://www.linkedin.com/in/dbuchner/) + +Participate: +~ [GitHub repo](https://github.com/decentralized-identity/spec-up) +~ [File a bug](https://github.com/decentralized-identity/spec-up/issues) +~ [Commit history](https://github.com/decentralized-identity/spec-up/commits/master) + +------------------------------------ + +## Abstract + +Let's face it, other tools and generators for writing technical specifications aimed at standards bodies or industry groups are cumbersome, underwhelming, and lack the features you might want in a technical specification document. Spec-Up's goal is to deliver you a better spec-writing experience with far less effort and tedium than other tools in the ecosystem. Spec-Up is a simple tool that auto-generates great specs from markdown. The version of markdown Spec-up uses contains all the same features you might expect from common implementations, like GitHub, but adds much more, including notice blocks, complex tables, charts, advanced syntax highlighting, UML diagrams, etc. + +## Getting Started + +Using Spec-Up is easy peasy lemon squeezy: + +1. `npm install spec-up` +2. Create a `specs.json` file **in the root folder of your repository** to specify configuration values used in the generation of your spec documents. The values in your `specs.json` file include things like where your spec's markdown files are located, where to output the generated spec document, and various metadata values used in rendering, such as the title, logo, and repo links for each of your specs. The following are the required/optional fields supported in the `specs.json` config file: + + - **`spec_directory`** _(STRING, required)_ - You must specify the **repo-root-relative** location of your spec's markdown file directory. You ****MUST**** name your spec's markdown file `spec.md` and locate it in your `spec_directory` for the tool to automatically find and use it for rendering. If you want to use a different name for the markdown file, or you have multiple markdown files you would like the tool to assemble into one document, you must specify them using the optional`markdown_paths` field described below. See the "multi-file" example in the spec-up repo. + - **`title`** _(STRING, required)_ - You must add a title for your spec, which will be rendered in the generated document's H1 text and page title. + - **`markdown_paths`** _(ARRAY, optional)_ - If you want to name your spec's markdown file something other than `spec.md`, or you have multiple files you would like assembled into a single output document, you must specify their paths as array entries in the order you would like them assembled. The paths in this array are assumed to be based on the `spec_directory` you specified, so _DO NOT_ repeat the full root relative path. + - **`katex`** _(BOOLEAN, optional)_ - To enable TeX support via KaTeX, set this property to `true`. After rendering, be sure to copy the `fonts/` subdirectory, containing the necessary web fonts. + - **`output_path`** _(STRING, optional)_ - If you want the generated spec document to be output to a different location than the `spec_directory` you specified (e.g. the project root for GitHub Pages publishing) you can specify another root relative path (use `./` for root), and the tool will write the document file there instead. +3. In your main node.js file, drop in this bad boy: `require('spec-up')()` + +Boom! That's it. Spec-Up will auto-detect modifications to files in your `spec_directory` and auto-generate your spec's updated HTML document every time you save a change. + +**Usage** + +If your `spec.json` and `package.json` and `package-lock.json` files are in working order and in the root folder of the repo from which it will be deployed, Spec-up can be called by command line (from the root of your repo) in three different modes: + +|command|behavior| +|---|---| +|`npm run edit`|after rendering, this will stay running and the `gulp` library will watch the source files in your spec directory/ies for changes and re-render any time you save a file. Opening these rendered files in a browser and refreshing them will keep you up to date.| +|`npm run render`|this renders the site once and does not keep a gulpy watch on the underlying files.| +|`npm run dev`|this enables debugging features.| + +## Table of Contents + +<-- You see that beautiful TOC over there to your left? (tap the header link to slide it out on mobile) Yeah, you don't need to do a damn thing, that just magically appears based on your use of `h2`, `h3`, and `h4` headings. + +## Term References + +### Definition Lists + +Many specs may want to include a section for terminology references, and Definition Lists are a great way to do that. Here's how to leverage Spec-Up's automatic term reference features via Definition List markup: + +
          +[[def: Term 1, Term One]]:
          +~ This is the first term we will define.
          +
          +[[def: Term 2, Term Two]]:
          +~ This is the second term, but not the last.
          +
          +[[def: Term 3, Term Three]]:
          +~ This is the last term, because you know what they say: third term's the charm!
          +
          + +[[def: Term 1, Term One]]: +~ This is the first term we will define. + +[[def: Term 2, Term Two]]: +~ This is the second term, but not the last. + +[[def: Term 3, Term Three]]: +~ This is the last term, because you know what they say: third term's the charm! + +Now let's refer to some of the terms defined above to show how the auto-linking of terms works: [[ref: Term 1]], [[ref: Term Two]], [[ref: Term 3]]. Additionally, as long as you define your terms using Definition Lists (as seen in the markdown above), you will be able to hover any reference to a term to see a tooltip with its definition. + +### Table-defined Terms + +You can also reference table-oriented terms and definitions which are decomposed into heading-titled attributes in distinct cells: + +
          +Variable           | Default Value | Max Value
          +------------------- | -------------- | ---------
          +[[def: Variable 1]] | 123          | 9999
          +
          + +Variable | Default Value | Max Value +------------------- | ------------- | --------- +[[def: Variable 1]] | 123 | 9999 + + +Anytime you add a definition of a term in the first column of a table, like [[ref: Variable 1]], it will link to the cell and display a tooltip with the entire set of row values when you hover the term. + +### External Term References + +It is possible to include references to terms from external spec-up generated specifications. To include a source you would like to pull references from include an `external_specs` array in your spec config. The value should be a key/value object where the key is used in the external reference below and the value is the URL of the external spec. + +::: example +```json +{ + "specs": [ + { + ... + "external_specs": [ + {"PE": "https://identity.foundation/presentation-exchange"} + ] + } + ] +} +``` +::: + +To include an external term reference within your spec use the following format `[[xref: {title}, {term}]]` where `{title}` is the title given to the spec in the config and `{term}` is the term being used. For example using the PE spec given in the example above [[xref: PE, Holder]] + +## Blockquote + +> To be, or not to be, that is the question: +Whether 'tis nobler in the mind to suffer +The slings and arrows of outrageous fortune, +Or to take arms against a sea of troubles +And by opposing end them. To die—to sleep, +No more; + +## Notices + +
          +::: note Basic Note
          +  Check this out.
          +:::
          +
          + +::: note Basic Note + Check this out. +::: + +::: note + Here's another. +::: + +::: note + And one more! +::: + +::: note Basic Note + One last note!!! +::: + +
          +::: issue Issue Notice
          +  I take issue with that, kind sir.
          +:::
          +
          + +::: issue Issue Notice + I take issue with that, kind sir. +::: + +
          +::: warning Warning Notice
          +  Houston, I think we have a problem
          +:::
          +
          + +::: warning Warning Notice + Houston, I think we have a problem +::: + + +
          +::: todo Really Important
          +  Get this done!
          +:::
          +
          + +::: todo Really Important + Get this done! +::: + + +
          +::: example Code Example
          +  Put your code block here
          +:::
          +
          + +::: example Code Example +```json +// Some comment in JSON +{ + "foo": "bar", + "baz": 2 +} +``` +::: + +## Content Insertion + +Use the following format to pull in content from other files in your project: + +
          +This text has been inserted here from another file: [[insert: ./single-file-test/assets/test.text]]
          +
          + +This text has been inserted here from another file: [[insert: ./single-file-test/assets/test.text]] + +You can even insert content within more complex blocks, like the JSON object below which is being pulled in and rendered in a syntax-highlighted example block: +
          +::: example Code Example
          +```json
          +[[insert: ./single-file-test/assets/test.json]]
          +```
          +:::
          +
          + +::: example Code Example +```json +[[insert: ./single-file-test/assets/test.json]] +``` +::: + + +## Tables + +
          +Stage | Direct Products | ATP Yields
          +----: | --------------: | ---------:
          +Glycolysis | 2 ATP ||
          +^^ | 2 NADH | 3--5 ATP |
          +Pyruvaye oxidation | 2 NADH | 5 ATP |
          +Citric acid cycle | 2 ATP ||
          +^^ | 6 NADH | 15 ATP |
          +^^ | 2 FADH2 | 3 ATP |
          +**30--32** ATP |||
          +[Net ATP yields per hexose]
          +
          + +Stage | Direct Products | ATP Yields +----: | --------------: | ---------: +Glycolysis | 2 ATP || +^^ | 2 NADH | 3--5 ATP | +Pyruvaye oxidation | 2 NADH | 5 ATP | +Citric acid cycle | 2 ATP || +^^ | 6 NADH | 15 ATP | +^^ | 2 FADH2 | 3 ATP | +**30--32** ATP ||| +[Net ATP yields per hexose] + +
          +|--|--|--|--|--|--|--|--|
          +|♜|  |♝|♛|♚|♝|♞|♜|
          +|  |♟|♟|♟|  |♟|♟|♟|
          +|♟|  |♞|  |  |  |  | |
          +|  |♗|  |  |♟|  |  | |
          +|  |  |  |  |♙|  |  | |
          +|  |  |  |  |  |♘|  | |
          +|♙|♙|♙|♙|  |♙|♙|♙|
          +|♖|♘|♗|♕|♔|  |  |♖|
          +
          + +|--|--|--|--|--|--|--|--| +|♜| |♝|♛|♚|♝|♞|♜ | +| |♟|♟|♟| |♟|♟|♟ | +|♟| |♞| | | | | | +| |♗| | |♟| | | | +| | | | |♙| | | | +| | | | | |♘| | | +|♙|♙|♙|♙| |♙|♙|♙ | +|♖|♘|♗|♕|♔| | |♖ | + +## Sequence Diagrams +
          +```mermaid
          +sequenceDiagram
          +  Alice ->> Bob: Hello Bob, how are you?
          +  Bob-->>John: How about you John?
          +  Bob--x Alice: I am good thanks!
          +  Bob-x John: I am good thanks!
          +  Note right of John: Bob thinks a long
          long time, so long
          that the text does
          not fit on a row. + + Bob-->Alice: Checking with John... + Alice->John: Yes... John, how are you? +``` +
          + +```mermaid +sequenceDiagram + Alice ->> Bob: Hello Bob, how are you? + Bob-->>John: How about you John? + Bob--x Alice: I am good thanks! + Bob-x John: I am good thanks! + Note right of John: Bob thinks a long
          long time, so long
          that the text does
          not fit on a row. + + Bob-->Alice: Checking with John... + Alice->John: Yes... John, how are you? +``` + +## Flows + +
          +```mermaid
          +graph TD
          +  A[Start] --> B{Is it?}
          +  B -->|Yes| C[OK]
          +  C --> D[Rethink]
          +  D --> B
          +  B -->|No| E[End]
          +```
          +
          + +```mermaid +graph TD + A[Start] --> B{Is it?} + B -->|Yes| C[OK] + C --> D[Rethink] + D --> B + B -->|No| E[End] +``` + +## Charts + +
          +```chart
          +{
          +  "type": "pie",
          +  "data": {
          +    "labels": [
          +      "Red",
          +      "Blue",
          +      "Yellow"
          +    ],
          +    "datasets": [
          +      {
          +        "data": [
          +          300,
          +          50,
          +          100
          +        ],
          +        "backgroundColor": [
          +          "#FF6384",
          +          "#36A2EB",
          +          "#FFCE56"
          +        ],
          +        "hoverBackgroundColor": [
          +          "#FF6384",
          +          "#36A2EB",
          +          "#FFCE56"
          +        ]
          +      }
          +    ]
          +  }
          +}
          +```
          +
          + +```chart +{ + "type": "pie", + "data": { + "labels": [ + "Red", + "Blue", + "Yellow" + ], + "datasets": [ + { + "data": [ + 300, + 50, + 100 + ], + "backgroundColor": [ + "#FF6384", + "#36A2EB", + "#FFCE56" + ], + "hoverBackgroundColor": [ + "#FF6384", + "#36A2EB", + "#FFCE56" + ] + } + ] + } +} +``` + +## Syntax Highlighting + +
          +```json
          +{
          +  "@context": "https://www.w3.org/ns/did/v1",
          +  "id": "did:example:123456789abcdefghi",
          +  "authentication": [{
          +    "id": "did:example:123456789abcdefghi#keys-1",
          +    "type": "RsaVerificationKey2018",
          +    "controller": "did:example:123456789abcdefghi",
          +    "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
          +  }],
          +  "service": [{
          +    "id":"did:example:123456789abcdefghi#vcs",
          +    "type": "VerifiableCredentialService",
          +    "serviceEndpoint": "https://example.com/vc/"
          +  }]
          +}
          +```
          +
          + + +```json +{ + "@context": "https://www.w3.org/ns/did/v1", + "id": "did:example:123456789abcdefghi", + "authentication": [{ + "id": "did:example:123456789abcdefghi#keys-1", + "type": "RsaVerificationKey2018", + "controller": "did:example:123456789abcdefghi", + "publicKeyPem": "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n" + }], + "service": [{ + "id":"did:example:123456789abcdefghi#vcs", + "type": "VerifiableCredentialService", + "serviceEndpoint": "https://example.com/vc/" + }] +} +``` + +## TeX Math Equations + +When the `katex` option is enabled, the KaTeX math engine is used for TeX rendering. You can find a list of supported features and examples here: https://katex.org/docs/supported.html. + +$$\begin{pmatrix}x_2 \\ y_2 \end{pmatrix} = +\begin{pmatrix} A & B \\ C & D \end{pmatrix}\cdot +\begin{pmatrix} x_1 \\ y_1 \end{pmatrix}$$ + +$$\def\arraystretch{1.5} + \begin{array}{c:c:c} + a & b & c \\ \hline + d & e & f \\ + \hdashline + g & h & i +\end{array}$$ + +$$ +\underbrace{a+b+c}_{\text{Note: such math, much wow.}} +$$ + +## Tab Panels + + + + +
          + +```json +{ + "foo": "foo", + "baz": 1 +} +``` + +
          +
          + +```json +{ + "foo": "bar", + "baz": 2 +} +``` + +
          +
          + +## Fancy Links + +Spec-Up automatically upgrades the links of certain sites, like GitHub. GitHub is the only supported site with Fancy Links right now, but we'll be adding more as we go. + +### GitHub + +- **Issues** + - Source: `https://github.com/decentralized-identity/presentation-exchange/issues/119` + - Render: https://github.com/decentralized-identity/presentation-exchange/issues/119 +- **Pull Requests** + - Source: `https://github.com/decentralized-identity/sidetree/pull/863` + - Render: https://github.com/decentralized-identity/sidetree/pull/863 +- **Releases** + - Source: `https://github.com/decentralized-identity/sidetree/releases/tag/v0.9.1` + - Render: https://github.com/decentralized-identity/sidetree/releases/tag/v0.9.1 +- **Projects** + - Source: `https://github.com/decentralized-identity/sidetree/projects/1` + - Render: https://github.com/decentralized-identity/sidetree/projects/1 + +## External Spec References + +You can reference external specifications from IETF, W3C, and WHATWG as follows: + +1. Anywhere in your document you want to referece an external specification, use the `spec`-prefixed custom token format: `[[spec:RFC4122]]` +2. Wherever in your document you want to print out all your external specification references, use the `spec` custom token format _without any spec name_: `[[spec]]` + - If you want to split up your references into groups (e.g. normative vs informative), just make sure to use dash-delimited unique reference grouping string in your custom tokens: `[[spec-norm:RFC4122]]`, `[[spec-inform:RFC4122]]`, `[[spec-foo:RFC4122]]`, etc. + - To print out a custom group's references, just include the grouping string for a given set of references in a custom token _without any spec name_: `[[spec-norm]]`, `[[spec-inform]]`, `[[spec-foo]]`. + +Here are a set of example references that are distributed among the reference groups `spec`, `spec-norm`, `spec-inform`: + +- [[spec:RFC3548]] (`[[spec:RFC3548]]`) +- [[spec:RFC7518]] (`[[spec:RFC7518]]`) +- [[spec-norm:DID-CORE]] (`[[spec-norm:DID-CORE]]`) +- [[spec-norm:DID-SPEC-REGISTRIES]] (`[[spec-norm:DID-SPEC-REGISTRIES]]`) +- [[spec-inform:RFC6901]] (`[[spec-inform:RFC6901]]`) +- [[spec-inform:RFC7230]] (`[[spec-inform:RFC7230]]`) + +### Default References + +This is what is printed out when you include the `[[spec]]` custom token in your Markdown: + +[[spec]] + + +### Normative References + +This is what is printed out when you include the `[[spec-norm]]` custom token in your Markdown: + +[[spec-norm]] + +### Informative References + +This is what is printed out when you include the `[[spec-inform]]` custom token in your Markdown: + +[[spec-inform]] diff --git a/specs.json b/specs.json new file mode 100644 index 0000000..3a65fae --- /dev/null +++ b/specs.json @@ -0,0 +1,53 @@ +{ + "specs": [ + { + "title": "Spec-Up Example", + "spec_directory": "./single-file-test", + "output_path": "./", + "logo": "logo.svg", + "logo_link": "https://github.com/decentralized-identity/spec-up", + "source": { + "host": "github", + "account": "decentralized-identity", + "repo": "spec-up" + }, + "external_specs": [ + { + "PE": "https://identity.foundation/presentation-exchange" + } + ], + "assets": [ + { + "path": "/custom-assets/custom.css" + }, + { + "path": "/custom-assets/custom-head.js", + "inject": "head" + }, + { + "path": "/custom-assets/custom-body.js", + "inject": "body", + "module": true + } + ], + "katex": true + }, + { + "title": "Spec-Up Multi-File Example", + "spec_directory": "./multi-file-test", + "markdown_paths": [ + "header.md", + "abstract.md", + "getting-started.md", + "features.md" + ], + "logo": "../logo.svg", + "logo_link": "https://github.com/decentralized-identity/spec-up", + "source": { + "host": "github", + "account": "decentralized-identity", + "repo": "spec-up" + } + } + ] +} \ No newline at end of file diff --git a/specup_logo.png b/specup_logo.png new file mode 100644 index 0000000..1235583 Binary files /dev/null and b/specup_logo.png differ diff --git a/src/asset-map.json b/src/asset-map.json new file mode 100644 index 0000000..53fa5c3 --- /dev/null +++ b/src/asset-map.json @@ -0,0 +1,26 @@ +{ + "head": { + "css": [ + "assets/css/custom-elements.css", + "assets/css/prism.css", + "assets/css/chart.css", + "assets/css/index.css" + ], + "js": [ + "assets/js/utils.js", + "assets/js/custom-elements.js" + ] + }, + "body": { + "js": [ + "node_modules/markdown-it/dist/markdown-it.min.js", + "assets/js/prism.js", + "assets/js/mermaid.js", + "assets/js/chart.js", + "assets/js/font-awesome.js", + "assets/js/popper.js", + "assets/js/tippy.js", + "assets/js/index.js" + ] + } +} \ No newline at end of file diff --git a/src/markdown-it-extensions.js b/src/markdown-it-extensions.js new file mode 100644 index 0000000..db3619d --- /dev/null +++ b/src/markdown-it-extensions.js @@ -0,0 +1,72 @@ +'use strict'; + +const levels = 2; +const openString = '['.repeat(levels); +const closeString = ']'.repeat(levels); +const contentRegex = /\s*([^\s\[\]:]+):?\s*([^\]\n]+)?/i; + +module.exports = function(md, templates = {}) { + + md.inline.ruler.after('emphasis', 'templates', function templates_ruler(state, silent) { + + var start = state.pos; + let prefix = state.src.slice(start, start + levels); + if (prefix !== openString) return false; + var indexOfClosingBrace = state.src.indexOf(closeString, start); + + if (indexOfClosingBrace > 0) { + + let match = contentRegex.exec(state.src.slice(start + levels, indexOfClosingBrace)); + if (!match) return false; + + let type = match[1]; + let template = templates.find(t => t.filter(type) && t); + if (!template) return false; + + let args = match[2] ? match[2].trim().split(/\s*,+\s*/) : []; + let token = state.push('template', '', 0); + token.content = match[0]; + token.info = { type, template, args }; + if (template.parse) { + token.content = template.parse(token, type, ...args) || token.content; + } + + state.pos = indexOfClosingBrace + levels; + return true; + } + + return false; + }); + + md.renderer.rules.template = function(tokens, idx, options, env, renderer) { + let token = tokens[idx]; + let template = token.info.template; + if (template.render) { + return template.render(token, token.info.type, ...token.info.args) || (openString + token.content + closeString); + } + return token.content; + } + + let pathSegmentRegex = /(?:http[s]*:\/\/([^\/]*)|(?:\/([^\/?]*)))/g; + md.renderer.rules.link_open = function(tokens, idx, options, env, renderer) { + let token = tokens[idx]; + let attrs = token.attrs.reduce((str, attr) => { + let name = attr[0]; + let value = attr[1]; + if (name === 'href') { + let index = 0; + value.replace(pathSegmentRegex, (m, domain, seg) => { + str += `path-${index++}="${domain || seg}"`; + }); + } + return str += name + '="' + value + '" '; + }, ''); + let anchor = ``; + return token.markup === 'linkify' ? anchor + '' : anchor; + } + + md.renderer.rules.link_close = function(tokens, idx, options, env, renderer) { + return tokens[idx].markup === 'linkify' ? '' : ''; + } + +}; \ No newline at end of file